Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package python-csa Fixes two RC bugs, 595848 and 665039. unblock python-csa/0.1.0-1.1
diff -Nru python-csa-0.1.0/debian/changelog python-csa-0.1.0/debian/changelog --- python-csa-0.1.0/debian/changelog 2012-03-30 12:52:19.000000000 -0400 +++ python-csa-0.1.0/debian/changelog 2012-07-14 01:30:58.000000000 -0400 @@ -1,3 +1,17 @@ +python-csa (0.1.0-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Redo last NMU that maintainer overwrote: + - Add python-tk to build-depends to fix FTBFS (Closes: #595848) and to + depends to it will run + - Remove failing override of dh_auto_test (because test_csa.py is no + longer shipped) + * Set MPLCONFIGDIR to debiam/temp in debian/rules so that the directory + location is writeable when built on a buildd and then remove on clean + (Closes: #665039) + + -- Scott Kitterman <sc...@kitterman.com> Sat, 14 Jul 2012 01:28:54 -0400 + python-csa (0.1.0-1) unstable; urgency=low * New upstream version (Closes: #597299) diff -Nru python-csa-0.1.0/debian/control python-csa-0.1.0/debian/control --- python-csa-0.1.0/debian/control 2012-03-30 12:59:48.000000000 -0400 +++ python-csa-0.1.0/debian/control 2012-07-13 01:14:28.000000000 -0400 @@ -9,12 +9,13 @@ , python-nose , python-numpy , python-matplotlib + , python-tk Standards-Version: 3.9.3 Homepage: http://software.incf.org/software/csa Package: python-csa Architecture: all -Depends: ${python:Depends}, ${misc:Depends}, python-numpy, python-matplotlib +Depends: ${python:Depends}, ${misc:Depends}, python-numpy, python-matplotlib, python-tk Description: Connection-Set Algebra (CSA) implemented in Python The CSA library provides elementary connection-sets and operators for combining them. It also provides an iteration interface to such diff -Nru python-csa-0.1.0/debian/rules python-csa-0.1.0/debian/rules --- python-csa-0.1.0/debian/rules 2012-03-30 12:52:19.000000000 -0400 +++ python-csa-0.1.0/debian/rules 2012-07-14 01:28:51.000000000 -0400 @@ -1,12 +1,10 @@ #!/usr/bin/make -f -override_dh_auto_test: -ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),) - set -e; \ - for python in $(shell pyversions -r); do \ - $$python /usr/bin/nosetests ../../tests/test_csa.py; \ - done -endif +export MPLCONFIGDIR=$(CURDIR)/debian/temp %: dh $@ + +override_dh_auto_clean: + dh_auto_clean + rm -rf $(CURDIR)/debian/temp