rpms/meka/devel meka.spec,1.6,1.7
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/meka/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26007
Modified Files:
meka.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.80-0.5.20130725svn
- Rebuilt
Index: meka.spec
===================================================================
RCS file: /cvs/nonfree/rpms/meka/devel/meka.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- meka.spec 30 Sep 2013 08:55:11 -0000 1.6
+++ meka.spec 1 Oct 2013 16:32:24 -0000 1.7
@@ -3,7 +3,7 @@
Name: meka
Version: 0.80
-Release: 0.4.20130725svn%{?dist}
+Release: 0.5.20130725svn%{?dist}
Summary: Sega 8-bit machine emulator
License: MEKA and non-commercial
@@ -134,6 +134,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.80-0.5.20130725svn
+- Rebuilt
+
* Mon Sep 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.80-0.4.20130725svn
- Rebuilt
11 years, 1 month
rpms/abuse/devel abuse.spec,1.3,1.4
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/abuse/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25752
Modified Files:
abuse.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8-6
- Rebuilt
Index: abuse.spec
===================================================================
RCS file: /cvs/nonfree/rpms/abuse/devel/abuse.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- abuse.spec 30 Sep 2013 08:54:40 -0000 1.3
+++ abuse.spec 1 Oct 2013 16:32:13 -0000 1.4
@@ -1,6 +1,6 @@
Name: abuse
Version: 0.8
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: The classic Crack-Dot-Com game
Group: Amusements/Games
# The engine is GPLv2+, the data files are mostly in the public domain, except
@@ -66,6 +66,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8-6
+- Rebuilt
+
* Mon Sep 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8-5
- Rebuilt
11 years, 1 month
rpms/k3b-extras-freeworld/devel k3b-extras-freeworld.spec,1.37,1.38
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/k3b-extras-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22151
Modified Files:
k3b-extras-freeworld.spec
Log Message:
conditionalize ffmpeg, lame, mad support
disable ffmpeg for f20+ (for now), ftbfs against ffmpeg-2.0
Index: k3b-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/k3b-extras-freeworld/devel/k3b-extras-freeworld.spec,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- k3b-extras-freeworld.spec 1 Oct 2013 12:20:06 -0000 1.37
+++ k3b-extras-freeworld.spec 1 Oct 2013 16:13:59 -0000 1.38
@@ -1,4 +1,11 @@
+# undefine these to disable
+%if 0%{?fedora} < 20
+%define ffmpeg_decoder 1
+%endif
+%define lame_encoder 1
+%define mad_decoder 1
+
Name: k3b-extras-freeworld
Summary: Additional codec plugins for the k3b CD/DVD burning application
Epoch: 1
@@ -37,9 +44,15 @@
BuildRequires: pkgconfig(vorbisenc) pkgconfig(vorbisfile)
BuildRequires: pkgconfig(taglib)
+%if 0%{?ffmpeg_decoder}
BuildRequires: pkgconfig(libavcodec) pkgconfig(libavformat)
+%endif
+%if 0%{?mad_decoder}
BuildRequires: pkgconfig(mad)
+%endif
+%if 0%{?lame_encoder}
BuildRequires: lame-devel
+%endif
Requires: k3b >= %{epoch}:%{version}
@@ -60,34 +73,38 @@
mkdir -p %{_target_platform}
pushd %{_target_platform}
%{cmake_kde4} \
- -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=ON \
- -DK3B_BUILD_LAME_ENCODER_PLUGIN:BOOL=ON \
- -DK3B_BUILD_MAD_DECODER_PLUGIN:BOOL=ON \
+ -DK3B_BUILD_FFMPEG_DECODER_PLUGIN:BOOL=%{?ffmpeg_decoder:ON}%{!?ffmpeg_decoder:OFF} \
+ -DK3B_BUILD_LAME_ENCODER_PLUGIN:BOOL=%{?lame_encoder:ON}%{!?lame_encoder:OFF} \
+ -DK3B_BUILD_MAD_DECODER_PLUGIN:BOOL=%{?mad_decoder:ON}%{!?mad_decoder:OFF} \
..
popd
-#make %{?_smp_mflags} -C %{_target_platform}/libk3bdevice
-#make %{?_smp_mflags} -C %{_target_platform}/libk3b
-make %{?_smp_mflags} -C %{_target_platform}/plugins/decoder/ffmpeg
-make %{?_smp_mflags} -C %{_target_platform}/plugins/decoder/mp3
-make %{?_smp_mflags} -C %{_target_platform}/plugins/encoder/lame
+%{?ffmpeg_decoder:make %{?_smp_mflags} -C %{_target_platform}/plugins/decoder/ffmpeg}
+%{?mad_decoder:make %{?_smp_mflags} -C %{_target_platform}/plugins/decoder/mp3}
+%{?lame_encoder:make %{?_smp_mflags} -C %{_target_platform}/plugins/encoder/lame}
%install
-make install/fast DESTDIR=%{buildroot} -C %{_target_platform}/plugins/decoder/ffmpeg
-make install/fast DESTDIR=%{buildroot} -C %{_target_platform}/plugins/decoder/mp3
-make install/fast DESTDIR=%{buildroot} -C %{_target_platform}/plugins/encoder/lame
+%{?ffmpeg_decoder:make install/fast DESTDIR=%{buildroot} -C %{_target_platform}/plugins/decoder/ffmpeg}
+%{?mad_decoder:make install/fast DESTDIR=%{buildroot} -C %{_target_platform}/plugins/decoder/mp3}
+%{?lame_encoder:make install/fast DESTDIR=%{buildroot} -C %{_target_platform}/plugins/encoder/lame}
%files
+%if 0%{?ffmpeg_decoder}
%{_kde4_libdir}/kde4/k3bffmpegdecoder.so
+%{_kde4_datadir}/kde4/services/k3bffmpegdecoder.desktop
+%endif
+%if 0%{?lame_encoder}
%{_kde4_libdir}/kde4/k3blameencoder.so
-%{_kde4_libdir}/kde4/k3bmaddecoder.so
%{_kde4_libdir}/kde4/kcm_k3blameencoder.so
-%{_kde4_datadir}/kde4/services/k3bffmpegdecoder.desktop
%{_kde4_datadir}/kde4/services/k3blameencoder.desktop
-%{_kde4_datadir}/kde4/services/k3bmaddecoder.desktop
%{_kde4_datadir}/kde4/services/kcm_k3blameencoder.desktop
+%endif
+%if 0%{?mad_decoder}
+%{_kde4_libdir}/kde4/k3bmaddecoder.so
+%{_kde4_datadir}/kde4/services/k3bmaddecoder.desktop
+%endif
%changelog
11 years, 1 month
rpms/wl-kmod/F-18 wl-kmod.spec,1.118,1.119
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11297
Modified Files:
wl-kmod.spec
Log Message:
Back to current
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-18/wl-kmod.spec,v
retrieving revision 1.118
retrieving revision 1.119
diff -u -r1.118 -r1.119
--- wl-kmod.spec 1 Oct 2013 14:41:00 -0000 1.118
+++ wl-kmod.spec 1 Oct 2013 14:43:00 -0000 1.119
@@ -3,7 +3,7 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels newest
+#global buildforkernels newest
Name: wl-kmod
Version: 6.30.223.141
11 years, 1 month
rpms/wl-kmod/F-18 wl-kmod.spec,1.117,1.118
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10854
Modified Files:
wl-kmod.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-1.1
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-18/wl-kmod.spec,v
retrieving revision 1.117
retrieving revision 1.118
diff -u -r1.117 -r1.118
--- wl-kmod.spec 15 Sep 2013 15:33:52 -0000 1.117
+++ wl-kmod.spec 1 Oct 2013 14:41:00 -0000 1.118
@@ -3,11 +3,11 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%global buildforkernels current
+%global buildforkernels newest
Name: wl-kmod
Version: 6.30.223.141
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.141-1.1
+- Rebuilt for kernel
+
* Sat Sep 14 2013 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.141-1
- Upstream update to 6.30.223.141
11 years, 1 month
rpms/nvidia-kmod/F-18 nvidia-kmod.spec,1.163,1.164
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10689
Modified Files:
nvidia-kmod.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:319.32-2.6
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-18/nvidia-kmod.spec,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -r1.163 -r1.164
--- nvidia-kmod.spec 25 Sep 2013 21:40:09 -0000 1.163
+++ nvidia-kmod.spec 1 Oct 2013 14:40:51 -0000 1.164
@@ -9,7 +9,7 @@
Epoch: 1
Version: 319.32
# Taken over by kmodtool
-Release: 2%{?dist}.5
+Release: 2%{?dist}.6
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -78,6 +78,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:319.32-2.6
+- Rebuilt for kernel
+
* Wed Sep 25 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 1:319.32-2.5
- Rebuilt for kernel
11 years, 1 month
rpms/nvidia-304xx-kmod/F-18 nvidia-304xx-kmod.spec,1.14,1.15
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10532
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-2.6
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-18/nvidia-304xx-kmod.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- nvidia-304xx-kmod.spec 25 Sep 2013 21:43:58 -0000 1.14
+++ nvidia-304xx-kmod.spec 1 Oct 2013 14:40:42 -0000 1.15
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.88
# Taken over by kmodtool
-Release: 2%{?dist}.5
+Release: 2%{?dist}.6
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -80,6 +80,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-2.6
+- Rebuilt for kernel
+
* Wed Sep 25 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.88-2.5
- Rebuilt for kernel
11 years, 1 month
rpms/nvidia-173xx-kmod/F-18 nvidia-173xx-kmod.spec,1.97,1.98
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10383
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.37-2.8
- Rebuilt for kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18/nvidia-173xx-kmod.spec,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- nvidia-173xx-kmod.spec 25 Sep 2013 21:45:51 -0000 1.97
+++ nvidia-173xx-kmod.spec 1 Oct 2013 14:40:33 -0000 1.98
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.37
# Taken over by kmodtool
-Release: 2%{?dist}.7
+Release: 2%{?dist}.8
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -90,6 +90,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.37-2.8
+- Rebuilt for kernel
+
* Wed Sep 25 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 173.14.37-2.7
- Rebuilt for kernel
11 years, 1 month
rpms/catalyst-legacy-kmod/F-18 catalyst-legacy-kmod.spec,1.35,1.36
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10195
Modified Files:
catalyst-legacy-kmod.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.28
- Rebuilt for kernel
Index: catalyst-legacy-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18/catalyst-legacy-kmod.spec,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- catalyst-legacy-kmod.spec 29 Sep 2013 09:19:56 -0000 1.35
+++ catalyst-legacy-kmod.spec 1 Oct 2013 14:40:25 -0000 1.36
@@ -13,7 +13,7 @@
Name: catalyst-legacy-kmod
Version: 13.1
-Release: 2%{?dist}.27
+Release: 2%{?dist}.28
# Taken over by kmodtool
Summary: AMD display legacy driver kernel module
Group: System Environment/Kernel
@@ -103,6 +103,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.28
+- Rebuilt for kernel
+
* Sun Sep 29 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.27
- Rebuilt for newest
11 years, 1 month
rpms/catalyst-kmod/F-18 catalyst-kmod.spec,1.69,1.70
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10072
Modified Files:
catalyst-kmod.spec
Log Message:
* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.8-0.2.beta1.6
- Rebuilt for kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-18/catalyst-kmod.spec,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- catalyst-kmod.spec 25 Sep 2013 21:49:54 -0000 1.69
+++ catalyst-kmod.spec 1 Oct 2013 14:40:17 -0000 1.70
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 13.8
-Release: 0.2.beta1%{?dist}.5
+Release: 0.2.beta1%{?dist}.6
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -99,6 +99,9 @@
%changelog
+* Tue Oct 01 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.8-0.2.beta1.6
+- Rebuilt for kernel
+
* Wed Sep 25 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 13.8-0.2.beta1.5
- Rebuilt for kernel
11 years, 1 month