--- eyed3-0.6.17.orig/debian/eyed3.install +++ eyed3-0.6.17/debian/eyed3.install @@ -0,0 +1 @@ +bin/* usr/bin/ --- eyed3-0.6.17.orig/debian/rules +++ eyed3-0.6.17/debian/rules @@ -0,0 +1,99 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +#includes targets for dpatch +include /usr/share/dpatch/dpatch.make + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config.status: configure + dh_testdir + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + + python setup.py config + + +build: build-stamp + +build-stamp: patch-stamp config.status + dh_testdir + + python setup.py build + + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) dist-clean +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + find -name '*.pyc' -exec rm {} \; + rm -rf doc/eyeD3.1 + rm -rf etc/eyeD3.spec + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + python setup.py install --root=$(CURDIR)/debian/python-eyed3 + #--install-lib usr/share/python-support/python-eyed3 + + #$(MAKE) install prefix=$(CURDIR)/debian/eyed3/usr + + +# Build architecture-independent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs THANKS + dh_installexamples + dh_install + dh_installman -peyed3 doc/eyeD3.1 + dh_link + dh_strip + dh_compress + dh_fixperms + dh_pysupport + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- eyed3-0.6.17.orig/debian/docs +++ eyed3-0.6.17/debian/docs @@ -0,0 +1,4 @@ +NEWS +README +README.html +TODO --- eyed3-0.6.17.orig/debian/watch +++ eyed3-0.6.17/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://eyed3.nicfit.net/releases/eyeD3-([\d\.]*)\.tar\.gz --- eyed3-0.6.17.orig/debian/pyversions +++ eyed3-0.6.17/debian/pyversions @@ -0,0 +1 @@ +2.3- --- eyed3-0.6.17.orig/debian/compat +++ eyed3-0.6.17/debian/compat @@ -0,0 +1 @@ +4 --- eyed3-0.6.17.orig/debian/copyright +++ eyed3-0.6.17/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Alexander Wirt on +Sat, 15 Nov 2003 13:33:25 +0100. + +It was downloaded from http://www.travisshirk.net/eyeD3/releases/ + +Upstream Author: Travis Shirk + +Copyright: 2003 by Travis Shirk + +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; either version 2 of the License, or +(at your option) any later version. + +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 file /usr/share/common-licenses/GPL; +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, version 2, can be found in /usr/share/common-licenses/GPL-2. --- eyed3-0.6.17.orig/debian/control +++ eyed3-0.6.17/debian/control @@ -0,0 +1,31 @@ +Source: eyed3 +Section: sound +Priority: optional +Maintainer: Alexander Wirt +Build-Depends: debhelper (>= 5.0.37.1), dpatch +Build-Depends-Indep: python-support (>= 0.3), python +Homepage: http://eyed3.nicfit.net/ +Standards-Version: 3.8.0 +XS-Python-Version: all + +Package: python-eyed3 +Architecture: all +Section: python +Depends: ${python:Depends} +Provides: ${python:Provides} +XB-Python-Version: ${python:Versions} +Replaces: python2.3-eyed3, python2.4-eyed3 +Conflicts: python2.3-eyed3, python2.4-eyed3 +Description: Python module for id3-tags manipulation + A Python module for the manipulation of ID3 tags. It supports versions + 1.0, 1.1, 2.3, and 2.4 of the ID3 standard. It can also retrieve + information such as length and bit rate from an MP3 file. + +Package: eyed3 +Architecture: all +Depends: python-eyed3 (= ${source:Version}), ${python:Depends} +Description: Display and manipulate id3-tags on the command-line + A command-line editor to add/edit/remove ID3-tags on mp3 files. + It supports version 1.0,1.1,2.3 and 2.4 of the ID3 standard. + Additionally it displays several informations about the file + such as length and bitrate from an MP3 file. --- eyed3-0.6.17.orig/debian/changelog +++ eyed3-0.6.17/debian/changelog @@ -0,0 +1,140 @@ +eyed3 (0.6.17-1) unstable; urgency=low + + * New upstream version + - Return errorcodes on exception (Closes: #488032) + - List genre 74 (Closes: #501877) + - Using -G with a genrenumber is now possible (Closes: #509946) + * Make the package non-native again... + + -- Alexander Wirt Thu, 05 Feb 2009 20:27:42 +0100 + +eyed3 (0.6.16) unstable; urgency=low + + * New upstream release + - Lines of 80 dashes should be 79 (Closes: #474656) + + -- Alexander Wirt Tue, 10 Jun 2008 14:19:01 +0200 + +eyed3 (0.6.14-1) unstable; urgency=low + + * New upstream release (Closes: #430664) + + -- Alexander Wirt Tue, 26 Jun 2007 15:11:50 +0200 + +eyed3 (0.6.13-1) unstable; urgency=low + + * New upstream version + + -- Alexander Wirt Tue, 01 May 2007 13:07:40 +0200 + +eyed3 (0.6.12-1) unstable; urgency=low + + * New upstream version + + -- Alexander Wirt Mon, 19 Feb 2007 09:14:50 +0100 + +eyed3 (0.6.11-1) unstable; urgency=low + + * New upstream version + + -- Alexander Wirt Sat, 18 Nov 2006 01:47:38 +0100 + +eyed3 (0.6.10-3) unstable; urgency=low + + * Use python-support properly (Closes: #392487) + + -- Alexander Wirt Thu, 12 Oct 2006 08:58:38 +0200 + +eyed3 (0.6.10-2) unstable; urgency=low + + * Added stronger dependency for eyed3 on python-eyed3 (Closes: #359996) + * Updated to the usage of python-support (Closes: #373425) + + -- Alexander Wirt Tue, 4 Apr 2006 06:58:20 +0200 + +eyed3 (0.6.10-1) unstable; urgency=low + + * New upstream release + + -- Alexander Wirt Mon, 20 Mar 2006 06:17:12 +0100 + +eyed3 (0.6.9-2) unstable; urgency=low + + * Set architecture too all (Closes: #357177) + + -- Alexander Wirt Thu, 16 Mar 2006 09:10:30 +0100 + +eyed3 (0.6.9-1) unstable; urgency=low + + * New upstream release (Closes: #352463) + * Fixed descriptions (Closes: #320263) + + -- Alexander Wirt Sun, 12 Feb 2006 15:20:20 +0100 + +eyed3 (0.6.8-1) unstable; urgency=low + + * New upstream release (Closes: #327897) + * Fix description (Closes: #313337) + * Remove spelling fixes for News and Changelog, it really + annoying to adapt that everytime. + + -- Alexander Wirt Mon, 12 Sep 2005 22:22:56 +0200 + +eyed3 (0.6.6-1) unstable; urgency=low + + * New upstream release + * Provide Python 2.3 and 2.4 packages, python-eyed3 is now a + dummy package. (Closes: #310267) + * Fixes --track-genre to --genre in manpage (Closes: #307688) + + -- Alexander Wirt Sun, 29 May 2005 13:13:12 +0200 + +eyed3 (0.6.5-1) unstable; urgency=low + + * New upstream release (Closes: #308083) + * Introduces read support for ID3v2.2 (Closes: #308185) + * Fixed some typos. Thank to Martin Michelmayr for the patch + (Closes: #307565) + + -- Alexander Wirt Sun, 8 May 2005 20:36:52 +0200 + +eyed3 (0.6.4-1) unstable; urgency=low + + * New upstream release + * Fixes spelling in control file (Closes: #299971) + * Fixes 0byte problem in date field (Closes: #299948) + Thanks to Aaron Crane for the patch + * Fixes problem when deleting date frame (Closes: #300529) + Thanks again to Aaron Crane for the patch + + -- Alexander Wirt Wed, 9 Feb 2005 22:40:16 +0100 + +eyed3 (0.6.3-1) unstable; urgency=low + + * New upstream release (closes: #285147) + - ID3 V1 Tags are now updatet if the year is empty (closes: #270964) + + -- Alexander Wirt Sun, 12 Dec 2004 10:39:24 +0100 + +eyed3 (0.6.2-1) unstable; urgency=low + + * New upstram release (closes: #276207) + * Removed manpage (now handled by upstream) + * Removed optik fix + + -- Alexander Wirt Fri, 15 Oct 2004 23:44:05 +0200 + +eyed3 (0.6.1-1) unstable; urgency=low + + * New upstram release (closes: #255160) + * Improved manpage + * Added watch file + + -- Alexander Wirt Sun, 20 Jun 2004 11:31:26 +0200 + +eyed3 (0.5.1-1) unstable; urgency=low + + * Initial Release (closes: #220888) + + -- Alexander Wirt Sun, 4 Jan 2004 22:50:44 +0100 + --- eyed3-0.6.17.orig/debian/patches/00list +++ eyed3-0.6.17/debian/patches/00list @@ -0,0 +1 @@ +