[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#625225: marked as done (python-apt-doc: minor improvements to 'Contributing to python-apt' document)



Your message dated Fri, 27 May 2011 14:51:48 +0000
with message-id <E1QPyOC-0002FR-FI@franck.debian.org>
and subject line Bug#625225: fixed in python-apt 0.8.0
has caused the Debian Bug report #625225,
regarding python-apt-doc: minor improvements to 'Contributing to python-apt' document
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 owner@bugs.debian.org
immediately.)


-- 
625225: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=625225
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: python-apt-doc
Version: 0.8.0~exp4
Severity: minor
Tags: patch

There was one typo, one broken link, and some inconsistency in the use of subsection underlining.

-- System Information:
Debian Release: 6.0.1
  APT prefers stable-updates
  APT policy: (900, 'stable-updates'), (900, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.38-2-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_ZA.utf8, LC_CTYPE=en_ZA.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages python-apt-doc depends on:
ii  libjs-jquery                  1.5.1-1    JavaScript library for dynamic web
ii  python-apt                    0.8.0~exp4 Python interface to libapt-pkg

python-apt-doc recommends no packages.

python-apt-doc suggests no packages.

-- no debconf information
# Bazaar merge directive format 2 (Bazaar 0.90)
# revision_id: tshepang@gmail.com-20110502153430-2nrhux7mfn1ttndz
# target_branch: http://bzr.debian.org/apt/python-apt/debian-\
#   experimental/
# testament_sha1: 0f47ea31b811253a8a86bb96384b73cda58f9acb
# timestamp: 2011-05-02 17:37:24 +0200
# base_revision_id: jak@debian.org-20110429115746-do2rdff78lubdppr
# 
# Begin patch
=== modified file 'doc/source/tutorials/contributing.rst'
--- doc/source/tutorials/contributing.rst	2010-05-19 13:15:36 +0000
+++ doc/source/tutorials/contributing.rst	2011-05-02 15:34:30 +0000
@@ -7,16 +7,19 @@
 Let's say you need a new feature, you can develop it, and you want to get it
 included in python-apt. Then be sure to follow the following guidelines.
 
+
 Available branches
 -------------------
 First of all, let's talk a bit about the bzr branches of python-apt. In the
 following parts, we will assume that you use bzr to create your changes and
 submit them.
 
+
 Distribution branches
-^^^^^^^^^^^^^^^^^^^^^
+---------------------
 
 **debian-sid:** http://bzr.debian.org/apt/python-apt/debian-sid
+
     This is the official Debian branch of python-apt. All code which will be
     uploaded to Debian is here. It is not as up-to-date as the mvo branch,
     because this branch often gets updated just right before the release
@@ -33,6 +36,7 @@
     VCS-Browser: http://bzr.debian.org/loggerhead/apt/python-apt/debian-experimental/changes
 
 **ubuntu:** ``lp:~ubuntu-core-dev/python-apt/ubuntu``
+
     This is the official Ubuntu development branch. The same notes apply as
     for the debian-sid branch above. For the Ubuntu release branches, replace
     ``ubuntu`` with the version you want; for example, for lucid:
@@ -42,8 +46,10 @@
 
 
 Important Personal branches
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+---------------------------
+
 **mvo:** lp:~mvo/python-apt/mvo
+
     This is Michael Vogt's branch. Most of the development of apt happens here,
     as he is the lead maintainer of python-apt.
 
@@ -54,7 +60,8 @@
     VCS-Browser: http://bazaar.launchpad.net/~mvo/python-apt/mvo/
 
 **jak:** http://bzr.debian.org/users/jak/python-apt/jak
-    This is Julian Andres Klode's (the documentation author's) branch. This
+
+    This is Julian Andres Klode's (the documentation author) branch. This
     is the place where cleanup and documentation updates happen. It is based
     off debian-sid. Most stuff happens in debian-sid now.
 
@@ -63,8 +70,10 @@
 
 .. highlightlang:: c
 
