r4580 - in packages/trunk: . libtpclient-py libtpclient-py/debian

Barry deFreese bddebian-guest at alioth.debian.org
Tue Nov 6 16:57:43 UTC 2007


Author: bddebian-guest
Date: 2007-11-06 16:57:43 +0000 (Tue, 06 Nov 2007)
New Revision: 4580

Added:
   packages/trunk/libtpclient-py/
   packages/trunk/libtpclient-py/debian/
   packages/trunk/libtpclient-py/debian/changelog
   packages/trunk/libtpclient-py/debian/compat
   packages/trunk/libtpclient-py/debian/control
   packages/trunk/libtpclient-py/debian/copyright
   packages/trunk/libtpclient-py/debian/docs
   packages/trunk/libtpclient-py/debian/pycompat
   packages/trunk/libtpclient-py/debian/rules
   packages/trunk/libtpclient-py/debian/watch
Log:
New package: libtpclient-py - Python client library for Thousand Parsec
* Initial release
* Work in progress..


Added: packages/trunk/libtpclient-py/debian/changelog
===================================================================
--- packages/trunk/libtpclient-py/debian/changelog	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/changelog	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1,8 @@
+libtpclient-py (0.2.2-1) unstable; urgency=low
+
+  [ Barry deFreese ]
+  * Initial release
+  * Work in progress..
+
+ -- Barry deFreese <bddebian at comcast.net>  Mon, 05 Nov 2007 21:33:27 -0500
+

Added: packages/trunk/libtpclient-py/debian/compat
===================================================================
--- packages/trunk/libtpclient-py/debian/compat	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/compat	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1 @@
+5

Added: packages/trunk/libtpclient-py/debian/control
===================================================================
--- packages/trunk/libtpclient-py/debian/control	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/control	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1,15 @@
+Source: libtpclient-py
+Section: python
+Priority: extra
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Barry deFreese <bddebian at comcast.net>
+Build-Depends: debhelper (>= 5), python-all-dev, python-support (>= 0.6.4), python-setuptools (>= 0.6)
+XS-Python-Version: all
+Standards-Version: 3.7.2
+
+Package: python-tp-clientlib
+Architecture: any
+Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Thousand Parsec python client library
+ A library of Python code for Clients to support Thousand Parsec.

Added: packages/trunk/libtpclient-py/debian/copyright
===================================================================
--- packages/trunk/libtpclient-py/debian/copyright	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/copyright	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1,34 @@
+This package was debianized by Barry deFreese <bdefreese at unknown> on
+Mon, 05 Nov 2007 21:33:27 -0500.
+
+It was downloaded from http://downloads.sourceforge.net/thousandparsec/libtpclient-py-0.2.2.tar.bz2?modtime=1176994157&big_mirror=0
+
+Upstream Author(s): 
+
+    Tim Ansell <tim at thousandparsec.net>
+
+Copyright: 
+
+    <Copyright (C) FIXME>
+
+License:
+
+    This program is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+The Debian packaging and patches are (C) 2007, Debian Games Team 
+and are licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/trunk/libtpclient-py/debian/docs
===================================================================
--- packages/trunk/libtpclient-py/debian/docs	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/docs	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1 @@
+README

Added: packages/trunk/libtpclient-py/debian/pycompat
===================================================================
--- packages/trunk/libtpclient-py/debian/pycompat	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/pycompat	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1 @@
+2

Added: packages/trunk/libtpclient-py/debian/rules
===================================================================
--- packages/trunk/libtpclient-py/debian/rules	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/rules	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1,70 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYDEF=$(shell pyversions -d)
+PYVERS=$(shell pyversions -r)
+
+build: build-stamp
+build-stamp: 
+	dh_testdir
+
+	set -e; \
+	for PYTHON in $(PYVERS); do \
+		$$PYTHON setup.py build; \
+	done
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	rm -rf build-stamp
+
+	-find debian -name '*.pyc' | xargs rm -f
+	-find debian -name '*.pyo' | xargs rm -f
+
+	dh_clean 
+	rm -rf build
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	set -e; \
+	for PYTHON in $(PYVERS); do \
+		$$PYTHON ./setup.py install --root=debian/python-tp-clientlib \
+		--single-version-externally-managed ; \
+	done
+
+	-find debian -name '*.pyc' | xargs rm -f
+	-find debian -name '*.pyo' | xargs rm -f
+
+
+binary-indep: build install
+# We have nothing to do by default.
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_installexamples
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_pysupport
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: packages/trunk/libtpclient-py/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/trunk/libtpclient-py/debian/watch
===================================================================
--- packages/trunk/libtpclient-py/debian/watch	                        (rev 0)
+++ packages/trunk/libtpclient-py/debian/watch	2007-11-06 16:57:43 UTC (rev 4580)
@@ -0,0 +1,5 @@
+version=3
+
+http://sf.net/thousandparsec/libtpclient-py-([\d.]+)\.tar\.bz2
+
+




More information about the Pkg-games-commits mailing list