rpms/openafs-kmod/F-17 openafs-kmod.spec,1.29,1.30
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/openafs-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26940
Modified Files:
openafs-kmod.spec
Log Message:
* Sat May 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.1-1.10
- Rebuilt for release kernel
Index: openafs-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-17/openafs-kmod.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- openafs-kmod.spec 13 May 2012 15:26:26 -0000 1.29
+++ openafs-kmod.spec 26 May 2012 09:10:50 -0000 1.30
@@ -21,7 +21,7 @@
Name: %{kmod_name}-kmod
Version: 1.6.1
-Release: 1%{?dist}.9
+Release: 1%{?dist}.10
Summary: Kernel module(s)
Group: System Environment/Kernel
@@ -94,6 +94,9 @@
%changelog
+* Sat May 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.1-1.10
+- Rebuilt for release kernel
+
* Sun May 13 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.1-1.9
- Rebuilt for release kernel
12 years, 6 months
rpms/ndiswrapper-kmod/F-17 ndiswrapper-kmod.spec,1.66,1.67
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ndiswrapper-kmod/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26809
Modified Files:
ndiswrapper-kmod.spec
Log Message:
* Sat May 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.57-2.11
- Rebuilt for release kernel
Index: ndiswrapper-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/ndiswrapper-kmod/F-17/ndiswrapper-kmod.spec,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ndiswrapper-kmod.spec 13 May 2012 15:26:19 -0000 1.66
+++ ndiswrapper-kmod.spec 26 May 2012 09:10:41 -0000 1.67
@@ -10,7 +10,7 @@
Summary: Ndiswrapper kernel module
Name: ndiswrapper-kmod
Version: 1.57
-Release: 2%{?dist}.10
+Release: 2%{?dist}.11
License: GPLv2
Group: System Environment/Kernel
URL: http://ndiswrapper.sourceforge.net
@@ -77,6 +77,9 @@
%changelog
+* Sat May 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.57-2.11
+- Rebuilt for release kernel
+
* Sun May 13 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.57-2.10
- Rebuilt for release kernel
12 years, 6 months
rpms/kmodtool/devel kmodtool-kmodtool,1.6,1.7 kmodtool.spec,1.7,1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/kmodtool/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26199/devel
Modified Files:
kmodtool-kmodtool kmodtool.spec
Log Message:
Fix for rfbz#2340
Index: kmodtool-kmodtool
===================================================================
RCS file: /cvs/free/rpms/kmodtool/devel/kmodtool-kmodtool,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- kmodtool-kmodtool 7 Feb 2012 12:51:25 -0000 1.6
+++ kmodtool-kmodtool 26 May 2012 08:58:47 -0000 1.7
@@ -151,8 +151,8 @@
Provides: kernel-modules-for-kernel = ${kernel_uname_r}
Provides: ${kmodname}-kmod = %{?epoch:%{epoch}:}%{version}-%{release}
Requires: ${kmodname}-kmod-common >= %{?epoch:%{epoch}:}%{version}
-Requires(post): /sbin/depmod
-Requires(postun): /sbin/depmod
+Requires(post): /usr/sbin/depmod
+Requires(postun): /usr/sbin/depmod
EOF
if [[ ${obsolete_name} ]]; then
@@ -166,17 +166,17 @@
Requires: kernel-uname-r = ${kernel_uname_r}
BuildRequires: kernel-devel-uname-r = ${kernel_uname_r}
%post -n kmod-${kmodname}-${kernel_uname_r}
-/sbin/depmod -aeF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} > /dev/null || :
+/usr/sbin/depmod -aeF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} > /dev/null || :
%postun -n kmod-${kmodname}-${kernel_uname_r}
-/sbin/depmod -aF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} &> /dev/null || :
+/usr/sbin/depmod -aF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} &> /dev/null || :
EOF
else
cat <<EOF
%post -n kmod-${kmodname}-${kernel_uname_r}
-[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /sbin/depmod -a > /dev/null || :
+[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /usr/sbin/depmod -a > /dev/null || :
%postun -n kmod-${kmodname}-${kernel_uname_r}
-[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /sbin/depmod -a > /dev/null || :
+[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /usr/sbin/depmod -a > /dev/null || :
EOF
fi
Index: kmodtool.spec
===================================================================
RCS file: /cvs/free/rpms/kmodtool/devel/kmodtool.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- kmodtool.spec 7 Feb 2012 12:51:25 -0000 1.7
+++ kmodtool.spec 26 May 2012 08:58:47 -0000 1.8
@@ -1,6 +1,6 @@
Name: kmodtool
Version: 1
-Release: 19%{?dist}
+Release: 20%{?dist}
Summary: Tool for building kmod packages
Group: Development/Tools
@@ -51,6 +51,9 @@
%{_datadir}/%{name}/
%changelog
+* Sat May 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1-20
+- Fix for depmod - rfbz#2340
+
* Wed Feb 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1-19
- Update to 0.12.0
12 years, 6 months
rpms/kmodtool/F-17 kmodtool-kmodtool,1.6,1.7 kmodtool.spec,1.7,1.8
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/kmodtool/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26199/F-17
Modified Files:
kmodtool-kmodtool kmodtool.spec
Log Message:
Fix for rfbz#2340
Index: kmodtool-kmodtool
===================================================================
RCS file: /cvs/free/rpms/kmodtool/F-17/kmodtool-kmodtool,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- kmodtool-kmodtool 7 Feb 2012 12:51:25 -0000 1.6
+++ kmodtool-kmodtool 26 May 2012 08:58:47 -0000 1.7
@@ -151,8 +151,8 @@
Provides: kernel-modules-for-kernel = ${kernel_uname_r}
Provides: ${kmodname}-kmod = %{?epoch:%{epoch}:}%{version}-%{release}
Requires: ${kmodname}-kmod-common >= %{?epoch:%{epoch}:}%{version}
-Requires(post): /sbin/depmod
-Requires(postun): /sbin/depmod
+Requires(post): /usr/sbin/depmod
+Requires(postun): /usr/sbin/depmod
EOF
if [[ ${obsolete_name} ]]; then
@@ -166,17 +166,17 @@
Requires: kernel-uname-r = ${kernel_uname_r}
BuildRequires: kernel-devel-uname-r = ${kernel_uname_r}
%post -n kmod-${kmodname}-${kernel_uname_r}
-/sbin/depmod -aeF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} > /dev/null || :
+/usr/sbin/depmod -aeF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} > /dev/null || :
%postun -n kmod-${kmodname}-${kernel_uname_r}
-/sbin/depmod -aF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} &> /dev/null || :
+/usr/sbin/depmod -aF /boot/System.map-${kernel_uname_r} ${kernel_uname_r} &> /dev/null || :
EOF
else
cat <<EOF
%post -n kmod-${kmodname}-${kernel_uname_r}
-[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /sbin/depmod -a > /dev/null || :
+[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /usr/sbin/depmod -a > /dev/null || :
%postun -n kmod-${kmodname}-${kernel_uname_r}
-[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /sbin/depmod -a > /dev/null || :
+[[ "$(uname -r)" == "${kernel_uname_r}" ]] && /usr/sbin/depmod -a > /dev/null || :
EOF
fi
Index: kmodtool.spec
===================================================================
RCS file: /cvs/free/rpms/kmodtool/F-17/kmodtool.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- kmodtool.spec 7 Feb 2012 12:51:25 -0000 1.7
+++ kmodtool.spec 26 May 2012 08:58:47 -0000 1.8
@@ -1,6 +1,6 @@
Name: kmodtool
Version: 1
-Release: 19%{?dist}
+Release: 20%{?dist}
Summary: Tool for building kmod packages
Group: Development/Tools
@@ -51,6 +51,9 @@
%{_datadir}/%{name}/
%changelog
+* Sat May 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1-20
+- Fix for depmod - rfbz#2340
+
* Wed Feb 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1-19
- Update to 0.12.0
12 years, 6 months
rpms/wl-kmod/F-15 wl-kmod.spec,1.93,1.94
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv30140
Modified Files:
wl-kmod.spec
Log Message:
* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-1.20
- Rebuilt for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-15/wl-kmod.spec,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- wl-kmod.spec 9 May 2012 06:32:26 -0000 1.93
+++ wl-kmod.spec 24 May 2012 22:08:48 -0000 1.94
@@ -9,7 +9,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 1%{?dist}.19
+Release: 1%{?dist}.20
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-1.20
+- Rebuilt for updated kernel
+
* Wed May 09 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-1.19
- rebuild for updated kernel
12 years, 6 months
rpms/nvidia-kmod/F-15 nvidia-kmod.spec,1.127,1.128
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv30019
Modified Files:
nvidia-kmod.spec
Log Message:
* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.53-1.1
- Rebuilt for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-15/nvidia-kmod.spec,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- nvidia-kmod.spec 22 May 2012 18:13:20 -0000 1.127
+++ nvidia-kmod.spec 24 May 2012 22:08:40 -0000 1.128
@@ -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
-%define buildforkernels current
+%define buildforkernels newest
Name: nvidia-kmod
Epoch: 1
Version: 295.53
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -77,6 +77,9 @@
%changelog
+* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.53-1.1
+- Rebuilt for updated kernel
+
* Tue May 22 2012 leigh scott <leigh123linux(a)googlemail.com> - 1:295.53-1
- Update to 295.53
12 years, 6 months
rpms/nvidia-173xx-kmod/F-15 nvidia-173xx-kmod.spec,1.74,1.75
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29892
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.31-2.6
- Rebuilt for updated kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-15/nvidia-173xx-kmod.spec,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- nvidia-173xx-kmod.spec 9 May 2012 06:32:03 -0000 1.74
+++ nvidia-173xx-kmod.spec 24 May 2012 22:08:29 -0000 1.75
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.31
# Taken over by kmodtool
-Release: 2%{?dist}.5
+Release: 2%{?dist}.6
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -95,6 +95,9 @@
%changelog
+* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.31-2.6
+- Rebuilt for updated kernel
+
* Wed May 09 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.31-2.5
- rebuild for updated kernel
12 years, 6 months
rpms/catalyst-kmod/F-15 catalyst-kmod.spec,1.49,1.50
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29765
Modified Files:
catalyst-kmod.spec
Log Message:
* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-2.6
- Rebuilt for updated kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-15/catalyst-kmod.spec,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- catalyst-kmod.spec 9 May 2012 06:31:52 -0000 1.49
+++ catalyst-kmod.spec 24 May 2012 22:08:21 -0000 1.50
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 11.11
-Release: 2%{?dist}.5
+Release: 2%{?dist}.6
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -99,6 +99,9 @@
%changelog
+* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-2.6
+- Rebuilt for updated kernel
+
* Wed May 09 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 11.11-2.5
- rebuild for updated kernel
12 years, 6 months
rpms/xtables-addons-kmod/F-15 xtables-addons-kmod.spec,1.50,1.51
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29638
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.17
- Rebuilt for updated kernel
12 years, 6 months
rpms/west-chamber-kmod/F-15 west-chamber-kmod.spec,1.42,1.43
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/west-chamber-kmod/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv29517
Modified Files:
west-chamber-kmod.spec
Log Message:
* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-6.20101017svn.37
- Rebuilt for updated kernel
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/F-15/west-chamber-kmod.spec,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- west-chamber-kmod.spec 9 May 2012 06:31:29 -0000 1.42
+++ west-chamber-kmod.spec 24 May 2012 22:08:05 -0000 1.43
@@ -13,7 +13,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 6.%{?svndate}svn%{?dist}.36
+Release: 6.%{?svndate}svn%{?dist}.37
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -84,6 +84,9 @@
rm -rf %{buildroot}
%changelog
+* Thu May 24 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-6.20101017svn.37
+- Rebuilt for updated kernel
+
* Wed May 09 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-6.20101017svn.36
- rebuild for updated kernel
12 years, 6 months