Skip to content
Commits on Source (2)
libedlib (1.2.3-4) UNRELEASED; urgency=medium
libedlib (1.2.3-4) unstable; urgency=medium
* Make sure the executable is found in test
* Add Python3 bindings
-- Andreas Tille <tille@debian.org> Tue, 11 Dec 2018 09:52:41 +0100
-- Andreas Tille <tille@debian.org> Mon, 17 Dec 2018 08:59:56 +0100
libedlib (1.2.3-3) unstable; urgency=medium
......
......@@ -9,7 +9,7 @@ Build-Depends: debhelper (>= 11~),
d-shlibs,
rename,
cython3,
python3-dev,
python3-all-dev,
python3-setuptools
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/libedlib
......
......@@ -9,7 +9,7 @@ export DEB_BUILD_MAINT_OPTIONS=hardening=+all
DEB_CMAKE_EXTRA_FLAGS = -DCMAKE_BUILD_TYPE=Release
%:
dh $@ --buildsystem=pybuild
dh $@ --with python3
override_dh_auto_configure:
dh_auto_configure --buildsystem=cmake -- $(DEB_CMAKE_EXTRA_FLAGS)
......@@ -17,12 +17,13 @@ override_dh_auto_configure:
override_dh_auto_build:
dh_auto_build --buildsystem=cmake
# $(MAKE) --directory=bindings/python
dh_auto_build -O--buildsystem=pybuild -O--source-directory=bindings/python
$(MAKE) --directory=bindings/python edlib pyedlib.bycython.cpp
dh_auto_build --buildsystem=pybuild -- --dir bindings/python
override_dh_auto_install:
dh_auto_install --buildsystem=cmake
# $(MAKE) install --directory=bindings/python
dh_auto_install --buildsystem=pybuild -O--source-directory=bindings/python
dh_auto_install --buildsystem=pybuild -- --dir bindings/python
override_dh_install:
dh_install
......