+
 C++ Coding style
 ----------------
+
 This document gives coding conventions for the C++ code comprising
 the C++ extensions of Python APT.  Please see the companion
 informational PEP describing style guidelines for Python code (:PEP:`8`).
@@ -84,7 +93,7 @@
 
 
 C++ dialect
-^^^^^^^^^^^
+-----------
 
 - Use ISO standard C++ (the 1998 version of the standard).
 
@@ -95,7 +104,7 @@
 
 
 Code lay-out
-^^^^^^^^^^^^
+------------
 
 - Use 3-space indents, in files that already use them. In new source files,
   that were created after this rule was introduced, use 4-space indents.
@@ -175,7 +184,7 @@
 
 
 Naming conventions
-^^^^^^^^^^^^^^^^^^
+------------------
 
 - Use a ``Py`` prefix for public functions; never for static
   functions.  The ``Py_`` prefix is reserved for global service
@@ -197,7 +206,8 @@
 
 
 Documentation Strings
-^^^^^^^^^^^^^^^^^^^^^
+---------------------
+
 - The first line of each function docstring should be a "signature
   line" that gives a brief synopsis of the arguments and return
   value.  For example::
@@ -228,21 +238,24 @@
 
 Python Coding Style
 -------------------
+
 The coding style for all code written in python is :PEP:`8`. Exceptions from
 this rule are the documentation, where code is sometimes formatted differently
 to explain aspects, and functions provided for 0.7 compatibility purposes.
 
-When writing code, use tools like pylint, pyflakes, pychecker and pep8.py from
-http://svn.browsershots.org/trunk/devtools/pep8/ to verify that your code is
+When writing code, use tools like pylint, pyflakes, pychecker and pep8
+(all available from Debian/Ubuntu) to verify that your code is
 OK. Fix all the problems which seem reasonable, and mention the unfixed issues
 when asking for merge.
 
-In order to make the automatic generation of Python 3 code using 2to possible,
+In order to make the automatic generation of Python 3 code using 2to3 possible,
 code written in Python may not utilize any functionality unsupported by 2to3 or
 deprecated as of Python 2.6.
 
+
 Submitting your patch
 ---------------------
+
 First of all, the patch you create should be based against the most current
 branch of python-apt (debian-sid or debian-experimental). If it is a bugfix,
 you should probably use debian-sid. If you choose the wrong branch, we will
@@ -298,6 +311,7 @@
 
 .. highlightlang:: sh
 
