indexer: Support for indexing FreeBSD <9.3 repositories
This commit is contained in:
parent
1ca0cd4325
commit
defaa032f8
9 changed files with 892 additions and 826 deletions
|
|
@ -1,3 +1,5 @@
|
|||
TMPDIR="/var/tmp/manned-indexer"
|
||||
|
||||
test -f .config && source ./.config
|
||||
|
||||
|
||||
|
|
|
|||
760
util/freebsd.sh
760
util/freebsd.sh
|
|
@ -69,103 +69,6 @@ check_dist() { # <sysid> <url-prefix> <pkgname> <date> <last-sequence>
|
|||
}
|
||||
|
||||
|
||||
# Adds a FreeBSD 1.0 package. These lack version information and categories and
|
||||
# are in general not as well organized the package repositories in the later
|
||||
# versions.
|
||||
check_oldpkg() { # <sysid> <url> <pkgname> <date>
|
||||
add_pkginfo $1 "packages" "$3" "$4" "$4" && return
|
||||
echo "===> $3"
|
||||
$CURL "$2" | add_tar - $PKGID -z
|
||||
}
|
||||
|
||||
|
||||
check_pkg() { # <sysid> <base-url> <category> <filename> <name> <version>
|
||||
SYSID=$1
|
||||
URL=$2
|
||||
CAT=$3
|
||||
FN=$4
|
||||
NAME=$5
|
||||
VER=$6
|
||||
echo "===> $NAME $VER"
|
||||
$CURL "$URL/$CAT/$FN" -o "$TMP/$FN" || return 1
|
||||
|
||||
DATE=`tar -tvf "$TMP/$FN" '+DESC' | perl -lne 's/.+ ([^ ]+) [^ ]+ \+DESC$/print $1/e'`
|
||||
if [ -z "$DATE" ]; then
|
||||
echo "Error: No date found for +DESC"
|
||||
rm -f "$TMP/$FN"
|
||||
return
|
||||
fi
|
||||
|
||||
add_pkginfo $SYSID $CAT $NAME $VER $DATE
|
||||
add_tar "$TMP/$FN" $PKGID
|
||||
rm -f "$TMP/$FN"
|
||||
}
|
||||
|
||||
|
||||
# Will check and index a packages/ directory. Uses the 'Latest/' directory as a
|
||||
# hint to split the package name from its version, and the other directories
|
||||
# (except All/) to find the actual packages and their category. Date of the
|
||||
# packages is extracted from the last modification time of the '+DESC' file in
|
||||
# each tarball.
|
||||
# This is for FreeBSD pre-9.3
|
||||
check_pkgdir() { # <sysid> <url>
|
||||
SYSID=$1
|
||||
URL=$2
|
||||
# Get the list of categories from the lighttpd directory index.
|
||||
$CURL "$URL/" | perl -lne 'm{href="([a-z0-9-]+)/">\1</a>/} && print $1' >"$TMP/categories"
|
||||
# Get the list of package names without version string.
|
||||
$CURL "$URL/Latest/" | perl -lne 'm{href="([^ "]+)(\.t[bg]z)">\1\2</a>} && print $1' >"$TMP/pkgnames"
|
||||
if [ \( ! -s "$TMP/categories" \) -o \( ! -s "$TMP/pkgnames" \) ]; then
|
||||
echo "== Error fetching package names or directory index."
|
||||
rm -f "$TMP/categories" "$TMP/pkgnames"
|
||||
return
|
||||
fi
|
||||
|
||||
# Now check each category directory
|
||||
while read CAT; do
|
||||
$CURL "$URL/$CAT/" | perl -lne 'm{href="([^ "]+\.t[bg]z)">\1</a>} && print $1' >"$TMP/pkglist"
|
||||
if [ ! -s "$TMP/pkglist" ]; then
|
||||
echo "== Error fetching package index for /$CAT/"
|
||||
continue
|
||||
fi
|
||||
perl -l - "$TMP/pkgnames" "$TMP/pkglist" $SYSID $CAT <<'EOP' >"$TMP/newpkgs"
|
||||
($names, $list, $sysid, $cat) = @ARGV;
|
||||
|
||||
use DBI;
|
||||
$db = DBI->connect('dbi:Pg:dbname=manned', 'manned', '', {RaiseError => 1});
|
||||
|
||||
open F, '<', $names or die $!;
|
||||
%names = map { chomp; ($_,1) } <F>;
|
||||
close F;
|
||||
|
||||
open F, '<', $list or die $!;
|
||||
while(<F>) {
|
||||
chomp;
|
||||
warn "Unknown extension for package: $_\n" if !/^(.+)\.(t[bg]z)$/;
|
||||
($c,$n,$e,$v)=($_,$1,$2,'');
|
||||
$v = $v ? "$1-$v" : $1 while(!$names{$n} and $n =~ s/-([^-]+)$//);
|
||||
if(!$n || !$names{$n} || !$v) {
|
||||
warn "== Unknown package: $c\n";
|
||||
} else {
|
||||
print "$c $n $v" if !$db->selectrow_arrayref(q{
|
||||
SELECT 1 FROM packages p JOIN package_versions pv ON pv.package = p.id
|
||||
WHERE p.system = ? AND p.category = ? AND p.name = ? AND pv.version = ?}, {}, $sysid, $cat, $n, $v);
|
||||
}
|
||||
}
|
||||
close F;
|
||||
EOP
|
||||
|
||||
while read NFO; do
|
||||
check_pkg $SYSID $URL $CAT $NFO
|
||||
done <"$TMP/newpkgs"
|
||||
|
||||
rm -f "$TMP/pkglist" "$TMP/newpkgs"
|
||||
done <"$TMP/categories"
|
||||
|
||||
rm -f "$TMP/categories" "$TMP/pkgnames"
|
||||
}
|
||||
|
||||
|
||||
# For FreeBSD 9.3
|
||||
check_pkg2() {
|
||||
SYSID=$1
|
||||
|
|
@ -252,614 +155,6 @@ check_pkgdir3() {
|
|||
rm -f "$TMP/packagesite.yaml" "$TMP/pkglist"
|
||||
}
|
||||
|
||||
|
||||
f1_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/1.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
# Core distribution
|
||||
check_dist 29 "$MIR/tarballs/bindist/bin_tgz." "core-bindist" "1993-11-15" dc
|
||||
check_dist 29 "$MIR/tarballs/xfree86/doc.tgz" "core-xfree86-doc" "1993-10-25"
|
||||
check_dist 29 "$MIR/tarballs/xfree86/fontserv.tgz" "core-xfree86-fontserv" "1993-10-21"
|
||||
check_dist 29 "$MIR/tarballs/xfree86/man.tgz" "core-xfree86-man" "1993-10-20"
|
||||
check_dist 29 "$MIR/tarballs/xfree86/pex.tgz" "core-xfree86-pex" "1993-10-21"
|
||||
# A few packages
|
||||
check_oldpkg 29 "$MIR/packages/emacs-19-19_bin.tgz" "emacs-19-19_bin" "1993-09-13"
|
||||
check_oldpkg 29 "$MIR/packages/f2c_bin.tgz" "f2c_bin" "1993-10-01"
|
||||
check_oldpkg 29 "$MIR/packages/fileutils_bin.tgz" "fileutils_bin" "1993-10-06"
|
||||
check_oldpkg 29 "$MIR/packages/ghostscript_bin.tgz" "ghostscript_bin" "1993-10-02"
|
||||
check_oldpkg 29 "$MIR/packages/gopher_bin.tgz" "gopher_bin" "1993-10-15"
|
||||
check_oldpkg 29 "$MIR/packages/info-zip_bin.tgz" "info-zip_bin" "1993-09-04"
|
||||
check_oldpkg 29 "$MIR/packages/jpeg_bin.tgz" "jpeg_bin" "1993-09-04"
|
||||
check_oldpkg 29 "$MIR/packages/kermit_bin.tgz" "kermit_bin" "1993-09-04"
|
||||
check_oldpkg 29 "$MIR/packages/ksh_bin.tgz" "ksh_bin" "1993-09-04"
|
||||
check_oldpkg 29 "$MIR/packages/miscutils_bin.tgz" "miscutils_bin" "1993-09-06"
|
||||
check_oldpkg 29 "$MIR/packages/mtools_bin.tgz" "mtools_bin" "1993-08-30"
|
||||
check_oldpkg 29 "$MIR/packages/pbmplus_bin.tgz" "pbmplus_bin" "1993-10-05"
|
||||
check_oldpkg 29 "$MIR/packages/pkg_install.tar.gz" "pkg_install" "1993-10-10"
|
||||
check_oldpkg 29 "$MIR/packages/shellutils_bin.tgz" "shellutils_bin" "1993-10-06"
|
||||
check_oldpkg 29 "$MIR/packages/tcl_bin.tgz" "tcl_bin" "1993-09-18"
|
||||
check_oldpkg 29 "$MIR/packages/tcsh_bin.tgz" "tcsh_bin" "1993-09-04"
|
||||
check_oldpkg 29 "$MIR/packages/textutils_bin.tgz" "textutils_bin" "1993-09-05"
|
||||
check_oldpkg 29 "$MIR/packages/tk_bin.tgz" "tk_bin" "1993-09-18"
|
||||
check_oldpkg 29 "$MIR/packages/urt_bin.tgz" "urt_bin" "1993-10-05"
|
||||
check_oldpkg 29 "$MIR/packages/xlock_bin.tgz" "xlock_bin" "1993-09-04"
|
||||
check_oldpkg 29 "$MIR/packages/xv_bin.tgz" "xv_bin" "1993-09-06"
|
||||
check_oldpkg 29 "$MIR/packages/xview32b.tgz" "xview32b" "1993-09-16"
|
||||
check_oldpkg 29 "$MIR/packages/zsh_bin.tgz" "zsh_bin" "1993-09-04"
|
||||
}
|
||||
|
||||
f2_0_5() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.0.5-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 30 "$MIR/des/des.aa" "core-des-des" "1995-06-11"
|
||||
check_dist 30 "$MIR/des/krb." "core-des-krb" "1995-06-11" ac
|
||||
check_dist 30 "$MIR/manpages/manpages." "core-manpages" "1995-06-09" al
|
||||
}
|
||||
|
||||
f2_1_5() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.1.5-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 31 "$MIR/des/des.aa" "core-des-des" "1996-07-16"
|
||||
check_dist 31 "$MIR/des/krb." "core-des-krb" "1996-07-16" ac
|
||||
check_dist 31 "$MIR/manpages/manpages." "core-manpages" "1996-07-16" am
|
||||
}
|
||||
|
||||
f2_1_7() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.1.7-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 32 "$MIR/des/des.aa" "core-des-des" "1997-02-19"
|
||||
check_dist 32 "$MIR/des/krb." "core-des-krb" "1997-02-19" ac
|
||||
check_dist 32 "$MIR/manpages/manpages." "core-manpages" "1997-02-19" am
|
||||
}
|
||||
|
||||
f2_2_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.2.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 33 "$MIR/des/des." "core-des-des" "1997-05-20" ab
|
||||
check_dist 33 "$MIR/des/krb." "core-des-krb" "1997-05-20" ac
|
||||
check_dist 33 "$MIR/manpages/manpages." "core-manpages" "1997-05-20" ap
|
||||
}
|
||||
|
||||
f2_2_5() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.2.5-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 34 "$MIR/des/des." "core-des-des" "1997-10-22" ab
|
||||
check_dist 34 "$MIR/des/krb." "core-des-krb" "1997-10-22" ad
|
||||
check_dist 34 "$MIR/manpages/manpages." "core-manpages" "1997-10-22" an
|
||||
}
|
||||
|
||||
f2_2_6() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.2.6-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 35 "$MIR/des/des." "core-des-des" "1998-03-25" ab
|
||||
check_dist 35 "$MIR/des/krb." "core-des-krb" "1998-03-25" ad
|
||||
check_dist 35 "$MIR/manpages/manpages." "core-manpages" "1998-03-25" ao
|
||||
}
|
||||
|
||||
f2_2_7() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.2.7-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 36 "$MIR/des/des." "core-des-des" "1998-07-22" ab
|
||||
check_dist 36 "$MIR/des/krb." "core-des-krb" "1998-07-22" ad
|
||||
check_dist 36 "$MIR/manpages/manpages." "core-manpages" "1998-07-22" ao
|
||||
check_dist 36 "$MIR/XF86332/X332fsrv.tgz" "core-XF86332-X332fsrv" "1998-03-01"
|
||||
check_dist 36 "$MIR/XF86332/X332man.tgz" "core-XF86332-X332man" "1998-03-01"
|
||||
check_dist 36 "$MIR/XF86332/X332set.tgz" "core-XF86332-X332set" "1998-03-01"
|
||||
}
|
||||
|
||||
f2_2_8() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/2.2.8-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 37 "$MIR/des/des." "core-des-des" "1998-11-29" ab
|
||||
check_dist 37 "$MIR/des/krb." "core-des-krb" "1998-11-29" ad
|
||||
check_dist 37 "$MIR/manpages/manpages." "core-manpages" "1998-11-29" ax
|
||||
check_dist 37 "$MIR/XF86333/Xfsrv.tgz" "core-XF86333-Xfsrv" "1998-11-14"
|
||||
check_dist 37 "$MIR/XF86333/Xman.tgz" "core-XF86333-Xman" "1998-11-14"
|
||||
check_dist 37 "$MIR/XF86333/Xset.tgz" "core-XF86333-Xset" "1998-11-14"
|
||||
check_pkgdir 37 "$MIR/packages"
|
||||
}
|
||||
|
||||
f3_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 38 "$MIR/bin/bin." "core-bin" "1998-10-16" es
|
||||
check_dist 38 "$MIR/des/des." "core-des-des" "1998-10-16" ab
|
||||
check_dist 38 "$MIR/des/krb." "core-des-krb" "1998-10-16" ae
|
||||
check_dist 38 "$MIR/manpages/manpages." "core-manpages" "1998-10-16" bb
|
||||
check_dist 38 "$MIR/XF86332/Xfsrv.tgz" "core-XF86332-Xfsrv" "1998-09-28"
|
||||
check_dist 38 "$MIR/XF86332/Xman.tgz" "core-XF86332-Xman" "1998-09-28"
|
||||
check_dist 38 "$MIR/XF86332/Xset.tgz" "core-XF86332-Xset" "1998-09-28"
|
||||
}
|
||||
|
||||
f3_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 39 "$MIR/bin/bin." "core-bin" "1999-02-15" dx
|
||||
check_dist 39 "$MIR/des/des." "core-des-des" "1999-02-15" ab
|
||||
check_dist 39 "$MIR/des/krb." "core-des-krb" "1999-02-15" ae
|
||||
check_dist 39 "$MIR/manpages/manpages." "core-manpages" "1999-02-15" be
|
||||
check_dist 39 "$MIR/XF86332/Xfsrv.tgz" "core-XF86332-Xfsrv" "1998-09-28"
|
||||
check_dist 39 "$MIR/XF86332/Xman.tgz" "core-XF86332-Xman" "1998-09-28"
|
||||
check_dist 39 "$MIR/XF86332/Xset.tgz" "core-XF86332-Xset" "1998-09-28"
|
||||
}
|
||||
|
||||
f3_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 40 "$MIR/bin/bin." "core-bin" "1999-05-18" eb
|
||||
check_dist 40 "$MIR/des/des." "core-des-des" "1999-05-18" ab
|
||||
check_dist 40 "$MIR/des/krb." "core-des-krb" "1999-05-18" ae
|
||||
check_dist 40 "$MIR/manpages/manpages." "core-manpages" "1999-05-18" be
|
||||
check_dist 40 "$MIR/XF86333/Xfsrv.tgz" "core-XF86333-Xfsrv" "1998-11-14"
|
||||
check_dist 40 "$MIR/XF86333/Xman.tgz" "core-XF86333-Xman" "1998-11-14"
|
||||
check_dist 40 "$MIR/XF86333/Xset.tgz" "core-XF86333-Xset" "1998-11-14"
|
||||
}
|
||||
|
||||
f3_3() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.3-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 41 "$MIR/bin/bin." "core-bin" "1999-09-17" ec
|
||||
check_dist 41 "$MIR/des/des." "core-des-des" "1999-09-17" ab
|
||||
check_dist 41 "$MIR/des/krb." "core-des-krb" "1999-09-17" ae
|
||||
check_dist 41 "$MIR/manpages/manpages." "core-manpages" "1999-09-17" au
|
||||
check_dist 41 "$MIR/XF86335/Xfsrv.tgz" "core-XF86335-Xfsrv" "1999-08-31"
|
||||
check_dist 41 "$MIR/XF86335/Xman.tgz" "core-XF86335-Xman" "1999-08-31"
|
||||
check_dist 41 "$MIR/XF86335/Xset.tgz" "core-XF86335-Xset" "1999-08-31"
|
||||
}
|
||||
|
||||
f3_4() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.4-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 42 "$MIR/bin/bin." "core-bin" "1999-12-20" ef
|
||||
check_dist 42 "$MIR/des/des." "core-des-des" "1999-12-20" ac
|
||||
check_dist 42 "$MIR/des/krb." "core-des-krb" "1999-12-20" ae
|
||||
check_dist 42 "$MIR/manpages/manpages." "core-manpages" "1999-12-20" av
|
||||
check_dist 42 "$MIR/XF86335/Xfsrv.tgz" "core-XF86335-Xfsrv" "1999-08-31"
|
||||
check_dist 42 "$MIR/XF86335/Xman.tgz" "core-XF86335-Xman" "1999-08-31"
|
||||
check_dist 42 "$MIR/XF86335/Xset.tgz" "core-XF86335-Xset" "1999-08-31"
|
||||
check_pkgdir 42 "$MIR/packages"
|
||||
}
|
||||
|
||||
f3_5() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.5-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 43 "$MIR/bin/bin." "core-bin" "2000-06-22" eg
|
||||
check_dist 43 "$MIR/des/des." "core-des-des" "2000-06-22" ac
|
||||
check_dist 43 "$MIR/des/krb." "core-des-krb" "2000-06-22" ae
|
||||
check_dist 43 "$MIR/manpages/manpages." "core-manpages" "2000-06-22" av
|
||||
check_dist 43 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2000-01-08"
|
||||
check_dist 43 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2000-01-08"
|
||||
check_dist 43 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2000-01-08"
|
||||
check_pkgdir 43 "$MIR/packages"
|
||||
}
|
||||
|
||||
f3_5_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/3.5.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 44 "$MIR/bin/bin." "core-bin" "2000-07-20" eg
|
||||
check_dist 44 "$MIR/des/des." "core-des-des" "2000-07-20" ac
|
||||
check_dist 44 "$MIR/des/krb." "core-des-krb" "2000-07-20" ae
|
||||
check_dist 44 "$MIR/manpages/manpages." "core-manpages" "2000-07-20" av
|
||||
check_dist 44 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2000-01-08"
|
||||
check_dist 44 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2000-01-08"
|
||||
check_dist 44 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2000-01-08"
|
||||
check_pkgdir 44 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 45 "$MIR/bin/bin." "core-bin" "2000-03-20" ev
|
||||
check_dist 45 "$MIR/crypto/crypto." "core-crypto" "2000-03-20" aj
|
||||
check_dist 45 "$MIR/crypto/krb4." "core-crypto-krb4" "2000-03-20" ae
|
||||
check_dist 45 "$MIR/crypto/krb5." "core-crypto-krb5" "2000-03-20" ad
|
||||
check_dist 45 "$MIR/games/games." "core-games" "2000-03-20" ak
|
||||
check_dist 45 "$MIR/manpages/manpages." "core-manpages" "2000-03-20" aw
|
||||
check_dist 45 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2001-03-22"
|
||||
check_dist 45 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2001-03-22"
|
||||
check_dist 45 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2001-03-22"
|
||||
}
|
||||
|
||||
f4_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 46 "$MIR/bin/bin." "core-bin" "2000-07-27" fb
|
||||
check_dist 46 "$MIR/crypto/crypto." "core-crypto" "2000-07-27" aj
|
||||
check_dist 46 "$MIR/crypto/krb4." "core-crypto-krb4" "2000-07-27" ae
|
||||
check_dist 46 "$MIR/crypto/krb5." "core-crypto-krb5" "2000-07-27" ad
|
||||
check_dist 46 "$MIR/games/games." "core-games" "2000-07-27" ak
|
||||
check_dist 46 "$MIR/manpages/manpages." "core-manpages" "2000-07-27" ax
|
||||
check_dist 46 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2000-07-25"
|
||||
check_dist 46 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2000-07-25"
|
||||
check_dist 46 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2000-07-25"
|
||||
}
|
||||
|
||||
f4_1_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.1.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 47 "$MIR/bin/bin." "core-bin" "2000-09-25" fc
|
||||
check_dist 47 "$MIR/crypto/crypto." "core-crypto" "2000-09-25" ak
|
||||
check_dist 47 "$MIR/crypto/krb4." "core-crypto-krb4" "2000-09-25" ae
|
||||
check_dist 47 "$MIR/crypto/krb5." "core-crypto-krb5" "2000-09-25" ad
|
||||
check_dist 47 "$MIR/games/games." "core-games" "2000-09-25" ak
|
||||
check_dist 47 "$MIR/manpages/manpages." "core-manpages" "2000-09-25" ax
|
||||
check_dist 47 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2000-07-25"
|
||||
check_dist 47 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2000-07-25"
|
||||
check_dist 47 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2000-07-25"
|
||||
check_pkgdir 47 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 48 "$MIR/bin/bin." "core-bin" "2000-11-21" fc
|
||||
check_dist 48 "$MIR/crypto/crypto." "core-crypto" "2000-11-21" al
|
||||
check_dist 48 "$MIR/crypto/krb4." "core-crypto-krb4" "2000-11-21" ae
|
||||
check_dist 48 "$MIR/crypto/krb5." "core-crypto-krb5" "2000-11-21" ad
|
||||
check_dist 48 "$MIR/games/games." "core-games" "2000-11-21" ak
|
||||
check_dist 48 "$MIR/manpages/manpages." "core-manpages" "2000-11-21" ax
|
||||
check_dist 48 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2000-07-25"
|
||||
check_dist 48 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2000-07-25"
|
||||
check_dist 48 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2000-07-25"
|
||||
check_pkgdir 48 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_3() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.3-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 49 "$MIR/bin/bin." "core-bin" "2001-04-20" fg
|
||||
check_dist 49 "$MIR/crypto/crypto." "core-crypto" "2001-04-20" al
|
||||
check_dist 49 "$MIR/crypto/krb4." "core-crypto-krb4" "2001-04-20" ae
|
||||
check_dist 49 "$MIR/crypto/krb5." "core-crypto-krb5" "2001-04-20" ae
|
||||
check_dist 49 "$MIR/games/games." "core-games" "2001-04-20" ak
|
||||
check_dist 49 "$MIR/manpages/manpages." "core-manpages" "2001-04-20" ay
|
||||
check_dist 49 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2001-03-22"
|
||||
check_dist 49 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2001-03-22"
|
||||
check_dist 49 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2001-03-22"
|
||||
check_pkgdir 49 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_4() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.4-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 50 "$MIR/bin/bin." "core-bin" "2001-09-20" fk
|
||||
check_dist 50 "$MIR/crypto/crypto." "core-crypto" "2001-09-20" ak
|
||||
check_dist 50 "$MIR/crypto/krb4." "core-crypto-krb4" "2001-09-20" ae
|
||||
check_dist 50 "$MIR/crypto/krb5." "core-crypto-krb5" "2001-09-20" ad
|
||||
check_dist 50 "$MIR/games/games." "core-games" "2001-09-20" ak
|
||||
check_dist 50 "$MIR/manpages/manpages." "core-manpages" "2001-09-20" az
|
||||
check_dist 50 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2001-09-05"
|
||||
check_dist 50 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2001-09-05"
|
||||
check_dist 50 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2001-09-05"
|
||||
check_pkgdir 50 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_5() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.5-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 51 "$MIR/bin/bin." "core-bin" "2002-01-29" fm
|
||||
check_dist 51 "$MIR/crypto/crypto." "core-crypto" "2002-01-29" al
|
||||
check_dist 51 "$MIR/crypto/krb4." "core-crypto-krb4" "2002-01-29" ae
|
||||
check_dist 51 "$MIR/crypto/krb5." "core-crypto-krb5" "2002-01-29" ae
|
||||
check_dist 51 "$MIR/games/games." "core-games" "2002-01-29" ak
|
||||
check_dist 51 "$MIR/manpages/manpages." "core-manpages" "2002-01-29" az
|
||||
check_dist 51 "$MIR/XF86336/Xfsrv.tgz" "core-XF86336-Xfsrv" "2002-01-08"
|
||||
check_dist 51 "$MIR/XF86336/Xman.tgz" "core-XF86336-Xman" "2002-01-08"
|
||||
check_dist 51 "$MIR/XF86336/Xset.tgz" "core-XF86336-Xset" "2002-01-08"
|
||||
check_pkgdir 51 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_6() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.6-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 52 "$MIR/bin/bin." "core-bin" "2002-06-15" fp
|
||||
check_dist 52 "$MIR/crypto/crypto." "core-crypto" "2002-06-15" al
|
||||
check_dist 52 "$MIR/crypto/krb4." "core-crypto-krb4" "2002-06-15" ae
|
||||
check_dist 52 "$MIR/crypto/krb5." "core-crypto-krb5" "2002-06-15" ae
|
||||
check_dist 52 "$MIR/games/games." "core-games" "2002-06-15" ak
|
||||
check_dist 52 "$MIR/manpages/manpages." "core-manpages" "2002-06-15" az
|
||||
check_pkgdir 52 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_6_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.6.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 53 "$MIR/bin/bin." "core-bin" "2002-08-15" fq
|
||||
check_dist 53 "$MIR/crypto/crypto." "core-crypto" "2002-08-15" am
|
||||
check_dist 53 "$MIR/crypto/krb4." "core-crypto-krb4" "2002-08-15" ae
|
||||
check_dist 53 "$MIR/crypto/krb5." "core-crypto-krb5" "2002-08-15" ae
|
||||
check_dist 53 "$MIR/games/games." "core-games" "2002-08-15" ak
|
||||
check_dist 53 "$MIR/manpages/manpages." "core-manpages" "2002-08-15" az
|
||||
check_pkgdir 53 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_7() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.7-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 54 "$MIR/bin/bin." "core-bin" "2002-10-10" fr
|
||||
check_dist 54 "$MIR/crypto/crypto." "core-crypto" "2002-10-10" an
|
||||
check_dist 54 "$MIR/crypto/krb4." "core-crypto-krb4" "2002-10-10" af
|
||||
check_dist 54 "$MIR/crypto/krb5." "core-crypto-krb5" "2002-10-10" af
|
||||
check_dist 54 "$MIR/games/games." "core-games" "2002-10-10" ak
|
||||
check_dist 54 "$MIR/manpages/manpages." "core-manpages" "2002-10-10" bc
|
||||
check_pkgdir 54 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_8() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.8-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 55 "$MIR/bin/bin." "core-bin" "2003-04-03" ft
|
||||
check_dist 55 "$MIR/crypto/crypto." "core-crypto" "2003-04-03" au
|
||||
check_dist 55 "$MIR/crypto/krb4." "core-crypto-krb4" "2003-04-03" ag
|
||||
check_dist 55 "$MIR/crypto/krb5." "core-crypto-krb5" "2003-04-03" af
|
||||
check_dist 55 "$MIR/games/games." "core-games" "2003-04-03" ak
|
||||
check_dist 55 "$MIR/manpages/manpages." "core-manpages" "2003-04-03" bd
|
||||
check_pkgdir 55 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_9() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.9-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 56 "$MIR/bin/bin." "core-bin" "2003-10-28" fv
|
||||
check_dist 56 "$MIR/crypto/crypto." "core-crypto" "2003-10-28" au
|
||||
check_dist 56 "$MIR/crypto/krb4." "core-crypto-krb4" "2003-10-28" ag
|
||||
check_dist 56 "$MIR/crypto/krb5." "core-crypto-krb5" "2003-10-28" af
|
||||
check_dist 56 "$MIR/games/games." "core-games" "2003-10-28" ak
|
||||
check_dist 56 "$MIR/manpages/manpages." "core-manpages" "2003-10-28" bd
|
||||
check_pkgdir 56 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_10() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.10-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 57 "$MIR/bin/bin." "core-bin" "2004-05-27" fw
|
||||
check_dist 57 "$MIR/crypto/crypto." "core-crypto" "2004-05-27" au
|
||||
check_dist 57 "$MIR/crypto/krb4." "core-crypto-krb4" "2004-05-27" ag
|
||||
check_dist 57 "$MIR/crypto/krb5." "core-crypto-krb5" "2004-05-27" af
|
||||
check_dist 57 "$MIR/games/games." "core-games" "2004-05-27" ak
|
||||
check_dist 57 "$MIR/manpages/manpages." "core-manpages" "2004-05-27" bd
|
||||
check_pkgdir 57 "$MIR/packages"
|
||||
}
|
||||
|
||||
f4_11() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/4.11-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 58 "$MIR/bin/bin." "core-bin" "2005-01-25" fx
|
||||
check_dist 58 "$MIR/crypto/crypto." "core-crypto" "2005-01-25" au
|
||||
check_dist 58 "$MIR/crypto/krb4." "core-crypto-krb4" "2005-01-25" ag
|
||||
check_dist 58 "$MIR/crypto/krb5." "core-crypto-krb5" "2005-01-25" af
|
||||
check_dist 58 "$MIR/games/games." "core-games" "2005-01-25" ak
|
||||
check_dist 58 "$MIR/manpages/manpages." "core-manpages" "2005-01-25" be
|
||||
check_pkgdir 58 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 59 "$MIR/crypto/crypto." "core-crypto" "2003-01-14" an
|
||||
check_dist 59 "$MIR/crypto/krb4." "core-crypto-krb4" "2003-01-14" af
|
||||
check_dist 59 "$MIR/crypto/krb5." "core-crypto-krb5" "2003-01-14" ag
|
||||
check_dist 59 "$MIR/games/games." "core-games" "2003-01-14" ag
|
||||
check_dist 59 "$MIR/manpages/manpages." "core-manpages" "2003-01-14" ay
|
||||
check_pkgdir 59 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 60 "$MIR/crypto/crypto." "core-crypto" "2003-06-09" ae
|
||||
check_dist 60 "$MIR/crypto/krb5.aa" "core-crypto-krb5" "2003-06-09"
|
||||
check_dist 60 "$MIR/games/games." "core-games" "2003-06-09" ab
|
||||
check_dist 60 "$MIR/manpages/manpages." "core-manpages" "2003-06-09" ae
|
||||
check_pkgdir 60 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 61 "$MIR/crypto/crypto." "core-crypto" "2004-01-09" ae
|
||||
check_dist 61 "$MIR/crypto/krb5.aa" "core-crypto-krb5" "2004-01-09"
|
||||
check_dist 61 "$MIR/games/games." "core-games" "2004-01-09" ab
|
||||
check_dist 61 "$MIR/manpages/manpages." "core-manpages" "2004-01-09" ae
|
||||
check_pkgdir 61 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_2_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.2.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 62 "$MIR/crypto/crypto." "core-crypto" "2004-02-25" ae
|
||||
check_dist 62 "$MIR/crypto/krb5.aa" "core-crypto-krb5" "2004-02-25"
|
||||
check_dist 62 "$MIR/games/games." "core-games" "2004-02-25" ab
|
||||
check_dist 62 "$MIR/manpages/manpages." "core-manpages" "2004-02-25" ae
|
||||
check_pkgdir 62 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_3() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.3-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 63 "$MIR/base/base." "core-base" "2004-11-06" bg
|
||||
check_dist 63 "$MIR/games/games." "core-games" "2004-11-06" ab
|
||||
check_dist 63 "$MIR/manpages/manpages." "core-manpages" "2004-11-06" ae
|
||||
check_pkgdir 63 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_4() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.4-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 64 "$MIR/base/base." "core-base" "2005-05-09" bg
|
||||
check_dist 64 "$MIR/games/games." "core-games" "2005-05-09" ab
|
||||
check_dist 64 "$MIR/manpages/manpages." "core-manpages" "2005-05-09" ae
|
||||
check_pkgdir 64 "$MIR/packages"
|
||||
}
|
||||
|
||||
f5_5() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/5.5-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 65 "$MIR/base/base." "core-base" "2006-05-25" bg
|
||||
check_dist 65 "$MIR/games/games." "core-games" "2006-05-25" ab
|
||||
check_dist 65 "$MIR/manpages/manpages." "core-manpages" "2006-05-25" ae
|
||||
check_pkgdir 65 "$MIR/packages"
|
||||
}
|
||||
|
||||
f6_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/6.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 66 "$MIR/base/base." "core-base" "2005-11-04" bp
|
||||
check_dist 66 "$MIR/games/games." "core-games" "2005-11-04" ab
|
||||
check_dist 66 "$MIR/manpages/manpages." "core-manpages" "2005-11-04" af
|
||||
check_pkgdir 66 "$MIR/packages"
|
||||
}
|
||||
|
||||
f6_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/6.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 67 "$MIR/base/base." "core-base" "2006-05-08" bd
|
||||
check_dist 67 "$MIR/games/games." "core-games" "2006-05-08" ab
|
||||
check_dist 67 "$MIR/manpages/manpages." "core-manpages" "2006-05-08" af
|
||||
check_pkgdir 67 "$MIR/packages"
|
||||
}
|
||||
|
||||
f6_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/6.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 68 "$MIR/base/base." "core-base" "2007-01-15" bd
|
||||
check_dist 68 "$MIR/games/games." "core-games" "2007-01-15" ab
|
||||
check_dist 68 "$MIR/manpages/manpages." "core-manpages" "2007-01-15" af
|
||||
check_pkgdir 68 "$MIR/packages"
|
||||
}
|
||||
|
||||
f6_3() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/6.3-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 69 "$MIR/base/base." "core-base" "2008-01-18" be
|
||||
check_dist 69 "$MIR/games/games." "core-games" "2008-01-18" ab
|
||||
check_dist 69 "$MIR/manpages/manpages." "core-manpages" "2008-01-18" af
|
||||
check_pkgdir 69 "$MIR/packages"
|
||||
}
|
||||
|
||||
f6_4() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/6.4-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 70 "$MIR/base/base." "core-base" "2008-11-28" be
|
||||
check_dist 70 "$MIR/games/games." "core-games" "2008-11-28" ab
|
||||
check_dist 70 "$MIR/manpages/manpages." "core-manpages" "2008-11-28" af
|
||||
check_pkgdir 70 "$MIR/packages"
|
||||
}
|
||||
|
||||
f7_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/7.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 71 "$MIR/base/base." "core-base" "2008-02-27" bh
|
||||
check_dist 71 "$MIR/games/games." "core-games" "2008-02-27" ab
|
||||
check_dist 71 "$MIR/manpages/manpages." "core-manpages" "2008-02-27" af
|
||||
check_pkgdir 71 "$MIR/packages"
|
||||
}
|
||||
|
||||
f7_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/7.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 72 "$MIR/base/base." "core-base" "2009-01-04" bi
|
||||
check_dist 72 "$MIR/games/games." "core-games" "2009-01-04" ab
|
||||
check_dist 72 "$MIR/manpages/manpages." "core-manpages" "2009-01-04" af
|
||||
check_pkgdir 72 "$MIR/packages"
|
||||
}
|
||||
|
||||
f7_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/7.2-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 73 "$MIR/base/base." "core-base" "2009-05-04" bi
|
||||
check_dist 73 "$MIR/games/games." "core-games" "2009-05-04" ab
|
||||
check_dist 73 "$MIR/manpages/manpages." "core-manpages" "2009-05-04" af
|
||||
check_pkgdir 73 "$MIR/packages"
|
||||
}
|
||||
|
||||
f7_3() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/7.3-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 74 "$MIR/base/base." "core-base" "2010-03-23" bi
|
||||
check_dist 74 "$MIR/games/games." "core-games" "2010-03-23" ab
|
||||
check_dist 74 "$MIR/manpages/manpages." "core-manpages" "2010-03-23" af
|
||||
check_pkgdir 74 "$MIR/packages"
|
||||
}
|
||||
|
||||
f7_4() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/7.4-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 75 "$MIR/base/base." "core-base" "2011-02-24" bi
|
||||
check_dist 75 "$MIR/games/games." "core-games" "2011-02-24" ab
|
||||
check_dist 75 "$MIR/manpages/manpages." "core-manpages" "2011-02-24" af
|
||||
check_pkgdir 75 "$MIR/packages"
|
||||
}
|
||||
|
||||
f8_0() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/8.0-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 76 "$MIR/base/base." "core-base" "2009-11-25" bl
|
||||
check_dist 76 "$MIR/games/games." "core-games" "2009-11-25" ab
|
||||
check_dist 76 "$MIR/manpages/manpages." "core-manpages" "2009-11-25" af
|
||||
check_pkgdir 76 "$MIR/packages"
|
||||
}
|
||||
|
||||
f8_1() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/8.1-RELEASE"
|
||||
echo "============ $MIR"
|
||||
check_dist 77 "$MIR/base/base." "core-base" "2010-07-23" bl
|
||||
check_dist 77 "$MIR/games/games." "core-games" "2010-07-23" ab
|
||||
check_dist 77 "$MIR/manpages/manpages." "core-manpages" "2010-07-23" ag
|
||||
check_pkgdir 77 "$MIR/packages"
|
||||
}
|
||||
|
||||
f8_2() {
|
||||
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/8.2-RELEASE/"
|
||||
echo "============ $MIR"
|
||||
check_dist 78 "$MIR/base/base." "core-base" "2011-02-24" bm
|
||||
check_dist 78 "$MIR/games/games." "core-games" "2011-02-24" ab
|
||||
check_dist 78 "$MIR/manpages/manpages." "core-manpages" "2011-02-24" ag
|
||||
check_pkgdir 78 "$MIR/packages"
|
||||
}
|
||||
|
||||
f8_3() {
|
||||
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/8.3-RELEASE/"
|
||||
echo "============ $MIR"
|
||||
check_dist 79 "$MIR/base/base." "core-base" "2012-04-18" bm
|
||||
check_dist 79 "$MIR/games/games." "core-games" "2012-04-18" ab
|
||||
check_dist 79 "$MIR/manpages/manpages." "core-manpages" "2012-04-18" ag
|
||||
check_pkgdir 79 "$MIR/packages"
|
||||
}
|
||||
|
||||
f8_4() {
|
||||
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/8.4-RELEASE/"
|
||||
echo "============ $MIR"
|
||||
check_dist 84 "$MIR/base/base." "core-base" "2013-06-07" bq
|
||||
check_dist 84 "$MIR/games/games." "core-games" "2013-06-07" ab
|
||||
check_dist 84 "$MIR/manpages/manpages." "core-manpages" "2013-06-07" ag
|
||||
check_pkgdir 84 "$MIR/packages"
|
||||
}
|
||||
|
||||
f9_0() {
|
||||
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/9.0-RELEASE/"
|
||||
echo "============ $MIR"
|
||||
check_dist 80 "$MIR/base.txz" "core-base" "2012-01-12"
|
||||
check_dist 80 "$MIR/games.txz" "core-games" "2012-01-12"
|
||||
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"
|
||||
}
|
||||
|
||||
f9_2() {
|
||||
MIR="http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/i386/9.2-RELEASE/"
|
||||
echo "============ $MIR"
|
||||
check_dist 86 "$MIR/base.txz" "core-base" "2013-09-27"
|
||||
check_dist 86 "$MIR/games.txz" "core-games" "2013-09-27"
|
||||
check_pkgdir 86 "$MIR/packages"
|
||||
}
|
||||
|
||||
f9_3() {
|
||||
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/releases/i386/9.3-RELEASE/"
|
||||
PKG="http://pkg.freebsd.org/freebsd:9:x86:32/release_3/"
|
||||
|
|
@ -915,61 +210,6 @@ f11_0() {
|
|||
|
||||
|
||||
old() {
|
||||
f1_0
|
||||
f2_0_5
|
||||
f2_1_5
|
||||
f2_1_7
|
||||
f2_2_2
|
||||
f2_2_5
|
||||
f2_2_6
|
||||
f2_2_7
|
||||
f2_2_8
|
||||
f3_0
|
||||
f3_1
|
||||
f3_2
|
||||
f3_3
|
||||
f3_4
|
||||
f3_5
|
||||
f3_5_1
|
||||
f4_0
|
||||
f4_1
|
||||
f4_1_1
|
||||
f4_2
|
||||
f4_3
|
||||
f4_4
|
||||
f4_5
|
||||
f4_6
|
||||
f4_6_2
|
||||
f4_7
|
||||
f4_8
|
||||
f4_9
|
||||
f4_10
|
||||
f4_11
|
||||
f5_0
|
||||
f5_1
|
||||
f5_2
|
||||
f5_2_1
|
||||
f5_3
|
||||
f5_4
|
||||
f5_5
|
||||
f6_0
|
||||
f6_1
|
||||
f6_2
|
||||
f6_3
|
||||
f6_4
|
||||
f7_0
|
||||
f7_1
|
||||
f7_2
|
||||
f7_3
|
||||
f7_4
|
||||
f8_0
|
||||
f8_1
|
||||
f8_2
|
||||
f8_3
|
||||
f8_4
|
||||
f9_0
|
||||
f9_1
|
||||
f9_2
|
||||
f9_3
|
||||
f10_0
|
||||
f10_1
|
||||
|
|
|
|||
581
util/freebsd2.sh
Executable file
581
util/freebsd2.sh
Executable file
|
|
@ -0,0 +1,581 @@
|
|||
#!/bin/sh
|
||||
|
||||
. ./common.sh
|
||||
|
||||
AMIRROR=http://ftp-archive.freebsd.org/mirror/FreeBSD-Archive/old-releases/
|
||||
|
||||
CURL="curl -fSs -A manual-page-crawler,info@manned.org"
|
||||
SPLITTAR="$TMPDIR/freebsd-merged-tar"
|
||||
|
||||
|
||||
# Index a "core" file. Simple wrapper around 'index pkg', with --ver = date,
|
||||
# --cat="core", and support for split tar files.
|
||||
index_core() { # <sys> <url-prefix> <pkgname> <date> <last-sequence>
|
||||
local FN=$2
|
||||
if [ -n "$5" ]; then
|
||||
# XXX: The annoying part about doing the tar merging here is that the
|
||||
# files are downloaded even if the indexer later decides that it
|
||||
# doesn't need to index this particular file, thus wasting bandwidth.
|
||||
echo "= Fetching $FN {aa .. $5}"
|
||||
$CURL "$FN{"`perl -le "print join ',', 'aa'..'$5'"`'}' >$SPLITTAR || return 1
|
||||
FN=$SPLITTAR
|
||||
fi
|
||||
index pkg --force --sys $1 --cat core --pkg $3 --ver $4 --date $4 $FN
|
||||
}
|
||||
|
||||
|
||||
case $1 in
|
||||
1.0)
|
||||
MIR="${AMIRROR}i386/1.0-RELEASE/"
|
||||
index_core freebsd-1.0 "${MIR}tarballs/bindist/bin_tgz." core-bindist 1993-11-15 dc
|
||||
index_core freebsd-1.0 "${MIR}tarballs/xfree86/doc.tgz" core-xfree86-doc 1993-10-25
|
||||
index_core freebsd-1.0 "${MIR}tarballs/xfree86/fontserv.tgz" core-xfree86-fontserv 1993-10-21
|
||||
index_core freebsd-1.0 "${MIR}tarballs/xfree86/man.tgz" core-xfree86-man 1993-10-20
|
||||
index_core freebsd-1.0 "${MIR}tarballs/xfree86/pex.tgz" core-xfree86-pex 1993-10-21
|
||||
# A few packages
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg emacs-19-19_bin --ver 1993-09-13 --date 1993-09-13 "${MIR}packages/emacs-19-19_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg f2c_bin --ver 1993-10-01 --date 1993-10-01 "${MIR}packages/f2c_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg fileutils_bin --ver 1993-10-06 --date 1993-10-06 "${MIR}packages/fileutils_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg ghostscript_bin --ver 1993-10-02 --date 1993-10-02 "${MIR}packages/ghostscript_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg gopher_bin --ver 1993-10-15 --date 1993-10-15 "${MIR}packages/gopher_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg info-zip_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/info-zip_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg jpeg_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/jpeg_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg kermit_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/kermit_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg ksh_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/ksh_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg miscutils_bin --ver 1993-09-06 --date 1993-09-06 "${MIR}packages/miscutils_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg mtools_bin --ver 1993-08-30 --date 1993-08-30 "${MIR}packages/mtools_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg pbmplus_bin --ver 1993-10-05 --date 1993-10-05 "${MIR}packages/pbmplus_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg pkg_install --ver 1993-10-10 --date 1993-10-10 "${MIR}packages/pkg_install.tar.gz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg shellutils_bin --ver 1993-10-06 --date 1993-10-06 "${MIR}packages/shellutils_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg tcl_bin --ver 1993-09-18 --date 1993-09-18 "${MIR}packages/tcl_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg tcsh_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/tcsh_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg textutils_bin --ver 1993-09-05 --date 1993-09-05 "${MIR}packages/textutils_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg tk_bin --ver 1993-09-18 --date 1993-09-18 "${MIR}packages/tk_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg urt_bin --ver 1993-10-05 --date 1993-10-05 "${MIR}packages/urt_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg xlock_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/xlock_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg xv_bin --ver 1993-09-06 --date 1993-09-06 "${MIR}packages/xv_bin.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg xview32b --ver 1993-09-16 --date 1993-09-16 "${MIR}packages/xview32b.tgz"
|
||||
index pkg --sys freebsd-1.0 --cat packages --pkg zsh_bin --ver 1993-09-04 --date 1993-09-04 "${MIR}packages/zsh_bin.tgz"
|
||||
;;
|
||||
2.0.5)
|
||||
MIR="${AMIRROR}i386/2.0.5-RELEASE/"
|
||||
index_core freebsd-2.0.5 "${MIR}des/des.aa" core-des-des 1995-06-11
|
||||
index_core freebsd-2.0.5 "${MIR}des/krb." core-des-krb 1995-06-11 ac
|
||||
index_core freebsd-2.0.5 "${MIR}manpages/manpages." core-manpages 1995-06-09 al
|
||||
;;
|
||||
2.1.5)
|
||||
MIR="${AMIRROR}i386/2.1.5-RELEASE/"
|
||||
index_core freebsd-2.1.5 "${MIR}des/des.aa" core-des-des 1996-07-16
|
||||
index_core freebsd-2.1.5 "${MIR}des/krb." core-des-krb 1996-07-16 ac
|
||||
index_core freebsd-2.1.5 "${MIR}manpages/manpages." core-manpages 1996-07-16 am
|
||||
;;
|
||||
2.1.7)
|
||||
MIR="${AMIRRPR}i386/2.1.7-RELEASE/"
|
||||
index_core freebsd-2.1.7 "${MIR}des/des.aa" core-des-des 1997-02-19
|
||||
index_core freebsd-2.1.7 "${MIR}des/krb." core-des-krb 1997-02-19 ac
|
||||
index_core freebsd-2.1.7 "${MIR}manpages/manpages." core-manpages 1997-02-19 am
|
||||
;;
|
||||
2.2.2)
|
||||
MIR="${AMIRROR}i386/2.2.2-RELEASE/"
|
||||
index_core freebsd-2.2.2 "${MIR}des/des." core-des-des 1997-05-20 ab
|
||||
index_core freebsd-2.2.2 "${MIR}des/krb." core-des-krb 1997-05-20 ac
|
||||
index_core freebsd-2.2.2 "${MIR}manpages/manpages." core-manpages 1997-05-20 ap
|
||||
;;
|
||||
2.2.5)
|
||||
MIR="${AMIRROR}i386/2.2.5-RELEASE/"
|
||||
index_core freebsd-2.2.5 "${MIR}des/des." core-des-des 1997-10-22 ab
|
||||
index_core freebsd-2.2.5 "${MIR}des/krb." core-des-krb 1997-10-22 ad
|
||||
index_core freebsd-2.2.5 "${MIR}manpages/manpages." core-manpages 1997-10-22 an
|
||||
;;
|
||||
2.2.6)
|
||||
MIR="${AMIRROR}i386/2.2.6-RELEASE/"
|
||||
index_core freebsd-2.2.6 "${MIR}des/des." core-des-des 1998-03-25 ab
|
||||
index_core freebsd-2.2.6 "${MIR}des/krb." core-des-krb 1998-03-25 ad
|
||||
index_core freebsd-2.2.6 "${MIR}manpages/manpages." core-manpages 1998-03-25 ao
|
||||
;;
|
||||
2.2.7)
|
||||
MIR="${AMIRROR}i386/2.2.7-RELEASE/"
|
||||
index_core freebsd-2.2.7 "${MIR}des/des." core-des-des 1998-07-22 ab
|
||||
index_core freebsd-2.2.7 "${MIR}des/krb." core-des-krb 1998-07-22 ad
|
||||
index_core freebsd-2.2.7 "${MIR}manpages/manpages." core-manpages 1998-07-22 ao
|
||||
index_core freebsd-2.2.7 "${MIR}XF86332/X332fsrv.tgz" core-XF86332-X332fsrv 1998-03-01
|
||||
index_core freebsd-2.2.7 "${MIR}XF86332/X332man.tgz" core-XF86332-X332man 1998-03-01
|
||||
index_core freebsd-2.2.7 "${MIR}XF86332/X332set.tgz" core-XF86332-X332set 1998-03-01
|
||||
;;
|
||||
2.2.8)
|
||||
MIR="${AMIRROR}i386/2.2.8-RELEASE/"
|
||||
index_core freebsd-2.2.8 "${MIR}des/des." core-des-des 1998-11-29 ab
|
||||
index_core freebsd-2.2.8 "${MIR}des/krb." core-des-krb 1998-11-29 ad
|
||||
index_core freebsd-2.2.8 "${MIR}manpages/manpages." core-manpages 1998-11-29 ax
|
||||
index_core freebsd-2.2.8 "${MIR}XF86333/Xfsrv.tgz" core-XF86333-Xfsrv 1998-11-14
|
||||
index_core freebsd-2.2.8 "${MIR}XF86333/Xman.tgz" core-XF86333-Xman 1998-11-14
|
||||
index_core freebsd-2.2.8 "${MIR}XF86333/Xset.tgz" core-XF86333-Xset 1998-11-14
|
||||
index freebsd1 --sys freebsd-2.2.8 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
3.0)
|
||||
MIR="${AMIRROR}i386/3.0-RELEASE/"
|
||||
index_core freebsd-3.0 "${MIR}bin/bin." core-bin 1998-10-16 es
|
||||
index_core freebsd-3.0 "${MIR}des/des." core-des-des 1998-10-16 ab
|
||||
index_core freebsd-3.0 "${MIR}des/krb." core-des-krb 1998-10-16 ae
|
||||
index_core freebsd-3.0 "${MIR}manpages/manpages." core-manpages 1998-10-16 bb
|
||||
index_core freebsd-3.0 "${MIR}XF86332/Xfsrv.tgz" core-XF86332-Xfsrv 1998-09-28
|
||||
index_core freebsd-3.0 "${MIR}XF86332/Xman.tgz" core-XF86332-Xman 1998-09-28
|
||||
index_core freebsd-3.0 "${MIR}XF86332/Xset.tgz" core-XF86332-Xset 1998-09-28
|
||||
;;
|
||||
3.1)
|
||||
MIR="${AMIRROR}i386/3.1-RELEASE/"
|
||||
index_core freebsd-3.1 "${MIR}bin/bin." core-bin 1999-02-15 dx
|
||||
index_core freebsd-3.1 "${MIR}des/des." core-des-des 1999-02-15 ab
|
||||
index_core freebsd-3.1 "${MIR}des/krb." core-des-krb 1999-02-15 ae
|
||||
index_core freebsd-3.1 "${MIR}manpages/manpages." core-manpages 1999-02-15 be
|
||||
index_core freebsd-3.1 "${MIR}XF86332/Xfsrv.tgz" core-XF86332-Xfsrv 1998-09-28
|
||||
index_core freebsd-3.1 "${MIR}XF86332/Xman.tgz" core-XF86332-Xman 1998-09-28
|
||||
index_core freebsd-3.1 "${MIR}XF86332/Xset.tgz" core-XF86332-Xset 1998-09-28
|
||||
;;
|
||||
3.2)
|
||||
MIR="${AMIRROR}i386/3.2-RELEASE/"
|
||||
index_core freebsd-3.2 "${MIR}bin/bin." core-bin 1999-05-18 eb
|
||||
index_core freebsd-3.2 "${MIR}des/des." core-des-des 1999-05-18 ab
|
||||
index_core freebsd-3.2 "${MIR}des/krb." core-des-krb 1999-05-18 ae
|
||||
index_core freebsd-3.2 "${MIR}manpages/manpages." core-manpages 1999-05-18 be
|
||||
index_core freebsd-3.2 "${MIR}XF86333/Xfsrv.tgz" core-XF86333-Xfsrv 1998-11-14
|
||||
index_core freebsd-3.2 "${MIR}XF86333/Xman.tgz" core-XF86333-Xman 1998-11-14
|
||||
index_core freebsd-3.2 "${MIR}XF86333/Xset.tgz" core-XF86333-Xset 1998-11-14
|
||||
;;
|
||||
3.3)
|
||||
MIR="${AMIRROR}i386/3.3-RELEASE/"
|
||||
index_core freebsd-3.3 "${MIR}bin/bin." core-bin 1999-09-17 ec
|
||||
index_core freebsd-3.3 "${MIR}des/des." core-des-des 1999-09-17 ab
|
||||
index_core freebsd-3.3 "${MIR}des/krb." core-des-krb 1999-09-17 ae
|
||||
index_core freebsd-3.3 "${MIR}manpages/manpages." core-manpages 1999-09-17 au
|
||||
index_core freebsd-3.3 "${MIR}XF86335/Xfsrv.tgz" core-XF86335-Xfsrv 1999-08-31
|
||||
index_core freebsd-3.3 "${MIR}XF86335/Xman.tgz" core-XF86335-Xman 1999-08-31
|
||||
index_core freebsd-3.3 "${MIR}XF86335/Xset.tgz" core-XF86335-Xset 1999-08-31
|
||||
;;
|
||||
3.4)
|
||||
MIR="${AMIRROR}i386/3.4-RELEASE/"
|
||||
index_core freebsd-3.4 "${MIR}bin/bin." core-bin 1999-12-20 ef
|
||||
index_core freebsd-3.4 "${MIR}des/des." core-des-des 1999-12-20 ac
|
||||
index_core freebsd-3.4 "${MIR}des/krb." core-des-krb 1999-12-20 ae
|
||||
index_core freebsd-3.4 "${MIR}manpages/manpages." core-manpages 1999-12-20 av
|
||||
index_core freebsd-3.4 "${MIR}XF86335/Xfsrv.tgz" core-XF86335-Xfsrv 1999-08-31
|
||||
index_core freebsd-3.4 "${MIR}XF86335/Xman.tgz" core-XF86335-Xman 1999-08-31
|
||||
index_core freebsd-3.4 "${MIR}XF86335/Xset.tgz" core-XF86335-Xset 1999-08-31
|
||||
index freebsd1 --sys freebsd-3.4 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
3.5)
|
||||
MIR="${AMIRROR}i386/3.5-RELEASE/"
|
||||
index_core freebsd-3.5 "${MIR}bin/bin." core-bin 2000-06-22 eg
|
||||
index_core freebsd-3.5 "${MIR}des/des." core-des-des 2000-06-22 ac
|
||||
index_core freebsd-3.5 "${MIR}des/krb." core-des-krb 2000-06-22 ae
|
||||
index_core freebsd-3.5 "${MIR}manpages/manpages." core-manpages 2000-06-22 av
|
||||
index_core freebsd-3.5 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2000-01-08
|
||||
index_core freebsd-3.5 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2000-01-08
|
||||
index_core freebsd-3.5 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2000-01-08
|
||||
index freebsd1 --sys freebsd-3.5 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
3.5.1)
|
||||
MIR="${AMIRROR}i386/3.5.1-RELEASE/"
|
||||
index_core freebsd-3.5.1 "${MIR}bin/bin." core-bin 2000-07-20 eg
|
||||
index_core freebsd-3.5.1 "${MIR}des/des." core-des-des 2000-07-20 ac
|
||||
index_core freebsd-3.5.1 "${MIR}des/krb." core-des-krb 2000-07-20 ae
|
||||
index_core freebsd-3.5.1 "${MIR}manpages/manpages." core-manpages 2000-07-20 av
|
||||
index_core freebsd-3.5.1 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2000-01-08
|
||||
index_core freebsd-3.5.1 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2000-01-08
|
||||
index_core freebsd-3.5.1 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2000-01-08
|
||||
index freebsd1 --sys freebsd-3.5.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.0)
|
||||
MIR="${AMIRROR}i386/4.0-RELEASE/"
|
||||
index_core freebsd-4.0 "${MIR}bin/bin." core-bin 2000-03-20 ev
|
||||
index_core freebsd-4.0 "${MIR}crypto/crypto." core-crypto 2000-03-20 aj
|
||||
index_core freebsd-4.0 "${MIR}crypto/krb4." core-crypto-krb4 2000-03-20 ae
|
||||
index_core freebsd-4.0 "${MIR}crypto/krb5." core-crypto-krb5 2000-03-20 ad
|
||||
index_core freebsd-4.0 "${MIR}games/games." core-games 2000-03-20 ak
|
||||
index_core freebsd-4.0 "${MIR}manpages/manpages." core-manpages 2000-03-20 aw
|
||||
index_core freebsd-4.0 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2001-03-22
|
||||
index_core freebsd-4.0 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2001-03-22
|
||||
index_core freebsd-4.0 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2001-03-22
|
||||
;;
|
||||
4.1)
|
||||
MIR="${AMIRROR}i386/4.1-RELEASE/"
|
||||
index_core freebsd-4.1 "${MIR}bin/bin." core-bin 2000-07-27 fb
|
||||
index_core freebsd-4.1 "${MIR}crypto/crypto." core-crypto 2000-07-27 aj
|
||||
index_core freebsd-4.1 "${MIR}crypto/krb4." core-crypto-krb4 2000-07-27 ae
|
||||
index_core freebsd-4.1 "${MIR}crypto/krb5." core-crypto-krb5 2000-07-27 ad
|
||||
index_core freebsd-4.1 "${MIR}games/games." core-games 2000-07-27 ak
|
||||
index_core freebsd-4.1 "${MIR}manpages/manpages." core-manpages 2000-07-27 ax
|
||||
index_core freebsd-4.1 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2000-07-25
|
||||
index_core freebsd-4.1 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2000-07-25
|
||||
index_core freebsd-4.1 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2000-07-25
|
||||
;;
|
||||
4.1.1)
|
||||
MIR="${AMIRROR}i386/4.1.1-RELEASE/"
|
||||
index_core freebsd-4.1.1 "${MIR}bin/bin." core-bin 2000-09-25 fc
|
||||
index_core freebsd-4.1.1 "${MIR}crypto/crypto." core-crypto 2000-09-25 ak
|
||||
index_core freebsd-4.1.1 "${MIR}crypto/krb4." core-crypto-krb4 2000-09-25 ae
|
||||
index_core freebsd-4.1.1 "${MIR}crypto/krb5." core-crypto-krb5 2000-09-25 ad
|
||||
index_core freebsd-4.1.1 "${MIR}games/games." core-games 2000-09-25 ak
|
||||
index_core freebsd-4.1.1 "${MIR}manpages/manpages." core-manpages 2000-09-25 ax
|
||||
index_core freebsd-4.1.1 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2000-07-25
|
||||
index_core freebsd-4.1.1 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2000-07-25
|
||||
index_core freebsd-4.1.1 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2000-07-25
|
||||
index freebsd1 --sys freebsd-4.1.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.2)
|
||||
MIR="${AMIRROR}i386/4.2-RELEASE/"
|
||||
index_core freebsd-4.2 "${MIR}bin/bin." core-bin 2000-11-21 fc
|
||||
index_core freebsd-4.2 "${MIR}crypto/crypto." core-crypto 2000-11-21 al
|
||||
index_core freebsd-4.2 "${MIR}crypto/krb4." core-crypto-krb4 2000-11-21 ae
|
||||
index_core freebsd-4.2 "${MIR}crypto/krb5." core-crypto-krb5 2000-11-21 ad
|
||||
index_core freebsd-4.2 "${MIR}games/games." core-games 2000-11-21 ak
|
||||
index_core freebsd-4.2 "${MIR}manpages/manpages." core-manpages 2000-11-21 ax
|
||||
index_core freebsd-4.2 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2000-07-25
|
||||
index_core freebsd-4.2 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2000-07-25
|
||||
index_core freebsd-4.2 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2000-07-25
|
||||
index freebsd1 --sys freebsd-4.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.3)
|
||||
MIR="${AMIRROR}i386/4.3-RELEASE/"
|
||||
index_core freebsd-4.3 "${MIR}bin/bin." core-bin 2001-04-20 fg
|
||||
index_core freebsd-4.3 "${MIR}crypto/crypto." core-crypto 2001-04-20 al
|
||||
index_core freebsd-4.3 "${MIR}crypto/krb4." core-crypto-krb4 2001-04-20 ae
|
||||
index_core freebsd-4.3 "${MIR}crypto/krb5." core-crypto-krb5 2001-04-20 ae
|
||||
index_core freebsd-4.3 "${MIR}games/games." core-games 2001-04-20 ak
|
||||
index_core freebsd-4.3 "${MIR}manpages/manpages." core-manpages 2001-04-20 ay
|
||||
index_core freebsd-4.3 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2001-03-22
|
||||
index_core freebsd-4.3 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2001-03-22
|
||||
index_core freebsd-4.3 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2001-03-22
|
||||
index freebsd1 --sys freebsd-4.3 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.4)
|
||||
MIR="${AMIRROR}i386/4.4-RELEASE/"
|
||||
index_core freebsd-4.4 "${MIR}bin/bin." core-bin 2001-09-20 fk
|
||||
index_core freebsd-4.4 "${MIR}crypto/crypto." core-crypto 2001-09-20 ak
|
||||
index_core freebsd-4.4 "${MIR}crypto/krb4." core-crypto-krb4 2001-09-20 ae
|
||||
index_core freebsd-4.4 "${MIR}crypto/krb5." core-crypto-krb5 2001-09-20 ad
|
||||
index_core freebsd-4.4 "${MIR}games/games." core-games 2001-09-20 ak
|
||||
index_core freebsd-4.4 "${MIR}manpages/manpages." core-manpages 2001-09-20 az
|
||||
index_core freebsd-4.4 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2001-09-05
|
||||
index_core freebsd-4.4 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2001-09-05
|
||||
index_core freebsd-4.4 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2001-09-05
|
||||
index freebsd1 --sys freebsd-4.4 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.5)
|
||||
MIR="${AMIRROR}i386/4.5-RELEASE/"
|
||||
index_core freebsd-4.5 "${MIR}bin/bin." core-bin 2002-01-29 fm
|
||||
index_core freebsd-4.5 "${MIR}crypto/crypto." core-crypto 2002-01-29 al
|
||||
index_core freebsd-4.5 "${MIR}crypto/krb4." core-crypto-krb4 2002-01-29 ae
|
||||
index_core freebsd-4.5 "${MIR}crypto/krb5." core-crypto-krb5 2002-01-29 ae
|
||||
index_core freebsd-4.5 "${MIR}games/games." core-games 2002-01-29 ak
|
||||
index_core freebsd-4.5 "${MIR}manpages/manpages." core-manpages 2002-01-29 az
|
||||
index_core freebsd-4.5 "${MIR}XF86336/Xfsrv.tgz" core-XF86336-Xfsrv 2002-01-08
|
||||
index_core freebsd-4.5 "${MIR}XF86336/Xman.tgz" core-XF86336-Xman 2002-01-08
|
||||
index_core freebsd-4.5 "${MIR}XF86336/Xset.tgz" core-XF86336-Xset 2002-01-08
|
||||
index freebsd1 --sys freebsd-4.5 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.6)
|
||||
MIR="${AMIRROR}i386/4.6-RELEASE/"
|
||||
index_core freebsd-4.6 "${MIR}bin/bin." core-bin 2002-06-15 fp
|
||||
index_core freebsd-4.6 "${MIR}crypto/crypto." core-crypto 2002-06-15 al
|
||||
index_core freebsd-4.6 "${MIR}crypto/krb4." core-crypto-krb4 2002-06-15 ae
|
||||
index_core freebsd-4.6 "${MIR}crypto/krb5." core-crypto-krb5 2002-06-15 ae
|
||||
index_core freebsd-4.6 "${MIR}games/games." core-games 2002-06-15 ak
|
||||
index_core freebsd-4.6 "${MIR}manpages/manpages." core-manpages 2002-06-15 az
|
||||
index freebsd1 --sys freebsd-4.6 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.6.2)
|
||||
MIR="${AMIRROR}i386/4.6.2-RELEASE/"
|
||||
index_core freebsd-4.6.2 "${MIR}bin/bin." core-bin 2002-08-15 fq
|
||||
index_core freebsd-4.6.2 "${MIR}crypto/crypto." core-crypto 2002-08-15 am
|
||||
index_core freebsd-4.6.2 "${MIR}crypto/krb4." core-crypto-krb4 2002-08-15 ae
|
||||
index_core freebsd-4.6.2 "${MIR}crypto/krb5." core-crypto-krb5 2002-08-15 ae
|
||||
index_core freebsd-4.6.2 "${MIR}games/games." core-games 2002-08-15 ak
|
||||
index_core freebsd-4.6.2 "${MIR}manpages/manpages." core-manpages 2002-08-15 az
|
||||
index freebsd1 --sys freebsd-4.6.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.7)
|
||||
MIR="${AMIRROR}i386/4.7-RELEASE/"
|
||||
index_core freebsd-4.7 "${MIR}bin/bin." core-bin 2002-10-10 fr
|
||||
index_core freebsd-4.7 "${MIR}crypto/crypto." core-crypto 2002-10-10 an
|
||||
index_core freebsd-4.7 "${MIR}crypto/krb4." core-crypto-krb4 2002-10-10 af
|
||||
index_core freebsd-4.7 "${MIR}crypto/krb5." core-crypto-krb5 2002-10-10 af
|
||||
index_core freebsd-4.7 "${MIR}games/games." core-games 2002-10-10 ak
|
||||
index_core freebsd-4.7 "${MIR}manpages/manpages." core-manpages 2002-10-10 bc
|
||||
index freebsd1 --sys freebsd-4.7 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.8)
|
||||
MIR="${AMIRROR}i386/4.8-RELEASE/"
|
||||
index_core freebsd-4.8 "${MIR}bin/bin." core-bin 2003-04-03 ft
|
||||
index_core freebsd-4.8 "${MIR}crypto/crypto." core-crypto 2003-04-03 au
|
||||
index_core freebsd-4.8 "${MIR}crypto/krb4." core-crypto-krb4 2003-04-03 ag
|
||||
index_core freebsd-4.8 "${MIR}crypto/krb5." core-crypto-krb5 2003-04-03 af
|
||||
index_core freebsd-4.8 "${MIR}games/games." core-games 2003-04-03 ak
|
||||
index_core freebsd-4.8 "${MIR}manpages/manpages." core-manpages 2003-04-03 bd
|
||||
index freebsd1 --sys freebsd-4.8 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.9)
|
||||
MIR="${AMIRROR}i386/4.9-RELEASE/"
|
||||
index_core freebsd-4.9 "${MIR}bin/bin." core-bin 2003-10-28 fv
|
||||
index_core freebsd-4.9 "${MIR}crypto/crypto." core-crypto 2003-10-28 au
|
||||
index_core freebsd-4.9 "${MIR}crypto/krb4." core-crypto-krb4 2003-10-28 ag
|
||||
index_core freebsd-4.9 "${MIR}crypto/krb5." core-crypto-krb5 2003-10-28 af
|
||||
index_core freebsd-4.9 "${MIR}games/games." core-games 2003-10-28 ak
|
||||
index_core freebsd-4.9 "${MIR}manpages/manpages." core-manpages 2003-10-28 bd
|
||||
index freebsd1 --sys freebsd-4.9 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.10)
|
||||
MIR="${AMIRROR}i386/4.10-RELEASE/"
|
||||
index_core freebsd-4.10 "${MIR}bin/bin." core-bin 2004-05-27 fw
|
||||
index_core freebsd-4.10 "${MIR}crypto/crypto." core-crypto 2004-05-27 au
|
||||
index_core freebsd-4.10 "${MIR}crypto/krb4." core-crypto-krb4 2004-05-27 ag
|
||||
index_core freebsd-4.10 "${MIR}crypto/krb5." core-crypto-krb5 2004-05-27 af
|
||||
index_core freebsd-4.10 "${MIR}games/games." core-games 2004-05-27 ak
|
||||
index_core freebsd-4.10 "${MIR}manpages/manpages." core-manpages 2004-05-27 bd
|
||||
index freebsd1 --sys freebsd-4.10 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
4.11)
|
||||
MIR="${AMIRROR}i386/4.11-RELEASE/"
|
||||
index_core freebsd-4.11 "${MIR}bin/bin." core-bin 2005-01-25 fx
|
||||
index_core freebsd-4.11 "${MIR}crypto/crypto." core-crypto 2005-01-25 au
|
||||
index_core freebsd-4.11 "${MIR}crypto/krb4." core-crypto-krb4 2005-01-25 ag
|
||||
index_core freebsd-4.11 "${MIR}crypto/krb5." core-crypto-krb5 2005-01-25 af
|
||||
index_core freebsd-4.11 "${MIR}games/games." core-games 2005-01-25 ak
|
||||
index_core freebsd-4.11 "${MIR}manpages/manpages." core-manpages 2005-01-25 be
|
||||
index freebsd1 --sys freebsd-4.11 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.0)
|
||||
MIR="${AMIRROR}i386/5.0-RELEASE/"
|
||||
index_core freebsd-5.0 "${MIR}crypto/crypto." core-crypto 2003-01-14 an
|
||||
index_core freebsd-5.0 "${MIR}crypto/krb4." core-crypto-krb4 2003-01-14 af
|
||||
index_core freebsd-5.0 "${MIR}crypto/krb5." core-crypto-krb5 2003-01-14 ag
|
||||
index_core freebsd-5.0 "${MIR}games/games." core-games 2003-01-14 ag
|
||||
index_core freebsd-5.0 "${MIR}manpages/manpages." core-manpages 2003-01-14 ay
|
||||
index freebsd1 --sys freebsd-5.0 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.1)
|
||||
MIR="${AMIRROR}i386/5.1-RELEASE/"
|
||||
index_core freebsd-5.1 "${MIR}crypto/crypto." core-crypto 2003-06-09 ae
|
||||
index_core freebsd-5.1 "${MIR}crypto/krb5.aa" core-crypto-krb5 2003-06-09
|
||||
index_core freebsd-5.1 "${MIR}games/games." core-games 2003-06-09 ab
|
||||
index_core freebsd-5.1 "${MIR}manpages/manpages." core-manpages 2003-06-09 ae
|
||||
index freebsd1 --sys freebsd-5.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.2)
|
||||
MIR="${AMIRROR}i386/5.2-RELEASE/"
|
||||
index_core freebsd-5.2 "${MIR}crypto/crypto." core-crypto 2004-01-09 ae
|
||||
index_core freebsd-5.2 "${MIR}crypto/krb5.aa" core-crypto-krb5 2004-01-09
|
||||
index_core freebsd-5.2 "${MIR}games/games." core-games 2004-01-09 ab
|
||||
index_core freebsd-5.2 "${MIR}manpages/manpages." core-manpages 2004-01-09 ae
|
||||
index freebsd1 --sys freebsd-5.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.2.1)
|
||||
MIR="${AMIRROR}i386/5.2.1-RELEASE/"
|
||||
index_core freebsd-5.2.1 "${MIR}crypto/crypto." core-crypto 2004-02-25 ae
|
||||
index_core freebsd-5.2.1 "${MIR}crypto/krb5.aa" core-crypto-krb5 2004-02-25
|
||||
index_core freebsd-5.2.1 "${MIR}games/games." core-games 2004-02-25 ab
|
||||
index_core freebsd-5.2.1 "${MIR}manpages/manpages." core-manpages 2004-02-25 ae
|
||||
index freebsd1 --sys freebsd-5.2.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.3)
|
||||
MIR="${AMIRROR}i386/5.3-RELEASE/"
|
||||
index_core freebsd-5.3 "${MIR}base/base." core-base 2004-11-06 bg
|
||||
index_core freebsd-5.3 "${MIR}games/games." core-games 2004-11-06 ab
|
||||
index_core freebsd-5.3 "${MIR}manpages/manpages." core-manpages 2004-11-06 ae
|
||||
index freebsd1 --sys freebsd-5.3 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.4)
|
||||
MIR="${AMIRROR}i386/5.4-RELEASE/"
|
||||
index_core freebsd-5.4 "${MIR}base/base." core-base 2005-05-09 bg
|
||||
index_core freebsd-5.4 "${MIR}games/games." core-games 2005-05-09 ab
|
||||
index_core freebsd-5.4 "${MIR}manpages/manpages." core-manpages 2005-05-09 ae
|
||||
index freebsd1 --sys freebsd-5.4 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
5.5)
|
||||
MIR="${AMIRROR}i386/5.5-RELEASE/"
|
||||
index_core freebsd-5.5 "${MIR}base/base." core-base 2006-05-25 bg
|
||||
index_core freebsd-5.5 "${MIR}games/games." core-games 2006-05-25 ab
|
||||
index_core freebsd-5.5 "${MIR}manpages/manpages." core-manpages 2006-05-25 ae
|
||||
index freebsd1 --sys freebsd-5.5 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
6.0)
|
||||
MIR="${AMIRROR}i386/6.0-RELEASE/"
|
||||
index_core freebsd-6.0 "${MIR}base/base." core-base 2005-11-04 bp
|
||||
index_core freebsd-6.0 "${MIR}games/games." core-games 2005-11-04 ab
|
||||
index_core freebsd-6.0 "${MIR}manpages/manpages." core-manpages 2005-11-04 af
|
||||
index freebsd1 --sys freebsd-6.0 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
6.1)
|
||||
MIR="${AMIRROR}i386/6.1-RELEASE/"
|
||||
index_core freebsd-6.1 "${MIR}base/base." core-base 2006-05-08 bd
|
||||
index_core freebsd-6.1 "${MIR}games/games." core-games 2006-05-08 ab
|
||||
index_core freebsd-6.1 "${MIR}manpages/manpages." core-manpages 2006-05-08 af
|
||||
index freebsd1 --sys freebsd-6.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
6.2)
|
||||
MIR="${AMIRROR}i386/6.2-RELEASE/"
|
||||
index_core freebsd-6.2 "${MIR}base/base." core-base 2007-01-15 bd
|
||||
index_core freebsd-6.2 "${MIR}games/games." core-games 2007-01-15 ab
|
||||
index_core freebsd-6.2 "${MIR}manpages/manpages." core-manpages 2007-01-15 af
|
||||
index freebsd1 --sys freebsd-6.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
6.3)
|
||||
MIR="${AMIRROR}i386/6.3-RELEASE/"
|
||||
index_core freebsd-6.3 "${MIR}base/base." core-base 2008-01-18 be
|
||||
index_core freebsd-6.3 "${MIR}games/games." core-games 2008-01-18 ab
|
||||
index_core freebsd-6.3 "${MIR}manpages/manpages." core-manpages 2008-01-18 af
|
||||
index freebsd1 --sys freebsd-6.3 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
6.4)
|
||||
MIR="${AMIRROR}i386/6.4-RELEASE/"
|
||||
index_core freebsd-6.4 "${MIR}base/base." core-base 2008-11-28 be
|
||||
index_core freebsd-6.4 "${MIR}games/games." core-games 2008-11-28 ab
|
||||
index_core freebsd-6.4 "${MIR}manpages/manpages." core-manpages 2008-11-28 af
|
||||
index freebsd1 --sys freebsd-6.4 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
7.0)
|
||||
MIR="${AMIRROR}i386/7.0-RELEASE/"
|
||||
index_core freebsd-7.0 "${MIR}base/base." core-base 2008-02-27 bh
|
||||
index_core freebsd-7.0 "${MIR}games/games." core-games 2008-02-27 ab
|
||||
index_core freebsd-7.0 "${MIR}manpages/manpages." core-manpages 2008-02-27 af
|
||||
index freebsd1 --sys freebsd-7.0 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
7.1)
|
||||
MIR="${AMIRROR}i386/7.1-RELEASE/"
|
||||
index_core freebsd-7.1 "${MIR}base/base." core-base 2009-01-04 bi
|
||||
index_core freebsd-7.1 "${MIR}games/games." core-games 2009-01-04 ab
|
||||
index_core freebsd-7.1 "${MIR}manpages/manpages." core-manpages 2009-01-04 af
|
||||
index freebsd1 --sys freebsd-7.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
7.2)
|
||||
MIR="${AMIRROR}i386/7.2-RELEASE/"
|
||||
index_core freebsd-7.2 "${MIR}base/base." core-base 2009-05-04 bi
|
||||
index_core freebsd-7.2 "${MIR}games/games." core-games 2009-05-04 ab
|
||||
index_core freebsd-7.2 "${MIR}manpages/manpages." core-manpages 2009-05-04 af
|
||||
index freebsd1 --sys freebsd-7.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
7.3)
|
||||
MIR="${AMIRROR}i386/7.3-RELEASE/"
|
||||
index_core freebsd-7.3 "${MIR}base/base." core-base 2010-03-23 bi
|
||||
index_core freebsd-7.3 "${MIR}games/games." core-games 2010-03-23 ab
|
||||
index_core freebsd-7.3 "${MIR}manpages/manpages." core-manpages 2010-03-23 af
|
||||
index freebsd1 --sys freebsd-7.3 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
7.4)
|
||||
MIR="${AMIRROR}i386/7.4-RELEASE/"
|
||||
index_core freebsd-7.4 "${MIR}base/base." core-base 2011-02-24 bi
|
||||
index_core freebsd-7.4 "${MIR}games/games." core-games 2011-02-24 ab
|
||||
index_core freebsd-7.4 "${MIR}manpages/manpages." core-manpages 2011-02-24 af
|
||||
index freebsd1 --sys freebsd-7.4 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
8.0)
|
||||
MIR="${AMIRROR}i386/8.0-RELEASE/"
|
||||
index_core freebsd-8.0 "${MIR}base/base." core-base 2009-11-25 bl
|
||||
index_core freebsd-8.0 "${MIR}games/games." core-games 2009-11-25 ab
|
||||
index_core freebsd-8.0 "${MIR}manpages/manpages." core-manpages 2009-11-25 af
|
||||
index freebsd1 --sys freebsd-8.0 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
8.1)
|
||||
MIR="${AMIRROR}i386/8.1-RELEASE/"
|
||||
index_core freebsd-8.1 "${MIR}base/base." core-base 2010-07-23 bl
|
||||
index_core freebsd-8.1 "${MIR}games/games." core-games 2010-07-23 ab
|
||||
index_core freebsd-8.1 "${MIR}manpages/manpages." core-manpages 2010-07-23 ag
|
||||
index freebsd1 --sys freebsd-8.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
8.2)
|
||||
MIR="${AMIRROR}i386/8.2-RELEASE/"
|
||||
index_core freebsd-8.2 "${MIR}base/base." core-base 2011-02-24 bm
|
||||
index_core freebsd-8.2 "${MIR}games/games." core-games 2011-02-24 ab
|
||||
index_core freebsd-8.2 "${MIR}manpages/manpages." core-manpages 2011-02-24 ag
|
||||
index freebsd1 --sys freebsd-8.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
8.3)
|
||||
MIR="${AMIRROR}i386/8.3-RELEASE/"
|
||||
index_core freebsd-8.3 "${MIR}base/base." core-base 2012-04-18 bm
|
||||
index_core freebsd-8.3 "${MIR}games/games." core-games 2012-04-18 ab
|
||||
index_core freebsd-8.3 "${MIR}manpages/manpages." core-manpages 2012-04-18 ag
|
||||
index freebsd1 --sys freebsd-8.3 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
8.4)
|
||||
MIR="${AMIRROR}i386/8.4-RELEASE/"
|
||||
index_core freebsd-8.4 "${MIR}base/base." core-base 2013-06-07 bq
|
||||
index_core freebsd-8.4 "${MIR}games/games." core-games 2013-06-07 ab
|
||||
index_core freebsd-8.4 "${MIR}manpages/manpages." core-manpages 2013-06-07 ag
|
||||
index freebsd1 --sys freebsd-8.4 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
9.0)
|
||||
MIR="${AMIRROR}i386/9.0-RELEASE/"
|
||||
index_core freebsd-9.0 "${MIR}base.txz" core-base 2012-01-12
|
||||
index_core freebsd-9.0 "${MIR}games.txz" core-games 2012-01-12
|
||||
index freebsd1 --sys freebsd-9.0 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
9.1)
|
||||
MIR="${AMIRROR}i386/9.1-RELEASE/"
|
||||
index_core freebsd-9.1 "${MIR}base.txz" core-base 2012-12-30
|
||||
index_core freebsd-9.1 "${MIR}games.txz" core-games 2012-12-30
|
||||
index freebsd1 --sys freebsd-9.1 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
9.2)
|
||||
MIR="${AMIRROR}i386/9.2-RELEASE/"
|
||||
index_core freebsd-9.2 "${MIR}base.txz" core-base 2013-09-27
|
||||
index_core freebsd-9.2 "${MIR}games.txz" core-games 2013-09-27
|
||||
index freebsd1 --sys freebsd-9.2 --arch i386 --mirror "${MIR}packages/"
|
||||
;;
|
||||
old)
|
||||
$0 1.0
|
||||
$0 2.0.5
|
||||
$0 2.1.5
|
||||
$0 2.1.7
|
||||
$0 2.2.2
|
||||
$0 2.2.5
|
||||
$0 2.2.6
|
||||
$0 2.2.7
|
||||
$0 2.2.8
|
||||
$0 3.0
|
||||
$0 3.1
|
||||
$0 3.2
|
||||
$0 3.3
|
||||
$0 3.4
|
||||
$0 3.5
|
||||
$0 3.5.1
|
||||
$0 4.0
|
||||
$0 4.1
|
||||
$0 4.1.1
|
||||
$0 4.2
|
||||
$0 4.3
|
||||
$0 4.4
|
||||
$0 4.5
|
||||
$0 4.6
|
||||
$0 4.6.2
|
||||
$0 4.7
|
||||
$0 4.8
|
||||
$0 4.9
|
||||
$0 4.10
|
||||
$0 4.11
|
||||
$0 5.0
|
||||
$0 5.1
|
||||
$0 5.2
|
||||
$0 5.2.1
|
||||
$0 5.3
|
||||
$0 5.4
|
||||
$0 5.5
|
||||
$0 6.0
|
||||
$0 6.1
|
||||
$0 6.2
|
||||
$0 6.3
|
||||
$0 6.4
|
||||
$0 7.0
|
||||
$0 7.1
|
||||
$0 7.2
|
||||
$0 7.3
|
||||
$0 7.4
|
||||
$0 8.0
|
||||
$0 8.1
|
||||
$0 8.2
|
||||
$0 8.3
|
||||
$0 8.4
|
||||
$0 9.0
|
||||
$0 9.1
|
||||
$0 9.2
|
||||
;;
|
||||
esac
|
||||
Loading…
Add table
Add a link
Reference in a new issue