rpms/e-uae/F-10 e-uae-0.8.29-gtk_64bit.patch, NONE, 1.1 e-uae.spec, 1.2, 1.3
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/e-uae/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27115
Modified Files:
e-uae.spec
Added Files:
e-uae-0.8.29-gtk_64bit.patch
Log Message:
* Sun Oct 18 2009 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.13.wip4
- fixed a 64bit gtk+ bug causing a segfault (BZ #850)
e-uae-0.8.29-gtk_64bit.patch:
--- NEW FILE e-uae-0.8.29-gtk_64bit.patch ---
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c 2006-06-15 01:08:02.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.c 2009-10-17 19:17:59.000000000 -0400
@@ -30,9 +30,9 @@
static void on_sprite_collisions_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
static void on_immediate_blits_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
-guint chipsetspeedpanel_get_type (void)
+GtkType chipsetspeedpanel_get_type (void)
{
- static guint chipsetspeedpanel_type = 0;
+ static GtkType chipsetspeedpanel_type = 0;
if (!chipsetspeedpanel_type) {
static const GtkTypeInfo chipsetspeedpanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h 2005-09-03 00:14:02.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.h 2009-10-17 19:17:45.000000000 -0400
@@ -41,7 +41,7 @@
void (* chipsetspeedpanel) (ChipsetSpeedPanel *chipsetspeedpanel );
};
-guint chipsetspeedpanel_get_type (void);
+GtkType chipsetspeedpanel_get_type (void);
GtkWidget* chipsetspeedpanel_new (void);
void chipsetspeedpanel_set_framerate (ChipsetSpeedPanel *panel, guint framerate);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chipsetspeedpanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.c 2009-10-17 19:18:18.000000000 -0400
@@ -29,9 +29,9 @@
static void on_frequency_changed (GtkWidget *w, ChipsetTypePanel *panel);
-guint chipsettypepanel_get_type (void)
+GtkType chipsettypepanel_get_type (void)
{
- static guint chipsettypepanel_type = 0;
+ static GtkType chipsettypepanel_type = 0;
if (!chipsettypepanel_type) {
static const GtkTypeInfo chipsettypepanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h 2004-10-17 02:50:34.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.h 2009-10-17 19:18:36.000000000 -0400
@@ -34,7 +34,7 @@
void (* chipsettypepanel) (ChipsetTypePanel *chipsettypepanel );
};
-guint chipsettypepanel_get_type (void);
+GtkType chipsettypepanel_get_type (void);
GtkWidget* chipsettypepanel_new (void);
void chipsettypepanel_set_chipset_mask (ChipsetTypePanel *panel, guint chipset_mask);
void chipsettypepanel_set_ntscmode (ChipsetTypePanel *panel, guint ntscmode);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chipsettypepanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.c 2009-10-17 19:20:52.000000000 -0400
@@ -20,9 +20,9 @@
static guint chooser_get_choice_num (ChooserWidget *chooser);
static void on_choice_changed (GtkWidget *w, ChooserWidget *chooser);
-guint chooserwidget_get_type ()
+GtkType chooserwidget_get_type ()
{
- static guint chooserwidget_type = 0;
+ static GtkType chooserwidget_type = 0;
if (!chooserwidget_type) {
static const GtkTypeInfo chooserwidget_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h 2004-05-18 20:22:03.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.h 2009-10-17 19:21:01.000000000 -0400
@@ -35,7 +35,7 @@
void (* chooserwidget) (ChooserWidget *chooserwidget);
};
-guint chooserwidget_get_type (void);
+GtkType chooserwidget_get_type (void);
GtkWidget* chooserwidget_new (void);
void chooserwidget_clear (ChooserWidget *chooser);
void chooserwidget_set_choice (ChooserWidget *chooser, guint choice_num);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chooserwidget.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c 2007-03-12 16:21:17.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.c 2009-10-17 19:16:59.000000000 -0400
@@ -24,9 +24,9 @@
static void on_idleenabled_toggled (GtkWidget *w, CpuSpeedPanel *cspanel);
static void on_idlerate_changed (GtkWidget *w, CpuSpeedPanel *cspanel);
-guint cpuspeedpanel_get_type ()
+GtkType cpuspeedpanel_get_type ()
{
- static guint cpuspeedpanel_type = 0;
+ static GtkType cpuspeedpanel_type = 0;
if (!cpuspeedpanel_type) {
static const GtkTypeInfo cpuspeedpanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h 2007-03-12 16:21:17.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.h 2009-10-17 19:17:14.000000000 -0400
@@ -45,7 +45,7 @@
void (* cpuspeedpanel) (CpuSpeedPanel *cpuspeedpanel );
};
-guint cpuspeedpanel_get_type (void);
+GtkType cpuspeedpanel_get_type (void);
GtkWidget* cpuspeedpanel_new (void);
void cpuspeedpanel_set_cpuspeed (CpuSpeedPanel *cspanel, gint cpuspeed);
void cpuspeedpanel_set_cpulevel (CpuSpeedPanel *cspanel, guint cpulevel);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: cpuspeedpanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.c 2009-10-17 19:16:27.000000000 -0400
@@ -24,9 +24,9 @@
static void on_fpuenabled_toggled (GtkWidget *w, CpuTypePanel *ctpanel);
static void on_accuracy_changed (GtkWidget *w, CpuTypePanel *ctpanel);
-guint cputypepanel_get_type ()
+GtkType cputypepanel_get_type ()
{
- static guint cputypepanel_type = 0;
+ static GtkType cputypepanel_type = 0;
if (!cputypepanel_type) {
static const GtkTypeInfo cputypepanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h 2004-05-18 20:22:03.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.h 2009-10-17 19:16:10.000000000 -0400
@@ -38,7 +38,7 @@
void (* cputypepanel) (CpuTypePanel *cputypepanel );
};
-guint cputypepanel_get_type (void);
+GtkType cputypepanel_get_type (void);
GtkWidget* cputypepanel_new (void);
void cputypepanel_set_cpulevel (CpuTypePanel *ctpanel, guint cpulevel);
void cputypepanel_set_addr24bit (CpuTypePanel *ctpanel, guint addr24bit);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: cputypepanel.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: .deps
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.c 2009-10-17 19:14:37.000000000 -0400
@@ -22,9 +22,9 @@
static void on_eject (GtkWidget *w, FloppyFileEntry *ffe);
static void on_insert (GtkWidget *w, FloppyFileEntry *ffe);
-guint floppyfileentry_get_type ()
+GtkType floppyfileentry_get_type ()
{
- static guint floppyfileentry_type = 0;
+ static GtkType floppyfileentry_type = 0;
if (!floppyfileentry_type) {
static const GtkTypeInfo floppyfileentry_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h 2004-11-17 13:26:41.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.h 2009-10-17 19:14:20.000000000 -0400
@@ -38,7 +38,7 @@
void (* floppyfileentry) (FloppyFileEntry *floppyfileentry);
};
-guint floppyfileentry_get_type (void);
+GtkType floppyfileentry_get_type (void);
GtkWidget* floppyfileentry_new (void);
void floppyfileentry_set_currentdir (FloppyFileEntry *ffentry, const gchar *filename);
void floppyfileentry_set_filename (FloppyFileEntry *ffentry, const gchar *filename);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: floppyfileentry.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: gtkui.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/led.c e-uae-0.8.29-WIP4_new/src/gui-gtk/led.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/led.c 2006-07-18 01:23:18.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/led.c 2009-10-17 21:34:02.000000000 -0400
@@ -29,9 +29,9 @@
static void led_size_allocate (GtkWidget *widget, GtkAllocation *allocation);
-guint led_get_type ()
+GtkType led_get_type ()
{
- static guint led_type = 0;
+ static GtkType led_type = 0;
if (!led_type) {
static const GtkTypeInfo led_info = {
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.c~
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/led.h e-uae-0.8.29-WIP4_new/src/gui-gtk/led.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/led.h 2006-07-18 01:23:18.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/led.h 2009-10-17 21:32:56.000000000 -0400
@@ -38,7 +38,7 @@
GtkWidgetClass parent_class;
};
-guint led_get_type (void);
+GtkType led_get_type (void);
GtkWidget* led_new (void);
void led_set_off (Led *theled);
void led_set_color (Led *theled, GdkColor col);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.h~
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: libguidep.a
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: Makefile
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: util.o
Index: e-uae.spec
===================================================================
RCS file: /cvs/nonfree/rpms/e-uae/F-10/e-uae.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- e-uae.spec 19 Oct 2008 19:04:59 -0000 1.2
+++ e-uae.spec 18 Oct 2009 14:48:40 -0000 1.3
@@ -1,6 +1,6 @@
Name: e-uae
Version: 0.8.29
-Release: 0.11.wip4%{?dist}
+Release: 0.13.wip4%{?dist}
Summary: A powerful Amiga Emulator, based on UAE
Group: Applications/Emulators
License: GPLv2+
@@ -11,6 +11,8 @@
Patch1: %{name}-0.8.29-hardfilefixes.patch
# patch from upstream not to require an executable stack
Patch2: %{name}-0.8.29-execstack.patch
+# patch from upstream to fix a 64bit gtk+ bug
+Patch3: %{name}-0.8.29-gtk_64bit.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: gtk2-devel => 2.0.0
@@ -39,6 +41,7 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
# Encoding fixes
iconv -f iso8859-1 ChangeLog -t utf8 > ChangeLog.conv && /bin/mv -f ChangeLog.conv ChangeLog
@@ -149,6 +152,12 @@
%changelog
+* Sun Oct 18 2009 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.13.wip4
+- fixed a 64bit gtk+ bug causing a segfault (BZ #850)
+
+* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.29-0.12.wip4
+- rebuild for new F11 features
+
* Sun Oct 19 2008 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.11.wip4
- fix libcapsimage support (available only for i686, x86_64 and ppc)
15 years, 1 month
rpms/e-uae/F-11 e-uae-0.8.29-gtk_64bit.patch, NONE, 1.1 e-uae.spec, 1.3, 1.4
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/e-uae/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26978
Modified Files:
e-uae.spec
Added Files:
e-uae-0.8.29-gtk_64bit.patch
Log Message:
* Sun Oct 18 2009 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.13.wip4
- fixed a 64bit gtk+ bug causing a segfault (BZ #850)
e-uae-0.8.29-gtk_64bit.patch:
--- NEW FILE e-uae-0.8.29-gtk_64bit.patch ---
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c 2006-06-15 01:08:02.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.c 2009-10-17 19:17:59.000000000 -0400
@@ -30,9 +30,9 @@
static void on_sprite_collisions_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
static void on_immediate_blits_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
-guint chipsetspeedpanel_get_type (void)
+GtkType chipsetspeedpanel_get_type (void)
{
- static guint chipsetspeedpanel_type = 0;
+ static GtkType chipsetspeedpanel_type = 0;
if (!chipsetspeedpanel_type) {
static const GtkTypeInfo chipsetspeedpanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h 2005-09-03 00:14:02.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.h 2009-10-17 19:17:45.000000000 -0400
@@ -41,7 +41,7 @@
void (* chipsetspeedpanel) (ChipsetSpeedPanel *chipsetspeedpanel );
};
-guint chipsetspeedpanel_get_type (void);
+GtkType chipsetspeedpanel_get_type (void);
GtkWidget* chipsetspeedpanel_new (void);
void chipsetspeedpanel_set_framerate (ChipsetSpeedPanel *panel, guint framerate);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chipsetspeedpanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.c 2009-10-17 19:18:18.000000000 -0400
@@ -29,9 +29,9 @@
static void on_frequency_changed (GtkWidget *w, ChipsetTypePanel *panel);
-guint chipsettypepanel_get_type (void)
+GtkType chipsettypepanel_get_type (void)
{
- static guint chipsettypepanel_type = 0;
+ static GtkType chipsettypepanel_type = 0;
if (!chipsettypepanel_type) {
static const GtkTypeInfo chipsettypepanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h 2004-10-17 02:50:34.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.h 2009-10-17 19:18:36.000000000 -0400
@@ -34,7 +34,7 @@
void (* chipsettypepanel) (ChipsetTypePanel *chipsettypepanel );
};
-guint chipsettypepanel_get_type (void);
+GtkType chipsettypepanel_get_type (void);
GtkWidget* chipsettypepanel_new (void);
void chipsettypepanel_set_chipset_mask (ChipsetTypePanel *panel, guint chipset_mask);
void chipsettypepanel_set_ntscmode (ChipsetTypePanel *panel, guint ntscmode);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chipsettypepanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.c 2009-10-17 19:20:52.000000000 -0400
@@ -20,9 +20,9 @@
static guint chooser_get_choice_num (ChooserWidget *chooser);
static void on_choice_changed (GtkWidget *w, ChooserWidget *chooser);
-guint chooserwidget_get_type ()
+GtkType chooserwidget_get_type ()
{
- static guint chooserwidget_type = 0;
+ static GtkType chooserwidget_type = 0;
if (!chooserwidget_type) {
static const GtkTypeInfo chooserwidget_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h 2004-05-18 20:22:03.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.h 2009-10-17 19:21:01.000000000 -0400
@@ -35,7 +35,7 @@
void (* chooserwidget) (ChooserWidget *chooserwidget);
};
-guint chooserwidget_get_type (void);
+GtkType chooserwidget_get_type (void);
GtkWidget* chooserwidget_new (void);
void chooserwidget_clear (ChooserWidget *chooser);
void chooserwidget_set_choice (ChooserWidget *chooser, guint choice_num);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chooserwidget.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c 2007-03-12 16:21:17.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.c 2009-10-17 19:16:59.000000000 -0400
@@ -24,9 +24,9 @@
static void on_idleenabled_toggled (GtkWidget *w, CpuSpeedPanel *cspanel);
static void on_idlerate_changed (GtkWidget *w, CpuSpeedPanel *cspanel);
-guint cpuspeedpanel_get_type ()
+GtkType cpuspeedpanel_get_type ()
{
- static guint cpuspeedpanel_type = 0;
+ static GtkType cpuspeedpanel_type = 0;
if (!cpuspeedpanel_type) {
static const GtkTypeInfo cpuspeedpanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h 2007-03-12 16:21:17.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.h 2009-10-17 19:17:14.000000000 -0400
@@ -45,7 +45,7 @@
void (* cpuspeedpanel) (CpuSpeedPanel *cpuspeedpanel );
};
-guint cpuspeedpanel_get_type (void);
+GtkType cpuspeedpanel_get_type (void);
GtkWidget* cpuspeedpanel_new (void);
void cpuspeedpanel_set_cpuspeed (CpuSpeedPanel *cspanel, gint cpuspeed);
void cpuspeedpanel_set_cpulevel (CpuSpeedPanel *cspanel, guint cpulevel);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: cpuspeedpanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.c 2009-10-17 19:16:27.000000000 -0400
@@ -24,9 +24,9 @@
static void on_fpuenabled_toggled (GtkWidget *w, CpuTypePanel *ctpanel);
static void on_accuracy_changed (GtkWidget *w, CpuTypePanel *ctpanel);
-guint cputypepanel_get_type ()
+GtkType cputypepanel_get_type ()
{
- static guint cputypepanel_type = 0;
+ static GtkType cputypepanel_type = 0;
if (!cputypepanel_type) {
static const GtkTypeInfo cputypepanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h 2004-05-18 20:22:03.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.h 2009-10-17 19:16:10.000000000 -0400
@@ -38,7 +38,7 @@
void (* cputypepanel) (CpuTypePanel *cputypepanel );
};
-guint cputypepanel_get_type (void);
+GtkType cputypepanel_get_type (void);
GtkWidget* cputypepanel_new (void);
void cputypepanel_set_cpulevel (CpuTypePanel *ctpanel, guint cpulevel);
void cputypepanel_set_addr24bit (CpuTypePanel *ctpanel, guint addr24bit);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: cputypepanel.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: .deps
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.c 2009-10-17 19:14:37.000000000 -0400
@@ -22,9 +22,9 @@
static void on_eject (GtkWidget *w, FloppyFileEntry *ffe);
static void on_insert (GtkWidget *w, FloppyFileEntry *ffe);
-guint floppyfileentry_get_type ()
+GtkType floppyfileentry_get_type ()
{
- static guint floppyfileentry_type = 0;
+ static GtkType floppyfileentry_type = 0;
if (!floppyfileentry_type) {
static const GtkTypeInfo floppyfileentry_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h 2004-11-17 13:26:41.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.h 2009-10-17 19:14:20.000000000 -0400
@@ -38,7 +38,7 @@
void (* floppyfileentry) (FloppyFileEntry *floppyfileentry);
};
-guint floppyfileentry_get_type (void);
+GtkType floppyfileentry_get_type (void);
GtkWidget* floppyfileentry_new (void);
void floppyfileentry_set_currentdir (FloppyFileEntry *ffentry, const gchar *filename);
void floppyfileentry_set_filename (FloppyFileEntry *ffentry, const gchar *filename);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: floppyfileentry.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: gtkui.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/led.c e-uae-0.8.29-WIP4_new/src/gui-gtk/led.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/led.c 2006-07-18 01:23:18.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/led.c 2009-10-17 21:34:02.000000000 -0400
@@ -29,9 +29,9 @@
static void led_size_allocate (GtkWidget *widget, GtkAllocation *allocation);
-guint led_get_type ()
+GtkType led_get_type ()
{
- static guint led_type = 0;
+ static GtkType led_type = 0;
if (!led_type) {
static const GtkTypeInfo led_info = {
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.c~
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/led.h e-uae-0.8.29-WIP4_new/src/gui-gtk/led.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/led.h 2006-07-18 01:23:18.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/led.h 2009-10-17 21:32:56.000000000 -0400
@@ -38,7 +38,7 @@
GtkWidgetClass parent_class;
};
-guint led_get_type (void);
+GtkType led_get_type (void);
GtkWidget* led_new (void);
void led_set_off (Led *theled);
void led_set_color (Led *theled, GdkColor col);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.h~
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: libguidep.a
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: Makefile
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: util.o
Index: e-uae.spec
===================================================================
RCS file: /cvs/nonfree/rpms/e-uae/F-11/e-uae.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- e-uae.spec 29 Mar 2009 14:51:19 -0000 1.3
+++ e-uae.spec 18 Oct 2009 14:47:56 -0000 1.4
@@ -1,6 +1,6 @@
Name: e-uae
Version: 0.8.29
-Release: 0.12.wip4%{?dist}
+Release: 0.13.wip4%{?dist}
Summary: A powerful Amiga Emulator, based on UAE
Group: Applications/Emulators
License: GPLv2+
@@ -11,6 +11,8 @@
Patch1: %{name}-0.8.29-hardfilefixes.patch
# patch from upstream not to require an executable stack
Patch2: %{name}-0.8.29-execstack.patch
+# patch from upstream to fix a 64bit gtk+ bug
+Patch3: %{name}-0.8.29-gtk_64bit.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: gtk2-devel => 2.0.0
@@ -39,6 +41,7 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
# Encoding fixes
iconv -f iso8859-1 ChangeLog -t utf8 > ChangeLog.conv && /bin/mv -f ChangeLog.conv ChangeLog
@@ -149,6 +152,9 @@
%changelog
+* Sun Oct 18 2009 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.13.wip4
+- fixed a 64bit gtk+ bug causing a segfault (BZ #850)
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.29-0.12.wip4
- rebuild for new F11 features
15 years, 1 month
rpms/e-uae/devel e-uae-0.8.29-gtk_64bit.patch, NONE, 1.1 e-uae.spec, 1.3, 1.4
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/e-uae/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26834
Modified Files:
e-uae.spec
Added Files:
e-uae-0.8.29-gtk_64bit.patch
Log Message:
* Sun Oct 18 2009 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.13.wip4
- fixed a 64bit gtk+ bug causing a segfault (BZ #850)
e-uae-0.8.29-gtk_64bit.patch:
--- NEW FILE e-uae-0.8.29-gtk_64bit.patch ---
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.c 2006-06-15 01:08:02.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.c 2009-10-17 19:17:59.000000000 -0400
@@ -30,9 +30,9 @@
static void on_sprite_collisions_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
static void on_immediate_blits_changed (GtkWidget *w, ChipsetSpeedPanel *panel);
-guint chipsetspeedpanel_get_type (void)
+GtkType chipsetspeedpanel_get_type (void)
{
- static guint chipsetspeedpanel_type = 0;
+ static GtkType chipsetspeedpanel_type = 0;
if (!chipsetspeedpanel_type) {
static const GtkTypeInfo chipsetspeedpanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsetspeedpanel.h 2005-09-03 00:14:02.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsetspeedpanel.h 2009-10-17 19:17:45.000000000 -0400
@@ -41,7 +41,7 @@
void (* chipsetspeedpanel) (ChipsetSpeedPanel *chipsetspeedpanel );
};
-guint chipsetspeedpanel_get_type (void);
+GtkType chipsetspeedpanel_get_type (void);
GtkWidget* chipsetspeedpanel_new (void);
void chipsetspeedpanel_set_framerate (ChipsetSpeedPanel *panel, guint framerate);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chipsetspeedpanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.c 2009-10-17 19:18:18.000000000 -0400
@@ -29,9 +29,9 @@
static void on_frequency_changed (GtkWidget *w, ChipsetTypePanel *panel);
-guint chipsettypepanel_get_type (void)
+GtkType chipsettypepanel_get_type (void)
{
- static guint chipsettypepanel_type = 0;
+ static GtkType chipsettypepanel_type = 0;
if (!chipsettypepanel_type) {
static const GtkTypeInfo chipsettypepanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chipsettypepanel.h 2004-10-17 02:50:34.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chipsettypepanel.h 2009-10-17 19:18:36.000000000 -0400
@@ -34,7 +34,7 @@
void (* chipsettypepanel) (ChipsetTypePanel *chipsettypepanel );
};
-guint chipsettypepanel_get_type (void);
+GtkType chipsettypepanel_get_type (void);
GtkWidget* chipsettypepanel_new (void);
void chipsettypepanel_set_chipset_mask (ChipsetTypePanel *panel, guint chipset_mask);
void chipsettypepanel_set_ntscmode (ChipsetTypePanel *panel, guint ntscmode);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chipsettypepanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.c 2009-10-17 19:20:52.000000000 -0400
@@ -20,9 +20,9 @@
static guint chooser_get_choice_num (ChooserWidget *chooser);
static void on_choice_changed (GtkWidget *w, ChooserWidget *chooser);
-guint chooserwidget_get_type ()
+GtkType chooserwidget_get_type ()
{
- static guint chooserwidget_type = 0;
+ static GtkType chooserwidget_type = 0;
if (!chooserwidget_type) {
static const GtkTypeInfo chooserwidget_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/chooserwidget.h 2004-05-18 20:22:03.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/chooserwidget.h 2009-10-17 19:21:01.000000000 -0400
@@ -35,7 +35,7 @@
void (* chooserwidget) (ChooserWidget *chooserwidget);
};
-guint chooserwidget_get_type (void);
+GtkType chooserwidget_get_type (void);
GtkWidget* chooserwidget_new (void);
void chooserwidget_clear (ChooserWidget *chooser);
void chooserwidget_set_choice (ChooserWidget *chooser, guint choice_num);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: chooserwidget.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.c 2007-03-12 16:21:17.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.c 2009-10-17 19:16:59.000000000 -0400
@@ -24,9 +24,9 @@
static void on_idleenabled_toggled (GtkWidget *w, CpuSpeedPanel *cspanel);
static void on_idlerate_changed (GtkWidget *w, CpuSpeedPanel *cspanel);
-guint cpuspeedpanel_get_type ()
+GtkType cpuspeedpanel_get_type ()
{
- static guint cpuspeedpanel_type = 0;
+ static GtkType cpuspeedpanel_type = 0;
if (!cpuspeedpanel_type) {
static const GtkTypeInfo cpuspeedpanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/cpuspeedpanel.h 2007-03-12 16:21:17.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cpuspeedpanel.h 2009-10-17 19:17:14.000000000 -0400
@@ -45,7 +45,7 @@
void (* cpuspeedpanel) (CpuSpeedPanel *cpuspeedpanel );
};
-guint cpuspeedpanel_get_type (void);
+GtkType cpuspeedpanel_get_type (void);
GtkWidget* cpuspeedpanel_new (void);
void cpuspeedpanel_set_cpuspeed (CpuSpeedPanel *cspanel, gint cpuspeed);
void cpuspeedpanel_set_cpulevel (CpuSpeedPanel *cspanel, guint cpulevel);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: cpuspeedpanel.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.c 2009-10-17 19:16:27.000000000 -0400
@@ -24,9 +24,9 @@
static void on_fpuenabled_toggled (GtkWidget *w, CpuTypePanel *ctpanel);
static void on_accuracy_changed (GtkWidget *w, CpuTypePanel *ctpanel);
-guint cputypepanel_get_type ()
+GtkType cputypepanel_get_type ()
{
- static guint cputypepanel_type = 0;
+ static GtkType cputypepanel_type = 0;
if (!cputypepanel_type) {
static const GtkTypeInfo cputypepanel_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/cputypepanel.h 2004-05-18 20:22:03.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/cputypepanel.h 2009-10-17 19:16:10.000000000 -0400
@@ -38,7 +38,7 @@
void (* cputypepanel) (CpuTypePanel *cputypepanel );
};
-guint cputypepanel_get_type (void);
+GtkType cputypepanel_get_type (void);
GtkWidget* cputypepanel_new (void);
void cputypepanel_set_cpulevel (CpuTypePanel *ctpanel, guint cpulevel);
void cputypepanel_set_addr24bit (CpuTypePanel *ctpanel, guint addr24bit);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: cputypepanel.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: .deps
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.c 2006-06-15 01:08:03.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.c 2009-10-17 19:14:37.000000000 -0400
@@ -22,9 +22,9 @@
static void on_eject (GtkWidget *w, FloppyFileEntry *ffe);
static void on_insert (GtkWidget *w, FloppyFileEntry *ffe);
-guint floppyfileentry_get_type ()
+GtkType floppyfileentry_get_type ()
{
- static guint floppyfileentry_type = 0;
+ static GtkType floppyfileentry_type = 0;
if (!floppyfileentry_type) {
static const GtkTypeInfo floppyfileentry_info = {
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/floppyfileentry.h 2004-11-17 13:26:41.000000000 -0500
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/floppyfileentry.h 2009-10-17 19:14:20.000000000 -0400
@@ -38,7 +38,7 @@
void (* floppyfileentry) (FloppyFileEntry *floppyfileentry);
};
-guint floppyfileentry_get_type (void);
+GtkType floppyfileentry_get_type (void);
GtkWidget* floppyfileentry_new (void);
void floppyfileentry_set_currentdir (FloppyFileEntry *ffentry, const gchar *filename);
void floppyfileentry_set_filename (FloppyFileEntry *ffentry, const gchar *filename);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: floppyfileentry.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: gtkui.o
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/led.c e-uae-0.8.29-WIP4_new/src/gui-gtk/led.c
--- e-uae-0.8.29-WIP4/src/gui-gtk/led.c 2006-07-18 01:23:18.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/led.c 2009-10-17 21:34:02.000000000 -0400
@@ -29,9 +29,9 @@
static void led_size_allocate (GtkWidget *widget, GtkAllocation *allocation);
-guint led_get_type ()
+GtkType led_get_type ()
{
- static guint led_type = 0;
+ static GtkType led_type = 0;
if (!led_type) {
static const GtkTypeInfo led_info = {
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.c~
diff -ur e-uae-0.8.29-WIP4/src/gui-gtk/led.h e-uae-0.8.29-WIP4_new/src/gui-gtk/led.h
--- e-uae-0.8.29-WIP4/src/gui-gtk/led.h 2006-07-18 01:23:18.000000000 -0400
+++ e-uae-0.8.29-WIP4_new/src/gui-gtk/led.h 2009-10-17 21:32:56.000000000 -0400
@@ -38,7 +38,7 @@
GtkWidgetClass parent_class;
};
-guint led_get_type (void);
+GtkType led_get_type (void);
GtkWidget* led_new (void);
void led_set_off (Led *theled);
void led_set_color (Led *theled, GdkColor col);
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.h~
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: led.o
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: libguidep.a
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: Makefile
Only in e-uae-0.8.29-WIP4_new/src/gui-gtk/: util.o
Index: e-uae.spec
===================================================================
RCS file: /cvs/nonfree/rpms/e-uae/devel/e-uae.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- e-uae.spec 29 Mar 2009 14:51:19 -0000 1.3
+++ e-uae.spec 18 Oct 2009 14:47:12 -0000 1.4
@@ -1,6 +1,6 @@
Name: e-uae
Version: 0.8.29
-Release: 0.12.wip4%{?dist}
+Release: 0.13.wip4%{?dist}
Summary: A powerful Amiga Emulator, based on UAE
Group: Applications/Emulators
License: GPLv2+
@@ -11,6 +11,8 @@
Patch1: %{name}-0.8.29-hardfilefixes.patch
# patch from upstream not to require an executable stack
Patch2: %{name}-0.8.29-execstack.patch
+# patch from upstream to fix a 64bit gtk+ bug
+Patch3: %{name}-0.8.29-gtk_64bit.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: desktop-file-utils
BuildRequires: gtk2-devel => 2.0.0
@@ -39,6 +41,7 @@
%patch0 -p1
%patch1 -p1
%patch2 -p1
+%patch3 -p1
# Encoding fixes
iconv -f iso8859-1 ChangeLog -t utf8 > ChangeLog.conv && /bin/mv -f ChangeLog.conv ChangeLog
@@ -149,6 +152,9 @@
%changelog
+* Sun Oct 18 2009 Andrea Musuruane <musuruan(a)gmail.com> 0.8.29-0.13.wip4
+- fixed a 64bit gtk+ bug causing a segfault (BZ #850)
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.29-0.12.wip4
- rebuild for new F11 features
15 years, 1 month
rpms/mixxx/devel sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 mixxx.spec, 1.3, 1.4
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mixxx/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv13136
Modified Files:
sources .cvsignore mixxx.spec
Log Message:
Update to 1.7.0
Index: sources
===================================================================
RCS file: /cvs/free/rpms/mixxx/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 6 Oct 2008 13:36:20 -0000 1.2
+++ sources 16 Oct 2009 23:11:29 -0000 1.3
@@ -1 +1 @@
-1a68bdd02cdb0da729fee5778b34658a mixxx-1.6.1-src.tar.gz
+811c068af1a049402052890e246347f7 mixxx-1.7.0-src.tar.gz
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/mixxx/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 6 Oct 2008 13:36:20 -0000 1.2
+++ .cvsignore 16 Oct 2009 23:11:29 -0000 1.3
@@ -1 +1 @@
-mixxx-1.6.1-src.tar.gz
+mixxx-1.7.0-src.tar.gz
Index: mixxx.spec
===================================================================
RCS file: /cvs/free/rpms/mixxx/devel/mixxx.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mixxx.spec 16 Oct 2009 22:50:17 -0000 1.3
+++ mixxx.spec 16 Oct 2009 23:11:29 -0000 1.4
@@ -21,13 +21,14 @@
BuildRequires: libGLU-devel
BuildRequires: libid3tag-devel
BuildRequires: libmad-devel
+BuildRequires: libmp4v2-devel
BuildRequires: libsndfile-devel
BuildRequires: libvorbis-devel
BuildRequires: portaudio-devel
#Optionals Requirements
#BuildRequires: ffmpeg-devel
-#BuildRequires: libshout-devel
+BuildRequires: libshout-devel
#BuildRequires: python-devel
#BuildRequires: lua-devel, tolua++-devel
%{?_with_bpm:BuildRequires: fftw-devel}
@@ -88,7 +89,7 @@
Terminal=false
Icon=mixxx-icon
Type=Application
-Categories=AudioVideo;Audio;
+Categories=AudioVideo;X-Synthesis;
EOF
desktop-file-install --vendor "" --delete-original \
@@ -99,10 +100,6 @@
#Remove docdir
rm -rf $RPM_BUILD_ROOT%{_docdir}
-#Fix script perms
-chmod +x $RPM_BUILD_ROOT%{_datadir}/mixxx/midi/convert
-chmod +x $RPM_BUILD_ROOT%{_datadir}/mixxx/skins/outlineMini/shifter.sh
-
%clean
rm -rf $RPM_BUILD_ROOT
@@ -110,7 +107,7 @@
%files
%defattr(-,root,root,-)
-%doc COPYING HERCULES.txt LICENSE README README.macro
+%doc COPYING LICENSE README README.macro
%doc Mixxx-Manual.pdf
%{_bindir}/%{name}
%{_datadir}/%{name}/
15 years, 1 month
rpms/mixxx/devel mixxx.spec,1.2,1.3
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mixxx/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11887
Modified Files:
mixxx.spec
Log Message:
- Update to 1.7.0
Index: mixxx.spec
===================================================================
RCS file: /cvs/free/rpms/mixxx/devel/mixxx.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mixxx.spec 29 Mar 2009 13:40:25 -0000 1.2
+++ mixxx.spec 16 Oct 2009 22:50:17 -0000 1.3
@@ -1,6 +1,6 @@
Name: mixxx
-Version: 1.6.1
-Release: 2%{?dist}
+Version: 1.7.0
+Release: 1%{?dist}
Summary: Mixxx is open source software for DJ'ing
Group: Applications/Multimedia
@@ -32,7 +32,7 @@
#BuildRequires: lua-devel, tolua++-devel
%{?_with_bpm:BuildRequires: fftw-devel}
%{?_with_djconsole:BuildRequires: libdjconsole-devel}
-%{?_with_ladspa:BuildRequires: ladspa-devel}
+BuildRequires: ladspa-devel
%{?_with_libgpod:BuildRequires: libgpod-devel}
@@ -46,33 +46,23 @@
Non-default rpmbuild options:
--with bpm: Enable bpm support
--with djconsole: Enable djconsole support
---with ladspa: Enable ladspa support (EXPERIMENTAL)
--with libgpod: Enable libgpod support
%prep
%setup -q
-#removal of internal dependencies
-rm -rf lib/{portaudio-v18,portaudio-v18mac}
-#libsamplerate, older version, better than having compat-libsamplerate for now
-#Fix ladspa in any cases
-sed -i -e 's|/usr/lib/ladspa/|%{_libdir}/ladspa/|' src/ladspaloader.cpp
-
-#Fix perm for sources
-find lib src -type f -name \* -exec chmod 644 {} \;
%build
export CFLAGS=$RPM_OPT_FLAGS
export CXXFLAGS=$RPM_OPT_FLAGS
scons %{?_smp_mflags} \
- prefix=%{_prefix} \
+ prefix=%{_prefix} ladspa=1 \
shoutcast=0 hifieq=1 script=0 optimize=0 \
%{?_with_bpm: experimentalbpm=1} \
%{?_with_djconsole: djconsole=1} \
- %{?_with_ladspa: ladspa=1} \
%{?_with_libgpod: ipod=1} \
@@ -128,6 +118,9 @@
%{_datadir}/pixmaps/mixxx-icon.png
%changelog
+* Sat Oct 17 2009 kwizart < kwizart at gmail.com > - 1.7.0-1
+- Update to 1.7.0
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.6.1-2
- rebuild for new F11 features
15 years, 1 month
rpms/libmpeg2/devel libmpeg2.spec,1.9,1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libmpeg2/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10538
Modified Files:
libmpeg2.spec
Log Message:
Rebuild for F-12
Index: libmpeg2.spec
===================================================================
RCS file: /cvs/free/rpms/libmpeg2/devel/libmpeg2.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- libmpeg2.spec 8 Apr 2009 00:28:55 -0000 1.9
+++ libmpeg2.spec 16 Oct 2009 22:27:19 -0000 1.10
@@ -1,6 +1,6 @@
Name: libmpeg2
Version: 0.5.1
-Release: 7%{?dist}.1
+Release: 8%{?dist}
Summary: MPEG-2 decoder libraries
Group: System Environment/Libraries
@@ -114,6 +114,9 @@
%changelog
+* Sat Oct 17 2009 kwizart < kwizart at gmail.com > - 0.5.1-8
+- Rebuild for F-12
+
* Wed Apr 8 2009 kwizart < kwizart at gmail.com > - 0.5.1-7
- New attempt
15 years, 1 month
rpms/libdvbpsi/devel libdvbpsi.spec,1.3,1.4
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/libdvbpsi/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9568
Modified Files:
libdvbpsi.spec
Log Message:
Rebuild for F-12
Index: libdvbpsi.spec
===================================================================
RCS file: /cvs/free/rpms/libdvbpsi/devel/libdvbpsi.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libdvbpsi.spec 5 Apr 2009 20:26:17 -0000 1.3
+++ libdvbpsi.spec 16 Oct 2009 22:16:03 -0000 1.4
@@ -3,7 +3,7 @@
Summary: Library for MPEG TS and DVB PSI tables decoding and generation
Name: libdvbpsi
Version: 0.1.6
-Release: 5%{?dist}
+Release: 6%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://www.videolan.org/developers/libdvbpsi.html
@@ -72,6 +72,9 @@
# -----------------------------------------------------------------------------
%changelog
+* Sat Oct 17 2009 kwizart < kwizart at gmail.com > - 0.1.6-6
+- Rebuild
+
* Sun Apr 5 2009 kwizart < kwizart at gmail.com > - 0.1.6-5
- Rebuild
15 years, 1 month
rpms/transcode/devel transcode.spec,1.19,1.20
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/transcode/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9143
Modified Files:
transcode.spec
Log Message:
- Conditionalize faac (moved to nonfree).
Index: transcode.spec
===================================================================
RCS file: /cvs/free/rpms/transcode/devel/transcode.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- transcode.spec 27 Aug 2009 19:22:43 -0000 1.19
+++ transcode.spec 16 Oct 2009 22:09:31 -0000 1.20
@@ -7,7 +7,7 @@
Name: transcode
Version: 1.1.4
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Video stream processing tool
Group: Applications/Multimedia
@@ -40,7 +40,7 @@
BuildRequires: libXaw-devel
BuildRequires: libXpm-devel
BuildRequires: freetype-devel
-BuildRequires: faac-devel
+%{?_with_faac:BuildRequires: faac-devel}
BuildRequires: pvm
BuildRequires: x264-devel
%ifarch %{ix86}
@@ -101,7 +101,7 @@
--enable-libquicktime \
--enable-a52 \
--enable-lzo \
- --enable-faac \
+ %{?_with_faac:--enable-faac} \
--enable-libxml2 \
--enable-mjpegtools \
--enable-sdl \
@@ -138,6 +138,9 @@
%changelog
+* Sat Oct 17 2009 kwizart < kwizart at gmail.com > - 1.1.4-2
+- Conditionalize faac (moved to nonfree).
+
* Thu Aug 27 2009 David Juran <david(a)juran.se> - 1.1.4-1
- update to 1.1.4
15 years, 1 month
rpms/xdtv/devel xdtv.spec,1.1,1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xdtv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv8749
Modified Files:
xdtv.spec
Log Message:
- Rebuild for F-12
- Conditionalize faac
- Disable non upstreamed patches
Index: xdtv.spec
===================================================================
RCS file: /cvs/free/rpms/xdtv/devel/xdtv.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdtv.spec 13 May 2009 11:14:39 -0000 1.1
+++ xdtv.spec 16 Oct 2009 22:03:20 -0000 1.2
@@ -2,7 +2,7 @@
Name: xdtv
Version: 2.4.1
-Release: 0.5%{?cvs}%{?dist}
+Release: 0.6%{?cvs}%{?dist}
Summary: Video4Linux Stream Capture Viewer & Recorder
Group: Applications/Multimedia
@@ -24,7 +24,7 @@
BuildRequires: libtool automake17
BuildRequires: a52dec-devel
-BuildRequires: faac-devel
+%{?_with_faac:BuildRequires: faac-devel}
BuildRequires: ffmpeg-devel
BuildRequires: lame-devel
BuildRequires: libogg-devel
@@ -111,7 +111,7 @@
#Patching to remove doubfully support for oldish ffmpeg
%patch0 -p1 -b .noldffmpeg
-%patch1 -p1 -b .libv4l2
+#patch1 -p1 -b .libv4l2
#Prevent internal ffmpeg to be used.
rm -rf libav* libpostproc libswscale
@@ -269,6 +269,11 @@
%changelog
+* Wed Apr 8 2009 kwizart < kwizart at gmail.com > - 2.4.1-0.6cvs15
+- Rebuild for F-12
+- Conditionalize faac
+- Disable non upstreamed patches
+
* Wed Apr 8 2009 kwizart < kwizart at gmail.com > - 2.4.1-0.5cvs15
- Add libv4l2 support
- Fix xvidcore API 4.2
15 years, 1 month
rpms/ffmpeg2theora/devel ffmpeg2theora.spec,1.5,1.6
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpeg2theora/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5793
Modified Files:
ffmpeg2theora.spec
Log Message:
Fix typo
Index: ffmpeg2theora.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg2theora/devel/ffmpeg2theora.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ffmpeg2theora.spec 16 Oct 2009 21:31:48 -0000 1.5
+++ ffmpeg2theora.spec 16 Oct 2009 21:36:27 -0000 1.6
@@ -12,7 +12,7 @@
BuildRequires: scons
BuildRequires: ffmpeg-devel
BuildRequires: libkate-devel
-BuildRequires: libogg-devel ogg >= 1.1
+BuildRequires: libogg-devel >= 1.1
BuildRequires: libtheora-devel >= 1.1.0
BuildRequires: libvorbis-devel
15 years, 1 month