Your message dated Thu, 13 Jul 2006 13:49:26 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#357421: fixed in vorbis-tools 1.1.1-6
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: vorbis-tools
Version: 1.1.1-3
Severity: wishlist
Please consider including the attached script with the package.
-- System Information:
Debian Release: testing/unstable
APT prefers stable
APT policy: (700, 'stable'), (600, 'testing'), (98, 'unstable'), (1,
'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Versions of packages vorbis-tools depends on:
ii libao2 0.8.6-3 Cross Platform Audio Output Librar
ii libc6 2.3.6-2 GNU C Library: Shared libraries an
ii libcurl3-gnutls 7.15.1-1 Multi-protocol file transfer libra
ii libflac7 1.1.2-3.1 Free Lossless Audio Codec - runtim
ii libogg0 1.1.3-2 Ogg Bitstream Library
ii liboggflac3 1.1.2-3.1 Free Lossless Audio Codec - runtim
ii libspeex1 1.1.12-1 The Speex Speech Codec
ii libvorbis0a 1.1.2-1 The Vorbis General Audio Compressi
ii libvorbisenc2 1.1.2-1 The Vorbis General Audio Compressi
ii libvorbisfile3 1.1.2-1 The Vorbis General Audio Compressi
vorbis-tools recommends no packages.
-- no debconf information
--
.''`. martin f. krafft <[EMAIL PROTECTED]>
: :' : proud Debian developer and author: http://debiansystem.info
`. `'`
`- Debian - when you have better things to do than fixing a system
Invalid/expired PGP (sub)keys? Use subkeys.pgp.net as keyserver!
"nullum magnum ingenium sine mixtura dementiae fuit."
-- seneca
#!/bin/sh -eu
#
# vorbistagedit -- allows batch editing of vorbis comments with an editor
#
# © 2006 martin f. krafft <[EMAIL PROTECTED]>
# Released under the terms of the artistic licence.
#
ME=${0##*/}
versioninfo() {
echo "vorbistagedit 0.1 (2006.03.17.1015)" >&2
echo "vorbistagedit is (c) 2006 martin f. krafft" >&2
echo and released under the terms of the Artistic Licence. >&2
}
usage() {
versioninfo
echo
echo Usage: $ME file1.ogg [file2.ogg [file3.ogg ...]] >&2
echo
echo If no filenames are given, the list of filenames >&2
echo is read from stdin. >&2
}
for opt in $(getopt -n $ME -l version,help -o vVh? -- $@); do
case $opt in
--version|-V|-v)
versioninfo
exit 0;;
--help|-h|-\?)
usage
exit 0;;
--) :;;
-*)
exit 1;;
*) :;;
esac
done
if ! command -v vorbiscomment >/dev/null; then
echo "$ME: vorbiscomment not found in \$PATH." >&2
exit -1
fi
[ $# -eq 0 ] && set -- $(cat)
if [ $# -eq 0 ]; then
echo "$ME: no files given." >&2
exit 0
fi
TMPFILE=$(mktemp /tmp/vorbistagedit.XXXXXX)
trap "rm -f $TMPFILE" 0
cat <<_eof > $TMPFILE
# vorbistagedit
#
# Edit the lines in this file to your desire, but
# DO NOT touch lines starting with a colon (:)!
#
# We are in directory:
# $(pwd)
_eof
for i in "$@"; do
case $i in
*.ogg)
if [ ! -r $i ]; then
echo "$ME: unreadable file - $i" >&2
exit 1
fi
echo ": $i"
vorbiscomment -l $i
echo
;;
*)
echo "$ME: invalid argument - $i" >&2
exit 2
;;
esac
done >> $TMPFILE
echo : EOF >> $TMPFILE
${EDITOR:-editor} $TMPFILE
declare -a tags
write_tags() {
local file=$1; shift
for tag; do echo $tag; done | vorbiscomment -w $file
}
while read line; do
case "$line" in
': EOF')
write_tags "$file" "[EMAIL PROTECTED]";;
:*)
if [ -n "${file:-}" ]; then
write_tags "$file" "[EMAIL PROTECTED]"
tags=()
fi
file="${line#: }";;
*=*)
[EMAIL PROTECTED]"$line";;
*|'#*') :;;
esac
done < $TMPFILE
rm -f $TMPFILE
trap - 0
exit 0
signature.asc
Description: Digital signature (GPG/PGP)
--- End Message ---
--- Begin Message ---
Source: vorbis-tools
Source-Version: 1.1.1-6
We believe that the bug you reported is fixed in the latest version of
vorbis-tools, which is due to be installed in the Debian FTP archive:
vorbis-tools_1.1.1-6.diff.gz
to pool/main/v/vorbis-tools/vorbis-tools_1.1.1-6.diff.gz
vorbis-tools_1.1.1-6.dsc
to pool/main/v/vorbis-tools/vorbis-tools_1.1.1-6.dsc
vorbis-tools_1.1.1-6_i386.deb
to pool/main/v/vorbis-tools/vorbis-tools_1.1.1-6_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Adeodato Simó <[EMAIL PROTECTED]> (supplier of updated vorbis-tools package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Thu, 13 Jul 2006 21:25:09 +0200
Source: vorbis-tools
Binary: vorbis-tools
Architecture: source i386
Version: 1.1.1-6
Distribution: unstable
Urgency: low
Maintainer: Debian Xiph.org Maintainers <[EMAIL PROTECTED]>
Changed-By: Adeodato Simó <[EMAIL PROTECTED]>
Description:
vorbis-tools - several Ogg Vorbis tools
Closes: 353184 353185 357421 364527
Changes:
vorbis-tools (1.1.1-6) unstable; urgency=low
.
* Include vorbistagedit script from martin f. krafft to edit vorbis tags in
an editor. (Closes: #357421)
.
* Build with LFS, without touching configure.ac this time, as adviced by the
submitter. Submit however
debian/patches/for_upstream-largefile_support.diff
to upstream, together with dean gaudet's include_config_h_everywhere.patch.
(Closes: #364527)
.
* Fix typos in manpages spotted by A Costa. (Closes: #353184, #353185)
Files:
68babc43a5fa0fb9e9c8528c734e2803 905 sound optional vorbis-tools_1.1.1-6.dsc
56ddf46ec2c0e150d20d92a5d453626d 31054 sound optional
vorbis-tools_1.1.1-6.diff.gz
e7634f3788154f07f63e90c4ef6984cc 181748 sound optional
vorbis-tools_1.1.1-6_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: Signed by Adeodato Simó <[EMAIL PROTECTED]>
iEYEARECAAYFAkS2nn0ACgkQOzsxEBcMRN094QCgyB6GKSASDjKlxUccEI2mDmyo
5skAniH9Nm7olTaw2eS6MZAQt6f54AA/
=pyoz
-----END PGP SIGNATURE-----
--- End Message ---