summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2013-05-10 15:14:44 +0200
committerYorhel <git@yorhel.nl>2013-05-10 15:14:44 +0200
commitdbc2cac13bf08c6522d49f4a28116237d07c6ad8 (patch)
tree77f7e6e3aad1e7a4d7ab5a8e4e6f9da9fbfb07bd
parent9346e4d7943cc60f443cab3486af9256b1c2430c (diff)
Added and indexed Debian Wheezy
-rw-r--r--schema.sql3
-rwxr-xr-xutil/deb.sh7
-rwxr-xr-xwww/index.pl1
3 files changed, 10 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index 49af323..c1f9810 100644
--- a/schema.sql
+++ b/schema.sql
@@ -141,7 +141,8 @@ INSERT INTO systems (id, name, release, short, relorder) VALUES
(79, 'FreeBSD', '8.3', 'freebsd-8.3', 50),
(80, 'FreeBSD', '9.0', 'freebsd-9.0', 51),
(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);
-- Removes any path components and compression extensions from the filename.
diff --git a/util/deb.sh b/util/deb.sh
index 4c6aee3..b79b694 100755
--- a/util/deb.sh
+++ b/util/deb.sh
@@ -337,6 +337,12 @@ debian_squeeze() {
syncrepo 28 "http://ftp.nl.debian.org/debian/" "squeeze-updates" "main contrib non-free"
}
+debian_wheezy() {
+ syncrepo 83 "http://ftp.nl.debian.org/debian/" "wheezy" "main contrib non-free"
+ # No updates yet
+ #syncrepo 83 "http://ftp.nl.debian.org/debian/" "wheezy-updates" "main contrib non-free"
+}
+
debian_old() {
debian_buzz
debian_rex
@@ -352,6 +358,7 @@ debian_old() {
debian_active() {
debian_squeeze
+ debian_wheezy
}
debian() {
diff --git a/www/index.pl b/www/index.pl
index 13f7e66..e316831 100755
--- a/www/index.pl
+++ b/www/index.pl
@@ -46,6 +46,7 @@ TUWF::set(
$TUWF::OBJ->{pkglinks} = {
arch => sub { "http://www.archlinux.org/packages/$_[0]{category}/i686/$_[0]{name}/" },
'debian-squeeze' => sub { "http://packages.debian.org/squeeze/$_[0]{name}" },
+ 'debian-wheezy' => sub { "http://packages.debian.org/wheezy/$_[0]{name}" },
'ubuntu-hardy' => sub { "http://packages.ubuntu.com/hardy/$_[0]{name}" },
'ubuntu-lucid' => sub { "http://packages.ubuntu.com/lucid/$_[0]{name}" },
'ubuntu-oneiric' => sub { "http://packages.ubuntu.com/oneiric/$_[0]{name}" },