From 13de2b8da99cd74725baefd472694b407a507391 Mon Sep 17 00:00:00 2001 From: Varac Date: Thu, 22 Jun 2017 13:23:20 +0200 Subject: Add debian folder from debian/platform-0.9 branch --- debian/changelog | 46 ++++++++++++++++++++++++++++++++++++++++++++++ debian/compat | 1 + debian/control | 19 +++++++++++++++++++ debian/copyright | 39 +++++++++++++++++++++++++++++++++++++++ debian/rules | 27 +++++++++++++++++++++++++++ debian/source/format | 1 + 6 files changed, 133 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0afc903 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,46 @@ +pysqlcipher (2.6.3.6) unstable; urgency=medium + + * set dependency on sqlcipher to "> 3.2.0-1" so it matches + the jessie-backports version (3.2.0-1.1~bpo80+1) + see https://leap.se/code/issues/7576#note-10 and following + + -- Varac Anero Wed, 18 Nov 2015 22:34:18 +0100 + +pysqlcipher (2.6.3.5) unstable; urgency=medium + + * Remove dependency on dh-python, its not available in wheezy + + -- Micah Anderson Thu, 29 Oct 2015 16:54:36 -0400 + +pysqlcipher (2.6.3.4) unstable; urgency=medium + + * remove unneeded debian watch file + * bump dependency on sqlcipher >= 3.2.0-1.1 + * fix debian/copyright file to have proper dep-5 format + + -- Micah Anderson Tue, 01 Sep 2015 15:38:41 -0400 + +pysqlcipher (2.6.3.3) unstable; urgency=medium + + * Need to also change the Depends for libsqlcipher0 + + -- Micah Anderson Fri, 04 Jul 2014 15:14:46 -0400 + +pysqlcipher (2.6.3.2) unstable; urgency=medium + + * Change build-dependency version for libsqlcipher-dev to pick up + backported versions more easily + + -- Micah Anderson Tue, 01 Jul 2014 12:25:04 -0400 + +pysqlcipher (2.6.3.1) unstable; urgency=low + + * Use libsqlcipher0 2.2.1-2, that uses SQLITE_TEMP_STORE=2. See #726464 + + -- Ben Carrillo Tue, 29 Oct 2013 13:21:37 -0200 + +pysqlcipher (2.6.3~dev02) unstable; urgency=low + + * Initial debian package + + -- Ben Carrillo Thu, 30 May 2013 03:33:25 +0900 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..a516ce6 --- /dev/null +++ b/debian/control @@ -0,0 +1,19 @@ +Source: pysqlcipher +Maintainer: Ben Carrillo +Section: python +Priority: optional +Build-Depends: python-all-dev (>= 2.6.6-3), libsqlcipher-dev (>3.2.0-1), debhelper (>= 9) +Standards-Version: 3.9.6 +Uploaders: Micah Anderson +X-Python-Version: >= 2.5 + +Package: python-sqlcipher +Architecture: any +Depends: libsqlcipher0 (>3.2.0-1), ${misc:Depends}, ${python:Depends}, ${shlibs:Depends} +Description: DB-API 2.0 interface for SQLCIPHER 3.x + Python interface to SQLCipher + . + pysqlcipher is an interface to the SQLite 3.x embedded relational + database engine. It is almost fully compliant with the Python database API + version 2.0. At the same time, it also exposes the unique features of + SQLCipher. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..176a920 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,39 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pysqlcipher +Upstream-Contact: kali@leap.se +Source: + +Files: * +Copyright: 2005-2010 Gerhard Häring +License: Zlib + +Files: setup.* +Copyright: + 2013 Kali Kaneko + 2005-2010 Gerhard Häring +License: Zlib + +License: Zlib + This software is provided 'as-is', without any express or implied + warranty. In no event will the authors be held liable for any damages + arising from the use of this software. + . + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + . + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgement in the product documentation would be + appreciated but is not required. + 2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. + 3. This notice may not be removed or altered from any source distribution. + +Files: debian/* +Copyright: Copyright 2013 Kali Kaneko +License: GPL-3+ + +License: GPL-3+ + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3'. \ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2620c92 --- /dev/null +++ b/debian/rules @@ -0,0 +1,27 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#DH_VERBOSE=1 + +# Prevent setuptools/distribute from accessing the internet. +export http_proxy = http://127.0.0.1:9 + +%: + dh $@ --with python2 --buildsystem=python_distutils + +override_dh_auto_build: + python$* setup.py build_sqlcipher + python$* setup.py build_py + +override_dh_auto_install: + python$* setup.py install --skip-build --root=debian/python-sqlcipher \ + --install-layout=deb + +override_dh_python2: + dh_python2 --no-guessing-versions + +override_dh_auto_clean: + dh_auto_clean + rm -rf build + rm -rf docs/_build + rm -rf *.egg-info + find \( -name '._*' -o -name '*.pyc' \) -delete diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..89ae9db --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) -- cgit v1.2.3