rpms/rt2860-kmod/devel rt2860-2.6.31-compile.patch, NONE, 1.1 rt2860-kmod.spec, 1.44, 1.45
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2860-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9860
Modified Files:
rt2860-kmod.spec
Added Files:
rt2860-2.6.31-compile.patch
Log Message:
* Mon Aug 03 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.1.2.0-2
- Fix for kernels >= 2.6.31
rt2860-2.6.31-compile.patch:
--- NEW FILE rt2860-2.6.31-compile.patch ---
diff -rupN 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/include/rtmp_os.h 2009_0521_RT2870_Linux_STA_V2.1.2.0/include/rtmp_os.h
--- 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/include/rtmp_os.h 2009-04-23 05:40:41.000000000 -0400
+++ 2009_0521_RT2870_Linux_STA_V2.1.2.0/include/rtmp_os.h 2009-08-02 19:46:07.000000000 -0400
@@ -59,6 +59,7 @@
*/
typedef struct _RTMP_OS_NETDEV_OP_HOOK_
{
+ /*
void *open;
void *stop;
void *xmit;
@@ -69,6 +70,8 @@ typedef struct _RTMP_OS_NETDEV_OP_HOOK_
unsigned char devAddr[6];
unsigned char devName[16];
unsigned char needProtcted;
+ */
+ struct net_device_ops *netdev_ops;
}RTMP_OS_NETDEV_OP_HOOK, *PRTMP_OS_NETDEV_OP_HOOK;
diff -rupN 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_linux.c 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_linux.c
--- 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_linux.c 2009-04-23 05:55:24.000000000 -0400
+++ 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_linux.c 2009-08-02 20:32:09.000000000 -0400
@@ -1505,20 +1505,22 @@ int RtmpOSNetDevAttach(
PRTMP_ADAPTER pAd = NULL;
GET_PAD_FROM_NET_DEV(pAd, pNetDev);
+ pNetDev->netdev_ops = pDevOpHook->netdev_ops;
+ /*
pNetDev->open = pDevOpHook->open;
pNetDev->stop = pDevOpHook->stop;
pNetDev->hard_start_xmit = (HARD_START_XMIT_FUNC)(pDevOpHook->xmit);
pNetDev->do_ioctl = pDevOpHook->ioctl;
-
+ */
/* if you don't implement get_stats, just leave the callback function as NULL, a dummy
function will make kernel panic.
*/
- if (pDevOpHook->get_stats)
+ /*if (pDevOpHook->get_stats)
pNetDev->get_stats = pDevOpHook->get_stats;
-
+ */
/* OS specific flags, here we used to indicate if we are virtual interface */
- pNetDev->priv_flags = pDevOpHook->priv_flags;
-
+ // pNetDev->priv_flags = pDevOpHook->priv_flags;
+
#if (WIRELESS_EXT < 21) && (WIRELESS_EXT >= 12)
pNetDev->get_wireless_stats = rt28xx_get_wireless_stats;
#endif
@@ -1542,15 +1544,15 @@ int RtmpOSNetDevAttach(
#endif // CONFIG_APSTA_MIXED_SUPPORT //
// copy the net device mac address to the net_device structure.
- NdisMoveMemory(pNetDev->dev_addr, &pDevOpHook->devAddr[0], MAC_ADDR_LEN);
+ //NdisMoveMemory(pNetDev->dev_addr, &pDevOpHook->devAddr[0], MAC_ADDR_LEN);
- rtnl_locked = pDevOpHook->needProtcted;
+ //rtnl_locked = pDevOpHook->needProtcted;
}
-
+ /*
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
pNetDev->validate_addr = NULL;
#endif
-
+ */
if (rtnl_locked)
ret = register_netdevice(pNetDev);
else
diff -rupN 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_main_dev.c 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_main_dev.c
--- 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_main_dev.c 2009-04-23 05:40:40.000000000 -0400
+++ 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_main_dev.c 2009-08-02 19:38:35.000000000 -0400
@@ -501,6 +501,20 @@ err:
return (-1);
} /* End of rt28xx_open */
+static const struct net_device_ops rt2870_netdev_ops = {
+ .ndo_open = MainVirtualIF_open,//
+ .ndo_stop = MainVirtualIF_close,//
+ .ndo_do_ioctl = rt28xx_ioctl,//
+ .ndo_get_stats = RT28xx_get_ether_stats,//
+ .ndo_validate_addr = NULL,
+ .ndo_set_mac_address = eth_mac_addr,
+ .ndo_change_mtu = eth_change_mtu,
+#ifdef IKANOS_VX_1X0
+ .ndo_start_xmit = IKANOS_DataFramesTx,//
+#else
+ .ndo_start_xmit = rt28xx_send_packets,//
+#endif
+};
PNET_DEV RtmpPhyNetDevInit(
IN RTMP_ADAPTER *pAd,
@@ -517,6 +531,8 @@ PNET_DEV RtmpPhyNetDevInit(
}
NdisZeroMemory((unsigned char *)pNetDevHook, sizeof(RTMP_OS_NETDEV_OP_HOOK));
+ pNetDevHook->netdev_ops = &rt2870_netdev_ops;
+ /*
pNetDevHook->open = MainVirtualIF_open;
pNetDevHook->stop = MainVirtualIF_close;
pNetDevHook->xmit = rt28xx_send_packets;
@@ -528,7 +544,7 @@ PNET_DEV RtmpPhyNetDevInit(
pNetDevHook->get_stats = RT28xx_get_ether_stats;
pNetDevHook->needProtcted = FALSE;
-
+ */
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)
net_dev->ml_priv = (PVOID)pAd;
#else
Index: rt2860-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2860-kmod/devel/rt2860-kmod.spec,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- rt2860-kmod.spec 5 Jun 2009 13:23:32 -0000 1.44
+++ rt2860-kmod.spec 4 Aug 2009 03:49:12 -0000 1.45
@@ -7,7 +7,7 @@
Name: rt2860-kmod
Version: 2.1.2.0
-Release: 1%{?dist}.3
+Release: 2%{?dist}
Summary: Kernel module for RaLink 802.11 wireless devices rt2760/rt2790/rt2860/rt2890
Group: System Environment/Kernel
@@ -20,6 +20,7 @@
Patch2: rt2860-add-network-mgr-support.diff
Patch3: rt2860-remove-tftpboot-copy.patch
Patch4: rt2860-no2.4-in-kernelversion.patch
+Patch5: rt2860-2.6.31-compile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -50,6 +51,7 @@
%patch2 -p1 -b .NetworkManager
%patch3 -p1 -b .tftpboot
%patch4 -p1 -b .no24
+%patch5 -p1 -b .2.6.31
popd
# Fix weird permissions
@@ -78,6 +80,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Aug 03 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.1.2.0-2
+- Fix for kernels >= 2.6.31
+
* Fri Jun 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.2.0-1.3
- rebuild for final F11 kernel
15 years, 3 months
rpms/rt2870-kmod/devel rt2870-2.6.31-compile.patch, NONE, 1.1 rt2870-kmod.spec, 1.46, 1.47
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9407
Modified Files:
rt2870-kmod.spec
Added Files:
rt2870-2.6.31-compile.patch
Log Message:
* Mon Aug 03 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com>- 2.1.2.0-2
- Fix for kernels >= 2.6.31
rt2870-2.6.31-compile.patch:
--- NEW FILE rt2870-2.6.31-compile.patch ---
diff -rupN 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/include/rtmp_os.h 2009_0521_RT2870_Linux_STA_V2.1.2.0/include/rtmp_os.h
--- 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/include/rtmp_os.h 2009-04-23 05:40:41.000000000 -0400
+++ 2009_0521_RT2870_Linux_STA_V2.1.2.0/include/rtmp_os.h 2009-08-02 19:46:07.000000000 -0400
@@ -59,6 +59,7 @@
*/
typedef struct _RTMP_OS_NETDEV_OP_HOOK_
{
+ /*
void *open;
void *stop;
void *xmit;
@@ -69,6 +70,8 @@ typedef struct _RTMP_OS_NETDEV_OP_HOOK_
unsigned char devAddr[6];
unsigned char devName[16];
unsigned char needProtcted;
+ */
+ struct net_device_ops *netdev_ops;
}RTMP_OS_NETDEV_OP_HOOK, *PRTMP_OS_NETDEV_OP_HOOK;
diff -rupN 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_linux.c 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_linux.c
--- 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_linux.c 2009-04-23 05:55:24.000000000 -0400
+++ 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_linux.c 2009-08-02 20:32:09.000000000 -0400
@@ -1505,20 +1505,22 @@ int RtmpOSNetDevAttach(
PRTMP_ADAPTER pAd = NULL;
GET_PAD_FROM_NET_DEV(pAd, pNetDev);
+ pNetDev->netdev_ops = pDevOpHook->netdev_ops;
+ /*
pNetDev->open = pDevOpHook->open;
pNetDev->stop = pDevOpHook->stop;
pNetDev->hard_start_xmit = (HARD_START_XMIT_FUNC)(pDevOpHook->xmit);
pNetDev->do_ioctl = pDevOpHook->ioctl;
-
+ */
/* if you don't implement get_stats, just leave the callback function as NULL, a dummy
function will make kernel panic.
*/
- if (pDevOpHook->get_stats)
+ /*if (pDevOpHook->get_stats)
pNetDev->get_stats = pDevOpHook->get_stats;
-
+ */
/* OS specific flags, here we used to indicate if we are virtual interface */
- pNetDev->priv_flags = pDevOpHook->priv_flags;
-
+ // pNetDev->priv_flags = pDevOpHook->priv_flags;
+
#if (WIRELESS_EXT < 21) && (WIRELESS_EXT >= 12)
pNetDev->get_wireless_stats = rt28xx_get_wireless_stats;
#endif
@@ -1542,15 +1544,15 @@ int RtmpOSNetDevAttach(
#endif // CONFIG_APSTA_MIXED_SUPPORT //
// copy the net device mac address to the net_device structure.
- NdisMoveMemory(pNetDev->dev_addr, &pDevOpHook->devAddr[0], MAC_ADDR_LEN);
+ //NdisMoveMemory(pNetDev->dev_addr, &pDevOpHook->devAddr[0], MAC_ADDR_LEN);
- rtnl_locked = pDevOpHook->needProtcted;
+ //rtnl_locked = pDevOpHook->needProtcted;
}
-
+ /*
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
pNetDev->validate_addr = NULL;
#endif
-
+ */
if (rtnl_locked)
ret = register_netdevice(pNetDev);
else
diff -rupN 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_main_dev.c 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_main_dev.c
--- 2009_0521_RT2870_Linux_STA_V2.1.2.0.old/os/linux/rt_main_dev.c 2009-04-23 05:40:40.000000000 -0400
+++ 2009_0521_RT2870_Linux_STA_V2.1.2.0/os/linux/rt_main_dev.c 2009-08-02 19:38:35.000000000 -0400
@@ -501,6 +501,20 @@ err:
return (-1);
} /* End of rt28xx_open */
+static const struct net_device_ops rt2870_netdev_ops = {
+ .ndo_open = MainVirtualIF_open,//
+ .ndo_stop = MainVirtualIF_close,//
+ .ndo_do_ioctl = rt28xx_ioctl,//
+ .ndo_get_stats = RT28xx_get_ether_stats,//
+ .ndo_validate_addr = NULL,
+ .ndo_set_mac_address = eth_mac_addr,
+ .ndo_change_mtu = eth_change_mtu,
+#ifdef IKANOS_VX_1X0
+ .ndo_start_xmit = IKANOS_DataFramesTx,//
+#else
+ .ndo_start_xmit = rt28xx_send_packets,//
+#endif
+};
PNET_DEV RtmpPhyNetDevInit(
IN RTMP_ADAPTER *pAd,
@@ -517,6 +531,8 @@ PNET_DEV RtmpPhyNetDevInit(
}
NdisZeroMemory((unsigned char *)pNetDevHook, sizeof(RTMP_OS_NETDEV_OP_HOOK));
+ pNetDevHook->netdev_ops = &rt2870_netdev_ops;
+ /*
pNetDevHook->open = MainVirtualIF_open;
pNetDevHook->stop = MainVirtualIF_close;
pNetDevHook->xmit = rt28xx_send_packets;
@@ -528,7 +544,7 @@ PNET_DEV RtmpPhyNetDevInit(
pNetDevHook->get_stats = RT28xx_get_ether_stats;
pNetDevHook->needProtcted = FALSE;
-
+ */
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29)
net_dev->ml_priv = (PVOID)pAd;
#else
Index: rt2870-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/devel/rt2870-kmod.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- rt2870-kmod.spec 5 Jun 2009 13:23:55 -0000 1.46
+++ rt2870-kmod.spec 4 Aug 2009 03:44:29 -0000 1.47
@@ -7,7 +7,7 @@
Name: rt2870-kmod
Version: 2.1.2.0
-Release: 1%{?dist}.3
+Release: 2%{?dist}
Summary: Kernel module for wireless devices with Ralink's rt2870 chipsets
Group: System Environment/Kernel
@@ -19,6 +19,7 @@
Patch2: rt2870-Makefile.x-fixes.patch
Patch3: rt2870-NetworkManager-support.patch
Patch4: rt2870-strip-tftpboot-copy.patch
+Patch5: rt2870-2.6.31-compile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{_bindir}/kmodtool
@@ -48,6 +49,7 @@
%patch2 -p1 -b .rpmbuild
%patch3 -p1 -b .NetworkManager
%patch4 -p1 -b .tftpboot
+%patch5 -p1 -b .2.6.31
popd
# Fix permissions
@@ -77,6 +79,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Aug 03 2009 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com>- 2.1.2.0-2
+- Fix for kernels >= 2.6.31
+
* Fri Jun 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.2.0-1.3
- rebuild for final F11 kernel
15 years, 3 months
rpms/avidemux/F-11 avidemux.spec,1.25,1.26
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/avidemux/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv1797
Modified Files:
avidemux.spec
Log Message:
* Mon Aug 3 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-5
- Disable smp_mflags
Index: avidemux.spec
===================================================================
RCS file: /cvs/free/rpms/avidemux/F-11/avidemux.spec,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- avidemux.spec 3 Aug 2009 23:26:37 -0000 1.25
+++ avidemux.spec 4 Aug 2009 01:27:05 -0000 1.26
@@ -1,6 +1,6 @@
Name: avidemux
Version: 2.5.0
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: Graphical video editing and transcoding tool
Group: Applications/Multimedia
@@ -172,8 +172,11 @@
mkdir build build_plugins && cd build
%cmake ../
# po/ not smp safe - http://bugs.avidemux.org/index.php?do=details&task_id=605
-make -C po
-make %{?_smp_mflags}
+#make -C po
+# smp_mflags seems to break on the buildsys
+#make %{?_smp_mflags}
+make
+
# Do a local install to build plugins
make install DESTDIR=%{_builddir}/avidemux_%{version}/localinstall
@@ -184,7 +187,9 @@
-DAVIDEMUX_CORECONFIG_DIR=%{_builddir}/avidemux_%{version}/build/config \
-DAVIDEMUX_INSTALL_PREFIX=%{_builddir}/avidemux_%{version}/localinstall/%{_prefix} \
../plugins
-make %{?_smp_mflags}
+# See note above, this doesn't always work properly
+#make %{?_smp_mflags}
+make
%install
@@ -251,6 +256,9 @@
%{_includedir}/ADM_coreConfig.h
%changelog
+* Mon Aug 3 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-5
+- Disable smp_mflags
+
* Mon Aug 3 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-4
- Disable building on ppc and ppc64
15 years, 3 months
rpms/avidemux/F-11 avidemux.spec,1.24,1.25
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/avidemux/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27949
Modified Files:
avidemux.spec
Log Message:
* Mon Aug 3 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-4
- Disable building on ppc and ppc64
Index: avidemux.spec
===================================================================
RCS file: /cvs/free/rpms/avidemux/F-11/avidemux.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- avidemux.spec 31 Jul 2009 16:25:47 -0000 1.24
+++ avidemux.spec 3 Aug 2009 23:26:37 -0000 1.25
@@ -1,6 +1,6 @@
Name: avidemux
Version: 2.5.0
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: Graphical video editing and transcoding tool
Group: Applications/Multimedia
@@ -31,6 +31,9 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+# Upstream has been informed http://avidemux.org/admForum/viewtopic.php?id=6447
+ExcludeArch: ppc ppc64
+
Requires: %{name}-cli = %{version}-%{release}
Requires: %{name}-gui = %{version}-%{release}
Requires: %{name}-plugins = %{version}
@@ -248,6 +251,9 @@
%{_includedir}/ADM_coreConfig.h
%changelog
+* Mon Aug 3 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-4
+- Disable building on ppc and ppc64
+
* Fri Jul 31 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-3
- Add patch to fix Altivec build errors on PPC
15 years, 3 months
rpms/VirtualBox-OSE/F-11 VirtualBox-OSE.spec, 1.9, 1.10 VirtualBox-OSE-3.0.0-netfreeze.patch, 1.1, NONE
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25247
Modified Files:
VirtualBox-OSE.spec
Removed Files:
VirtualBox-OSE-3.0.0-netfreeze.patch
Log Message:
* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-3
- Add netadp bmodule (Vlastimil Holer, #744)
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/F-11/VirtualBox-OSE.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- VirtualBox-OSE.spec 20 Jul 2009 09:57:54 -0000 1.9
+++ VirtualBox-OSE.spec 3 Aug 2009 22:37:12 -0000 1.10
@@ -10,7 +10,7 @@
Name: VirtualBox-OSE
Version: 3.0.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -348,6 +348,9 @@
%changelog
+* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-3
+- Add netadp bmodule (Vlastimil Holer, #744)
+
* Mon Jul 20 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-2
- Properly replace the xorg driver package
--- VirtualBox-OSE-3.0.0-netfreeze.patch DELETED ---
15 years, 3 months
rpms/VirtualBox-OSE/devel VirtualBox-OSE.modules, 1.2, 1.3 VirtualBox-OSE.spec, 1.13, 1.14
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25117
Modified Files:
VirtualBox-OSE.modules VirtualBox-OSE.spec
Log Message:
* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-3
- Add netadp bmodule (Vlastimil Holer, #744)
Index: VirtualBox-OSE.modules
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.modules,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- VirtualBox-OSE.modules 3 May 2009 14:24:14 -0000 1.2
+++ VirtualBox-OSE.modules 3 Aug 2009 22:36:00 -0000 1.3
@@ -3,6 +3,8 @@
# User is advised to run this on upgrades
/sbin/rmmod vboxnetflt &>/dev/null ||:
/sbin/rmmod vboxdrv &>/dev/null ||:
+/sbin/rmmod vboxnetadp &>/dev/null ||:
/sbin/modprobe vboxdrv
/sbin/modprobe vboxnetflt
+/sbin/modprobe vboxnetadp
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- VirtualBox-OSE.spec 20 Jul 2009 09:57:55 -0000 1.13
+++ VirtualBox-OSE.spec 3 Aug 2009 22:36:00 -0000 1.14
@@ -10,7 +10,7 @@
Name: VirtualBox-OSE
Version: 3.0.2
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -348,6 +348,9 @@
%changelog
+* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-3
+- Add netadp bmodule (Vlastimil Holer, #744)
+
* Mon Jul 20 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-2
- Properly replace the xorg driver package
15 years, 3 months
rpms/VirtualBox-OSE-kmod/F-11 VirtualBox-OSE-kmod.spec,1.19,1.20
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24666
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-2
- Add netadp bmodule (Vlastimil Holer, #744)
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-11/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- VirtualBox-OSE-kmod.spec 31 Jul 2009 05:05:13 -0000 1.19
+++ VirtualBox-OSE-kmod.spec 3 Aug 2009 22:29:20 -0000 1.20
@@ -7,7 +7,7 @@
Name: VirtualBox-OSE-kmod
Version: 3.0.2
-Release: 1%{?dist}.2
+Release: 2%{?dist}
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -55,7 +55,7 @@
%build
for kernel_version in %{?kernel_versions}; do
- for module in vbox{drv,netflt,add,vfs,video_drm}; do
+ for module in vbox{drv,netadp,netflt,add,vfs,video_drm}; do
make VBOX_USE_INSERT_PAGE=1 %{?_smp_mflags} -C "${kernel_version##*___}" SUBDIRS="${PWD}/_kmod_build_${kernel_version%%___*}/${module}" modules
done
done
@@ -78,11 +78,8 @@
%changelog
-* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.2-1.2
-- rebuild for new kernels
-
-* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.2-1.1
-- rebuild for new kernels
+* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-2
+- Add netadp bmodule (Vlastimil Holer, #744)
* Sun Jul 12 2009 Jonathan Dieter <jdieter(a)gmail.com> - 3.0.2-1
- New release
15 years, 3 months
rpms/VirtualBox-OSE-kmod/devel VirtualBox-OSE-kmod.spec,1.17,1.18
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24516
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-2
- Add netadp bmodule (Vlastimil Holer, #744)
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/devel/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- VirtualBox-OSE-kmod.spec 12 Jul 2009 03:11:20 -0000 1.17
+++ VirtualBox-OSE-kmod.spec 3 Aug 2009 22:27:53 -0000 1.18
@@ -7,7 +7,7 @@
Name: VirtualBox-OSE-kmod
Version: 3.0.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -55,7 +55,7 @@
%build
for kernel_version in %{?kernel_versions}; do
- for module in vbox{drv,netflt,add,vfs,video_drm}; do
+ for module in vbox{drv,netadp,netflt,add,vfs,video_drm}; do
make VBOX_USE_INSERT_PAGE=1 %{?_smp_mflags} -C "${kernel_version##*___}" SUBDIRS="${PWD}/_kmod_build_${kernel_version%%___*}/${module}" modules
done
done
@@ -78,6 +78,9 @@
%changelog
+* Tue Aug 04 2009 Lubomir Rintel <lkundrak(a)v3.sk> - 3.0.2-2
+- Add netadp bmodule (Vlastimil Holer, #744)
+
* Sun Jul 12 2009 Jonathan Dieter <jdieter(a)gmail.com> - 3.0.2-1
- New release
15 years, 3 months
rpms/sdlmame/F-10 .cvsignore, 1.51, 1.52 sdlmame.spec, 1.60, 1.61 sources, 1.52, 1.53
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/sdlmame/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29933
Modified Files:
.cvsignore sdlmame.spec sources
Log Message:
* Mon Aug 03 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0134-0.1.0133u1
- Updated to 0.133u1
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/sdlmame/F-10/.cvsignore,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- .cvsignore 20 Jul 2009 22:49:47 -0000 1.51
+++ .cvsignore 3 Aug 2009 14:27:44 -0000 1.52
@@ -1,2 +1,2 @@
ui.bdc
-sdlmame0133.zip
+sdlmame0133u1.zip
Index: sdlmame.spec
===================================================================
RCS file: /cvs/nonfree/rpms/sdlmame/F-10/sdlmame.spec,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- sdlmame.spec 20 Jul 2009 22:49:47 -0000 1.60
+++ sdlmame.spec 3 Aug 2009 14:27:44 -0000 1.61
@@ -1,4 +1,4 @@
-#define beta 0132u5
+%define beta 0133u1
%if "0%{?beta}" != "0"
%define _version %{?beta}
@@ -17,8 +17,8 @@
%endif
Name: sdlmame
-Version: 0133
-Release: 1%{?beta}%{?dist}
+Version: 0134
+Release: 0.1.%{?beta}%{?dist}
Summary: SDL Multiple Arcade Machine Emulator
Group: Applications/Emulators
@@ -200,6 +200,9 @@
%changelog
+* Mon Aug 03 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0134-0.1.0133u1
+- Updated to 0.133u1
+
* Mon Jul 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0133-1
- Updated to 0.133
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/sdlmame/F-10/sources,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- sources 20 Jul 2009 22:49:47 -0000 1.52
+++ sources 3 Aug 2009 14:27:44 -0000 1.53
@@ -1,2 +1,2 @@
b64914c2a5589f6d5b00361464152acd ui.bdc
-e049935d0c3a72ba9d3e22eb39aa882b sdlmame0133.zip
+798d791a25a01fceead1122e6cb26b51 sdlmame0133u1.zip
15 years, 3 months
rpms/sdlmame/F-11 .cvsignore, 1.49, 1.50 sdlmame.spec, 1.58, 1.59 sources, 1.51, 1.52
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/sdlmame/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29541
Modified Files:
.cvsignore sdlmame.spec sources
Log Message:
* Mon Aug 03 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0134-0.1.0133u1
- Updated to 0.133u1
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/sdlmame/F-11/.cvsignore,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -r1.49 -r1.50
--- .cvsignore 20 Jul 2009 22:49:35 -0000 1.49
+++ .cvsignore 3 Aug 2009 14:27:32 -0000 1.50
@@ -1,2 +1,2 @@
ui.bdc
-sdlmame0133.zip
+sdlmame0133u1.zip
Index: sdlmame.spec
===================================================================
RCS file: /cvs/nonfree/rpms/sdlmame/F-11/sdlmame.spec,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- sdlmame.spec 20 Jul 2009 22:49:35 -0000 1.58
+++ sdlmame.spec 3 Aug 2009 14:27:32 -0000 1.59
@@ -1,4 +1,4 @@
-#define beta 0132u5
+%define beta 0133u1
%if "0%{?beta}" != "0"
%define _version %{?beta}
@@ -17,8 +17,8 @@
%endif
Name: sdlmame
-Version: 0133
-Release: 1%{?beta}%{?dist}
+Version: 0134
+Release: 0.1.%{?beta}%{?dist}
Summary: SDL Multiple Arcade Machine Emulator
Group: Applications/Emulators
@@ -200,6 +200,9 @@
%changelog
+* Mon Aug 03 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0134-0.1.0133u1
+- Updated to 0.133u1
+
* Mon Jul 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0133-1
- Updated to 0.133
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/sdlmame/F-11/sources,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- sources 20 Jul 2009 22:49:35 -0000 1.51
+++ sources 3 Aug 2009 14:27:32 -0000 1.52
@@ -1,2 +1,2 @@
b64914c2a5589f6d5b00361464152acd ui.bdc
-e049935d0c3a72ba9d3e22eb39aa882b sdlmame0133.zip
+798d791a25a01fceead1122e6cb26b51 sdlmame0133u1.zip
15 years, 3 months