Skip to content
Commits on Source (3)
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
......
......@@ -33,9 +33,9 @@ Build-Depends:
maven-repo-helper,
pkg-config,
procps,
python-all-dev (>= 2.6.6-3~),
python3-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: python3-zookeeper
Architecture: any
Section: python
XB-Python-Version: ${python:Versions}
X-Python3-Version: ${python3:Versions}
Depends:
libzookeeper-mt2 (= ${binary:Version}),
${misc:Depends},
${python:Depends},
${python3:Depends},
${shlibs:Depends}
Description: Python bindings for zookeeper
ZooKeeper is a centralized, reliable, service for maintaining configuration
......
......@@ -2,7 +2,7 @@
export JAVA_HOME=/usr/lib/jvm/default-java
PYVERS := $(shell pyversions -vr)
PYVERS := $(shell py3versions -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 python2
dh $@ --buildsystem=ivy --with javahelper --with python3
override_dh_auto_build:
# TODO exclude the fatjar contrib from upstream tarball and include the rest contrib
......