rpms/gstreamer1-libav Makefile, NONE, 1.1 import.log, NONE, 1.1 pkg.acl, NONE, 1.1
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/gstreamer1-libav
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsc20330/rpms/gstreamer1-libav
Added Files:
Makefile import.log pkg.acl
Log Message:
Setup of module gstreamer1-libav
--- NEW FILE Makefile ---
# Top level Makefile for module gstreamer1-libav
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
--- NEW FILE import.log ---
--- NEW FILE pkg.acl ---
12 years
rpms/gstreamer1-libav/devel - New directory
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/gstreamer1-libav/devel
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsc20330/rpms/gstreamer1-libav/devel
Log Message:
Directory /cvs/free/rpms/gstreamer1-libav/devel added to the repository
12 years
rpms/gstreamer1-libav - New directory
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/gstreamer1-libav
In directory old02.ovh.rpmfusion.lan:/home/rpmfusion/kwizart/free/owners/tmpcvsc20330/rpms/gstreamer1-libav
Log Message:
Directory /cvs/free/rpms/gstreamer1-libav added to the repository
12 years
rpms/mame/F-18 .cvsignore, 1.64, 1.65 mame.spec, 1.74, 1.75 sources, 1.64, 1.65
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mame/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19251
Modified Files:
.cvsignore mame.spec sources
Log Message:
* Tue Oct 30 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.147u2-1
- Updated to 0.147u2
- Conditionalised the low memory workaround
- Use system libjpeg-turbo on Fedora 19 and above
- Do not delete the entire obj/, leave the bits needed by the -debuginfo package
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mame/F-18/.cvsignore,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- .cvsignore 28 Oct 2012 06:49:55 -0000 1.64
+++ .cvsignore 6 Nov 2012 20:08:26 -0000 1.65
@@ -1,2 +1,3 @@
mame0147s.exe
-whatsnew_0147.zip
+0147u1_diff.zip
+0147u2_diff.zip
Index: mame.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mame/F-18/mame.spec,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- mame.spec 28 Oct 2012 12:37:17 -0000 1.74
+++ mame.spec 6 Nov 2012 20:08:27 -0000 1.75
@@ -5,7 +5,7 @@
%bcond_with debug
%global baseversion 147
-%global sourceupdate 0
+%global sourceupdate 2
# work around low memory on the RPM Fusion builder
%bcond_without lowmem
@@ -26,12 +26,10 @@
License: MAME License
URL: http://mamedev.org/
Source0: http://mamedev.org/downloader.php?file=releases/%{name}0%{baseversion}s.exe
-#Get from http://mamedev.org/releases/whatsnew_0%{baseversion}.txt and compress
-Source100: whatsnew_0%{baseversion}.zip
%if 0%{?sourceupdate}
#Source updates
-#Source1: http://mamedev.org/updates/0%{baseversion}u1_diff.zip
-#Source2: http://mamedev.org/updates/0%{baseversion}u2_diff.zip
+Source1: http://mamedev.org/updates/0%{baseversion}u1_diff.zip
+Source2: http://mamedev.org/updates/0%{baseversion}u2_diff.zip
#Source3: http://mamedev.org/updates/0%{baseversion}u3_diff.zip
#Source4: http://mamedev.org/updates/0%{baseversion}u4_diff.zip
#Source5: http://mamedev.org/updates/0%{baseversion}u5_diff.zip
@@ -143,10 +141,10 @@
%prep
%setup -qcT
-install -pm 644 %{SOURCE100} .
for sourcefile in %{sources}; do
7za x $sourcefile
done
+sed -i '2157d' src/mess/mess.mak
find . -type f -not -name *.png -exec sed -i 's/\r//' {} \;
%if 0%{?sourceupdate}
i=1
@@ -213,13 +211,13 @@
%if %{with debug}
make %{?_smp_mflags} $MAME_FLAGS DEBUG=1 \
OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" all
-rm -rf obj
+find obj -type f -not -name \*.lh -and -not -name drivlist.c -exec rm {} \;
make %{?_smp_mflags} $MAME_FLAGS DEBUG=1 TARGET=mess \
OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/mess;\"'" all
%else
make %{?_smp_mflags} $MAME_FLAGS \
OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" all
-rm -rf obj
+find obj -type f -not -name \*.lh -and -not -name drivlist.c -exec rm {} \;
make %{?_smp_mflags} $MAME_FLAGS TARGET=mess\
OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/mess;\"'" all
%endif
@@ -335,7 +333,7 @@
%endif
%files -n mess
-#doc messnew*.txt
+%doc messnew*.txt
%config(noreplace) %{_sysconfdir}/mess/mess.ini
%dir %{_sysconfdir}/mess
%{_sysconfdir}/skel/.mess
@@ -363,7 +361,22 @@
%changelog
-* Sun Oct 28 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.147-1
+* Tue Oct 30 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.147u2-1
+- Updated to 0.147u2
+- Conditionalised the low memory workaround
+- Use system libjpeg-turbo on Fedora 19 and above
+- Do not delete the entire obj/, leave the bits needed by the -debuginfo package
+
+* Sat Oct 27 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.147u1-2
+- Work around low memory on the RPM Fusion builder
+
+* Mon Oct 08 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.147u1-1
+- Updated to 0.147u1
+- Dropped missing whatsnew.txt workaround
+- Fixed incorrect paths in mess.ini
+- Remove the object tree between mame and mess builds to prevent mess using /etc/mame
+
+* Fri Sep 21 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.147-1
- Updated to 0.147
- Merged with mess
- Streamlined the directories installation
@@ -371,8 +384,6 @@
- Fixed mame.6 installation location
- Re-enabled ldplayer
- Cleaned-up ancient Obsoletes/Provides
-- Worked around low memory on the RPM Fusion builder
-- Use system libjpeg-turbo on Fedora 19 and above
* Mon Aug 20 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.146u5-1
- Updated to 0.146u5
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mame/F-18/sources,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- sources 28 Oct 2012 06:49:55 -0000 1.64
+++ sources 6 Nov 2012 20:08:27 -0000 1.65
@@ -1,2 +1,3 @@
02b38e27f0840bbd0b637385f16f3747 mame0147s.exe
-0b4bec8581c6cfaa3e0ac75d7d575fa9 whatsnew_0147.zip
+7f2dbea383138a6ae2bbaac3b32376d6 0147u1_diff.zip
+c0306cbf583309d23549529f441e97f2 0147u2_diff.zip
12 years
rpms/qmmp-plugins-freeworld/F-18 .cvsignore, 1.21, 1.22 qmmp-plugins-freeworld.spec, 1.30, 1.31 sources, 1.21, 1.22
by Karel Volný
Author: kvolny
Update of /cvs/free/rpms/qmmp-plugins-freeworld/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv4163
Modified Files:
.cvsignore qmmp-plugins-freeworld.spec sources
Log Message:
* Tue Nov 06 2012 Karel Volný <kvolny(a)redhat.com> 0.6.4-1
- version bump
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/F-18/.cvsignore,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- .cvsignore 16 Aug 2012 15:20:56 -0000 1.21
+++ .cvsignore 6 Nov 2012 15:46:16 -0000 1.22
@@ -1 +1 @@
-qmmp-0.6.3.tar.bz2
+qmmp-0.6.4.tar.bz2
Index: qmmp-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/F-18/qmmp-plugins-freeworld.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- qmmp-plugins-freeworld.spec 16 Aug 2012 15:20:56 -0000 1.30
+++ qmmp-plugins-freeworld.spec 6 Nov 2012 15:46:16 -0000 1.31
@@ -1,5 +1,5 @@
Name: qmmp-plugins-freeworld
-Version: 0.6.3
+Version: 0.6.4
Release: 1%{?dist}
Summary: Plugins for qmmp (Qt-based multimedia player)
@@ -131,6 +131,9 @@
%changelog
+* Tue Nov 06 2012 Karel Volný <kvolny(a)redhat.com> 0.6.4-1
+- version bump
+
* Mon Jul 30 2012 Karel Volný <kvolny(a)redhat.com> 0.6.3-1
- version bump
Index: sources
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/F-18/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources 16 Aug 2012 15:20:56 -0000 1.21
+++ sources 6 Nov 2012 15:46:16 -0000 1.22
@@ -1 +1 @@
-684fbd819150ca474948cf876848a270 qmmp-0.6.3.tar.bz2
+134e9b5187e73f0fd333b7b6c9e8672b qmmp-0.6.4.tar.bz2
12 years
rpms/qmmp-plugins-freeworld/devel .cvsignore, 1.21, 1.22 qmmp-plugins-freeworld.spec, 1.30, 1.31 sources, 1.21, 1.22
by Karel Volný
Author: kvolny
Update of /cvs/free/rpms/qmmp-plugins-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3930
Modified Files:
.cvsignore qmmp-plugins-freeworld.spec sources
Log Message:
* Tue Nov 06 2012 Karel Volný <kvolny(a)redhat.com> 0.6.4-1
- version bump
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/.cvsignore,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- .cvsignore 16 Aug 2012 15:20:56 -0000 1.21
+++ .cvsignore 6 Nov 2012 15:44:34 -0000 1.22
@@ -1 +1 @@
-qmmp-0.6.3.tar.bz2
+qmmp-0.6.4.tar.bz2
Index: qmmp-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/qmmp-plugins-freeworld.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- qmmp-plugins-freeworld.spec 16 Aug 2012 15:20:56 -0000 1.30
+++ qmmp-plugins-freeworld.spec 6 Nov 2012 15:44:34 -0000 1.31
@@ -1,5 +1,5 @@
Name: qmmp-plugins-freeworld
-Version: 0.6.3
+Version: 0.6.4
Release: 1%{?dist}
Summary: Plugins for qmmp (Qt-based multimedia player)
@@ -131,6 +131,9 @@
%changelog
+* Tue Nov 06 2012 Karel Volný <kvolny(a)redhat.com> 0.6.4-1
+- version bump
+
* Mon Jul 30 2012 Karel Volný <kvolny(a)redhat.com> 0.6.3-1
- version bump
Index: sources
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources 16 Aug 2012 15:20:56 -0000 1.21
+++ sources 6 Nov 2012 15:44:34 -0000 1.22
@@ -1 +1 @@
-684fbd819150ca474948cf876848a270 qmmp-0.6.3.tar.bz2
+134e9b5187e73f0fd333b7b6c9e8672b qmmp-0.6.4.tar.bz2
12 years
rpms/xorg-x11-drv-catalyst/F-18 xorg-x11-drv-catalyst.spec,1.8,1.9
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-catalyst/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12313
Modified Files:
xorg-x11-drv-catalyst.spec
Log Message:
* Mon Nov 05 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 12.11-0.2.beta
- update blacklist scriptlets
Index: xorg-x11-drv-catalyst.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-catalyst/F-18/xorg-x11-drv-catalyst.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- xorg-x11-drv-catalyst.spec 27 Oct 2012 00:57:55 -0000 1.8
+++ xorg-x11-drv-catalyst.spec 5 Nov 2012 20:46:59 -0000 1.9
@@ -5,7 +5,7 @@
%global __strip /bin/true
Name: xorg-x11-drv-catalyst
Version: 12.11
-Release: 0.1.beta%{?dist}
+Release: 0.2.beta%{?dist}
Summary: AMD's proprietary driver for ATI graphic cards
Group: User Interface/X Hardware Support
License: Redistributable, no modification permitted
@@ -318,7 +318,7 @@
/sbin/service atieventsd start >/dev/null 2>&1
if [ -x /sbin/grubby ] ; then
GRUBBYLASTKERNEL=`/sbin/grubby --default-kernel`
- /sbin/grubby --update-kernel=${GRUBBYLASTKERNEL} --args='radeon.modeset=0' &>/dev/null
+ /sbin/grubby --update-kernel=${GRUBBYLASTKERNEL} --args='radeon.modeset=0 rd.driver.blacklist=radeon' &>/dev/null
fi
fi ||:
@@ -331,7 +331,7 @@
if [ -x /sbin/grubby ] ; then
# remove rdblacklist from boot params in case they installed with v10.7, which blacklisted radeon upon installation
GRUBBYLASTKERNEL=`/sbin/grubby --default-kernel`
- /sbin/grubby --update-kernel=${GRUBBYLASTKERNEL} --remove-args='radeon.modeset=0 rdblacklist=radeon' &>/dev/null
+ /sbin/grubby --update-kernel=${GRUBBYLASTKERNEL} --remove-args='radeon.modeset=0 rdblacklist=radeon rd.driver.blacklist=radeon' &>/dev/null
fi
fi ||:
@@ -397,6 +397,9 @@
%changelog
+* Mon Nov 05 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 12.11-0.2.beta
+- update blacklist scriptlets
+
* Sat Oct 27 2012 Leigh Scott <leigh123linux(a)googlemail.com> - 12.11-0.1.beta
- Update to Catalyst 12.11 beta (internal version 9.01)
12 years
rpms/dvdstyler/F-16 .cvsignore, 1.11, 1.12 dvdstyler.spec, 1.16, 1.17 sources, 1.12, 1.13
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/dvdstyler/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv28809
Modified Files:
.cvsignore dvdstyler.spec sources
Log Message:
reverting last commit
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-16/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 5 Nov 2012 08:13:01 -0000 1.11
+++ .cvsignore 5 Nov 2012 09:18:59 -0000 1.12
@@ -1 +1 @@
-DVDStyler-2.3.3.tar.bz2
+DVDStyler-2.0rc1.tar.bz2
Index: dvdstyler.spec
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-16/dvdstyler.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- dvdstyler.spec 5 Nov 2012 08:13:01 -0000 1.16
+++ dvdstyler.spec 5 Nov 2012 09:18:59 -0000 1.17
@@ -1,15 +1,18 @@
Name: dvdstyler
Epoch: 1
-Version: 2.3.3
-Release: 1%{?dist}
+Version: 2.0
+Release: 0.1.rc1%{?dist}
Summary: Cross-platform DVD authoring application
Group: Applications/Multimedia
License: GPLv2+
URL: http://www.dvdstyler.de/
-Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}.tar.bz2
+Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}rc1.tar.bz2
Patch0: dvdstyler-make-desktopfile-valid.patch
Patch1: dvdstyler-wxVillaLib-libjpeg.patch
+# Based on http://www.freebsd.org/cgi/cvsweb.cgi/ports/multimedia/dvdstyler/files/pa...
+# Fixes 'directory not empty' error because of xmlto outputting a new .proc file
+Patch2: dvdstyler-docs-xmlto.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# build
BuildRequires: automake, autoconf
@@ -19,12 +22,11 @@
BuildRequires: wxGTK-devel >= 2.6.3
BuildRequires: wxsvg-devel >= 1.0.10
BuildRequires: ffmpeg-devel
-BuildRequires: ffmpeg
BuildRequires: libgnomeui-devel
# mpeg
BuildRequires: dvdauthor
# iso/burn
-BuildRequires: pkgconfig(libudev)
+BuildRequires: libudev-devel
BuildRequires: mkisofs
BuildRequires: dvd+rw-tools
#images
@@ -41,7 +43,7 @@
Requires: mjpegtools
Requires: mkisofs
Requires: mpgtx
-Requires: wxsvg >= 1.1.9
+Requires: wxsvg >= 1.0.10
# note: do not add Require: totem-backend or another DVD player - see
# RPM Fusion bug 366 for more details
@@ -52,9 +54,10 @@
%prep
-%setup -q -n DVDStyler-%{version}
+%setup -q -n DVDStyler-%{version}rc1
%patch0 -b .validdesktop
%patch1 -b .libjpeg
+%patch2 -b .xmlto
%{__sed} -i 's|_T("xine \\"dvd:/$DIR\\"");|_T("totem \\"dvd://$DIR\\"");|' src/Config.h
%build
@@ -80,6 +83,10 @@
%find_lang %{name}
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README TODO
@@ -90,28 +97,6 @@
%{_mandir}/*/*.gz
%changelog
-* Sun Nov 04 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3.3-1
-- New upstream release.
-
-* Sun Aug 26 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3-1
-- Update upstream release
-
-* Tue Aug 07 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3-0.1.rc1
-- Update upstream release
-- Drop patch2 and patch3, seems that was applied in upstream
-
-* Wed Jul 11 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.5.rc1
-- Switch to pkgconfig(libudev)
-
-* Tue Jun 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.4.rc1
-- Rebuilt for FFmpeg
-
-* Tue Feb 28 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.3.rc1
-- Rebuilt for x264/FFmpeg
-
-* Wed Feb 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.2.rc1
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-
* Wed Sep 28 2011 Stewart Adam <s.adam at diffingo.com> 1:2.0-0.1.rc1
- Update to 2.0rc1
Index: sources
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-16/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 5 Nov 2012 08:13:01 -0000 1.12
+++ sources 5 Nov 2012 09:18:59 -0000 1.13
@@ -1 +1 @@
-73d897ab26a7fb3792bf1f9bd90e0225 DVDStyler-2.3.3.tar.bz2
+d6acd1a2c6ec591b794c632d532d5887 DVDStyler-2.0rc1.tar.bz2
12 years
rpms/dvdstyler/F-16 .cvsignore, 1.10, 1.11 dvdstyler.spec, 1.15, 1.16 sources, 1.11, 1.12
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/dvdstyler/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24402
Modified Files:
.cvsignore dvdstyler.spec sources
Log Message:
* Sun Nov 04 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3.3-1
- New upstream release.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-16/.cvsignore,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- .cvsignore 28 Sep 2011 22:39:16 -0000 1.10
+++ .cvsignore 5 Nov 2012 08:13:01 -0000 1.11
@@ -1 +1 @@
-DVDStyler-2.0rc1.tar.bz2
+DVDStyler-2.3.3.tar.bz2
Index: dvdstyler.spec
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-16/dvdstyler.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- dvdstyler.spec 28 Sep 2011 22:39:16 -0000 1.15
+++ dvdstyler.spec 5 Nov 2012 08:13:01 -0000 1.16
@@ -1,18 +1,15 @@
Name: dvdstyler
Epoch: 1
-Version: 2.0
-Release: 0.1.rc1%{?dist}
+Version: 2.3.3
+Release: 1%{?dist}
Summary: Cross-platform DVD authoring application
Group: Applications/Multimedia
License: GPLv2+
URL: http://www.dvdstyler.de/
-Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}rc1.tar.bz2
+Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}.tar.bz2
Patch0: dvdstyler-make-desktopfile-valid.patch
Patch1: dvdstyler-wxVillaLib-libjpeg.patch
-# Based on http://www.freebsd.org/cgi/cvsweb.cgi/ports/multimedia/dvdstyler/files/pa...
-# Fixes 'directory not empty' error because of xmlto outputting a new .proc file
-Patch2: dvdstyler-docs-xmlto.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# build
BuildRequires: automake, autoconf
@@ -22,11 +19,12 @@
BuildRequires: wxGTK-devel >= 2.6.3
BuildRequires: wxsvg-devel >= 1.0.10
BuildRequires: ffmpeg-devel
+BuildRequires: ffmpeg
BuildRequires: libgnomeui-devel
# mpeg
BuildRequires: dvdauthor
# iso/burn
-BuildRequires: libudev-devel
+BuildRequires: pkgconfig(libudev)
BuildRequires: mkisofs
BuildRequires: dvd+rw-tools
#images
@@ -43,7 +41,7 @@
Requires: mjpegtools
Requires: mkisofs
Requires: mpgtx
-Requires: wxsvg >= 1.0.10
+Requires: wxsvg >= 1.1.9
# note: do not add Require: totem-backend or another DVD player - see
# RPM Fusion bug 366 for more details
@@ -54,10 +52,9 @@
%prep
-%setup -q -n DVDStyler-%{version}rc1
+%setup -q -n DVDStyler-%{version}
%patch0 -b .validdesktop
%patch1 -b .libjpeg
-%patch2 -b .xmlto
%{__sed} -i 's|_T("xine \\"dvd:/$DIR\\"");|_T("totem \\"dvd://$DIR\\"");|' src/Config.h
%build
@@ -83,10 +80,6 @@
%find_lang %{name}
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
%files -f %{name}.lang
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README TODO
@@ -97,6 +90,28 @@
%{_mandir}/*/*.gz
%changelog
+* Sun Nov 04 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3.3-1
+- New upstream release.
+
+* Sun Aug 26 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3-1
+- Update upstream release
+
+* Tue Aug 07 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3-0.1.rc1
+- Update upstream release
+- Drop patch2 and patch3, seems that was applied in upstream
+
+* Wed Jul 11 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.5.rc1
+- Switch to pkgconfig(libudev)
+
+* Tue Jun 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.4.rc1
+- Rebuilt for FFmpeg
+
+* Tue Feb 28 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.3.rc1
+- Rebuilt for x264/FFmpeg
+
+* Wed Feb 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.0-0.2.rc1
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
* Wed Sep 28 2011 Stewart Adam <s.adam at diffingo.com> 1:2.0-0.1.rc1
- Update to 2.0rc1
Index: sources
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-16/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 28 Sep 2011 22:39:16 -0000 1.11
+++ sources 5 Nov 2012 08:13:01 -0000 1.12
@@ -1 +1 @@
-d6acd1a2c6ec591b794c632d532d5887 DVDStyler-2.0rc1.tar.bz2
+73d897ab26a7fb3792bf1f9bd90e0225 DVDStyler-2.3.3.tar.bz2
12 years
rpms/dvdstyler/F-17 .cvsignore, 1.11, 1.12 dvdstyler.spec, 1.18, 1.19 sources, 1.12, 1.13
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/dvdstyler/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv20010
Modified Files:
.cvsignore dvdstyler.spec sources
Log Message:
* Sun Nov 04 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3.3-1
- New upstream release.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-17/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 26 Aug 2012 15:35:43 -0000 1.11
+++ .cvsignore 5 Nov 2012 02:07:30 -0000 1.12
@@ -1 +1 @@
-DVDStyler-2.3.tar.bz2
+DVDStyler-2.3.3.tar.bz2
Index: dvdstyler.spec
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-17/dvdstyler.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- dvdstyler.spec 26 Aug 2012 15:35:43 -0000 1.18
+++ dvdstyler.spec 5 Nov 2012 02:07:30 -0000 1.19
@@ -1,6 +1,6 @@
Name: dvdstyler
Epoch: 1
-Version: 2.3
+Version: 2.3.3
Release: 1%{?dist}
Summary: Cross-platform DVD authoring application
@@ -90,6 +90,9 @@
%{_mandir}/*/*.gz
%changelog
+* Sun Nov 04 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3.3-1
+- New upstream release.
+
* Sun Aug 26 2012 Sérgio Basto <sergio(a)serjux.com> - 2.3-1
- Update upstream release
Index: sources
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-17/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 26 Aug 2012 15:35:43 -0000 1.12
+++ sources 5 Nov 2012 02:07:30 -0000 1.13
@@ -1 +1 @@
-0f1b4e8e3e6acc24e73634160e727f20 DVDStyler-2.3.tar.bz2
+73d897ab26a7fb3792bf1f9bd90e0225 DVDStyler-2.3.3.tar.bz2
12 years