r33139 - in /desktop/unstable/brasero/debian: changelog patches/03_cue-invalid-frame-75.patch patches/series

biebl at users.alioth.debian.org biebl at users.alioth.debian.org
Wed Mar 14 00:08:49 UTC 2012


Author: biebl
Date: Wed Mar 14 00:08:48 2012
New Revision: 33139

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=33139
Log:
Acknowledge NMU

Added:
    desktop/unstable/brasero/debian/patches/03_cue-invalid-frame-75.patch
Modified:
    desktop/unstable/brasero/debian/changelog
    desktop/unstable/brasero/debian/patches/series

Modified: desktop/unstable/brasero/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/brasero/debian/changelog?rev=33139&op=diff
==============================================================================
--- desktop/unstable/brasero/debian/changelog [utf-8] (original)
+++ desktop/unstable/brasero/debian/changelog [utf-8] Wed Mar 14 00:08:48 2012
@@ -1,8 +1,16 @@
-brasero (3.2.0-4) UNRELEASED; urgency=low
-
+brasero (3.2.0-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+
+  [ Michael Biebl ]
   * Change section of gir1.2-brasero-3.0 to introspection.
 
- -- Michael Biebl <biebl at debian.org>  Fri, 16 Dec 2011 07:19:20 +0100
+  [ Simon McVittie ]
+  * Apply patch from Tanguy Ortolo to fix inability to burn tracks
+    with cdrdao if their length is fractionally less than a whole number
+    of seconds (Closes: #619723)
+
+ -- Simon McVittie <smcv at debian.org>  Sat, 03 Mar 2012 19:05:54 +0000
 
 brasero (3.2.0-3) unstable; urgency=low
 

Added: desktop/unstable/brasero/debian/patches/03_cue-invalid-frame-75.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/brasero/debian/patches/03_cue-invalid-frame-75.patch?rev=33139&op=file
==============================================================================
--- desktop/unstable/brasero/debian/patches/03_cue-invalid-frame-75.patch (added)
+++ desktop/unstable/brasero/debian/patches/03_cue-invalid-frame-75.patch [utf-8] Wed Mar 14 00:08:48 2012
@@ -1,0 +1,26 @@
+Description: Avoid generating invalid frame number 75
+ The conditional increment to the frame number, which is probably meant to
+ avoid loosing the last incomplete frame in the very last track of a disk, has
+ the side effect of generating frame numbers equal to 75, when they should be
+ between 0 and 74 included, which results in an unburnable image.
+ .
+ While the code could be adapted to count the last frame, it is clearer and
+ less intrusive to the original code to simply remove the conditional increment,
+ and possibily loosing 1/75th a second on the very last track should not matter
+ to anyone.
+Author: Tanguy Ortolo <tanguy+debian at ortolo.eu>
+Last-Update: 2011-11-10
+
+Index: brasero-3.0.0/plugins/audio2cue/burn-audio2cue.c
+===================================================================
+--- brasero-3.0.0.orig/plugins/audio2cue/burn-audio2cue.c	2010-08-16 04:55:07.000000000 +0200
++++ brasero-3.0.0/plugins/audio2cue/burn-audio2cue.c	2011-11-10 23:44:10.232078473 +0100
+@@ -317,7 +317,7 @@
+ 	else
+ 		frame = len * 75;
+ 
+-	frame = frame / 1000000000 + ((frame % 1000000000LL) ? 1:0);
++	frame = frame / 1000000000;
+ 
+ 	len /= 1000000000LL;
+ 	min = len / 60;

Modified: desktop/unstable/brasero/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/brasero/debian/patches/series?rev=33139&op=diff
==============================================================================
--- desktop/unstable/brasero/debian/patches/series [utf-8] (original)
+++ desktop/unstable/brasero/debian/patches/series [utf-8] Wed Mar 14 00:08:48 2012
@@ -1,2 +1,3 @@
 01_gcc-format-security-commit
 02_gcc-format-security
+03_cue-invalid-frame-75.patch




More information about the pkg-gnome-commits mailing list