[Python-modules-commits] r15310 - in packages/python-pgmagick/trunk (14 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Thu Jan 13 00:55:18 UTC 2011


    Date: Thursday, January 13, 2011 @ 00:55:14
  Author: takaki
Revision: 15310

[svn-inject] Applying Debian modifications (0.3.0-1) to trunk

Added:
  packages/python-pgmagick/trunk/debian/
  packages/python-pgmagick/trunk/debian/changelog
  packages/python-pgmagick/trunk/debian/compat
  packages/python-pgmagick/trunk/debian/control
  packages/python-pgmagick/trunk/debian/copyright
  packages/python-pgmagick/trunk/debian/docs
  packages/python-pgmagick/trunk/debian/patches/
  packages/python-pgmagick/trunk/debian/patches/00_fix_makefile
  packages/python-pgmagick/trunk/debian/patches/debian-changes-0.3.0-1
  packages/python-pgmagick/trunk/debian/patches/series
  packages/python-pgmagick/trunk/debian/rules
  packages/python-pgmagick/trunk/debian/source/
  packages/python-pgmagick/trunk/debian/source/format
  packages/python-pgmagick/trunk/debian/watch


Property changes on: packages/python-pgmagick/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-pgmagick/trunk/debian/changelog
===================================================================
--- packages/python-pgmagick/trunk/debian/changelog	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/changelog	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,5 @@
+python-pgmagick (0.3.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #601047)
+
+ -- TANIGUCHI Takaki <takaki at debian.org>  Mon, 15 Nov 2010 21:27:13 +0900

Added: packages/python-pgmagick/trunk/debian/compat
===================================================================
--- packages/python-pgmagick/trunk/debian/compat	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/compat	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1 @@
+7

Added: packages/python-pgmagick/trunk/debian/control
===================================================================
--- packages/python-pgmagick/trunk/debian/control	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/control	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,21 @@
+Source: python-pgmagick
+Section: python
+Priority: extra
+Maintainer: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends: debhelper (>= 7.0.50~),
+	python-setuptools,
+	python-all-dev,
+	libgraphicsmagick++1-dev,
+	libboost-python-dev
+Standards-Version: 3.9.1
+Homepage: http://bitbucket.org/hhatto/pgmagick
+#Vcs-Git: git://git.debian.org/collab-maint/python-pgmagick.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/python-pgmagick.git;a=summary
+
+Package: python-pgmagick
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Description: Yet Another Python wrapper for GraphicsMagick
+ pgmagick is a yet another boost.python based Python wrapper for
+ GraphicsMagick. 

Added: packages/python-pgmagick/trunk/debian/copyright
===================================================================
--- packages/python-pgmagick/trunk/debian/copyright	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/copyright	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,42 @@
+This work was packaged for Debian by:
+
+    TANIGUCHI Takaki <takaki at debian.org> on Mon, 15 Nov 2010 21:27:13 +0900
+
+It was downloaded from:
+
+    http://bitbucket.org/hhatto/pgmagick
+
+Upstream Author(s):
+
+    Hideo Hattori <hhatto jp at gmail com>
+
+Copyright:
+
+    Copyright (c) 2010 Hideo Hattori
+
+License:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+The Debian packaging is:
+
+    Copyright (C) 2010 TANIGUCHI Takaki <takaki at debian.org>
+
+and is licensed under the GPL version 3,
+see "/usr/share/common-licenses/GPL-3".

Added: packages/python-pgmagick/trunk/debian/docs
===================================================================
--- packages/python-pgmagick/trunk/debian/docs	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/docs	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1 @@
+README.rst

Added: packages/python-pgmagick/trunk/debian/patches/00_fix_makefile
===================================================================
--- packages/python-pgmagick/trunk/debian/patches/00_fix_makefile	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/patches/00_fix_makefile	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,23 @@
+Index: python-pgmagick-0.3.0/Makefile
+===================================================================
+--- python-pgmagick-0.3.0.orig/Makefile	2010-11-15 21:36:55.139529948 +0900
++++ python-pgmagick-0.3.0/Makefile	2010-11-15 21:37:01.275529925 +0900
+@@ -35,5 +35,5 @@
+ clean:
+ 	rm -rf pgmagick.* build dist
+ 	cd $(SRC_DIR) && make clean
+-	rm pgmagick/_pgmagick.so
+-	rm pgmagick/*.pyc
++	rm -f pgmagick/_pgmagick.so
++	rm -f pgmagick/*.pyc
+Index: python-pgmagick-0.3.0/src/Makefile
+===================================================================
+--- python-pgmagick-0.3.0.orig/src/Makefile	2010-11-15 21:36:42.739532108 +0900
++++ python-pgmagick-0.3.0/src/Makefile	2010-11-15 21:36:47.115532260 +0900
+@@ -116,5 +116,5 @@
+ 	g++ $(FLAGS) $(INCS) -o $@ -c $<
+ 
+ clean:
+-	rm $(OBJS) $(SO)
++	rm -f $(OBJS) $(SO)
+ 

Added: packages/python-pgmagick/trunk/debian/patches/debian-changes-0.3.0-1
===================================================================
--- packages/python-pgmagick/trunk/debian/patches/debian-changes-0.3.0-1	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/patches/debian-changes-0.3.0-1	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,36 @@
+Description: Upstream changes introduced in version 0.3.0-1
+ This patch has been created by dpkg-source during the package build.
+ Here's the last changelog entry, hopefully it gives details on why
+ those changes were made:
+ .
+ python-pgmagick (0.3.0-1) unstable; urgency=low
+ .
+   * Initial release (Closes: #601047)
+ .
+ The person named in the Author field signed this changelog entry.
+Author: TANIGUCHI Takaki <takaki at debian.org>
+Bug-Debian: http://bugs.debian.org/601047
+
+---
+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>
+
+--- python-pgmagick-0.3.0.orig/pgmagick.egg-info/SOURCES.txt
++++ python-pgmagick-0.3.0/pgmagick.egg-info/SOURCES.txt
+@@ -2,6 +2,7 @@ LICENSE
+ MANIFEST.in
+ Makefile
+ README.rst
++setup.cfg
+ setup.py
+ ./src/_Blob.cpp
+ ./src/_ChannelType.cpp

Added: packages/python-pgmagick/trunk/debian/patches/series
===================================================================
--- packages/python-pgmagick/trunk/debian/patches/series	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/patches/series	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,2 @@
+00_fix_makefile
+debian-changes-0.3.0-1

Added: packages/python-pgmagick/trunk/debian/rules
===================================================================
--- packages/python-pgmagick/trunk/debian/rules	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/rules	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# export DH_VERBOSE=1
+
+%:
+	dh $@ --buildsystem=python_distutils


Property changes on: packages/python-pgmagick/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-pgmagick/trunk/debian/source/format
===================================================================
--- packages/python-pgmagick/trunk/debian/source/format	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/source/format	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-pgmagick/trunk/debian/watch
===================================================================
--- packages/python-pgmagick/trunk/debian/watch	                        (rev 0)
+++ packages/python-pgmagick/trunk/debian/watch	2011-01-13 00:55:14 UTC (rev 15310)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/p/pgmagick/pgmagick-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list