[Python-modules-commits] r11183 - in packages/pyfiglet/trunk (11 files)

stefanor-guest at users.alioth.debian.org stefanor-guest at users.alioth.debian.org
Sat Jan 16 23:26:06 UTC 2010


    Date: Saturday, January 16, 2010 @ 23:26:03
  Author: stefanor-guest
Revision: 11183

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/pyfiglet/trunk/debian/
  packages/pyfiglet/trunk/debian/changelog
  packages/pyfiglet/trunk/debian/compat
  packages/pyfiglet/trunk/debian/control
  packages/pyfiglet/trunk/debian/copyright
  packages/pyfiglet/trunk/debian/docs
  packages/pyfiglet/trunk/debian/patches/
  packages/pyfiglet/trunk/debian/patches/series
  packages/pyfiglet/trunk/debian/patches/setup.py.diff
  packages/pyfiglet/trunk/debian/rules
  packages/pyfiglet/trunk/debian/watch


Property changes on: packages/pyfiglet/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/pyfiglet/trunk/debian/changelog
===================================================================
--- packages/pyfiglet/trunk/debian/changelog	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/changelog	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1,5 @@
+pyfiglet (0.4+dfsg-1) unstable; urgency=low
+
+  * Initial release
+
+ -- Stefano Rivera <stefano at rivera.za.net>  Sat, 02 Jan 2010 22:11:30 +0200

Added: packages/pyfiglet/trunk/debian/compat
===================================================================
--- packages/pyfiglet/trunk/debian/compat	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/compat	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1 @@
+7

Added: packages/pyfiglet/trunk/debian/control
===================================================================
--- packages/pyfiglet/trunk/debian/control	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/control	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1,16 @@
+Source: pyfiglet
+Section: python
+Priority: extra
+Maintainer: Stefano Rivera <stefano at rivera.za.net>
+Build-Depends: debhelper (>= 7), python-support (>= 0.90), quilt (>= 0.46-7~)
+Standards-Version: 3.8.3
+Homepage: http://sourceforge.net/projects/pyfiglet/
+
+Package: python-pyfiglet
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: A Python port of the FIGlet specification
+ FIGLet is a program that creates large characters out of ordinary screen
+ characters. It takes ASCII text and renders it in ASCII art fonts.
+ It can be used on the commandline or as an Object Oriented driver
+ library in your own programs.

Added: packages/pyfiglet/trunk/debian/copyright
===================================================================
--- packages/pyfiglet/trunk/debian/copyright	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/copyright	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1,23 @@
+This work was packaged for Debian by:
+
+    Stefano Rivera <stefano at rivera.za.net> on Sat, 02 Jan 2010 21:00:44 +0200
+
+It was downloaded from <http://sourceforge.net/projects/pyfiglet/>
+
+Upstream Author(s):
+
+    Christopher Jones <cjones at insub.org>
+
+Copyright:
+
+    Copyright (C) 2007 Christopher Jones
+
+and is licensed under the GPL version 2, 
+see `/usr/share/common-licenses/GPL-2'.
+
+The Debian packaging is:
+
+    Copyright (C) 2010 Stefano Rivera <stefano at rivera.za.net>
+
+and is licensed under the GPL version 2, 
+see `/usr/share/common-licenses/GPL-2'.

Added: packages/pyfiglet/trunk/debian/docs
===================================================================
--- packages/pyfiglet/trunk/debian/docs	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/docs	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1 @@
+README

Added: packages/pyfiglet/trunk/debian/patches/series
===================================================================
--- packages/pyfiglet/trunk/debian/patches/series	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/patches/series	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1 @@
+setup.py.diff

Added: packages/pyfiglet/trunk/debian/patches/setup.py.diff
===================================================================
--- packages/pyfiglet/trunk/debian/patches/setup.py.diff	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/patches/setup.py.diff	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1,19 @@
+There is no setup.py in upstream. This is a very simple one, only
+really suitable for the deb.
+Index: python-pyfiglet-0.4/setup.py
+===================================================================
+--- /dev/null   1970-01-01 00:00:00.000000000 +0000
++++ python-pyfiglet-0.4/setup.py        2010-01-02 23:05:13.000000000 +0200
+@@ -0,0 +1,12 @@
++#!/usr/bin/env python
++
++from distutils.core import setup
++
++setup(name='pyfiglet',
++      version='0.4',
++      description='Pure-python FIGlet implementation',
++      author='Christopher Jones',
++      author_email='cjones at insub.org',
++      url='http://sourceforge.net/projects/pyfiglet/',
++      py_modules=['pyfiglet'],
++)

Added: packages/pyfiglet/trunk/debian/rules
===================================================================
--- packages/pyfiglet/trunk/debian/rules	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/rules	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
+
+get-orig-source:
+	VER=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^+]+).*,\1,p');\
+	uscan --force-download --rename --download-version=$$VER --destdir=.;\
+	tar -x --exclude=fonts.zip --exclude=figfont.txt -f pyfiglet_$$VER.orig.tar.bz2;\
+	tar -czf pyfiglet_$$VER+dfsg.orig.tar.gz pyfiglet-$$VER;\
+	rm -f pyfiglet_$$VER.orig.tar.bz2;\
+	rm -rf pyfiglet-$$VER


Property changes on: packages/pyfiglet/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/pyfiglet/trunk/debian/watch
===================================================================
--- packages/pyfiglet/trunk/debian/watch	                        (rev 0)
+++ packages/pyfiglet/trunk/debian/watch	2010-01-16 23:26:03 UTC (rev 11183)
@@ -0,0 +1,3 @@
+version=3
+
+http://sf.net/pyfiglet/pyfiglet-(\d.*)\.tar\.bz2




More information about the Python-modules-commits mailing list