diff --git a/sql/schema.sql b/sql/schema.sql index aebfc78..9286d93 100644 --- a/sql/schema.sql +++ b/sql/schema.sql @@ -179,7 +179,9 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES (125,'Fedora', '25', 'fedora-25', 24), (126,'Ubuntu', '17.04', 'ubuntu-zesty', 25), (127,'Debian', '9.0', 'debian-stretch', 13), - (128,'Fedora', '26', 'fedora-26', 25); + (128,'Fedora', '26', 'fedora-26', 25), + (129,'FreeBSD', '11.1', 'freebsd-11.1', 61), + (130,'Ubuntu', '17.10', 'ubuntu-artful', 26); -- Removes any path components and compression extensions from the filename. diff --git a/util/fedora.sh b/util/fedora.sh index 33385a5..96d712f 100755 --- a/util/fedora.sh +++ b/util/fedora.sh @@ -122,9 +122,9 @@ case "$1" in $0 21 $0 22 $0 23 + $0 24 ;; current) - $0 24 $0 25 $0 26 ;; diff --git a/util/freebsd.sh b/util/freebsd.sh index e9efc1d..0fea2df 100755 --- a/util/freebsd.sh +++ b/util/freebsd.sh @@ -564,6 +564,12 @@ case $1 in index_core freebsd-11.0 "${MIR}base.txz" core-base 2016-10-10 index freebsd2 --sys freebsd-11.0 --mirror "$PKG" ;; + 11.1) + MIR="${CMIRROR}amd64/11.1-RELEASE/" + PKG="${PMIRROR}FreeBSD:11:amd64/release_1/" + index_core freebsd-11.1 "${MIR}base.txz" core-base 2017-07-26 + index freebsd2 --sys freebsd-11.1 --mirror "$PKG" + ;; old) $0 1.0 $0 2.0.5 @@ -626,5 +632,6 @@ case $1 in $0 10.2 $0 10.3 $0 11.0 + $0 11.1 ;; esac diff --git a/util/ubuntu.sh b/util/ubuntu.sh index a334005..56fe4bd 100755 --- a/util/ubuntu.sh +++ b/util/ubuntu.sh @@ -104,6 +104,9 @@ case $1 in zesty) stdrepo zesty $CMIRROR amd64 ;; + artful) + stdrepo artful $CMIRROR amd64 + ;; old) $0 warty $0 hoary @@ -133,6 +136,7 @@ case $1 in $0 trusty # until 2019-04 $0 xenial # until 2021-04 $0 zesty # until 2018-01 + $0 artful # until 2018-07 ;; all) $0 old diff --git a/www/index.pl b/www/index.pl index 2117042..ed80b12 100755 --- a/www/index.pl +++ b/www/index.pl @@ -269,7 +269,8 @@ sub about { included, which is generally a snapshot of the ports directory around the time of the release. The release dates indicated for many packages were guessed from the file modification dates in the tarball, and may be - inaccurate. + inaccurate. The i368 arch was indexed for FreeBSD 11.0 and older, the + amd64 arch starting with 11.1.
Ubuntu
Historical releases were fetched from http://old-releases.ubuntu.com/ubuntu/,