[Python-modules-commits] r20268 - in packages/pylast/trunk (10 files)
laarmen-guest at users.alioth.debian.org
laarmen-guest at users.alioth.debian.org
Thu Feb 2 17:05:04 UTC 2012
Date: Thursday, February 2, 2012 @ 17:05:02
Author: laarmen-guest
Revision: 20268
[svn-inject] Application des modifications Debian (0.5.11-1) pour le tronc
Added:
packages/pylast/trunk/debian/
packages/pylast/trunk/debian/changelog
packages/pylast/trunk/debian/compat
packages/pylast/trunk/debian/control
packages/pylast/trunk/debian/copyright
packages/pylast/trunk/debian/docs
packages/pylast/trunk/debian/rules
packages/pylast/trunk/debian/source/
packages/pylast/trunk/debian/source/format
packages/pylast/trunk/debian/watch
Property changes on: packages/pylast/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/pylast/trunk/debian/changelog
===================================================================
--- packages/pylast/trunk/debian/changelog (rev 0)
+++ packages/pylast/trunk/debian/changelog 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1,5 @@
+pylast (0.5.11-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #658253)
+
+ -- Simon Chopin <chopin.simon at gmail.com> Tue, 31 Jan 2012 01:34:09 +0100
Added: packages/pylast/trunk/debian/compat
===================================================================
--- packages/pylast/trunk/debian/compat (rev 0)
+++ packages/pylast/trunk/debian/compat 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1 @@
+8
Added: packages/pylast/trunk/debian/control
===================================================================
--- packages/pylast/trunk/debian/control (rev 0)
+++ packages/pylast/trunk/debian/control 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1,36 @@
+Source: pylast
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Simon Chopin <chopin.simon at gmail.com>
+Build-Depends: debhelper (>= 8),
+ python-all (>= 2.6.6-3~),
+ python3-all (>= 3.1.3-12~)
+X-Python-Version: >=2.6
+X-Python3-Version: >=3.0
+Standards-Version: 3.9.2
+Homepage: http://code.google.com/p/pylast/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/pylast/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/pylast/trunk/
+
+Package: python-pylast
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: Python interface to Last.fm and other compatible services
+ Last.fm is a service providing a way to keep a record of what the users listen
+ to and offering music recommendations based on that record.
+ .
+ This interface allows access to all the data exposed by the Last.fm API as
+ well as to the scrobbling functionality.
+
+Package: python3-pylast
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Python 3 interface to Last.fm and other compatible services
+ Last.fm is a service providing a way to keep a record of what the users listen
+ to and offering music recommendations based on that record.
+ .
+ This interface allows access to all the data exposed by the Last.fm API as
+ well as to the scrobbling functionality.
+ .
+ This package provides the Python 3 module.
Added: packages/pylast/trunk/debian/copyright
===================================================================
--- packages/pylast/trunk/debian/copyright (rev 0)
+++ packages/pylast/trunk/debian/copyright 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1,27 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: pylast
+Source: http://code.google.com/p/pylast/
+
+Files: *
+Copyright: 2008-2011 Amr Hassan <amr.hassan at gmail.com>
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2012 Simon Chopin <chopin.simon at gmail.com>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache License, Version 2.0
+ can be found in "/usr/share/common-licenses/Apache-2.0".
Added: packages/pylast/trunk/debian/docs
===================================================================
--- packages/pylast/trunk/debian/docs (rev 0)
+++ packages/pylast/trunk/debian/docs 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1 @@
+README
Added: packages/pylast/trunk/debian/rules
===================================================================
--- packages/pylast/trunk/debian/rules (rev 0)
+++ packages/pylast/trunk/debian/rules 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1,34 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+ dh $@ --with python2,python3
+
+PYVERS := $(shell pyversions -r)
+PY3VERS := $(shell py3versions -r)
+
+override_dh_auto_build:
+ set -ex; \
+ for py in $(PYVERS) $(PY3VERS); do \
+ $$py setup.py build; \
+ done
+
+override_dh_auto_install:
+ set -ex; \
+ for py in $(PYVERS); do \
+ $$py setup.py install --skip-build --no-compile \
+ --root debian/python-pylast \
+ --install-layout=deb; \
+ done
+ set -ex; \
+ for py in $(PY3VERS); do \
+ $$py setup.py install --skip-build --no-compile \
+ --root debian/python3-pylast \
+ --install-layout=deb; \
+ done
+
+override_dh_auto_clean:
+ dh_auto_clean
+ rm build/ -rf
Property changes on: packages/pylast/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/pylast/trunk/debian/source/format
===================================================================
--- packages/pylast/trunk/debian/source/format (rev 0)
+++ packages/pylast/trunk/debian/source/format 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/pylast/trunk/debian/watch
===================================================================
--- packages/pylast/trunk/debian/watch (rev 0)
+++ packages/pylast/trunk/debian/watch 2012-02-02 17:05:02 UTC (rev 20268)
@@ -0,0 +1,3 @@
+version=3
+
+http://pypi.python.org/packages/source/p/pylast/pylast-(.+).tar.gz
More information about the Python-modules-commits
mailing list