Author: nacho
Date: 2007-07-12 11:23:09 +0000 (Thu, 12 Jul 2007)
New Revision: 3367

Added:
   packages/trunk/rabbyt/
   packages/trunk/rabbyt/debian/
   packages/trunk/rabbyt/debian/changelog
   packages/trunk/rabbyt/debian/compat
   packages/trunk/rabbyt/debian/control
   packages/trunk/rabbyt/debian/copyright
   packages/trunk/rabbyt/debian/docs
   packages/trunk/rabbyt/debian/rules
Log:
injecting rabbyt

Added: packages/trunk/rabbyt/debian/changelog
===================================================================
--- packages/trunk/rabbyt/debian/changelog                              (rev 0)
+++ packages/trunk/rabbyt/debian/changelog      2007-07-12 11:23:09 UTC (rev 
3367)
@@ -0,0 +1,6 @@
+rabbyt (0.0.2-1) unstable; urgency=low
+
+  * Initial release (Closes: #432747)
+
+ -- Miriam Ruiz <[EMAIL PROTECTED]>  Wed, 11 Jul 2007 10:49:44 +0000
+

Added: packages/trunk/rabbyt/debian/compat
===================================================================
--- packages/trunk/rabbyt/debian/compat                         (rev 0)
+++ packages/trunk/rabbyt/debian/compat 2007-07-12 11:23:09 UTC (rev 3367)
@@ -0,0 +1 @@
+5

Added: packages/trunk/rabbyt/debian/control
===================================================================
--- packages/trunk/rabbyt/debian/control                                (rev 0)
+++ packages/trunk/rabbyt/debian/control        2007-07-12 11:23:09 UTC (rev 
3367)
@@ -0,0 +1,20 @@
+Source: rabbyt
+Section: python
+Priority: extra
+Maintainer: Debian Games Team <[EMAIL PROTECTED]>
+Uploaders: Miriam Ruiz <[EMAIL PROTECTED]>, Nacho Barrientos Arias <[EMAIL 
PROTECTED]>
+Build-Depends: debhelper (>= 5),
+ python-all-dev, python-support (>= 0.6), python-setuptools, python-pyrex,
+ libgl1-mesa-dev | xlibmesa-gl-dev, libglu1-mesa-dev | libglu1-xorg-dev
+Standards-Version: 3.7.2
+
+Package: python-rabbyt
+Architecture: any
+Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
+Description: sprite library for Python with game development in mind
+ Rabbyt is a sprite library for Python. It has two goals:
+ - To be fast, without sacrificing ease of use.
+ - To be easy to use, without sacrificing speed.
+ .
+ Rabbyt makes it very easy to create lots of sprites very fast that run very
+ fast with little code.

Added: packages/trunk/rabbyt/debian/copyright
===================================================================
--- packages/trunk/rabbyt/debian/copyright                              (rev 0)
+++ packages/trunk/rabbyt/debian/copyright      2007-07-12 11:23:09 UTC (rev 
3367)
@@ -0,0 +1,30 @@
+This package was debianized by Miriam Ruiz <[EMAIL PROTECTED]> on
+Wed, 11 Jul 2007 10:49:44 +0000.
+
+It was downloaded from http://cheeseshop.python.org/pypi/Rabbyt/0.0.2
+
+Upstream Author: Matthew Marshall <[EMAIL PROTECTED]>
+
+Copyright (C) 2007  Matthew Marshall
+
+License:
+
+    This package 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 of the License, or (at your option) any later version.
+
+    This package 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 package; 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 is (C) 2007, Miriam Ruiz <[EMAIL PROTECTED]> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.

Added: packages/trunk/rabbyt/debian/docs
===================================================================
--- packages/trunk/rabbyt/debian/docs                           (rev 0)
+++ packages/trunk/rabbyt/debian/docs   2007-07-12 11:23:09 UTC (rev 3367)
@@ -0,0 +1 @@
+README

Added: packages/trunk/rabbyt/debian/rules
===================================================================
--- packages/trunk/rabbyt/debian/rules                          (rev 0)
+++ packages/trunk/rabbyt/debian/rules  2007-07-12 11:23:09 UTC (rev 3367)
@@ -0,0 +1,57 @@
+#!/usr/bin/make -f
+
+PYVERS=$(shell pyversions -vs)
+
+configure: configure-stamp
+configure-stamp:
+       dh_testdir
+       touch $@
+
+build: configure-stamp $(PYVERS:%=build-python%)
+
+build-python%:
+       dh_testdir
+       python$* setup.py build
+       touch $@
+
+clean: 
+       dh_testdir
+       dh_testroot
+       python$* setup.py clean
+       find $(CURDIR) -regex ".+.pyc" | xargs rm -rf
+       rm -f $(CURDIR)/rabbyt/*.c $(CURDIR)/Rabbyt.egg-info/SOURCES.txt
+       rm -f build-stamp configure-stamp build-python2.* install-python2.*
+       rm -rf build
+       dh_clean 
+
+install: build $(PYVERS:%=install-python%)
+
+install-python%:
+       dh_testdir
+       dh_testroot
+       python$* setup.py install \
+               --no-compile \
+               --root=$(CURDIR)/debian/python-rabbyt \
+               --single-version-externally-managed;
+       touch $@
+
+binary-indep: build install
+
+binary-arch: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs
+       dh_installdocs
+       dh_installexamples
+       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 configure


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


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

Reply via email to