--- pytagsfs-0.9.1.orig/debian/changelog +++ pytagsfs-0.9.1/debian/changelog @@ -0,0 +1,96 @@ +pytagsfs (0.9.1-1ubuntu1) lucid; urgency=low + + * Merge from debian testing (LP: #493164), Ubuntu remaining changes: + - Append --prefix to setup.py install to fix FTBFS with Python 2.6. + + -- Alessio Treglia Mon, 07 Dec 2009 17:50:23 +0100 + +pytagsfs (0.9.1-1) unstable; urgency=low + + * New Upstream Release + * Remove Y Giridhar Appaji Nag from Uploaders + * Remove dependency on python-pyinotify and add new dependency on + python-inotifyx + * Update Standards-Version to 3.8.3 (No changes required) + * Add a get-orig-source target and update README.source + * Add Build Dependency for python-all-dev to support all python versions + * Switch patch management to quilt + + Drop 02_pyinotify_compatibility patch since we are now moving to + python-inotifyx + + -- Ritesh Raj Sarraf Fri, 30 Oct 2009 15:42:10 +0530 + +pytagsfs (0.9.0-2ubuntu1) karmic; urgency=low + + * Append --install-layout=deb to setup.py install arguments list to prevent + FTBFS with Python 2.6. + + -- Alessio Treglia Wed, 27 May 2009 08:52:02 +0200 + +pytagsfs (0.9.0-2) unstable; urgency=low + + * Take maintenance from Y Giridhar Appaji Nag + * Pull patch 02_pyinotify_compatibility.dpatch from upstream + to fix compatibility issues with newer, backwards incompatible, pyinotify + * Bump Standards Version to 3.8.1 (No changes required) + + -- Ritesh Raj Sarraf Sat, 16 May 2009 00:47:09 +0530 + +pytagsfs (0.9.0-1) unstable; urgency=low + + * New upstream release + + -- Y Giridhar Appaji Nag Sat, 07 Mar 2009 11:14:59 +0530 + +pytagsfs (0.9.0~rc1-1) unstable; urgency=low + + * New upstream release + + Needs python-fuse to build add to Build-Depends + + -- Y Giridhar Appaji Nag Wed, 28 Jan 2009 22:11:56 +0530 + +pytagsfs (0.8.0-1) unstable; urgency=low + + [ Sandro Tosi ] + * debian/control + - switch Vcs-Browser field to viewsvn + + [ Y Giridhar Appaji Nag ] + * New upstream release + * Add README.source to be compliant with policy 3.8.0 + * Update Maintainer: to official Debian ID + * Add python-libxml2 to Build-Depends-Indep: + + -- Y Giridhar Appaji Nag Sat, 22 Nov 2008 23:05:28 +0530 + +pytagsfs (0.7.1-2) unstable; urgency=low + + * We need fusermount hence depend on fuse-utils + + -- Y Giridhar Appaji Nag Fri, 15 Aug 2008 16:14:36 +0530 + +pytagsfs (0.7.1-1) unstable; urgency=low + + * New upstream release + + Depends on python-fuse >= 0.2 and python-sclapp >= 0.5.2 + + Build-Depends also on python-sclapp >= 0.5.2 + * Remove patch 02_fuse_exceptions merged upstream + * Update Standards-Version to 3.8.0 (no changes required) + + -- Y Giridhar Appaji Nag Sun, 03 Aug 2008 16:07:34 +0530 + +pytagsfs (0.6.0-2) unstable; urgency=low + + * Change Section from python to utils + * Patch 01_bug_reporting to set the bug reporting location to Debian and not + upstream. + * Patch 02_fuse_exceptions to catch any exception and log an error when fuse + initialisation fails (like the user is not in the fuse group). + + -- Y Giridhar Appaji Nag Wed, 30 Apr 2008 17:22:28 +0530 + +pytagsfs (0.6.0-1) unstable; urgency=low + + * Initial release (Closes: #471971) + + -- Y Giridhar Appaji Nag Sat, 05 Apr 2008 19:42:17 +0530 --- pytagsfs-0.9.1.orig/debian/watch +++ pytagsfs-0.9.1/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://www.alittletooquiet.net/media/release/pytagsfs-([\d\.]+)\.tar\.gz --- pytagsfs-0.9.1.orig/debian/docs +++ pytagsfs-0.9.1/debian/docs @@ -0,0 +1 @@ +TODO --- pytagsfs-0.9.1.orig/debian/control +++ pytagsfs-0.9.1/debian/control @@ -0,0 +1,27 @@ +Source: pytagsfs +Section: utils +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Ritesh Raj Sarraf +Uploaders: Python Applications Packaging Team +Build-Depends: debhelper (>= 5.0.38), quilt +Build-Depends-Indep: python-support, python-sclapp (>= 0.5.2), xsltproc, docbook-xsl, python-libxml2, python-fuse (>= 0.2), python-all-dev (>= 2.3.5-11) +Standards-Version: 3.8.3 +XS-Python-Version: all +Homepage: http://www.pytagsfs.org/ +Vcs-Svn: svn://svn.debian.org/svn/python-apps/packages/pytagsfs/trunk +Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/pytagsfs/trunk/ + +Package: pytagsfs +Architecture: all +Depends: ${python:Depends}, python-fuse (>= 0.2), python-inotifyx, python-mutagen, python-sclapp (>= 0.5.2), fuse-utils +XB-Python-Version: ${python:Versions} +Description: maps media files to an arbitrary directory structure + pytagsfs is a FUSE filesystem that arranges media files in a virtual directory + structure based on the file tags. + . + A set of audio files could be mapped to a new directory structure organizing + them hierarchically by album, genre, release date, etc. + . + File tags can be changed by moving and renaming virtual files and directories. + The virtual files can be modified, opened and played just like regular files. --- pytagsfs-0.9.1.orig/debian/rules +++ pytagsfs-0.9.1/debian/rules @@ -0,0 +1,64 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PYVERS=$(shell pyversions -vr) + +PKG_NAME=pytagsfs +PKG_VER=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p') + +get-orig-source: + uscan --force-download --rename --download-version=$(PKG_VER) --destdir=. + + +build: patch build-stamp +build-stamp: $(QUILT_STAMPFN) $(PYVERS:%=build-python%) + touch $@ + +build-python%: + dh_testdir + python$* setup.py build + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + rm -rf build + find . -name '*.py[co]' | xargs rm -f + rm -f modules/pytagsfs/version.py + dh_clean + +install: $(PYVERS:%=install-python%) + touch $@ + +install-python%: build + dh_testdir + dh_testroot + dh_installdirs + python$* setup.py install --root=$(CURDIR)/debian/pytagsfs \ + --prefix=/usr + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs NEWS + dh_installdocs + dh_pysupport + dh_compress -X.py + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install patch unpatch get-orig-source --- pytagsfs-0.9.1.orig/debian/copyright +++ pytagsfs-0.9.1/debian/copyright @@ -0,0 +1,39 @@ +This package was debianized by Y Giridhar Appaji Nag on +Fri, 28 Mar 2008 18:00:56 +0530. + +It was downloaded from http://www.pytagsfs.org/ + +Upstream Author: + + Forest Bond + +Copyright: + + Copyright (C) 2005-2008, Forest Bond + +License: + + setup.py is under Public Domain + + The rest of the files are licensed under the GNU GPLv2 + + This program 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; unless explicitly stated otherwise + elsewhere, only version 2 of the License (not version 3.x etc.) is + the valid version of the GNU General Public License for pytagsfs. + + This program 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 + with the Debian GNU/Linux distribution in the file + /usr/share/common-licenses/GPL-2; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +The Debian packaging is +Copyright (C) 2008, Y Giridhar Appaji Nag and +is licensed under the GNU GPL, either version 2 of the License, or (at +your option) any later version; see `/usr/share/common-licenses/GPL-2'. --- pytagsfs-0.9.1.orig/debian/compat +++ pytagsfs-0.9.1/debian/compat @@ -0,0 +1 @@ +5 --- pytagsfs-0.9.1.orig/debian/README.source +++ pytagsfs-0.9.1/debian/README.source @@ -0,0 +1,8 @@ +pytagsfs is downloaded from its upstream website: +http://www.alittletooquiet.net/software/pytagsfs/ + +debian/rules contains a get-orig-source target which should be able to +download the upstream tarball for you. + +Please read the README.source provided with the documentation of the +dpatch package also as dpatch is used for maintaining the patches --- pytagsfs-0.9.1.orig/debian/patches/series +++ pytagsfs-0.9.1/debian/patches/series @@ -0,0 +1 @@ +# Placeholder for quilt patches. We dropped all patches