rpms/gpac/devel .cvsignore, 1.13, 1.14 gpac-snapshot.sh, 1.5, 1.6 gpac.spec, 1.54, 1.55 sources, 1.13, 1.14
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/gpac/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17276/devel
Modified Files:
.cvsignore gpac-snapshot.sh gpac.spec sources
Log Message:
Update gpac to lastest svn
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gpac/devel/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- .cvsignore 15 Sep 2014 04:18:03 -0000 1.13
+++ .cvsignore 6 Dec 2014 11:08:54 -0000 1.14
@@ -1 +1 @@
-gpac-20140915.tar.xz
+gpac-20141206.tar.xz
Index: gpac-snapshot.sh
===================================================================
RCS file: /cvs/free/rpms/gpac/devel/gpac-snapshot.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gpac-snapshot.sh 20 Aug 2013 12:53:43 -0000 1.5
+++ gpac-snapshot.sh 6 Dec 2014 11:08:54 -0000 1.6
@@ -15,10 +15,7 @@
svn=$(date +%Y%m%d)
cd "$tmp"
-svn co http://svn.code.sf.net/p/gpac/code/trunk/gpac gpac
-revision=$(svnversion gpac)
-echo "#define GPAC_SVN_REVISION \"$revision\"" > gpac/include/gpac/version.h
-find gpac -name ".svn" -type d -exec rm -rf {} ';' || :
+svn export http://svn.code.sf.net/p/gpac/code/trunk/gpac gpac
rm -rf gpac/extra_lib/
tar Jcf "$pwd"/gpac-$svn.tar.xz gpac
cd - >/dev/null
Index: gpac.spec
===================================================================
RCS file: /cvs/free/rpms/gpac/devel/gpac.spec,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- gpac.spec 19 Oct 2014 21:10:02 -0000 1.54
+++ gpac.spec 6 Dec 2014 11:08:54 -0000 1.55
@@ -7,7 +7,7 @@
# - Fix unused-direct-shlib-dependency on libgpac
%global osmo Osmo4
-%global svn 20140915
+%global svn 20141206
# Mozilla stuff fails. It's completely disabled for now.
%global mozver 3.0
%global geckover 2.0.0
@@ -16,8 +16,8 @@
Name: gpac
Summary: MPEG-4 multimedia framework
-Version: 0.5.0
-Release: 13%{?svn:.%{svn}svn}%{?dist}
+Version: 0.5.1
+Release: 14%{?svn:.%{svn}svn}%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://gpac.sourceforge.net/
@@ -144,9 +144,6 @@
touch -r doc/ipmpx_syntax.bt.origine doc/ipmpx_syntax.bt
rm -rf doc/ipmpx_syntax.bt.origine
-echo "#define GPAC_FULL_VERSION GPAC_SVN_REVISION" >> include/gpac/version.h
-echo "#define GPAC_VERSION GPAC_FULL_VERSION" >> include/gpac/version.h
-
%build
%configure \
@@ -312,6 +309,10 @@
%changelog
+* Sat Dec 06 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 0.5.1-14.20141206svn
+- Update to svn20141206 - last svn rev 5542
+- Fix invalid SONAME - rfbz#3365
+
* Sun Oct 19 2014 Sérgio Basto <sergio(a)serjux.com> - 0.5.0-13.20140915svn
- Rebuilt for FFmpeg 2.4.3
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gpac/devel/sources,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- sources 15 Sep 2014 04:18:03 -0000 1.13
+++ sources 6 Dec 2014 11:08:54 -0000 1.14
@@ -1 +1 @@
-4e3d305fa9a21deed48659316fbbe619 gpac-20140915.tar.xz
+8c8bc2951d2c1f63c6251782f4e46251 gpac-20141206.tar.xz
9 years, 11 months
rpms/ndiswrapper-kmod/devel kernel-3.14.patch, NONE, 1.1 ndiswrapper-kmod.spec, 1.65, 1.66
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ndiswrapper-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13109/devel
Modified Files:
ndiswrapper-kmod.spec
Added Files:
kernel-3.14.patch
Log Message:
Add 3.14 patch
kernel-3.14.patch:
crt.c | 2 +-
ntoskernel.h | 5 ++---
2 files changed, 3 insertions(+), 4 deletions(-)
--- NEW FILE kernel-3.14.patch ---
Description: Kernel 3.14 changes
This is a diff consisting of upstream revisions 3199, 3201, 3203.
* Use prandom_seed() instead of net_srandom() on Linux 3.8+
net_srandom() is going away.
* Avoid preempt_enable_no_resched(), it's no longer available for modules
Use preempt_enable() instead. This makes nt_spin_unlock_irqrestore()
fully complementary to nt_spin_lock_irqsave().
* Define reinit_completion() based on the kernel version
Checking for INIT_COMPLETION was a temporary hack needed before Linux
3.13-rc1 was released.
The last patch might not be really related to kernel 3.14, but is included
as well.
Origin: upstream, http://sourceforge.net/p/ndiswrapper/code/
--- a/driver/crt.c
+++ b/driver/crt.c
@@ -467,7 +467,7 @@ noregparm int WIN_FUNC(_win_memcmp,3)
noregparm void WIN_FUNC(_win_srand,1)
(UINT seed)
{
- net_srandom(seed);
+ prandom_seed((__force u32)(seed));
}
noregparm int WIN_FUNC(rand,0)
--- a/driver/ntoskernel.h
+++ b/driver/ntoskernel.h
@@ -347,7 +347,7 @@ static inline void netif_poll_disable(st
#define netdev_notifier_info_to_dev(x) ((struct net_device *)(x))
#endif
-#ifdef INIT_COMPLETION
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,13,0)
static inline void reinit_completion(struct completion *x)
{
INIT_COMPLETION(*x);
@@ -797,9 +797,8 @@ do { \
#define nt_spin_unlock_irqrestore(lock, flags) \
do { \
nt_spin_unlock(lock); \
- preempt_enable_no_resched(); \
+ preempt_enable(); \
local_irq_restore(flags); \
- preempt_check_resched(); \
} while (0)
static inline ULONG SPAN_PAGES(void *ptr, SIZE_T length)
Index: ndiswrapper-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/ndiswrapper-kmod/devel/ndiswrapper-kmod.spec,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ndiswrapper-kmod.spec 5 Dec 2014 22:36:41 -0000 1.65
+++ ndiswrapper-kmod.spec 6 Dec 2014 08:29:39 -0000 1.66
@@ -10,13 +10,14 @@
Summary: Ndiswrapper kernel module
Name: ndiswrapper-kmod
Version: 1.59
-Release: 6%{?pre}%{?dist}
+Release: 7%{?pre}%{?dist}
License: GPLv2
Group: System Environment/Kernel
URL: http://ndiswrapper.sourceforge.net
Source0: http://downloads.sf.net/ndiswrapper/ndiswrapper-%{version}%{?pre}.tar.gz
Source11: ndiswrapper-kmodtool-excludekernel-filterfile
Patch0: ndiswrapper-kmod-nomodinfo.patch
+Patch1: kernel-3.14.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -48,6 +49,7 @@
%setup -q -c -T -a 0 -n %{name}-%{version}%{?pre}
(cd ndiswrapper-%{version}%{?pre} ;
%patch0 -p1 -b .orig
+%patch1 -p1 -b .314
)
sed -i 's|/sbin/depmod -a|/bin/true|' ndiswrapper-%{version}%{?pre}/driver/Makefile
for kernel_version in %{?kernel_versions} ; do
@@ -75,6 +77,9 @@
%changelog
+* Sat Dec 06 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-7
+- Add 3.14 patch
+
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-6
- Rebuilt for f21 final kernel
9 years, 11 months
rpms/xtables-addons-kmod/devel xtables-addons-kmod.spec,1.37,1.38
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12144
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1
- Rebuilt for f21 final kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/devel/xtables-addons-kmod.spec,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- xtables-addons-kmod.spec 4 Nov 2014 21:29:21 -0000 1.37
+++ xtables-addons-kmod.spec 5 Dec 2014 22:37:07 -0000 1.38
@@ -3,12 +3,12 @@
# "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 akmod
+%global buildforkernels current
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 2.6
-Release: 0%{?dist}
+Release: 1%{?dist}
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -65,6 +65,9 @@
rm -rf %{buildroot}
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1
+- Rebuilt for f21 final kernel
+
* Sat Apr 26 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.5-1
- Update to 2.5
9 years, 11 months
rpms/VirtualBox-kmod/devel VirtualBox-kmod.spec,1.37,1.38
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12022
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.20-2
- Rebuilt for f21 final kernel
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/devel/VirtualBox-kmod.spec,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- VirtualBox-kmod.spec 23 Nov 2014 03:45:51 -0000 1.37
+++ VirtualBox-kmod.spec 5 Dec 2014 22:37:01 -0000 1.38
@@ -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 akmod
+%global buildforkernels current
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -20,7 +20,7 @@
Name: VirtualBox-kmod
Version: 4.3.20
-Release: 1%{?prerel:.%{prerel}}%{?dist}
+Release: 2%{?prerel:.%{prerel}}%{?dist}
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.20-2
+- Rebuilt for f21 final kernel
+
* Sun Nov 23 2014 Sérgio Basto <sergio(a)serjux.com> - 4.3.20-1
- New upstream release and just build akmods for devel.
9 years, 11 months
rpms/staging-kmod/devel staging-kmod.spec,1.28,1.29
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11897
Modified Files:
staging-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.1
- Rebuilt for f21 final kernel
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/devel/staging-kmod.spec,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- staging-kmod.spec 15 Nov 2014 20:11:13 -0000 1.28
+++ staging-kmod.spec 5 Dec 2014 22:36:53 -0000 1.29
@@ -28,7 +28,7 @@
Name: staging-kmod
Version: 3.17.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.1
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -143,6 +143,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 3.17.2-1.1
+- Rebuilt for f21 final kernel
+
* Sat Nov 15 2014 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.17.2-1
- Update to 3.17.2
- drop drivers that werre dropped upstream: DGRP IDE_PHISON NET_VENDOR_SILICOM
9 years, 11 months
rpms/openafs-kmod/devel openafs-kmod.spec,1.43,1.44
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/openafs-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11776
Modified Files:
openafs-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.10-0.1pre1.1
- Rebuilt for f21 final kernel
Index: openafs-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/devel/openafs-kmod.spec,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- openafs-kmod.spec 23 Sep 2014 21:43:19 -0000 1.43
+++ openafs-kmod.spec 5 Dec 2014 22:36:46 -0000 1.44
@@ -1,5 +1,5 @@
# (un)define the next line to either build for the newest or all current kernels
-%global buildforkernels akmod
+%global buildforkernels current
# Define the OpenAFS sysname
%ifarch %{ix86}
@@ -24,7 +24,7 @@
Name: %{kmod_name}-kmod
Version: 1.6.10
-Release: %{?pre:0.}1%{?pre}%{?dist}
+Release: %{?pre:0.}1%{?pre}%{?dist}.1
Summary: Kernel module(s)
Group: System Environment/Kernel
@@ -104,6 +104,9 @@
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.10-0.1pre1.1
+- Rebuilt for f21 final kernel
+
* Tue Sep 23 2014 Ken Dreyer <ktdreyer(a)ktdreyer.com> - 1.6.10-0.1pre1
- Update to OpenAFS 1.6.10pre1
9 years, 11 months
rpms/ndiswrapper-kmod/devel ndiswrapper-kmod.spec,1.64,1.65
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ndiswrapper-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11652
Modified Files:
ndiswrapper-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-6
- Rebuilt for f21 final kernel
Index: ndiswrapper-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/ndiswrapper-kmod/devel/ndiswrapper-kmod.spec,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ndiswrapper-kmod.spec 10 Dec 2013 19:22:58 -0000 1.64
+++ ndiswrapper-kmod.spec 5 Dec 2014 22:36:41 -0000 1.65
@@ -10,7 +10,7 @@
Summary: Ndiswrapper kernel module
Name: ndiswrapper-kmod
Version: 1.59
-Release: 5%{?pre}%{?dist}
+Release: 6%{?pre}%{?dist}
License: GPLv2
Group: System Environment/Kernel
URL: http://ndiswrapper.sourceforge.net
@@ -75,6 +75,9 @@
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-6
+- Rebuilt for f21 final kernel
+
* Tue Dec 10 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-5
- Rebuilt for f20 final kernel
9 years, 11 months
rpms/wl-kmod/devel wl-kmod.spec,1.88,1.89
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11455
Modified Files:
wl-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5
- Rebuilt for f21 final kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- wl-kmod.spec 27 Oct 2014 10:34:55 -0000 1.88
+++ wl-kmod.spec 5 Dec 2014 22:33:29 -0000 1.89
@@ -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 akmod
+%global buildforkernels current
Name: wl-kmod
Version: 6.30.223.248
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -98,6 +98,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 6.30.223.248-5
+- Rebuilt for f21 final kernel
+
* Mon Oct 27 2014 Nicolas Viéville <nicolas.vieville(a)univ-valenciennes.fr> - 6.30.223.248-4
- Added patch to build for kernel >= 3.18
9 years, 11 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.168,1.169
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11336
Modified Files:
nvidia-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1:343.22-4
- Rebuilt for f21 final kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -r1.168 -r1.169
--- nvidia-kmod.spec 21 Oct 2014 12:40:06 -0000 1.168
+++ nvidia-kmod.spec 5 Dec 2014 22:33:23 -0000 1.169
@@ -3,13 +3,13 @@
# "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 akmod
+%global buildforkernels current
Name: nvidia-kmod
Epoch: 1
Version: 343.22
# Taken over by kmodtool
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -86,6 +86,9 @@
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1:343.22-4
+- Rebuilt for f21 final kernel
+
* Tue Oct 21 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 1:343.22-3
- more 3.18 kernel changes
9 years, 11 months
rpms/nvidia-304xx-kmod/devel nvidia-304xx-kmod.spec,1.17,1.18
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11207
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-2
- Rebuilt for f21 final kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/nvidia-304xx-kmod.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- nvidia-304xx-kmod.spec 10 Jul 2014 20:34:20 -0000 1.17
+++ nvidia-304xx-kmod.spec 5 Dec 2014 22:33:18 -0000 1.18
@@ -3,12 +3,12 @@
# "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 akmod
+%global buildforkernels current
Name: nvidia-304xx-kmod
Version: 304.123
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -79,6 +79,9 @@
%changelog
+* Fri Dec 05 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-2
+- Rebuilt for f21 final kernel
+
* Thu Jul 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1
- Update to 304.123
9 years, 11 months