+
 Example patch session
 ----------------------
 In the following example, we edit a file, create a merge directive (an enhanced

# Begin bundle
IyBCYXphYXIgcmV2aXNpb24gYnVuZGxlIHY0CiMKQlpoOTFBWSZTWSB3U0kAAjB/gEDRIIBQ5///
djxGgL////BQBJ7jItjlxo7ttogShEGjRGmjKNonoIynqYRkNGjQNGgaRT9FMaaYUNRiDRgjCMEA
YABKAiZCaNCMjUh+lNqGQyMQPUDI00OYBMBMjACMTEwmEwQ0xNMBJKZU/Kh7IjUep6m1GQAAAAAH
qCMzGZ7I0GCzSzFMJUL4soFQxNqvW/+MmvBq1WzMQuh4lEE8q+aOm9vNGFo+YqsYXtMTOC0y7Q5I
9d/d7cVBBVP58hAe/wbDPbpuiZWdurlJs7XC1NZosKJRYnyxrnQJhhq3copDGLl1df2t/Wpl+/j8
KV/vvjXCT5dFbm/DVDY4VGWLpI7iDzsUi6bI0otNOu65sL9q9wyiQ2bToyfyS+lW3iBOJXISYBzi
ViYG0tVK2n/T+ZpjoRKBdNW4LXd07Ch4KiXVIU8JaFBlEWZEfn53n3uh2CoD2wRFlfPSUrRhL4Bg
8EAxYsjBHvJfP6swQuqVw73IXwt+N0CHOJ3eOUIGqPNqpKcL1/Itz2p6U3U2CS2I4KFwz8nb1S97
LMVZ8jzRpEmRJ625k0sIrM4eXCYmzMBioJXETcKljaARhGUhbyppUizQuxxGuqupsEV4IgpHDTqv
JXrLW0iW5wkNG6Rk3TUR8XsMnMHh5uVDJtOujrtquefIyEnU5aRRS6JV4V0amw2F4vWsVnRaZYio
3fHovsca3BnE1ZcwCA8ObS+ogIXGCzWoxaY02SlMbLdTuI3ukJwhVorxHQEdpbEQeqSFgux6pYUs
EFRj3uKVSUhIoDllEjGOhXM6W7dMHwMyDUx3zUU3R2VWihmpRkUqsEoSzK/VwI676LmuYx+PDcHU
iUT0qKq+TnOZD4dMHyRrYOXJxeMGJJqNhsOWO/iTR3Beiev9Bp+XzW21hJzmqAqsYSi1dakJ509m
Oa/pue/iMdPWnTIhZbjV6OxREEG2cXhfP0Cm+otiXLQlzivz5SJoTVEZpAiF1s71FFZJemmAfUMI
qmI82JbglFEjCO2G424FrDlWPFPa0O07C7lw0yXq1NAdWWpqw834UcNWXMr+e39W2dS4+TFcLYl3
YjJjKBhoKoZMITwn78YjwgjY4Ya07lO8UsTWUnnr3nHMVrjhZo3vVgMI30QxHAlNZAtVLsHgYGsX
xFXMTURBk0c+v0IWeV3ePxRY5E4cAOaScdgbMoIE54adE0pMENyraDq9Nbo0BmvgLYG8wZyyX3Bv
oik8KQdQDpNqjHRYZpFr54dd27Gp6dcyWmlJydC/ZsOonKlJPApEKf5xYdBeIn/MZwStQ/3UTWtJ
JVBUTcz+/tEZ0ojMyZmSqg3os/XtftK1S+ypnIkFriKofQzkSOwV9oNmmTIt/npz36uoHNlTbI9a
4Pv1R0w4yjenGstZUxYOo7dqXSiGN+uRUOolm3fS/ypKTwplxTCgdx8VddWFt4vw28lMvTVErSwb
qSm++eCaHTxQ4nhIVRUVWb3Dmrc/PJXcWqdesh2QzLmylkrzLESk1SNWDWIUeJ4ix7pEq+QjS0R6
jOnP67H77NEBdD1o4CNUksxrDnHXCZnpG6tRcEmq/zuJahkpZa4/8XckU4UJAgd1NJA=
# Bazaar merge directive format 2 (Bazaar 0.90)
# revision_id: tshepang@gmail.com-20110502153430-2nrhux7mfn1ttndz
# target_branch: http://bzr.debian.org/apt/python-apt/debian-\
#   experimental/
# testament_sha1: 0f47ea31b811253a8a86bb96384b73cda58f9acb
# timestamp: 2011-05-02 17:37:24 +0200
# base_revision_id: jak@debian.org-20110429115746-do2rdff78lubdppr
# 
# Begin patch
=== modified file 'doc/source/tutorials/contributing.rst'
--- doc/source/tutorials/contributing.rst	2010-05-19 13:15:36 +0000
+++ doc/source/tutorials/contributing.rst	2011-05-02 15:34:30 +0000
@@ -7,16 +7,19 @@
 Let's say you need a new feature, you can develop it, and you want to get it
 included in python-apt. Then be sure to follow the following guidelines.
 
+
 Available branches
 -------------------
 First of all, let's talk a bit about the bzr branches of python-apt. In the
 following parts, we will assume that you use bzr to create your changes and
 submit them.
 
+
 Distribution branches
-^^^^^^^^^^^^^^^^^^^^^
+---------------------
 
 **debian-sid:** http://bzr.debian.org/apt/python-apt/debian-sid
+
     This is the official Debian branch of python-apt. All code which will be
     uploaded to Debian is here. It is not as up-to-date as the mvo branch,
     because this branch often gets updated just right before the release
@@ -33,6 +36,7 @@
     VCS-Browser: http://bzr.debian.org/loggerhead/apt/python-apt/debian-experimental/changes
 
 **ubuntu:** ``lp:~ubuntu-core-dev/python-apt/ubuntu``
+
     This is the official Ubuntu development branch. The same notes apply as
     for the debian-sid branch above. For the Ubuntu release branches, replace
     ``ubuntu`` with the version you want; for example, for lucid:
@@ -42,8 +46,10 @@
 
 
 Important Personal branches
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+---------------------------
+
 **mvo:** lp:~mvo/python-apt/mvo
+
     This is Michael Vogt's branch. Most of the development of apt happens here,
     as he is the lead maintainer of python-apt.
 
@@ -54,7 +60,8 @@
     VCS-Browser: http://bazaar.launchpad.net/~mvo/python-apt/mvo/
 
 **jak:** http://bzr.debian.org/users/jak/python-apt/jak
-    This is Julian Andres Klode's (the documentation author's) branch. This
+
+    This is Julian Andres Klode's (the documentation author) branch. This
     is the place where cleanup and documentation updates happen. It is based
     off debian-sid. Most stuff happens in debian-sid now.
 
