[Python-modules-commits] r21501 - in packages/jpylyzer/trunk/debian/patches (2 files)

malat at users.alioth.debian.org malat at users.alioth.debian.org
Wed May 2 20:17:06 UTC 2012


    Date: Wednesday, May 2, 2012 @ 20:17:04
  Author: malat
Revision: 21501

Add a setup.py

Added:
  packages/jpylyzer/trunk/debian/patches/addsetup.patch
Modified:
  packages/jpylyzer/trunk/debian/patches/series

Added: packages/jpylyzer/trunk/debian/patches/addsetup.patch
===================================================================
--- packages/jpylyzer/trunk/debian/patches/addsetup.patch	                        (rev 0)
+++ packages/jpylyzer/trunk/debian/patches/addsetup.patch	2012-05-02 20:17:04 UTC (rev 21501)
@@ -0,0 +1,57 @@
+Description: <short summary of the patch>
+ TODO: Put a short summary on the line above and replace this paragraph
+ with a longer explanation of this change. Complete the meta-information
+ with other relevant fields (see below for details). To make it easier, the
+ information below has been extracted from the changelog. Adjust it or drop
+ it.
+ .
+ jpylyzer (1.5.0-1) UNRELEASED; urgency=low
+ .
+   * Initial release. (Closes: #664747)
+Author: Mathieu Malaterre <malat at debian.org>
+Bug-Debian: http://bugs.debian.org/664747
+
+---
+The information above should follow the Patch Tagging Guidelines, please
+checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
+are templates for supplementary fields that you might want to add:
+
+Origin: <vendor|upstream|other>, <url of original patch>
+Bug: <url in upstream bugtracker>
+Bug-Debian: http://bugs.debian.org/<bugnumber>
+Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
+Forwarded: <no|not-needed|url proving that it has been forwarded>
+Reviewed-By: <name and email of someone who approved the patch>
+Last-Update: <YYYY-MM-DD>
+
+Index: jpylyzer-1.5.0/setup.py
+===================================================================
+--- /dev/null	1970-01-01 00:00:00.000000000 +0000
++++ jpylyzer-1.5.0/setup.py	2012-05-02 22:12:09.231649945 +0200
+@@ -0,0 +1,26 @@
++from distutils.core import setup
++
++setup(
++    name = "jpylyzer",
++    packages = ["jpylyzer"],
++    version = "1.5.0",
++    license = "LGPL",
++    platforms = ['POSIX', 'Windows'],
++    description = "JP2 validator and properties extractor",
++    author = "Johan van der Knijff",
++    author_email = "johan.vanderknijff at kb.nl",
++    url = "https://github.com/openplanets/jpylyzer",
++    download_url = "http://chardet.feedparser.org/download/python2-chardet-2.0.1.tgz",
++    keywords = ["encoding", "i18n", "xml"],
++    long_description = """\
++JP2 (JPEG 2000 Part 1) validator and properties extractor
++-------------------------------------
++
++Validator and feature extractor for JP2 (JPEG 2000 Part 1 - ISO/IEC 15444‐1)
++images. Jpylyzer was specifically created to check that a JP2 file really
++conforms to the format's specifications. Additionally jpylyzer is able to
++extract the technical characteristics of each image.
++
++Requires Python 2.7 or later
++"""
++    )

Modified: packages/jpylyzer/trunk/debian/patches/series
===================================================================
--- packages/jpylyzer/trunk/debian/patches/series	2012-05-02 20:10:37 UTC (rev 21500)
+++ packages/jpylyzer/trunk/debian/patches/series	2012-05-02 20:17:04 UTC (rev 21501)
@@ -0,0 +1 @@
+addsetup.patch




More information about the Python-modules-commits mailing list