3
0
mirror of https://git.launchpad.net/ubuntu-dev-tools synced 2025-04-22 07:41:08 +00:00

Uploaded X.YY to RELEASE.

This commit is contained in:
Scott Kitterman 2009-04-15 22:56:07 -04:00
parent c86b608ab1
commit f14f840e4a
3 changed files with 10 additions and 5 deletions

9
debian/changelog vendored

@ -1,4 +1,4 @@
ubuntu-dev-tools (0.72) UNRELEASED; urgency=low
ubuntu-dev-tools (0.72) jaunty; urgency=low
[ Jonathan Davies ]
* README.updates: Added - lists steps to take when updating this package.
@ -22,7 +22,12 @@ ubuntu-dev-tools (0.72) UNRELEASED; urgency=low
- Fully handle missing build log directories (LP: #342154).
- More generalized approach to Distro-specific logic (LP: #342158).
-- Nathan Handler <nhandler@ubuntu.com> Sat, 28 Mar 2009 15:19:26 +0100
[ Scott Kitterman ]
* dgetlp:
- Port to hashlib module instead of md5 (deprecated in Python 2.6)
* Bump minimum python-all-dev version to 2.5
-- Scott Kitterman <scott@kitterman.com> Wed, 15 Apr 2009 22:51:14 -0400
ubuntu-dev-tools (0.71) jaunty; urgency=low

2
debian/control vendored

@ -4,7 +4,7 @@ Priority: optional
Maintainer: Ubuntu MOTU Developers <ubuntu-motu@lists.ubuntu.com>
Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk
Vcs-Browser: http://codebrowse.launchpad.net/~ubuntu-dev/ubuntu-dev-tools/trunk/changes
Build-Depends: cdbs (>= 0.4.49), debhelper (>= 6), python-all-dev (>= 2.4)
Build-Depends: cdbs (>= 0.4.49), debhelper (>= 6), python-all-dev (>= 2.5)
Build-Depends-Indep: python-central (>= 0.5)
XS-Python-Version: >= 2.5
Homepage: https://launchpad.net/ubuntu-dev-tools/

4
dgetlp

@ -30,7 +30,7 @@
import sys, os
from optparse import OptionParser
import urllib2
import md5
import hashlib
import subprocess
import GnuPGInterface
from cStringIO import StringIO
@ -131,7 +131,7 @@ class DscParse(object):
"""
chunk_size = 1073741824
fd = open(name, 'rb')
res = md5.new()
res = hashlib.md5()
if not sum:
assert self.files, "I have no files"
sum = [x[0] for x in self.files if x[2] == name][0]