[Python-modules-commits] r34119 - in packages/pyuca/trunk/debian (control rules)

danstender-guest at users.alioth.debian.org danstender-guest at users.alioth.debian.org
Thu Sep 3 09:58:44 UTC 2015


    Date: Thursday, September 3, 2015 @ 09:58:43
  Author: danstender-guest
Revision: 34119

build both, Py2 and Py3 package

Modified:
  packages/pyuca/trunk/debian/control
  packages/pyuca/trunk/debian/rules

Modified: packages/pyuca/trunk/debian/control
===================================================================
--- packages/pyuca/trunk/debian/control	2015-09-03 09:08:12 UTC (rev 34118)
+++ packages/pyuca/trunk/debian/control	2015-09-03 09:58:43 UTC (rev 34119)
@@ -8,18 +8,38 @@
 Build-Depends:
  debhelper (>= 9),
  dh-python,
+ python-all,
+ python-setuptools,
  python3-all,
  python3-setuptools
 Standards-Version: 3.9.6
 Homepage: https://github.com/jtauber/pyuca
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/pyuca/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/pyuca/trunk/
+X-Python-Version: >= 2.7
 X-Python3-Version: >= 3.3
 
-Package: python3-uca
+Package: python-pyuca
 Architecture: all
 Depends:
  ${misc:Depends},
+ ${python:Depends}
+Description: Unicode Collation Algorithm (UCA) for Python
+ The Unicode Collation Algorithm is defined in the Unicode Technical
+ Report #10 (UTR-10). It defines a customizable method to compare
+ two strings which can be used for the implementation of sorting orders
+ for Unicode alphabets.
+ .
+ This library is a Python implementation of the UCA which provides
+ special features for the sorting of non-English Unicode strings like
+ multi-level comparison, contraction, and expansion.
+ .
+ This package provides Pyuca for Python 2.
+
+Package: python3-pyuca
+Architecture: all
+Depends:
+ ${misc:Depends},
  ${python3:Depends}
 Description: Unicode Collation Algorithm (UCA) for Python3
  The Unicode Collation Algorithm is defined in the Unicode Technical
@@ -27,6 +47,8 @@
  two strings which can be used for the implementation of sorting orders
  for Unicode alphabets.
  .
- This library is a Python3 implementation of the UCA which provides
+ This library is a Python implementation of the UCA which provides
  special features for the sorting of non-English Unicode strings like
  multi-level comparison, contraction, and expansion.
+ .
+ This package provides Pyuca for Python 3.

Modified: packages/pyuca/trunk/debian/rules
===================================================================
--- packages/pyuca/trunk/debian/rules	2015-09-03 09:08:12 UTC (rev 34118)
+++ packages/pyuca/trunk/debian/rules	2015-09-03 09:58:43 UTC (rev 34119)
@@ -4,7 +4,7 @@
 export PYBUILD_NAME=pyuca
 
 %:
-	dh $@ --with python3 --buildsystem=pybuild
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
 override_dh_auto_test:
 	PYBUILD_SYSTEM=custom \




More information about the Python-modules-commits mailing list