rpms/akmods/F-16 akmods.spec,1.9,1.10
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26262
Modified Files:
akmods.spec
Log Message:
* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/F-16/akmods.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- akmods.spec 24 Nov 2011 17:02:56 -0000 1.9
+++ akmods.spec 24 Nov 2011 17:07:00 -0000 1.10
@@ -39,7 +39,7 @@
# we create a special user that used by akmods to build kmod packages
Requires(pre): shadow-utils
-%if %fedora <= 15
+%if %fedora <=16
# for the akmods init script:
Requires(post): /sbin/chkconfig
Requires(preun): /sbin/chkconfig
@@ -73,7 +73,7 @@
install -D -p -m 0755 %{SOURCE0} %{buildroot}%{_sbindir}/akmods
install -D -p -m 0755 %{SOURCE2} %{buildroot}%{_bindir}/akmodsbuild
install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/akmodsbuild.1
-%if %fedora <= 15
+%if %fedora <=16
install -D -p -m 0755 %{SOURCE4} %{buildroot}%{_initrddir}/akmods
%else
install -D -p -m 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods.service
@@ -90,7 +90,7 @@
-c "User is used by akmods to build akmod packages" akmods
%post
-%if %fedora <= 15
+%if %fedora <=16
# add init script
/sbin/chkconfig --add akmods
# enable init script; users that installed akmods directly or indirectly
@@ -107,7 +107,7 @@
%endif
%preun
-%if %fedora <= 15
+%if %fedora <=16
if [ $1 = 0 ]; then
/sbin/chkconfig --del akmods
fi
@@ -125,7 +125,7 @@
%attr(-,akmods,akmods) %{_localstatedir}/cache/akmods
%{_bindir}/akmodsbuild
%{_sbindir}/akmods
-%if %fedora <= 15
+%if %fedora <=16
%{_initrddir}/akmods
%else
%{_unitdir}/akmods.service
13 years
rpms/akmods/F-14 akmods,1.6,1.7 akmods.spec,1.8,1.9
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25693
Modified Files:
akmods akmods.spec
Log Message:
* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
Index: akmods
===================================================================
RCS file: /cvs/free/rpms/akmods/F-14/akmods,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- akmods 19 Nov 2011 23:53:02 -0000 1.6
+++ akmods 24 Nov 2011 17:04:46 -0000 1.7
@@ -36,7 +36,7 @@
# global vars
myprog="akmods"
-myver="0.3.7"
+myver="0.3.8"
kmodlogfile=
continue_line=""
tmpdir=
@@ -326,15 +326,14 @@
# Versions are the same. Nothing to do.
return 0
elif [ "$retvalue" == 11 ]; then
- # kmod is newer, this nomally shouldn't happen.
- akmods_echo 1 2 -n "Warning: installed kmod is newer then the akmod"
+ # kmod is newer, nothing to do.
return 0
elif [ "$retvalue" == 12 ]; then
# akmod is newer, need to build kmod.
return 1
else
# Something went wrong
- akmods_echo 1 2 -n "Error: Could not determine if akmod is newer then the installed kmod"
+ akmods_echo 1 2 -n "Error: Could not determine if akmod is newer than the installed kmod"
akmods_echo 1 2 --failure
return 0
fi
@@ -371,7 +370,7 @@
akmods_echo 1 2 "directories are missing:"
akmods_echo 1 2 "/usr/src/kernels/${this_kernelver}/"
akmods_echo 1 2 -n "/lib/modules/${this_kernelver}/build/"
- akmods_echo 1 2 "Is the correct kernel-devel package installed?"
+ akmods_echo 1 2 -n "Is the correct kernel-devel package installed?"
akmods_echo 1 2 --failure
return 1
fi
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/F-14/akmods.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- akmods.spec 19 Nov 2011 23:53:02 -0000 1.8
+++ akmods.spec 24 Nov 2011 17:04:46 -0000 1.9
@@ -1,6 +1,6 @@
Name: akmods
-Version: 0.3.7
-Release: 2%{?dist}
+Version: 0.3.8
+Release: 3%{?dist}
Summary: Automatic kmods build and install tool
Group: System Environment/Kernel
@@ -13,6 +13,7 @@
Source3: akmodsbuild.1
Source4: akmodsinit
Source6: akmodsposttrans
+Source7: akmods.service
BuildArch: noarch
@@ -38,11 +39,20 @@
# we create a special user that used by akmods to build kmod packages
Requires(pre): shadow-utils
+%if %fedora <= 15
# for the akmods init script:
Requires(post): /sbin/chkconfig
Requires(preun): /sbin/chkconfig
Requires(preun): /sbin/service
+%else
+# systemd unit requirements.
+BuildRequires: systemd-units
+Requires(post): systemd-units
+Requires(preun): systemd-units
+Requires(postun): systemd-units
+%endif
+
%description
Akmods startup script will rebuild akmod packages during system
@@ -63,7 +73,11 @@
install -D -p -m 0755 %{SOURCE0} %{buildroot}%{_sbindir}/akmods
install -D -p -m 0755 %{SOURCE2} %{buildroot}%{_bindir}/akmodsbuild
install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/akmodsbuild.1
+%if %fedora <= 15
install -D -p -m 0755 %{SOURCE4} %{buildroot}%{_initrddir}/akmods
+%else
+install -D -p -m 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods.service
+%endif
# %%{_sysconfdir}/kernel/posttrans.d/ should be owned my mkinitrd #441111
install -D -p -m 0755 %{SOURCE6} %{buildroot}/%{_sysconfdir}/kernel/postinst.d/akmods
@@ -76,6 +90,7 @@
-c "User is used by akmods to build akmod packages" akmods
%post
+%if %fedora <= 15
# add init script
/sbin/chkconfig --add akmods
# enable init script; users that installed akmods directly or indirectly
@@ -83,11 +98,26 @@
if [ $1 = 1 ]; then
/sbin/chkconfig akmods on
fi
+%else
+# Systemd
+if [ $1 -eq 1 ] ; then
+ # Initial installation
+ /bin/systemctl enable akmods.service >/dev/null 2>&1 || :
+fi
+%endif
%preun
+%if %fedora <= 15
if [ $1 = 0 ]; then
/sbin/chkconfig --del akmods
fi
+%else
+if [ $1 -eq 0 ] ; then
+ # Package removal, not upgrade
+ /bin/systemctl --no-reload disable akmods.service > /dev/null 2>&1 || :
+ /bin/systemctl stop akmods.service > /dev/null 2>&1 || :
+fi
+%endif
%files
@@ -95,14 +125,23 @@
%attr(-,akmods,akmods) %{_localstatedir}/cache/akmods
%{_bindir}/akmodsbuild
%{_sbindir}/akmods
+%if %fedora <= 15
%{_initrddir}/akmods
+%else
+%{_unitdir}/akmods.service
+%endif
%{_sysconfdir}/kernel/postinst.d/akmods
%{_mandir}/man1/*
%changelog
-* Tue Nov 15 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.7-2
-- Fix rpmdev-vercmp handling.
+* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
+- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
+
+* Mon Nov 21 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-2
+- Add hint about kernel-devel package if rebuild fails due to lack of required
+ development files.
+- Move logging from /var/cache/akmods/akmods.log to /var/log/akmods.log.
* Fri Sep 23 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.7-1
- Update to 0.3.7
13 years
rpms/akmods/F-15 akmods,1.6,1.7 akmods.spec,1.8,1.9
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25557
Modified Files:
akmods akmods.spec
Log Message:
* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
Index: akmods
===================================================================
RCS file: /cvs/free/rpms/akmods/F-15/akmods,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- akmods 19 Nov 2011 23:50:42 -0000 1.6
+++ akmods 24 Nov 2011 17:04:00 -0000 1.7
@@ -36,7 +36,7 @@
# global vars
myprog="akmods"
-myver="0.3.7"
+myver="0.3.8"
kmodlogfile=
continue_line=""
tmpdir=
@@ -326,15 +326,14 @@
# Versions are the same. Nothing to do.
return 0
elif [ "$retvalue" == 11 ]; then
- # kmod is newer, this nomally shouldn't happen.
- akmods_echo 1 2 -n "Warning: installed kmod is newer then the akmod"
+ # kmod is newer, nothing to do.
return 0
elif [ "$retvalue" == 12 ]; then
# akmod is newer, need to build kmod.
return 1
else
# Something went wrong
- akmods_echo 1 2 -n "Error: Could not determine if akmod is newer then the installed kmod"
+ akmods_echo 1 2 -n "Error: Could not determine if akmod is newer than the installed kmod"
akmods_echo 1 2 --failure
return 0
fi
@@ -371,7 +370,7 @@
akmods_echo 1 2 "directories are missing:"
akmods_echo 1 2 "/usr/src/kernels/${this_kernelver}/"
akmods_echo 1 2 -n "/lib/modules/${this_kernelver}/build/"
- akmods_echo 1 2 "Is the correct kernel-devel package installed?"
+ akmods_echo 1 2 -n "Is the correct kernel-devel package installed?"
akmods_echo 1 2 --failure
return 1
fi
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/F-15/akmods.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- akmods.spec 19 Nov 2011 23:50:42 -0000 1.8
+++ akmods.spec 24 Nov 2011 17:04:00 -0000 1.9
@@ -1,6 +1,6 @@
Name: akmods
-Version: 0.3.7
-Release: 2%{?dist}
+Version: 0.3.8
+Release: 3%{?dist}
Summary: Automatic kmods build and install tool
Group: System Environment/Kernel
@@ -13,6 +13,7 @@
Source3: akmodsbuild.1
Source4: akmodsinit
Source6: akmodsposttrans
+Source7: akmods.service
BuildArch: noarch
@@ -38,11 +39,20 @@
# we create a special user that used by akmods to build kmod packages
Requires(pre): shadow-utils
+%if %fedora <= 15
# for the akmods init script:
Requires(post): /sbin/chkconfig
Requires(preun): /sbin/chkconfig
Requires(preun): /sbin/service
+%else
+# systemd unit requirements.
+BuildRequires: systemd-units
+Requires(post): systemd-units
+Requires(preun): systemd-units
+Requires(postun): systemd-units
+%endif
+
%description
Akmods startup script will rebuild akmod packages during system
@@ -63,7 +73,11 @@
install -D -p -m 0755 %{SOURCE0} %{buildroot}%{_sbindir}/akmods
install -D -p -m 0755 %{SOURCE2} %{buildroot}%{_bindir}/akmodsbuild
install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/akmodsbuild.1
+%if %fedora <= 15
install -D -p -m 0755 %{SOURCE4} %{buildroot}%{_initrddir}/akmods
+%else
+install -D -p -m 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods.service
+%endif
# %%{_sysconfdir}/kernel/posttrans.d/ should be owned my mkinitrd #441111
install -D -p -m 0755 %{SOURCE6} %{buildroot}/%{_sysconfdir}/kernel/postinst.d/akmods
@@ -76,6 +90,7 @@
-c "User is used by akmods to build akmod packages" akmods
%post
+%if %fedora <= 15
# add init script
/sbin/chkconfig --add akmods
# enable init script; users that installed akmods directly or indirectly
@@ -83,11 +98,26 @@
if [ $1 = 1 ]; then
/sbin/chkconfig akmods on
fi
+%else
+# Systemd
+if [ $1 -eq 1 ] ; then
+ # Initial installation
+ /bin/systemctl enable akmods.service >/dev/null 2>&1 || :
+fi
+%endif
%preun
+%if %fedora <= 15
if [ $1 = 0 ]; then
/sbin/chkconfig --del akmods
fi
+%else
+if [ $1 -eq 0 ] ; then
+ # Package removal, not upgrade
+ /bin/systemctl --no-reload disable akmods.service > /dev/null 2>&1 || :
+ /bin/systemctl stop akmods.service > /dev/null 2>&1 || :
+fi
+%endif
%files
@@ -95,14 +125,23 @@
%attr(-,akmods,akmods) %{_localstatedir}/cache/akmods
%{_bindir}/akmodsbuild
%{_sbindir}/akmods
+%if %fedora <= 15
%{_initrddir}/akmods
+%else
+%{_unitdir}/akmods.service
+%endif
%{_sysconfdir}/kernel/postinst.d/akmods
%{_mandir}/man1/*
%changelog
-* Tue Nov 15 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.7-2
-- Fix rpmdev-vercmp handling.
+* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
+- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
+
+* Mon Nov 21 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-2
+- Add hint about kernel-devel package if rebuild fails due to lack of required
+ development files.
+- Move logging from /var/cache/akmods/akmods.log to /var/log/akmods.log.
* Fri Sep 23 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.7-1
- Update to 0.3.7
13 years
rpms/akmods/F-16 akmods,1.6,1.7 akmods.spec,1.8,1.9
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25378
Modified Files:
akmods akmods.spec
Log Message:
* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
Index: akmods
===================================================================
RCS file: /cvs/free/rpms/akmods/F-16/akmods,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- akmods 19 Nov 2011 23:49:35 -0000 1.6
+++ akmods 24 Nov 2011 17:02:56 -0000 1.7
@@ -36,7 +36,7 @@
# global vars
myprog="akmods"
-myver="0.3.7"
+myver="0.3.8"
kmodlogfile=
continue_line=""
tmpdir=
@@ -326,15 +326,14 @@
# Versions are the same. Nothing to do.
return 0
elif [ "$retvalue" == 11 ]; then
- # kmod is newer, this nomally shouldn't happen.
- akmods_echo 1 2 -n "Warning: installed kmod is newer then the akmod"
+ # kmod is newer, nothing to do.
return 0
elif [ "$retvalue" == 12 ]; then
# akmod is newer, need to build kmod.
return 1
else
# Something went wrong
- akmods_echo 1 2 -n "Error: Could not determine if akmod is newer then the installed kmod"
+ akmods_echo 1 2 -n "Error: Could not determine if akmod is newer than the installed kmod"
akmods_echo 1 2 --failure
return 0
fi
@@ -371,7 +370,7 @@
akmods_echo 1 2 "directories are missing:"
akmods_echo 1 2 "/usr/src/kernels/${this_kernelver}/"
akmods_echo 1 2 -n "/lib/modules/${this_kernelver}/build/"
- akmods_echo 1 2 "Is the correct kernel-devel package installed?"
+ akmods_echo 1 2 -n "Is the correct kernel-devel package installed?"
akmods_echo 1 2 --failure
return 1
fi
Index: akmods.spec
===================================================================
RCS file: /cvs/free/rpms/akmods/F-16/akmods.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- akmods.spec 19 Nov 2011 23:49:35 -0000 1.8
+++ akmods.spec 24 Nov 2011 17:02:56 -0000 1.9
@@ -1,6 +1,6 @@
Name: akmods
-Version: 0.3.7
-Release: 2%{?dist}
+Version: 0.3.8
+Release: 3%{?dist}
Summary: Automatic kmods build and install tool
Group: System Environment/Kernel
@@ -13,6 +13,7 @@
Source3: akmodsbuild.1
Source4: akmodsinit
Source6: akmodsposttrans
+Source7: akmods.service
BuildArch: noarch
@@ -38,11 +39,20 @@
# we create a special user that used by akmods to build kmod packages
Requires(pre): shadow-utils
+%if %fedora <= 15
# for the akmods init script:
Requires(post): /sbin/chkconfig
Requires(preun): /sbin/chkconfig
Requires(preun): /sbin/service
+%else
+# systemd unit requirements.
+BuildRequires: systemd-units
+Requires(post): systemd-units
+Requires(preun): systemd-units
+Requires(postun): systemd-units
+%endif
+
%description
Akmods startup script will rebuild akmod packages during system
@@ -63,7 +73,11 @@
install -D -p -m 0755 %{SOURCE0} %{buildroot}%{_sbindir}/akmods
install -D -p -m 0755 %{SOURCE2} %{buildroot}%{_bindir}/akmodsbuild
install -D -p -m 0644 %{SOURCE3} %{buildroot}%{_mandir}/man1/akmodsbuild.1
+%if %fedora <= 15
install -D -p -m 0755 %{SOURCE4} %{buildroot}%{_initrddir}/akmods
+%else
+install -D -p -m 0644 %{SOURCE7} %{buildroot}%{_unitdir}/akmods.service
+%endif
# %%{_sysconfdir}/kernel/posttrans.d/ should be owned my mkinitrd #441111
install -D -p -m 0755 %{SOURCE6} %{buildroot}/%{_sysconfdir}/kernel/postinst.d/akmods
@@ -76,6 +90,7 @@
-c "User is used by akmods to build akmod packages" akmods
%post
+%if %fedora <= 15
# add init script
/sbin/chkconfig --add akmods
# enable init script; users that installed akmods directly or indirectly
@@ -83,11 +98,26 @@
if [ $1 = 1 ]; then
/sbin/chkconfig akmods on
fi
+%else
+# Systemd
+if [ $1 -eq 1 ] ; then
+ # Initial installation
+ /bin/systemctl enable akmods.service >/dev/null 2>&1 || :
+fi
+%endif
%preun
+%if %fedora <= 15
if [ $1 = 0 ]; then
/sbin/chkconfig --del akmods
fi
+%else
+if [ $1 -eq 0 ] ; then
+ # Package removal, not upgrade
+ /bin/systemctl --no-reload disable akmods.service > /dev/null 2>&1 || :
+ /bin/systemctl stop akmods.service > /dev/null 2>&1 || :
+fi
+%endif
%files
@@ -95,14 +125,23 @@
%attr(-,akmods,akmods) %{_localstatedir}/cache/akmods
%{_bindir}/akmodsbuild
%{_sbindir}/akmods
+%if %fedora <= 15
%{_initrddir}/akmods
+%else
+%{_unitdir}/akmods.service
+%endif
%{_sysconfdir}/kernel/postinst.d/akmods
%{_mandir}/man1/*
%changelog
-* Tue Nov 15 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.7-2
-- Fix rpmdev-vercmp handling.
+* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
+- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
+
+* Mon Nov 21 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-2
+- Add hint about kernel-devel package if rebuild fails due to lack of required
+ development files.
+- Move logging from /var/cache/akmods/akmods.log to /var/log/akmods.log.
* Fri Sep 23 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.7-1
- Update to 0.3.7
13 years
rpms/akmods/devel akmods,1.7,1.8 akmods.spec,1.9,1.10
by Richard Shaw
Author: hobbes1069
Update of /cvs/free/rpms/akmods/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24700
Modified Files:
akmods akmods.spec
Log Message:
* Tue Nov 24 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.3.8-3
- Kmod can be newer than akmod due to rebuilds for new kernels (#2063)
Index: akmods
===================================================================
RCS file: /cvs/free/rpms/akmods/devel/akmods,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- akmods 21 Nov 2011 18:59:40 -0000 1.7
+++ akmods 24 Nov 2011 16:59:46 -0000 1.8
@@ -36,7 +36,7 @@
# global vars
myprog="akmods"
-myver="0.3.7"
+myver="0.3.8"
kmodlogfile=
continue_line=""
tmpdir=
@@ -87,7 +87,7 @@
fi
# global logfile
- echo "$(date +%d\ %b\ %H:%M:%S) akmods: $@" >> "/var/log/akmods.log"
+ echo "$(date +%d\ %b\ %H:%M:%S) akmods: $@" >> "/var/cache/akmods/akmods.log"
# the kmods logfile as well, if we work on a kmod
if [[ "${kmodlogfile}" ]]; then
@@ -326,16 +326,15 @@
# Versions are the same. Nothing to do.
return 0
elif [ "$retvalue" == 11 ]; then
- # kmod is newer, this nomally shouldn't happen.
- akmods_echo 1 2 -n "Warning: installed kmod is newer then the akmod"
+ # kmod is newer, nothing to do.
return 0
elif [ "$retvalue" == 12 ]; then
# akmod is newer, need to build kmod.
return 1
else
# Something went wrong
- akmods_echo 2 1 -n "Error: Could not determine if akmod is newer then the installed kmod"
- akmods_echo 2 1 --failure
+ akmods_echo 1 2 -n "Error: Could not determine if akmod is newer than the installed kmod"
+ akmods_echo 1 2 --failure
return 0
fi
}
@@ -371,7 +370,7 @@
akmods_echo 1 2 "directories are missing:"
akmods_echo 1 2 "/usr/src/kernels/${this_kernelver}/"
akmods_echo 1 2 -n "/lib/modules/${this_kernelver}/build/"
- akmods_echo 1 2 "Is the correct kernel-devel package installed?"
+ akmods_echo 1 2 -n "Is the correct kernel-devel package installed?"
akmods_echo 1 2 --failure
return 1
fi
13 years
rpms/wl-kmod/F-14 wl-kmod.spec,1.71,1.72
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv30558
Modified Files:
wl-kmod.spec
Log Message:
* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.38-1.12
- rebuild for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-14/wl-kmod.spec,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -r1.71 -r1.72
--- wl-kmod.spec 23 Nov 2011 10:04:23 -0000 1.71
+++ wl-kmod.spec 24 Nov 2011 08:44:48 -0000 1.72
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.100.82.38
-Release: 1%{?dist}.11
+Release: 1%{?dist}.12
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -82,6 +82,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.38-1.12
+- rebuild for updated kernel
+
* Wed Nov 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.38-1.11
- rebuild for updated kernel
13 years
rpms/psb-kmod/F-14 psb-kmod.spec,1.23,1.24
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/psb-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv30431
Modified Files:
psb-kmod.spec
Log Message:
* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 4.41.1-15.7
- rebuild for updated kernel
Index: psb-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/psb-kmod/F-14/psb-kmod.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- psb-kmod.spec 23 Nov 2011 10:04:13 -0000 1.23
+++ psb-kmod.spec 24 Nov 2011 08:44:38 -0000 1.24
@@ -7,7 +7,7 @@
Name: psb-kmod
Version: 4.41.1
-Release: 15%{?dist}.6
+Release: 15%{?dist}.7
Summary: Kernel module for Poulsbo graphics chipsets
Group: System Environment/Kernel
@@ -118,6 +118,9 @@
%changelog
+* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 4.41.1-15.7
+- rebuild for updated kernel
+
* Wed Nov 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 4.41.1-15.6
- rebuild for updated kernel
13 years
rpms/nvidia-kmod/F-14 nvidia-kmod.spec,1.95,1.96
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv30304
Modified Files:
nvidia-kmod.spec
Log Message:
* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.13-2.6
- rebuild for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-14/nvidia-kmod.spec,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- nvidia-kmod.spec 23 Nov 2011 10:04:02 -0000 1.95
+++ nvidia-kmod.spec 24 Nov 2011 08:44:24 -0000 1.96
@@ -9,7 +9,7 @@
Epoch: 1
Version: 280.13
# 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
@@ -86,6 +86,9 @@
%changelog
+* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.13-2.6
+- rebuild for updated kernel
+
* Wed Nov 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.13-2.5
- rebuild for updated kernel
13 years
rpms/nvidia-96xx-kmod/F-14 nvidia-96xx-kmod.spec,1.49,1.50
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-96xx-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv30177
Modified Files:
nvidia-96xx-kmod.spec
Log Message:
* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 96.43.19-1.17
- rebuild for updated kernel
Index: nvidia-96xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-96xx-kmod/F-14/nvidia-96xx-kmod.spec,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- nvidia-96xx-kmod.spec 23 Nov 2011 10:03:51 -0000 1.49
+++ nvidia-96xx-kmod.spec 24 Nov 2011 08:44:10 -0000 1.50
@@ -7,7 +7,7 @@
Name: nvidia-96xx-kmod
Version: 96.43.19
-Release: 1%{?dist}.16
+Release: 1%{?dist}.17
# Taken over by kmodtool
Summary: NVIDIA 96xx display driver kernel module
Group: System Environment/Kernel
@@ -91,6 +91,9 @@
%changelog
+* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 96.43.19-1.17
+- rebuild for updated kernel
+
* Wed Nov 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 96.43.19-1.16
- rebuild for updated kernel
13 years
rpms/nvidia-173xx-kmod/F-14 nvidia-173xx-kmod.spec,1.52,1.53
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv30050
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.28-1.19
- rebuild for updated kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-14/nvidia-173xx-kmod.spec,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- nvidia-173xx-kmod.spec 23 Nov 2011 10:03:39 -0000 1.52
+++ nvidia-173xx-kmod.spec 24 Nov 2011 08:43:58 -0000 1.53
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.28
# Taken over by kmodtool
-Release: 1%{?dist}.18
+Release: 1%{?dist}.19
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Thu Nov 24 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.28-1.19
+- rebuild for updated kernel
+
* Wed Nov 23 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.28-1.18
- rebuild for updated kernel
13 years