[Python-modules-commits] r4531 - in packages/pygpu/trunk (8 files)
morph-guest at users.alioth.debian.org
morph-guest at users.alioth.debian.org
Wed Feb 13 20:07:10 UTC 2008
Date: Wednesday, February 13, 2008 @ 20:07:08
Author: morph-guest
Revision: 4531
[svn-inject] Applying Debian modifications to trunk
Added:
packages/pygpu/trunk/debian/
packages/pygpu/trunk/debian/changelog
packages/pygpu/trunk/debian/compat
packages/pygpu/trunk/debian/control
packages/pygpu/trunk/debian/copyright
packages/pygpu/trunk/debian/rules
packages/pygpu/trunk/debian/setup.py
packages/pygpu/trunk/debian/watch
Property changes on: packages/pygpu/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/pygpu/trunk/debian/changelog
===================================================================
--- packages/pygpu/trunk/debian/changelog (rev 0)
+++ packages/pygpu/trunk/debian/changelog 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1,5 @@
+pygpu (0.2.0a-629-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #446687)
+
+ -- Sandro Tosi <matrixhasu at gmail.com> Tue, 20 Nov 2007 00:16:37 +0100
Added: packages/pygpu/trunk/debian/compat
===================================================================
--- packages/pygpu/trunk/debian/compat (rev 0)
+++ packages/pygpu/trunk/debian/compat 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1 @@
+5
Added: packages/pygpu/trunk/debian/control
===================================================================
--- packages/pygpu/trunk/debian/control (rev 0)
+++ packages/pygpu/trunk/debian/control 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1,26 @@
+Source: pygpu
+Section: python
+Priority: optional
+Maintainer: Sandro Tosi <matrixhasu at gmail.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5), python-all
+Build-Depends-Indep: python-support (>= 0.4)
+Standards-Version: 3.7.3
+Homepage: http://www.cs.lth.se/home/Calle_Lejdfors/pygpu/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pygpu/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/pygpu/trunk/?op=log
+XS-Python-Version: all
+
+Package: python-pygpu
+Architecture: all
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-numpy, python-pyglew, python-pygame, python-imaging
+Suggests: python-cg
+XB-Python-Version: ${python:Versions}
+Provides: ${python:Provides}
+Description: embedded language for programming GPU using Python
+ PyGPU is a compiler that lets you write image processing programs in
+ Python that execute on the graphics processing unit (GPU) present in
+ modern graphics cards. This enables image processing algorithms to
+ take advantage of the performance of the GPU. In some applications,
+ performance increases approach an order of magnitude, compared to
+ CPUs.
Added: packages/pygpu/trunk/debian/copyright
===================================================================
--- packages/pygpu/trunk/debian/copyright (rev 0)
+++ packages/pygpu/trunk/debian/copyright 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1,35 @@
+This package was debianized by Sandro Tosi <matrixhasu at gmail.com> on
+Tue, 20 Nov 2007 00:02:46 +0100.
+
+It was downloaded from http://www.cs.lth.se/home/Calle_Lejdfors/pygpu/
+
+Upstream Author:
+
+ Calle Lejdfors <calle.lejdfors at cs.lth.se>
+
+Copyright:
+
+ Copyright (C) 2006 Calle Lejdfors <calle.lejdfors at cs.lth.se>
+
+License:
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ This program 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
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ 02110-1301, USA.
+
+In a Debian system the complete text of the GNU General Public License
+can be found in the file `/usr/share/common-licenses/GPL-2'.
+
+The Debian packaging is (C) 2007, Sandro Tosi <matrixhasu at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/pygpu/trunk/debian/rules
===================================================================
--- packages/pygpu/trunk/debian/rules (rev 0)
+++ packages/pygpu/trunk/debian/rules 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1,56 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build:
+ dh_testdir
+
+ python debian/setup.py build
+
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ [ ! -d build ] || rm -rf build
+
+ python debian/setup.py clean
+
+ find . -name '*\.py[co]' -delete
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+
+ # Add here commands to install the package into debian/python-pygpu
+ python debian/setup.py install --root=$(CURDIR)/debian/python-pygpu
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_installexamples main.py pygpu_test.py
+ dh_pysupport
+ dh_link
+ dh_compress
+ dh_fixperms
+ 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/pygpu/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: packages/pygpu/trunk/debian/setup.py
===================================================================
--- packages/pygpu/trunk/debian/setup.py (rev 0)
+++ packages/pygpu/trunk/debian/setup.py 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1,13 @@
+#! /usr/bin/env python
+
+from distutils.core import setup
+
+setup(
+ name = "pygpu",
+ description = "embedded language for programming GPU using Python",
+ author = "Calle Lejdfors",
+ author_email = "calle.lejdfors at cs.lth.se",
+ url = "http://www.cs.lth.se/home/Calle_Lejdfors/pygpu/",
+ version = "0.2.0a-629",
+ packages = ["pygpu", "pygpu.backends", "pygpu.compiler", "pygpu.GPU", "pygpu.utils"]
+ )
Added: packages/pygpu/trunk/debian/watch
===================================================================
--- packages/pygpu/trunk/debian/watch (rev 0)
+++ packages/pygpu/trunk/debian/watch 2008-02-13 20:07:08 UTC (rev 4531)
@@ -0,0 +1,4 @@
+# Compulsory line, this is a version 3 file
+version=3
+
+http://www.cs.lth.se/home/Calle_Lejdfors/pygpu/ PyGPU-(.*)\.zip
More information about the Python-modules-commits
mailing list