PythonDebugPackages

Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2007-02-13 16:31:32
Size: 10511
Editor: dslb-088-073-122-193
Comment:
Revision 3 as of 2007-02-14 15:29:07
Size: 12616
Editor: dslb-088-073-096-223
Comment: update extension list
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Example packaging changes for `python-pam`:
{{{
diff -Nru /tmp/sH45lBGtVd/python-pam-0.4.2/debian/changelog /tmp/Bc2MXcIIa9/python-pam-0.4.2/debian/changelog
--- /tmp/sH45lBGtVd/python-pam-0.4.2/debian/changelog 2007-02-12 14:46:04.000000000 +0100
+++ /tmp/Bc2MXcIIa9/python-pam-0.4.2/debian/changelog 2007-02-13 16:54:40.000000000 +0100
@@ -1,3 +1,14 @@
+python-pam (0.4.2-10.4ubuntu1) feisty; urgency=low
+
+ * Build the extension for the debug interpreter.
+ - Build-depend on python-all-dbg (>= 2.5-0ubuntu5)
+ - debian/control: New package python-pam-dbg.
+ - debian/control: python-pam: Suggest python-pam-dbg.
+ - debian/rules: Build the extension with the python debug interpreter.
+ - debian/rules: python-pam-dbg: symlink to python-pam's docdir.
+
+ -- Matthias Klose <doko@ubuntu.com> Tue, 13 Feb 2007 11:56:23 +0100
+
 python-pam (0.4.2-10.4build1) feisty; urgency=low
 
   * Rebuild. Ubuntu #69967.
diff -Nru /tmp/sH45lBGtVd/python-pam-0.4.2/debian/control /tmp/Bc2MXcIIa9/python-pam-0.4.2/debian/control
--- /tmp/sH45lBGtVd/python-pam-0.4.2/debian/control 2006-06-29 08:06:01.000000000 +0200
+++ /tmp/Bc2MXcIIa9/python-pam-0.4.2/debian/control 2007-02-13 16:52:55.000000000 +0100
@@ -1,9 +1,10 @@
 Source: python-pam
 Section: python
 Priority: optional
-Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), libpam0g-dev
+Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-all-dbg (>= 2.5-0ubuntu5), libpam0g-dev
 Maintainer: Dima Barsky <dima@debian.org>
-Standards-Version: 3.6.0
+Standards-Version: 3.7.2
+XS-Python-Version: all
 
 Package: python-pam
 Architecture: any
@@ -11,8 +12,20 @@
 Conflicts: python2.3-pam, python2.4-pam
 Replaces: python2.3-pam, python2.4-pam
 Provides: ${python:Provides}
+Suggests: python-pam-dbg
 XB-Python-Version: ${python:Versions}
 Description: A Python interface to the PAM library
  This module makes the PAM (Pluggable Authentication Modules) functions
  available in Python. With this module you can write Python applications
  that implement authentication services using PAM.
+
+Package: python-pam-dbg
+Architecture: any
+Depends: python-pam (= ${Source-Version})
+XB-Python-Version: ${python:Versions}
+Description: A Python interface to the PAM library (debug extension)
+ This module makes the PAM (Pluggable Authentication Modules) functions
+ available in Python. With this module you can write Python applications
+ that implement authentication services using PAM.
+ .
+ This package contains the extension built for the python debug interpreter.
diff -Nru /tmp/sH45lBGtVd/python-pam-0.4.2/debian/rules /tmp/Bc2MXcIIa9/python-pam-0.4.2/debian/rules
--- /tmp/sH45lBGtVd/python-pam-0.4.2/debian/rules 2006-06-25 17:34:03.000000000 +0200
+++ /tmp/Bc2MXcIIa9/python-pam-0.4.2/debian/rules 2007-02-13 13:53:10.000000000 +0100
@@ -10,15 +10,19 @@
 build: build-stamp
 build-stamp:
  dh_testdir
- for python in $(PYVERS); \
- do $$python setup.py build; \
+ set -e; \
+ for python in $(PYVERS); do \
+ $$python setup.py build; \
+ $$python-dbg setup.py build; \
  done
  touch build-stamp
 
 clean:
  dh_testdir
- for python in $(PYVERS); \
- do $$python setup.py clean; \
+ set -e; \
+ for python in $(PYVERS); do \
+ $$python setup.py clean; \
+ $$python-dbg setup.py clean; \
  done
  rm -rf build-stamp build
  dh_clean
@@ -29,9 +33,12 @@
  dh_clean -k
  dh_installdirs
 
- for python in $(PYVERS); \
- do $$python setup.py install --root=debian/python-pam; \
+ set -e; \
+ for python in $(PYVERS); do \
+ $$python setup.py install --root=debian/python-pam; \
+ $$python-dbg setup.py install --root=debian/python-pam-dbg; \
  done
+ find debian/python-pam-dbg ! -type d ! -name '*_d.so' | xargs rm -f
 
 # Build architecture-independent files here.
 binary-indep: build install
@@ -40,15 +47,16 @@
 binary-arch: build install
  dh_testdir
  dh_testroot
- dh_installdocs -a -A AUTHORS README
- dh_installexamples -a -A examples/*
+ dh_installdocs -a AUTHORS README
+ dh_installexamples -a examples/*
  dh_installchangelogs -a ChangeLog
- dh_strip -a
+ rm -rf debian/python-pam-dbg/usr/share/doc/python-pam-dbg
+ ln -sf python-pam debian/python-pam-dbg/usr/share/doc/python-pam-dbg
+ dh_strip -a -Npython-pam-dbg --dbg-package=python-pam-dbg
  dh_compress -a
  dh_fixperms -a
- #dh_pycentral is not needed as we don't have .py files (only a .so)
- #dh_pycentral -a
- dh_python -a
+ #dh_pycentral is needed to set the dependency on python
+ dh_pycentral -ppython-pam
  dh_installdeb -a
  dh_shlibdeps -a
  dh_gencontrol -a
}}}
Line 128: Line 5:
The list was generated by running:
{{{
for i in `grep -E "\.so\ " Contents-i386 | grep python | cut -d' ' -f2-100 | sort -u`; do basename $i; done | xargs apt-cache showsrc | grep Package | sed 's/Package\:\ //g' | sort -u | xargs apt-cache showsrc | grep ^Dir | sort -u > ~/pydbg.list}}}


|| '''Package:''' || '''Who''' ||
|| Directory: pool/main/b/beagle || ||
|| Directory: pool/main/d/dbus-python || ||
|| Directory: pool/main/d/deskbar-applet || ||
|| Directory: pool/main/e/egenix-mx-base || ||
|| Directory: pool/main/e/eunuchs || ||
|| Directory: pool/main/g/gimp || ||
|| Directory: pool/main/g/gnome-python || ||
|| Directory: pool/main/g/gnome-python-desktop || ||
|| Directory: pool/main/g/gnome-python-extras || ||
|| Directory: pool/main/g/gnumeric || ||
|| Directory: pool/main/g/gst0.10-python || ||
|| Directory: pool/main/h/hplip || ||
|| Directory: pool/main/k/kde-guidance || ||
|| Directory: pool/main/libi/libieee1284 || ||
|| Directory: pool/main/libs/libselinux || ||
|| Directory: pool/main/libx/libxml2 || ||
|| Directory: pool/main/libx/libxslt || ||
|| Directory: pool/main/l/launchpad-integration || ||
|| Directory: pool/main/o/ocfs2-tools || ||
|| Directory: pool/main/p/pilot-link || ||
|| Directory: pool/main/p/pygobject || ||
|| Directory: pool/main/p/pygtk || ||
|| Directory: pool/main/p/pyogg || ||
|| Directory: pool/main/p/pyopenssl || ||
|| Directory: pool/main/p/python2.4 || ||
|| Directory: pool/main/p/python2.5 || ||
|| Directory: pool/main/p/python-crypto || ||
|| Directory: pool/main/p/python-numarray || ||
|| Directory: pool/main/p/python-pylibacl || ||
|| Directory: pool/main/p/python-pyxattr || ||
|| Directory: pool/main/p/python-xml || ||
|| Directory: pool/main/p/pyvorbis || ||
|| Directory: pool/main/r/rdiff-backup || ||
|| Directory: pool/main/s/sabayon || ||
|| Directory: pool/main/s/subversion || ||
|| Directory: pool/main/t/twisted || ||
|| Directory: pool/main/t/twisted-runner || ||
|| Directory: pool/main/v/vte || ||
|| Directory: pool/main/z/zope3 || ||
|| Directory: pool/universe/c/cheetah || ||
|| Directory: pool/universe/c/codespeak-lib || ||
|| Directory: pool/universe/c/comedilib || ||
|| Directory: pool/universe/c/cx-bsdiff || ||
|| Directory: pool/universe/d/democracyplayer || ||
|| Directory: pool/universe/d/diacanvas2 || ||
|| Directory: pool/universe/e/eclipse-pydev || ||
|| Directory: pool/universe/f/fonttools || ||
|| Directory: pool/universe/g/galago-python || ||
|| Directory: pool/universe/g/gimmie || ||
|| Directory: pool/universe/g/gnuradio || ||
|| Directory: pool/universe/h/hk-classes || ||
|| Directory: pool/universe/i/imdbpy || ||
|| Directory: pool/universe/j/jack || ||
|| Directory: pool/universe/libm/libmetakit2.4.9.3 || ||
|| Directory: pool/universe/libp/libphidgets || ||
|| Directory: pool/universe/libs/libsemanage || ||
|| Directory: pool/universe/libu/libuser || ||
|| Directory: pool/universe/l/linkchecker || ||
|| Directory: pool/universe/m/m2crypto || ||
|| Directory: pool/universe/m/matplotlib || ||
|| Directory: pool/universe/m/memaid-pyqt || ||
|| Directory: pool/universe/m/mercurial || ||
|| Directory: pool/universe/m/mmpython || ||
|| Directory: pool/universe/m/museek+ || ||
|| Directory: pool/universe/n/necpp || ||
|| Directory: pool/universe/n/nicotine || ||
|| Directory: pool/universe/n/notify-python || ||
|| Directory: pool/universe/o/ontv || ||
|| Directory: pool/universe/o/opencv || ||
|| Directory: pool/universe/o/opensync || ||
|| Directory: pool/universe/p/pyalsaaudio || ||
|| Directory: pool/universe/p/pychm || ||
|| Directory: pool/universe/p/pyepl || ||
|| Directory: pool/universe/p/pygdchart2 || ||
|| Directory: pool/universe/p/pyinotify || ||
|| Directory: pool/universe/p/pykaraoke || ||
|| Directory: pool/universe/p/pymol || ||
|| Directory: pool/universe/p/pyopenal || ||
|| Directory: pool/universe/p/pyopengl || ||
|| Directory: pool/universe/p/pyprotocols || ||
|| Directory: pool/universe/p/pyrite-publisher || ||
|| Directory: pool/universe/p/pyslide || ||
|| Directory: pool/universe/p/pystatgrab || ||
|| Directory: pool/universe/p/pytables || ||
|| Directory: pool/universe/p/python-4suite || ||
|| Directory: pool/universe/p/python-biggles || ||
|| Directory: pool/universe/p/python-biopython || ||
|| Directory: pool/universe/p/python-clamav || ||
|| Directory: pool/universe/p/python-gnome || ||
|| Directory: pool/universe/p/python-japanese-codecs || ||
|| Directory: pool/universe/p/python-kinterbasdb || ||
|| Directory: pool/universe/p/python-numpy || ||
|| Directory: pool/universe/p/python-pgsql || ||
|| Directory: pool/universe/p/python-scientific || ||
|| Directory: pool/universe/p/python-scipy || ||
|| Directory: pool/universe/p/python-scipy-core || ||
|| Directory: pool/universe/p/python-smbpasswd || ||
|| Directory: pool/universe/p/python-tclink || ||
|| Directory: pool/universe/p/python-xattr || ||
|| Directory: pool/universe/p/pyx || ||
|| Directory: pool/universe/p/pyxmpp || ||
|| Directory: pool/universe/q/quixote || ||
|| Directory: pool/universe/q/quixote1 || ||
|| Directory: pool/universe/r/ruledispatch || ||
|| Directory: pool/universe/s/scgi || ||
|| Directory: pool/universe/s/smart || ||
|| Directory: pool/universe/s/soya || ||
|| Directory: pool/universe/s/synopsis || ||
|| Directory: pool/universe/t/tickcount || ||
|| Directory: pool/universe/v/vtk || ||
|| Directory: pool/universe/w/wxwidgets2.6 || ||
|| Directory: pool/universe/w/wxwindows2.4 || ||
|| Directory: pool/universe/x/xulrunner || ||
|| Directory: pool/universe/z/zeroc-ice-python || ||
|| Directory: pool/universe/z/zodb || ||
|| Directory: pool/universe/z/zope2.9 || ||
|| '''Pocket''' || '''Source:''' || '''Binaries''' || '''Who''' || ''Status'' ||
|| main || dbus-python || python-dbus || || ||
|| main || deskbar-applet || deskbar-applet || || ||
|| main || egenix-mx-base || python-egenix-mxdatetime python-egenix-mxproxy python-egenix-mxstack python-egenix-mxtexttools python-egenix-mxtools || || ||
|| main || eunuchs || python-eunuchs || || ||
|| main || exo || python-exo || || ||
|| main || gamin || python-gamin || || ||
|| main || gnome-menus || python-gmenu || || ||
|| main || gnome-orca || gnome-orca || || ||
|| main || gnome-python || python-gconf python-gnome2 python-gnomecanvas || || ||
|| main || gnome-python-desktop || python-gnome2-desktop || || ||
|| main || gnome-python-extras || python-gnome2-extras python-gtkhtml2 || || ||
|| main || gst0.10-python || python-gst0.10 || || ||
|| main || hplip || hplip hplip-dbg || || ||
|| main || kde-guidance || kde-guidance || || ||
|| main || launchpad-integration || python-launchpad-integration || || ||
|| main || libapache2-mod-python || libapache2-mod-python || || ||
|| main || libgpod || python-gpod || || ||
|| main || libxml2 || python-libxml2 || || ||
|| main || libxslt || python-libxslt1 || || ||
|| main || newt || python-newt || || ||
|| main || ocfs2-tools || ocfs2console || || ||
|| main || openoffice.org || python-uno || || ||
|| main || pilot-link || python-pisock || || ||
|| main || planner || planner || || ||
|| main || psycopg || python-psycopg || || ||
|| main || pyao || python-pyao || || ||
|| main || pycairo || python-cairo || || ||
|| main || pycurl || python-pycurl || || ||
|| main || pygobject || python-gobject || || ||
|| main || pygresql || python-pygresql || || ||
|| main || pygtk || python-glade2 python-gtk2 || || ||
|| main || pyogg || python-pyogg || || ||
|| main || pyopenssl || python-pyopenssl || || ||
|| main || pyorbit || python-pyorbit || || ||
|| main || pyspi || python-at-spi || || ||
|| main || python-adns || python-adns || || ||
|| main || python-apt || python-apt || || ||
|| main || python-cddb || python-cddb || || ||
|| main || python-crypto || python-crypto || || ||
|| main || python-cups || python-cups || || ||
|| main || python-gd || python-gd || || ||
|| main || python-geoip || python-geoip || || ||
|| main || python-imaging || python-imaging python-imaging-sane || || ||
|| main || python-kde3 || python-kde3 || || ||
|| main || python-ldap || python-ldap || || ||
|| main || python-mysqldb || python-mysqldb || || ||
|| main || python-numarray || python-numarray || || ||
|| main || python-numeric || python-numeric || || ||
|| main || python-pam || python-pam || || ||
|| main || python-pqueue || python-pqueue || || ||
|| main || python-pylibacl || python-pylibacl || || ||
|| main || python-pysqlite2 || python-pysqlite2 || || ||
|| main || python-pyxattr || python-pyxattr || || ||
|| main || python-qt3 || python-qt3 python-qtext || || ||
|| main || python-qt4 || python-qt4 || || ||
|| main || python-sqlite || python-sqlite || || ||
|| main || python-xml || python-xml || || ||
|| main || pyvorbis || python-pyvorbis || || ||
|| main || rdiff-backup || rdiff-backup || || ||
|| main || redland-bindings || python-librdf || || ||
|| main || sabayon || sabayon || || ||
|| main || samba || python-samba || || ||
|| main || sip4-qt3 || python-sip4 || || ||
|| main || subversion || python-subversion || || ||
|| main || twisted || python-twisted-bin || || ||
|| main || twisted-runner || python-twisted-runner || || ||
|| main || update-manager || update-manager-core || || ||
|| main || virtkey || python-virtkey || || ||
|| main || vte || python-vte || || ||
|| main || zope3 || python-zopeinterface || || ||
|| multiverse || gnuradio || python-gnuradio python-usrp || || ||
|| multiverse || python-cdb || python-cdb || || ||
|| universe || adesklets || adesklets || || ||
|| universe || aubio || python-aubio || || ||
|| universe || beagle || python-beagle || || ||
|| universe || celementtree || python-celementtree || || ||
|| universe || cheetah || python-cheetah || || ||
|| universe || clearsilver || python-clearsilver || || ||
|| universe || codespeak-lib || python-codespeak-lib || || ||
|| universe || comedilib || python-comedilib || || ||
|| universe || cx-bsdiff || python-bsdiff || || ||
|| universe || decompyle || decompyle || || ||
|| universe || democracyplayer || democracyplayer || || ||
|| universe || diacanvas2 || python-diacanvas2 || || ||
|| universe || duplicity || duplicity || || ||
|| universe || egenix-mx-base || python-egenix-mxqueue || || ||
|| universe || eikazo || eikazo || || ||
|| universe || elementtidy || python-elementtidy || || ||
|| universe || file || python-magic || || ||
|| universe || fonttools || fonttools || || ||
|| universe || gadfly || python-kjbuckets || || ||
|| universe || galago-gtk-python || galago-gtk-python || || ||
|| universe || galago-python || galago-python || || ||
|| universe || gdal || python-gdal || || ||
|| universe || gimmie || gimmie || || ||
|| universe || glom || glom || || ||
|| universe || gpib || python-gpib || || ||
|| universe || hamlib || python-libhamlib2 || || ||
|| universe || hk-classes || python-hk-classes || || ||
|| universe || hocr || libhocr-python || || ||
|| universe || imdbpy || python-imdbpy || || ||
|| universe || imgseek || imgseek || || ||
|| universe || isomd5sum || python-pyisomd5sum || || ||
|| universe || jack || jack || || ||
|| universe || kdebindings || python-dcop || || ||
|| universe || lasso || python-lasso || || ||
|| universe || libavg || python-libavg || || ||
|| universe || libhdate || libhdate-python || || ||
|| universe || libhid || python-hid || || ||
|| universe || libieee1284 || python-ieee1284 || || ||
|| universe || libmetakit2.4.9.3 || python-metakit || || ||
|| universe || libphidgets || python-phidgets || || ||
|| universe || libselinux || python-selinux || || ||
|| universe || libsemanage || python-semanage || || ||
|| universe || libuser || python-libuser || || ||
|| universe || libvirt || python-libvirt || || ||
|| universe || linkchecker || linkchecker || || ||
|| universe || lxml || python-lxml || || ||
|| universe || m2crypto || python-m2crypto || || ||
|| universe || mapserver || python-mapscript || || ||
|| universe || matplotlib || python-matplotlib || || ||
|| universe || memaid-pyqt || memaid-pyqt || || ||
|| universe || mercurial || mercurial || || ||
|| universe || ming || python-ming || || ||
|| universe || mirage || mirage || || ||
|| universe || mmpython || python-mmpython || || ||
|| universe || museek+ || python-museek || || ||
|| universe || necpp || python-necpp || || ||
|| universe || nicotine || nicotine || || ||
|| universe || notify-python || python-notify || || ||
|| universe || omniorb4 || omniidl4 || || ||
|| universe || ontv || ontv || || ||
|| universe || opencv || python-opencv || || ||
|| universe || opensync || libopensync0-dbg python-opensync || || ||
|| universe || pcapy || python-pcapy || || ||
|| universe || plplot || python-plplot || || ||
|| universe || poker-network || python-poker2d || || ||
|| universe || psyco || python-psyco || || ||
|| universe || psycopg2 || python-psycopg2 || || ||
|| universe || pyalsaaudio || python-alsaaudio || || ||
|| universe || pyannodex || python-annodex || || ||
|| universe || pybluez || python-bluez || || ||
|| universe || pychm || python-chm || || ||
|| universe || pyenchant || python-enchant || || ||
|| universe || pyepl || python-pyepl || || ||
|| universe || pyfribidi || python-pyfribidi || || ||
|| universe || pygame || python-pygame || || ||
|| universe || pygdchart2 || python-gdchart2 || || ||
|| universe || pyinotify || python-pyinotify || || ||
|| universe || pykaraoke || python-pykaraoke || || ||
|| universe || pymad || python-pymad || || ||
|| universe || pyme || python-pyme || || ||
|| universe || pymol || pymol || || ||
|| universe || pynjb || python-pynjb || || ||
|| universe || pyode || python-pyode || || ||
|| universe || pyopenal || python-openal || || ||
|| universe || pyopengl || python-opengl || || ||
|| universe || pypanel || pypanel || || ||
|| universe || pypoker-eval || python-pypoker-eval || || ||
|| universe || pyprotocols || python-protocols || || ||
|| universe || pyqonsole || pyqonsole || || ||
|| universe || pyqwt || python-qwt4 || || ||
|| universe || pyrite-publisher || pyrite-publisher || || ||
|| universe || pyslide || pyslide || || ||
|| universe || pyspeex || python-speex || || ||
|| universe || pystatgrab || python-statgrab || || ||
|| universe || pysvn || python-svn || || ||
|| universe || pytables || python-tables || || ||
|| universe || python-4suite || python-4suite-rdf python-4suite-server python-4suite-xml || || ||
|| universe || python-apsw || python-apsw || || ||
|| universe || python-bibtex || python-bibtex || || ||
|| universe || python-biggles || python-biggles || || ||
|| universe || python-biopython || python-biopython || || ||
|| universe || python-clamav || python-clamav || || ||
|| universe || python-crack || python-crack || || ||
|| universe || python-extclass || python-extclass || || ||
|| universe || python-fam || python-fam || || ||
|| universe || python-fuse || python-fuse || || ||
|| universe || python-gammu || python-gammu || || ||
|| universe || python-gdchart || python-gdchart || || ||
|| universe || python-imaging || python-imaging-tk || || ||
|| universe || python-japanese-codecs || python-japanese-codecs || || ||
|| universe || python-kinterbasdb || python-kinterbasdb || || ||
|| universe || python-korean-codecs || python-korean-codecs || || ||
|| universe || python-numarray || python-numarray-ext || || ||
|| universe || python-numeric || python-numeric-ext || || ||
|| universe || python-numpy || python-numpy || || ||
|| universe || python-omniorb2 || python-omniorb2 || || ||
|| universe || python-osd || python-osd || || ||
|| universe || python-oss || python-oss || || ||
|| universe || python-pgsql || python-pgsql || || ||
|| universe || python-pysqlite1.1 || python-pysqlite1.1 || || ||
|| universe || python-qt3 || python-qt3-gl || || ||
|| universe || python-qt4 || python-qt4-gl python-qt4-sql || || ||
|| universe || python-scientific || python-netcdf || || ||
|| universe || python-scipy || python-scipy || || ||
|| universe || python-scipy-core || python-scipy-core || || ||
|| universe || python-smbpasswd || python-smbpasswd || || ||
|| universe || python-tclink || python-tclink || || ||
|| universe || python-tcpwrap || python-tcpwrap || || ||
|| universe || python-visual || python-visual || || ||
|| universe || python-xattr || python-xattr || || ||
|| universe || pyx || python-pyx || || ||
|| universe || pyxfce || python-xfce || || ||
|| universe || pyxine || python-pyxine || || ||
|| universe || pyxmms || python-xmms || || ||
|| universe || pyxmpp || python-pyxmpp || || ||
|| universe || qm || python-sigmask || || ||
|| universe || quixote || python-quixote || || ||
|| universe || quixote1 || python-quixote1 || || ||
|| universe || reportlab-accel || python-reportlab-accel || || ||
|| universe || revelation || revelation || || ||
|| universe || rpm || python-rpm || || ||
|| universe || rpy || python-rpy || || ||
|| universe || rrdtool || python-rrd || || ||
|| universe || ruledispatch || python-dispatch || || ||
|| universe || scgi || python-scgi || || ||
|| universe || sexy-python || sexy-python || || ||
|| universe || smart || smartpm-core || || ||
|| universe || sonata || sonata || || ||
|| universe || soya || python-soya || || ||
|| universe || subterfugue || subterfugue || || ||
|| universe || syck || python-syck || || ||
|| universe || synopsis || synopsis || || ||
|| universe || tau || python-tau || || ||
|| universe || telepathy-blue || telepathy-blue || || ||
|| universe || tickcount || python-tickcount || || ||
|| universe || vtk || python-vtk || || ||
|| universe || wxwidgets2.6 || python-wxgtk2.6 || || ||
|| universe || xapian-bindings || python-xapian || || ||
|| universe || xen-3.0 || python-xen3.0 || || ||
|| universe || xmldiff || xmldiff || || ||
|| universe || xulrunner || python-xpcom || || ||
|| universe || yapgvb || python-yapgvb || || ||
|| universe || zeroc-ice-python || python-zeroc-ice || || ||
|| universe || zodb || python-zodb || || ||
|| universe || zope-textindexng2 || zope-textindexng2-lib || || ||

We are rebuilding python modules with a python-dbg variant.

Pocket

Source:

Binaries

Who

Status

main

dbus-python

python-dbus

main

deskbar-applet

deskbar-applet

main

egenix-mx-base

python-egenix-mxdatetime python-egenix-mxproxy python-egenix-mxstack python-egenix-mxtexttools python-egenix-mxtools

main

eunuchs

python-eunuchs

main

exo

python-exo

main

gamin

python-gamin

main

gnome-menus

python-gmenu

main

gnome-orca

gnome-orca

main

gnome-python

python-gconf python-gnome2 python-gnomecanvas

main

gnome-python-desktop

python-gnome2-desktop

main

gnome-python-extras

python-gnome2-extras python-gtkhtml2

main

gst0.10-python

python-gst0.10

main

hplip

hplip hplip-dbg

main

kde-guidance

kde-guidance

main

launchpad-integration

python-launchpad-integration

main

libapache2-mod-python

libapache2-mod-python

main

libgpod

python-gpod

main

libxml2

python-libxml2

main

libxslt

python-libxslt1

main

newt

python-newt

main

ocfs2-tools

ocfs2console

main

openoffice.org

python-uno

main

pilot-link

python-pisock

main

planner

planner

main

psycopg

python-psycopg

main

pyao

python-pyao

main

pycairo

python-cairo

main

pycurl

python-pycurl

main

pygobject

python-gobject

main

pygresql

python-pygresql

main

pygtk

python-glade2 python-gtk2

main

pyogg

python-pyogg

main

pyopenssl

python-pyopenssl

main

pyorbit

python-pyorbit

main

pyspi

python-at-spi

main

python-adns

python-adns

main

python-apt

python-apt

main

python-cddb

python-cddb

main

python-crypto

python-crypto

main

python-cups

python-cups

main

python-gd

python-gd

main

python-geoip

python-geoip

main

python-imaging

python-imaging python-imaging-sane

main

python-kde3

python-kde3

main

python-ldap

python-ldap

main

python-mysqldb

python-mysqldb

main

python-numarray

python-numarray

main

python-numeric

python-numeric

main

python-pam

python-pam

main

python-pqueue

python-pqueue

main

python-pylibacl

python-pylibacl

main

python-pysqlite2

python-pysqlite2

main

python-pyxattr

python-pyxattr

main

python-qt3

python-qt3 python-qtext

main

python-qt4

python-qt4

main

python-sqlite

python-sqlite

main

python-xml

python-xml

main

pyvorbis

python-pyvorbis

main

rdiff-backup

rdiff-backup

main

redland-bindings

python-librdf

main

sabayon

sabayon

main

samba

python-samba

main

sip4-qt3

python-sip4

main

subversion

python-subversion

main

twisted

python-twisted-bin

main

twisted-runner

python-twisted-runner

main

update-manager

update-manager-core

main

virtkey

python-virtkey

main

vte

python-vte

main

zope3

python-zopeinterface

multiverse

gnuradio

python-gnuradio python-usrp

multiverse

python-cdb

python-cdb

universe

adesklets

adesklets

universe

aubio

python-aubio

universe

beagle

python-beagle

universe

celementtree

python-celementtree

universe

cheetah

python-cheetah

universe

clearsilver

python-clearsilver

universe

codespeak-lib

python-codespeak-lib

universe

comedilib

python-comedilib

universe

cx-bsdiff

python-bsdiff

universe

decompyle

decompyle

universe

democracyplayer

democracyplayer

universe

diacanvas2

python-diacanvas2

universe

duplicity

duplicity

universe

egenix-mx-base

python-egenix-mxqueue

universe

eikazo

eikazo

universe

elementtidy

python-elementtidy

universe

file

python-magic

universe

fonttools

fonttools

universe

gadfly

python-kjbuckets

universe

galago-gtk-python

galago-gtk-python

universe

galago-python

galago-python

universe

gdal

python-gdal

universe

gimmie

gimmie

universe

glom

glom

universe

gpib

python-gpib

universe

hamlib

python-libhamlib2

universe

hk-classes

python-hk-classes

universe

hocr

libhocr-python

universe

imdbpy

python-imdbpy

universe

imgseek

imgseek

universe

isomd5sum

python-pyisomd5sum

universe

jack

jack

universe

kdebindings

python-dcop

universe

lasso

python-lasso

universe

libavg

python-libavg

universe

libhdate

libhdate-python

universe

libhid

python-hid

universe

libieee1284

python-ieee1284

universe

libmetakit2.4.9.3

python-metakit

universe

libphidgets

python-phidgets

universe

libselinux

python-selinux

universe

libsemanage

python-semanage

universe

libuser

python-libuser

universe

libvirt

python-libvirt

universe

linkchecker

linkchecker

universe

lxml

python-lxml

universe

m2crypto

python-m2crypto

universe

mapserver

python-mapscript

universe

matplotlib

python-matplotlib

universe

memaid-pyqt

memaid-pyqt

universe

mercurial

mercurial

universe

ming

python-ming

universe

mirage

mirage

universe

mmpython

python-mmpython

universe

museek+

python-museek

universe

necpp

python-necpp

universe

nicotine

nicotine

universe

notify-python

python-notify

universe

omniorb4

omniidl4

universe

ontv

ontv

universe

opencv

python-opencv

universe

opensync

libopensync0-dbg python-opensync

universe

pcapy

python-pcapy

universe

plplot

python-plplot

universe

poker-network

python-poker2d

universe

psyco

python-psyco

universe

psycopg2

python-psycopg2

universe

pyalsaaudio

python-alsaaudio

universe

pyannodex

python-annodex

universe

pybluez

python-bluez

universe

pychm

python-chm

universe

pyenchant

python-enchant

universe

pyepl

python-pyepl

universe

pyfribidi

python-pyfribidi

universe

pygame

python-pygame

universe

pygdchart2

python-gdchart2

universe

pyinotify

python-pyinotify

universe

pykaraoke

python-pykaraoke

universe

pymad

python-pymad

universe

pyme

python-pyme

universe

pymol

pymol

universe

pynjb

python-pynjb

universe

pyode

python-pyode

universe

pyopenal

python-openal

universe

pyopengl

python-opengl

universe

pypanel

pypanel

universe

pypoker-eval

python-pypoker-eval

universe

pyprotocols

python-protocols

universe

pyqonsole

pyqonsole

universe

pyqwt

python-qwt4

universe

pyrite-publisher

pyrite-publisher

universe

pyslide

pyslide

universe

pyspeex

python-speex

universe

pystatgrab

python-statgrab

universe

pysvn

python-svn

universe

pytables

python-tables

universe

python-4suite

python-4suite-rdf python-4suite-server python-4suite-xml

universe

python-apsw

python-apsw

universe

python-bibtex

python-bibtex

universe

python-biggles

python-biggles

universe

python-biopython

python-biopython

universe

python-clamav

python-clamav

universe

python-crack

python-crack

universe

python-extclass

python-extclass

universe

python-fam

python-fam

universe

python-fuse

python-fuse

universe

python-gammu

python-gammu

universe

python-gdchart

python-gdchart

universe

python-imaging

python-imaging-tk

universe

python-japanese-codecs

python-japanese-codecs

universe

python-kinterbasdb

python-kinterbasdb

universe

python-korean-codecs

python-korean-codecs

universe

python-numarray

python-numarray-ext

universe

python-numeric

python-numeric-ext

universe

python-numpy

python-numpy

universe

python-omniorb2

python-omniorb2

universe

python-osd

python-osd

universe

python-oss

python-oss

universe

python-pgsql

python-pgsql

universe

python-pysqlite1.1

python-pysqlite1.1

universe

python-qt3

python-qt3-gl

universe

python-qt4

python-qt4-gl python-qt4-sql

universe

python-scientific

python-netcdf

universe

python-scipy

python-scipy

universe

python-scipy-core

python-scipy-core

universe

python-smbpasswd

python-smbpasswd

universe

python-tclink

python-tclink

universe

python-tcpwrap

python-tcpwrap

universe

python-visual

python-visual

universe

python-xattr

python-xattr

universe

pyx

python-pyx

universe

pyxfce

python-xfce

universe

pyxine

python-pyxine

universe

pyxmms

python-xmms

universe

pyxmpp

python-pyxmpp

universe

qm

python-sigmask

universe

quixote

python-quixote

universe

quixote1

python-quixote1

universe

reportlab-accel

python-reportlab-accel

universe

revelation

revelation

universe

rpm

python-rpm

universe

rpy

python-rpy

universe

rrdtool

python-rrd

universe

ruledispatch

python-dispatch

universe

scgi

python-scgi

universe

sexy-python

sexy-python

universe

smart

smartpm-core

universe

sonata

sonata

universe

soya

python-soya

universe

subterfugue

subterfugue

universe

syck

python-syck

universe

synopsis

synopsis

universe

tau

python-tau

universe

telepathy-blue

telepathy-blue

universe

tickcount

python-tickcount

universe

vtk

python-vtk

universe

wxwidgets2.6

python-wxgtk2.6

universe

xapian-bindings

python-xapian

universe

xen-3.0

python-xen3.0

universe

xmldiff

xmldiff

universe

xulrunner

python-xpcom

universe

yapgvb

python-yapgvb

universe

zeroc-ice-python

python-zeroc-ice

universe

zodb

python-zodb

universe

zope-textindexng2

zope-textindexng2-lib