Your message dated Tue, 09 Oct 2012 17:16:09 +0200
with message-id <[email protected]>
and subject line Re: Bug#690028: unblock: transcode/3:1.1.7-3
has caused the Debian Bug report #690028,
regarding unblock: transcode/3:1.1.7-3
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 [email protected]
immediately.)
--
690028: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=690028
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock
Please unblock package transcode 3::1.1.7-3, it fixes bug#688618 and
bug#681436. I've also fixed an Ubuntu's bug [1] whose patch looked
good to me for Debian as well: https://launchpad.net/bugs/997226
As usual, the (minimalistic) patch is attached.
Thanks for considering.
unblock transcode/3:1.1.7-3
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -Nru transcode-1.1.7/debian/changelog transcode-1.1.7/debian/changelog
--- transcode-1.1.7/debian/changelog 2012-03-03 13:10:55.000000000 +0100
+++ transcode-1.1.7/debian/changelog 2012-10-08 11:51:45.000000000 +0200
@@ -1,3 +1,19 @@
+transcode (3:1.1.7-3) unstable; urgency=low
+
+ [ Alessio Treglia ]
+ * Depends on mawk | gawk, awk scripts don't seem to require
+ any gawk-specific feature. (LP: #997226)
+ * Bump Standards.
+
+ [ Fabian Greffrath ]
+ * Pass --enable-libmpeg2convert to configure to fix MPEG2
+ decoding (Closes: #688618).
+ * Remove myself from Uploaders.
+ * Remove "-vpre medium" from ffmpeg's arguments list to avoid
+ crashes as the "medium" preset doesn't exist. (Closes: #681436)
+
+ -- Alessio Treglia <[email protected]> Mon, 08 Oct 2012 10:51:41 +0100
+
transcode (3:1.1.7-2) unstable; urgency=low
* Upload to unstable.
diff -Nru transcode-1.1.7/debian/control transcode-1.1.7/debian/control
--- transcode-1.1.7/debian/control 2012-03-03 13:06:43.000000000 +0100
+++ transcode-1.1.7/debian/control 2012-08-27 12:17:00.000000000 +0200
@@ -3,11 +3,10 @@
Priority: optional
Maintainer: Debian Multimedia Maintainers <[email protected]>
Uploaders:
- Fabian Greffrath <[email protected]>,
Reinhard Tartler <[email protected]>,
Alessio Treglia <[email protected]>
Homepage: http://www.transcoding.org/
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
Build-Depends:
debhelper (>= 7.2),
dh-autoreconf,
@@ -46,12 +45,11 @@
Package: transcode
Architecture: any
Depends:
- gawk,
+ mawk | gawk,
xterm | x-terminal-emulator,
${misc:Depends},
${shlibs:Depends}
Recommends:
- mawk,
sox,
transcode-doc,
twolame
diff -Nru transcode-1.1.7/debian/patches/04_ffmpeg_options.patch transcode-1.1.7/debian/patches/04_ffmpeg_options.patch
--- transcode-1.1.7/debian/patches/04_ffmpeg_options.patch 1970-01-01 01:00:00.000000000 +0100
+++ transcode-1.1.7/debian/patches/04_ffmpeg_options.patch 2012-08-27 13:34:16.000000000 +0200
@@ -0,0 +1,26 @@
+Description: Remove "-vpre medium" from ffmpeg's command-line arguments list.
+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681436
+From: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681436#25
+---
+ export/ffmpeg_cfg.c | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+--- transcode.orig/export/ffmpeg_cfg.c
++++ transcode/export/ffmpeg_cfg.c
+@@ -126,7 +126,7 @@ int lavc_param_gmc = 0;
+ //int lavc_param_atag = 0;
+ //int lavc_param_abitrate = 224;
+
+-char *lavc_param_video_preset = "medium";
++char *lavc_param_video_preset = NULL;
+ char *lavc_param_ffmpeg_datadir = "/usr/share/ffmpeg";
+
+ TCConfigEntry lavcopts_conf[]={
+@@ -237,7 +237,6 @@ TCConfigEntry lavcopts_conf[]={
+ {"skip_top", &lavc_param_skip_top, TCCONF_TYPE_INT, TCCONF_FLAG_RANGE, 0, 1000},
+ {"skip_bottom", &lavc_param_skip_bottom, TCCONF_TYPE_INT, TCCONF_FLAG_RANGE, 0, 1000},
+ {"fps_code", &lavc_param_fps_code, TCCONF_TYPE_INT, TCCONF_FLAG_RANGE, 0, 9},
+- {"vpre", &lavc_param_video_preset, TCCONF_TYPE_STRING, 0, 0, 0},
+ {"ffmpeg_datadir", &lavc_param_ffmpeg_datadir, TCCONF_TYPE_STRING, 0, 0, 0},
+ {NULL, NULL, 0, 0, 0, 0}
+ };
diff -Nru transcode-1.1.7/debian/patches/series transcode-1.1.7/debian/patches/series
--- transcode-1.1.7/debian/patches/series 2012-03-03 13:06:43.000000000 +0100
+++ transcode-1.1.7/debian/patches/series 2012-08-27 13:27:57.000000000 +0200
@@ -1,2 +1,3 @@
01_filter_pv.c.diff
03_libav-api-fixes.diff
+04_ffmpeg_options.patch
diff -Nru transcode-1.1.7/debian/rules transcode-1.1.7/debian/rules
--- transcode-1.1.7/debian/rules 2012-03-03 13:06:43.000000000 +0100
+++ transcode-1.1.7/debian/rules 2012-10-08 11:49:45.000000000 +0200
@@ -22,6 +22,7 @@
confflags += --enable-libdvdread
confflags += --enable-libjpeg
confflags += --enable-libmpeg2
+confflags += --enable-libmpeg2convert
confflags += --enable-libpostproc
confflags += --enable-libquicktime
confflags += --enable-libxml2
--- End Message ---
--- Begin Message ---
On 09/10/2012 10:36, Alessio Treglia wrote:
> Package: release.debian.org
> Severity: normal
> User: [email protected]
> Usertags: unblock
>
> Please unblock package transcode 3::1.1.7-3, it fixes bug#688618 and
> bug#681436. I've also fixed an Ubuntu's bug [1] whose patch looked
> good to me for Debian as well: https://launchpad.net/bugs/997226
>
Unblocked.
Thanks for your work!
--
Mehdi Dogguy مهدي الدڤي
--- End Message ---