diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/clean | 1 | ||||
-rwxr-xr-x | debian/rules | 5 |
3 files changed, 4 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index 4bcd535..d492dd6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ requests (2.0.0-1) UNRELEASED; urgency=low * New upstream release (Closes: #725784) * Switched to pybuild + * debian/clean + - Switched to debian/clean for cleaning instead of using debian/rules * debian/control - Bumped python(3)-urllib3 to (>=1.7.1) * debian/patches/02_use-system-chardet-and-urllib3.patches @@ -9,7 +11,7 @@ requests (2.0.0-1) UNRELEASED; urgency=low * debian/watch - Switched download URL to https - -- Daniele Tricoli <eriol@mornie.org> Fri, 18 Oct 2013 17:40:40 +0200 + -- Daniele Tricoli <eriol@mornie.org> Fri, 18 Oct 2013 18:08:16 +0200 requests (1.2.3-1) unstable; urgency=low diff --git a/debian/clean b/debian/clean new file mode 100644 index 0000000..6b4c10a --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +requests.egg-info/* diff --git a/debian/rules b/debian/rules index 39f8657..6198313 100755 --- a/debian/rules +++ b/debian/rules @@ -7,10 +7,5 @@ export PYBUILD_DESTDIR_python3=debian/python3-requests/ %: dh $@ --with python2,python3 --buildsystem=pybuild -override_dh_auto_clean: - rm -rf build - dh_auto_clean - rm -rf requests.egg-info - override_dh_installchangelogs: dh_installchangelogs HISTORY.rst |