rpms/VirtualBox/F-20 VirtualBox-4.3.6-mesa.patch, NONE, 1.1 VirtualBox.spec, 1.56, 1.57 VirtualBox-4.2.0-xorg111.patch, 1.1, NONE
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10922
Modified Files:
VirtualBox.spec
Added Files:
VirtualBox-4.3.6-mesa.patch
Removed Files:
VirtualBox-4.2.0-xorg111.patch
Log Message:
* Wed Dec 25 2013 Sérgio Basto <sergio(a)serjux.com> - 4.3.6-4
- Update VirtualBox-4.3-mesa.patch, for guest drives and for Xorg-x11-server-1.14.99 in rawhide, glx internals "fixes" completely removed, eliminating BuildRequires of xorg-x11-server-source.
Also add to VBoxOGL_LIBS libXcomposite, libXdamage etc of the system.
- Disable webservice for rawhide, problems reported upstream with new gsoap version.
VirtualBox-4.3.6-mesa.patch:
Config.kmk | 10 ---
src/VBox/Additions/common/crOpenGL/Makefile.kmk | 35 ++++++-----
src/VBox/Additions/common/crOpenGL/fakedri_drv.c | 70 +----------------------
src/VBox/Additions/common/crOpenGL/fakedri_drv.h | 7 --
4 files changed, 26 insertions(+), 96 deletions(-)
--- NEW FILE VirtualBox-4.3.6-mesa.patch ---
fakedri_drv.c,h:
Just compile with X11 system source and we may remove bundle X11 source code.
--- ./Config.kmk 2012-03-13 13:14:01.000000000 +0000
+++ ./Config.kmk 2012-03-27 23:55:28.070630137 +0100
@@ -2003,15 +2003,7 @@ ifdef VBOX_WITH_CROGL
endif
if1of ($(KBUILD_TARGET), freebsd linux solaris)
- # VBOX_PATH_MESA_SOURCE = $(PATH_ROOT)/src/libs/mesa-7.2
- VBOX_PATH_MESA_SOURCE = $(VBOX_PATH_X11_ROOT)/mesa-7.2
- VBOX_MESA_INCS = \
- $(VBOX_PATH_MESA_SOURCE) \
- $(VBOX_PATH_MESA_SOURCE)/include \
- $(VBOX_PATH_MESA_SOURCE)/src/mesa/ \
- $(VBOX_PATH_MESA_SOURCE)/src/mesa/glapi \
- $(VBOX_PATH_MESA_SOURCE)/src/mesa/main \
- $(VBOX_PATH_MESA_SOURCE)/src/mesa/drivers/dri/common
+ VBOX_MESA_INCS = /usr/include/GL /usr/include/xorg /usr/include/pixman-1
endif
VBOX_DARWIN_OPENGL_INST = obj/VBoxOGL/GL/
--- ./src/VBox/Additions/common/crOpenGL/Makefile.kmk.mesa 2012-09-13 09:26:18.000000000 +0100
+++ ./src/VBox/Additions/common/crOpenGL/Makefile.kmk 2012-09-23 01:08:36.032101751 +0100
@@ -82,18 +82,12 @@ VBoxOGL_TEMPLATE = VBOXCROGLR3GUES
VBoxOGL_INCS = .
if1of ($(KBUILD_TARGET), linux solaris freebsd)
VBoxOGL_INCS += \
- $(VBOX_PATH_X11_ROOT)/libXdamage-1.1 \
- $(VBOX_PATH_X11_ROOT)/libXcomposite-0.4.0 \
- $(VBOX_PATH_X11_ROOT)/libXext-1.3.1 \
- $(VBOX_PATH_X11_ROOT)/libXfixes-4.0.3 \
- $(VBOX_PATH_X11_ROOT)/damageproto-1.1.0 \
- $(VBOX_PATH_X11_ROOT)/compositeproto-0.4 \
- $(VBOX_PATH_X11_ROOT)/fixesproto-4.0 \
- $(VBOX_PATH_X11_ROOT)/libx11-1.1.5-other \
- $(VBOX_PATH_X11_ROOT)/xextproto-7.1.1 \
- $(VBOX_PATH_X11_ROOT)/xproto-7.0.18 \
+ /usr/include/x11 \
+ /usr/include/xorg \
+ /usr/include/pixman-1 \
$(VBOX_MESA_INCS) \
- $(PATH_ROOT)/src/VBox/Additions/x11/x11include/libdrm-2.4.13
+ /usr/include/drm \
+ /usr/include/libdrm
VBoxOGL_DEFS += VBOX_NO_NATIVEGL
endif
@@ -222,11 +216,20 @@ VBoxOGL_LIBS = \
$(VBOX_LIB_OGL_CRUTIL) \
$(PATH_STAGE_LIB)/additions/VBoxOGLspuload$(VBOX_SUFF_LIB)
if1of ($(KBUILD_TARGET), linux solaris freebsd)
- VBoxOGL_LIBS += \
- $(PATH_STAGE_LIB)/libXcomposite.so \
- $(PATH_STAGE_LIB)/libXdamage.so \
- $(PATH_STAGE_LIB)/libXfixes.so \
- $(PATH_STAGE_LIB)/libXext.so
+ if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.x86 )
+ VBoxOGL_LIBS += \
+ /usr/lib/libXcomposite.so \
+ /usr/lib/libXdamage.so \
+ /usr/lib/libXfixes.so \
+ /usr/lib/libXext.so
+ endif
+ if1of ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),linux.amd64 )
+ VBoxOGL_LIBS += \
+ /usr/lib64/libXcomposite.so \
+ /usr/lib64/libXdamage.so \
+ /usr/lib64/libXfixes.so \
+ /usr/lib64/libXext.so
+ endif
ifdef VBoxOGL_FAKEDRI
ifeq ($(KBUILD_TARGET), freebsd)
VBoxOGL_LIBS += \
--- ./src/VBox/Additions/common/crOpenGL/fakedri_drv.h.mesa 2013-12-18 16:06:06.000000000 +0000
+++ ./src/VBox/Additions/common/crOpenGL/fakedri_drv.h 2013-12-24 17:01:55.086948605 +0000
@@ -20,13 +20,6 @@
#ifndef ___CROPENGL_FAKEDRIDRV_H
#define ___CROPENGL_FAKEDRIDRV_H
-#include "src/mesa/main/mtypes.h"
-#include "src/mesa/main/dd.h"
-#include "src/mesa/glapi/dispatch.h"
-#include "src/mesa/glapi/glapi.h"
-#include "src/mesa/glapi/glapitable.h"
-#include "src/mesa/glapi/glapioffsets.h"
-#include "src/mesa/drivers/dri/common/dri_util.h"
#include "GL/internal/dri_interface.h"
#include "glx_proto.h"
--- ./src/VBox/Additions/common/crOpenGL/fakedri_drv.c.mesa 2013-12-18 16:06:06.000000000 +0000
+++ ./src/VBox/Additions/common/crOpenGL/fakedri_drv.c 2013-12-24 19:56:30.880070340 +0000
@@ -17,7 +17,12 @@
*/
#define _GNU_SOURCE 1
+#define HAVE_STRNDUP 1
+#include <xf86.h>
+#include <xf86drm.h>
+#include <GL/gl.h>
+#include <GL/glext.h>
#include "cr_error.h"
#include "cr_gl.h"
#include "cr_mem.h"
@@ -38,20 +42,6 @@
#include <string.h>
#endif
-/** X server message type definitions. */
-typedef enum {
- X_PROBED, /* Value was probed */
- X_CONFIG, /* Value was given in the config file */
- X_DEFAULT, /* Value is a default */
- X_CMDLINE, /* Value was given on the command line */
- X_NOTICE, /* Notice */
- X_ERROR, /* Error message */
- X_WARNING, /* Warning message */
- X_INFO, /* Informational message */
- X_NONE, /* No prefix */
- X_NOT_IMPLEMENTED, /* Not implemented */
- X_UNKNOWN = -1 /* unknown -- this must always be last */
-} MessageType;
#define VBOX_NO_MESA_PATCH_REPORTS
@@ -127,7 +117,6 @@ typedef struct _FAKEDRI_PatchNode
static FAKEDRI_PatchNode *g_pFreeList=NULL, *g_pRepatchList=NULL;
#endif
-static struct _glapi_table* vbox_glapi_table = NULL;
fakedri_glxapi_table glxim;
static const __DRIextension **gppSwDriExternsion = NULL;
@@ -136,54 +125,6 @@ static const __DRIswrastExtension *gpSwD
extern const __DRIextension * __driDriverExtensions[];
-#define VBOX_SET_MESA_FUNC(table, name, func) \
- if (_glapi_get_proc_offset(name)>=0) SET_by_offset(table, _glapi_get_proc_offset(name), func); \
- else crWarning("%s not found in mesa table", name)
-
-#define GLAPI_ENTRY(Func) VBOX_SET_MESA_FUNC(vbox_glapi_table, "gl"#Func, cr_gl##Func);
-
-static void
-vboxPatchMesaExport(const char* psFuncName, const void *pStart, const void *pEnd);
-
-static void
-vboxPatchMesaGLAPITable()
-{
- void *pGLTable;
-
- pGLTable = (void *)_glapi_get_dispatch();
- vbox_glapi_table = crAlloc(_glapi_get_dispatch_table_size() * sizeof (void *));
- if (!vbox_glapi_table)
- {
- crError("Not enough memory to allocate dispatch table");
- }
- crMemcpy(vbox_glapi_table, pGLTable, _glapi_get_dispatch_table_size() * sizeof (void *));
-
- #include "fakedri_glfuncsList.h"
-
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glBlendEquationSeparateEXT", cr_glBlendEquationSeparate);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glSampleMaskSGIS", cr_glSampleMaskEXT);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glSamplePatternSGIS", cr_glSamplePatternEXT);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2dMESA", cr_glWindowPos2d);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2dvMESA", cr_glWindowPos2dv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2fMESA", cr_glWindowPos2f);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2fvMESA", cr_glWindowPos2fv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2iMESA", cr_glWindowPos2i);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2ivMESA", cr_glWindowPos2iv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2sMESA", cr_glWindowPos2s);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos2svMESA", cr_glWindowPos2sv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3dMESA", cr_glWindowPos3d);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3dvMESA", cr_glWindowPos3dv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3fMESA", cr_glWindowPos3f);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3fvMESA", cr_glWindowPos3fv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3iMESA", cr_glWindowPos3i);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3ivMESA", cr_glWindowPos3iv);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3sMESA", cr_glWindowPos3s);
- VBOX_SET_MESA_FUNC(vbox_glapi_table, "glWindowPos3svMESA", cr_glWindowPos3sv);
-
- _glapi_set_dispatch(vbox_glapi_table);
-};
-#undef GLAPI_ENTRY
-
#define GLXAPI_ENTRY(Func) pGLXTable->Func = VBOXGLXTAG(glX##Func);
static void
vboxFillGLXAPITable(fakedri_glxapi_table *pGLXTable)
@@ -686,7 +627,7 @@ void __attribute__ ((constructor)) vbox_
* Note, we don't need to install extension functions via _glapi_add_dispatch, because we'd override glXGetProcAddress.
*/
/* Mesa's dispatch table is different across library versions, have to modify mesa's table using offset info functions*/
- vboxPatchMesaGLAPITable();
+ //vboxPatchMesaGLAPITable();
/* Handle glx api.
* In the end application call would look like this:
Index: VirtualBox.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox/F-20/VirtualBox.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- VirtualBox.spec 21 Dec 2013 18:17:13 -0000 1.56
+++ VirtualBox.spec 30 Dec 2013 15:37:28 -0000 1.57
@@ -13,11 +13,11 @@
#global prerel RC4
%global prereltag %{?prerel:_%(awk 'BEGIN {print toupper("%{prerel}")}')}
-#if 0%{?fedora} < 20
+%if 0%{?fedora} < 21
%global enable_webservice 1
-#else
-#global enable_webservice 0
-#endif
+%else
+%global enable_webservice 0
+%endif
#if 0%{?fedora} < 18
%global enable_docs 1
@@ -27,7 +27,7 @@
Name: VirtualBox
Version: 4.3.6
-Release: 3%{?prerel:.%{prerel}}%{?dist}
+Release: 4%{?prerel:.%{prerel}}%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -50,9 +50,8 @@
Patch17: VirtualBox-OSE-4.0.0-beramono.patch
Patch18: VirtualBox-OSE-4.0.2-aiobug.patch
Patch22: VirtualBox-OSE-4.1.12-gsoap.patch
-Patch23: VirtualBox-4.3.0-mesa.patch
+Patch23: VirtualBox-4.3.6-mesa.patch
Patch24: VirtualBox-4.3.0-VBoxGuestLib.patch
-Patch25: VirtualBox-4.2.0-xorg111.patch
Patch26: VirtualBox-4.3.0-no-bundles.patch
%if 0%{?fedora} < 16
@@ -102,7 +101,6 @@
BuildRequires: mesa-libOSMesa-devel
BuildRequires: pixman-devel
BuildRequires: xorg-x11-proto-devel
-BuildRequires: xorg-x11-server-source
BuildRequires: xorg-x11-server-devel
BuildRequires: libXcursor-devel
BuildRequires: libXcomposite-devel
@@ -231,9 +229,6 @@
%endif
%patch23 -p1 -b .mesa
%patch24 -p1 -b .guestlib
-%if 0%{?fedora} < 17
-%patch25 -p1 -b .xorg111
-%endif
%patch26 -p1 -b .nobundles
# CRLF->LF
@@ -627,6 +622,11 @@
%changelog
+* Wed Dec 25 2013 Sérgio Basto <sergio(a)serjux.com> - 4.3.6-4
+- Update VirtualBox-4.3-mesa.patch, for guest drives and for Xorg-x11-server-1.14.99 in rawhide, glx internals "fixes" completely removed, eliminating BuildRequires of xorg-x11-server-source.
+ Also add to VBoxOGL_LIBS libXcomposite, libXdamage etc of the system.
+- Disable webservice for rawhide, problems reported upstream with new gsoap version.
+
* Sat Dec 21 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 4.3.6-3
- Rebuilt after branching
--- VirtualBox-4.2.0-xorg111.patch DELETED ---
10 years, 11 months
rpms/faad2/devel faad2.spec,1.9,1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/faad2/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10137/devel
Modified Files:
faad2.spec
Log Message:
Rebuilt because evr was older in f20> because of the doc space issue
Index: faad2.spec
===================================================================
RCS file: /cvs/free/rpms/faad2/devel/faad2.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- faad2.spec 27 Mar 2013 11:21:49 -0000 1.9
+++ faad2.spec 30 Dec 2013 15:19:23 -0000 1.10
@@ -12,7 +12,7 @@
Name: faad2
Epoch: 1
Version: 2.7
-Release: 4%{?dist}
+Release: 5%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.audiocoding.com/faad2.html
@@ -127,6 +127,9 @@
%{xmmsinputplugindir}/libmp4.so
%changelog
+* Mon Dec 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.7-5
+- Rebuilt for F-20
+
* Wed Mar 27 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.7-4
- Change the escaping space hack - rhbz#928110
10 years, 11 months
rpms/faad2/F-20 faad2.spec,1.9,1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/faad2/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv10137/F-20
Modified Files:
faad2.spec
Log Message:
Rebuilt because evr was older in f20> because of the doc space issue
Index: faad2.spec
===================================================================
RCS file: /cvs/free/rpms/faad2/F-20/faad2.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- faad2.spec 27 Mar 2013 11:21:49 -0000 1.9
+++ faad2.spec 30 Dec 2013 15:19:23 -0000 1.10
@@ -12,7 +12,7 @@
Name: faad2
Epoch: 1
Version: 2.7
-Release: 4%{?dist}
+Release: 5%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.audiocoding.com/faad2.html
@@ -127,6 +127,9 @@
%{xmmsinputplugindir}/libmp4.so
%changelog
+* Mon Dec 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.7-5
+- Rebuilt for F-20
+
* Wed Mar 27 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:2.7-4
- Change the escaping space hack - rhbz#928110
10 years, 11 months
rpms/gambatte/F-19 .cvsignore, 1.4, 1.5 gambatte.spec, 1.9, 1.10 sources, 1.4, 1.5
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/gambatte/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv31272
Modified Files:
.cvsignore gambatte.spec sources
Log Message:
* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
- Updated to upstream r550
- Dropped cleaning at the beginning of %install
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-19/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 11 Jul 2013 15:14:52 -0000 1.4
+++ .cvsignore 29 Dec 2013 15:19:31 -0000 1.5
@@ -1 +1 @@
-gambatte_src-r537.tar.gz
+gambatte_src-r550.tar.gz
Index: gambatte.spec
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-19/gambatte.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gambatte.spec 11 Jul 2013 15:14:53 -0000 1.9
+++ gambatte.spec 29 Dec 2013 15:19:31 -0000 1.10
@@ -3,7 +3,7 @@
%define soname lib%{libname}.so
Name: gambatte
-Version: 537
+Version: 550
Release: 1%{?dist}
Summary: An accuracy-focused Game Boy / Game Boy Color emulator
@@ -132,8 +132,6 @@
%install
-rm -rf %{buildroot}
-
# Install include
install -d -m 755 %{buildroot}%{_includedir}/%{name}
install -m 644 libgambatte/include/* %{buildroot}%{_includedir}/%{name}
@@ -203,6 +201,10 @@
%changelog
+* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
+- Updated to upstream r550
+- Dropped cleaning at the beginning of %%install
+
* Mon Jul 01 2013 Andrea Musuruane <musuruan(a)gmail.com> - 537-1
- Updated to upstream r537
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-19/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Jul 2013 15:14:53 -0000 1.4
+++ sources 29 Dec 2013 15:19:31 -0000 1.5
@@ -1 +1 @@
-0c9816a9f55872a8df5da06223b83074 gambatte_src-r537.tar.gz
+ef8a4d1cb1b7f92e475de3dad8bd5e9f gambatte_src-r550.tar.gz
10 years, 11 months
rpms/gambatte/F-20 .cvsignore, 1.4, 1.5 gambatte.spec, 1.9, 1.10 sources, 1.4, 1.5
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/gambatte/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv31133
Modified Files:
.cvsignore gambatte.spec sources
Log Message:
* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
- Updated to upstream r550
- Dropped cleaning at the beginning of %install
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-20/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 11 Jul 2013 15:09:50 -0000 1.4
+++ .cvsignore 29 Dec 2013 15:19:02 -0000 1.5
@@ -1 +1 @@
-gambatte_src-r537.tar.gz
+gambatte_src-r550.tar.gz
Index: gambatte.spec
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-20/gambatte.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gambatte.spec 11 Jul 2013 15:09:50 -0000 1.9
+++ gambatte.spec 29 Dec 2013 15:19:02 -0000 1.10
@@ -3,7 +3,7 @@
%define soname lib%{libname}.so
Name: gambatte
-Version: 537
+Version: 550
Release: 1%{?dist}
Summary: An accuracy-focused Game Boy / Game Boy Color emulator
@@ -132,8 +132,6 @@
%install
-rm -rf %{buildroot}
-
# Install include
install -d -m 755 %{buildroot}%{_includedir}/%{name}
install -m 644 libgambatte/include/* %{buildroot}%{_includedir}/%{name}
@@ -203,6 +201,10 @@
%changelog
+* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
+- Updated to upstream r550
+- Dropped cleaning at the beginning of %%install
+
* Mon Jul 01 2013 Andrea Musuruane <musuruan(a)gmail.com> - 537-1
- Updated to upstream r537
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-20/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Jul 2013 15:09:50 -0000 1.4
+++ sources 29 Dec 2013 15:19:02 -0000 1.5
@@ -1 +1 @@
-0c9816a9f55872a8df5da06223b83074 gambatte_src-r537.tar.gz
+ef8a4d1cb1b7f92e475de3dad8bd5e9f gambatte_src-r550.tar.gz
10 years, 11 months
rpms/gambatte/devel .cvsignore, 1.4, 1.5 gambatte.spec, 1.9, 1.10 sources, 1.4, 1.5
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/gambatte/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv31005
Modified Files:
.cvsignore gambatte.spec sources
Log Message:
* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
- Updated to upstream r550
- Dropped cleaning at the beginning of %install
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gambatte/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 11 Jul 2013 15:09:50 -0000 1.4
+++ .cvsignore 29 Dec 2013 15:18:33 -0000 1.5
@@ -1 +1 @@
-gambatte_src-r537.tar.gz
+gambatte_src-r550.tar.gz
Index: gambatte.spec
===================================================================
RCS file: /cvs/free/rpms/gambatte/devel/gambatte.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gambatte.spec 11 Jul 2013 15:09:50 -0000 1.9
+++ gambatte.spec 29 Dec 2013 15:18:33 -0000 1.10
@@ -3,7 +3,7 @@
%define soname lib%{libname}.so
Name: gambatte
-Version: 537
+Version: 550
Release: 1%{?dist}
Summary: An accuracy-focused Game Boy / Game Boy Color emulator
@@ -132,8 +132,6 @@
%install
-rm -rf %{buildroot}
-
# Install include
install -d -m 755 %{buildroot}%{_includedir}/%{name}
install -m 644 libgambatte/include/* %{buildroot}%{_includedir}/%{name}
@@ -203,6 +201,10 @@
%changelog
+* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
+- Updated to upstream r550
+- Dropped cleaning at the beginning of %%install
+
* Mon Jul 01 2013 Andrea Musuruane <musuruan(a)gmail.com> - 537-1
- Updated to upstream r537
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gambatte/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 11 Jul 2013 15:09:50 -0000 1.4
+++ sources 29 Dec 2013 15:18:33 -0000 1.5
@@ -1 +1 @@
-0c9816a9f55872a8df5da06223b83074 gambatte_src-r537.tar.gz
+ef8a4d1cb1b7f92e475de3dad8bd5e9f gambatte_src-r550.tar.gz
10 years, 11 months
rpms/xorg-x11-drv-nvidia-304xx/F-19 xorg-x11-drv-nvidia-304xx.spec, 1.14, 1.15
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1200
Modified Files:
xorg-x11-drv-nvidia-304xx.spec
Log Message:
* Fri Dec 27 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.116-2
- fix module path issue with alien msttcore-fonts package
Index: xorg-x11-drv-nvidia-304xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-19/xorg-x11-drv-nvidia-304xx.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- xorg-x11-drv-nvidia-304xx.spec 27 Dec 2013 13:58:39 -0000 1.14
+++ xorg-x11-drv-nvidia-304xx.spec 28 Dec 2013 19:02:20 -0000 1.15
@@ -7,7 +7,7 @@
Name: xorg-x11-drv-nvidia-304xx
Version: 304.116
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: NVIDIA's 304xx serie proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -241,9 +241,7 @@
nvidia-settings.desktop
#Workaround for self made xorg.conf using a Files section.
-%if 0%{?fedora} < 20
ln -fs ../../%{_nvidia_serie}/xorg $RPM_BUILD_ROOT%{_libdir}/xorg/modules/%{_nvidia_serie}-%{version}
-%endif
%clean
@@ -391,6 +389,9 @@
%changelog
+* Sat Dec 28 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.116-3
+- remove conditionals
+
* Fri Dec 27 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.116-2
- fix module path issue with alien msttcore-fonts package
10 years, 11 months
rpms/xorg-x11-drv-nvidia-304xx/F-20 xorg-x11-drv-nvidia-304xx.spec, 1.9, 1.10
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1095
Modified Files:
xorg-x11-drv-nvidia-304xx.spec
Log Message:
* Sat Dec 28 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-4
- remove conditionals
Index: xorg-x11-drv-nvidia-304xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/F-20/xorg-x11-drv-nvidia-304xx.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xorg-x11-drv-nvidia-304xx.spec 27 Dec 2013 09:08:33 -0000 1.9
+++ xorg-x11-drv-nvidia-304xx.spec 28 Dec 2013 19:01:26 -0000 1.10
@@ -7,7 +7,7 @@
Name: xorg-x11-drv-nvidia-304xx
Version: 304.117
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: NVIDIA's 304xx serie proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -245,9 +245,7 @@
nvidia-settings.desktop
#Workaround for self made xorg.conf using a Files section.
-%if 0%{?fedora} < 20
ln -fs ../../%{_nvidia_serie}/xorg $RPM_BUILD_ROOT%{_libdir}/xorg/modules/%{_nvidia_serie}-%{version}
-%endif
#Create the default nvidia config directory
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/nvidia
@@ -397,6 +395,9 @@
%changelog
+* Sat Dec 28 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-4
+- remove conditionals
+
* Fri Dec 27 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-3
- fix module path issue with alien msttcore-fonts package
10 years, 11 months
rpms/xorg-x11-drv-nvidia-304xx/devel xorg-x11-drv-nvidia-304xx.spec, 1.9, 1.10
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv969
Modified Files:
xorg-x11-drv-nvidia-304xx.spec
Log Message:
* Sat Dec 28 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-4
- remove conditionals
Index: xorg-x11-drv-nvidia-304xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/xorg-x11-drv-nvidia-304xx.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xorg-x11-drv-nvidia-304xx.spec 27 Dec 2013 08:59:45 -0000 1.9
+++ xorg-x11-drv-nvidia-304xx.spec 28 Dec 2013 19:00:17 -0000 1.10
@@ -7,7 +7,7 @@
Name: xorg-x11-drv-nvidia-304xx
Version: 304.117
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: NVIDIA's 304xx serie proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -245,9 +245,7 @@
nvidia-settings.desktop
#Workaround for self made xorg.conf using a Files section.
-%if 0%{?fedora} < 20
ln -fs ../../%{_nvidia_serie}/xorg $RPM_BUILD_ROOT%{_libdir}/xorg/modules/%{_nvidia_serie}-%{version}
-%endif
#Create the default nvidia config directory
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/nvidia
@@ -397,6 +395,9 @@
%changelog
+* Sat Dec 28 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-4
+- remove conditionals
+
* Fri Dec 27 2013 Leigh Scott <leigh123linux(a)googlemail.com> - 304.117-3
- fix module path issue with alien msttcore-fonts package
10 years, 11 months
rpms/mate-applet-streamer/F-18 mate-applet-streamer.spec,1.2,1.3
by Wolfgang Ulbrich
Author: raveit65
Update of /cvs/free/rpms/mate-applet-streamer/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24669
Modified Files:
mate-applet-streamer.spec
Log Message:
* Sat Dec 28 2013 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 0.0.5-1
- update to 0.0.5
Index: mate-applet-streamer.spec
===================================================================
RCS file: /cvs/free/rpms/mate-applet-streamer/F-18/mate-applet-streamer.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mate-applet-streamer.spec 5 Nov 2013 21:00:28 -0000 1.2
+++ mate-applet-streamer.spec 28 Dec 2013 14:38:37 -0000 1.3
@@ -1,5 +1,5 @@
Name: mate-applet-streamer
-Version: 0.0.4
+Version: 0.0.5
Release: 1%{?dist}
Summary: MATE online radio streamer applet
Group: Applications/System
@@ -66,6 +66,9 @@
%{_datadir}/icons/hicolor/*/apps/applet_streamer.png
%changelog
+* Sat Dec 28 2013 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 0.0.5-1
+- update to 0.0.5
+
* Tue Nov 05 2013 Wolfgang Ulbrich <chat-to-me(a)raveit.de> - 0.0.4-1
- update to 0.0.4
10 years, 11 months