rpms/wl-kmod/devel broadcom-wl-5.60.48.36-debug-lockdep-rcu-enabled.patch, NONE, 1.1 wl-kmod.spec, 1.51, 1.52
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16210
Modified Files:
wl-kmod.spec
Added Files:
broadcom-wl-5.60.48.36-debug-lockdep-rcu-enabled.patch
Log Message:
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added patch for kernel > 2.6.33
- added multicast kernel patch
- added bogus debug_lockdep_rcu_enabled patch
broadcom-wl-5.60.48.36-debug-lockdep-rcu-enabled.patch:
wl_linux.c | 5 +++++
1 file changed, 5 insertions(+)
--- NEW FILE broadcom-wl-5.60.48.36-debug-lockdep-rcu-enabled.patch ---
diff -u --recursive src/wl/sys/wl_linux.c a/src/wl/sys/wl_linux.c
--- src/wl/sys/wl_linux.c 2010-08-05 03:19:31.168558378 -0500
+++ src/wl/sys/wl_linux.c 2010-08-05 03:12:35.987557321 -0500
@@ -249,6 +249,11 @@
}
+int debug_lockdep_rcu_enabled(void)
+{
+ return 1;
+}
+
static wl_info_t *
wl_attach(uint16 vendor, uint16 device, ulong regs, uint bustype, void *btparam, uint irq)
{
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- wl-kmod.spec 26 Sep 2010 13:06:27 -0000 1.51
+++ wl-kmod.spec 26 Sep 2010 13:20:53 -0000 1.52
@@ -18,6 +18,7 @@
Patch0: broadcom-wl-5.60.48.36-license.patch
Patch1: broadcom-wl-5.60.48.36-2.6.33-kernel.patch
Patch2: broadcom-wl-5.60.48.36-multicast-kernel.patch
+Patch3: broadcom-wl-5.60.48.36-debug-lockdep-rcu-enabled.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -57,6 +58,7 @@
%patch0 -p1 -b .license
%patch1 -p0 -b .kernel
%patch2 -p0 -b .multicast
+%patch3 -p0 -b .lockdep
popd
for kernel_version in %{?kernel_versions} ; do
@@ -89,6 +91,7 @@
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added patch for kernel > 2.6.33
- added multicast kernel patch
+- added bogus debug_lockdep_rcu_enabled patch
* Mon Feb 22 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-1
- Updated version to 5.60.48.36
14 years, 4 months
rpms/wl-kmod/devel broadcom-wl-5.60.48.36-2.6.33-kernel.patch, NONE, 1.1 broadcom-wl-5.60.48.36-multicast-kernel.patch, NONE, 1.1 wl-kmod.spec, 1.50, 1.51
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15133
Modified Files:
wl-kmod.spec
Added Files:
broadcom-wl-5.60.48.36-2.6.33-kernel.patch
broadcom-wl-5.60.48.36-multicast-kernel.patch
Log Message:
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added patch for kernel > 2.6.33
- added multicast kernel patch
broadcom-wl-5.60.48.36-2.6.33-kernel.patch:
linuxver.h | 4 ++++
1 file changed, 4 insertions(+)
--- NEW FILE broadcom-wl-5.60.48.36-2.6.33-kernel.patch ---
--- src/include/linuxver.h.orig 2010-06-01 17:08:29.000000000 -0700
+++ src/include/linuxver.h 2010-06-02 11:32:51.844748000 -0700
@@ -20,7 +20,11 @@
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0))
#include <linux/config.h>
#else
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33))
#include <linux/autoconf.h>
+#else
+#include <generated/autoconf.h>
+#endif
#endif
#include <linux/module.h>
broadcom-wl-5.60.48.36-multicast-kernel.patch:
wl_linux.c | 22 +++++++++++++++++!!!!!
1 file changed, 17 insertions(+), 5 modifications(!)
--- NEW FILE broadcom-wl-5.60.48.36-multicast-kernel.patch ---
*** src/wl/sys/wl_linux.c.orig 2010-02-05 17:59:15.000000000 -0800
--- src/wl/sys/wl_linux.c 2010-07-28 18:25:36.982906000 -0700
***************
*** 1416,1422 ****
--- 1416,1427 ----
_wl_set_multicast_list(struct net_device *dev)
{
wl_info_t *wl;
+ #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 33)
struct dev_mc_list *mclist;
+ #else
+ struct netdev_hw_addr *ha;
+ int num;
+ #endif
int i;
if (!dev)
***************
*** 1429,1437 ****
if (wl->pub->up) {
wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE;
!
! for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count);
! i++, mclist = mclist->next) {
if (i >= MAXMULTILIST) {
wl->pub->allmulti = TRUE;
i = 0;
--- 1434,1441 ----
if (wl->pub->up) {
wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE;
! #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 33)
! for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count); i++, mclist = mclist->next) {
if (i >= MAXMULTILIST) {
wl->pub->allmulti = TRUE;
i = 0;
***************
*** 1439,1444 ****
--- 1443,1460 ----
}
wl->pub->multicast[i] = *((struct ether_addr*) mclist->dmi_addr);
}
+ #else
+ num = min_t(int, netdev_mc_count(dev), MAXMULTILIST);
+ i = 0;
+ netdev_for_each_mc_addr(ha, dev) {
+ if (i >= num) {
+ wl->pub->allmulti = TRUE;
+ i = 0;
+ break;
+ }
+ wl->pub->multicast[i] = *((struct ether_addr*) ha->addr);
+ }
+ #endif
wl->pub->nmulticast = i;
wlc_set(wl->wlc, WLC_SET_PROMISC, (dev->flags & IFF_PROMISC));
}
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- wl-kmod.spec 22 Feb 2010 23:03:46 -0000 1.50
+++ wl-kmod.spec 26 Sep 2010 13:06:27 -0000 1.51
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.60.48.36
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -16,6 +16,8 @@
Source1: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_64-v5.60.48.36....
Source11: broadcom-wl-kmodtool-excludekernel-filterfile
Patch0: broadcom-wl-5.60.48.36-license.patch
+Patch1: broadcom-wl-5.60.48.36-2.6.33-kernel.patch
+Patch2: broadcom-wl-5.60.48.36-multicast-kernel.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -53,6 +55,8 @@
tar xzf %{SOURCE1}
%endif
%patch0 -p1 -b .license
+%patch1 -p0 -b .kernel
+%patch2 -p0 -b .multicast
popd
for kernel_version in %{?kernel_versions} ; do
@@ -82,6 +86,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
+- added patch for kernel > 2.6.33
+- added multicast kernel patch
+
* Mon Feb 22 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-1
- Updated version to 5.60.48.36
14 years, 4 months
rpms/wl-kmod/F-13 wl-kmod.spec, 1.70, 1.71 broadcom-wl-5.60.48.36-multicast-kernel.patch, 1.1, NONE
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13943
Modified Files:
wl-kmod.spec
Removed Files:
broadcom-wl-5.60.48.36-multicast-kernel.patch
Log Message:
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added 2.6.33 kernel patch
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-13/wl-kmod.spec,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- wl-kmod.spec 26 Sep 2010 12:32:47 -0000 1.70
+++ wl-kmod.spec 26 Sep 2010 12:50:35 -0000 1.71
@@ -17,7 +17,6 @@
Source11: broadcom-wl-kmodtool-excludekernel-filterfile
Patch0: broadcom-wl-5.60.48.36-license.patch
Patch1: broadcom-wl-5.60.48.36-2.6.33-kernel.patch
-Patch2: broadcom-wl-5.60.48.36-multicast-kernel.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -56,7 +55,6 @@
%endif
%patch0 -p1 -b .license
%patch1 -p0 -b .kernel
-%patch2 -p0 -b .multicast
popd
for kernel_version in %{?kernel_versions} ; do
@@ -88,7 +86,6 @@
%changelog
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added 2.6.33 kernel patch
-- added multicast patch
* Sun Sep 19 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.60.48.36-1.18
- rebuild for new kernel
--- broadcom-wl-5.60.48.36-multicast-kernel.patch DELETED ---
14 years, 4 months
rpms/wl-kmod/F-13 wl-kmod.spec,1.69,1.70
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12721
Modified Files:
wl-kmod.spec
Log Message:
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added 2.6.33 kernel patch
- added multicast patch
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-13/wl-kmod.spec,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- wl-kmod.spec 26 Sep 2010 12:15:35 -0000 1.69
+++ wl-kmod.spec 26 Sep 2010 12:32:47 -0000 1.70
@@ -55,8 +55,8 @@
tar xzf %{SOURCE1}
%endif
%patch0 -p1 -b .license
-%patch1 -p1 -b .kernel
-%patch2 -p1 -b .multicast
+%patch1 -p0 -b .kernel
+%patch2 -p0 -b .multicast
popd
for kernel_version in %{?kernel_versions} ; do
14 years, 4 months
rpms/wl-kmod/F-13 broadcom-wl-5.60.48.36-2.6.33-kernel.patch, NONE, 1.1 broadcom-wl-5.60.48.36-multicast-kernel.patch, NONE, 1.1 wl-kmod.spec, 1.68, 1.69
by Chris Nolan
Author: cnolan
Update of /cvs/nonfree/rpms/wl-kmod/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11288
Modified Files:
wl-kmod.spec
Added Files:
broadcom-wl-5.60.48.36-2.6.33-kernel.patch
broadcom-wl-5.60.48.36-multicast-kernel.patch
Log Message:
* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
- added 2.6.33 kernel patch
- added multicast patch
broadcom-wl-5.60.48.36-2.6.33-kernel.patch:
linuxver.h | 4 ++++
1 file changed, 4 insertions(+)
--- NEW FILE broadcom-wl-5.60.48.36-2.6.33-kernel.patch ---
--- src/include/linuxver.h.orig 2010-06-01 17:08:29.000000000 -0700
+++ src/include/linuxver.h 2010-06-02 11:32:51.844748000 -0700
@@ -20,7 +20,11 @@
#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0))
#include <linux/config.h>
#else
+#if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 33))
#include <linux/autoconf.h>
+#else
+#include <generated/autoconf.h>
+#endif
#endif
#include <linux/module.h>
broadcom-wl-5.60.48.36-multicast-kernel.patch:
wl_linux.c | 22 +++++++++++++++++!!!!!
1 file changed, 17 insertions(+), 5 modifications(!)
--- NEW FILE broadcom-wl-5.60.48.36-multicast-kernel.patch ---
*** src/wl/sys/wl_linux.c.orig 2010-02-05 17:59:15.000000000 -0800
--- src/wl/sys/wl_linux.c 2010-07-28 18:25:36.982906000 -0700
***************
*** 1416,1422 ****
--- 1416,1427 ----
_wl_set_multicast_list(struct net_device *dev)
{
wl_info_t *wl;
+ #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 33)
struct dev_mc_list *mclist;
+ #else
+ struct netdev_hw_addr *ha;
+ int num;
+ #endif
int i;
if (!dev)
***************
*** 1429,1437 ****
if (wl->pub->up) {
wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE;
!
! for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count);
! i++, mclist = mclist->next) {
if (i >= MAXMULTILIST) {
wl->pub->allmulti = TRUE;
i = 0;
--- 1434,1441 ----
if (wl->pub->up) {
wl->pub->allmulti = (dev->flags & IFF_ALLMULTI)? TRUE: FALSE;
! #if LINUX_VERSION_CODE <= KERNEL_VERSION(2, 6, 33)
! for (i = 0, mclist = dev->mc_list; mclist && (i < dev->mc_count); i++, mclist = mclist->next) {
if (i >= MAXMULTILIST) {
wl->pub->allmulti = TRUE;
i = 0;
***************
*** 1439,1444 ****
--- 1443,1460 ----
}
wl->pub->multicast[i] = *((struct ether_addr*) mclist->dmi_addr);
}
+ #else
+ num = min_t(int, netdev_mc_count(dev), MAXMULTILIST);
+ i = 0;
+ netdev_for_each_mc_addr(ha, dev) {
+ if (i >= num) {
+ wl->pub->allmulti = TRUE;
+ i = 0;
+ break;
+ }
+ wl->pub->multicast[i] = *((struct ether_addr*) ha->addr);
+ }
+ #endif
wl->pub->nmulticast = i;
wlc_set(wl->wlc, WLC_SET_PROMISC, (dev->flags & IFF_PROMISC));
}
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-13/wl-kmod.spec,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- wl-kmod.spec 19 Sep 2010 07:43:00 -0000 1.68
+++ wl-kmod.spec 26 Sep 2010 12:15:35 -0000 1.69
@@ -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.60.48.36
-Release: 1%{?dist}.18
+Release: 2%{?dist}
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -16,6 +16,8 @@
Source1: http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_64-v5.60.48.36....
Source11: broadcom-wl-kmodtool-excludekernel-filterfile
Patch0: broadcom-wl-5.60.48.36-license.patch
+Patch1: broadcom-wl-5.60.48.36-2.6.33-kernel.patch
+Patch2: broadcom-wl-5.60.48.36-multicast-kernel.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -53,6 +55,8 @@
tar xzf %{SOURCE1}
%endif
%patch0 -p1 -b .license
+%patch1 -p1 -b .kernel
+%patch2 -p1 -b .multicast
popd
for kernel_version in %{?kernel_versions} ; do
@@ -82,6 +86,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Sep 26 2010 Chris Nolan <chris(a)cenolan.com> - 5.60.48.36-2
+- added 2.6.33 kernel patch
+- added multicast patch
+
* Sun Sep 19 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.60.48.36-1.18
- rebuild for new kernel
14 years, 4 months
rpms/frogatto/F-12 .cvsignore, 1.2, 1.3 frogatto.spec, 1.1, 1.2 sources, 1.2, 1.3
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/frogatto/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22615
Modified Files:
.cvsignore frogatto.spec sources
Log Message:
* Sat Sep 25 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.3-1
- Updated to upstream 1.0.3
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/F-12/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 11 Sep 2010 10:35:06 -0000 1.2
+++ .cvsignore 25 Sep 2010 14:15:32 -0000 1.3
@@ -1 +1 @@
-frogatto-1.0.2.tar.bz2
+frogatto-1.0.3.tar.bz2
Index: frogatto.spec
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/F-12/frogatto.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- frogatto.spec 11 Sep 2010 10:35:06 -0000 1.1
+++ frogatto.spec 25 Sep 2010 14:15:32 -0000 1.2
@@ -1,5 +1,5 @@
Name: frogatto
-Version: 1.0.2
+Version: 1.0.3
Release: 1%{?dist}
Summary: An old-school 2D platform game
@@ -112,6 +112,9 @@
%changelog
+* Sat Sep 25 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.3-1
+- Updated to upstream 1.0.3
+
* Sat Sep 04 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.2-1
- Updated to upstream 1.0.2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/F-12/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 11 Sep 2010 10:35:07 -0000 1.2
+++ sources 25 Sep 2010 14:15:32 -0000 1.3
@@ -1 +1 @@
-811a45a2493e6a425ed9d0826cffab04 frogatto-1.0.2.tar.bz2
+1e9ffe729c78c88d1e29147694299531 frogatto-1.0.3.tar.bz2
14 years, 4 months
rpms/frogatto/F-13 .cvsignore, 1.2, 1.3 frogatto.spec, 1.1, 1.2 sources, 1.2, 1.3
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/frogatto/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22488
Modified Files:
.cvsignore frogatto.spec sources
Log Message:
* Sat Sep 25 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.3-1
- Updated to upstream 1.0.3
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/F-13/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 11 Sep 2010 10:34:09 -0000 1.2
+++ .cvsignore 25 Sep 2010 14:15:02 -0000 1.3
@@ -1 +1 @@
-frogatto-1.0.2.tar.bz2
+frogatto-1.0.3.tar.bz2
Index: frogatto.spec
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/F-13/frogatto.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- frogatto.spec 11 Sep 2010 10:34:09 -0000 1.1
+++ frogatto.spec 25 Sep 2010 14:15:02 -0000 1.2
@@ -1,5 +1,5 @@
Name: frogatto
-Version: 1.0.2
+Version: 1.0.3
Release: 1%{?dist}
Summary: An old-school 2D platform game
@@ -112,6 +112,9 @@
%changelog
+* Sat Sep 25 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.3-1
+- Updated to upstream 1.0.3
+
* Sat Sep 04 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.2-1
- Updated to upstream 1.0.2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/F-13/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 11 Sep 2010 10:34:09 -0000 1.2
+++ sources 25 Sep 2010 14:15:02 -0000 1.3
@@ -1 +1 @@
-811a45a2493e6a425ed9d0826cffab04 frogatto-1.0.2.tar.bz2
+1e9ffe729c78c88d1e29147694299531 frogatto-1.0.3.tar.bz2
14 years, 4 months
rpms/frogatto/devel .cvsignore, 1.2, 1.3 frogatto.spec, 1.1, 1.2 sources, 1.2, 1.3
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/frogatto/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22355
Modified Files:
.cvsignore frogatto.spec sources
Log Message:
* Sat Sep 25 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.3-1
- Updated to upstream 1.0.3
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 11 Sep 2010 10:32:40 -0000 1.2
+++ .cvsignore 25 Sep 2010 14:14:26 -0000 1.3
@@ -1 +1 @@
-frogatto-1.0.2.tar.bz2
+frogatto-1.0.3.tar.bz2
Index: frogatto.spec
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/devel/frogatto.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- frogatto.spec 11 Sep 2010 10:32:40 -0000 1.1
+++ frogatto.spec 25 Sep 2010 14:14:26 -0000 1.2
@@ -1,5 +1,5 @@
Name: frogatto
-Version: 1.0.2
+Version: 1.0.3
Release: 1%{?dist}
Summary: An old-school 2D platform game
@@ -112,6 +112,9 @@
%changelog
+* Sat Sep 25 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.3-1
+- Updated to upstream 1.0.3
+
* Sat Sep 04 2010 Andrea Musuruane <musuruan(a)gmail.com> 1.0.2-1
- Updated to upstream 1.0.2
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/frogatto/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 11 Sep 2010 10:32:40 -0000 1.2
+++ sources 25 Sep 2010 14:14:26 -0000 1.3
@@ -1 +1 @@
-811a45a2493e6a425ed9d0826cffab04 frogatto-1.0.2.tar.bz2
+1e9ffe729c78c88d1e29147694299531 frogatto-1.0.3.tar.bz2
14 years, 4 months
rpms/lightspark/F-13 lightspark.spec, 1.1, 1.2 sources, 1.1, 1.2 0001-Add-desktop-file-and-sized-icons.patch, 1.1, NONE
by Hicham HAOUARI
Author: hicham
Update of /cvs/free/rpms/lightspark/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32456/F-13
Modified Files:
lightspark.spec sources
Removed Files:
0001-Add-desktop-file-and-sized-icons.patch
Log Message:
New bugfix release
Index: lightspark.spec
===================================================================
RCS file: /cvs/free/rpms/lightspark/F-13/lightspark.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lightspark.spec 15 Sep 2010 02:51:53 -0000 1.1
+++ lightspark.spec 24 Sep 2010 21:23:03 -0000 1.2
@@ -22,7 +22,7 @@
%define major 0.4.4
Name: lightspark
-Version: %{major}.2
+Version: %{major}.3
Release: %{?pre:0.}%{rel}%{?git_snapshot:.%{date}git}%{?pre:.%{pre}}%{?dist}
Summary: An alternative Flash Player implementation
@@ -59,12 +59,10 @@
BuildRequires: libcurl-devel
BuildRequires: boost-devel
BuildRequires: gettext
-BuildRequires: git
+BuildRequires: libxml++-devel
Requires: hicolor-icon-theme
-Patch0: 0001-Add-desktop-file-and-sized-icons.patch
-
%description
Lightspark is a modern, free, open-source flash player implementation.
Lightspark features:
@@ -79,6 +77,7 @@
%package mozilla-plugin
Summary: Mozilla compatible plugin for %{name}
Requires: mozilla-filesystem
+Requires: %{name} = %{version}-%{release}
%description mozilla-plugin
This is the Mozilla compatible plugin for %{name}. It can fallback to
@@ -87,7 +86,6 @@
%prep
%setup -q -n %{name}-%{version}%{?pre:%{pre}}
-git apply %{PATCH0}
%build
%cmake -DCOMPILE_PLUGIN=1 \
@@ -98,6 +96,7 @@
%else
-DCMAKE_BUILD_TYPE=Release \
%endif
+ -DAUDIO_BACKEND=pulse \
.
make VERBOSE=1 %{?_smp_mflags}
@@ -153,6 +152,9 @@
%changelog
+* Fri Sep 24 2010 Hicham HAOUARI <hicham.haouari(a)gmail.com> - 0.4.4.3-1
+- New bugfix release
+
* Thu Sep 12 2010 Hicham HAOUARI <hicham.haouari(a)gmail.com> - 0.4.4.2-1
- New bugfix release
Index: sources
===================================================================
RCS file: /cvs/free/rpms/lightspark/F-13/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 15 Sep 2010 02:51:53 -0000 1.1
+++ sources 24 Sep 2010 21:23:03 -0000 1.2
@@ -1 +1 @@
-e192690c5f48105346ed41bc36e9e604 lightspark-0.4.4.2.tar.gz
+efd2e91d36ffa38c9befa25af5eaac20 lightspark-0.4.4.3.tar.gz
--- 0001-Add-desktop-file-and-sized-icons.patch DELETED ---
14 years, 4 months
rpms/lightspark/devel lightspark.spec, 1.1, 1.2 sources, 1.1, 1.2 0001-Add-desktop-file-and-sized-icons.patch, 1.1, NONE
by Hicham HAOUARI
Author: hicham
Update of /cvs/free/rpms/lightspark/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31984/devel
Modified Files:
lightspark.spec sources
Removed Files:
0001-Add-desktop-file-and-sized-icons.patch
Log Message:
Index: lightspark.spec
===================================================================
RCS file: /cvs/free/rpms/lightspark/devel/lightspark.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- lightspark.spec 15 Sep 2010 02:42:30 -0000 1.1
+++ lightspark.spec 24 Sep 2010 21:21:38 -0000 1.2
@@ -22,7 +22,7 @@
%define major 0.4.4
Name: lightspark
-Version: %{major}.2
+Version: %{major}.3
Release: %{?pre:0.}%{rel}%{?git_snapshot:.%{date}git}%{?pre:.%{pre}}%{?dist}
Summary: An alternative Flash Player implementation
@@ -59,12 +59,10 @@
BuildRequires: libcurl-devel
BuildRequires: boost-devel
BuildRequires: gettext
-BuildRequires: git
+BuildRequires: libxml++-devel
Requires: hicolor-icon-theme
-Patch0: 0001-Add-desktop-file-and-sized-icons.patch
-
%description
Lightspark is a modern, free, open-source flash player implementation.
Lightspark features:
@@ -79,6 +77,7 @@
%package mozilla-plugin
Summary: Mozilla compatible plugin for %{name}
Requires: mozilla-filesystem
+Requires: %{name} = %{version}-%{release}
%description mozilla-plugin
This is the Mozilla compatible plugin for %{name}. It can fallback to
@@ -87,7 +86,6 @@
%prep
%setup -q -n %{name}-%{version}%{?pre:%{pre}}
-git apply %{PATCH0}
%build
%cmake -DCOMPILE_PLUGIN=1 \
@@ -98,6 +96,7 @@
%else
-DCMAKE_BUILD_TYPE=Release \
%endif
+ -DAUDIO_BACKEND=pulse \
.
make VERBOSE=1 %{?_smp_mflags}
@@ -153,6 +152,9 @@
%changelog
+* Fri Sep 24 2010 Hicham HAOUARI <hicham.haouari(a)gmail.com> - 0.4.4.3-1
+- New bugfix release
+
* Thu Sep 12 2010 Hicham HAOUARI <hicham.haouari(a)gmail.com> - 0.4.4.2-1
- New bugfix release
Index: sources
===================================================================
RCS file: /cvs/free/rpms/lightspark/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 15 Sep 2010 02:42:31 -0000 1.1
+++ sources 24 Sep 2010 21:21:38 -0000 1.2
@@ -1 +1 @@
-e192690c5f48105346ed41bc36e9e604 lightspark-0.4.4.2.tar.gz
+efd2e91d36ffa38c9befa25af5eaac20 lightspark-0.4.4.3.tar.gz
--- 0001-Add-desktop-file-and-sized-icons.patch DELETED ---
14 years, 4 months