From fd58b9bac4d757d97a29362a4c7c14268934d1e1 Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Tue, 27 Aug 2013 15:42:47 +0300 Subject: Debian packaging --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 18 ++++++++++++++++++ debian/copyright | 32 ++++++++++++++++++++++++++++++++ debian/docs | 1 + debian/python-withsqlite.pyinstall | 1 + debian/rules | 3 +++ debian/source/format | 1 + 8 files changed, 62 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/docs create mode 100644 debian/python-withsqlite.pyinstall create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..43c6466 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +withsqlite (0.0.0~git.20130328-1) UNRELEASED; urgency=low + + * Initial release. (Closes: #XXXXXX) + + -- Tzafrir Cohen Tue, 27 Aug 2013 15:38:50 +0300 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..634210f --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: withsqlite +Section: python +Priority: extra +Maintainer: Tzafrir Cohen +#Uploaders: +Build-Depends: debhelper (>= 9), python-all +Standards-Version: 3.9.4 +Homepage: https://github.com/jvasile/withsqlite +#Vcs-Git: +#Vcs-Browser: + +Package: python-withsqlite +Section: python +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Description: uses an sqlite db as a back end for a dict-like object + kind of like shelve but with json and sqlite3. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..938aa41 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,32 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: https://github.com/jvasile/withsqlite +Upstream-Name: withsqlite + +Files: * +Copyright: 2011-2013 James Vasile +License: GPL-3+ + Released under the GNU General Public License, version 3 or later. + See https://www.gnu.org/licenses/gpl-3.0.html for terms. + . + On Debian systems you will find a copy of the GPL (version 3) at + /usr/share/common-licenses/GPL-3. + +Files: debian/* +Copyright: 2013 Tzafrir Cohen +License: GPL-2+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 2 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems you will find a copy of the GPL (version 3) at + /usr/share/common-licenses/GPL-3. + diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..18908ea --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README.mdwn diff --git a/debian/python-withsqlite.pyinstall b/debian/python-withsqlite.pyinstall new file mode 100644 index 0000000..22dc6a3 --- /dev/null +++ b/debian/python-withsqlite.pyinstall @@ -0,0 +1 @@ +*.py withsqlite diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..18bcae9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,3 @@ +#!/usr/bin/make -f +%: + dh $@ --with python2 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) -- cgit v1.2.3