Author: goeran
Update of /cvs/free/rpms/m2vmp2cut/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28375
Modified Files:
m2vmp2cut.spec
Added Files:
m2vmp2cut.demuxpath.patch
Log Message:
* Mon Jun 13 2011 Göran Uddeborg <goeran(a)uddeborg.se> 0.79-7
- Apply a fix for a bug when giving a path to a file to demux.
m2vmp2cut.demuxpath.patch:
m2vmp2cut.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE m2vmp2cut.demuxpath.patch ---
diff --git a/bin/m2vmp2cut.sh b/bin/m2vmp2cut.sh
index af33a61..d2fcc89 100755
--- a/bin/m2vmp2cut.sh
+++ b/bin/m2vmp2cut.sh
@@ -101,7 +101,7 @@ cmd_demux () # Demux mpeg2 file[s] with ProjectX for further
editing...
test -d "$dir" && die "Directory '$dir' is on the way
(demuxed already)?"
mkdir "$dir"
- x $pjx -ini /dev/null -out "$dir" $basename ${1+"$@"}
+ x $pjx -ini /dev/null -out "$dir" "$dn/$basename"
${1+"$@"}
cd "$dir"
ln -s *.m2v video.m2v
ln -s *.mp2 audio.mp2
Index: m2vmp2cut.spec
===================================================================
RCS file: /cvs/free/rpms/m2vmp2cut/devel/m2vmp2cut.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- m2vmp2cut.spec 15 Feb 2011 21:03:07 -0000 1.3
+++ m2vmp2cut.spec 13 Jun 2011 19:15:21 -0000 1.4
@@ -1,6 +1,6 @@
Name: m2vmp2cut
Version: 0.79
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: MPEG2 frame accurate cutter
Summary(sv): MPEG2 bildprecis redigerare
@@ -13,6 +13,7 @@
Patch1: %{name}.libexec.patch
Patch2: %{name}.help-in-share.patch
Patch3: %{name}.timestamps.patch
+Patch4: %{name}.demuxpath.patch
BuildRequires: libtool
BuildRequires: gtk2-devel
BuildRequires: libmpeg2-devel
@@ -64,6 +65,10 @@
%patch2
# Preserve timestamps when installing
%patch3
+# Bug which appears when trying to demux on a file not in the current
+# directory. It is reported upstreams via email, and the fix will be
+# integrated in a future version of m2vmp2cut
+%patch4 -p1
# Old style removal of perl requirements.
cat << \EOF > %name-req
@@ -100,6 +105,9 @@
%{_mandir}/man1/%{name}.1.gz
%changelog
+* Mon Jun 13 2011 Göran Uddeborg <goeran(a)uddeborg.se> 0.79-7
+- Apply a fix for a bug when giving a path to a file to demux.
+
* Tue Feb 15 2011 Göran Uddeborg <goeran(a)uddeborg.se> 0.79-6
- Revert to old style perl requirement exclusion, since bug 1580 seems
to take a while to get fixed.