|
@@ -5,17 +5,12 @@ CFLAGS:=$(shell dpkg-buildflags --get CFLAGS)
|
|
CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)
|
|
CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS)
|
|
LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
|
|
LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS)
|
|
|
|
|
|
-# Get the supported Python versions
|
|
|
|
-PYTHONS = $(shell pyversions -r) pypy
|
|
|
|
-# Get the default Python version
|
|
|
|
-PYVERSION = $(shell pyversions -d -v)
|
|
|
|
-
|
|
|
|
# Callable functions to determine the correct PYTHONPATH
|
|
# Callable functions to determine the correct PYTHONPATH
|
|
pythonpath = $$(ls -d $(CURDIR)/build/lib.*-$(1))
|
|
pythonpath = $$(ls -d $(CURDIR)/build/lib.*-$(1))
|
|
pythonpath_dbg = $$(ls -d $(CURDIR)/build/lib_d.*-$(1) 2>/dev/null || ls -d $(CURDIR)/build/lib.*$(1)-pydebug)
|
|
pythonpath_dbg = $$(ls -d $(CURDIR)/build/lib_d.*-$(1) 2>/dev/null || ls -d $(CURDIR)/build/lib.*$(1)-pydebug)
|
|
|
|
|
|
%:
|
|
%:
|
|
- dh $* --with python2,pypy --buildsystem=python_distutils
|
|
|
|
|
|
+ dh $* --with python2,python3,pypy --buildsystem=python_distutils
|
|
|
|
|
|
override_dh_auto_build:
|
|
override_dh_auto_build:
|
|
dh_auto_build
|
|
dh_auto_build
|
|
@@ -27,7 +22,8 @@ override_dh_auto_clean:
|
|
|
|
|
|
override_dh_auto_test:
|
|
override_dh_auto_test:
|
|
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
|
|
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
|
|
- $(MAKE) check
|
|
|
|
|
|
+ $(MAKE) check PYTHON=python
|
|
|
|
+ $(MAKE) check PYTHON=python3
|
|
PYTHONPATH=$(shell echo $(CURDIR)/build-pypy/lib*) pypy -m unittest dulwich.tests.test_suite
|
|
PYTHONPATH=$(shell echo $(CURDIR)/build-pypy/lib*) pypy -m unittest dulwich.tests.test_suite
|
|
endif
|
|
endif
|
|
|
|
|
|
@@ -36,7 +32,7 @@ override_dh_auto_install:
|
|
pypy setup.py build -b build-pypy install --root debian/tmp --install-layout deb
|
|
pypy setup.py build -b build-pypy install --root debian/tmp --install-layout deb
|
|
rm -rf debian/tmp/usr/lib/pypy/bin
|
|
rm -rf debian/tmp/usr/lib/pypy/bin
|
|
# Install everything excluding the *_d.so debug extensions to python-dulwich
|
|
# Install everything excluding the *_d.so debug extensions to python-dulwich
|
|
- dh_install -X"*_d.so" "debian/tmp/usr/lib/python*/*-packages" -p python-dulwich
|
|
|
|
|
|
+ dh_install -X"*_d.so" "debian/tmp/usr/lib/python2*/*-packages" -p python-dulwich
|
|
# Install the debug extensions to python-dulwich-dbg
|
|
# 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 "debian/tmp/usr/lib/python*/*-packages/dulwich/*_d.so" -p python-dulwich-dbg
|
|
# Install the pypy files to pypy-dulwich
|
|
# Install the pypy files to pypy-dulwich
|
|
@@ -44,13 +40,14 @@ override_dh_auto_install:
|
|
|
|
|
|
override_dh_installdocs:
|
|
override_dh_installdocs:
|
|
dh_installdocs -ppython-dulwich-dbg --link-doc=python-dulwich
|
|
dh_installdocs -ppython-dulwich-dbg --link-doc=python-dulwich
|
|
|
|
+ dh_installdocs -ppython3-dulwich-dbg --link-doc=python3-dulwich
|
|
dh_installdocs -ppython-dulwich docs/tutorial -X.gitignore -XMakefile
|
|
dh_installdocs -ppython-dulwich docs/tutorial -X.gitignore -XMakefile
|
|
|
|
+ dh_installdocs -ppython3-dulwich docs/tutorial -X.gitignore -XMakefile
|
|
dh_installdocs -ppypy-dulwich docs/tutorial -X.gitignore -XMakefile
|
|
dh_installdocs -ppypy-dulwich docs/tutorial -X.gitignore -XMakefile
|
|
|
|
|
|
override_dh_strip:
|
|
override_dh_strip:
|
|
-ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
|
|
|
|
- dh_strip --dbg-package=python-dulwich-dbg
|
|
|
|
-endif
|
|
|
|
|
|
+ dh_strip -p python-dulwich --dbg-package=python-dulwich-dbg
|
|
|
|
+ dh_strip -p python3-dulwich --dbg-package=python3-dulwich-dbg
|
|
|
|
|
|
override_dh_installchangelogs:
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs NEWS
|
|
dh_installchangelogs NEWS
|