Initial commit - version 0.07 (from tarball)
Benjamin Renard

Benjamin Renard commited on 2012-03-26 16:37:56
Showing 8 changed files, with 76 additions and 0 deletions.

... ...
@@ -0,0 +1,5 @@
1
+pkipplib (0.07-1) unstable; urgency=low
2
+
3
+  * Initial release
4
+
5
+ -- Benjamin Renard <brenard@easter-eggs.com>  Mon, 26 Mar 2012 10:41:19 +0200
... ...
@@ -0,0 +1 @@
1
+7
... ...
@@ -0,0 +1,16 @@
1
+Source: pkipplib
2
+Section: python
3
+Priority: optional
4
+Maintainer: Benjamin Renard <brenard@easter-eggs.com>
5
+Build-Depends: debhelper (>= 7.0.50~), python-all-dev, python-support (>= 0.90.0~), python-setuptools
6
+Homepage: http://www.pykota.com/software/pkipplib
7
+Vcs-Svn: http://svn.pykota.com/pkipplib/trunk
8
+
9
+Package: python-pkipplib
10
+Architecture: any
11
+Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
12
+Description: Python library to prepare IPP requests
13
+ Pkipplib is a Python library which can prepare IPP requests
14
+ with the help of a somewhat high level API. These requests
15
+ can then be sent to an IPP printer or print server (e.g. CUPS).
16
+
... ...
@@ -0,0 +1,41 @@
1
+This work was packaged for Debian by:
2
+
3
+    Benjamin Renard <brenard@easter-eggs.com> on Mon, 26 Mar 2012 10:53:33 +0200
4
+
5
+It was downloaded from:
6
+
7
+    http://www.pykota.com/software/pkipplib/download/tarballs
8
+
9
+Upstream Author:
10
+
11
+    Jerome Alet <alet@librelogiciel.com>
12
+
13
+Copyright:
14
+
15
+    Copyright (C) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com>
16
+
17
+License:
18
+
19
+    This program is free software; you can redistribute it and/or modify
20
+    it under the terms of the GNU General Public License as published by
21
+    the Free Software Foundation; either version 2 of the License, or
22
+    (at your option) any later version.
23
+    
24
+    This program is distributed in the hope that it will be useful,
25
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
26
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27
+    GNU General Public License for more details.
28
+    
29
+    You should have received a copy of the GNU General Public License
30
+    along with this program; if not, write to the Free Software
31
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
32
+
33
+On Debian systems, the complete text of the GNU General Public license version 2.0
34
+can be found in "/usr/share/common-licenses/GPL-2".
35
+
36
+The Debian packaging is:
37
+
38
+    Copyright (C) 2012 Benjamin Renard <brenard@easter-eggs.com>
39
+
40
+and is licensed under the GNU General Public License version 2.0
41
+see "/usr/share/common-licenses/GPL-2".
... ...
@@ -0,0 +1 @@
1
+README
... ...
@@ -0,0 +1 @@
1
+python-pkipplib_0.07-1_amd64.deb python optional
... ...
@@ -0,0 +1,9 @@
1
+#!/usr/bin/make -f
2
+
3
+override_dh_auto_clean:
4
+	dh_auto_clean
5
+	rm -rf pymongo.egg-info/
6
+
7
+%:
8
+	dh  $@
9
+
... ...
@@ -0,0 +1,2 @@
1
+version=3
2
+http://www.pykota.com/software/pkipplib/download/tarballs/ pkipplib-([0-9\.]*)\.tar\.gz
0 3