[Bug 85097] Re: please add support to build python dbg extensions

2009-08-31 Thread Martin Pitt
** Changed in: cdbs (Ubuntu)
 Assignee: Martin Pitt (pitti) = (unassigned)

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2009-04-27 Thread Martin Pitt
** Bug watch added: Debian Bug tracker #430571
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430571

** Also affects: cdbs (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=430571
   Importance: Unknown
   Status: Unknown

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2009-04-27 Thread Bug Watch Updater
** Changed in: cdbs (Debian)
   Status: Unknown = Confirmed

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2009-01-28 Thread Matthias Klose
 Please provide a pointer how those -dbg packages can be tested easily.

you call the python-dbg interpreter (instead of the python interpreter).

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2009-01-27 Thread Martin Pitt
Please provide a pointer how those -dbg packages can be tested easily.

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2009-01-27 Thread Gabriel de Perthuis
You can put a breakpoint on symbols defined in the python extension and
see if info args works in gdb.

Say you want to test python-apt-dbg, and have it installed.

# Prepare the gdb commands that set the breakpoints
nm -D -C --defined-only /usr/lib/python2.5/site-packages/apt_inst.so 
/usr/lib/python2.5/site-packages/apt_pkg.so  |sed -rne s#.* T 
([^_][^']*)\$#break '\1'#p |tee cmds
gdb  --args python -c 'import apt; c = apt.Cache(); p = c[python2.5]'

# In gdb
run
source cmds
run
# Hit a breakpoint
info args
# Displays args, only if python-apt-dbg is installed.

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2009-01-27 Thread Martin Pitt
** Changed in: cdbs (Ubuntu)
   Status: Incomplete = Triaged

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2008-03-20 Thread Gabriel de Perthuis
Here are the python-crypt debian/rules

Build-depends include python-all-dbg, depends for the -dbg binary
package are “ python-crypto (= ${Source-Version}), python-dbg,
${shlibs:Depends} ” although it's not really sure python-dbg should be
part of that (it pulls python2.5-dbg; either nothing or a “python-any-
dbg” make more sense).


#!/usr/bin/make -f

DEB_PYTHON_SYSTEM=pycentral

include /usr/share/cdbs/1/rules/buildcore.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk

pyver := $(shell pyversions -vd)
MKHOWTO = /usr/lib/python$(pyver)/doc/tools/mkhowto

common-build-arch::
cd Doc  $(MKHOWTO) --ps

$(patsubst %,binary-post-install/%,$(DEB_PYTHON_REAL_LIB_PACKAGES)):: 
sh -e debian/pathmangle.sh /usr/bin/$(shell echo $(cdbs_curpkg) | sed 
's,-crypto$$,,') debian/$(cdbs_curpkg)

build/python-crypto-dbg::
set -e; \
for i in $(cdbs_python_build_versions); do \
  python$$i-dbg ./setup.py build; \
done

install/python-crypto-dbg::
for i in $(cdbs_python_build_versions); do \
  python$$i-dbg ./setup.py install --root 
$(CURDIR)/debian/python-crypto-dbg; \
done
find debian/python-crypto-dbg \
! -type d ! -name '*_d.so' | xargs rm -f
find debian/python-crypto-dbg -depth -empty -exec rmdir {} \;

binary-predeb/python-crypto-dbg::
rm -rf debian/python-crypto-dbg/usr/share/doc/python-crypto-dbg
ln -s python-crypto 
debian/python-crypto-dbg/usr/share/doc/python-crypto-dbg

clean::
rm -rf build
rm -f Doc/*.ps

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 85097] Re: please add support to build python dbg extensions

2008-03-20 Thread Gabriel de Perthuis
CDBS could be just a change in debian/control and a mostly-empty
debian/rules (no reference to the dbg package in the latter), if class
/python-distutils.mk's targets make use of $(is_debug_package).

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2008-03-19 Thread Martin Pitt
Can you please point out some example code? (The URLs above are 404).
What needs to happen for this? How can the generated -dbg packages be
tested? (this should become part of the cdbs test suite).

** Changed in: cdbs (Ubuntu)
   Status: Confirmed = Incomplete

-- 
please add support to build python dbg extensions
https://bugs.launchpad.net/bugs/85097
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 85097] Re: please add support to build python dbg extensions

2007-02-19 Thread Sebastien Bacher
** Changed in: cdbs (Ubuntu)
   Importance: Undecided = Wishlist
   Status: Unconfirmed = Confirmed

-- 
please add support to build python dbg extensions
https://launchpad.net/bugs/85097

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs