rpms/miro/F-17 miro-4.0.6-terminate_dbus.patch, NONE, 1.1 miro-4.0.2-change_timeout.patch, 1.2, 1.3 miro.spec, 1.1, 1.2
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/F-17
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19205/F-17
Modified Files:
miro-4.0.2-change_timeout.patch miro.spec
Added Files:
miro-4.0.6-terminate_dbus.patch
Log Message:
* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
- Apply upstream patch for terminating DBus after running unit tests
miro-4.0.6-terminate_dbus.patch:
test.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- NEW FILE miro-4.0.6-terminate_dbus.patch ---
>From f8e5619952fb25e648a91e7b616b7bcc91255299 Mon Sep 17 00:00:00 2001
From: Ben Dean-Kawamura <ben(a)pculture.org>
Date: Tue, 8 Nov 2011 15:35:29 -0500
Subject: [PATCH] Fix for killing dbus after running the unittests
I rewrote the script and split things up rather than having one huge line.
I'm not sure what the problem was before, but it was leaving me with an extra
dbus process each time I ran the unittests. The new version works for me.
---
tv/linux/test.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/tv/linux/test.sh b/tv/linux/test.sh
index 1cce3e7..9e42e4a 100755
--- a/tv/linux/test.sh
+++ b/tv/linux/test.sh
@@ -35,4 +35,8 @@
# this comes from http://www.estamos.de/blog/2009/05/08/running-syncevolution-as-cron-job/
# env `dbus-launch` sh -c 'trap "kill $DBUS_SESSION_BUS_PID" EXIT; ./run.sh --unittest utiltest > /home/pcf/test_output.txt 1>&2' || true
-env `dbus-launch` bash -c "trap \"kill $DBUS_SESSION_BUS_PID\" EXIT; ./run.sh --unittest $1 $2 $3"
+
+
+eval `dbus-launch --sh-syntax`
+trap "kill $DBUS_SESSION_BUS_PID" EXIT
+./run.sh --unittest $@
--
1.7.9.1
miro-4.0.2-change_timeout.patch:
subprocesstest.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: miro-4.0.2-change_timeout.patch
===================================================================
RCS file: /cvs/free/rpms/miro/F-17/miro-4.0.2-change_timeout.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- miro-4.0.2-change_timeout.patch 14 Feb 2012 10:52:01 -0000 1.2
+++ miro-4.0.2-change_timeout.patch 2 Mar 2012 14:27:39 -0000 1.3
@@ -18,7 +18,7 @@
EventLoopTest.tearDown(self)
- def _wait_for_subprocess_ready(self, timeout=4.0):
-+ def _wait_for_subprocess_ready(self, timeout=20.0):
++ def _wait_for_subprocess_ready(self, timeout=6.0):
"""Wait for the subprocess to startup."""
start = time.time()
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/F-17/miro.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- miro.spec 13 Feb 2012 10:56:03 -0000 1.1
+++ miro.spec 2 Mar 2012 14:27:39 -0000 1.2
@@ -1,6 +1,6 @@
Name: miro
Version: 4.0.6
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,8 @@
# Use provided CFLAGS when building miro-segmenter
# submitted: https://bugzilla.pculture.org/show_bug.cgi?id=18027
Patch4: miro-4.0.2.1-segmenter_cflags.patch
+# terminate DBus after running unit tests
+Patch5: miro-4.0.6-terminate_dbus.patch
BuildRequires: python-devel
BuildRequires: desktop-file-utils
@@ -86,6 +88,7 @@
%patch2 -p2
%patch3 -p2
%patch4 -p2
+%patch5 -p2
# /Patches
@@ -142,6 +145,9 @@
%changelog
+* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
+- Apply upstream patch for terminating DBus after running unit tests
+
* Wed Feb 8 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-2
- Add GPLv2 to license field (for miro-segmenter)
- Remove old upgrade path for Democracy package
12 years, 8 months
rpms/miro/F-15 miro-4.0.6-terminate_dbus.patch, NONE, 1.1 miro.spec, 1.1, 1.2
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19205/F-15
Modified Files:
miro.spec
Added Files:
miro-4.0.6-terminate_dbus.patch
Log Message:
* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
- Apply upstream patch for terminating DBus after running unit tests
miro-4.0.6-terminate_dbus.patch:
test.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- NEW FILE miro-4.0.6-terminate_dbus.patch ---
>From f8e5619952fb25e648a91e7b616b7bcc91255299 Mon Sep 17 00:00:00 2001
From: Ben Dean-Kawamura <ben(a)pculture.org>
Date: Tue, 8 Nov 2011 15:35:29 -0500
Subject: [PATCH] Fix for killing dbus after running the unittests
I rewrote the script and split things up rather than having one huge line.
I'm not sure what the problem was before, but it was leaving me with an extra
dbus process each time I ran the unittests. The new version works for me.
---
tv/linux/test.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/tv/linux/test.sh b/tv/linux/test.sh
index 1cce3e7..9e42e4a 100755
--- a/tv/linux/test.sh
+++ b/tv/linux/test.sh
@@ -35,4 +35,8 @@
# this comes from http://www.estamos.de/blog/2009/05/08/running-syncevolution-as-cron-job/
# env `dbus-launch` sh -c 'trap "kill $DBUS_SESSION_BUS_PID" EXIT; ./run.sh --unittest utiltest > /home/pcf/test_output.txt 1>&2' || true
-env `dbus-launch` bash -c "trap \"kill $DBUS_SESSION_BUS_PID\" EXIT; ./run.sh --unittest $1 $2 $3"
+
+
+eval `dbus-launch --sh-syntax`
+trap "kill $DBUS_SESSION_BUS_PID" EXIT
+./run.sh --unittest $@
--
1.7.9.1
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/F-15/miro.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- miro.spec 13 Feb 2012 10:56:03 -0000 1.1
+++ miro.spec 2 Mar 2012 14:27:39 -0000 1.2
@@ -1,6 +1,6 @@
Name: miro
Version: 4.0.6
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,8 @@
# Use provided CFLAGS when building miro-segmenter
# submitted: https://bugzilla.pculture.org/show_bug.cgi?id=18027
Patch4: miro-4.0.2.1-segmenter_cflags.patch
+# terminate DBus after running unit tests
+Patch5: miro-4.0.6-terminate_dbus.patch
BuildRequires: python-devel
BuildRequires: desktop-file-utils
@@ -86,6 +88,7 @@
%patch2 -p2
%patch3 -p2
%patch4 -p2
+%patch5 -p2
# /Patches
@@ -142,6 +145,9 @@
%changelog
+* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
+- Apply upstream patch for terminating DBus after running unit tests
+
* Wed Feb 8 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-2
- Add GPLv2 to license field (for miro-segmenter)
- Remove old upgrade path for Democracy package
12 years, 8 months
rpms/miro/F-16 miro-4.0.6-terminate_dbus.patch, NONE, 1.1 miro.spec, 1.1, 1.2
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19205/F-16
Modified Files:
miro.spec
Added Files:
miro-4.0.6-terminate_dbus.patch
Log Message:
* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
- Apply upstream patch for terminating DBus after running unit tests
miro-4.0.6-terminate_dbus.patch:
test.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- NEW FILE miro-4.0.6-terminate_dbus.patch ---
>From f8e5619952fb25e648a91e7b616b7bcc91255299 Mon Sep 17 00:00:00 2001
From: Ben Dean-Kawamura <ben(a)pculture.org>
Date: Tue, 8 Nov 2011 15:35:29 -0500
Subject: [PATCH] Fix for killing dbus after running the unittests
I rewrote the script and split things up rather than having one huge line.
I'm not sure what the problem was before, but it was leaving me with an extra
dbus process each time I ran the unittests. The new version works for me.
---
tv/linux/test.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/tv/linux/test.sh b/tv/linux/test.sh
index 1cce3e7..9e42e4a 100755
--- a/tv/linux/test.sh
+++ b/tv/linux/test.sh
@@ -35,4 +35,8 @@
# this comes from http://www.estamos.de/blog/2009/05/08/running-syncevolution-as-cron-job/
# env `dbus-launch` sh -c 'trap "kill $DBUS_SESSION_BUS_PID" EXIT; ./run.sh --unittest utiltest > /home/pcf/test_output.txt 1>&2' || true
-env `dbus-launch` bash -c "trap \"kill $DBUS_SESSION_BUS_PID\" EXIT; ./run.sh --unittest $1 $2 $3"
+
+
+eval `dbus-launch --sh-syntax`
+trap "kill $DBUS_SESSION_BUS_PID" EXIT
+./run.sh --unittest $@
--
1.7.9.1
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/F-16/miro.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- miro.spec 13 Feb 2012 10:56:03 -0000 1.1
+++ miro.spec 2 Mar 2012 14:27:39 -0000 1.2
@@ -1,6 +1,6 @@
Name: miro
Version: 4.0.6
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,8 @@
# Use provided CFLAGS when building miro-segmenter
# submitted: https://bugzilla.pculture.org/show_bug.cgi?id=18027
Patch4: miro-4.0.2.1-segmenter_cflags.patch
+# terminate DBus after running unit tests
+Patch5: miro-4.0.6-terminate_dbus.patch
BuildRequires: python-devel
BuildRequires: desktop-file-utils
@@ -86,6 +88,7 @@
%patch2 -p2
%patch3 -p2
%patch4 -p2
+%patch5 -p2
# /Patches
@@ -142,6 +145,9 @@
%changelog
+* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
+- Apply upstream patch for terminating DBus after running unit tests
+
* Wed Feb 8 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-2
- Add GPLv2 to license field (for miro-segmenter)
- Remove old upgrade path for Democracy package
12 years, 8 months
rpms/miro/devel miro-4.0.6-terminate_dbus.patch, NONE, 1.1 miro-4.0.2-change_timeout.patch, 1.2, 1.3 miro.spec, 1.1, 1.2
by Michel Alexandre Salim
Author: salimma
Update of /cvs/free/rpms/miro/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19205/devel
Modified Files:
miro-4.0.2-change_timeout.patch miro.spec
Added Files:
miro-4.0.6-terminate_dbus.patch
Log Message:
* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
- Apply upstream patch for terminating DBus after running unit tests
miro-4.0.6-terminate_dbus.patch:
test.sh | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--- NEW FILE miro-4.0.6-terminate_dbus.patch ---
>From f8e5619952fb25e648a91e7b616b7bcc91255299 Mon Sep 17 00:00:00 2001
From: Ben Dean-Kawamura <ben(a)pculture.org>
Date: Tue, 8 Nov 2011 15:35:29 -0500
Subject: [PATCH] Fix for killing dbus after running the unittests
I rewrote the script and split things up rather than having one huge line.
I'm not sure what the problem was before, but it was leaving me with an extra
dbus process each time I ran the unittests. The new version works for me.
---
tv/linux/test.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/tv/linux/test.sh b/tv/linux/test.sh
index 1cce3e7..9e42e4a 100755
--- a/tv/linux/test.sh
+++ b/tv/linux/test.sh
@@ -35,4 +35,8 @@
# this comes from http://www.estamos.de/blog/2009/05/08/running-syncevolution-as-cron-job/
# env `dbus-launch` sh -c 'trap "kill $DBUS_SESSION_BUS_PID" EXIT; ./run.sh --unittest utiltest > /home/pcf/test_output.txt 1>&2' || true
-env `dbus-launch` bash -c "trap \"kill $DBUS_SESSION_BUS_PID\" EXIT; ./run.sh --unittest $1 $2 $3"
+
+
+eval `dbus-launch --sh-syntax`
+trap "kill $DBUS_SESSION_BUS_PID" EXIT
+./run.sh --unittest $@
--
1.7.9.1
miro-4.0.2-change_timeout.patch:
subprocesstest.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: miro-4.0.2-change_timeout.patch
===================================================================
RCS file: /cvs/free/rpms/miro/devel/miro-4.0.2-change_timeout.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- miro-4.0.2-change_timeout.patch 14 Feb 2012 10:52:01 -0000 1.2
+++ miro-4.0.2-change_timeout.patch 2 Mar 2012 14:27:39 -0000 1.3
@@ -18,7 +18,7 @@
EventLoopTest.tearDown(self)
- def _wait_for_subprocess_ready(self, timeout=4.0):
-+ def _wait_for_subprocess_ready(self, timeout=20.0):
++ def _wait_for_subprocess_ready(self, timeout=6.0):
"""Wait for the subprocess to startup."""
start = time.time()
Index: miro.spec
===================================================================
RCS file: /cvs/free/rpms/miro/devel/miro.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- miro.spec 13 Feb 2012 10:56:03 -0000 1.1
+++ miro.spec 2 Mar 2012 14:27:40 -0000 1.2
@@ -1,6 +1,6 @@
Name: miro
Version: 4.0.6
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Internet TV Player
Group: Applications/Multimedia
@@ -24,6 +24,8 @@
# Use provided CFLAGS when building miro-segmenter
# submitted: https://bugzilla.pculture.org/show_bug.cgi?id=18027
Patch4: miro-4.0.2.1-segmenter_cflags.patch
+# terminate DBus after running unit tests
+Patch5: miro-4.0.6-terminate_dbus.patch
BuildRequires: python-devel
BuildRequires: desktop-file-utils
@@ -86,6 +88,7 @@
%patch2 -p2
%patch3 -p2
%patch4 -p2
+%patch5 -p2
# /Patches
@@ -142,6 +145,9 @@
%changelog
+* Fri Mar 2 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-3
+- Apply upstream patch for terminating DBus after running unit tests
+
* Wed Feb 8 2012 Michel Salim <salimma(a)fedoraproject.org> - 4.0.6-2
- Add GPLv2 to license field (for miro-segmenter)
- Remove old upgrade path for Democracy package
12 years, 8 months
rpms/wl-kmod/F-16 wl-kmod.spec,1.75,1.76
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31927
Modified Files:
wl-kmod.spec
Log Message:
* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.9
- rebuild for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-16/wl-kmod.spec,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- wl-kmod.spec 1 Mar 2012 13:23:28 -0000 1.75
+++ wl-kmod.spec 2 Mar 2012 11:35:16 -0000 1.76
@@ -9,7 +9,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 2%{?dist}.8
+Release: 2%{?dist}.9
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
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.9
+- rebuild for updated kernel
+
* Thu Mar 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.8
- rebuild for updated kernel
12 years, 8 months
rpms/nvidia-kmod/F-16 nvidia-kmod.spec,1.107,1.108
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31659
Modified Files:
nvidia-kmod.spec
Log Message:
* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:290.10-1.17
- rebuild for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-16/nvidia-kmod.spec,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- nvidia-kmod.spec 1 Mar 2012 13:22:46 -0000 1.107
+++ nvidia-kmod.spec 2 Mar 2012 11:34:35 -0000 1.108
@@ -9,7 +9,7 @@
Epoch: 1
Version: 290.10
# Taken over by kmodtool
-Release: 1%{?dist}.16
+Release: 1%{?dist}.17
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -77,6 +77,9 @@
%changelog
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:290.10-1.17
+- rebuild for updated kernel
+
* Thu Mar 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:290.10-1.16
- rebuild for updated kernel
12 years, 8 months
rpms/catalyst-kmod/F-16 catalyst-kmod.spec,1.31,1.32
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31523
Modified Files:
catalyst-kmod.spec
Log Message:
* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 12.1-1.5
- rebuild for updated kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-16/catalyst-kmod.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- catalyst-kmod.spec 1 Mar 2012 13:22:03 -0000 1.31
+++ catalyst-kmod.spec 2 Mar 2012 11:33:53 -0000 1.32
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 12.1
-Release: 1%{?dist}.4
+Release: 1%{?dist}.5
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -97,6 +97,9 @@
%changelog
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 12.1-1.5
+- rebuild for updated kernel
+
* Thu Mar 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 12.1-1.4
- rebuild for updated kernel
12 years, 8 months
rpms/xtables-addons-kmod/F-16 xtables-addons-kmod.spec,1.32,1.33
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31382
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.7
- rebuild for updated kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-16/xtables-addons-kmod.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- xtables-addons-kmod.spec 1 Mar 2012 13:21:22 -0000 1.32
+++ xtables-addons-kmod.spec 2 Mar 2012 11:33:10 -0000 1.33
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 1.41
-Release: 1%{?dist}.6
+Release: 1%{?dist}.7
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.7
+- rebuild for updated kernel
+
* Thu Mar 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.6
- rebuild for updated kernel
12 years, 8 months
rpms/west-chamber-kmod/F-16 west-chamber-kmod.spec,1.27,1.28
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/west-chamber-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31240
Modified Files:
west-chamber-kmod.spec
Log Message:
* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.23
- rebuild for updated kernel
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/F-16/west-chamber-kmod.spec,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- west-chamber-kmod.spec 1 Mar 2012 13:20:41 -0000 1.27
+++ west-chamber-kmod.spec 2 Mar 2012 11:32:29 -0000 1.28
@@ -11,7 +11,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 7.%{?svndate}svn%{?dist}.22
+Release: 7.%{?svndate}svn%{?dist}.23
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -82,6 +82,9 @@
rm -rf %{buildroot}
%changelog
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.23
+- rebuild for updated kernel
+
* Thu Mar 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.22
- rebuild for updated kernel
12 years, 8 months
rpms/VirtualBox-OSE-kmod/F-16 VirtualBox-OSE-kmod.spec,1.77,1.78
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31099
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.8-1.13
- rebuild for updated kernel
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-16/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- VirtualBox-OSE-kmod.spec 1 Mar 2012 13:20:00 -0000 1.77
+++ VirtualBox-OSE-kmod.spec 2 Mar 2012 11:31:47 -0000 1.78
@@ -18,7 +18,7 @@
Name: VirtualBox-OSE-kmod
Version: 4.1.8
-Release: 1%{?dist}.12
+Release: 1%{?dist}.13
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -100,6 +100,9 @@
%changelog
+* Fri Mar 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.8-1.13
+- rebuild for updated kernel
+
* Thu Mar 01 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.8-1.12
- rebuild for updated kernel
12 years, 8 months