diff options
author | biao716.wang <biao716.wang@samsung.com> | 2020-08-26 11:59:53 +0900 |
---|---|---|
committer | biao716.wang <biao716.wang@samsung.com> | 2020-08-26 12:28:47 +0900 |
commit | 3429128ee027def6c23ac678465447f445877cd6 (patch) | |
tree | 0a2d4baccefb600888bf0ad7a870133def8481e1 /debian | |
parent | a5651e772478cb72e7fd02e1d60bbe7a509a4d50 (diff) | |
download | python-urlgrabber-3429128ee027def6c23ac678465447f445877cd6.tar.gz python-urlgrabber-3429128ee027def6c23ac678465447f445877cd6.tar.bz2 python-urlgrabber-3429128ee027def6c23ac678465447f445877cd6.zip |
Fix debian build error
Change-Id: I8237f9304a05d288fff97c338e7a80f32fdb121d
Signed-off-by: biao716.wang <biao716.wang@samsung.com>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 9c663ba..1c94f80 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ python-urlgrabber (4.1.0) unstable; urgency=low - * Port to Python 3 + * Port to python3 -- Biao Wang <biao716.wang@samsung.com> Wed, 26 Aug 2020 10:09:30 +0800 diff --git a/debian/control b/debian/control index 6776271..1f8573c 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: python-urlgrabber Section: devel Priority: extra Maintainer: Jong-Woo Chae <jonwoo.chae@samsung.com> -Build-Depends: debhelper (>= 7.0.15), python3-six, python3-pycurl, python3-setuptools, dh_python3 +Build-Depends: debhelper (>= 7.0.15), python3-dev, dh-python, python3-setuptools, python3-six, python3-pycurl Standards-Version: 4.1.0 Homepage: http://www.tizen.org diff --git a/debian/rules b/debian/rules index b77ab76..e200318 100755 --- a/debian/rules +++ b/debian/rules @@ -22,7 +22,7 @@ install: build # Installing package mkdir -p $(CURDIR)/debian/tmp - python setup.py install --prefix=/usr --root=$(CURDIR)/debian/tmp + python3 setup.py install --prefix=/usr --root=$(CURDIR)/debian/tmp binary-indep: build install dh_testdir dh_testroot |