Package: dtrx Version: 6.4-1 Severity: minor Tags: patch Due to the different python default version, dtrx FTBFS in Ubuntu Karmic.
In order to make this ready to build fine with Python >= 2.6 simply apply the attached patch. -- System Information: Debian Release: 5.0 APT prefers jaunty-updates APT policy: (500, 'jaunty-updates'), (500, 'jaunty-security'), (500, 'jaunty-backports'), (500, 'jaunty') Architecture: amd64 (x86_64) Kernel: Linux 2.6.28-11-generic (SMP w/1 CPU core) Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -u dtrx-6.4/debian/rules dtrx-6.4/debian/rules --- dtrx-6.4/debian/rules +++ dtrx-6.4/debian/rules @@ -1,6 +1,7 @@ #!/usr/bin/make -f # -*- makefile -*- #export DH_VERBOSE=1 +include /usr/share/python/python.mk build: build-indep @@ -18,7 +19,7 @@ install: build dh install --with python_central --before auto_install - /usr/bin/python setup.py install --root $(CURDIR)/debian/dtrx + /usr/bin/python setup.py install --root $(CURDIR)/debian/dtrx $(py_setup_install_args) dh install --with python_central --after auto_install binary: binary-arch binary-indep diff -u dtrx-6.4/debian/changelog dtrx-6.4/debian/changelog --- dtrx-6.4/debian/changelog +++ dtrx-6.4/debian/changelog @@ -1,3 +1,11 @@ +dtrx (6.4-2) unstable; urgency=low + + * Adjust debian/rules to fix FTBFS: + - Include /usr/share/python/python.mk + - Append $(py_setup_install_args) to setup.py install arguments list. + + -- Alessio Treglia <quadris...@ubuntu.com> Mon, 04 May 2009 22:45:08 +0200 + dtrx (6.4-1) unstable; urgency=low * Initial release. (Closes: #491288)