diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-04 11:25:23 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-04 11:25:23 +0200 |
| commit | 6d740ab2dee60d3fe10c563932fc62d5dd5d2057 (patch) | |
| tree | d9d53945718826af428d41e401c778e4dd252256 /SoftwareProperties | |
| parent | 8da0ea4e985d947ff176d2f5e5eada1f1d255a1e (diff) | |
| download | python-apt-6d740ab2dee60d3fe10c563932fc62d5dd5d2057.tar.gz | |
* SoftwareProperties/aptsources.py:
- added edgy sources
* debian/changelog:
- prepared a new upload
Diffstat (limited to 'SoftwareProperties')
| -rw-r--r-- | SoftwareProperties/aptsources.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/SoftwareProperties/aptsources.py b/SoftwareProperties/aptsources.py index 74ef2f4a..5da04b23 100644 --- a/SoftwareProperties/aptsources.py +++ b/SoftwareProperties/aptsources.py @@ -468,6 +468,27 @@ class SourceEntryMatcher: "^dapper-updates$", _("Ubuntu 6.06 LTS Updates"), ubuntu_comps, ubuntu_comps_descr)) + # edgy + self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", + "^edgy-security$", + _("Ubuntu 6.10 Security Updates"), + ubuntu_comps, ubuntu_comps_descr)) + self.dist_list.append(self.MatchDist(".*security.ubuntu.com/ubuntu", + "^edgy-security$", + _("Ubuntu 6.10 Security Updates"), + ubuntu_comps, ubuntu_comps_descr)) + self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", + "^edgy$", + "Ubuntu 6.10", + ubuntu_comps, ubuntu_comps_descr)) + self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", + "^edgy-backports$", + _("Ubuntu 6.10 Backports"), + ubuntu_comps, ubuntu_comps_descr)) + self.dist_list.append(self.MatchDist(".*archive.ubuntu.com/ubuntu", + "^edgy-updates$", + _("Ubuntu 6.10 Updates"), + ubuntu_comps, ubuntu_comps_descr)) # DEBIAN |
