Processed: tagging 652152, tagging 638336, tagging 567169

2012-01-08 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # they are all done in git, just waiting for gmtk to be accepted
> tags 652152 + pending
Bug #652152 [src:gecko-mediaplayer] gecko-mediaplayer: FTBFS: npupp.h:703:49: 
error: declaration of C function 'char* NP_GetMIMEDescription()' conflicts with
Added tag(s) pending.
> tags 638336 + pending
Bug #638336 [src:gecko-mediaplayer] gecko-mediaplayer: build-arch does not 
build architecture-dependent part
Added tag(s) pending.
> tags 567169 + pending
Bug #567169 [gecko-mediaplayer] gecko-mediaplayer: should not depend on 
specific browsers
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
567169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=567169
638336: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=638336
652152: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652152
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.132601194421882.transcr...@bugs.debian.org



Bug#655078: ability to specify field list (for Ogg/Flac), as well as specify field contents

2012-01-08 Thread martin f krafft
Package: cuetools
Version: 1.3.1-12
Severity: wishlist
File: /usr/bin/cuetag
Tags: patch

Please consider the attached patch to cuetag. It allows me to call
cuetag like so:

  cuetag Björk-Volta.cue *.ogg ARTIST ALBUM TITLE YEAR=2007 GENRE=electronic 
TRACKNUMBER

which accomplishes two things:

  1. it pre-selects the fields and specifies their order;

  2. it hardcodes two fields to specific values for all tracks.

Since the field list is hardcoded for MP3, any fields specified on
the command line are effectively ignored. This could probably be
implemented better, but I do not care about MP3 at all.

Thanks,

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-rc4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_NZ, LC_CTYPE=en_NZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages cuetools depends on:
ii  id3v2  0.1.12-2
ii  libc6  2.13-24

Versions of packages cuetools recommends:
ii  flac  1.2.1-6

cuetools suggests no packages.

-- no debconf information


-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems
--- /usr/bin/cuetag	2011-06-18 23:10:37.0 +0200
+++ /tmp/cuetag	2012-01-08 13:13:27.694212038 +0100
@@ -16,6 +16,10 @@
 # for FLAC and Ogg Vorbis files
 vorbis()
 {
+	trackno=$1; shift
+	file="$1"; shift
+	fields="$@"
+
 	# FLAC tagging
 	# --remove-vc-all overwrites existing comments
 	METAFLAC="metaflac --remove-all-tags --import-tags-from=-"
@@ -25,7 +29,7 @@
 	# -a appends to existing comments
 	VORBISCOMMENT="vorbiscomment -w -c -"
 
-	case "$2" in
+	case "$file" in
 	*.[Ff][Ll][Aa][Cc])
 		VORBISTAG=$METAFLAC
 		;;
@@ -37,8 +41,9 @@
 	# space seperated list of recomended stardard field names
 	# see http://www.xiph.org/ogg/vorbis/doc/v-comment.html
 	# TRACKTOTAL is not in the Xiph recomendation, but is in common use
-	
-	fields='TITLE VERSION ALBUM TRACKNUMBER TRACKTOTAL ARTIST PERFORMER COPYRIGHT LICENSE ORGANIZATION DESCRIPTION GENRE DATE LOCATION CONTACT ISRC'
+
+	[ -n "$fields" ] ||
+		fields='TITLE VERSION ALBUM TRACKNUMBER TRACKTOTAL ARTIST PERFORMER COPYRIGHT LICENSE ORGANIZATION DESCRIPTION GENRE DATE LOCATION CONTACT ISRC'
 
 	# fields' corresponding cueprint conversion characters
 	# seperate alternates with a space
@@ -61,16 +66,21 @@
 	ISRC='%i %u'
 
 	(for field in $fields; do
-		value=""
-		for conv in `eval echo \\$$field`; do
-			value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"`
-
-			if [ -n "$value" ]; then
-echo "$field=$value"
-break
-			fi
-		done
-	done) | $VORBISTAG "$2"
+		case "$field" in
+			(*=*) echo "$field";;
+			(*)
+value=""
+for conv in `eval echo \\$$field`; do
+	value=`$CUEPRINT -n $trackno -t "$conv\n" "$cue_file"`
+
+	if [ -n "$value" ]; then
+		echo "$field=$value"
+		break
+	fi
+done
+;;
+		esac
+	done) | $VORBISTAG "$file"
 }
 
 id3()
