[Python-modules-commits] r28021 - in packages/guessit/trunk/debian (control rules)
emillon-guest at users.alioth.debian.org
emillon-guest at users.alioth.debian.org
Wed Mar 5 21:51:36 UTC 2014
Date: Wednesday, March 5, 2014 @ 21:51:35
Author: emillon-guest
Revision: 28021
guessit: python3 support
Modified:
packages/guessit/trunk/debian/control
packages/guessit/trunk/debian/rules
Modified: packages/guessit/trunk/debian/control
===================================================================
--- packages/guessit/trunk/debian/control 2014-03-05 13:25:41 UTC (rev 28020)
+++ packages/guessit/trunk/debian/control 2014-03-05 21:51:35 UTC (rev 28021)
@@ -15,11 +15,19 @@
python-setuptools,
python-stevedore,
python-yaml,
+ python3-all,
+ python3-babelfish,
+ python3-nose,
+ python3-pkg-resources,
+ python3-setuptools,
+ python3-stevedore,
+ python3-yaml,
Standards-Version: 3.9.5
Homepage: http://guessit.readthedocs.org/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/guessit/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/guessit/trunk/
X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3, << 3.4
XS-Testsuite: autopkgtest
Package: python-guessit
@@ -28,8 +36,26 @@
python-pkg-resources,
${misc:Depends},
${python:Depends},
-Description: library for guessing information from video filenames
+Description: library for guessing information from video filenames (Python 2)
GuessIt is a Python library that tries to extract as much information as
possible from a video file. It has a very powerful filename matcher that allows
to guess a lot of metadata from a video using only its filename. This matcher
works with both movies and TV show episodes.
+ .
+ This package contains the Python 2 module.
+ .
+ It also contains the "guessit" binary to interact with this library.
+
+Package: python3-guessit
+Architecture: all
+Depends:
+ python3-pkg-resources,
+ ${misc:Depends},
+ ${python3:Depends},
+Description: library for guessing information from video filenames (Python 3)
+ GuessIt is a Python library that tries to extract as much information as
+ possible from a video file. It has a very powerful filename matcher that allows
+ to guess a lot of metadata from a video using only its filename. This matcher
+ works with both movies and TV show episodes.
+ .
+ This package contains the Python 3 module.
Modified: packages/guessit/trunk/debian/rules
===================================================================
--- packages/guessit/trunk/debian/rules 2014-03-05 13:25:41 UTC (rev 28020)
+++ packages/guessit/trunk/debian/rules 2014-03-05 21:51:35 UTC (rev 28021)
@@ -1,7 +1,12 @@
#!/usr/bin/make -f
+export PYBUILD_NAME=guessit
%:
- dh $@ --with=python2 --buildsystem=pybuild
+ dh $@ --with=python2,python3 --buildsystem=pybuild
+override_dh_install:
+ dh_install
+ rm -r debian/python3-guessit/usr/bin/
+
override_dh_installchangelogs:
dh_installchangelogs HISTORY.rst
More information about the Python-modules-commits
mailing list