rpms/gecko-mediaplayer/F-15 gecko-mediaplayer-applefix.patch, NONE, 1.1 gecko-mediaplayer.spec, 1.29, 1.30
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/gecko-mediaplayer/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24609
Modified Files:
gecko-mediaplayer.spec
Added Files:
gecko-mediaplayer-applefix.patch
Log Message:
* Thu Jul 07 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0.4-2
- Fixed apple.com regression using a patch from SVN
gecko-mediaplayer-applefix.patch:
plugin.cpp | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
--- NEW FILE gecko-mediaplayer-applefix.patch ---
Index: src/plugin.cpp
===================================================================
--- src/plugin.cpp (wersja 467)
+++ src/plugin.cpp (wersja 468)
@@ -1320,7 +1320,7 @@
ListItem *item = (ListItem *) clientp;
gdouble percent, rate;
gchar *text;
- gboolean ok_to_play;
+ gboolean ok_to_play = FALSE;
gint id;
gboolean ready;
gboolean newwindow;
@@ -1364,8 +1364,10 @@
rate);
}
send_signal_with_string(plugin, item, "SetProgressText", text);
- if (!item->opened)
- send_signal_with_string(plugin, item, "SetURL", item->src);
+ if (!item->opened) {
+ //open_location (plugin, item, TRUE);
+ //send_signal_with_string(plugin, item, "SetURL", item->src);
+ }
if (plugin->post_dom_events && plugin->id != NULL) {
postDOMEvent(plugin->mInstance, plugin->id, "qt_progress");
postDOMEvent(plugin->mInstance, plugin->id, "qt_durationchange");
@@ -1376,6 +1378,7 @@
item->lastsize = item->localsize;
}
}
+ /*
if (!item->opened) {
if ((item->localsize >= (plugin->cache_size * 1024)) && (percent >= 0.2)) {
printf("Setting to play because %i > %i\n", item->localsize,
@@ -1407,7 +1410,9 @@
}
}
+ */
// if not opened, over cache level and not an href target then try and open it
+ /*
if ((!item->opened) && ok_to_play == TRUE) {
id = item->controlid;
path = g_strdup(item->path);
@@ -1418,6 +1423,7 @@
if (!item->streaming) {
printf("in progress_callback\n");
plugin->playlist = list_parse_qt(plugin->playlist, item);
+ plugin->playlist = list_parse_qt2(plugin->playlist, item);
plugin->playlist = list_parse_asx(plugin->playlist, item);
plugin->playlist = list_parse_qml(plugin->playlist, item);
plugin->playlist = list_parse_ram(plugin->playlist, item);
@@ -1456,6 +1462,7 @@
}
g_free(path);
}
+ */
}
@@ -1493,13 +1500,13 @@
}
fclose(local);
- printf("fetched %s to %s\n", item->src, item->local);
+ printf("fetched %s to %s opened = %i\n", item->src, item->local, item->opened);
send_signal_with_double(plugin, item, "SetCachePercent", 0.0);
item->retrieved = TRUE;
}
- if ((!item->opened)) {
+ if (!item->opened) {
id = item->controlid;
path = g_strdup(item->path);
ready = item->playerready;
@@ -1509,13 +1516,14 @@
if (!item->streaming) {
printf("in CURLGetURLNotify\n");
plugin->playlist = list_parse_qt(plugin->playlist, item);
+ plugin->playlist = list_parse_qt2(plugin->playlist, item);
plugin->playlist = list_parse_asx(plugin->playlist, item);
plugin->playlist = list_parse_qml(plugin->playlist, item);
plugin->playlist = list_parse_ram(plugin->playlist, item);
}
// printf("item->play = %i\n", item->play);
// printf("item->src = %i\n", item->src);
- // printf("calling open_location from Write\n");
+ // printf("calling open_location from CURLGetURLNotify\n");
if (item->play) {
send_signal_with_integer(plugin, item, "SetGUIState", PLAYING);
open_location(plugin, item, TRUE);
Index: gecko-mediaplayer.spec
===================================================================
RCS file: /cvs/free/rpms/gecko-mediaplayer/F-15/gecko-mediaplayer.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- gecko-mediaplayer.spec 1 Jul 2011 20:10:28 -0000 1.29
+++ gecko-mediaplayer.spec 7 Jul 2011 19:47:37 -0000 1.30
@@ -1,12 +1,13 @@
Name: gecko-mediaplayer
Version: 1.0.4
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Gnome MPlayer browser plugin
Group: Applications/Multimedia
License: GPLv2+
URL: http://kdekorte.googlepages.com/gecko-mediaplayer
Source0: http://gecko-mediaplayer.googlecode.com/files/%{name}-%{version}.tar.gz
+Patch0: %{name}-applefix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: dbus-glib-devel
@@ -37,6 +38,7 @@
%prep
%setup -q
+%patch0 -p0 -b .applefix
%build
@@ -96,6 +98,9 @@
%changelog
+* Thu Jul 07 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0.4-2
+- Fixed apple.com regression using a patch from SVN
+
* Fri Jul 01 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0.4-1
- Updated to 1.0.4
13 years, 4 months
rpms/gecko-mediaplayer/devel gecko-mediaplayer-applefix.patch, NONE, 1.1 gecko-mediaplayer.spec, 1.29, 1.30
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/gecko-mediaplayer/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24495
Modified Files:
gecko-mediaplayer.spec
Added Files:
gecko-mediaplayer-applefix.patch
Log Message:
* Thu Jul 07 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0.4-2
- Fixed apple.com regression using a patch from SVN
gecko-mediaplayer-applefix.patch:
plugin.cpp | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
--- NEW FILE gecko-mediaplayer-applefix.patch ---
Index: src/plugin.cpp
===================================================================
--- src/plugin.cpp (wersja 467)
+++ src/plugin.cpp (wersja 468)
@@ -1320,7 +1320,7 @@
ListItem *item = (ListItem *) clientp;
gdouble percent, rate;
gchar *text;
- gboolean ok_to_play;
+ gboolean ok_to_play = FALSE;
gint id;
gboolean ready;
gboolean newwindow;
@@ -1364,8 +1364,10 @@
rate);
}
send_signal_with_string(plugin, item, "SetProgressText", text);
- if (!item->opened)
- send_signal_with_string(plugin, item, "SetURL", item->src);
+ if (!item->opened) {
+ //open_location (plugin, item, TRUE);
+ //send_signal_with_string(plugin, item, "SetURL", item->src);
+ }
if (plugin->post_dom_events && plugin->id != NULL) {
postDOMEvent(plugin->mInstance, plugin->id, "qt_progress");
postDOMEvent(plugin->mInstance, plugin->id, "qt_durationchange");
@@ -1376,6 +1378,7 @@
item->lastsize = item->localsize;
}
}
+ /*
if (!item->opened) {
if ((item->localsize >= (plugin->cache_size * 1024)) && (percent >= 0.2)) {
printf("Setting to play because %i > %i\n", item->localsize,
@@ -1407,7 +1410,9 @@
}
}
+ */
// if not opened, over cache level and not an href target then try and open it
+ /*
if ((!item->opened) && ok_to_play == TRUE) {
id = item->controlid;
path = g_strdup(item->path);
@@ -1418,6 +1423,7 @@
if (!item->streaming) {
printf("in progress_callback\n");
plugin->playlist = list_parse_qt(plugin->playlist, item);
+ plugin->playlist = list_parse_qt2(plugin->playlist, item);
plugin->playlist = list_parse_asx(plugin->playlist, item);
plugin->playlist = list_parse_qml(plugin->playlist, item);
plugin->playlist = list_parse_ram(plugin->playlist, item);
@@ -1456,6 +1462,7 @@
}
g_free(path);
}
+ */
}
@@ -1493,13 +1500,13 @@
}
fclose(local);
- printf("fetched %s to %s\n", item->src, item->local);
+ printf("fetched %s to %s opened = %i\n", item->src, item->local, item->opened);
send_signal_with_double(plugin, item, "SetCachePercent", 0.0);
item->retrieved = TRUE;
}
- if ((!item->opened)) {
+ if (!item->opened) {
id = item->controlid;
path = g_strdup(item->path);
ready = item->playerready;
@@ -1509,13 +1516,14 @@
if (!item->streaming) {
printf("in CURLGetURLNotify\n");
plugin->playlist = list_parse_qt(plugin->playlist, item);
+ plugin->playlist = list_parse_qt2(plugin->playlist, item);
plugin->playlist = list_parse_asx(plugin->playlist, item);
plugin->playlist = list_parse_qml(plugin->playlist, item);
plugin->playlist = list_parse_ram(plugin->playlist, item);
}
// printf("item->play = %i\n", item->play);
// printf("item->src = %i\n", item->src);
- // printf("calling open_location from Write\n");
+ // printf("calling open_location from CURLGetURLNotify\n");
if (item->play) {
send_signal_with_integer(plugin, item, "SetGUIState", PLAYING);
open_location(plugin, item, TRUE);
Index: gecko-mediaplayer.spec
===================================================================
RCS file: /cvs/free/rpms/gecko-mediaplayer/devel/gecko-mediaplayer.spec,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- gecko-mediaplayer.spec 1 Jul 2011 20:10:20 -0000 1.29
+++ gecko-mediaplayer.spec 7 Jul 2011 19:47:25 -0000 1.30
@@ -1,12 +1,13 @@
Name: gecko-mediaplayer
Version: 1.0.4
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Gnome MPlayer browser plugin
Group: Applications/Multimedia
License: GPLv2+
URL: http://kdekorte.googlepages.com/gecko-mediaplayer
Source0: http://gecko-mediaplayer.googlecode.com/files/%{name}-%{version}.tar.gz
+Patch0: %{name}-applefix.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: dbus-glib-devel
@@ -37,6 +38,7 @@
%prep
%setup -q
+%patch0 -p0 -b .applefix
%build
@@ -96,6 +98,9 @@
%changelog
+* Thu Jul 07 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0.4-2
+- Fixed apple.com regression using a patch from SVN
+
* Fri Jul 01 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.0.4-1
- Updated to 1.0.4
13 years, 4 months
rpms/OpenEXR_Viewers-nonfree/devel OpenEXR_Viewers-nonfree.spec, 1.11, 1.12
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14694
Modified Files:
OpenEXR_Viewers-nonfree.spec
Log Message:
Bump for fltk rebuilt
Index: OpenEXR_Viewers-nonfree.spec
===================================================================
RCS file: /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/devel/OpenEXR_Viewers-nonfree.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- OpenEXR_Viewers-nonfree.spec 6 Jul 2011 08:03:07 -0000 1.11
+++ OpenEXR_Viewers-nonfree.spec 7 Jul 2011 12:08:32 -0000 1.12
@@ -12,7 +12,7 @@
Name: %{real_name}
Version: 1.0.2
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Viewers programs for OpenEXR
Group: Applications/Multimedia
@@ -74,6 +74,7 @@
%patch0 -p1 -b .gcc43
%patch1 -p1 -b .gcc44
%patch2 -p1 -b .gccCg
+%patch3 -p1 -b .ld
%if %{_lib} == lib64
sed -i -e 's|ACTUAL_PREFIX/lib/CTL|ACTUAL_PREFIX/lib64/CTL|' configure.ac
@@ -138,6 +139,9 @@
%endif
%changelog
+* Thu Jul 07 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.2-6
+- Bump for fltk rebuilt
+
* Wed Jul 06 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.2-5
- Add patch from rdieter
13 years, 4 months
rpms/OpenEXR_Viewers-nonfree/devel openexr_viewers-1.0.2-dso.patch, NONE, 1.1 OpenEXR_Viewers-nonfree.spec, 1.10, 1.11
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16429/devel
Modified Files:
OpenEXR_Viewers-nonfree.spec
Added Files:
openexr_viewers-1.0.2-dso.patch
Log Message:
Add patch from rdieter
openexr_viewers-1.0.2-dso.patch:
Makefile.am | 2 +-
Makefile.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- NEW FILE openexr_viewers-1.0.2-dso.patch ---
diff -up openexr_viewers-1.0.2/exrdisplay/Makefile.am.dso openexr_viewers-1.0.2/exrdisplay/Makefile.am
--- openexr_viewers-1.0.2/exrdisplay/Makefile.am.dso 2007-03-28 01:06:46.000000000 -0500
+++ openexr_viewers-1.0.2/exrdisplay/Makefile.am 2011-06-24 12:48:56.676196480 -0500
@@ -7,7 +7,7 @@ bin_PROGRAMS = exrdisplay
INCLUDES = @GL_CXXFLAGS@ @CG_CXXFLAGS@ @FLTK_CXXFLAGS@ -I$(top_builddir) \
@OPENEXR_CTL_CXXFLAGS@
-LDADD = @CG_LDFLAGS@ @FLTK_LDFLAGS@ \
+LDADD = @CG_LDFLAGS@ @FLTK_LDFLAGS@ -lGL \
@OPENEXR_CTL_LDFLAGS@ \
@OPENEXR_CTL_LIBS@
diff -up openexr_viewers-1.0.2/exrdisplay/Makefile.in.dso openexr_viewers-1.0.2/exrdisplay/Makefile.in
--- openexr_viewers-1.0.2/exrdisplay/Makefile.in.dso 2010-07-22 19:46:29.000000000 -0500
+++ openexr_viewers-1.0.2/exrdisplay/Makefile.in 2011-06-24 12:49:19.426317303 -0500
@@ -214,7 +214,7 @@ target_alias = @target_alias@
@HAVE_FLTK_TRUE@INCLUDES = @GL_CXXFLAGS@ @CG_CXXFLAGS@ @FLTK_CXXFLAGS@ -I$(top_builddir) \
@HAVE_FLTK_TRUE@ @OPENEXR_CTL_CXXFLAGS@
-@HAVE_FLTK_TRUE@LDADD = @CG_LDFLAGS@ @FLTK_LDFLAGS@ \
+@HAVE_FLTK_TRUE@LDADD = @CG_LDFLAGS@ @FLTK_LDFLAGS@ -lGL \
@HAVE_FLTK_TRUE@ @OPENEXR_CTL_LDFLAGS@ \
@HAVE_FLTK_TRUE@ @OPENEXR_CTL_LIBS@
Index: OpenEXR_Viewers-nonfree.spec
===================================================================
RCS file: /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/devel/OpenEXR_Viewers-nonfree.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- OpenEXR_Viewers-nonfree.spec 10 Oct 2010 20:20:49 -0000 1.10
+++ OpenEXR_Viewers-nonfree.spec 6 Jul 2011 08:03:07 -0000 1.11
@@ -12,7 +12,7 @@
Name: %{real_name}
Version: 1.0.2
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: Viewers programs for OpenEXR
Group: Applications/Multimedia
@@ -22,6 +22,8 @@
Patch0: openexr_viewers-1.0.1-gcc43.patch
Patch1: openexr_viewers-1.0.1-gcc44.patch
Patch2: openexr_viewers-1.0.2-gccCg.patch
+# fix dso (missing symbols) by explicitly linking -lGL too
+Patch3: openexr_viewers-1.0.2-dso.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libtool
@@ -136,6 +138,9 @@
%endif
%changelog
+* Wed Jul 06 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.2-5
+- Add patch from rdieter
+
* Sun Oct 10 2010 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.2-4
- rebuilt for compiler bug
13 years, 4 months
rpms/xorg-x11-drv-nvidia/devel xorg-x11-drv-nvidia.spec,1.63,1.64
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11339
Modified Files:
xorg-x11-drv-nvidia.spec
Log Message:
- Fix filter_from_requires/provides libglx.so
- Fix filter_from_requires/provides libcuda.so.1
Index: xorg-x11-drv-nvidia.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/xorg-x11-drv-nvidia.spec,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- xorg-x11-drv-nvidia.spec 1 Jul 2011 21:47:42 -0000 1.63
+++ xorg-x11-drv-nvidia.spec 5 Jul 2011 18:28:41 -0000 1.64
@@ -7,7 +7,7 @@
Name: xorg-x11-drv-nvidia
Epoch: 1
Version: 280.04
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -75,11 +75,14 @@
%filter_from_provides /^libvdpau_nvidia\.so\.1/d;
%filter_from_provides /^libXvMCNVIDIA_dynamic\.so\.1/d;
%filter_from_provides /^libglx\.so/d;
+%filter_from_provides /^libcuda\.so\.1/d;
%filter_from_requires /^libnvidia/d;
%filter_from_requires /^libGLCore\.so/d;
%filter_from_requires /^libGL\.so/d;
%filter_from_requires /^libvdpau_nvidia\.so\.1/d;
%filter_from_requires /^libXvMCNVIDIA_dynamic\.so\.1/d;
+%filter_from_requires /^libglx\.so/d;
+%filter_from_requires /^libcuda\.so\.1/d;
%filter_setup
}
@@ -341,6 +344,10 @@
%changelog
+* Tue Jul 05 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.04-2
+- Fix filter_from_requires/provides libglx.so
+- Fix filter_from_requires/provides libcuda.so.1
+
* Fri Jul 01 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.04-1
- Update to 280.04 (beta)
13 years, 4 months
rpms/bsnes/F-14 .cvsignore, 1.30, 1.31 bsnes-0.079-gcc46.patch, 1.1, 1.2 bsnes.spec, 1.41, 1.42 sources, 1.30, 1.31
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13945
Modified Files:
.cvsignore bsnes-0.079-gcc46.patch bsnes.spec sources
Log Message:
* Sun Jul 03 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.080-1
- Updated to 0.080
- Updated the gcc-4.6 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-14/.cvsignore,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- .cvsignore 22 Jun 2011 20:05:33 -0000 1.30
+++ .cvsignore 3 Jul 2011 16:01:48 -0000 1.31
@@ -1 +1 @@
-bsnes_v079-source.tar.bz2
+bsnes_v080-source.tar.bz2
bsnes-0.079-gcc46.patch:
interface.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: bsnes-0.079-gcc46.patch
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-14/bsnes-0.079-gcc46.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bsnes-0.079-gcc46.patch 22 Jun 2011 20:05:33 -0000 1.1
+++ bsnes-0.079-gcc46.patch 3 Jul 2011 16:01:49 -0000 1.2
@@ -10,42 +10,3 @@
case GameBoy::Input::Start: return data & 0x80;
case GameBoy::Input::Select: return data & 0x40;
case GameBoy::Input::B: return data & 0x20;
-diff -up bsnes_v079-source/bsnes/ui/input/input.cpp.gcc46 bsnes_v079-source/bsnes/ui/input/input.cpp
---- bsnes_v079-source/bsnes/ui/input/input.cpp.gcc46 2011-03-24 19:33:58.000000000 +0100
-+++ bsnes_v079-source/bsnes/ui/input/input.cpp 2011-06-21 00:02:22.971853731 +0200
-@@ -82,7 +82,7 @@ void InputMapper::Gamepad::create(const
- }
-
- int16_t InputMapper::Gamepad::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::JoypadID)id) {
- case SNES::Input::JoypadID::Up: return up.poll();
- case SNES::Input::JoypadID::Down: return down.poll() & !up.poll();
- case SNES::Input::JoypadID::Left: return left.poll();
-@@ -118,7 +118,7 @@ void InputMapper::Mouse::create(const ch
- }
-
- int16_t InputMapper::Mouse::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::MouseID)id) {
- case SNES::Input::MouseID::X: return x.poll();
- case SNES::Input::MouseID::Y: return y.poll();
- case SNES::Input::MouseID::Left: return left.poll();
-@@ -150,7 +150,7 @@ void InputMapper::SuperScope::create(con
- }
-
- int16_t InputMapper::SuperScope::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::SuperScopeID)id) {
- case SNES::Input::SuperScopeID::X: return x.poll();
- case SNES::Input::SuperScopeID::Y: return y.poll();
- case SNES::Input::SuperScopeID::Trigger: return trigger.poll();
-@@ -182,7 +182,7 @@ void InputMapper::Justifier::create(cons
- }
-
- int16_t InputMapper::Justifier::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::JustifierID)id) {
- case SNES::Input::JustifierID::X: return x.poll();
- case SNES::Input::JustifierID::Y: return y.poll();
- case SNES::Input::JustifierID::Trigger: return trigger.poll();
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-14/bsnes.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- bsnes.spec 22 Jun 2011 20:05:33 -0000 1.41
+++ bsnes.spec 3 Jul 2011 16:01:49 -0000 1.42
@@ -1,4 +1,4 @@
-%global vernumber 079
+%global vernumber 080
Name: bsnes
Version: 0.%{vernumber}
@@ -11,7 +11,7 @@
Source0: http://bsnes.googlecode.com/files/%{name}_v%{vernumber}-source.tar.bz2
Source2: README.bsnes
Patch0: bsnes-0.079-gcc46.patch
-Patch1: bsnes-0.079-systemwide.patch
+Patch1: bsnes-0.079-systemwide.patch
Patch2: bsnes-0.079-gtk.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -115,6 +115,10 @@
%changelog
+* Sun Jul 03 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.080-1
+- Updated to 0.080
+- Updated the gcc-4.6 patch
+
* Tue Jun 21 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.079-1
- Updated to 0.079
- Dropped subpackages, they are too small to be worth it
Index: sources
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-14/sources,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- sources 22 Jun 2011 20:05:33 -0000 1.30
+++ sources 3 Jul 2011 16:01:49 -0000 1.31
@@ -1 +1 @@
-22513f713e29824a85a0fe193298f9f2 bsnes_v079-source.tar.bz2
+a5697cc0a15cb22e628eea2c74396e88 bsnes_v080-source.tar.bz2
13 years, 4 months
rpms/bsnes/F-15 .cvsignore, 1.30, 1.31 bsnes-0.079-gcc46.patch, 1.1, 1.2 bsnes.spec, 1.41, 1.42 sources, 1.30, 1.31
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/F-15
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13839
Modified Files:
.cvsignore bsnes-0.079-gcc46.patch bsnes.spec sources
Log Message:
* Sun Jul 03 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.080-1
- Updated to 0.080
- Updated the gcc-4.6 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-15/.cvsignore,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- .cvsignore 22 Jun 2011 20:04:55 -0000 1.30
+++ .cvsignore 3 Jul 2011 16:01:38 -0000 1.31
@@ -1 +1 @@
-bsnes_v079-source.tar.bz2
+bsnes_v080-source.tar.bz2
bsnes-0.079-gcc46.patch:
interface.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: bsnes-0.079-gcc46.patch
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-15/bsnes-0.079-gcc46.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bsnes-0.079-gcc46.patch 22 Jun 2011 20:04:55 -0000 1.1
+++ bsnes-0.079-gcc46.patch 3 Jul 2011 16:01:38 -0000 1.2
@@ -10,42 +10,3 @@
case GameBoy::Input::Start: return data & 0x80;
case GameBoy::Input::Select: return data & 0x40;
case GameBoy::Input::B: return data & 0x20;
-diff -up bsnes_v079-source/bsnes/ui/input/input.cpp.gcc46 bsnes_v079-source/bsnes/ui/input/input.cpp
---- bsnes_v079-source/bsnes/ui/input/input.cpp.gcc46 2011-03-24 19:33:58.000000000 +0100
-+++ bsnes_v079-source/bsnes/ui/input/input.cpp 2011-06-21 00:02:22.971853731 +0200
-@@ -82,7 +82,7 @@ void InputMapper::Gamepad::create(const
- }
-
- int16_t InputMapper::Gamepad::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::JoypadID)id) {
- case SNES::Input::JoypadID::Up: return up.poll();
- case SNES::Input::JoypadID::Down: return down.poll() & !up.poll();
- case SNES::Input::JoypadID::Left: return left.poll();
-@@ -118,7 +118,7 @@ void InputMapper::Mouse::create(const ch
- }
-
- int16_t InputMapper::Mouse::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::MouseID)id) {
- case SNES::Input::MouseID::X: return x.poll();
- case SNES::Input::MouseID::Y: return y.poll();
- case SNES::Input::MouseID::Left: return left.poll();
-@@ -150,7 +150,7 @@ void InputMapper::SuperScope::create(con
- }
-
- int16_t InputMapper::SuperScope::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::SuperScopeID)id) {
- case SNES::Input::SuperScopeID::X: return x.poll();
- case SNES::Input::SuperScopeID::Y: return y.poll();
- case SNES::Input::SuperScopeID::Trigger: return trigger.poll();
-@@ -182,7 +182,7 @@ void InputMapper::Justifier::create(cons
- }
-
- int16_t InputMapper::Justifier::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::JustifierID)id) {
- case SNES::Input::JustifierID::X: return x.poll();
- case SNES::Input::JustifierID::Y: return y.poll();
- case SNES::Input::JustifierID::Trigger: return trigger.poll();
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-15/bsnes.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- bsnes.spec 22 Jun 2011 20:04:55 -0000 1.41
+++ bsnes.spec 3 Jul 2011 16:01:38 -0000 1.42
@@ -1,4 +1,4 @@
-%global vernumber 079
+%global vernumber 080
Name: bsnes
Version: 0.%{vernumber}
@@ -11,7 +11,7 @@
Source0: http://bsnes.googlecode.com/files/%{name}_v%{vernumber}-source.tar.bz2
Source2: README.bsnes
Patch0: bsnes-0.079-gcc46.patch
-Patch1: bsnes-0.079-systemwide.patch
+Patch1: bsnes-0.079-systemwide.patch
Patch2: bsnes-0.079-gtk.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -115,6 +115,10 @@
%changelog
+* Sun Jul 03 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.080-1
+- Updated to 0.080
+- Updated the gcc-4.6 patch
+
* Tue Jun 21 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.079-1
- Updated to 0.079
- Dropped subpackages, they are too small to be worth it
Index: sources
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-15/sources,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- sources 22 Jun 2011 20:04:55 -0000 1.30
+++ sources 3 Jul 2011 16:01:38 -0000 1.31
@@ -1 +1 @@
-22513f713e29824a85a0fe193298f9f2 bsnes_v079-source.tar.bz2
+a5697cc0a15cb22e628eea2c74396e88 bsnes_v080-source.tar.bz2
13 years, 4 months
rpms/bsnes/devel .cvsignore, 1.30, 1.31 bsnes-0.079-gcc46.patch, 1.1, 1.2 bsnes.spec, 1.42, 1.43 sources, 1.30, 1.31
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13727
Modified Files:
.cvsignore bsnes-0.079-gcc46.patch bsnes.spec sources
Log Message:
* Sun Jul 03 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.080-1
- Updated to 0.080
- Updated the gcc-4.6 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/bsnes/devel/.cvsignore,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- .cvsignore 20 Jun 2011 22:50:43 -0000 1.30
+++ .cvsignore 3 Jul 2011 16:01:18 -0000 1.31
@@ -1 +1 @@
-bsnes_v079-source.tar.bz2
+bsnes_v080-source.tar.bz2
bsnes-0.079-gcc46.patch:
interface.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: bsnes-0.079-gcc46.patch
===================================================================
RCS file: /cvs/free/rpms/bsnes/devel/bsnes-0.079-gcc46.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bsnes-0.079-gcc46.patch 20 Jun 2011 22:50:44 -0000 1.1
+++ bsnes-0.079-gcc46.patch 3 Jul 2011 16:01:18 -0000 1.2
@@ -10,42 +10,3 @@
case GameBoy::Input::Start: return data & 0x80;
case GameBoy::Input::Select: return data & 0x40;
case GameBoy::Input::B: return data & 0x20;
-diff -up bsnes_v079-source/bsnes/ui/input/input.cpp.gcc46 bsnes_v079-source/bsnes/ui/input/input.cpp
---- bsnes_v079-source/bsnes/ui/input/input.cpp.gcc46 2011-03-24 19:33:58.000000000 +0100
-+++ bsnes_v079-source/bsnes/ui/input/input.cpp 2011-06-21 00:02:22.971853731 +0200
-@@ -82,7 +82,7 @@ void InputMapper::Gamepad::create(const
- }
-
- int16_t InputMapper::Gamepad::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::JoypadID)id) {
- case SNES::Input::JoypadID::Up: return up.poll();
- case SNES::Input::JoypadID::Down: return down.poll() & !up.poll();
- case SNES::Input::JoypadID::Left: return left.poll();
-@@ -118,7 +118,7 @@ void InputMapper::Mouse::create(const ch
- }
-
- int16_t InputMapper::Mouse::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::MouseID)id) {
- case SNES::Input::MouseID::X: return x.poll();
- case SNES::Input::MouseID::Y: return y.poll();
- case SNES::Input::MouseID::Left: return left.poll();
-@@ -150,7 +150,7 @@ void InputMapper::SuperScope::create(con
- }
-
- int16_t InputMapper::SuperScope::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::SuperScopeID)id) {
- case SNES::Input::SuperScopeID::X: return x.poll();
- case SNES::Input::SuperScopeID::Y: return y.poll();
- case SNES::Input::SuperScopeID::Trigger: return trigger.poll();
-@@ -182,7 +182,7 @@ void InputMapper::Justifier::create(cons
- }
-
- int16_t InputMapper::Justifier::poll(unsigned id) {
-- switch(id) {
-+ switch((SNES::Input::JustifierID)id) {
- case SNES::Input::JustifierID::X: return x.poll();
- case SNES::Input::JustifierID::Y: return y.poll();
- case SNES::Input::JustifierID::Trigger: return trigger.poll();
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/devel/bsnes.spec,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- bsnes.spec 22 Jun 2011 20:01:55 -0000 1.42
+++ bsnes.spec 3 Jul 2011 16:01:18 -0000 1.43
@@ -1,4 +1,4 @@
-%global vernumber 079
+%global vernumber 080
Name: bsnes
Version: 0.%{vernumber}
@@ -11,7 +11,7 @@
Source0: http://bsnes.googlecode.com/files/%{name}_v%{vernumber}-source.tar.bz2
Source2: README.bsnes
Patch0: bsnes-0.079-gcc46.patch
-Patch1: bsnes-0.079-systemwide.patch
+Patch1: bsnes-0.079-systemwide.patch
Patch2: bsnes-0.079-gtk.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -115,6 +115,10 @@
%changelog
+* Sun Jul 03 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.080-1
+- Updated to 0.080
+- Updated the gcc-4.6 patch
+
* Tue Jun 21 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.079-1
- Updated to 0.079
- Dropped subpackages, they are too small to be worth it
Index: sources
===================================================================
RCS file: /cvs/free/rpms/bsnes/devel/sources,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- sources 20 Jun 2011 22:50:44 -0000 1.30
+++ sources 3 Jul 2011 16:01:18 -0000 1.31
@@ -1 +1 @@
-22513f713e29824a85a0fe193298f9f2 bsnes_v079-source.tar.bz2
+a5697cc0a15cb22e628eea2c74396e88 bsnes_v080-source.tar.bz2
13 years, 4 months
rpms/xorg-x11-drv-nvidia/devel .cvsignore, 1.32, 1.33 sources, 1.32, 1.33 xorg-x11-drv-nvidia.spec, 1.62, 1.63
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5224/devel
Modified Files:
.cvsignore sources xorg-x11-drv-nvidia.spec
Log Message:
Update to 280.04 (beta)
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/.cvsignore,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- .cvsignore 14 Jun 2011 20:36:12 -0000 1.32
+++ .cvsignore 1 Jul 2011 21:47:42 -0000 1.33
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-275.09.07.run
-NVIDIA-Linux-x86_64-275.09.07.run
+NVIDIA-Linux-x86-280.04.run
+NVIDIA-Linux-x86_64-280.04.run
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/sources,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- sources 14 Jun 2011 20:36:12 -0000 1.32
+++ sources 1 Jul 2011 21:47:42 -0000 1.33
@@ -1,2 +1,2 @@
-d779057af3a2f96a05ddda201606618b NVIDIA-Linux-x86-275.09.07.run
-29f28cd59e2647cdb517eca2381d3dbd NVIDIA-Linux-x86_64-275.09.07.run
+15f030a5af37073eb7cf58ae6e08e7a9 NVIDIA-Linux-x86-280.04.run
+b27e2f82877fcbd8c84a2c6f6141266f NVIDIA-Linux-x86_64-280.04.run
Index: xorg-x11-drv-nvidia.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/xorg-x11-drv-nvidia.spec,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- xorg-x11-drv-nvidia.spec 14 Jun 2011 20:36:12 -0000 1.62
+++ xorg-x11-drv-nvidia.spec 1 Jul 2011 21:47:42 -0000 1.63
@@ -6,7 +6,7 @@
Name: xorg-x11-drv-nvidia
Epoch: 1
-Version: 275.09.07
+Version: 280.04
Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
@@ -341,6 +341,9 @@
%changelog
+* Fri Jul 01 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.04-1
+- Update to 280.04 (beta)
+
* Tue Jun 14 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:275.09.07-1
- Update to 275.09.07
13 years, 4 months
rpms/nvidia-kmod/devel .cvsignore, 1.32, 1.33 nvidia-kmod.spec, 1.78, 1.79 sources, 1.32, 1.33
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5116/devel
Modified Files:
.cvsignore nvidia-kmod.spec sources
Log Message:
Update to 280.04 (beta)
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/.cvsignore,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- .cvsignore 14 Jun 2011 20:44:29 -0000 1.32
+++ .cvsignore 1 Jul 2011 21:47:09 -0000 1.33
@@ -1 +1 @@
-nvidia-kmod-data-275.09.07.tar.bz2
+nvidia-kmod-data-280.04.tar.bz2
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- nvidia-kmod.spec 14 Jun 2011 20:57:07 -0000 1.78
+++ nvidia-kmod.spec 1 Jul 2011 21:47:09 -0000 1.79
@@ -3,11 +3,11 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-#define buildforkernels akmod
+%define buildforkernels akmod
Name: nvidia-kmod
Epoch: 1
-Version: 275.09.07
+Version: 280.04
# Taken over by kmodtool
Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
@@ -86,6 +86,9 @@
%changelog
+* Fri Jul 01 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:280.04-1
+- Update to 280.04 (beta)
+
* Tue Jun 14 2011 Nicolas Chauvet <kwizart(a)gmail.com> - 1:275.09.07-1
- Update to 275.09.07
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/sources,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- sources 14 Jun 2011 20:44:30 -0000 1.32
+++ sources 1 Jul 2011 21:47:10 -0000 1.33
@@ -1 +1 @@
-0a75d7a4e929c9140e3808ac7577c676 nvidia-kmod-data-275.09.07.tar.bz2
+8e245de16c8945d9f48ef48833246ce3 nvidia-kmod-data-280.04.tar.bz2
13 years, 4 months