summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@debian.org>2013-08-27 15:42:47 +0300
committerTzafrir Cohen <tzafrir@debian.org>2013-08-27 18:44:29 +0300
commitfd58b9bac4d757d97a29362a4c7c14268934d1e1 (patch)
tree6ecd8a844565a391ac94305aee419457e6733321
parent3558eaf5e997920da1994aa8f2b52086c0bfbfb4 (diff)
Debian packagingHEADmaster
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control18
-rw-r--r--debian/copyright32
-rw-r--r--debian/docs1
-rw-r--r--debian/python-withsqlite.pyinstall1
-rwxr-xr-xdebian/rules3
-rw-r--r--debian/source/format1
8 files changed, 62 insertions, 0 deletions
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 <tzafrir@debian.org> 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 <tzafrir@debian.org>
+#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 <http://www.gnu.org/licenses/>.
+ .
+ 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)