Author: bddebian-guest
Date: 2007-11-06 15:42:16 +0000 (Tue, 06 Nov 2007)
New Revision: 4576

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


Added: packages/trunk/libtpproto-py/debian/changelog
===================================================================
--- packages/trunk/libtpproto-py/debian/changelog                               
(rev 0)
+++ packages/trunk/libtpproto-py/debian/changelog       2007-11-06 15:42:16 UTC 
(rev 4576)
@@ -0,0 +1,8 @@
+libtpproto-py (0.2.2-1) unstable; urgency=low
+
+  [ Barry deFreese ]
+  * Initial release
+  * Work in progress..
+
+ -- Barry deFreese <[EMAIL PROTECTED]>  Mon, 05 Nov 2007 21:33:27 -0500
+

Added: packages/trunk/libtpproto-py/debian/compat
===================================================================
--- packages/trunk/libtpproto-py/debian/compat                          (rev 0)
+++ packages/trunk/libtpproto-py/debian/compat  2007-11-06 15:42:16 UTC (rev 
4576)
@@ -0,0 +1 @@
+5

Added: packages/trunk/libtpproto-py/debian/control
===================================================================
--- packages/trunk/libtpproto-py/debian/control                         (rev 0)
+++ packages/trunk/libtpproto-py/debian/control 2007-11-06 15:42:16 UTC (rev 
4576)
@@ -0,0 +1,16 @@
+Source: libtpproto-py
+Section: python
+Priority: extra
+Maintainer: Debian Games Team <[EMAIL PROTECTED]>
+Uploaders: Barry deFreese <[EMAIL PROTECTED]>
+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-netlib
+Architecture: any
+Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: Thousand Parsec python protocol library
+ A library of Python code for both Servers and Clients to support 
+ the Thousand Parsec protocol.

Added: packages/trunk/libtpproto-py/debian/copyright
===================================================================
--- packages/trunk/libtpproto-py/debian/copyright                               
(rev 0)
+++ packages/trunk/libtpproto-py/debian/copyright       2007-11-06 15:42:16 UTC 
(rev 4576)
@@ -0,0 +1,34 @@
+This package was debianized by Barry deFreese <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]>
+
+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/libtpproto-py/debian/docs
===================================================================
--- packages/trunk/libtpproto-py/debian/docs                            (rev 0)
+++ packages/trunk/libtpproto-py/debian/docs    2007-11-06 15:42:16 UTC (rev 
4576)
@@ -0,0 +1 @@
+README

Added: packages/trunk/libtpproto-py/debian/pycompat
===================================================================
--- packages/trunk/libtpproto-py/debian/pycompat                                
(rev 0)
+++ packages/trunk/libtpproto-py/debian/pycompat        2007-11-06 15:42:16 UTC 
(rev 4576)
@@ -0,0 +1 @@
+2

Added: packages/trunk/libtpproto-py/debian/rules
===================================================================
--- packages/trunk/libtpproto-py/debian/rules                           (rev 0)
+++ packages/trunk/libtpproto-py/debian/rules   2007-11-06 15:42:16 UTC (rev 
4576)
@@ -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-netlib \
+               --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/libtpproto-py/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

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


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to