@@ -63,8 +70,10 @@
 
 .. highlightlang:: c
 
+
 C++ Coding style
 ----------------
+
 This document gives coding conventions for the C++ code comprising
 the C++ extensions of Python APT.  Please see the companion
 informational PEP describing style guidelines for Python code (:PEP:`8`).
@@ -84,7 +93,7 @@
 
 
 C++ dialect
-^^^^^^^^^^^
+-----------
 
 - Use ISO standard C++ (the 1998 version of the standard).
 
@@ -95,7 +104,7 @@
 
 
 Code lay-out
-^^^^^^^^^^^^
+------------
 
 - Use 3-space indents, in files that already use them. In new source files,
   that were created after this rule was introduced, use 4-space indents.
@@ -175,7 +184,7 @@
 
 
 Naming conventions
-^^^^^^^^^^^^^^^^^^
+------------------
 
 - Use a ``Py`` prefix for public functions; never for static
   functions.  The ``Py_`` prefix is reserved for global service
@@ -197,7 +206,8 @@
 
 
 Documentation Strings
-^^^^^^^^^^^^^^^^^^^^^
+---------------------
+
 - The first line of each function docstring should be a "signature
   line" that gives a brief synopsis of the arguments and return
   value.  For example::
@@ -228,21 +238,24 @@
 
 Python Coding Style
 -------------------
+
 The coding style for all code written in python is :PEP:`8`. Exceptions from
 this rule are the documentation, where code is sometimes formatted differently
 to explain aspects, and functions provided for 0.7 compatibility purposes.
 
-When writing code, use tools like pylint, pyflakes, pychecker and pep8.py from
-http://svn.browsershots.org/trunk/devtools/pep8/ to verify that your code is
+When writing code, use tools like pylint, pyflakes, pychecker and pep8
+(all available from Debian/Ubuntu) to verify that your code is
 OK. Fix all the problems which seem reasonable, and mention the unfixed issues
 when asking for merge.
 
-In order to make the automatic generation of Python 3 code using 2to possible,
+In order to make the automatic generation of Python 3 code using 2to3 possible,
 code written in Python may not utilize any functionality unsupported by 2to3 or
 deprecated as of Python 2.6.
 
+
 Submitting your patch
 ---------------------
+
 First of all, the patch you create should be based against the most current
 branch of python-apt (debian-sid or debian-experimental). If it is a bugfix,
 you should probably use debian-sid. If you choose the wrong branch, we will
