--- id3tool-1.2a.orig/debian/changelog +++ id3tool-1.2a/debian/changelog @@ -0,0 +1,86 @@ +id3tool (1.2a-4) unstable; urgency=low + + * Fixed handling of nostrip build option + (Closes: #437195) + + -- Paul Cager Sun, 12 Aug 2007 00:01:44 +0100 + +id3tool (1.2a-3) unstable; urgency=low + + * Migrate from experimental to unstable. + + -- Paul Cager Sun, 15 Apr 2007 22:17:36 +0100 + +id3tool (1.2a-2) experimental; urgency=low + + * Package Description should say what an id3 tag is (Closes: #265150) + * Uses deb_helper version 5 + + -- Paul Cager Thu, 22 Feb 2007 23:36:09 +0000 + +id3tool (1.2a-1) unstable; urgency=low + + * New maintainer (Closes: #400360). + * New upstream release: + - Option -c can only be first parameter (Closes: #280180). + * Corrected spelling mistake (Closes: #363953). + + -- Paul Cager Fri, 1 Dec 2006 23:09:54 +0000 + +id3tool (1.2-1) unstable; urgency=low + + * New upstream version + - New licence + (Closes: Bug#167828) + + -- Matt Hope Mon, 18 Nov 2002 04:27:56 +1100 + +id3tool (1.1f-2) unstable; urgency=low + + * Changed from debstd to debhelper (v2) + * Converted the package format to non-debian native + * Prepared for upload to Debian. (Closes: #127624) + * Updated information in debian/copyright + + -- Matt Hope Mon, 18 Nov 2002 04:27:45 +1100 + +id3tool (1.1f-1) unstable; urgency=low + + * fix for an 'fseek bug' which I couldn't reproduce. + * Fixed version numbers in the source, corrected email address, other misc + documentaiton stuff. + * really the last 1.1 release if I have anything to do with it. + + -- Chris Collins Wed, 5 Apr 2000 21:38:00 +1000 + +id3tool (1.1e) unstable; urgency=low + + * fix for a >128 byte file bug + * last 1.1 release if I have anything to do with it. + + -- Chris Collins Sat, 15 jan 2000 13:23:40 +1100 + +id3tool (1.1d) unstable; urgency=low + + * fixes for a few file handling bugs + + -- Chris Collins Mon, 10 Jan 2000 22:09:50 +1100 + +id3tool (1.1c) unstable; urgency=low + + * Multiple file handling fix. + * Source support for non-Unixy platforms. + + -- Chris Collins Mon, 15 Nov 1999 20:54:00 +1100 + +id3tool (1.1b) unstable; urgency=low + + * Packaging Fix Release + + -- Chris Collins Sun, 1 Nov 1999 10:15:00 +1000 + +id3tool (1.1a) unstable; urgency=low + + * Initial Release. + + -- Chris Collins Sun, 19 Sep 1999 10:09:36 +1000 --- id3tool-1.2a.orig/debian/copyright +++ id3tool-1.2a/debian/copyright @@ -0,0 +1,77 @@ +This package was initially debianized by Chris Collins + on Sun, 19 Sep 1999 10:09:36 +1000. + +It was downloaded from: + http://nekohako.xware.cx/id3tool/index.html + +Upstream Author: + Chris Collins + +Copyright: + Copyright (C) 1999, Christopher Collins + +-------------------------------------------------------------------------- + +ID3tool 1.2 licence: + + This program was authored principly by Christopher Collins (aka + Crossfire). + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. The name of the author, Christopher Collins, nor any of his + aliases may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY CHRISTOPHER COLLINS ``AS IS'' AND ANY EXPRESS + OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL CHRISTOPHER COLLINS BE LIABLE FOR ANY + DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +BSD Getopt licensing: + + This program contains code derived from software contributed to The + NetBSD Foundation by Dieter Baron and Thomas Klausner. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the NetBSD + Foundation, Inc. and its contributors. + 4. Neither the name of The NetBSD Foundation nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. --- id3tool-1.2a.orig/debian/compat +++ id3tool-1.2a/debian/compat @@ -0,0 +1 @@ +5 --- id3tool-1.2a.orig/debian/rules +++ id3tool-1.2a/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + ./configure --prefix=/usr --mandir=/usr/share/man + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch $@ + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) clean + rm -rf build-stamp configure-stamp config.log config.status config.h .deps Makefile stamp-h1 + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(CURDIR)/debian/id3tool install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG + dh_installdocs README + dh_installman id3tool.1 + dh_link + 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 configure --- id3tool-1.2a.orig/debian/control +++ id3tool-1.2a/debian/control @@ -0,0 +1,21 @@ +Source: id3tool +Section: sound +Priority: optional +Maintainer: Paul Cager +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: id3tool +Architecture: any +Depends: ${shlibs:Depends} +Description: Command line editor for id3 tags + A simple and complete editor for ID3 tags in MP3 files. ID3 tags are a way of + identifying mp3 music files - you can store Artist, Album, Title, Track, + Year, and Genre in a tag, as well as a 28-character comment. + . + Highly recommended for scripting and bulk operations where you need + to edit id3 tags from scripts. + . + Can also be used to read id3 tags. + . + Homepage: http://nekohako.xware.cx/id3tool/ --- id3tool-1.2a.orig/debian/watch +++ id3tool-1.2a/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://nekohako.xware.cx/id3tool/id3tool-(.*).tar.gz