[pkg-freevo-commits] r159 - in packages: . kaa-display kaa-display/trunk kaa-display/trunk/debian
Andrea Mennucci
mennucc1 at alioth.debian.org
Wed May 27 12:05:56 UTC 2009
Author: mennucc1
Date: 2009-05-27 12:05:55 +0000 (Wed, 27 May 2009)
New Revision: 159
Added:
packages/kaa-display/
packages/kaa-display/branches/
packages/kaa-display/tags/
packages/kaa-display/trunk/
packages/kaa-display/trunk/debian/
packages/kaa-display/trunk/debian/changelog
packages/kaa-display/trunk/debian/compat
packages/kaa-display/trunk/debian/control
packages/kaa-display/trunk/debian/copyright
packages/kaa-display/trunk/debian/pycompat
packages/kaa-display/trunk/debian/rules
packages/kaa-display/trunk/debian/watch
Log:
First packaging of kaa.display
Property changes on: packages/kaa-display/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/kaa-display/trunk/debian/changelog
===================================================================
--- packages/kaa-display/trunk/debian/changelog (rev 0)
+++ packages/kaa-display/trunk/debian/changelog 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1,5 @@
+kaa-display (0.1.0-1) unstable; urgency=low
+
+ * First packaging
+
+ -- A Mennucc1 <mennucc1 at debian.org> Sat, 23 May 2009 18:27:33 +0200
Added: packages/kaa-display/trunk/debian/compat
===================================================================
--- packages/kaa-display/trunk/debian/compat (rev 0)
+++ packages/kaa-display/trunk/debian/compat 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1 @@
+5
Added: packages/kaa-display/trunk/debian/control
===================================================================
--- packages/kaa-display/trunk/debian/control (rev 0)
+++ packages/kaa-display/trunk/debian/control 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1,25 @@
+Source: kaa-display
+Section: python
+Priority: optional
+Maintainer: Freevo Debian Dream Team <pkg-freevo-maint at lists.alioth.debian.org>
+Uploaders: Jeremie Corbier <jeremie.corbier at resel.enst-bretagne.fr>, Georg W. Leonhardt <repo at geole.info>, A Mennucc1 <mennucc1 at debian.org>
+Build-Depends: cdbs (>= 0.4.42), debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-central (>= 0.5), python-kaa-base
+XS-Python-Version: >= 2.5
+Vcs-Svn: svn://svn.debian.org/svn/pkg-freevo/kaa-display
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-freevo/kaa-display
+Standards-Version: 3.8.0
+Homepage: http://freevo.org/kaa
+
+Package: python-kaa-display
+Architecture: any
+Depends: ${shlibs:Depends}, ${python:Depends}, python-kaa-base
+XB-Python-Version: ${python:Versions}
+Provides: ${python:Provides}
+Description: Python API providing low level support for various displays.
+ This module provides low level support for various displays, such as X11 or
+ framebuffer. It provides X11Display and X11Window classes for managing
+ X11 windows, with optional support for Imlib2 (render Imlib2 images
+ to X11 windows), Evas (both software and OpenGL canvases), and pygame
+ (render Imlib2 images to pygame surfaces).
+ .
+ The Kaa Media Repository is a set of Python modules related to media.
Added: packages/kaa-display/trunk/debian/copyright
===================================================================
--- packages/kaa-display/trunk/debian/copyright (rev 0)
+++ packages/kaa-display/trunk/debian/copyright 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1,25 @@
+This package was debianized by A. Mennucci, 27th Mar 2009
+
+It was downloaded from http://sourceforge.net/projects/freevo/
+
+Copyright:
+ Copyright (C) 2005-2009 Dirk Meyer, Jason Tackaberry
+
+ Please see the file AUTHORS for a complete list of authors.
+
+ This library is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License version
+ 2.1 as published by the Free Software Foundation.
+
+ This library 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 Street, Fifth Floor, Boston, MA
+ 02110-1301 USA
+
+The complete text of the GNU Lesser General Public License can be found in
+`/usr/share/common-licenses/LGPL'.
Added: packages/kaa-display/trunk/debian/pycompat
===================================================================
--- packages/kaa-display/trunk/debian/pycompat (rev 0)
+++ packages/kaa-display/trunk/debian/pycompat 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1 @@
+2
Added: packages/kaa-display/trunk/debian/rules
===================================================================
--- packages/kaa-display/trunk/debian/rules (rev 0)
+++ packages/kaa-display/trunk/debian/rules 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1,26 @@
+#!/usr/bin/make -f
+
+DEB_PYTHON_SYSTEM=pycentral
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
+DEB_INSTALL_DOCS_ALL =
+
+install/python-kaa-display::
+ : # Replace all '#!' calls to python with /usr/bin/python
+ : # and make them executable
+ for i in `find debian/python-kaa-display -type f`; do \
+ sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \
+ $$i > $$i.temp; \
+ if cmp --quiet $$i $$i.temp; then \
+ rm -f $$i.temp; \
+ else \
+ mv -f $$i.temp $$i; \
+ chmod 755 $$i; \
+ echo "fixed interpreter: $$i"; \
+ fi; \
+ done
+
+clean::
+ rm -f src/version.pyc
Property changes on: packages/kaa-display/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/kaa-display/trunk/debian/watch
===================================================================
--- packages/kaa-display/trunk/debian/watch (rev 0)
+++ packages/kaa-display/trunk/debian/watch 2009-05-27 12:05:55 UTC (rev 159)
@@ -0,0 +1,3 @@
+version=3
+
+http://qa.debian.org/watch/sf.php/freevo kaa-display-((?:\d\.)+\d)\.tar\.gz
More information about the Pkg-freevo-commits
mailing list