From: Carlos Maddela Date: Tue, 1 Mar 2016 07:47:40 +0000 (+1100) Subject: Rebuild with only Python 3 support. X-Git-Url: https://git.rapsys.eu/youtubedl/commitdiff_plain/74a9312fb6565d0d3d227b6c959436678ce1dbe2 Rebuild with only Python 3 support. Closes: #723990 --- diff --git a/debian/control b/debian/control index 51ea9b4..6dcb3b6 100644 --- a/debian/control +++ b/debian/control @@ -7,11 +7,11 @@ Build-Depends: debhelper (>= 9), dh-python, pandoc, - python-pkg-resources, + python3-pkg-resources, zip Build-Depends-Indep: - python -X-Python-Version: >= 2.6 + python3 +X-Python3-Version: >= 3.2 Standards-Version: 3.9.7 Homepage: https://rg3.github.com/youtube-dl/ Vcs-Git: https://anonscm.debian.org/git/collab-maint/youtube-dl.git @@ -21,9 +21,9 @@ Package: youtube-dl Architecture: all Pre-Depends: dpkg (>= 1.15.7.2) Depends: - python-pkg-resources, + python3-pkg-resources, ${misc:Depends}, - ${python:Depends} + ${python3:Depends}, Recommends: aria2 | wget | curl, ca-certificates, diff --git a/debian/rules b/debian/rules index 3efd20e..82d26cb 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,11 @@ #!/usr/bin/make -f + +#export DH_VERBOSE = 1 +export PYBUILD_NAME = youtube_dl +export PATH := $(CURDIR)/debian/utils:$(PATH) + %: - dh $@ --with python2 --buildsystem=python_distutils \ - --with bash-completion + dh $@ --with python3 --buildsystem=pybuild --with bash-completion override_dh_auto_configure: PREFIX=/usr SYSCONFDIR=/etc make diff --git a/debian/utils/python b/debian/utils/python new file mode 100755 index 0000000..1c65bd1 --- /dev/null +++ b/debian/utils/python @@ -0,0 +1,2 @@ +#!/bin/sh +/usr/bin/python3 "$@" diff --git a/debian/utils/pyversions b/debian/utils/pyversions new file mode 100755 index 0000000..54e34e2 --- /dev/null +++ b/debian/utils/pyversions @@ -0,0 +1,2 @@ +#!/bin/sh +/usr/bin/py3versions "$@"