[Python-modules-commits] [dulwich] 11/13: Fix argument order to dh_install.
Jelmer Vernooij
jelmer at moszumanska.debian.org
Thu Sep 28 02:21:30 UTC 2017
This is an automated email from the git hooks/post-receive script.
jelmer pushed a commit to branch master
in repository dulwich.
commit 67576c62c1acdaca50bf50dad5f86841ead7a652
Author: Jelmer Vernooij <jelmer at debian.org>
Date: Thu Sep 28 00:47:23 2017 +0100
Fix argument order to dh_install.
---
debian/changelog | 6 ++++++
debian/rules | 8 ++++----
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index 78572c4..c9000a0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dulwich (0.18.3-2) UNRELEASED; urgency=medium
+
+ * Fix argument order to dh_install.
+
+ -- Jelmer Vernooij <jelmer at debian.org> Thu, 28 Sep 2017 00:47:21 +0100
+
dulwich (0.18.3-1) unstable; urgency=low
* New upstream release.
diff --git a/debian/rules b/debian/rules
index d58a0c1..c69cda2 100755
--- a/debian/rules
+++ b/debian/rules
@@ -41,13 +41,13 @@ ifneq (,$(findstring pypy,$(pyflavours)))
rm -rf debian/tmp/usr/lib/pypy/bin
endif
# Install everything excluding the *_d.so debug extensions to python-dulwich and python3-dulwich
- dh_install -X"*_d.so" -Xpypy "debian/tmp/usr/lib/python2*/*-packages" -p python-dulwich
- dh_install -X"*_d.so" -Xpypy "debian/tmp/usr/lib/python3*/*-packages" -p python3-dulwich
+ dh_install -p python-dulwich -X"*_d.so" -Xpypy "debian/tmp/usr/lib/python2*/*-packages"
+ dh_install -p python3-dulwich -X"*_d.so" -Xpypy "debian/tmp/usr/lib/python3*/*-packages"
# Install the debug extensions to python-dulwich-dbg
- dh_install "debian/tmp/usr/lib/python*/*-packages/dulwich/*_d.so" -p python-dulwich-dbg
+ dh_install -p python-dulwich-dbg "debian/tmp/usr/lib/python*/*-packages/dulwich/*_d.so"
ifneq (,$(findstring pypy,$(pyflavours)))
# Install the pypy files to pypy-dulwich
- dh_install "debian/tmp/usr/lib/pypy/" -p pypy-dulwich
+ dh_install -p pypy-dulwich "debian/tmp/usr/lib/pypy/"
endif
override_dh_installdocs:
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/dulwich.git
More information about the Python-modules-commits
mailing list