diff options
author | biao716.wang <biao716.wang@samsung.com> | 2020-08-26 11:34:58 +0900 |
---|---|---|
committer | biao716.wang <biao716.wang@samsung.com> | 2020-08-26 11:34:58 +0900 |
commit | a5651e772478cb72e7fd02e1d60bbe7a509a4d50 (patch) | |
tree | dd6921b15d6285d79e2e42dcbbd132ac066b19d1 /debian | |
parent | 136d1e028cec5dcddc6ef6ac7302c794fda5f135 (diff) | |
download | python-urlgrabber-a5651e772478cb72e7fd02e1d60bbe7a509a4d50.tar.gz python-urlgrabber-a5651e772478cb72e7fd02e1d60bbe7a509a4d50.tar.bz2 python-urlgrabber-a5651e772478cb72e7fd02e1d60bbe7a509a4d50.zip |
Port to Python3debian/4.1.0
Change-Id: I46b8f71dce3d1f009617aa6e969414ad0c6393a6
Signed-off-by: biao716.wang <biao716.wang@samsung.com>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 8 | ||||
-rwxr-xr-x | debian/rules | 4 |
3 files changed, 12 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index 1e95e82..9c663ba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-urlgrabber (4.1.0) unstable; urgency=low + + * Port to Python 3 + + -- Biao Wang <biao716.wang@samsung.com> Wed, 26 Aug 2020 10:09:30 +0800 + python-urlgrabber (3.9.1) unstable; urgency=low * add debian diff --git a/debian/control b/debian/control index a365ee5..6776271 100644 --- a/debian/control +++ b/debian/control @@ -2,15 +2,15 @@ Source: python-urlgrabber Section: devel Priority: extra Maintainer: Jong-Woo Chae <jonwoo.chae@samsung.com> -Build-Depends: debhelper (>= 7.0.15), python-dev, python-pycurl -Standards-Version: 3.9.1 +Build-Depends: debhelper (>= 7.0.15), python3-six, python3-pycurl, python3-setuptools, dh_python3 +Standards-Version: 4.1.0 Homepage: http://www.tizen.org Package: python-urlgrabber Architecture: all Depends: ${python:Depends}, - python-m2crypto | python3-m2crypto, - python-pycurl + python3-six, + python3-pycurl Description: image creator for Linux distributions The tool createrep is used to ppfarm test diff --git a/debian/rules b/debian/rules index 0fa0995..b77ab76 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ build: build-stamp build-stamp: dh_testdir - python setup.py build + python3 setup.py build clean: dh_testdir dh_testroot @@ -34,7 +34,7 @@ binary-indep: build install dh_strip dh_compress dh_fixperms - dh_python2 + dh_python3 dh_installdeb dh_shlibdeps dh_gencontrol |