Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix build of Python bindings
· 0a1b5638
Dmitry Shachnev
authored
Dec 16, 2018
and
Andreas Tille
committed
Dec 17, 2018
0a1b5638
Upload to unstable
· e27bd1da
Andreas Tille
authored
Dec 17, 2018
e27bd1da
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
e27bd1da
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
, 1
1
Dec 2018 0
9
:5
2:41
+0100
-- Andreas Tille <tille@debian.org>
Mon
, 1
7
Dec 2018 0
8
:5
9:56
+0100
libedlib (1.2.3-3) unstable; urgency=medium
...
...
debian/control
View file @
e27bd1da
...
...
@@ -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
...
...
debian/rules
View file @
e27bd1da
...
...
@@ -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
...
...