Added and indexed FreeBSD 9.1

This commit is contained in:
Yorhel 2013-08-25 18:09:30 +02:00
parent a78c7c31d8
commit 70fb2014b2
2 changed files with 12 additions and 3 deletions

View file

@ -139,12 +139,12 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(77, 'FreeBSD', '8.1', 'freebsd-8.1', 48), (77, 'FreeBSD', '8.1', 'freebsd-8.1', 48),
(78, 'FreeBSD', '8.2', 'freebsd-8.2', 49), (78, 'FreeBSD', '8.2', 'freebsd-8.2', 49),
(79, 'FreeBSD', '8.3', 'freebsd-8.3', 50), (79, 'FreeBSD', '8.3', 'freebsd-8.3', 50),
(80, 'FreeBSD', '9.0', 'freebsd-9.0', 51), (80, 'FreeBSD', '9.0', 'freebsd-9.0', 52),
(81, 'Ubuntu', '12.10', 'ubuntu-quantal', 16), (81, 'Ubuntu', '12.10', 'ubuntu-quantal', 16),
(82, 'Ubuntu', '13.04', 'ubuntu-raring', 17), (82, 'Ubuntu', '13.04', 'ubuntu-raring', 17),
(83, 'Debian', '7.0', 'debian-wheezy', 11), (83, 'Debian', '7.0', 'debian-wheezy', 11),
(84, 'FreeBSD', '8.4', 'freebsd-8.4', 52); (84, 'FreeBSD', '8.4', 'freebsd-8.4', 51),
(85, 'FreeBSD', '9.1', 'freebsd-9.1', 53);
-- Removes any path components and compression extensions from the filename. -- Removes any path components and compression extensions from the filename.
CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$ CREATE OR REPLACE FUNCTION basename_from_filename(fn text) RETURNS text AS $$

View file

@ -711,6 +711,14 @@ f9_0() {
check_pkgdir 80 "$MIR/packages" check_pkgdir 80 "$MIR/packages"
} }
f9_1() {
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/9.1-RELEASE/"
echo "============ $MIR"
check_dist 85 "$MIR/base.txz" "core-base" "2012-12-30"
check_dist 85 "$MIR/games.txz" "core-games" "2012-12-30"
check_pkgdir 85 "$MIR/packages"
}
old() { old() {
f1_0 f1_0
@ -766,6 +774,7 @@ old() {
f8_3 f8_3
f8_4 f8_4
f9_0 f9_0
f9_1
} }
"$@" "$@"