rpms/VirtualBox-OSE/devel VirtualBox-OSE-3.2.6-gcc45.patch, NONE, 1.1 VirtualBox-OSE.spec, 1.57, 1.58
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28327
Modified Files:
VirtualBox-OSE.spec
Added Files:
VirtualBox-OSE-3.2.6-gcc45.patch
Log Message:
Fix build with gcc 4.5.0
VirtualBox-OSE-3.2.6-gcc45.patch:
PGMAllGst.h | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
--- NEW FILE VirtualBox-OSE-3.2.6-gcc45.patch ---
>From 8c4aca59bd1db2fa278a575e7768ce129a89013d Mon Sep 17 00:00:00 2001
From: Lubomir Rintel <lkundrak(a)v3.sk>
Date: Mon, 12 Jul 2010 10:01:48 +0200
Subject: [PATCH] Fix build with GCC 4.5.0
Silence an -Wuninitialized warning which causes the build to fail,
because we build with -Werror.
---
src/VBox/VMM/VMMAll/PGMAllGst.h | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/src/VBox/VMM/VMMAll/PGMAllGst.h b/src/VBox/VMM/VMMAll/PGMAllGst.h
index 749fffd..6aea35a 100644
--- a/src/VBox/VMM/VMMAll/PGMAllGst.h
+++ b/src/VBox/VMM/VMMAll/PGMAllGst.h
@@ -81,6 +81,13 @@ PGM_GST_DECL(int, GetPage)(PVMCPU pVCpu, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGC
X86PDPE Pdpe;
X86PDEPAE Pde = pgmGstGetLongModePDEEx(&pVCpu->pgm.s, GCPtr, &pPml4e, &Pdpe);
+ Pdpe.n.u1Present =
+ Pdpe.lm.u1Write =
+ Pdpe.lm.u1User =
+ Pdpe.lm.u1Accessed =
+ Pdpe.lm.u1NoExecute =
+ 0;
+
Assert(pPml4e);
if (!(pPml4e->n.u1Present & Pdpe.n.u1Present))
return VERR_PAGE_TABLE_NOT_PRESENT;
--
1.7.1.1
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- VirtualBox-OSE.spec 12 Jul 2010 06:26:13 -0000 1.57
+++ VirtualBox-OSE.spec 12 Jul 2010 08:04:21 -0000 1.58
@@ -38,6 +38,7 @@
Patch12: VirtualBox-OSE-3.2.0-noansi.patch
Patch13: VirtualBox-OSE-3.2.0-cpuid.patch
Patch14: VirtualBox-OSE-3.2.6-vboxkeyboard.patch
+Patch15: VirtualBox-OSE-3.2.6-gcc45.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -145,6 +146,7 @@
%patch12 -p1 -b .noansi
%patch13 -p1 -b .cpuid
%patch14 -p1 -b .vboxkeyboard
+%patch15 -p1 -b .gcc45
# Remove prebuilt binary tools
rm -rf kBuild
@@ -444,6 +446,7 @@
%changelog
* Mon Jul 12 2010 Lubomir Rintel <lkundrak(a)v3.sk> - 3.2.6-1
- New release, fix build
+- Fix compile with GCC 4.5
* Thu Jun 17 2010 Lubomir Rintel <lkundrak(a)v3.sk> - 3.2.4-1
- New release
14 years, 5 months
rpms/VirtualBox-OSE/devel VirtualBox-OSE-3.2.6-vboxkeyboard.patch, NONE, 1.1 .cvsignore, 1.22, 1.23 VirtualBox-OSE.spec, 1.56, 1.57 sources, 1.22, 1.23
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21645
Modified Files:
.cvsignore VirtualBox-OSE.spec sources
Added Files:
VirtualBox-OSE-3.2.6-vboxkeyboard.patch
Log Message:
* Mon Jul 12 2010 Lubomir Rintel <lkundrak(a)v3.sk> - 3.2.6-1
- New release, fix build
VirtualBox-OSE-3.2.6-vboxkeyboard.patch:
Makefile.kmk | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
--- NEW FILE VirtualBox-OSE-3.2.6-vboxkeyboard.patch ---
>From 53aff8d4da4230619ecd2c029e2b991dccd2e47b Mon Sep 17 00:00:00 2001
From: Lubomir Rintel <lkundrak(a)v3.sk>
Date: Mon, 12 Jul 2010 01:52:39 -0400
Subject: [PATCH] Look for VBoxKeyboard files wherever were they created
*_INST causes the files to be created in PATH_INS, not PATH_TARGET. This
fixes a build failure when the two are different.
tar --owner 0 --group 0 --ignore-failed-read -cjRf /br/VirtualBox-3.2.6_OSE/obj/bin/vboxkeyboard.tar.bz2 \
-C /br/VirtualBox-3.2.6_OSE/out/linux.x86/release/obj/VBoxKeyboard/install VBoxKeyboard
tar: /br/VirtualBox-3.2.6_OSE/out/linux.x86/release/obj/VBoxKeyboard/install: Cannot chdir: No such file or directory
tar: Error is not recoverable: exiting now
---
.../Frontends/Common/VBoxKeyboard/Makefile.kmk | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/VBox/Frontends/Common/VBoxKeyboard/Makefile.kmk b/src/VBox/Frontends/Common/VBoxKeyboard/Makefile.kmk
index b88b1c1..9d57e09 100644
--- a/src/VBox/Frontends/Common/VBoxKeyboard/Makefile.kmk
+++ b/src/VBox/Frontends/Common/VBoxKeyboard/Makefile.kmk
@@ -45,12 +45,12 @@ VBoxKeyboard_LIBPATH = $(VBOX_LIBPATH_X11)
# but wtf, it's not like we're even trying to be FHS compliant).
#
## @todo this should be tar'ed down into the output directory and installed using an install target.
-VBOX_KEYBOARD_STAGE_DIR = $(PATH_TARGET)/VBoxKeyboard/install
+VBOX_KEYBOARD_STAGE_DIR = $(PATH_INS)/VBoxKeyboard/install
VBOX_KEYBOARD_DEST_DIR = $(VBOX_KEYBOARD_STAGE_DIR)/VBoxKeyboard/
INSTALLS += VBoxKeyboard-Files
-VBoxKeyboard-Files_INST = $(subst $(PATH_TARGET),obj,$(VBOX_KEYBOARD_DEST_DIR))
+VBoxKeyboard-Files_INST = $(subst $(PATH_INS)/,,$(VBOX_KEYBOARD_DEST_DIR))
VBoxKeyboard-Files_MODE = a+rx,u+w
VBoxKeyboard-Files_SOURCES = \
COPYING.LIB \
--
1.7.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/.cvsignore,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- .cvsignore 17 Jun 2010 13:46:54 -0000 1.22
+++ .cvsignore 12 Jul 2010 06:26:13 -0000 1.23
@@ -1,2 +1,2 @@
UserManual.pdf
-VirtualBox-3.2.4-OSE.tar.bz2
+VirtualBox-3.2.6-OSE.tar.bz2
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- VirtualBox-OSE.spec 23 Jun 2010 11:55:08 -0000 1.56
+++ VirtualBox-OSE.spec 12 Jul 2010 06:26:13 -0000 1.57
@@ -14,7 +14,7 @@
%global prereltag %{?prerel:_%(awk 'BEGIN {print toupper("%{prerel}")}')}
Name: VirtualBox-OSE
-Version: 3.2.4
+Version: 3.2.6
Release: 1%{?prerel:.%{prerel}%{?dist}}
Summary: A general-purpose full virtualizer for PC hardware
@@ -37,6 +37,7 @@
Patch11: VirtualBox-OSE-3.2.0-visibility.patch
Patch12: VirtualBox-OSE-3.2.0-noansi.patch
Patch13: VirtualBox-OSE-3.2.0-cpuid.patch
+Patch14: VirtualBox-OSE-3.2.6-vboxkeyboard.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -143,6 +144,7 @@
%patch11 -p1 -b .visibility
%patch12 -p1 -b .noansi
%patch13 -p1 -b .cpuid
+%patch14 -p1 -b .vboxkeyboard
# Remove prebuilt binary tools
rm -rf kBuild
@@ -168,7 +170,6 @@
KMK_REVISION=3000 KBUILD_KMK_REVISION=3000 \
VBOX_GCC_OPT="%{optflags}" VBOX_GCC_GC_OPT="%{optflags}" \
VBOX_GCC_R0_OPT="%{optflags}" VBOX_XCURSOR_LIBS="Xcursor Xext X11 GL" \
- VBOX_KEYBOARD_DEST_DIR="$PWD/obj/obj/VBoxKeyboard/install"
%install
@@ -441,6 +442,9 @@
%changelog
+* Mon Jul 12 2010 Lubomir Rintel <lkundrak(a)v3.sk> - 3.2.6-1
+- New release, fix build
+
* Thu Jun 17 2010 Lubomir Rintel <lkundrak(a)v3.sk> - 3.2.4-1
- New release
- Do not use /usr/bin/xargs in module script (Piergiorgio Sartor, #1256)
Index: sources
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/sources,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- sources 17 Jun 2010 13:46:58 -0000 1.22
+++ sources 12 Jul 2010 06:26:13 -0000 1.23
@@ -1,2 +1,2 @@
-9c3f21a2011aa4c041f146df90359470 UserManual.pdf
-3ed76bc4048f399dc0465ed0a7f666d8 VirtualBox-3.2.4-OSE.tar.bz2
+8891557360f816f7604d26aac7503489 UserManual.pdf
+65b822ab3c08ff882d9621101996dc14 VirtualBox-3.2.6-OSE.tar.bz2
14 years, 5 months
rpms/gpac/devel gpac.spec,1.19,1.20
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/gpac/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13859
Modified Files:
gpac.spec
Log Message:
Fix
Index: gpac.spec
===================================================================
RCS file: /cvs/free/rpms/gpac/devel/gpac.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- gpac.spec 29 May 2010 15:33:10 -0000 1.19
+++ gpac.spec 11 Jul 2010 17:50:25 -0000 1.20
@@ -17,7 +17,7 @@
Name: gpac
Summary: MPEG-4 multimedia framework
Version: 0.4.6
-Release: 0.8.cvs%{?cvs}%{?dist}
+Release: 0.9.cvs%{?cvs}%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://gpac.sourceforge.net/
@@ -274,6 +274,9 @@
#Fix doxygen timestamp
touch -r Changelog doc/html/*
+#Fix header installed by misstake
+rm $RPM_BUILD_ROOT%{_includedir}/gpac/configuration.h
+
%clean
rm -rf $RPM_BUILD_ROOT
@@ -331,6 +334,9 @@
%changelog
+* Sun Jul 11 2010 Nicolas Chauvet <kwizart(a)gmail.com> - 0.4.6-0.9.cvs20100527
+- Fix header installed by misstake - rfbz#270c9
+
* Sat May 29 2010 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 0.4.6-0.8.cvs20100527
- Rewrite soname patch that is still needed.
- Allow --with osmo conditional
14 years, 5 months
rpms/gpac/F-13 gpac.spec,1.19,1.20
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/gpac/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13450
Modified Files:
gpac.spec
Log Message:
Fix header
Index: gpac.spec
===================================================================
RCS file: /cvs/free/rpms/gpac/F-13/gpac.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- gpac.spec 29 May 2010 15:33:11 -0000 1.19
+++ gpac.spec 11 Jul 2010 17:49:51 -0000 1.20
@@ -17,7 +17,7 @@
Name: gpac
Summary: MPEG-4 multimedia framework
Version: 0.4.6
-Release: 0.8.cvs%{?cvs}%{?dist}
+Release: 0.9.cvs%{?cvs}%{?dist}
License: LGPLv2+
Group: System Environment/Libraries
URL: http://gpac.sourceforge.net/
@@ -274,6 +274,9 @@
#Fix doxygen timestamp
touch -r Changelog doc/html/*
+#Fix header installed by misstake
+rm $RPM_BUILD_ROOT%{_includedir}/gpac/configuration.h
+
%clean
rm -rf $RPM_BUILD_ROOT
@@ -331,6 +334,9 @@
%changelog
+* Sun Jul 11 2010 Nicolas Chauvet <kwizart(a)gmail.com> - 0.4.6-0.9.cvs20100527
+- Fix header installed by misstake - rfbz#270c9
+
* Sat May 29 2010 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 0.4.6-0.8.cvs20100527
- Rewrite soname patch that is still needed.
- Allow --with osmo conditional
14 years, 5 months
rpms/xmltv/devel xmltv.spec,1.9,1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xmltv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10773
Modified Files:
xmltv.spec
Log Message:
Rebuild for perl
Index: xmltv.spec
===================================================================
RCS file: /cvs/free/rpms/xmltv/devel/xmltv.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xmltv.spec 29 May 2010 16:17:28 -0000 1.9
+++ xmltv.spec 11 Jul 2010 17:15:17 -0000 1.10
@@ -1,6 +1,6 @@
Name: xmltv
Version: 0.5.57
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A set of utilities to manage your TV viewing
Group: Development/Libraries
@@ -219,6 +219,9 @@
%changelog
+* Sun Jul 11 2010 Nicolas Chauvet <kwizart(a)gmail.com> - 0.5.57-2
+- rebuilt for perl
+
* Sat May 29 2010 Nicolas Chauvet <kwizart(a)fedoraproject.org> - 0.5.57-1
- Update to 0.5.57
- Add new BR
14 years, 5 months
rpms/rt2870-kmod/F-12 .cvsignore, 1.6, 1.7 rt2870-kmod.spec, 1.82, 1.83 sources, 1.6, 1.7
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870-kmod/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23918
Modified Files:
.cvsignore rt2870-kmod.spec sources
Log Message:
* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
- Update to 2.4.0.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-12/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 4 Jul 2010 19:23:51 -0000 1.6
+++ .cvsignore 11 Jul 2010 04:50:50 -0000 1.7
@@ -1 +1 @@
-2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Index: rt2870-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-12/rt2870-kmod.spec,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- rt2870-kmod.spec 7 Jul 2010 14:25:34 -0000 1.82
+++ rt2870-kmod.spec 11 Jul 2010 04:50:50 -0000 1.83
@@ -3,18 +3,18 @@
# "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: rt2870-kmod
-Version: 2.4.0.0
-Release: 2%{?dist}.1
+Version: 2.4.0.1
+Release: 1%{?dist}
Summary: Kernel module for wireless devices with Ralink's rt2870 chipsets
Group: System Environment/Kernel
License: GPLv2+
URL: http://www.ralinktech.com/support.php?s=2
# No direct links anymore. The sources are downloaded from the above page.
-Source0: 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+Source0: 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Source11: rt2870-kmodtool-excludekernel-filterfile
Patch0: rt2870-additional-devices-support.patch
Patch1: rt2870-no2.4-in-kernelversion.patch
@@ -79,6 +79,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
+- Update to 2.4.0.1
+
* Wed Jul 07 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.4.0.0-2.1
- rebuild for new kernel
Index: sources
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-12/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 4 Jul 2010 19:23:51 -0000 1.6
+++ sources 11 Jul 2010 04:50:50 -0000 1.7
@@ -1 +1 @@
-9ab5d68566eb6defd5a794bb98bcf425 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+9afbb7c60bcf17a5e8bfad89a4b14e0f 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
14 years, 5 months
rpms/rt2870-kmod/F-13 .cvsignore, 1.6, 1.7 rt2870-kmod.spec, 1.67, 1.68 sources, 1.6, 1.7
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870-kmod/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23551
Modified Files:
.cvsignore rt2870-kmod.spec sources
Log Message:
* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
- Update to 2.4.0.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-13/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 4 Jul 2010 19:16:46 -0000 1.6
+++ .cvsignore 11 Jul 2010 04:49:57 -0000 1.7
@@ -1 +1 @@
-2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Index: rt2870-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-13/rt2870-kmod.spec,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- rt2870-kmod.spec 7 Jul 2010 14:16:13 -0000 1.67
+++ rt2870-kmod.spec 11 Jul 2010 04:49:57 -0000 1.68
@@ -3,18 +3,18 @@
# "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: rt2870-kmod
-Version: 2.4.0.0
-Release: 2%{?dist}.1
+Version: 2.4.0.1
+Release: 1%{?dist}
Summary: Kernel module for wireless devices with Ralink's rt2870 chipsets
Group: System Environment/Kernel
License: GPLv2+
URL: http://www.ralinktech.com/support.php?s=2
# No direct links anymore. The sources are downloaded from the above page.
-Source0: 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+Source0: 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Source11: rt2870-kmodtool-excludekernel-filterfile
Patch0: rt2870-additional-devices-support.patch
Patch1: rt2870-no2.4-in-kernelversion.patch
@@ -79,6 +79,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
+- Update to 2.4.0.1
+
* Wed Jul 07 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.4.0.0-2.1
- rebuild for new kernel
Index: sources
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-13/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 4 Jul 2010 19:16:46 -0000 1.6
+++ sources 11 Jul 2010 04:49:57 -0000 1.7
@@ -1 +1 @@
-9ab5d68566eb6defd5a794bb98bcf425 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+9afbb7c60bcf17a5e8bfad89a4b14e0f 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
14 years, 5 months
rpms/rt2870-kmod/devel .cvsignore, 1.6, 1.7 rt2870-kmod.spec, 1.59, 1.60 sources, 1.6, 1.7
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23384
Modified Files:
.cvsignore rt2870-kmod.spec sources
Log Message:
* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
- Update to 2.4.0.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 4 Jul 2010 18:26:49 -0000 1.6
+++ .cvsignore 11 Jul 2010 04:47:39 -0000 1.7
@@ -1 +1 @@
-2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Index: rt2870-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/devel/rt2870-kmod.spec,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- rt2870-kmod.spec 4 Jul 2010 19:04:03 -0000 1.59
+++ rt2870-kmod.spec 11 Jul 2010 04:47:39 -0000 1.60
@@ -6,15 +6,15 @@
#define buildforkernels newest
Name: rt2870-kmod
-Version: 2.4.0.0
-Release: 2%{?dist}
+Version: 2.4.0.1
+Release: 1%{?dist}
Summary: Kernel module for wireless devices with Ralink's rt2870 chipsets
Group: System Environment/Kernel
License: GPLv2+
URL: http://www.ralinktech.com/support.php?s=2
# No direct links anymore. The sources are downloaded from the above page.
-Source0: 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+Source0: 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Source11: rt2870-kmodtool-excludekernel-filterfile
Patch0: rt2870-additional-devices-support.patch
Patch1: rt2870-no2.4-in-kernelversion.patch
@@ -79,6 +79,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
+- Update to 2.4.0.1
+
* Sun Jul 04 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.0-2
- Compilation fix against kernel >= 2.6.34
Index: sources
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/devel/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 4 Jul 2010 18:26:51 -0000 1.6
+++ sources 11 Jul 2010 04:47:39 -0000 1.7
@@ -1 +1 @@
-9ab5d68566eb6defd5a794bb98bcf425 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+9afbb7c60bcf17a5e8bfad89a4b14e0f 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
14 years, 5 months
rpms/rt2870/F-12 .cvsignore, 1.6, 1.7 rt2870.spec, 1.10, 1.11 sources, 1.6, 1.7
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23191
Modified Files:
.cvsignore rt2870.spec sources
Log Message:
* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
- Update to 2.4.0.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-12/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 4 Jul 2010 18:18:36 -0000 1.6
+++ .cvsignore 11 Jul 2010 04:45:30 -0000 1.7
@@ -1 +1 @@
-2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-12/rt2870.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rt2870.spec 4 Jul 2010 18:18:36 -0000 1.10
+++ rt2870.spec 11 Jul 2010 04:45:30 -0000 1.11
@@ -1,14 +1,14 @@
-%define SourceName 2010_06_25_RT2870_Linux_STA_v2.4.0.0
+%define SourceName 2010_0709_RT2870_Linux_STA_v2.4.0.1
Name: rt2870
-Version: 2.4.0.0
+Version: 2.4.0.1
Release: 1%{?dist}
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
URL: http://www.ralinktech.com/support.php?s=2
# No direct links anymore. The sources are downloaded from the above page.
-Source0: %{SourceName}.tgz
+Source0: %{SourceName}.tar.bz2
Source1: ReleaseNote-RT2870.txt
Source2: suspend.sh
# Blacklist the module shipped with kernel
@@ -76,6 +76,9 @@
%endif
%changelog
+* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
+- Update to 2.4.0.1
+
* Sat Jun 26 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.0-1
- Update to 2.4.0.0
Index: sources
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-12/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 4 Jul 2010 18:18:36 -0000 1.6
+++ sources 11 Jul 2010 04:45:30 -0000 1.7
@@ -1 +1 @@
-9ab5d68566eb6defd5a794bb98bcf425 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+9afbb7c60bcf17a5e8bfad89a4b14e0f 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
14 years, 5 months
rpms/rt2870/F-13 .cvsignore, 1.6, 1.7 rt2870.spec, 1.10, 1.11 sources, 1.6, 1.7
by Orcan Ogetbil
Author: oget
Update of /cvs/free/rpms/rt2870/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv22756
Modified Files:
.cvsignore rt2870.spec sources
Log Message:
* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
- Update to 2.4.0.1
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-13/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 4 Jul 2010 18:17:36 -0000 1.6
+++ .cvsignore 11 Jul 2010 04:44:55 -0000 1.7
@@ -1 +1 @@
-2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
Index: rt2870.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-13/rt2870.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rt2870.spec 4 Jul 2010 18:17:36 -0000 1.10
+++ rt2870.spec 11 Jul 2010 04:44:55 -0000 1.11
@@ -1,14 +1,14 @@
-%define SourceName 2010_06_25_RT2870_Linux_STA_v2.4.0.0
+%define SourceName 2010_0709_RT2870_Linux_STA_v2.4.0.1
Name: rt2870
-Version: 2.4.0.0
+Version: 2.4.0.1
Release: 1%{?dist}
Summary: Common files for RaLink rt2870 kernel driver
Group: System Environment/Kernel
License: GPLv2+
URL: http://www.ralinktech.com/support.php?s=2
# No direct links anymore. The sources are downloaded from the above page.
-Source0: %{SourceName}.tgz
+Source0: %{SourceName}.tar.bz2
Source1: ReleaseNote-RT2870.txt
Source2: suspend.sh
# Blacklist the module shipped with kernel
@@ -76,6 +76,9 @@
%endif
%changelog
+* Sat Jul 10 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.1-1
+- Update to 2.4.0.1
+
* Sat Jun 26 2010 Orcan Ogetbil <oget [DOT] fedora [AT] gmail [DOT] com> - 2.4.0.0-1
- Update to 2.4.0.0
Index: sources
===================================================================
RCS file: /cvs/free/rpms/rt2870/F-13/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 4 Jul 2010 18:17:36 -0000 1.6
+++ sources 11 Jul 2010 04:44:55 -0000 1.7
@@ -1 +1 @@
-9ab5d68566eb6defd5a794bb98bcf425 2010_06_25_RT2870_Linux_STA_v2.4.0.0.tgz
+9afbb7c60bcf17a5e8bfad89a4b14e0f 2010_0709_RT2870_Linux_STA_v2.4.0.1.tar.bz2
14 years, 5 months