summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2010-02-13 16:40:52 +0100
committerJulian Andres Klode <jak@debian.org>2010-02-13 16:40:52 +0100
commitf594f8f2b8e90717ccbdcc3d17ada3c7d0e9163a (patch)
treec1165606e7e250cf16870382dec7d73ce543b213
parentc8fa835540d60393f2a1168625bf5d5ae01c4538 (diff)
downloadpython-apt-f594f8f2b8e90717ccbdcc3d17ada3c7d0e9163a.tar.gz
* data/templates/Debian.info.in:
- Replace the MatchURI with one that really matches something.
-rw-r--r--data/templates/Debian.info.in15
-rw-r--r--debian/changelog2
2 files changed, 10 insertions, 7 deletions
diff --git a/data/templates/Debian.info.in b/data/templates/Debian.info.in
index e5a1b424..9ea368d6 100644
--- a/data/templates/Debian.info.in
+++ b/data/templates/Debian.info.in
@@ -3,7 +3,7 @@ _ChangelogURI: http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changel
Suite: squeeze
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian 6.0 'Squeeze'
Component: main
@@ -28,7 +28,7 @@ _Description: Security updates
Suite: lenny
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian 5.0 'Lenny'
Component: main
@@ -53,7 +53,7 @@ _Description: Security updates
Suite: etch
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian 4.0 'Etch'
Component: main
@@ -78,7 +78,7 @@ _Description: Security updates
Suite: sarge
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian 3.1 'Sarge'
Component: main
@@ -103,7 +103,7 @@ _Description: Security updates
Suite: stable
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian current stable release
Component: main
@@ -116,7 +116,7 @@ _CompDescription: Non-DFSG-compatible Software
Suite: testing
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian testing
Component: main
@@ -129,7 +129,7 @@ _CompDescription: Non-DFSG-compatible Software
Suite: sid
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
-MatchURI: ftp[0-9]*\.[a-z]\.debian\.org
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian 'Sid' (unstable)
Component: main
@@ -142,6 +142,7 @@ _CompDescription: Non-DFSG-compatible Software
Suite: unstable
RepositoryType: deb
BaseURI: http://http.us.debian.org/debian/
+MatchURI: ftp[0-9]*\.([a-z]*\.){0,1}debian\.org
MirrorsFile: /usr/share/python-apt/templates/Debian.mirrors
_Description: Debian 'Sid' (unstable)
Component: main
diff --git a/debian/changelog b/debian/changelog
index fe0d3b9a..ad42ddda 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ python-apt (0.7.93.2) UNRELEASED; urgency=low
false positives.
* python/tagfile.cc:
- Implement the iterator protocol in TagFile.
+ * data/templates/Debian.info.in:
+ - Replace the MatchURI with one that really matches something.
-- Julian Andres Klode <jak@debian.org> Sun, 07 Feb 2010 19:58:40 +0100