rpms/motion/devel ffmpeg-detection.patch, NONE, 1.1 motion-initscript, NONE, 1.1 motion.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Steven Moix
Author: moixs
Update of /cvs/free/rpms/motion/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4081/devel
Modified Files:
.cvsignore sources
Added Files:
ffmpeg-detection.patch motion-initscript motion.spec
Log Message:
Initial import
ffmpeg-detection.patch:
--- NEW FILE ffmpeg-detection.patch ---
Index: configure.in
===================================================================
--- configure.in (revisión: 433)
+++ configure.in (copia de trabajo)
@@ -389,6 +389,9 @@
elif test -f ${FFMPEG_DIR}/include/libavformat/avformat.h; then
AC_MSG_RESULT(found ${FFMPEG_DIR}/include/libavformat/avformat.h)
FFMPEG_CFLAGS="-I${FFMPEG_DIR}/include -DFFMPEG_NEW_INCLUDES"
+ elif test -f ${FFMPEG_DIR}/include/ffmpeg/libavformat/avformat.h; then
+ AC_MSG_RESULT(found ${FFMPEG_DIR}/include/ffmpeg/libavformat/avformat.h)
+ FFMPEG_CFLAGS="-I${FFMPEG_DIR}/include/ffmpeg -DFFMPEG_NEW_INCLUDES"
else
AC_MSG_RESULT(not found)
FFMPEG_OK="no_found"
Index: configure
===================================================================
--- configure (revisión: 433)
+++ configure (copia de trabajo)
@@ -3261,6 +3261,10 @@
{ echo "$as_me:$LINENO: result: found ${FFMPEG_DIR}/include/libavformat/avformat.h" >&5
echo "${ECHO_T}found ${FFMPEG_DIR}/include/libavformat/avformat.h" >&6; }
FFMPEG_CFLAGS="-I${FFMPEG_DIR}/include -DFFMPEG_NEW_INCLUDES"
+ elif test -f ${FFMPEG_DIR}/include/ffmpeg/libavformat/avformat.h; then
+ { echo "$as_me:$LINENO: result: found ${FFMPEG_DIR}/include/ffmpeg/libavformat/avformat.h" >&5
+echo "${ECHO_T}found ${FFMPEG_DIR}/include/ffmpeg/libavformat/avformat.h" >&6; }
+ FFMPEG_CFLAGS="-I${FFMPEG_DIR}/include/ffmpeg -DFFMPEG_NEW_INCLUDES"
else
{ echo "$as_me:$LINENO: result: not found" >&5
echo "${ECHO_T}not found" >&6; }
--- NEW FILE motion-initscript ---
#!/bin/bash
#
# motion Startup script for the Motion Detection System
#
# chkconfig: - 85 15
# description: Motion detection system. It is used to detect movement based \
# on compare images.
# processname: motion
# pidfile: /var/run/motion.pid
# config: /etc/motion.conf
#
### BEGIN INIT INFO
# Provides: motion
# Required-Start: $local_fs
# Required-Stop: $local_fs
# Default-Start:
# Default-Stop:
# Short-Description: Start and stop motion detection system
# Description: The Motion detection system is used to detect movement based
# on image comparison.
### END INIT INFO
# Source function library.
. /etc/rc.d/init.d/functions
motion=${MOTION-/usr/bin/motion}
prog=motion
pidfile=/var/run/motion.pid
lockfile=/var/lock/subsys/motion
start() {
[ -x $exec ] || exit 5
[ -f $config ] || exit 6
echo -n $"Starting $prog: "
daemon $motion 2> /dev/null
retval=$?
echo
[ $retval -eq 0 ] && touch $lockfile
return $retval
}
stop() {
echo -n $"Stopping $prog: "
killproc $motion
retval=$?
echo
[ $retval = 0 ] && rm -f $lockfile
}
restart() {
stop
start
}
reload() {
echo -n $"Reloading $prog configuration: "
killproc $motion -HUP
retval=$?
echo
return $retval
}
rh_status() {
# run checks to determine if the service is running or use generic status
status $prog
}
rh_status_q() {
rh_status >/dev/null 2>&1
}
# See how we were called.
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
#force_reload
reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
restart
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
exit 1
esac
exit $?
--- NEW FILE motion.spec ---
Name: motion
Version: 3.2.11
Release: 3%{?dist}
Summary: A motion detection system
Group: Applications/Multimedia
License: GPLv2+
URL: http://motion.sourceforge.net/
Source0: http://prdownloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
Source1: motion-initscript
Patch0: ffmpeg-detection.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libjpeg-devel ffmpeg-devel zlib-devel
#Requires: ffmpeg
Requires(post): chkconfig
Requires(preun): chkconfig initscripts
Requires(postun): initscripts
%description
Motion is a software motion detector. It grabs images from video4linux devices
and/or from webcams (such as the axis network cameras). Motion is the perfect
tool for keeping an eye on your property keeping only those images that are
interesting. Motion is strictly command line driven and can run as a daemon
with a rather small footprint. This version is built with ffmpeg support but
without MySQL and PostgreSQL support.
%prep
%setup -q
#ffmpeg detection patch in version 3.2.11. This is an upstream patch.
%patch0 -p0
%build
%configure --sysconfdir=%{_sysconfdir}/%{name} --without-optimizecpu --with-ffmpeg --without-mysql --without-pgsql
#We convert 2 files to UTF-8, otherwise rpmlint complains
iconv -f iso8859-1 -t utf-8 CREDITS > CREDITS.conv && mv -f CREDITS.conv CREDITS
iconv -f iso8859-1 -t utf-8 CHANGELOG > CHANGELOG.conv && mv -f CHANGELOG.conv CHANGELOG
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}
#We rename the configuration file
mv %{buildroot}%{_sysconfdir}/%{name}/motion-dist.conf %{buildroot}%{_sysconfdir}/%{name}/motion.conf
#We change the PID file path to match the one in the startup script
sed -i 's|/var/run/motion/motion.pid|/var/run/motion.pid|g' %{buildroot}%{_sysconfdir}/%{name}/motion.conf
#We remove SQL directives in the configuration file, as we don't use them
sed -i 's|sql_log_image|; sql_log_image|g' %{buildroot}%{_sysconfdir}/%{name}/motion.conf
sed -i 's|sql_log_snapshot|; sql_log_snapshot|g' %{buildroot}%{_sysconfdir}/%{name}/motion.conf
sed -i 's|sql_log_mpeg|; sql_log_mpeg|g' %{buildroot}%{_sysconfdir}/%{name}/motion.conf
sed -i 's|sql_log_timelapse|; sql_log_timelapse|g' %{buildroot}%{_sysconfdir}/%{name}/motion.conf
sed -i 's|sql_query|; sql_query|g' %{buildroot}%{_sysconfdir}/%{name}/motion.conf
#We install our startup script
install -D -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/%{name}
%post
#We add the motion init script to the services when installing
/sbin/chkconfig --add %{name}
%preun
#We stop the service and remove it from init scripts when erasing
if [ $1 = 0 ] ; then
/sbin/service %{name} stop >/dev/null 2>&1
/sbin/chkconfig --del %{name}
fi
%postun
#We restart the service during an upgrade
if [ "$1" -ge "1" ] ; then
/sbin/service %{name} condrestart >/dev/null 2>&1
fi
%clean
rm -rf %{buildroot}
%files
#Permissions are bogus upstream, we need to be sure to set them here
%defattr (-,root,root,-)
%dir %{_sysconfdir}/%{name}
%dir %{_datadir}/%{name}-%{version}
%dir %{_datadir}/%{name}-%{version}/examples
%doc CHANGELOG COPYING CREDITS INSTALL README motion_guide.html
%attr(0644,root,root) %{_datadir}/%{name}-%{version}/examples/motion-dist.conf
%attr(0755,root,root) %{_datadir}/%{name}-%{version}/examples/motion.init-Debian
%attr(0755,root,root) %{_datadir}/%{name}-%{version}/examples/motion.init-FreeBSD.sh
%attr(0755,root,root) %{_datadir}/%{name}-%{version}/examples/motion.init-RH
%attr(0644,root,root) %{_datadir}/%{name}-%{version}/examples/thread1.conf
%attr(0644,root,root) %{_datadir}/%{name}-%{version}/examples/thread2.conf
%attr(0644,root,root) %{_datadir}/%{name}-%{version}/examples/thread3.conf
%attr(0644,root,root) %{_datadir}/%{name}-%{version}/examples/thread4.conf
%attr(0644,root,root) %config(noreplace) %{_sysconfdir}/%{name}/motion.conf
%attr(0755,root,root) %{_bindir}/motion
%attr(0644,root,root) %{_mandir}/man1/motion.1*
%attr(0755,root,root) %{_initrddir}/%{name}
%changelog
* Wed Mar 18 2009 Steven Moix <steven.moix(a)axianet.ch> - 3.2.11-3
- Even more corrected init script thanks to Stewart Adam
* Sun Mar 15 2009 Steven Moix <steven.moix(a)axianet.ch> - 3.2.11-2
- Removed the ffmpeg requires
- Corrected the spec file
- New init script with a corrected start() function and LSB header support
* Tue Mar 03 2009 Steven Moix <steven.moix(a)axianet.ch> - 3.2.11-1
- Updated to Fedora 10 standard
* Sun Sep 18 2005 Kenneth Lavrsen <kenneth(a)lavrsen.dk> - 3.2.4-1
- Generic version of livna spec file replacing the old less optimal specfile.
* Thu Sep 15 2005 Dams <anvil[AT]livna.org> - 3.2.3-0.lvn.1
- Initial released based upon upstream spec file
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/motion/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 19 Mar 2009 18:19:36 -0000 1.1
+++ .cvsignore 25 Mar 2009 21:43:14 -0000 1.2
@@ -0,0 +1 @@
+motion-3.2.11.tar.gz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/motion/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 19 Mar 2009 18:19:36 -0000 1.1
+++ sources 25 Mar 2009 21:43:14 -0000 1.2
@@ -0,0 +1 @@
+3a26c00f3250eacf6fa93c7a7e0249d9 motion-3.2.11.tar.gz
15 years, 9 months
rpms/rt2870-kmod/F-9 rt2870-kmod.spec,1.20,1.21
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rt2870-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14820
Modified Files:
rt2870-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.4.0.0-5.4
- rebuild for new kernels
Index: rt2870-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-9/rt2870-kmod.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- rt2870-kmod.spec 25 Mar 2009 14:34:13 -0000 1.20
+++ rt2870-kmod.spec 25 Mar 2009 14:47:43 -0000 1.21
@@ -7,7 +7,7 @@
Name: rt2870-kmod
Version: 1.4.0.0
-Release: 5%{?dist}.3
+Release: 5%{?dist}.4
Summary: Kernel module for wireless devices with Ralink's rt2870 chipsets
Group: System Environment/Kernel
@@ -73,6 +73,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.4.0.0-5.4
+- rebuild for new kernels
+
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.4.0.0-5.3
- rebuild for new kernels
15 years, 9 months
rpms/wl-kmod/F-9 wl-kmod.spec,1.20,1.21
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/wl-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14419
Modified Files:
wl-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.79.10-1.1
- rebuild for new kernels
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-9/wl-kmod.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- wl-kmod.spec 8 Mar 2009 21:16:46 -0000 1.20
+++ wl-kmod.spec 25 Mar 2009 14:44:38 -0000 1.21
@@ -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
-#define buildforkernels newest
+%define buildforkernels newest
Name: wl-kmod
Version: 5.10.79.10
-Release: 1%{?dist}
+Release: 1%{?dist}.1
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
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.79.10-1.1
+- rebuild for new kernels
+
* Sun Mar 08 2009 Chris Nolan <chris(a)cenolan.com> - 5.10.79.10-1
- update version to 5.10.79.10
15 years, 9 months
rpms/slmodem-kmod/F-9 slmodem-kmod.spec,1.12,1.13
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/slmodem-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14296
Modified Files:
slmodem-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-26.13
- rebuild for new kernels
Index: slmodem-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/slmodem-kmod/F-9/slmodem-kmod.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- slmodem-kmod.spec 26 Feb 2009 14:07:34 -0000 1.12
+++ slmodem-kmod.spec 25 Mar 2009 14:43:52 -0000 1.13
@@ -12,7 +12,7 @@
Name: slmodem-kmod
Version: 2.9.11
-Release: 26%{?dist}.12
+Release: 26%{?dist}.13
Summary: Proprietary SmartLink softmodem kernel drivers
Group: System Environment/Kernel
@@ -102,6 +102,9 @@
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-26.13
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-26.12
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/nvidia-newest-kmod/F-9 nvidia-newest-kmod.spec,1.9,1.10
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-newest-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14174
Modified Files:
nvidia-newest-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 177.82-1.9
- rebuild for new kernels
Index: nvidia-newest-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-newest-kmod/F-9/nvidia-newest-kmod.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nvidia-newest-kmod.spec 26 Feb 2009 14:07:20 -0000 1.9
+++ nvidia-newest-kmod.spec 25 Mar 2009 14:43:03 -0000 1.10
@@ -8,7 +8,7 @@
Name: nvidia-newest-kmod
Version: 177.82
# Taken over by kmodtool
-Release: 1%{?dist}.8
+Release: 1%{?dist}.9
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 177.82-1.9
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 177.82-1.8
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/nvidia-kmod/F-9 nvidia-kmod.spec,1.16,1.17
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14053
Modified Files:
nvidia-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.15-1.12
- rebuild for new kernels
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-9/nvidia-kmod.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- nvidia-kmod.spec 26 Feb 2009 14:07:05 -0000 1.16
+++ nvidia-kmod.spec 25 Mar 2009 14:42:08 -0000 1.17
@@ -8,7 +8,7 @@
Name: nvidia-kmod
Version: 173.14.15
# Taken over by kmodtool
-Release: 1%{?dist}.11
+Release: 1%{?dist}.12
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.15-1.12
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.15-1.11
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/nvidia-beta-kmod/F-9 nvidia-beta-kmod.spec,1.10,1.11
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-beta-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13932
Modified Files:
nvidia-beta-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.11.02-1.3
- rebuild for new kernels
Index: nvidia-beta-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-beta-kmod/F-9/nvidia-beta-kmod.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- nvidia-beta-kmod.spec 26 Feb 2009 14:06:50 -0000 1.10
+++ nvidia-beta-kmod.spec 25 Mar 2009 14:41:19 -0000 1.11
@@ -8,7 +8,7 @@
Name: nvidia-beta-kmod
Version: 180.11.02
# 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
@@ -100,6 +100,9 @@
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.11.02-1.3
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 180.11.02-1.2
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/nvidia-96xx-kmod/F-9 nvidia-96xx-kmod.spec,1.9,1.10
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-96xx-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13532
Modified Files:
nvidia-96xx-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.09-1.10
- rebuild for new kernels
Index: nvidia-96xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-96xx-kmod/F-9/nvidia-96xx-kmod.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nvidia-96xx-kmod.spec 26 Feb 2009 14:06:35 -0000 1.9
+++ nvidia-96xx-kmod.spec 25 Mar 2009 14:40:22 -0000 1.10
@@ -9,7 +9,7 @@
Name: nvidia-96xx-kmod
Version: 96.43.09
-Release: 1%{?dist}.9
+Release: 1%{?dist}.10
# Taken over by kmodtool
Summary: NVIDIA 1.0.96xx display driver kernel module
Group: System Environment/Kernel
@@ -96,6 +96,9 @@
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.09-1.10
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.09-1.9
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/madwifi-kmod/F-9 madwifi-kmod.spec,1.13,1.14
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/madwifi-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13405
Modified Files:
madwifi-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.9.4-50.r3867_20080924.13
- rebuild for new kernels
Index: madwifi-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/madwifi-kmod/F-9/madwifi-kmod.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- madwifi-kmod.spec 26 Feb 2009 14:06:20 -0000 1.13
+++ madwifi-kmod.spec 25 Mar 2009 14:39:47 -0000 1.14
@@ -9,7 +9,7 @@
Name: madwifi-kmod
Version: 0.9.4
-Release: 50.%(echo %{revision}| tr - _)%{?dist}.12
+Release: 50.%(echo %{revision}| tr - _)%{?dist}.13
Summary: Kernel module for Atheros 802.11 wireless devices ar5210,ar5211 or ar5212
Group: System Environment/Kernel
@@ -72,6 +72,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.9.4-50.r3867_20080924.13
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.9.4-50.r3867_20080924.12
- rebuild for latest Fedora kernel;
15 years, 9 months
rpms/fglrx-kmod/F-9 fglrx-kmod.spec,1.24,1.25
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/fglrx-kmod/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13287
Modified Files:
fglrx-kmod.spec
Log Message:
* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 9.2-2.2
- rebuild for new kernels
Index: fglrx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/fglrx-kmod/F-9/fglrx-kmod.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- fglrx-kmod.spec 26 Feb 2009 14:06:06 -0000 1.24
+++ fglrx-kmod.spec 25 Mar 2009 14:39:35 -0000 1.25
@@ -13,7 +13,7 @@
Name: fglrx-kmod
Version: 9.2
-Release: 2%{?dist}.1
+Release: 2%{?dist}.2
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -96,6 +96,9 @@
%changelog
+* Wed Mar 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 9.2-2.2
+- rebuild for new kernels
+
* Thu Feb 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 9.2-2.1
- rebuild for latest Fedora kernel;
15 years, 9 months