@@ -94,14 +104,19 @@
 	TRACKNUMBER='%n'
 
 	for field in $fields; do
-		value=""
-		for conv in `eval echo \\$$field`; do
-			value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"`
-
-			if [ -n "$value" ]; then
-break
-			fi
-		done
+		case "$field" in
+			*=*) value="${field#*=}";;
+			*)
+value=""
+for conv in `eval echo \\$$field`; do
+	value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"`
+
+	if [ -n "$value" ]; then
+		break
+	fi
+done
+;;
+		esac
 
 		if [ -n "$value" ]; then
 			case $field in
@@ -144,6 +159,15 @@
 	ntrack=`cueprint -d '%N' "$cue_file"`
 	trackno=1
 
+	FILES= FIELDS=
+	for arg in "$@"; do
+		case "$arg" in
+			*.*) FILES="$FILES $arg";;
+			*) FIELDS="$FIELDS $arg";;
+		esac
+	done
+
+	set -- $FILES
 	if [ $# -ne $ntrack ]; then
 		echo "warning: number of files does not match number of tracks"
 	fi
@@ -151,13 +175,13 @@
 	for file in "$@"; do
 		case $file in
 		*.[Ff][Ll][Aa][Cc])
-			vorbis $trackno "$file"
+			vorbis $trackno "$file" $FIELDS
 			;;
 		*.[Oo][Gg][Gg])
-			vorbis $trackno "$file"
+			vorbis $trackno "$file" $FIELDS
 			;;
 		*.[Mm][Pp]3)
-			id3 $trackno "$file"
+			id3 $trackno "$file" $FIELDS
 			;;
 		*)
 			echo "$file: uknown file type"
@@ -168,3 +192,5 @@
 }
 
 main "$@"
+
+# vim:noet ts=8 sts=8 sw=8


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Bug#655079: pad tracknumbers with leading zeroes

2012-01-08 Thread martin f krafft
Package: cuetools
Version: 1.3.1-12
Severity: wishlist
File: /usr/bin/cuetag
Tags: patch

Please consider the following patch to cuetag, which ensures that
tracknumbers are zero-padded to two digits. That seems to be common
usage.

--- cuetag  2012-01-08 13:13:27.694212038 +0100
+++ cuetag2 2012-01-08 13:19:35.751229091 +0100
@@ -51,8 +51,8 @@
  TITLE='%t'
  VERSION=''
  ALBUM='%T'
-   TRACKNUMBER='%n'
-   TRACKTOTAL='%N'
+   TRACKNUMBER='%02n'
+   TRACKTOTAL='%02N'
  ARTIST='%c %p'
  PERFORMER='%p'
  COPYRIGHT=''

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-rc4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_NZ, LC_CTYPE=en_NZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages cuetools depends on:
ii  id3v2  0.1.12-2
ii  libc6  2.13-24

Versions of packages cuetools recommends:
ii  flac  1.2.1-6

cuetools suggests no packages.

-- no debconf information

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Processing of medit_1.0.93-1_amd64.changes

2012-01-08 Thread Debian FTP Masters
medit_1.0.93-1_amd64.changes uploaded successfully to localhost
along with the files:
  medit_1.0.93-1.dsc
  medit_1.0.93.orig.tar.gz
  medit_1.0.93-1.debian.tar.gz
  medit_1.0.93-1_amd64.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rjtda-0003tp...@franck.debian.org



Bug#648960: marked as done (medit lost standard hotkeys)

2012-01-08 Thread Debian Bug Tracking System
Your message dated Sun, 08 Jan 2012 14:50:51 +
with message-id 
and subject line Bug#648960: fixed in medit 1.0.93-1
has caused the Debian Bug report #648960,
regarding medit lost standard hotkeys
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
648960: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648960
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: medit
Version: 1.0.3-1+b1

(Using debian/sid via aptosid)

Many medit hotkeys do not work anymore. E.g. ctrl+f for the find 
requester or ctrl+s for saving changes do not have an effect anymore. On 
startup medit prints many warnings to the console that probably are 
related to this issue. Here are just some examples:


...

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 347, function 
_moo_accel_register: could not parse accelerator '7'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 248, function 
set_accel: could not parse accelerator '7'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 347, function 
_moo_accel_register: could not parse accelerator '9'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 248, function 
set_accel: could not parse accelerator '9'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 347, function 
_moo_accel_register: could not parse accelerator '8'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 248, function 
set_accel: could not parse accelerator '8'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 347, function 
_moo_accel_register: could not parse accelerator 'g'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 347, function 
_moo_accel_register: could not parse accelerator 'f'

