rpms/freetype-freeworld/F-19 0001-Fix-vertical-size-of-emboldened-glyphs.patch, NONE, 1.1 freetype-freeworld.spec, 1.27, 1.28
by Kevin Kofler
Author: kkofler
Update of /cvs/free/rpms/freetype-freeworld/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17355/F-19
Modified Files:
freetype-freeworld.spec
Added Files:
0001-Fix-vertical-size-of-emboldened-glyphs.patch
Log Message:
* Sat Sep 21 2013 Kevin Kofler <Kevin(a)tigcc.ticalc.org> 2.4.11-3
- Apply 0001-Fix-vertical-size-of-emboldened-glyphs.patch from Fedora
0001-Fix-vertical-size-of-emboldened-glyphs.patch:
ftsynth.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- NEW FILE 0001-Fix-vertical-size-of-emboldened-glyphs.patch ---
>From 31e726d939e7b79506d11164d259c9789e429761 Mon Sep 17 00:00:00 2001
From: Behdad Esfahbod <behdad(a)behdad.org>
Date: Fri, 20 Sep 2013 07:20:53 +0200
Subject: [PATCH] Fix vertical size of emboldened glyphs.
Cf. https://bugzilla.gnome.org/show_bug.cgi?id=686709
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Adjust `horiBearingY'
also.
---
src/base/ftsynth.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/base/ftsynth.c b/src/base/ftsynth.c
index 241d37f..3098a60 100644
--- a/src/base/ftsynth.c
+++ b/src/base/ftsynth.c
@@ -4,7 +4,7 @@
/* */
/* FreeType synthesizing code for emboldening and slanting (body). */
/* */
-/* Copyright 2000-2006, 2010, 2012 by */
+/* Copyright 2000-2006, 2010, 2012, 2013 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -139,10 +139,11 @@
if ( slot->advance.y )
slot->advance.y += ystr;
- slot->metrics.width += xstr;
- slot->metrics.height += ystr;
- slot->metrics.horiAdvance += xstr;
- slot->metrics.vertAdvance += ystr;
+ slot->metrics.width += xstr;
+ slot->metrics.height += ystr;
+ slot->metrics.horiAdvance += xstr;
+ slot->metrics.vertAdvance += ystr;
+ slot->metrics.horiBearingY += ystr;
/* XXX: 16-bit overflow case must be excluded before here */
if ( slot->format == FT_GLYPH_FORMAT_BITMAP )
--
1.8.3.1
Index: freetype-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/freetype-freeworld/F-19/freetype-freeworld.spec,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- freetype-freeworld.spec 19 Mar 2013 17:23:21 -0000 1.27
+++ freetype-freeworld.spec 21 Sep 2013 23:58:58 -0000 1.28
@@ -1,7 +1,7 @@
Summary: A free and portable font rendering engine
Name: freetype-freeworld
Version: 2.4.11
-Release: 2%{?dist}
+Release: 3%{?dist}
License: (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement
Group: System Environment/Libraries
URL: http://www.freetype.org
@@ -15,6 +15,9 @@
# https://bugzilla.redhat.com/show_bug.cgi?id=891457
Patch89: freetype-2.4.11-fix-emboldening.patch
+# https://bugzilla.gnome.org/show_bug.cgi?id=686709
+Patch90: 0001-Fix-vertical-size-of-emboldened-glyphs.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
Provides: freetype-bytecode
@@ -38,11 +41,12 @@
%prep
%setup -q -n freetype-%{version}
-%patch21 -p1 -b .enable-spr
+%patch21 -p1 -b .enable-spr
-%patch46 -p1 -b .enable-valid
+%patch46 -p1 -b .enable-valid
%patch89 -p1 -b .emboldening
+%patch90 -p1 -b .emboldened-glyphs
%build
@@ -88,6 +92,9 @@
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
%changelog
+* Sat Sep 21 2013 Kevin Kofler <Kevin(a)tigcc.ticalc.org> 2.4.11-3
+- Apply 0001-Fix-vertical-size-of-emboldened-glyphs.patch from Fedora
+
* Tue Mar 19 2013 Kevin Kofler <Kevin(a)tigcc.ticalc.org> 2.4.11-2
- Add freetype-2.4.11-fix-emboldening.patch from Fedora freetype (rh#891457)
- Fix License tag
11 years, 2 months
rpms/freetype-freeworld/devel 0001-Fix-vertical-size-of-emboldened-glyphs.patch, NONE, 1.1 freetype-freeworld.spec, 1.29, 1.30
by Kevin Kofler
Author: kkofler
Update of /cvs/free/rpms/freetype-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13554/devel
Modified Files:
freetype-freeworld.spec
Added Files:
0001-Fix-vertical-size-of-emboldened-glyphs.patch
Log Message:
* Sat Sep 21 2013 Kevin Kofler <Kevin(a)tigcc.ticalc.org> 2.5.0.1-2
- Apply 0001-Fix-vertical-size-of-emboldened-glyphs.patch from Fedora
0001-Fix-vertical-size-of-emboldened-glyphs.patch:
ftsynth.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- NEW FILE 0001-Fix-vertical-size-of-emboldened-glyphs.patch ---
>From 31e726d939e7b79506d11164d259c9789e429761 Mon Sep 17 00:00:00 2001
From: Behdad Esfahbod <behdad(a)behdad.org>
Date: Fri, 20 Sep 2013 07:20:53 +0200
Subject: [PATCH] Fix vertical size of emboldened glyphs.
Cf. https://bugzilla.gnome.org/show_bug.cgi?id=686709
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Adjust `horiBearingY'
also.
---
src/base/ftsynth.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/src/base/ftsynth.c b/src/base/ftsynth.c
index 241d37f..3098a60 100644
--- a/src/base/ftsynth.c
+++ b/src/base/ftsynth.c
@@ -4,7 +4,7 @@
/* */
/* FreeType synthesizing code for emboldening and slanting (body). */
/* */
-/* Copyright 2000-2006, 2010, 2012 by */
+/* Copyright 2000-2006, 2010, 2012, 2013 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -139,10 +139,11 @@
if ( slot->advance.y )
slot->advance.y += ystr;
- slot->metrics.width += xstr;
- slot->metrics.height += ystr;
- slot->metrics.horiAdvance += xstr;
- slot->metrics.vertAdvance += ystr;
+ slot->metrics.width += xstr;
+ slot->metrics.height += ystr;
+ slot->metrics.horiAdvance += xstr;
+ slot->metrics.vertAdvance += ystr;
+ slot->metrics.horiBearingY += ystr;
/* XXX: 16-bit overflow case must be excluded before here */
if ( slot->format == FT_GLYPH_FORMAT_BITMAP )
--
1.8.3.1
Index: freetype-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/freetype-freeworld/devel/freetype-freeworld.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- freetype-freeworld.spec 15 Sep 2013 20:14:46 -0000 1.29
+++ freetype-freeworld.spec 21 Sep 2013 23:54:32 -0000 1.30
@@ -1,7 +1,7 @@
Summary: A free and portable font rendering engine
Name: freetype-freeworld
Version: 2.5.0.1
-Release: 1%{?dist}
+Release: 2%{?dist}
License: (FTL or GPLv2+) and BSD and MIT and Public Domain and zlib with acknowledgement
Group: System Environment/Libraries
URL: http://www.freetype.org
@@ -12,6 +12,9 @@
# Enable otvalid and gxvalid modules
Patch46: freetype-2.2.1-enable-valid.patch
+# https://bugzilla.gnome.org/show_bug.cgi?id=686709
+Patch92: 0001-Fix-vertical-size-of-emboldened-glyphs.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
Provides: freetype-bytecode
@@ -36,9 +39,11 @@
%prep
%setup -q -n freetype-%{version}
-%patch21 -p1 -b .enable-spr
+%patch21 -p1 -b .enable-spr
+
+%patch46 -p1 -b .enable-valid
-%patch46 -p1 -b .enable-valid
+%patch92 -p1 -b .emboldened-glyphs
%build
@@ -84,6 +89,9 @@
%config(noreplace) %{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
%changelog
+* Sat Sep 21 2013 Kevin Kofler <Kevin(a)tigcc.ticalc.org> 2.5.0.1-2
+- Apply 0001-Fix-vertical-size-of-emboldened-glyphs.patch from Fedora
+
* Sun Sep 15 2013 Kevin Kofler <Kevin(a)tigcc.ticalc.org> 2.5.0.1-1
- Update to 2.5.0.1 (matches Fedora freetype)
- BuildRequires: libpng-devel
11 years, 2 months
rpms/buildsys-build-rpmfusion/F-19 buildsys-build-rpmfusion.spec, 1.62, 1.63
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv20071
Modified Files:
buildsys-build-rpmfusion.spec
Log Message:
* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-22
- rebuild for kernel 3.11.1-200.fc19
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion.spec,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- buildsys-build-rpmfusion.spec 21 Sep 2013 13:54:40 -0000 1.62
+++ buildsys-build-rpmfusion.spec 21 Sep 2013 14:55:17 -0000 1.63
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 19
-Release: 21
+Release: 22
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-22
+- rebuild for kernel 3.11.1-200.fc19
+
* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-21
- rebuild for kernel 3.11.1-200.fc19
11 years, 2 months
rpms/buildsys-build-rpmfusion/F-19 buildsys-build-rpmfusion-kerneldevpkgs-current, 1.41, 1.42 buildsys-build-rpmfusion.spec, 1.61, 1.62
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13782
Modified Files:
buildsys-build-rpmfusion-kerneldevpkgs-current
buildsys-build-rpmfusion.spec
Log Message:
* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-21
- rebuild for kernel 3.11.1-200.fc19
Index: buildsys-build-rpmfusion-kerneldevpkgs-current
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion-kerneldevpkgs-current,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- buildsys-build-rpmfusion-kerneldevpkgs-current 13 Sep 2013 19:31:30 -0000 1.41
+++ buildsys-build-rpmfusion-kerneldevpkgs-current 21 Sep 2013 13:54:40 -0000 1.42
@@ -1,3 +1,3 @@
-3.10.11-200.fc19
-3.10.11-200.fc19smp
-3.10.11-200.fc19PAE
+3.11.1-200.fc19
+3.11.1-200.fc19smp
+3.11.1-200.fc19PAE
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion.spec,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- buildsys-build-rpmfusion.spec 21 Sep 2013 13:50:51 -0000 1.61
+++ buildsys-build-rpmfusion.spec 21 Sep 2013 13:54:40 -0000 1.62
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 19
-Release: 20
+Release: 21
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-21
+- rebuild for kernel 3.11.1-200.fc19
+
* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-20
- rebuilt
11 years, 2 months
rpms/buildsys-build-rpmfusion/F-19 buildsys-build-rpmfusion.spec, 1.60, 1.61
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12288
Modified Files:
buildsys-build-rpmfusion.spec
Log Message:
* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-20
- rebuilt
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion.spec,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- buildsys-build-rpmfusion.spec 13 Sep 2013 19:31:30 -0000 1.60
+++ buildsys-build-rpmfusion.spec 21 Sep 2013 13:50:51 -0000 1.61
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 19
-Release: 19
+Release: 20
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Sat Sep 21 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 10:19-20
+- rebuilt
+
* Fri Sep 13 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 10:19-19
- rebuild for kernel 3.10.11-200.fc19
11 years, 2 months
rpms/VirtualBox-kmod/F-19 VirtualBox-kmod.spec,1.32,1.33
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox-kmod/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26292
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Fri Sep 20 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.18-1
- New upstream release and akmods.
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-19/VirtualBox-kmod.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- VirtualBox-kmod.spec 30 Aug 2013 06:13:22 -0000 1.32
+++ VirtualBox-kmod.spec 20 Sep 2013 14:44:14 -0000 1.33
@@ -3,7 +3,7 @@
# "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
-%global buildforkernels newest
+#global buildforkernels newest
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -19,8 +19,8 @@
%bcond_without hardening
Name: VirtualBox-kmod
-Version: 4.2.16
-Release: 1%{?prerel:.%{prerel}}%{?dist}.9
+Version: 4.2.18
+Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Fri Sep 20 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.18-1
+- New upstream release and akmods.
+
* Fri Aug 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 4.2.16-1.9
- Rebuilt for kernel
11 years, 2 months
rpms/staging-kmod-addons/F-19 .cvsignore, 1.8, 1.9 sources, 1.9, 1.10 staging-kmod-addons.spec, 1.12, 1.13
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod-addons/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv9339
Modified Files:
.cvsignore sources staging-kmod-addons.spec
Log Message:
* Fri Sep 20 2013 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.11.1-1
- Update to 3.11.1
- drop csr, dropped upstream
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-19/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 14 Aug 2013 16:07:00 -0000 1.8
+++ .cvsignore 20 Sep 2013 09:39:04 -0000 1.9
@@ -1 +1 @@
-linux-staging-3.10.5.tar.bz2
+linux-staging-3.11.1.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-19/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 14 Aug 2013 16:07:00 -0000 1.9
+++ sources 20 Sep 2013 09:39:04 -0000 1.10
@@ -1 +1 @@
-9a73d80fa8e2cb3804e6678cd4ada792 linux-staging-3.10.5.tar.bz2
+0a4ba4ac5c5f023d3c835f8dd598cc87 linux-staging-3.11.1.tar.bz2
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-19/staging-kmod-addons.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- staging-kmod-addons.spec 14 Aug 2013 17:23:14 -0000 1.12
+++ staging-kmod-addons.spec 20 Sep 2013 09:39:05 -0000 1.13
@@ -1,12 +1,12 @@
# drivers that we ship; to be synced with staging-kmod.spec
-%global stgdrvs ASUS_OLED BCM_WIMAX CSR_WIFI DGRP ECHO ET131X FB_XGI FT1000 IDE_PHISON LINE6_USB NET_VENDOR_SILICOM PRISM2_USB R8187SE RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 TRANZPORT USB_ENESTORAGE USB_SERIAL_QUATECH2 USB_WPAN_HCD USBIP_CORE VT6655 VT6656 WIMAX_GDM72XX WLAGS49_H25 W35UND WLAGS49_H2 ZCACHE ZRAM ZSMALLOC
+%global stgdrvs ASUS_OLED BCM_WIMAX DGRP ECHO ET131X FB_XGI FT1000 IDE_PHISON LINE6_USB NET_VENDOR_SILICOM PRISM2_USB R8187SE RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 TRANZPORT USB_ENESTORAGE USB_SERIAL_QUATECH2 USB_WPAN_HCD USBIP_CORE VT6655 VT6656 WIMAX_GDM72XX WLAGS49_H25 W35UND WLAGS49_H2 ZCACHE ZRAM ZSMALLOC
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod-addons
-Version: 3.10.5
+Version: 3.11.1
Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
@@ -140,6 +140,10 @@
%changelog
+* Fri Sep 20 2013 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.11.1-1
+- Update to 3.11.1
+- drop csr, dropped upstream
+
* Wed Aug 14 2013 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.10.5-1
- Update to 3.10.5
- add /etc/rpm/macros.systemd as BR
11 years, 2 months
rpms/staging-kmod/F-19 .cvsignore, 1.9, 1.10 sources, 1.9, 1.10 staging-kmod.spec, 1.44, 1.45
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8132
Modified Files:
.cvsignore sources staging-kmod.spec
Log Message:
* Fri Sep 20 2013 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.11.1-1
- Update to 3.11.1
- drop csr, dropped upstream
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-19/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 14 Aug 2013 16:03:01 -0000 1.9
+++ .cvsignore 20 Sep 2013 09:37:37 -0000 1.10
@@ -1 +1 @@
-linux-staging-3.10.5.tar.bz2
+linux-staging-3.11.1.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-19/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 14 Aug 2013 16:03:01 -0000 1.9
+++ sources 20 Sep 2013 09:37:37 -0000 1.10
@@ -1 +1 @@
-9a73d80fa8e2cb3804e6678cd4ada792 linux-staging-3.10.5.tar.bz2
+0a4ba4ac5c5f023d3c835f8dd598cc87 linux-staging-3.11.1.tar.bz2
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-19/staging-kmod.spec,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- staging-kmod.spec 30 Aug 2013 06:13:09 -0000 1.44
+++ staging-kmod.spec 20 Sep 2013 09:37:37 -0000 1.45
@@ -1,7 +1,7 @@
# akmods not supported
# which drivers to built
-%global stgdrvs ASUS_OLED BCM_WIMAX CSR_WIFI DGRP ECHO ET131X FB_XGI FT1000 IDE_PHISON LINE6_USB NET_VENDOR_SILICOM PRISM2_USB R8187SE RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 TRANZPORT USB_ENESTORAGE USB_SERIAL_QUATECH2 USB_WPAN_HCD USBIP_CORE VT6655 VT6656 WIMAX_GDM72XX WLAGS49_H25 W35UND WLAGS49_H2 ZCACHE ZRAM ZSMALLOC
+%global stgdrvs ASUS_OLED BCM_WIMAX DGRP ECHO ET131X FB_XGI FT1000 IDE_PHISON LINE6_USB NET_VENDOR_SILICOM PRISM2_USB R8187SE RTL8192U RTS5139 SLICOSS SOLO6X10 SPEAKUP TOUCHSCREEN_CLEARPAD_TM1217 TOUCHSCREEN_SYNAPTICS_I2C_RMI4 TRANZPORT USB_ENESTORAGE USB_SERIAL_QUATECH2 USB_WPAN_HCD USBIP_CORE VT6655 VT6656 WIMAX_GDM72XX WLAGS49_H25 W35UND WLAGS49_H2 ZCACHE ZRAM ZSMALLOC
# fixme: DVB_AS102 DVB_CXD2099
@@ -21,8 +21,8 @@
#global prever rc8
Name: staging-kmod
-Version: 3.10.5
-Release: %{?prever:0.}2%{?prever:.%{prever}}%{?dist}.5
+Version: 3.11.1
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.1
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -139,17 +139,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Fri Aug 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 3.10.5-2.5
-- Rebuilt for kernel
-
-* Thu Aug 22 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 3.10.5-2.4
-- Rebuilt for kernel
-
-* Thu Aug 22 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 3.10.5-2.3
-- Rebuilt for kernel
-
-* Fri Aug 16 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 3.10.5-2.2
-- Rebuilt for kernel
+* Fri Sep 20 2013 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.11.1-1
+- Update to 3.11.1
+- drop csr, dropped upstream
* Wed Aug 14 2013 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.10.5-1
- Update to 3.10.5
11 years, 2 months
rpms/VirtualBox/F-19 .cvsignore, 1.47, 1.48 VirtualBox.spec, 1.46, 1.47 sources, 1.47, 1.48
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19195
Modified Files:
.cvsignore VirtualBox.spec sources
Log Message:
* Fri Sep 20 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.18-1
- New upstream release.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/F-19/.cvsignore,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- .cvsignore 6 Jul 2013 02:21:00 -0000 1.47
+++ .cvsignore 20 Sep 2013 02:22:44 -0000 1.48
@@ -1 +1 @@
-VirtualBox-4.2.16.tar.bz2
+VirtualBox-4.2.18.tar.bz2
Index: VirtualBox.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/F-19/VirtualBox.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- VirtualBox.spec 6 Jul 2013 02:21:00 -0000 1.46
+++ VirtualBox.spec 20 Sep 2013 02:22:44 -0000 1.47
@@ -26,7 +26,7 @@
#endif
Name: VirtualBox
-Version: 4.2.16
+Version: 4.2.18
Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
@@ -615,6 +615,15 @@
%changelog
+* Fri Sep 20 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.18-1
+- New upstream release.
+
+* Sun Sep 01 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.16-2
+- fixes for Kernel 3.11:
+ https://www.virtualbox.org/changeset/47484/vbox/trunk
+ and
+ https://www.virtualbox.org/changeset/47588/vbox/trunk
+
* Fri Jul 05 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.16-1
- New upstream release.
Index: sources
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/F-19/sources,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- sources 6 Jul 2013 02:21:00 -0000 1.47
+++ sources 20 Sep 2013 02:22:44 -0000 1.48
@@ -1 +1 @@
-c4a36e2099a317f4715cd3861cdae238 VirtualBox-4.2.16.tar.bz2
+99cdf054b5e36aa83b60bd49fb50f943 VirtualBox-4.2.18.tar.bz2
11 years, 2 months
rpms/VirtualBox/devel .cvsignore, 1.47, 1.48 VirtualBox.spec, 1.48, 1.49 sources, 1.47, 1.48
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18547
Modified Files:
.cvsignore VirtualBox.spec sources
Log Message:
* Fri Sep 20 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.18-1
- New upstream release.
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/devel/.cvsignore,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- .cvsignore 5 Jul 2013 23:09:19 -0000 1.47
+++ .cvsignore 20 Sep 2013 02:15:42 -0000 1.48
@@ -1 +1 @@
-VirtualBox-4.2.16.tar.bz2
+VirtualBox-4.2.18.tar.bz2
Index: VirtualBox.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/devel/VirtualBox.spec,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- VirtualBox.spec 1 Sep 2013 01:54:34 -0000 1.48
+++ VirtualBox.spec 20 Sep 2013 02:15:42 -0000 1.49
@@ -26,8 +26,8 @@
#endif
Name: VirtualBox
-Version: 4.2.16
-Release: 2%{?prerel:.%{prerel}}%{?dist}
+Version: 4.2.18
+Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -54,8 +54,6 @@
Patch24: VirtualBox-4.2.0-VBoxGuestLib.patch
Patch25: VirtualBox-4.2.0-xorg111.patch
Patch26: VirtualBox-4.2.4-no-bundles.patch
-Patch27: changeset_47484.diff
-Patch28: changeset_47588.diff
%if 0%{?fedora} < 16
BuildRequires: kBuild >= 0.1.98
@@ -234,8 +232,6 @@
%patch25 -p1 -b .xorg111
%endif
%patch26 -p1 -b .nobundles
-%patch27 -p1 -b .Linux-3.11
-%patch28 -p1 -b .Linux-3.11
# CRLF->LF
sed -i 's/\r//' COPYING
@@ -619,6 +615,9 @@
%changelog
+* Fri Sep 20 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.18-1
+- New upstream release.
+
* Sun Sep 01 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.16-2
- fixes for Kernel 3.11:
https://www.virtualbox.org/changeset/47484/vbox/trunk
Index: sources
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/devel/sources,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- sources 5 Jul 2013 23:09:19 -0000 1.47
+++ sources 20 Sep 2013 02:15:42 -0000 1.48
@@ -1 +1 @@
-c4a36e2099a317f4715cd3861cdae238 VirtualBox-4.2.16.tar.bz2
+99cdf054b5e36aa83b60bd49fb50f943 VirtualBox-4.2.18.tar.bz2
11 years, 2 months