Browse Source

Finalize 3.20

suites/jessie-proposed-backports
Chris Lawrence 17 years ago
parent
commit
bdb7ef46c5
  1. 9
      checkversions.py
  2. 10
      debian/changelog
  3. 6
      debianbts.py

9
checkversions.py

@ -20,7 +20,7 @@
## ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
## SOFTWARE.
#
# $Id: checkversions.py,v 1.4 2006-04-02 06:16:12 lawrencc Exp $
# $Id: checkversions.py,v 1.5 2006-04-09 16:36:43 lawrencc Exp $
#
# Version ##VERSION##; see changelog for revision history
@ -39,7 +39,7 @@ class PackagesParser(sgmllib.SGMLParser):
self.versions = {}
self.savedata = None
self.row = None
arch = r'\b(all|'+re.escape(arch)+r')\b'
arch = r'\s(all|'+re.escape(arch)+r')\b'
self.arch = re.compile(arch)
self.dist = None
@ -203,7 +203,6 @@ def check_available(package, version, dists=None, check_incoming=True,
if __name__=='__main__':
#print check_available('mozilla-browser', '2:1.5-3', arch='s390')
print check_available('reportbug', '3.17', arch='i386')
print check_available('reportbug', '3.25', arch='i386')
print check_available('reportbug', '3.7', arch='i386')
print check_available('openssh-server', '1:4.2p1-8', arch='i386')
print check_available('openssh-server', '1:4.2p1-8', arch='kfreebsd-i386')
#print check_available('dpkg', '1.10.2', arch='sparc')

10
debian/changelog

@ -1,3 +1,13 @@
reportbug (3.20) unstable; urgency=low
* Remove the experimental tag. (Closes: #360662)
* Autotagging experimental is thus silly. (Closes: #229579)
* Fix spelling of "overridden" in reportbug(1). (Closes: #360839)
* Fix matching of "i386" to architectures in checkversions.py.
(Closes: #361359, #361641)
-- Chris Lawrence <lawrencc@debian.org> Sun, 9 Apr 2006 12:34:44 -0400
reportbug (3.19) unstable; urgency=low
* Include --tag=patch example in man page. (Closes: #355821)

6
debianbts.py

@ -22,7 +22,7 @@
#
# Version ##VERSION##; see changelog for revision history
#
# $Id: debianbts.py,v 1.22 2006-03-16 03:50:19 lawrencc Exp $
# $Id: debianbts.py,v 1.23 2006-04-09 16:36:43 lawrencc Exp $
import sgmllib, glob, os, re, reportbug, rfc822, time, urllib, checkversions
from urlutils import open_url
@ -368,15 +368,13 @@ TAGS = {
## 'woody' : 'This bug only applies to the woody release (Debian 3.0).',
## 'sarge' : 'This bug only applies to the sarge release (Debian 3.1).',
## 'sid' : 'This bug only applies to the unstable branch of Debian.',
'experimental' : 'This bug only applies to a package in the experimental '
'branch of Debian.',
"l10n" : "This bug reports a localization/internationalization issue.",
## 'done' : 'No more tags.',
}
EXTRA_TAGS = ['potato', 'woody', 'sarge', 'security', 'sid', 'upstream']
TAGLIST = ['l10n', 'patch', 'experimental']
TAGLIST = ['l10n', 'patch']
CRITICAL_TAGLIST = ['security']
def yn_bool(setting):

Loading…
Cancel
Save