--- playitslowly-1.3.1.orig/PKG-INFO +++ playitslowly-1.3.1/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: playitslowly -Version: 1.3.0 +Version: 1.3.1 Summary: A tool to help you when transcribing music. It allows you to play a piece of music at a different speed or pitch. Home-page: http://29a.ch/playitslowly/ Author: Jonas Wagner --- playitslowly-1.3.1.orig/install.sh +++ playitslowly-1.3.1/install.sh @@ -1,3 +1,3 @@ #!/bin/sh -gksu -u root -- python setup.py install --prefix=/usr +gksu -u root -- python setup.py install zenity --info --text "'Play it slowly' has been installed" --- playitslowly-1.3.1.orig/setup.py +++ playitslowly-1.3.1/setup.py @@ -47,7 +47,7 @@ kwargs = { 'cmdclass': {'install': new_install}, 'name': 'playitslowly', - 'version': "1.3.0", + 'version': "1.3.1", 'description': 'A tool to help you when transcribing music. It allows you to play a piece of music at a different speed or pitch.', 'author': 'Jonas Wagner', 'author_email': 'veers@gmx.ch', --- playitslowly-1.3.1.orig/debian/rules +++ playitslowly-1.3.1/debian/rules @@ -0,0 +1,11 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +DEB_PYTHON_SYSTEM := pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +clean:: + rm -rf build build-stamp configure-stamp build/ MANIFEST + dh_clean --- playitslowly-1.3.1.orig/debian/changelog +++ playitslowly-1.3.1/debian/changelog @@ -0,0 +1,34 @@ +playitslowly (1.3.1-2) unstable; urgency=low + + * Depends on python-gtk2. + * Depends on gstreamer0.10-plugins-good. (Closes: #634224) + + -- Tiago Bortoletto Vaz Sun, 28 Aug 2011 09:22:22 -0300 + +playitslowly (1.3.1-1) unstable; urgency=low + + * New upstream release. + * Add Homepage field to source entry in control file. Thanks to Alessio + Treglia. (Closes: #610620) + + -- Tiago Bortoletto Vaz Tue, 25 Jan 2011 22:27:46 -0200 + +playitslowly (1.3.0-3) unstable; urgency=low + + * Build-depends on python instead of python2.5. Thanks to Angel Abad. + (Closes: #604252) + + -- Tiago Bortoletto Vaz Sun, 21 Nov 2010 20:08:02 -0200 + +playitslowly (1.3.0-2) unstable; urgency=low + + * Fixes minor description string error. Thanks to Rupert Swarbrick. + (Closes: #602713) + + -- Tiago Bortoletto Vaz Sat, 20 Nov 2010 22:52:39 -0200 + +playitslowly (1.3.0-1) unstable; urgency=low + + * Initial release. (Closes: #510890) + + -- Tiago Bortoletto Vaz Fri, 10 Sep 2010 01:07:58 -0300 --- playitslowly-1.3.1.orig/debian/compat +++ playitslowly-1.3.1/debian/compat @@ -0,0 +1 @@ +7 --- playitslowly-1.3.1.orig/debian/control +++ playitslowly-1.3.1/debian/control @@ -0,0 +1,21 @@ +Source: playitslowly +Section: gnome +Priority: optional +Maintainer: Tiago Bortoletto Vaz +Build-Depends: debhelper (>=7.0.50~), python-support (>= 0.6), cdbs (>= 0.4.49), python +Standards-Version: 3.9.1 +Vcs-Browser: http://git.debian.org/?p=collab-maint/playitslowly.git +Vcs-Git: git://git.debian.org/git/collab-maint/playitslowly.git +Homepage: http://29a.ch/playitslowly + +Package: playitslowly +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-gtk2 (>= 2.10), python (>= 2.6), gstreamer0.10-plugins-bad, python-gst0.10, python-gtk2, gstreamer0.10-plugins-good +Description: Plays back audio files at a different speed or pitch + Play it slowly is a piece of software to play back audio files at a different + speed or pitch. It also allows you to loop over a certain part of a file. + . + It is intended to help you learn or transcribe songs. It can also play videos + thanks to GStreamer. + . + Play it slowly works with both ALSA and the JACK Audio Connection Kit. --- playitslowly-1.3.1.orig/debian/watch +++ playitslowly-1.3.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://29a.ch/playitslowly/playitslowly-(.+)\.tar\.gz --- playitslowly-1.3.1.orig/debian/pyversions +++ playitslowly-1.3.1/debian/pyversions @@ -0,0 +1 @@ +2.5- --- playitslowly-1.3.1.orig/debian/copyright +++ playitslowly-1.3.1/debian/copyright @@ -0,0 +1,36 @@ +This package was debianized by Jonas Wagner on Sat, 18 Oct 2008 20:13:44 +0200. +It has been modified by Tiago Bortoletto Vaz in order to +comply with Debian Policy. + +It was downloaded from http://29a.ch/playitslowy/ + +Upstream Author: + + Jonas Wagner + +Files: * +Copyright: + 2009-2010, Jonas Wagner +License: GPL + +Files: debian/* +Copyright: + 2010, Jonas Wagner +License: GPL + +License: GPL + 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 2 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, see . + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-3'. --- playitslowly-1.3.1.orig/debian/source/format +++ playitslowly-1.3.1/debian/source/format @@ -0,0 +1 @@ +1.0 --- playitslowly-1.3.1.orig/playitslowly/app.py +++ playitslowly-1.3.1/playitslowly/app.py @@ -50,7 +50,7 @@ _ = lambda s: s # may be add gettext later NAME = u"Play it slowly" -VERSION = "1.3" +VERSION = "1.3.1" WEBSITE = "http://29a.ch/playitslowly/" if sys.platform == "win32": @@ -206,13 +206,14 @@ def add_recent(self, uri): manager = gtk.recent_manager_get_default() - mime_type = mimetypes.guess_type(uri)[0] app_exec = "playitslowly \"%s\"" % uri - manager.add_full(uri, { - "app_name": "playitslowly", - "app_exec": "playitslowly", - "mime_type": mime_type - }) + mime_type = mimetypes.guess_type(uri)[0] + if mime_type: + manager.add_full(uri, { + "app_name": "playitslowly", + "app_exec": "playitslowly", + "mime_type": mime_type + }) def show_recent(self, sender=None):