Merge lp:~matt.hall/cfgparser/debian into lp:cfgparser

Proposed by Matthew Hall
Status: Merged
Approved by: Martin Morrison
Approved revision: 3
Merged at revision: 3
Proposed branch: lp:~matt.hall/cfgparser/debian
Merge into: lp:cfgparser
Diff against target: 64 lines (+28/-2)
6 files modified
debian/changelog (+5/-0)
debian/compat (+1/-0)
debian/control (+13/-0)
debian/copyright (+2/-0)
debian/rules (+4/-0)
setup.py (+3/-2)
To merge this branch: bzr merge lp:~matt.hall/cfgparser/debian
Reviewer Review Type Date Requested Status
Martin Morrison Approve
Review via email: mp+231870@code.launchpad.net

Commit message

Add Debian packaging rules.

Description of the change

Add Debian packaging rules.

Martin, I've also taken the liberty of changing your author_email in the setup.py file, but let me know if you want me to do anything different here.

To post a comment you must log in.
Revision history for this message
Martin Morrison (isoschiz) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory 'debian'
2=== added file 'debian/changelog'
3--- debian/changelog 1970-01-01 00:00:00 +0000
4+++ debian/changelog 2014-08-22 11:34:16 +0000
5@@ -0,0 +1,5 @@
6+cfgparser (1.0) precise; urgency=low
7+
8+ * Initial version.
9+
10+ -- Matthew Hall <launchpad@matthall.co.uk> Fri, 22 Aug 2014 11:39:00 +0100
11
12=== added file 'debian/compat'
13--- debian/compat 1970-01-01 00:00:00 +0000
14+++ debian/compat 2014-08-22 11:34:16 +0000
15@@ -0,0 +1,1 @@
16+9
17
18=== added file 'debian/control'
19--- debian/control 1970-01-01 00:00:00 +0000
20+++ debian/control 2014-08-22 11:34:16 +0000
21@@ -0,0 +1,13 @@
22+Source: cfgparser
23+Maintainer: Matthew Hall <launchpad@matthall.co.uk>
24+Section: misc
25+Priority: optional
26+Build-Depends: debhelper (>= 9), python (>= 2.7)
27+Standards-Version: 3.9.3
28+X-Python-Version: >= 2.7
29+
30+Package: cfgparser
31+Architecture: all
32+Depends: ${misc:Depends}, ${python:Depends}
33+Description: Enhanced Configuration File Parser
34+ Minor enhancements to Python's built-in ConfigParser module.
35
36=== added file 'debian/copyright'
37--- debian/copyright 1970-01-01 00:00:00 +0000
38+++ debian/copyright 2014-08-22 11:34:16 +0000
39@@ -0,0 +1,2 @@
40+Copyright (c) 2014, Ensoft Ltd
41+All rights reserved.
42
43=== added file 'debian/rules'
44--- debian/rules 1970-01-01 00:00:00 +0000
45+++ debian/rules 2014-08-22 11:34:16 +0000
46@@ -0,0 +1,4 @@
47+#!/usr/bin/make -f
48+
49+%:
50+ dh $@ --with=python2
51
52=== modified file 'setup.py'
53--- setup.py 2014-03-30 21:23:52 +0000
54+++ setup.py 2014-08-22 11:34:16 +0000
55@@ -4,6 +4,7 @@
56 version='1.0',
57 description='Enhanced Configuration File Parser',
58 author='Martin Morrison',
59- author_email='martin.morrison@ensoft.co.uk',
60- py_modules=['cfgparser.py'],
61+ author_email='martin.morrison@gmail.com',
62+ url='https://launchpad.net/cfgparser',
63+ py_modules=['cfgparser'],
64 )

Subscribers

People subscribed via source and target branches