Re: [Python-modules-team] Comments regarding rabbitvcs_0.15.0.5-1+nmu1_amd64.changes
On Sun, Dec 04, 2011 at 01:00:21AM +0100, Luca Falavigna wrote: > Il 03/12/2011 16:46, Andreas Henriksson ha scritto: > > Sorry. I overlooked that. I guess the best thing for now would be to > > just disable rabbitvcs-thunar Will upload a new NMU unless > > anyone else has a better idea. > > I'd be inclined to reject this upload, so you will be able to address > the rabbitvcs-thunar issue without a second upload. Also, chosen version Thanks. > should have been 0.15.0.5-0.1 Yes but that would mean it's still lower then 0.15.0.5-1~precise which this was based on (which should have been versioned 0.15.0.5-0~precise) I don't know if that is a good idea, maybe doesn't matter that much since it's a PPA package and not officially uploaded to ubuntu. -- Andreas Henriksson ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Bug#650950: pyyaml: empty dbg package
Package: pyyaml Version: 3.10-1 Severity: normal the package python-yaml-dbg is empty in wheezy, probably due to python 3.2 using pep 3149 namings for extensions which is not accounted for in this line in debian/rules:36: find debian/python3-yaml-dbg \ ! -type d ! -name '*_d.so' | xargs rm -f find debian/python3-yaml-dbg -depth -empty -exec rmdir {} \; signature.asc Description: OpenPGP digital signature ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Bug#636484: pyzmq patches
Hi, attached a stack of patches fixing some minor issues and adding python3 packages for pyzmq. Please consider applying them to the repository, or allow me to do so. Regards, Julian Taylor From ebd4f19c978b8a0ee79d7cf1cad47e559d0c1c7c Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Sun, 4 Dec 2011 16:48:25 +0100 Subject: [PATCH 1/4] * remove python:Provides, python:Breaks and XB-Python-Version not needed with dh_python2 * bump python dependency to >= 2.6.6-3~ for dh_python2 --- debian/changelog |9 + debian/control |6 +- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index fcb41b5..9d155cb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +pyzmq (2.1.10-2) UNRELEASED; urgency=low + + * remove python:Provides, python:Breaks and XB-Python-Version +not needed with dh_python2 + * bump python dependency to >= 2.6.6-3~ for dh_python2 + + + -- Julian Taylor Sun, 04 Dec 2011 16:43:30 +0100 + pyzmq (2.1.10-1) unstable; urgency=low * New upstream version diff --git a/debian/control b/debian/control index 6d4f15d..bcb5bbb 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Maintainer: Debian Python Modules Team Uploaders: Miguel Landaeta Build-Depends: debhelper (>= 7.0.50~), - python-all-dev (>= 2.4), python-all-dbg (>= 2.4), python-setuptools, cython-dbg (>= 0.13), + python-all-dev (>= 2.6.6-3~), python-all-dbg (>= 2.4), python-setuptools, cython-dbg (>= 0.13), libzmq-dev (>= 2.1.10), libzmq-dev (<= 2.1.11) Standards-Version: 3.9.2 X-Python-Version: >= 2.4 @@ -15,9 +15,6 @@ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pyzmq/trunk/ Package: python-zmq Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends}, ${python:Depends} -Provides: ${python:Provides} -Breaks: ${python:Breaks} -XB-Python-Version: ${python:Versions} Description: Python bindings for 0MQ library Python bindings for 0MQ. 0MQ is a small, fast, and free software library that gives you message-passing concurrency @@ -38,7 +35,6 @@ Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-zmq (= ${binary:Version}) Recommends: python-dbg -Breaks: ${python:Breaks} Description: Python bindings for 0MQ library - debugging files Python bindings for 0MQ. 0MQ is a small, fast, and free software library that gives you message-passing concurrency -- 1.7.5.4 From 7dda37f108183545cbe44ac70733a75ec5c52441 Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Sun, 4 Dec 2011 16:49:56 +0100 Subject: [PATCH 2/4] * do not delete *_d.so files from lib/debug in python-zmq-dbg - needed for gdb when using debug interpreter --- debian/changelog |5 +++-- debian/rules |1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9d155cb..2f572fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,9 +3,10 @@ pyzmq (2.1.10-2) UNRELEASED; urgency=low * remove python:Provides, python:Breaks and XB-Python-Version not needed with dh_python2 * bump python dependency to >= 2.6.6-3~ for dh_python2 + * do not delete *_d.so files from lib/debug in python-zmq-dbg +- needed for gdb when using debug interpreter - - -- Julian Taylor Sun, 04 Dec 2011 16:43:30 +0100 + -- Julian Taylor Sun, 04 Dec 2011 16:48:54 +0100 pyzmq (2.1.10-1) unstable; urgency=low diff --git a/debian/rules b/debian/rules index 03edf3e..4d21a0b 100755 --- a/debian/rules +++ b/debian/rules @@ -33,7 +33,6 @@ endif override_dh_strip: ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) dh_strip --dbg-package=python-zmq-dbg - find debian/python-zmq-dbg/usr/lib/debug -name '*_d.so' -delete endif get-orig-source: -- 1.7.5.4 From 7f02cc7a3555b55d97c96655f609cff72cb6e9fe Mon Sep 17 00:00:00 2001 From: Julian Taylor Date: Sun, 4 Dec 2011 16:57:42 +0100 Subject: [PATCH 3/4] * fix dep5 copyright syntax error --- debian/changelog |1 + debian/copyright |2 +- 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2f572fe..5a8727e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ pyzmq (2.1.10-2) UNRELEASED; urgency=low * bump python dependency to >= 2.6.6-3~ for dh_python2 * do not delete *_d.so files from lib/debug in python-zmq-dbg - needed for gdb when using debug interpreter + * fix dep5 copyright syntax error -- Julian Taylor Sun, 04 Dec 2011 16:48:54 +0100 diff --git a/debian/copyright b/debian/copyright index 1f34496..95bff92 100644 --- a/debian/copyright +++ b/debian/copyright @@ -14,7 +14,7 @@ Files: perf/* Copyright: © 2007-2010, iMatix Corporation. License: LGPL-3 -Files: zmq/eventloop/zmqstream.py, +Files: zmq/eventloop/zmqstream.py zmq/eventloop/ioloop.py Copyright: © 2009, Facebook. License: Apache-2.0 -- 1.7.5.4 From 23ec2467d922ca6b3e9036e1580b349712f934ae Mon Sep 17 0
[Python-modules-team] Bug#636484: pyzmq patches
Hi, I think you are a member of the python-modules team already, so feel free to apply them directly :) (if you ar enot a member yet, just apply ;)) Cheers and thanks, Bernd On 12/04/2011 05:09 PM, Julian Taylor wrote: > Hi, > attached a stack of patches fixing some minor issues and adding python3 > packages for pyzmq. > Please consider applying them to the repository, or allow me to do so. > > Regards, > Julian Taylor -- Bernd ZeimetzDebian GNU/Linux Developer http://bzed.dehttp://www.debian.org GPG Fingerprint: ECA1 E3F2 8E11 2432 D485 DD95 EB36 171A 6FF9 435F ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] ipython 0.11-2 MIGRATED to testing
FYI: The status of the ipython source package in Debian's testing distribution has changed. Previous version: 0.10.2-1 Current version: 0.11-2 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See http://release.debian.org/testing-watch/ for more information. ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Processed: your mail
Processing commands for cont...@bugs.debian.org: > tag 650789 + pending Bug #650789 [src:python-clamav] binary-indep doesn't build python-clamav Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 650789: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650789 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Processing of python-clamav_0.4.1-6_i386.changes
python-clamav_0.4.1-6_i386.changes uploaded successfully to localhost along with the files: python-clamav_0.4.1-6.dsc python-clamav_0.4.1-6.debian.tar.gz python-clamav_0.4.1-6_all.deb python-pyclamav_0.4.1-6_i386.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] python-clamav_0.4.1-6_i386.changes ACCEPTED into unstable
Accepted: python-clamav_0.4.1-6.debian.tar.gz to main/p/python-clamav/python-clamav_0.4.1-6.debian.tar.gz python-clamav_0.4.1-6.dsc to main/p/python-clamav/python-clamav_0.4.1-6.dsc python-clamav_0.4.1-6_all.deb to main/p/python-clamav/python-clamav_0.4.1-6_all.deb python-pyclamav_0.4.1-6_i386.deb to main/p/python-clamav/python-pyclamav_0.4.1-6_i386.deb Override entries for your package: python-clamav_0.4.1-6.dsc - source python python-clamav_0.4.1-6_all.deb - extra python python-pyclamav_0.4.1-6_i386.deb - optional python Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 650789 Thank you for your contribution to Debian. ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Bug#650789: marked as done (binary-indep doesn't build python-clamav)
Your message dated Sun, 04 Dec 2011 18:49:41 + with message-id and subject line Bug#650789: fixed in python-clamav 0.4.1-6 has caused the Debian Bug report #650789, regarding binary-indep doesn't build python-clamav 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 ow...@bugs.debian.org immediately.) -- 650789: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650789 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Source: python-clamav Version: 0.4.1-5 Severity: serious Justification: Policy 4.9 The "binary-indep" target doesn't build the "python-clamav" package, even though it's arch:all. -- Jakub Wilk --- End Message --- --- Begin Message --- Source: python-clamav Source-Version: 0.4.1-6 We believe that the bug you reported is fixed in the latest version of python-clamav, which is due to be installed in the Debian FTP archive: python-clamav_0.4.1-6.debian.tar.gz to main/p/python-clamav/python-clamav_0.4.1-6.debian.tar.gz python-clamav_0.4.1-6.dsc to main/p/python-clamav/python-clamav_0.4.1-6.dsc python-clamav_0.4.1-6_all.deb to main/p/python-clamav/python-clamav_0.4.1-6_all.deb python-pyclamav_0.4.1-6_i386.deb to main/p/python-clamav/python-pyclamav_0.4.1-6_i386.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 650...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Scott Kitterman (supplier of updated python-clamav 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 ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 04 Dec 2011 13:10:00 -0500 Source: python-clamav Binary: python-pyclamav python-clamav Architecture: source all i386 Version: 0.4.1-6 Distribution: unstable Urgency: low Maintainer: Debian Python Modules Team Changed-By: Scott Kitterman Description: python-clamav - Python bindings to ClamAV - transitional package python-pyclamav - Python bindings to ClamAV Closes: 650789 Changes: python-clamav (0.4.1-6) unstable; urgency=low . * Build python-clamav transitional package in binary-indep target (Closes: #650789) * Add build-arch and build-indep targets * Enhance package description * Bump standards version to 3.9.2 without further change Checksums-Sha1: 1a3405843849e801d7acc143f05ced9c782a988c 1491 python-clamav_0.4.1-6.dsc 32086390f5114be01d85840bcb4adeafb0d5611c 5136 python-clamav_0.4.1-6.debian.tar.gz b0cc6e5d9416921c32b3b88d8027bb2b868e56f3 4558 python-clamav_0.4.1-6_all.deb 9c23673a3e07692c3b04ccc6bb346109a52a3afe 17590 python-pyclamav_0.4.1-6_i386.deb Checksums-Sha256: c0e3049a7f317dfd27e48cb9c26cf9e98691b376dfdeec17e07f4d29a87285c9 1491 python-clamav_0.4.1-6.dsc 5329d2e9130f7bd023b19201e8b08010ec9192fa2ecb3369f7c6a00e92e98b85 5136 python-clamav_0.4.1-6.debian.tar.gz eb77476ec59270617dde26929af57577ab4d41112e1030e21ed4ee7f8f5fd21f 4558 python-clamav_0.4.1-6_all.deb 14d9f0ded45e28de35b16ed316321f9202ed74eaab6e6361ee632252c2b422bc 17590 python-pyclamav_0.4.1-6_i386.deb Files: 9118b5016bd8f023971415f1171d3707 1491 python optional python-clamav_0.4.1-6.dsc ba6cf0ed9ba2c5afe700d19ed65a4f19 5136 python optional python-clamav_0.4.1-6.debian.tar.gz 376412fae914d5e19ec71b763d32f0ea 4558 python extra python-clamav_0.4.1-6_all.deb 39b22150b28d4bbeedcaf52625eb7224 17590 python optional python-pyclamav_0.4.1-6_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (GNU/Linux) iEYEARECAAYFAk7bvPAACgkQHajaM93NaGqiHgCglIwfk1WkU9MrcTQSbUHQQgMh crIAn19YaJNotquorpn/3dtkGAH33z00 =REQ7 -END PGP SIGNATURE- --- End Message --- ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
Re: [Python-modules-team] Comments regarding rabbitvcs_0.15.0.5-1+nmu1_amd64.changes
Il 04/12/2011 13:28, Andreas Henriksson ha scritto: > Yes but that would mean it's still lower then 0.15.0.5-1~precise which > this was based on (which should have been versioned 0.15.0.5-0~precise) > I don't know if that is a good idea, maybe doesn't matter that much since > it's a PPA package and not officially uploaded to ubuntu. I wouldn't care much, as there will always be cases where people upload packages to PPAs with weird versions which could interfere with official packages. We cannot be responsible for them. ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] rabbitvcs_0.15.0.5-1+nmu1_amd64.changes REJECTED
As agreed with ah === Please feel free to respond to this email if you don't understand why your files were rejected, or if you upload new files which address our concerns. ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Processed: your mail
Processing commands for cont...@bugs.debian.org: > tag 650950 + pending Bug #650950 [pyyaml] pyyaml: empty dbg package Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 650950: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650950 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Processing of pyyaml_3.10-2_i386.changes
pyyaml_3.10-2_i386.changes uploaded successfully to localhost along with the files: pyyaml_3.10-2.dsc pyyaml_3.10-2.diff.gz python-yaml_3.10-2_i386.deb python-yaml-dbg_3.10-2_i386.deb python3-yaml_3.10-2_i386.deb python3-yaml-dbg_3.10-2_i386.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] pyyaml_3.10-2_i386.changes ACCEPTED into unstable
Accepted: python-yaml-dbg_3.10-2_i386.deb to main/p/pyyaml/python-yaml-dbg_3.10-2_i386.deb python-yaml_3.10-2_i386.deb to main/p/pyyaml/python-yaml_3.10-2_i386.deb python3-yaml-dbg_3.10-2_i386.deb to main/p/pyyaml/python3-yaml-dbg_3.10-2_i386.deb python3-yaml_3.10-2_i386.deb to main/p/pyyaml/python3-yaml_3.10-2_i386.deb pyyaml_3.10-2.diff.gz to main/p/pyyaml/pyyaml_3.10-2.diff.gz pyyaml_3.10-2.dsc to main/p/pyyaml/pyyaml_3.10-2.dsc Override entries for your package: python-yaml-dbg_3.10-2_i386.deb - extra debug python-yaml_3.10-2_i386.deb - optional python python3-yaml-dbg_3.10-2_i386.deb - extra debug python3-yaml_3.10-2_i386.deb - optional python pyyaml_3.10-2.dsc - source python Announcing to debian-devel-chan...@lists.debian.org Closing bugs: 650950 Thank you for your contribution to Debian. ___ Python-modules-team mailing list Python-modules-team@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team
[Python-modules-team] Bug#650950: marked as done (pyyaml: empty dbg package)
Your message dated Mon, 05 Dec 2011 03:37:43 + with message-id and subject line Bug#650950: fixed in pyyaml 3.10-2 has caused the Debian Bug report #650950, regarding pyyaml: empty dbg package 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 ow...@bugs.debian.org immediately.) -- 650950: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650950 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: pyyaml Version: 3.10-1 Severity: normal the package python-yaml-dbg is empty in wheezy, probably due to python 3.2 using pep 3149 namings for extensions which is not accounted for in this line in debian/rules:36: find debian/python3-yaml-dbg \ ! -type d ! -name '*_d.so' | xargs rm -f find debian/python3-yaml-dbg -depth -empty -exec rmdir {} \; signature.asc Description: OpenPGP digital signature --- End Message --- --- Begin Message --- Source: pyyaml Source-Version: 3.10-2 We believe that the bug you reported is fixed in the latest version of pyyaml, which is due to be installed in the Debian FTP archive: python-yaml-dbg_3.10-2_i386.deb to main/p/pyyaml/python-yaml-dbg_3.10-2_i386.deb python-yaml_3.10-2_i386.deb to main/p/pyyaml/python-yaml_3.10-2_i386.deb python3-yaml-dbg_3.10-2_i386.deb to main/p/pyyaml/python3-yaml-dbg_3.10-2_i386.deb python3-yaml_3.10-2_i386.deb to main/p/pyyaml/python3-yaml_3.10-2_i386.deb pyyaml_3.10-2.diff.gz to main/p/pyyaml/pyyaml_3.10-2.diff.gz pyyaml_3.10-2.dsc to main/p/pyyaml/pyyaml_3.10-2.dsc 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 650...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Scott Kitterman (supplier of updated pyyaml 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 ftpmas...@debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.8 Date: Sun, 04 Dec 2011 13:48:42 -0500 Source: pyyaml Binary: python-yaml python-yaml-dbg python3-yaml python3-yaml-dbg Architecture: source i386 Version: 3.10-2 Distribution: unstable Urgency: low Maintainer: Debian Python Modules Team Changed-By: Scott Kitterman Description: python-yaml - YAML parser and emitter for Python python-yaml-dbg - YAML parser and emitter for Python (debug build) python3-yaml - YAML parser and emitter for Python3 python3-yaml-dbg - YAML parser and emitter for Python3 (debug build) Closes: 650950 Changes: pyyaml (3.10-2) unstable; urgency=low . * Remove python3-yaml-dbg find rule in debian/rules so python3 debug package is built correctly (Closes: #650950) * Remove similar rule for python-yaml-dbg since it is not needed * Fix short descriptions for debug packages so they are not the same as non-debug packages * Also ship upstream changelog in python-yaml * Add python3-yaml.docs to README/CHANGES are shipped in python3-yaml * Bump standards version to 3.9.2 without further change Checksums-Sha1: 603f6fbf9c42bc9ab1e978c17fb4291d84309515 1522 pyyaml_3.10-2.dsc 302d360275a5154897a8c4a6f23ea411b1c1ed47 3933 pyyaml_3.10-2.diff.gz 55a65df927a77335f1e6aef6f72f79ed290384b7 164530 python-yaml_3.10-2_i386.deb f09fcfc6fc53543228f13bc4ea226f9f36a85e86 123198 python-yaml-dbg_3.10-2_i386.deb a1352b48a0d81125c88aa3a3a914c5066fb0bd1e 99062 python3-yaml_3.10-2_i386.deb 4cecca80fa46c92bbcfe88ff8e8982beb89c3c0a 62296 python3-yaml-dbg_3.10-2_i386.deb Checksums-Sha256: 16f81589739e17fdd2de0b46ba42fd1f7015b2533786652b571a4404da790aeb 1522 pyyaml_3.10-2.dsc 6fcd823efdbb2308297364514713d3bf2b769e79aa68d8f6e4486556f982653e 3933 pyyaml_3.10-2.diff.gz fa8da841833be495b20ac2ac60c46421763ba8323b92aa2e3df24398716ee5ad 164530 python-yaml_3.10-2_i386.deb 135bd3e2b7b6718881e1706c2fae29a85984e97de3782a9dddc05043c2666fe2 123198 python-yaml-dbg_3.10-2_i386.deb 7e50b899a021e17c922b164bedea14990234aa1691a74ccdffe6a2f2b2d06921 99062 python3-yaml_3.10-2_i386.deb 5ae660feaa2a4078a3867bba0e2a4e637be1196e910e197f8e622412625c578b 62296 python3-yaml-dbg_3.10-2_i386.deb Files: 7a2504a5addf70652ea062d276ebf882 1522 python optional pyyaml_3.10-2.dsc cef25c5c1de9ab95f8f89080f109c898 3933 python optional pyyaml_3.10-2.diff.gz 4174ab4b9d321015a4dbfc148eb44100 164530 python optional python-yaml_3.10-2_i386.deb d6263f33f78e5c6f3e4307a4d3eb7e65 123198 debug extra python-yaml-dbg_3.10-2_i386.deb 695ed6e21c95d0e2