Various changes/fixes, 3 new distro versions
This commit is contained in:
parent
a2f3692f3c
commit
2da67d585c
9 changed files with 58 additions and 17 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
# Usage: ./arch.sh
|
||||
# Synchronises the database with an Arch mirror, fetching any packages that
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
#!/bin/bash
|
||||
|
||||
CURL="curl -fSs -A manual-page-crawler,info@manned.org --limit-rate 500k"
|
||||
PSQL="psql -U manned -Awtq"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
. ./common.sh
|
||||
|
||||
|
|
|
|||
26
util/deb.sh
26
util/deb.sh
|
|
@ -271,6 +271,18 @@ ubuntu_trusty() {
|
|||
syncrepo 88 "http://nl.archive.ubuntu.com/ubuntu/" "trusty-security" "main multiverse restricted universe"
|
||||
}
|
||||
|
||||
ubuntu_utopic() {
|
||||
syncrepo 89 "http://nl.archive.ubuntu.com/ubuntu/" "utopic" "main multiverse restricted universe"
|
||||
syncrepo 89 "http://nl.archive.ubuntu.com/ubuntu/" "utopic-updates" "main multiverse restricted universe"
|
||||
syncrepo 89 "http://nl.archive.ubuntu.com/ubuntu/" "utopic-security" "main multiverse restricted universe"
|
||||
}
|
||||
|
||||
ubuntu_vivid() {
|
||||
syncrepo 90 "http://nl.archive.ubuntu.com/ubuntu/" "vivid" "main multiverse restricted universe"
|
||||
syncrepo 90 "http://nl.archive.ubuntu.com/ubuntu/" "vivid-updates" "main multiverse restricted universe"
|
||||
syncrepo 90 "http://nl.archive.ubuntu.com/ubuntu/" "vivid-security" "main multiverse restricted universe"
|
||||
}
|
||||
|
||||
ubuntu_old() {
|
||||
ubuntu_warty
|
||||
ubuntu_hoary
|
||||
|
|
@ -282,6 +294,7 @@ ubuntu_old() {
|
|||
ubuntu_intrepid
|
||||
ubuntu_jaunty
|
||||
ubuntu_karmic
|
||||
ubuntu_lucid
|
||||
ubuntu_maverick
|
||||
ubuntu_natty
|
||||
ubuntu_hardy
|
||||
|
|
@ -292,9 +305,10 @@ ubuntu_old() {
|
|||
}
|
||||
|
||||
ubuntu_active() {
|
||||
ubuntu_lucid # until 2015-04
|
||||
ubuntu_precise # until 2017-04
|
||||
ubuntu_trusty # until 2019-04
|
||||
ubuntu_utopic # until 2015-07
|
||||
ubuntu_vivid # until 2016-01
|
||||
}
|
||||
|
||||
ubuntu() {
|
||||
|
|
@ -359,6 +373,15 @@ debian_wheezy() {
|
|||
syncrepo 83 "http://ftp.nl.debian.org/debian/" "wheezy-updates" "non-free" "dists/wheezy-updates/non-free/Contents-i386.gz"
|
||||
}
|
||||
|
||||
debian_jessie() {
|
||||
syncrepo 91 "http://ftp.nl.debian.org/debian/" "jessie" "main" "dists/jessie/main/Contents-i386.gz"
|
||||
syncrepo 91 "http://ftp.nl.debian.org/debian/" "jessie" "contrib" "dists/jessie/contrib/Contents-i386.gz"
|
||||
syncrepo 91 "http://ftp.nl.debian.org/debian/" "jessie" "non-free" "dists/jessie/non-free/Contents-i386.gz"
|
||||
syncrepo 91 "http://ftp.nl.debian.org/debian/" "jessie-updates" "main" "dists/jessie-updates/main/Contents-i386.gz"
|
||||
syncrepo 91 "http://ftp.nl.debian.org/debian/" "jessie-updates" "contrib" "dists/jessie-updates/contrib/Contents-i386.gz"
|
||||
syncrepo 91 "http://ftp.nl.debian.org/debian/" "jessie-updates" "non-free" "dists/jessie-updates/non-free/Contents-i386.gz"
|
||||
}
|
||||
|
||||
debian_old() {
|
||||
debian_buzz
|
||||
debian_rex
|
||||
|
|
@ -375,6 +398,7 @@ debian_old() {
|
|||
debian_active() {
|
||||
debian_squeeze
|
||||
debian_wheezy
|
||||
debian_jessie
|
||||
}
|
||||
|
||||
debian() {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
. ./common.sh
|
||||
|
||||
|
|
@ -727,6 +727,14 @@ f9_2() {
|
|||
check_pkgdir 86 "$MIR/packages"
|
||||
}
|
||||
|
||||
f9_3() {
|
||||
MIR="http://ftp.dk.freebsd.org/pub/FreeBSD/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"
|
||||
}
|
||||
|
||||
|
||||
old() {
|
||||
f1_0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue