]> piware.de Git - bin.git/commitdiff
remove ubuntu-mirror
authorMartin Pitt <martin@piware.de>
Mon, 7 Jul 2008 10:17:18 +0000 (12:17 +0200)
committerMartin Pitt <martin@piware.de>
Mon, 7 Jul 2008 10:17:18 +0000 (12:17 +0200)
syncpackage
ubuntu-mirror [deleted file]

index 4f645e332f75d9c3e30837b615a1b16ba699b2cd..bbf81a68a96331d32f0c4450401b673294735621 100755 (executable)
@@ -38,6 +38,8 @@ def dsc_getfiles(dsc):
     for l in f:
        if l.strip() == '':
            break
+        if not l.startswith(' '):
+            break
        fname = l.split()[2]
        if not fname.endswith('.dsc'):
            files.append(fname)
diff --git a/ubuntu-mirror b/ubuntu-mirror
deleted file mode 100755 (executable)
index 2b8544d..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh -e
-
-# dapper binaries
-debmirror --dist dapper,dapper-proposed,dapper-updates,dapper-security --section main,restricted --arch amd64 --no-source --progress --nocleanup --method http --ignore-release-gpg --host security.ubuntu.com --exclude-deb-section translation --exclude 'linux-(tree|source|patch|doc)[^/]*\.deb' --exclude 'linux.*(386|k7|k8|xeon|server)' --exclude 'linux.*(23|25|26|27|28|29)' --exclude 'ia32-libs*' --exclude '-dbg_.*\.deb' --exclude 'openoffice.org-(l10n|help).*' --root ubuntu /mirror
-
-# edgy binaries
-#debmirror --dist edgy,edgy-updates,edgy-security --section main --arch amd64 --no-source --progress --nocleanup --method http --ignore-release-gpg --host de.archive.ubuntu.com --exclude-deb-section translation --exclude-deb-section kde --exclude 'linux-(tree|source|patch|doc)[^/]*\.deb' --exclude 'linux.*(k8|xeon|server)' --exclude '-dbg_.*\.deb' --root ubuntu /mirror
-
-# feisty binaries
-#debmirror --dist feisty,feisty-proposed,feisty-updates,feisty-security --section main --arch amd64 --no-source --progress --nocleanup --method http --ignore-release-gpg --host de.archive.ubuntu.com --exclude-deb-section translation --exclude-deb-section kde --exclude 'linux-(tree|source|patch|doc|.*debug)[^/]*\.deb' --exclude 'linux.*(k8|xeon|server)' --exclude '-dbg_.*\.deb' --root ubuntu /mirror
-
-cat <<EOF | python
-import sys
-sys.path.append('/home/martin/ubuntu/ddeb-retriever/')
-import archive_tools
-
-archive_tools.archive_cleanup('/mirror')
-EOF