Skip to content

Commit 1601ac4

Browse files
micahkalikaneko
authored andcommitted
several debian/* improvements
* make changelog more suitable than the one generated by stdeb * switch to debhelper version compat 9, this should allow us to get some hardening flags enabled easier * add the debian/* files to the copyright notice * add myself as uploader * fix version so it matches native requirements * update standards revision, no changes * remove installation of unnecessary documentation into wrong location (usr/pysqlcipher-doc/)
1 parent 4623e6a commit 1601ac4

5 files changed

Lines changed: 14 additions & 13 deletions

File tree

debian/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pysqlcipher (2.6.3~dev02-1) unstable; urgency=low
1+
pysqlcipher (2.6.3~dev02) unstable; urgency=low
22

3-
* source package automatically created by stdeb 0.6.0+git
3+
* Initial debian package
44

55
-- Ben Carrillo <ben@futeisha.org> Thu, 30 May 2013 03:33:25 +0900

debian/compat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7
1+
9

debian/control

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ Source: pysqlcipher
22
Maintainer: Ben Carrillo <ben@futeisha.org>
33
Section: python
44
Priority: optional
5-
Build-Depends: python-all-dev (>= 2.6.6-3), libsqlcipher-dev, debhelper (>= 7)
6-
Standards-Version: 3.9.1
5+
Build-Depends: python-all-dev (>= 2.6.6-3), libsqlcipher-dev, debhelper (>= 9)
6+
Standards-Version: 3.9.4
7+
Uploaders: Micah Anderson <micah@debian.org>
78

89
Package: python-sqlcipher
910
Architecture: any

debian/copyright

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,11 @@ Files: *
4949

5050
3. This notice may not be removed or altered from any source
5151
distribution.
52+
53+
Files: debian/*
54+
Copyright: Copyright 2013 Kali Kaneko <kali@futeisha.org>
55+
License: GPL-3+
56+
57+
License: GPL-3+
58+
On Debian systems, the complete text of the GNU General
59+
Public License can be found in `/usr/share/common-licenses/GPL'.

setup.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -306,13 +306,6 @@ def get_setup_args():
306306
print "Fatal error: PYSQLITE_VERSION could not be detected!"
307307
sys.exit(1)
308308

309-
data_files = [("pysqlcipher-doc",
310-
glob.glob("doc/*.html")
311-
+ glob.glob("doc/*.txt")
312-
+ glob.glob("doc/*.css")),
313-
("pysqlcipher-doc/code",
314-
glob.glob("doc/code/*.py"))]
315-
316309
#XXX ?
317310
#py_modules = ["sqlcipher"],
318311

@@ -333,7 +326,6 @@ def get_setup_args():
333326
packages=["pysqlcipher", "pysqlcipher.test"] +
334327
(["pysqlcipher.test.py25"], [])[sys.version_info < (2, 5)],
335328
scripts=[],
336-
data_files=data_files,
337329

338330
ext_modules=[
339331
Extension(

0 commit comments

Comments
 (0)