[Python-modules-commits] r29599 - in packages/django-tables/trunk/debian (4 files)

bam at users.alioth.debian.org bam at users.alioth.debian.org
Thu Jul 3 03:40:54 UTC 2014


    Date: Thursday, July 3, 2014 @ 03:40:53
  Author: bam
Revision: 29599

Python3 package.

Modified:
  packages/django-tables/trunk/debian/changelog
  packages/django-tables/trunk/debian/control
  packages/django-tables/trunk/debian/rules
Deleted:
  packages/django-tables/trunk/debian/python-django-tables2.install

Modified: packages/django-tables/trunk/debian/changelog
===================================================================
--- packages/django-tables/trunk/debian/changelog	2014-07-03 03:38:18 UTC (rev 29598)
+++ packages/django-tables/trunk/debian/changelog	2014-07-03 03:40:53 UTC (rev 29599)
@@ -1,3 +1,9 @@
+django-tables (0.15.0-2) UNRELEASED; urgency=low
+
+  * Python3 package.
+
+ -- Brian May <bam at debian.org>  Fri, 04 Apr 2014 09:42:10 +1100
+
 django-tables (0.15.0-1) unstable; urgency=low
 
   * New upstream version.

Modified: packages/django-tables/trunk/debian/control
===================================================================
--- packages/django-tables/trunk/debian/control	2014-07-03 03:38:18 UTC (rev 29598)
+++ packages/django-tables/trunk/debian/control	2014-07-03 03:40:53 UTC (rev 29599)
@@ -3,7 +3,9 @@
 Priority: optional
 Maintainer: Brian May <bam at debian.org>
 Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Build-Depends: debhelper (>=8.1.0), python-all (>= 2.6.6-3~), python-django (>= 1.4.5), python-setuptools, python-six
+Build-Depends: debhelper (>=8.1.0), dh-python,
+ python-all (>= 2.6.6-3~), python-django (>= 1.4.5), python-setuptools, python-six,
+ python3-all, python3-django (>= 1.4.5), python3-setuptools, python3-six,
 Build-Depends-Indep: python-sphinx (>= 1.0.7+dfsg-1~), python-doc, python-django-doc
 Standards-Version: 3.9.5
 X-Python-Version: >= 2.6
@@ -22,6 +24,15 @@
  has native support for pagination and sorting. It does for HTML tables what
  ``django.forms`` does for HTML forms.
 
+Package: python3-django-tables2
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, python3-django (>= 1.4.5)
+Suggests: python-django-tables2-doc
+Description: Table/data-grid framework for Django
+ django-tables2 simplifies the task of turning sets of data into HTML tables. It
+ has native support for pagination and sorting. It does for HTML tables what
+ ``django.forms`` does for HTML forms.
+
 Package: python-django-tables2-doc
 Section: doc
 Architecture: all

Deleted: packages/django-tables/trunk/debian/python-django-tables2.install
===================================================================
--- packages/django-tables/trunk/debian/python-django-tables2.install	2014-07-03 03:38:18 UTC (rev 29598)
+++ packages/django-tables/trunk/debian/python-django-tables2.install	2014-07-03 03:40:53 UTC (rev 29599)
@@ -1 +0,0 @@
-usr/

Modified: packages/django-tables/trunk/debian/rules
===================================================================
--- packages/django-tables/trunk/debian/rules	2014-07-03 03:38:18 UTC (rev 29598)
+++ packages/django-tables/trunk/debian/rules	2014-07-03 03:40:53 UTC (rev 29599)
@@ -1,14 +1,18 @@
 #!/usr/bin/make -f
 # -*- makefile -*-
 
+export PYBUILD_NAME=django-tables2
+
 %:
-	dh $@ --with python2,sphinxdoc
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
 
 .PHONY: override_dh_auto_build
 override_dh_auto_build:
 	PYTHONPATH=. sphinx-build -b html -d docs/.build/.doctrees -N docs docs/.build/html
 	dh_auto_build
 
-override_dh_auto_clean:
-	dh_auto_clean
-	rm -rf *.egg-info docs/.build
+.PHONY: override_dh_auto_test
+override_dh_auto_test:
+	# Tests require attest which isn't in Debian yet.
+	# https://pypi.python.org/pypi/Attest/0.5.3
+	# Disabling tests for now.




More information about the Python-modules-commits mailing list