Browse Source

Stop shipping pypy C extensions in python-dulwich. Closes: #868542

Jelmer Vernooij 7 years ago
parent
commit
e0eb92b4f5
2 changed files with 8 additions and 2 deletions
  1. 6 0
      debian/changelog
  2. 2 2
      debian/rules

+ 6 - 0
debian/changelog

@@ -1,3 +1,9 @@
+dulwich (0.17.3-2) UNRELEASED; urgency=medium
+
+  * Stop shipping pypy C extensions in python-dulwich. Closes: #868542
+
+ -- Jelmer Vernooij <jelmer@debian.org>  Mon, 24 Jul 2017 23:51:07 +0000
+
 dulwich (0.17.3-1) unstable; urgency=medium
 
   * New upstream release.

+ 2 - 2
debian/rules

@@ -41,8 +41,8 @@ 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" "debian/tmp/usr/lib/python2*/*-packages" -p python-dulwich
-	dh_install -X"*_d.so" "debian/tmp/usr/lib/python3*/*-packages" -p 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
 	# Install the debug extensions to python-dulwich-dbg
 	dh_install "debian/tmp/usr/lib/python*/*-packages/dulwich/*_d.so" -p python-dulwich-dbg
 ifneq (,$(findstring pypy,$(pyflavours)))