[Python-modules-commits] r33292 - in packages/django-haystack/trunk/debian (3 files)

fladi at users.alioth.debian.org fladi at users.alioth.debian.org
Tue Jul 7 20:08:59 UTC 2015


    Date: Tuesday, July 7, 2015 @ 20:08:58
  Author: fladi
Revision: 33292

Switch to pybuild and provide Python3 support.

Modified:
  packages/django-haystack/trunk/debian/control
  packages/django-haystack/trunk/debian/rules
Deleted:
  packages/django-haystack/trunk/debian/python-django-haystack.install

Modified: packages/django-haystack/trunk/debian/control
===================================================================
--- packages/django-haystack/trunk/debian/control	2015-07-07 17:42:56 UTC (rev 33291)
+++ packages/django-haystack/trunk/debian/control	2015-07-07 20:08:58 UTC (rev 33292)
@@ -4,11 +4,15 @@
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Michael Fladischer <fladi at debian.org>
 Build-Depends: debhelper (>= 9),
+               dh-python,
                python-all,
                python-setuptools,
-               python-sphinx (>= 1.0.7+dfsg)
+               python-sphinx (>= 1.0.7+dfsg),
+               python3-all,
+               python3-setuptools
 Standards-Version: 3.9.6
 X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
 Homepage: https://github.com/toastdriven/django-haystack
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-haystack/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-haystack/trunk/
@@ -31,6 +35,25 @@
  supports advanced features like faceting, More Like This, highlighting, spatial
  search and spelling suggestions.
 
+Package: python3-django-haystack
+Architecture: all
+Depends: python3-django,
+         ${misc:Depends},
+         ${python3:Depends}
+Suggests: python3-elasticsearch,
+          python3-httplib2,
+          python3-whoosh
+Description: modular search for Django (Python3 version)
+ Haystack provides modular search for Django. It features a unified, familiar
+ API that allows you to plug in different search backends (such as Solr,
+ Elasticsearch, Whoosh, Xapian, etc.) without having to modify your code.
+ .
+ It plays nicely with third-party app without needing to modify the source and
+ supports advanced features like faceting, More Like This, highlighting, spatial
+ search and spelling suggestions.
+ .
+ This package contains the Python 3 version of the library.
+
 Package: python-django-haystack-doc
 Section: doc
 Architecture: all

Deleted: packages/django-haystack/trunk/debian/python-django-haystack.install
===================================================================
--- packages/django-haystack/trunk/debian/python-django-haystack.install	2015-07-07 17:42:56 UTC (rev 33291)
+++ packages/django-haystack/trunk/debian/python-django-haystack.install	2015-07-07 20:08:58 UTC (rev 33292)
@@ -1 +0,0 @@
-usr/

Modified: packages/django-haystack/trunk/debian/rules
===================================================================
--- packages/django-haystack/trunk/debian/rules	2015-07-07 17:42:56 UTC (rev 33291)
+++ packages/django-haystack/trunk/debian/rules	2015-07-07 20:08:58 UTC (rev 33292)
@@ -1,14 +1,15 @@
 #!/usr/bin/make -f
 
+export PYBUILD_NAME=django-haystack
+export PYBUILD_DISABLE=test
+
 %:
-	dh $@ --with python2,sphinxdoc
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
 
 override_dh_auto_build:
 	PYTHONPATH=. sphinx-build -b html -d docs/_build/.doctrees -N docs docs/_build/html
 	dh_auto_build
 
-override_dh_auto_test:
-
 override_dh_clean:
 	rm -rf docs/_build
 	dh_clean




More information about the Python-modules-commits mailing list