[Python-modules-commits] r3845 - in packages/pyzenity/trunk (9 files)

rainct-guest at users.alioth.debian.org rainct-guest at users.alioth.debian.org
Wed Dec 5 17:41:59 UTC 2007


    Date: Wednesday, December 5, 2007 @ 17:41:55
  Author: rainct-guest
Revision: 3845

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/pyzenity/trunk/debian/
  packages/pyzenity/trunk/debian/changelog
  packages/pyzenity/trunk/debian/compat
  packages/pyzenity/trunk/debian/control
  packages/pyzenity/trunk/debian/copyright
  packages/pyzenity/trunk/debian/patches/
  packages/pyzenity/trunk/debian/patches/fix_setup_py.patch
  packages/pyzenity/trunk/debian/rules
  packages/pyzenity/trunk/debian/watch


Property changes on: packages/pyzenity/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/pyzenity/trunk/debian/changelog
===================================================================
--- packages/pyzenity/trunk/debian/changelog	                        (rev 0)
+++ packages/pyzenity/trunk/debian/changelog	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1,9 @@
+pyzenity (0.1.4-1) unstable; urgency=low
+
+  * Initial release (Closes: #452997)
+  * patches/fix_setup_py.patch:
+     - set correct version number and license (MIT) in setup.py file
+       (release notes on http://www.brianramos.com/?page_id=4 confirm
+       that PyZenity is released under the MIT License, and not BSD)
+
+ -- Siegfried-Angel Gevatter Pujals (RainCT) <sgevatter at ubuntu.cat>  Mon, 26 Nov 2007 17:19:58 +0100

Added: packages/pyzenity/trunk/debian/compat
===================================================================
--- packages/pyzenity/trunk/debian/compat	                        (rev 0)
+++ packages/pyzenity/trunk/debian/compat	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1 @@
+5

Added: packages/pyzenity/trunk/debian/control
===================================================================
--- packages/pyzenity/trunk/debian/control	                        (rev 0)
+++ packages/pyzenity/trunk/debian/control	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1,23 @@
+Source: pyzenity
+Section: python
+Priority: optional
+Maintainer: Siegfried-Angel Gevatter Pujals (RainCT) <sgevatter at ubuntu.cat>
+Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pyzenity/trunk
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pyzenity/?op=log
+Homepage: http://www.brianramos.com/?page_id=4
+Build-Depends: cdbs (>= 0.4.49), debhelper (>= 5.0.38), python-all-dev (>= 2.3.5-11)
+Build-Depends-Indep: python-central (>= 0.5.6)
+Standards-Version: 3.7.2
+XS-Python-Version: >= 2.4
+
+Package: python-pyzenity
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Python bindings for Zenity
+ PyZenity is an easy to use interface to Zenity for Python. Zenity
+ is normally called from scripts by invoking it with a multitude of
+ command line parameters that it uses to construct its interfaces.
+ This module hides the details of invoking the command and presents
+ simple API functions.

Added: packages/pyzenity/trunk/debian/copyright
===================================================================
--- packages/pyzenity/trunk/debian/copyright	                        (rev 0)
+++ packages/pyzenity/trunk/debian/copyright	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1,34 @@
+This package was debianized by Siegfried-Angel Gevatter Pujals (RainCT)
+<sgevatter at ubuntu.cat> on Mon, 26 Nov 2007 17:19:58 +0100.
+
+It was downloaded from http://www.brianramos.com/software/PyZenity
+
+Upstream Author: 
+
+    Brian Ramos <software at brianramos.com>
+
+
+License:
+
+    Copyright (C) 2005 Brian Ramos
+    
+    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 (C) 2007, Siegfried-Angel Gevatter Pujals (RainCT)
+<sgevatter at ubuntu.cat> and is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/pyzenity/trunk/debian/patches/fix_setup_py.patch
===================================================================
--- packages/pyzenity/trunk/debian/patches/fix_setup_py.patch	                        (rev 0)
+++ packages/pyzenity/trunk/debian/patches/fix_setup_py.patch	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1,23 @@
+# Fix upstream's setup.py file
+# - Version: Set version to 0.1.4
+# - License: Set it to the right license, the MIT License, as indicated
+#   in PyZenity.py and PKG-INFO, and the upstream website verifies:
+#   «Version 0.1.3 - The PKG-INFO file says PyZenity is under the
+#   BSD License but it’s actually under the MIT License.»
+
+diff -Nur pyzenity-0.1.4/setup.py pyzenity-0.1.4.new/setup.py
+--- pyzenity-0.1.4/setup.py	2007-08-29 01:16:52.000000000 +0200
++++ pyzenity-0.1.4.new/setup.py	2007-11-27 19:43:02.000000000 +0100
+@@ -1,10 +1,10 @@
+ from distutils.core import setup
+ 
+ setup(name='PyZenity',
+-      version='0.1.2',
++      version='0.1.4',
+       description='An easy to use frontend to Zenity',
+       author='Brian Ramos',
+       author_email='software at brianramos.com',
+       url='http://www.brianramos.com/PyZenity/',
+-      license='BSD',
++      license='MIT',
+       py_modules=['PyZenity'])

Added: packages/pyzenity/trunk/debian/rules
===================================================================
--- packages/pyzenity/trunk/debian/rules	                        (rev 0)
+++ packages/pyzenity/trunk/debian/rules	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+DEB_PYTHON_SYSTEM=pycentral
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+clean::
+	rm -f $(CURDIR)/debian/pycompat


Property changes on: packages/pyzenity/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/pyzenity/trunk/debian/watch
===================================================================
--- packages/pyzenity/trunk/debian/watch	                        (rev 0)
+++ packages/pyzenity/trunk/debian/watch	2007-12-05 17:41:55 UTC (rev 3845)
@@ -0,0 +1,2 @@
+version=3
+http://www.brianramos.com/software/PyZenity/PyZenity-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list