Your message dated Thu, 26 Mar 2009 18:47:02 +0000
with message-id <[email protected]>
and subject line Bug#519189: fixed in python-support 0.90.5
has caused the Debian Bug report #519189,
regarding Deprecated module md5 with python 2.6
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
519189: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519189
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python-support
Severity: normal
Tags: patch
Problem:
/usr/bin/pysupport-movemodules:8: DeprecationWarning: the md5 module is
deprecated; use hashlib instead
import os,os.path,md5,re,sys
I'm attaching a patch that fix this problem, but don't solve it in python 2.5, a
python version checking is needed.
Thanks
--
Marco Rodrigues
http://Marco.Tondela.org
--- /usr/bin/pysupport-movemodules 2009-02-24 17:59:59.000000000 +0000
+++ /home/kmos/packages/pythonsupport-movemodules.new 2009-03-10 21:05:08.000000000 +0000
@@ -5,7 +5,8 @@
# See COPYING for details
from optparse import OptionParser
-import os,os.path,md5,re,sys
+import os,os.path,re,sys
+from hashlib import md5
sourcepath='usr/share/python-support'
extensionpath='usr/lib/python-support'
--- End Message ---
--- Begin Message ---
Source: python-support
Source-Version: 0.90.5
We believe that the bug you reported is fixed in the latest version of
python-support, which is due to be installed in the Debian FTP archive:
python-support_0.90.5.dsc
to pool/main/p/python-support/python-support_0.90.5.dsc
python-support_0.90.5.tar.gz
to pool/main/p/python-support/python-support_0.90.5.tar.gz
python-support_0.90.5_all.deb
to pool/main/p/python-support/python-support_0.90.5_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Josselin Mouette <[email protected]> (supplier of updated python-support package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Thu, 26 Mar 2009 19:09:31 +0100
Source: python-support
Binary: python-support
Architecture: source all
Version: 0.90.5
Distribution: experimental
Urgency: low
Maintainer: Josselin Mouette <[email protected]>
Changed-By: Josselin Mouette <[email protected]>
Description:
python-support - automated rebuilding support for Python modules
Closes: 519189
Changes:
python-support (0.90.5) experimental; urgency=low
.
* movemodules:
+ Better handling of files from multiple sources, used for files
being installed in different directories for python2.5 and 2.6.
+ Add /usr/local/lib/pythonX.Y/dist-packages as a source for
modules.
+ Use hashlib instead of md5. Closes: #519189.
* Require python 2.5 for the hashlib module.
Checksums-Sha1:
6310cf26f2fe475d903e039f9d6f493988408dda 772 python-support_0.90.5.dsc
5f350e8dbb23f1b2d2f7a78e345a238241527356 33226 python-support_0.90.5.tar.gz
ce206a174df484a9666234bc7ab58ab4b300eefc 31268 python-support_0.90.5_all.deb
Checksums-Sha256:
bc95a99fa0c9a09b2386b2efa0d5babe282a47a21312d1d96b42a91f0ab7fcf8 772
python-support_0.90.5.dsc
1ec4e091147c2ef2aa322383de3f06f720974c509bb1d705fc406312fac132d5 33226
python-support_0.90.5.tar.gz
2aa25c42c01bda93b07785983f0bc97901022b8021d2972468bd104d5eb52a96 31268
python-support_0.90.5_all.deb
Files:
c566c72f73c421e2e559d80dd1b3574d 772 python optional python-support_0.90.5.dsc
a9f6d96170cb8c8c24775c37649832bf 33226 python optional
python-support_0.90.5.tar.gz
5f035221607c05234991b3b3c9a2d3bf 31268 python optional
python-support_0.90.5_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iD8DBQFJy8nfrSla4ddfhTMRAns0AJ9YLTvO8Ztl0EmZYX0XoXIyhadbaQCdHijb
603aJpHRo4c+cwY4pkgJhks=
=ODYN
-----END PGP SIGNATURE-----
--- End Message ---