(medit:5374): Moo-WARNING **: in file mooutils/mooaccel.c, line 248, function set_accel: 
could not parse accelerator 'f'

...

I also tried to reconfigure the hotkeys on the medit GUI, but this did 
not work. The newly configured hotkey does not work, and when opening 
the hotkey configuration window again, the hotkey is resetted to 
"Default" which is empty, again.


On trying to set the hotkey medit prints the following lines to the console:

(medit:5385): Moo-CRITICAL **: in file mooutils/mooaccel.c, line 309, function 
_moo_get_default_accel: Condition 'accel != NULL' failed

(medit:5385): Moo-CRITICAL **: in file mooutils/mooaccel.c, line 309, function 
_moo_get_default_accel: Condition 'accel != NULL' failed

(medit:5385): Moo-WARNING **: in file mooutils/mooaccel.c, line 700, function 
_moo_accel_normalize: could not parse accelerator 's'

(medit:5385): Moo-CRITICAL **: in file mooutils/mooaccel.c, line 380, function 
moo_modify_accel_real: Condition 'new_accel != ((void *)0)' failed


Greetings,
Gert


--- End Message ---
--- Begin Message ---
Source: medit
Source-Version: 1.0.93-1

We believe that the bug you reported is fixed in the latest version of
medit, which is due to be installed in the Debian FTP archive:

medit_1.0.93-1.debian.tar.gz
  to main/m/medit/medit_1.0.93-1.debian.tar.gz
medit_1.0.93-1.dsc
  to main/m/medit/medit_1.0.93-1.dsc
medit_1.0.93-1_amd64.deb
  to main/m/medit/medit_1.0.93-1_amd64.deb
medit_1.0.93.orig.tar.gz
  to main/m/medit/medit_1.0.93.orig.tar.gz



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 648...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Muammar El Khatib  (supplier of updated medit 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 ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 07 Jan 2012 21:45:54 +0100
Source: medit
Binary: medit
Architecture: source amd64
Version: 1.0.93-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: Muammar El Khatib 
Description: 
 medit  - Useful programming and around-programming text editor
Closes: 648960
Changes: 
 medit (1.0.93-1) unstable; urgency=low
 .
   * QA upload.
   * New upstream release.
   * Hotkeys are working correctly in this new upstream release.
 (Closes: #648960)
Checksums-Sha1: 
 efd6e25b83eb672d806288f26414344bcf6a04a4 1199 medit_1.0.93-1.dsc
 54e30f8b9ef51b7c7b525fd64dd184081b639983 2188164 medit_1.0.93.orig.tar.gz
 19ca1315986893b0689f70c7fb0d9c401d1c9f3a 6818 medit_

medit_1.0.93-1_amd64.changes ACCEPTED into unstable

2012-01-08 Thread Debian FTP Masters



Accepted:
medit_1.0.93-1.debian.tar.gz
  to main/m/medit/medit_1.0.93-1.debian.tar.gz
medit_1.0.93-1.dsc
  to main/m/medit/medit_1.0.93-1.dsc
medit_1.0.93-1_amd64.deb
  to main/m/medit/medit_1.0.93-1_amd64.deb
medit_1.0.93.orig.tar.gz
  to main/m/medit/medit_1.0.93.orig.tar.gz


Override entries for your package:
medit_1.0.93-1.dsc - source editors
medit_1.0.93-1_amd64.deb - optional editors

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 648960 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rju5d-0002h4...@franck.debian.org



Bug#527403: allegro4.2: FTBFS: E: Package 'libjack0.100.0-dev' has no installation candidate

2012-01-08 Thread Jonathan Nieder
Hi Christoph,

Christoph Egger wrote:

> allegro4.2 doesn't build:
>
>   E: Package 'libjack0.100.0-dev' has no installation candidate
>
> Please note that sbuild will only consider the first alternative for
> build-depends.

Do you have a relevant log?  allegro4.2 built fine on autobuilders in
2010-07-25[1], when libjack0.100.0-dev was already a virtual package.

Jonathan
who is curious about whether this needs fixing in squeeze

[1] https://buildd.debian.org/status/package.php?p=allegro4.2&suite=squeeze



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120109003412.GA30700@burratino