@@ -298,6 +311,7 @@
 
 .. highlightlang:: sh
 
+
 Example patch session
 ----------------------
 In the following example, we edit a file, create a merge directive (an enhanced

# Begin bundle
IyBCYXphYXIgcmV2aXNpb24gYnVuZGxlIHY0CiMKQlpoOTFBWSZTWSB3U0kAAjB/gEDRIIBQ5///
djxGgL////BQBJ7jItjlxo7ttogShEGjRGmjKNonoIynqYRkNGjQNGgaRT9FMaaYUNRiDRgjCMEA
YABKAiZCaNCMjUh+lNqGQyMQPUDI00OYBMBMjACMTEwmEwQ0xNMBJKZU/Kh7IjUep6m1GQAAAAAH
qCMzGZ7I0GCzSzFMJUL4soFQxNqvW/+MmvBq1WzMQuh4lEE8q+aOm9vNGFo+YqsYXtMTOC0y7Q5I
9d/d7cVBBVP58hAe/wbDPbpuiZWdurlJs7XC1NZosKJRYnyxrnQJhhq3copDGLl1df2t/Wpl+/j8
KV/vvjXCT5dFbm/DVDY4VGWLpI7iDzsUi6bI0otNOu65sL9q9wyiQ2bToyfyS+lW3iBOJXISYBzi
ViYG0tVK2n/T+ZpjoRKBdNW4LXd07Ch4KiXVIU8JaFBlEWZEfn53n3uh2CoD2wRFlfPSUrRhL4Bg
8EAxYsjBHvJfP6swQuqVw73IXwt+N0CHOJ3eOUIGqPNqpKcL1/Itz2p6U3U2CS2I4KFwz8nb1S97
LMVZ8jzRpEmRJ625k0sIrM4eXCYmzMBioJXETcKljaARhGUhbyppUizQuxxGuqupsEV4IgpHDTqv
JXrLW0iW5wkNG6Rk3TUR8XsMnMHh5uVDJtOujrtquefIyEnU5aRRS6JV4V0amw2F4vWsVnRaZYio
3fHovsca3BnE1ZcwCA8ObS+ogIXGCzWoxaY02SlMbLdTuI3ukJwhVorxHQEdpbEQeqSFgux6pYUs
EFRj3uKVSUhIoDllEjGOhXM6W7dMHwMyDUx3zUU3R2VWihmpRkUqsEoSzK/VwI676LmuYx+PDcHU
iUT0qKq+TnOZD4dMHyRrYOXJxeMGJJqNhsOWO/iTR3Beiev9Bp+XzW21hJzmqAqsYSi1dakJ509m
Oa/pue/iMdPWnTIhZbjV6OxREEG2cXhfP0Cm+otiXLQlzivz5SJoTVEZpAiF1s71FFZJemmAfUMI
qmI82JbglFEjCO2G424FrDlWPFPa0O07C7lw0yXq1NAdWWpqw834UcNWXMr+e39W2dS4+TFcLYl3
YjJjKBhoKoZMITwn78YjwgjY4Ya07lO8UsTWUnnr3nHMVrjhZo3vVgMI30QxHAlNZAtVLsHgYGsX
xFXMTURBk0c+v0IWeV3ePxRY5E4cAOaScdgbMoIE54adE0pMENyraDq9Nbo0BmvgLYG8wZyyX3Bv
oik8KQdQDpNqjHRYZpFr54dd27Gp6dcyWmlJydC/ZsOonKlJPApEKf5xYdBeIn/MZwStQ/3UTWtJ
JVBUTcz+/tEZ0ojMyZmSqg3os/XtftK1S+ypnIkFriKofQzkSOwV9oNmmTIt/npz36uoHNlTbI9a
4Pv1R0w4yjenGstZUxYOo7dqXSiGN+uRUOolm3fS/ypKTwplxTCgdx8VddWFt4vw28lMvTVErSwb
qSm++eCaHTxQ4nhIVRUVWb3Dmrc/PJXcWqdesh2QzLmylkrzLESk1SNWDWIUeJ4ix7pEq+QjS0R6
jOnP67H77NEBdD1o4CNUksxrDnHXCZnpG6tRcEmq/zuJahkpZa4/8XckU4UJAgd1NJA=

--- End Message ---
--- Begin Message ---
Source: python-apt
Source-Version: 0.8.0

We believe that the bug you reported is fixed in the latest version of
python-apt, which is due to be installed in the Debian FTP archive:

python-apt-common_0.8.0_all.deb
  to main/p/python-apt/python-apt-common_0.8.0_all.deb
python-apt-dbg_0.8.0_amd64.deb
  to main/p/python-apt/python-apt-dbg_0.8.0_amd64.deb
python-apt-dev_0.8.0_all.deb
  to main/p/python-apt/python-apt-dev_0.8.0_all.deb
python-apt-doc_0.8.0_all.deb
  to main/p/python-apt/python-apt-doc_0.8.0_all.deb
python-apt_0.8.0.dsc
  to main/p/python-apt/python-apt_0.8.0.dsc
python-apt_0.8.0.tar.gz
  to main/p/python-apt/python-apt_0.8.0.tar.gz
python-apt_0.8.0_amd64.deb
  to main/p/python-apt/python-apt_0.8.0_amd64.deb
python3-apt-dbg_0.8.0_amd64.deb
  to main/p/python-apt/python3-apt-dbg_0.8.0_amd64.deb
python3-apt_0.8.0_amd64.deb
  to main/p/python-apt/python3-apt_0.8.0_amd64.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 625225@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julian Andres Klode <jak@debian.org> (supplier of updated python-apt 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 ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: RIPEMD160

Format: 1.8
Date: Fri, 27 May 2011 16:12:46 +0200
Source: python-apt
Binary: python-apt python-apt-doc python-apt-dbg python-apt-dev python-apt-common python3-apt python3-apt-dbg
Architecture: source amd64 all
Version: 0.8.0
Distribution: unstable
Urgency: low
Maintainer: jak@debian.org
Changed-By: Julian Andres Klode <jak@debian.org>
Description: 
 python-apt - Python interface to libapt-pkg
 python-apt-common - Python interface to libapt-pkg (locales)
 python-apt-dbg - Python interface to libapt-pkg (debug extension)
 python-apt-dev - Python interface to libapt-pkg (development files)
 python-apt-doc - Python interface to libapt-pkg (API documentation)
 python3-apt - Python 3 interface to libapt-pkg
 python3-apt-dbg - Python 3 interface to libapt-pkg (debug extension)
Closes: 597054 625225 626430 626532
Changes: 
 python-apt (0.8.0) unstable; urgency=low
 .
   * Upload to unstable
 .
   [ Julian Andres Klode ]
   * Increase Breaks for update-notifier to 0.99.3debian9
   * utils/get_debian_mirrors.py: Adjust for new Alioth SCM urls
   * debian/control: Standards-Version 3.9.2
   * Fix Lintian overrides
   * Fix spelling errors reported by Lintian (sep[a->e]rated, overrid[d]en)
   * po/urd.po: Remove, ur.po is the correct file
   * debian/source/format: Add, set it to "3.0 (native)"
 .
   [ Tshepang Lekhonkhobe ]
   * Fix get_changelog in Python 3 (Closes: #626532)
   * apt/package.py: fix a few typos [formated->formatted] (Closes: #597054)
   * doc/source/tutorials/contributing.rst: minor improvements (Closes: #625225)
     - one typo [2to => 2to3], one broken link [pep8.py link]
 .
   [ Translation updates ]
   * Esperanto (Closes: #626430)
Checksums-Sha1: 
 960f1a2b80117fc4d1be44a71f90f419961c6f7a 1297 python-apt_0.8.0.dsc
 00d818ed8bd48a1d3b81d50b40405d6f7a72dc29 352022 python-apt_0.8.0.tar.gz
 414796e68a5a1c8f2b50e377744b4a48238bdbbd 305024 python-apt_0.8.0_amd64.deb
 3b66ee938545d9594e311795835ef9a7d6b9f1d0 224166 python-apt-doc_0.8.0_all.deb
 eb0061e982f601c8f8088da8ffe895cb558e5fc1 4068862 python-apt-dbg_0.8.0_amd64.deb
 951a85afe9a0e499108edd4bcce77dfe2a18a8cc 7628 python-apt-dev_0.8.0_all.deb
 ae487e7c06063cd9dd8797bf9a542538b1854cec 87900 python-apt-common_0.8.0_all.deb
 b3fd1559b04e0c1603fd080332e754b3b01386e5 184720 python3-apt_0.8.0_amd64.deb
 1a6f232c967fb24e2495ab527b40fb80ebcb930e 2030074 python3-apt-dbg_0.8.0_amd64.deb
Checksums-Sha256: 
 c40fb11eee4c80ed72d7871faae0249b31035660a5ef5df5102e4f670be03ba9 1297 python-apt_0.8.0.dsc
 152e2d64896b1128900c3cd550a6abc23dceec5248da5a09c265cd053f3a2612 352022 python-apt_0.8.0.tar.gz
 ff7bc106460b4b593f894a26024aff239b7dca11efcefcaa2bb2e8abb4b62f41 305024 python-apt_0.8.0_amd64.deb
 2b3ce3901f94c9232ee57644d759180f0eb3ecf43c3524756321fb9ac2cb43eb 224166 python-apt-doc_0.8.0_all.deb
 d7adc7bc05d9a6766978fccfdf0e9b4b131bb111ee955ad6e7db316f5753efa1 4068862 python-apt-dbg_0.8.0_amd64.deb
 26c84b0bdc9c0b5ef69a2ac8618b870eb2fbe5084caee5873019cfe49d651641 7628 python-apt-dev_0.8.0_all.deb
 02df8ddd5a3d4691208e50ca9fefaa7e4d8ebd44c927b3fe0293bddf2225ca43 87900 python-apt-common_0.8.0_all.deb
 ea68c65df88102787c8643fe27db7fe2820da014b4406307a7ae63890f1463fb 184720 python3-apt_0.8.0_amd64.deb
 334018ba78abcc8ee08f15a3318c085ea33b1717767c1f35698baebc1c325532 2030074 python3-apt-dbg_0.8.0_amd64.deb
Files: 
 3950ef3153ad2ae8ee4c83b220199f8f 1297 python standard python-apt_0.8.0.dsc
 43b67317f23443ff0e6f50b5c45fab80 352022 python standard python-apt_0.8.0.tar.gz
 4da7f7c89b75240abecf69dcef48f281 305024 python standard python-apt_0.8.0_amd64.deb
 0f2b0a05e5a6fce02af9ab03f9bb7fb1 224166 doc optional python-apt-doc_0.8.0_all.deb
 26b447757ea84e3df29e35b4b80224f5 4068862 debug extra python-apt-dbg_0.8.0_amd64.deb
 58555af87c8a8ff31a9c8fd54b358624 7628 python optional python-apt-dev_0.8.0_all.deb
 220c396d3f3610dfc94c5e1f7590e675 87900 python optional python-apt-common_0.8.0_all.deb
 a99408c4165ced34d861cb815a60a949 184720 python optional python3-apt_0.8.0_amd64.deb
 4067c58a2d5e1384f7ae98d79801a8d6 2030074 debug extra python3-apt-dbg_0.8.0_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEAREDAAYFAk3fs2sACgkQrCpf/gCCPsIWFwCfSXFxvi/IHKuwP0KNRLUilzhh
3dwAniuChk7anrhuFbzuElD7+1tIklSB
=JWQJ
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: