diff --git a/debian/changelog b/debian/changelog index afabe65..143dbba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-simplekv (0.13.0-0kali2) kali-dev; urgency=medium + + * Remove Python 2 module + + -- Sophie Brun Mon, 30 Dec 2019 12:40:12 +0100 + python-simplekv (0.13.0-0kali1) kali-dev; urgency=medium * Initial release diff --git a/debian/control b/debian/control index 307c163..5e6fe02 100644 --- a/debian/control +++ b/debian/control @@ -3,23 +3,12 @@ Priority: optional Maintainer: Kali Developers Uploaders: Sophie Brun -Build-Depends: debhelper-compat (= 12), dh-python, python-all, python-setuptools, python3-all, python3-setuptools +Build-Depends: debhelper-compat (= 12), dh-python, python3-all, python3-setuptools Standards-Version: 4.4.1 Homepage: https://github.com/mbr/simplekv Vcs-Browser: https://gitlab.com/kalilinux/packages/python-simplekv Vcs-Git: https://gitlab.com/kalilinux/packages/python-simplekv.git Testsuite: autopkgtest-pkg-python - -Package: python-simplekv -Architecture: all -Depends: ${python:Depends}, ${misc:Depends} -Description: simple key-value store for binary data (Python 2) - This package contains an API for very basic key-value stores used for small, - frequently accessed data or large binary blobs. Its basic interface is easy to - implement and it supports a number of backends, including the filesystem, - SQLAlchemy, MongoDB, Redis and Amazon S3/Google Storage. - . - This package installs the library for Python 2. Package: python3-simplekv Architecture: all diff --git a/debian/rules b/debian/rules index ff1c8a6..0604489 100755 --- a/debian/rules +++ b/debian/rules @@ -5,4 +5,4 @@ export PYBUILD_NAME=simplekv %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild