rpms/xmms-mplayer/devel xmms-mplayer.spec,1.5,1.6
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/xmms-mplayer/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv28527
Modified Files:
xmms-mplayer.spec
Log Message:
* Sun May 03 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 0.5-7
- Fix F22 FTBFS rhbz#3620
Index: xmms-mplayer.spec
===================================================================
RCS file: /cvs/free/rpms/xmms-mplayer/devel/xmms-mplayer.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xmms-mplayer.spec 31 Aug 2014 13:54:59 -0000 1.5
+++ xmms-mplayer.spec 3 May 2015 16:47:37 -0000 1.6
@@ -1,7 +1,7 @@
Name: xmms-mplayer
Summary: MPlayer plugin for XMMS
Version: 0.5
-Release: 6%{?dist}
+Release: 7%{?dist}
License: GPL+
Group: Applications/Multimedia
URL: http://xmmsmplayer.sourceforge.net
@@ -28,6 +28,7 @@
aclocal
autoconf
libtoolize --force
+automake --add-missing
# Check if there's anything new:
[ -s NEWS ] && exit 1
@@ -52,6 +53,9 @@
%{_libdir}/xmms/Input/libxmmsmplayer.*
%changelog
+* Sun May 03 2015 Leigh Scott <leigh123linux(a)googlemail.com> - 0.5-7
+- Fix F22 FTBFS rhbz#3620
+
* Sun Aug 31 2014 Sérgio Basto <sergio(a)serjux.com> - 0.5-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
9 years, 6 months
rpms/mixxx/devel 0001-Improve-detection-of-libmp4-libmp4v2.patch, NONE, 1.1 mixxx.spec, 1.16, 1.17
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mixxx/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19273
Modified Files:
mixxx.spec
Added Files:
0001-Improve-detection-of-libmp4-libmp4v2.patch
Log Message:
Fix build on f22
0001-Improve-detection-of-libmp4-libmp4v2.patch:
features.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- NEW FILE 0001-Improve-detection-of-libmp4-libmp4v2.patch ---
>From 6b38aa6278cb8e622fbb507407a6706501426be5 Mon Sep 17 00:00:00 2001
From: Uwe Klotz <uwe_klotz(a)web.de>
Date: Sat, 9 Nov 2013 09:31:44 +0100
Subject: [PATCH] Improve detection of libmp4/libmp4v2
This was needed to compile Mixxx with faad enabled on Fedora 19
---
build/features.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/build/features.py b/build/features.py
index 72dd7dd..d324e1c 100644
--- a/build/features.py
+++ b/build/features.py
@@ -523,10 +523,11 @@ class FAAD(Feature):
have_mp4v2_h = conf.CheckHeader('mp4v2/mp4v2.h')
have_mp4v2 = conf.CheckLib(['mp4v2','libmp4v2'], autoadd=False)
+ have_mp4_h = conf.CheckHeader('mp4.h')
have_mp4 = conf.CheckLib('mp4', autoadd=False)
# Either mp4 or mp4v2 works
- have_mp4 = (have_mp4v2_h and have_mp4v2) or have_mp4
+ have_mp4 = (have_mp4v2_h or have_mp4_h) and (have_mp4v2 or have_mp4)
if not have_mp4:
raise Exception('Could not find libmp4, libmp4v2 or the libmp4v2 development headers.')
--
2.1.0
Index: mixxx.spec
===================================================================
RCS file: /cvs/free/rpms/mixxx/devel/mixxx.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- mixxx.spec 1 Sep 2014 02:20:23 -0000 1.16
+++ mixxx.spec 3 May 2015 14:13:56 -0000 1.17
@@ -1,6 +1,6 @@
Name: mixxx
Version: 1.11.0
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: Mixxx is open source software for DJ'ing
Group: Applications/Multimedia
@@ -10,11 +10,13 @@
Patch0: %{name}-%{version}-20130517bzr.patch
Patch1: %{name}-%{version}-installpath.patch
Patch2: %{name}-%{version}-wtf.patch
+Patch3: 0001-Improve-detection-of-libmp4-libmp4v2.patch
# Updated manual...build it yourself with:
# 1) bzr checkout lp:~mixxxdevelopers/mixxx/manual-1.11.x
# 2) cd manual-1.11.x; make html; make latexpdf; make latexpdf
Source1: %{name}-%{version}-20130517bzr.tar.bz2
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+ExclusiveArch: i686 x86_64
#Build tools
BuildRequires: desktop-file-utils
@@ -22,6 +24,7 @@
#Mandatory Requirements
BuildRequires: alsa-lib-devel >= 1.0.10
+BuildRequires: faad2-devel
#BuildRequires: jack-audio-connection-kit-devel >= 0.61.0 #jack seems deprecated to portaudio
BuildRequires: qt4-devel >= 4.3
BuildRequires: qt4-webkit-devel
@@ -65,6 +68,7 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
%setup -T -D -a 1
# Fix file permissions. (Already fixed upstream.)
@@ -85,14 +89,13 @@
scons %{?_smp_mflags} \
prefix=%{_prefix} \
qtdir=%{_qt4_prefix} \
+ faad=1 \
ladspa=0 \
shoutcast=1 hifieq=1 script=0 optimize=0 \
%install
-rm -rf $RPM_BUILD_ROOT
-
export CFLAGS=$RPM_OPT_FLAGS
export LIBDIR=$RPM_BUILD_ROOT/%{_libdir}
scons %{?_smp_mflags} \
@@ -109,21 +112,24 @@
rm -rf $RPM_BUILD_ROOT%{_docdir}
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
%files
-%defattr(-,root,root,-)
%doc COPYING LICENSE README README.macro
%doc Mixxx-Manual.pdf
%{_bindir}/%{name}
%{_datadir}/%{name}/
+%dir %{_libdir}/%{name}/plugins/vamp
%{_libdir}/%{name}/plugins/vamp/libmixxxminimal.so
+%dir %{_libdir}/%{name}/plugins/soundsource
+%{_libdir}/%{name}/plugins/soundsource/libsoundsourcem4a.so
%{_datadir}/applications/mixxx.desktop
%{_datadir}/pixmaps/mixxx-icon.png
%changelog
+* Sun May 03 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1.11.0-4
+- Add ExclusiveArch - Workaround rfbz#2413
+- Add m4a support - rhbz#3488
+- Spec file clean-up
+
* Mon Sep 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1.11.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
@@ -139,7 +145,7 @@
* Wed Feb 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.9.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
-* Mon Nov 8 2011 John Brier <johnbrier(a)gmail.com> - 1.9.2-1
+* Tue Nov 8 2011 John Brier <johnbrier(a)gmail.com> - 1.9.2-1
- Update to 1.9.2
- build with shoutcast support
- remove -n option to setup since upstream source extracts
9 years, 6 months
rpms/transcode/devel transcode.spec,1.44,1.45
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/transcode/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17002
Modified Files:
transcode.spec
Log Message:
Disable pvm3 on arm
Index: transcode.spec
===================================================================
RCS file: /cvs/free/rpms/transcode/devel/transcode.spec,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- transcode.spec 25 Jul 2014 18:05:25 -0000 1.44
+++ transcode.spec 3 May 2015 12:28:16 -0000 1.45
@@ -7,7 +7,7 @@
Name: transcode
Version: 1.1.7
-Release: 12%{?dist}
+Release: 13%{?dist}
Summary: Video stream processing tool
Group: Applications/Multimedia
@@ -103,9 +103,11 @@
--enable-ogg \
--enable-vorbis \
--enable-theora \
+%ifarch %{ix86} x86_64
--enable-pvm3 \
--with-pvm3-libs=`ls -1d %{pvmdir}/lib/LINUX*` \
--with-pvm3-includes=%{pvmdir}/include \
+%endif
--enable-libdv \
--enable-libquicktime \
--enable-a52 \
@@ -154,6 +156,9 @@
%changelog
+* Sun May 03 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1.1.7-13
+- Disable pvm3 on arm - rhbz#986677
+
* Fri Jul 25 2014 Orion Poplawski <orion(a)cora.nwra.com> - 1.1.7-12
- Add patch to fix build with freetype 2.5
9 years, 6 months
rpms/ffmpeg-compat/devel ffmpeg-compat.spec,1.21,1.22
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg-compat/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv14471
Modified Files:
ffmpeg-compat.spec
Log Message:
Fix build with f22
Index: ffmpeg-compat.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg-compat/devel/ffmpeg-compat.spec,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ffmpeg-compat.spec 24 Nov 2014 19:29:00 -0000 1.21
+++ ffmpeg-compat.spec 3 May 2015 10:29:55 -0000 1.22
@@ -10,7 +10,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg-compat
Version: 0.6.7
-Release: 8%{?dist}
+Release: 9%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -79,6 +79,7 @@
%global ff_configure \
../configure \\\
+ --disable-doc \\\
--prefix=%{_prefix} \\\
--bindir=%{_bindir} \\\
--datadir=%{_datadir}/%{name} \\\
@@ -235,6 +236,9 @@
%changelog
+* Sun May 03 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.7-9
+- Disable doc - rfbz#3616
+
* Mon Nov 24 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.7-8
- Add patch for arm - reported by Tobias Brodel
9 years, 6 months
rpms/autopano-sift-C/devel dead.package, NONE, 1.1 .cvsignore, 1.3, NONE autopano-sift-C.README.fedora, 1.2, NONE autopano-sift-C.spec, 1.12, NONE sources, 1.3, NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/autopano-sift-C/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18105/devel
Added Files:
dead.package
Removed Files:
.cvsignore autopano-sift-C.README.fedora autopano-sift-C.spec
sources
Log Message:
dead.package, replaced by cpfind in hugin-base
--- NEW FILE dead.package ---
# Deprecated tool - replaced by cpfind in current hugin-base
--- .cvsignore DELETED ---
--- autopano-sift-C.README.fedora DELETED ---
--- autopano-sift-C.spec DELETED ---
--- sources DELETED ---
9 years, 6 months
rpms/wl-kmod/devel wl-kmod.spec,1.112,1.113
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12303
Modified Files:
wl-kmod.spec
Log Message:
* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-7.7
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.112
retrieving revision 1.113
diff -u -r1.112 -r1.113
--- wl-kmod.spec 22 Apr 2015 11:28:51 -0000 1.112
+++ wl-kmod.spec 2 May 2015 09:24:48 -0000 1.113
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 6.30.223.248
-Release: 7%{?dist}.6
+Release: 7%{?dist}.7
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -102,6 +102,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-7.7
+- Rebuilt for kernel
+
* Wed Apr 22 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-7.6
- Rebuilt for kernel
9 years, 6 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.199,1.200
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12182
Modified Files:
nvidia-kmod.spec
Log Message:
* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:346.59-1.3
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.199
retrieving revision 1.200
diff -u -r1.199 -r1.200
--- nvidia-kmod.spec 22 Apr 2015 11:28:44 -0000 1.199
+++ nvidia-kmod.spec 2 May 2015 09:24:41 -0000 1.200
@@ -9,7 +9,7 @@
Epoch: 1
Version: 346.59
# Taken over by kmodtool
-Release: 1%{?dist}.2
+Release: 1%{?dist}.3
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
%changelog
+* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:346.59-1.3
+- Rebuilt for kernel
+
* Wed Apr 22 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:346.59-1.2
- Rebuilt for kernel
9 years, 6 months
rpms/nvidia-340xx-kmod/devel nvidia-340xx-kmod.spec,1.18,1.19
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-340xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12058
Modified Files:
nvidia-340xx-kmod.spec
Log Message:
* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-2.8
- Rebuilt for kernel
Index: nvidia-340xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-340xx-kmod/devel/nvidia-340xx-kmod.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- nvidia-340xx-kmod.spec 22 Apr 2015 11:28:36 -0000 1.18
+++ nvidia-340xx-kmod.spec 2 May 2015 09:24:34 -0000 1.19
@@ -9,7 +9,7 @@
Epoch: 1
Version: 340.76
# Taken over by kmodtool
-Release: 2%{?dist}.7
+Release: 2%{?dist}.8
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-2.8
+- Rebuilt for kernel
+
* Wed Apr 22 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 1:340.76-2.7
- Rebuilt for kernel
9 years, 6 months
rpms/nvidia-304xx-kmod/devel nvidia-304xx-kmod.spec,1.40,1.41
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11933
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.6
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/nvidia-304xx-kmod.spec,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- nvidia-304xx-kmod.spec 22 Apr 2015 11:28:29 -0000 1.40
+++ nvidia-304xx-kmod.spec 2 May 2015 09:24:25 -0000 1.41
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.125
# Taken over by kmodtool
-Release: 3%{?dist}.5
+Release: 3%{?dist}.6
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
%changelog
+* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.6
+- Rebuilt for kernel
+
* Wed Apr 22 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 304.125-3.5
- Rebuilt for kernel
9 years, 6 months
rpms/xtables-addons-kmod/devel xtables-addons-kmod.spec,1.55,1.56
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11810
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1.18
- Rebuilt for kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/xtables-addons-kmod.spec,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- xtables-addons-kmod.spec 22 Apr 2015 11:28:22 -0000 1.55
+++ xtables-addons-kmod.spec 2 May 2015 09:24:17 -0000 1.56
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.6
-Release: 1%{?dist}.17
+Release: 1%{?dist}.18
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -65,6 +65,9 @@
rm -rf %{buildroot}
%changelog
+* Sat May 02 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1.18
+- Rebuilt for kernel
+
* Wed Apr 22 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1.17
- Rebuilt for kernel
9 years, 6 months