[Python-modules-commits] r29601 - in packages/django-filter/trunk/debian (4 files)
bam at users.alioth.debian.org
bam at users.alioth.debian.org
Thu Jul 3 04:11:04 UTC 2014
Date: Thursday, July 3, 2014 @ 04:11:02
Author: bam
Revision: 29601
Python 3 package.
Modified:
packages/django-filter/trunk/debian/changelog
packages/django-filter/trunk/debian/control
packages/django-filter/trunk/debian/rules
Deleted:
packages/django-filter/trunk/debian/python-django-filters.install
Modified: packages/django-filter/trunk/debian/changelog
===================================================================
--- packages/django-filter/trunk/debian/changelog 2014-07-03 03:50:31 UTC (rev 29600)
+++ packages/django-filter/trunk/debian/changelog 2014-07-03 04:11:02 UTC (rev 29601)
@@ -1,3 +1,9 @@
+django-filter (0.7-3) unstable; urgency=low
+
+ * Python3 package.
+
+ -- Brian May <bam at debian.org> Thu, 03 Jul 2014 13:55:03 +1000
+
django-filter (0.7-1) unstable; urgency=low
* New upstream version.
Modified: packages/django-filter/trunk/debian/control
===================================================================
--- packages/django-filter/trunk/debian/control 2014-07-03 03:50:31 UTC (rev 29600)
+++ packages/django-filter/trunk/debian/control 2014-07-03 04:11:02 UTC (rev 29601)
@@ -3,10 +3,10 @@
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
+Build-Depends: debhelper (>=8.1.0), dh-python,
+ python-all (>= 2.6.6-3~), python-django (>= 1.4.5), python-setuptools,
+ python3-all, python3-django (>= 1.4.5), python3-setuptools,
+ python-mock, python3-mock
Build-Depends-Indep: libjs-jquery, python-sphinx (>= 1.0.7+dfsg-1~)
Standards-Version: 3.9.5
X-Python-Version: >= 2.6
@@ -25,6 +25,15 @@
mundane bits of view code. Specifically allowing the users to filter down a
queryset based on a modelâs fields and displaying the form to let them do this.
+Package: python3-django-filters
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, python3-django (>= 1.4.5)
+Suggests: python-django-filters-doc
+Description: filter Django QuerySets based on user selections
+ Django-filter is a generic, reusable application to alleviate some of the more
+ mundane bits of view code. Specifically allowing the users to filter down a
+ queryset based on a modelâs fields and displaying the form to let them do this.
+
Package: python-django-filters-doc
Section: doc
Architecture: all
Deleted: packages/django-filter/trunk/debian/python-django-filters.install
===================================================================
--- packages/django-filter/trunk/debian/python-django-filters.install 2014-07-03 03:50:31 UTC (rev 29600)
+++ packages/django-filter/trunk/debian/python-django-filters.install 2014-07-03 04:11:02 UTC (rev 29601)
@@ -1 +0,0 @@
-usr/
Modified: packages/django-filter/trunk/debian/rules
===================================================================
--- packages/django-filter/trunk/debian/rules 2014-07-03 03:50:31 UTC (rev 29600)
+++ packages/django-filter/trunk/debian/rules 2014-07-03 04:11:02 UTC (rev 29601)
@@ -1,11 +1,17 @@
#!/usr/bin/make -f
# -*- makefile -*-
+export PYBUILD_NAME=django-filters
+
%:
- 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
+.PHONY: override_dh_auto_test
+override_dh_auto_test:
+ python2 ./runtests.py
+ python3 ./runtests.py
More information about the Python-modules-commits
mailing list