From a795d0c19012d1a71b7edad41de068a6b4020223 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 30 May 2013 04:57:06 +0900 Subject: initial debian files --- .gitignore | 2 ++ debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 17 +++++++++++++++++ debian/copyright | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ debian/files | 1 + debian/rules | 19 +++++++++++++++++++ debian/source/format | 1 + debian/watch | 4 ++++ 9 files changed, 101 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/files create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/watch diff --git a/.gitignore b/.gitignore index 49be68c..83cfe53 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ build *.pyc dist/ MANIFEST +debian/python-sqlcipher +debian/*.log diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..a4869b4 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pysqlcipher (2.6.3~dev1-1) unstable; urgency=low + + * source package automatically created by stdeb 0.6.0+git + + -- Ben Carrillo Thu, 30 May 2013 03:33:25 +0900 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..1cbf946 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: pysqlcipher +Maintainer: Ben Carrillo +Section: python +Priority: optional +Build-Depends: python-all-dev (>= 2.6.6-3), debhelper (>= 7) +Standards-Version: 3.9.1 + +Package: python-sqlcipher +Architecture: any +Depends: libsqlcipher0 (>=2.1.1-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..72215e1 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,51 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: pysqlcipher +Upstream-Contact: kali@leap.se +Source: + +Files: setup.* + Copyright (C) 2013 Kali Kaneko + Copyright (C) 2005-2010 Gerhard Häring + + 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 acknowledgment 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: * + Copyright (C) 2005-2010 Gerhard Häring + + 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 acknowledgment 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. diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..7ed1248 --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +python-pysqlcipher_2.6.3~dev1-1_amd64.deb python optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..dc97b46 --- /dev/null +++ b/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#DH_VERBOSE=1 + +%: + dh $@ --with python2 --buildsystem=python_distutils + +build-python%: + python$* setup.py build_sqlcipher + +install-python%: + python$* setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb + + +override_dh_auto_clean: + dh_auto_clean + rm -rf build + rm -rf docs/_build + rm -rf *.egg-info diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..7dec5aa --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=3 + +http://pypi.python.org/packages/source/p/pysqlcipher/pysqlcipher-(.*)\.tar\.gz + -- cgit v1.2.3