[Python-modules-commits] r4993 - in packages (9 files)
nijel at users.alioth.debian.org
nijel at users.alioth.debian.org
Mon Apr 7 10:04:37 UTC 2008
Date: Monday, April 7, 2008 @ 10:04:35
Author: nijel
Revision: 4993
Initial import of python-mpd.
Added:
packages/python-mpd/
packages/python-mpd/trunk/
packages/python-mpd/trunk/debian/
packages/python-mpd/trunk/debian/compat
packages/python-mpd/trunk/debian/control
packages/python-mpd/trunk/debian/copyright
packages/python-mpd/trunk/debian/docs
packages/python-mpd/trunk/debian/rules
packages/python-mpd/trunk/debian/watch
Added: packages/python-mpd/trunk/debian/compat
===================================================================
--- packages/python-mpd/trunk/debian/compat (rev 0)
+++ packages/python-mpd/trunk/debian/compat 2008-04-07 10:04:35 UTC (rev 4993)
@@ -0,0 +1 @@
+5
Added: packages/python-mpd/trunk/debian/control
===================================================================
--- packages/python-mpd/trunk/debian/control (rev 0)
+++ packages/python-mpd/trunk/debian/control 2008-04-07 10:04:35 UTC (rev 4993)
@@ -0,0 +1,20 @@
+Source: python-mpd
+Section: python
+Priority: optional
+Maintainer: Michal ÄihaÅ <nijel at debian.org>
+Build-Depends: debhelper (>= 5.0.38),
+ python-central (>= 0.5.6),
+ python-all-dev (>= 2.3.5-11)
+Standards-Version: 3.7.3
+XS-Python-Version: all
+Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/python-mpd/trunk
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/python-mpd/trunk/
+Homepage: http://www.musicpd.org/~jat/python-mpd/
+
+Package: python-mpd
+Architecture: all
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Description: Python MPD client library
+ Fast MPD (Music Player Daemon) client library written in pure Python.
Added: packages/python-mpd/trunk/debian/copyright
===================================================================
--- packages/python-mpd/trunk/debian/copyright (rev 0)
+++ packages/python-mpd/trunk/debian/copyright 2008-04-07 10:04:35 UTC (rev 4993)
@@ -0,0 +1,30 @@
+This package was debianized by Michal ÄihaÅ <nijel at debian.org> on
+Mon, 7 Apr 2008 08:08:08 +0200.
+
+It was downloaded from <http://pypi.python.org/simple/python-mpd/>
+
+Upstream Author: J. Alexander Treuman <jat at spatialrift.net>
+
+Copyright: Copyright (C) 2008 J. Alexander Treuman <jat at spatialrift.net>
+
+License:
+ This package 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 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 General Public License for more details.
+
+ You should have received a copy of the GNU 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 General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2008, Michal ÄihaÅ <nijel at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
Added: packages/python-mpd/trunk/debian/docs
===================================================================
--- packages/python-mpd/trunk/debian/docs (rev 0)
+++ packages/python-mpd/trunk/debian/docs 2008-04-07 10:04:35 UTC (rev 4993)
@@ -0,0 +1,3 @@
+README.txt
+TODO.txt
+doc/commands.txt
Added: packages/python-mpd/trunk/debian/rules
===================================================================
--- packages/python-mpd/trunk/debian/rules (rev 0)
+++ packages/python-mpd/trunk/debian/rules 2008-04-07 10:04:35 UTC (rev 4993)
@@ -0,0 +1,60 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PYVERSIONS=$(shell pyversions -r)
+# default is first version
+DEFAULTPY=$(shell pyversions -d -v)
+
+build: build-stamp
+
+build-stamp:
+ dh_testdir
+ set -e; \
+ for v in $(PYVERSIONS) ; do \
+ $$v setup.py build ; \
+ done
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ rm -rf build
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ set -e; \
+ for v in $(PYVERSIONS) ; do \
+ PYTHON=$$v ; \
+ PYTMP="debian/python-mpd" ; \
+ $$PYTHON setup.py install --no-compile --root=$$PYTMP ; \
+ done
+
+# 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 CHANGES.txt
+ dh_installdocs
+ dh_pycentral
+ dh_strip
+ 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/python-mpd/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+
Added: packages/python-mpd/trunk/debian/watch
===================================================================
--- packages/python-mpd/trunk/debian/watch (rev 0)
+++ packages/python-mpd/trunk/debian/watch 2008-04-07 10:04:35 UTC (rev 4993)
@@ -0,0 +1,2 @@
+version=3
+http://news.tiker.net/dl/software/tagpy /news.tiker.net/download/software/tagpy/tagpy-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list