[Python-modules-commits] r5199 - in packages/python-pypdf (7 files)
luciano at users.alioth.debian.org
luciano at users.alioth.debian.org
Wed Apr 30 15:01:01 UTC 2008
Date: Wednesday, April 30, 2008 @ 15:00:59
Author: luciano
Revision: 5199
Enter directory structure for pypdf
Added:
packages/python-pypdf/trunk/
packages/python-pypdf/trunk/debian/
packages/python-pypdf/trunk/debian/changelog
packages/python-pypdf/trunk/debian/compat
packages/python-pypdf/trunk/debian/control
packages/python-pypdf/trunk/debian/copyright
packages/python-pypdf/trunk/debian/rules
Added: packages/python-pypdf/trunk/debian/changelog
===================================================================
--- packages/python-pypdf/trunk/debian/changelog (rev 0)
+++ packages/python-pypdf/trunk/debian/changelog 2008-04-30 15:00:59 UTC (rev 5199)
@@ -0,0 +1,5 @@
+python-pypdf (1.10-1) unstable; urgency=low
+
+ * Initial release (Closes: #467217)
+
+ -- Luciano Bello <luciano at debian.org> Mon, 28 Apr 2008 18:20:06 -0300
Added: packages/python-pypdf/trunk/debian/compat
===================================================================
--- packages/python-pypdf/trunk/debian/compat (rev 0)
+++ packages/python-pypdf/trunk/debian/compat 2008-04-30 15:00:59 UTC (rev 5199)
@@ -0,0 +1 @@
+5
Added: packages/python-pypdf/trunk/debian/control
===================================================================
--- packages/python-pypdf/trunk/debian/control (rev 0)
+++ packages/python-pypdf/trunk/debian/control 2008-04-30 15:00:59 UTC (rev 5199)
@@ -0,0 +1,27 @@
+Source: python-pypdf
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Luciano Bello <luciano at debian.org>
+Build-Depends: debhelper (>= 5.0.38), python-all
+Build-Depends-Indep: python-support (>= 0.6.4)
+Standards-Version: 3.7.3
+Homepage: http://pybrary.net/pyPdf/
+XS-Python-Version: all
+
+Package: python-pypdf
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+XB-Python-Version: ${python:Versions}
+Description: PDF toolkit implemented solely in Python
+ A PDF toolkit implemented solely in Python. It is capable of:
+ * extracting document information (title, author, ...),
+ * splitting documents page by page,
+ * merging documents page by page,
+ * cropping pages,
+ * merging multiple pages into a single page,
+ * encrypting and decrypting PDF files.
+ By being Pure-Python, it should run on any Python platform without any
+ dependencies on external libraries. It can also work entirely on StringIO
+ objects rather than file streams, allowing for PDF manipulation in memory. It
+ is therefore a useful tool for websites that manage or manipulate PDFs.
Added: packages/python-pypdf/trunk/debian/copyright
===================================================================
--- packages/python-pypdf/trunk/debian/copyright (rev 0)
+++ packages/python-pypdf/trunk/debian/copyright 2008-04-30 15:00:59 UTC (rev 5199)
@@ -0,0 +1,37 @@
+This package was debianized by Luciano Bello <luciano at debian.org> on
+Mon, 28 Apr 2008 18:50:19 -0300.
+
+It was downloaded from http://pybrary.net/pyPdf/
+
+Upstream Author:
+
+ Ashish Kulkarni <kulkarni.ashish at gmail.com>
+
+Copyright:
+
+ Copyright (c) 2006, Mathieu Fenniak
+ Copyright (c) 2007, Ashish Kulkarni
+
+License:
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted under the terms of the BSD License.
+
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ SUCH DAMAGE.
+
+On Debian systems, the complete text of the BSD License can be
+found in `/usr/share/common-licenses/BSD'.
+
+
+The Debian packaging is (C) 2008, Luciano Bello <luciano at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/python-pypdf/trunk/debian/rules
===================================================================
--- packages/python-pypdf/trunk/debian/rules (rev 0)
+++ packages/python-pypdf/trunk/debian/rules 2008-04-30 15:00:59 UTC (rev 5199)
@@ -0,0 +1,50 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERS=$(shell pyversions -r)
+
+build:
+
+clean:
+ dh_testdir
+
+ # Add here commands to clean up after the build process.
+ for python in $(PYVERS); do \
+ $$python setup.py clean; \
+ done
+
+ rm -f build-stamp
+ rm -f pyPdf/*.pyc pyPdf/*.pyo
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+
+ for python in $(PYVERS); do \
+ $$python setup.py install --root=debian/python-pypdf; \
+ done
+
+# Build architecture-dependent files here.
+binary-arch:
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs README
+ dh_pysupport
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/python-pypdf/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+
More information about the Python-modules-commits
mailing list