Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Build the Python bindings with Python 3 (Closes: #938892)
· 46462122
Emmanuel Bourg
authored
Jan 26, 2020
46462122
Standards-Version updated to 4.5.0
· fd188d09
Emmanuel Bourg
authored
Jan 26, 2020
fd188d09
Upload to unstable
· ab7cb476
Emmanuel Bourg
authored
Jan 26, 2020
ab7cb476
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
ab7cb476
zookeeper (3.4.13-4)
UNRELEASED
; urgency=medium
zookeeper (3.4.13-4)
unstable
; urgency=medium
* Team upload.
[ Jelmer Vernooij ]
* Bump debhelper from old 11 to 12.
* Re-export upstream signing key without extra signatures.
-- Jelmer Vernooij <jelmer@debian.org> Thu, 22 Aug 2019 21:59:32 +0000
[ Emmanuel Bourg ]
* Build the Python bindings with Python 3 (Closes: #938892)
* Standards-Version updated to 4.5.0
-- Emmanuel Bourg <ebourg@apache.org> Sun, 26 Jan 2020 23:18:05 +0100
zookeeper (3.4.13-3) unstable; urgency=medium
...
...
debian/control
View file @
ab7cb476
...
...
@@ -33,9 +33,9 @@ Build-Depends:
maven-repo-helper,
pkg-config,
procps,
python-all-dev
(>= 2.6.6-3~)
,
python
3
-all-dev,
debhelper-compat (= 12)
Standards-Version: 4.
4
.0
Standards-Version: 4.
5
.0
Vcs-Git: https://salsa.debian.org/java-team/zookeeper.git
Vcs-Browser: https://salsa.debian.org/java-team/zookeeper
Homepage: https://zookeeper.apache.org
...
...
@@ -177,14 +177,14 @@ Description: Command line utilities for zookeeper
binding. See the "zookeeper" package for command line utilities using the java
binding.
Package: python-zookeeper
Package: python
3
-zookeeper
Architecture: any
Section: python
X
B
-Python-Version: ${python:Versions}
X-Python
3
-Version: ${python
3
:Versions}
Depends:
libzookeeper-mt2 (= ${binary:Version}),
${misc:Depends},
${python:Depends},
${python
3
:Depends},
${shlibs:Depends}
Description: Python bindings for zookeeper
ZooKeeper is a centralized, reliable, service for maintaining configuration
...
...
debian/python-zookeeper.install
→
debian/python
3
-zookeeper.install
View file @
ab7cb476
File moved
debian/python-zookeeper.preinst
→
debian/python
3
-zookeeper.preinst
View file @
ab7cb476
File moved
debian/rules
View file @
ab7cb476
...
...
@@ -2,7 +2,7 @@
export JAVA_HOME=/usr/lib/jvm/default-java
PYVERS := $(shell pyversions -vr)
PYVERS := $(shell py
3
versions -vr)
DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^+]+).*,\1,p')
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
DEB_CHANGELOG_DATETIME = $(shell dpkg-parsechangelog --show-field Date)
...
...
@@ -17,7 +17,7 @@ ANT_ARGS = -Dversion=$(DEB_UPSTREAM_VERSION) \
-Dant.build.javac.target=1.8
%:
dh $@ --buildsystem=ivy --with javahelper --with python
2
dh $@ --buildsystem=ivy --with javahelper --with python
3
override_dh_auto_build:
# TODO exclude the fatjar contrib from upstream tarball and include the rest contrib
...
...