[Python-modules-commits] r16681 - in packages/python-mplayer/trunk (12 files)

oschwand-guest at users.alioth.debian.org oschwand-guest at users.alioth.debian.org
Wed Apr 20 10:43:37 UTC 2011


    Date: Wednesday, April 20, 2011 @ 10:43:26
  Author: oschwand-guest
Revision: 16681

[svn-inject] Applying Debian modifications (0.6.0-1) to trunk

Added:
  packages/python-mplayer/trunk/debian/
  packages/python-mplayer/trunk/debian/changelog
  packages/python-mplayer/trunk/debian/compat
  packages/python-mplayer/trunk/debian/control
  packages/python-mplayer/trunk/debian/copyright
  packages/python-mplayer/trunk/debian/docs
  packages/python-mplayer/trunk/debian/python-module-stampdir/
  packages/python-mplayer/trunk/debian/python-module-stampdir/python-mplayer
  packages/python-mplayer/trunk/debian/rules
  packages/python-mplayer/trunk/debian/source/
  packages/python-mplayer/trunk/debian/source/format
  packages/python-mplayer/trunk/debian/watch


Property changes on: packages/python-mplayer/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-mplayer/trunk/debian/changelog
===================================================================
--- packages/python-mplayer/trunk/debian/changelog	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/changelog	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1,5 @@
+python-mplayer (0.6.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #62334)
+
+ -- Olivier Schwander <olivier.schwander at ens-lyon.org>  Fri, 18 Mar 2011 09:31:48 +0100

Added: packages/python-mplayer/trunk/debian/compat
===================================================================
--- packages/python-mplayer/trunk/debian/compat	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/compat	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1 @@
+7

Added: packages/python-mplayer/trunk/debian/control
===================================================================
--- packages/python-mplayer/trunk/debian/control	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/control	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1,34 @@
+Source: python-mplayer
+Section: python
+Priority: extra
+Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Uploaders: Olivier Schwander <olivier.schwander at ens-lyon.org>
+Build-Depends: python, cdbs, debhelper (>= 7.0.50~)
+Standards-Version: 3.9.1
+Homepage: http://code.google.com/p/python-mplayer
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-mplayer/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-mplayer/trunk/
+X-Python-Version: >=2.6
+
+Package: python-mplayer
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Description: Lightweight and dynamic MPlayer wrapper with a Pythonic API
+ Python-mplayer provides several Pythonic interfaces to MPlayer. These
+ are implemented as the following classes (see Introspection for more
+ info):
+ .
+ Player provides a basic and low-level interface to MPlayer.
+ Interaction can be done by sending commands or querying information.
+  - AsyncPlayer is a Player subclass with asyncore integration (NOT for
+    MS Windows). Adds support for hooking functions to the process'
+    stdout/stderr.
+  - GPlayer is a Player subclass with GTK/GObject integration (same
+    usage as AsyncPlayer)
+  - QtPlayer is a Player subclass with Qt integration (same usage as
+    AsyncPlayer)
+  - GtkPlayerView provides a basic (as of now) PyGTK widget that embeds
+    MPlayer.
+  - QPlayerView provides a PyQt4 widget similar to GtkPlayerView in
+    functionality.
+

Added: packages/python-mplayer/trunk/debian/copyright
===================================================================
--- packages/python-mplayer/trunk/debian/copyright	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/copyright	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1,29 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: python-mplayer
+Source: http://code.google.com/p/python-mplayer/
+
+Files: *
+Copyright: 2007-2011 Darwin M. Bautista
+License: LGPL-3.0
+
+Files: debian/*
+Copyright: 2011 Olivier Schwander <olivier.schwander at ens-lyon.org>
+License: LGPL-3.0
+
+License: LGPL-3.0
+ 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 3 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 General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License can be found in "/usr/share/common-licenses/LGPL-3".
+

Added: packages/python-mplayer/trunk/debian/docs
===================================================================
--- packages/python-mplayer/trunk/debian/docs	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/docs	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1,3 @@
+CHANGES-0.5.0.txt
+CHANGES.txt
+README.txt

Added: packages/python-mplayer/trunk/debian/rules
===================================================================
--- packages/python-mplayer/trunk/debian/rules	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/rules	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ 


Property changes on: packages/python-mplayer/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-mplayer/trunk/debian/source/format
===================================================================
--- packages/python-mplayer/trunk/debian/source/format	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/source/format	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-mplayer/trunk/debian/watch
===================================================================
--- packages/python-mplayer/trunk/debian/watch	                        (rev 0)
+++ packages/python-mplayer/trunk/debian/watch	2011-04-20 10:43:26 UTC (rev 16681)
@@ -0,0 +1,3 @@
+version=3
+http://pypi.python.org/packages/source/P/PyMPlayer/PyMPlayer-(.*)\.tar\.gz
+




More information about the Python-modules-commits mailing list