rpms/gcompris/devel gcompris-8.0-fullscreen.patch, NONE, 1.1 gcompris-8.0-silence.patch, NONE, 1.1 gcompris-8.0-warn.patch, NONE, 1.1 gcompris-8.1-icon.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 gcompris.spec, 1.14, 1.15 sources, 1.3, 1.4 U006A.ogg, 1.1, NONE gcompris-7.4-xf86vidmode.patch, 1.4, NONE gcompris-7.4-xf86vidmode2.patch, 1.1, NONE gcompris-7.4-xf86vidmode3.patch, 1.1, NONE gcompris-click_on_letter.patch, 1.1, NONE gcompris-electric.patch, 1.1, NONE gcompris-nl.patch, 1.1, NONE gcompris-sys-assetml.patch, 1.1, NONE

Hans de Goede (jwrdegoede) fedora-extras-commits at redhat.com
Sun Oct 15 14:41:12 UTC 2006


Author: jwrdegoede

Update of /cvs/extras/rpms/gcompris/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv5353

Modified Files:
	.cvsignore gcompris.spec sources 
Added Files:
	gcompris-8.0-fullscreen.patch gcompris-8.0-silence.patch 
	gcompris-8.0-warn.patch gcompris-8.1-icon.patch 
Removed Files:
	U006A.ogg gcompris-7.4-xf86vidmode.patch 
	gcompris-7.4-xf86vidmode2.patch 
	gcompris-7.4-xf86vidmode3.patch gcompris-click_on_letter.patch 
	gcompris-electric.patch gcompris-nl.patch 
	gcompris-sys-assetml.patch 
Log Message:
* Sun Oct 15 2006 Hans de Goede <j.w.r.degoede at hhs.nl> 8.1-1
- New upstream release 8.1
- Drop most patches (integrated upstream)


gcompris-8.0-fullscreen.patch:

--- NEW FILE gcompris-8.0-fullscreen.patch ---
--- gcompris-8.0/src/gcompris/board_config.c~	2006-10-15 12:49:27.000000000 +0200
+++ gcompris-8.0/src/gcompris/board_config.c	2006-10-15 12:49:27.000000000 +0200
@@ -161,6 +161,11 @@
   /* init static values or callbacks */
   Confcallback = callback;
   hash_conf = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
+  
+  /* Creating a config window will cause our main window to loose focus,
+     this tells the main window to ignore the next focus out event (and thus
+     stay in fullscreen mode if we're fullscreen). */
+  gc_ignore_next_focus_out();
 
   /* main configuration window */
   conf_window = \
--- gcompris-8.0/src/gcompris/gcompris.h~	2006-10-15 12:47:22.000000000 +0200
+++ gcompris-8.0/src/gcompris/gcompris.h	2006-10-15 12:47:22.000000000 +0200
@@ -114,6 +114,7 @@
 /* General */
 GnomeCanvas     *gc_get_canvas(void);
 GtkWidget	*gc_get_window(void);
+void		gc_ignore_next_focus_out(void);
 
 const gchar	*gc_locale_get(void);
 void		 gc_locale_set(gchar *locale);
--- gcompris-8.0/src/gcompris/gcompris.c~	2006-10-15 12:47:24.000000000 +0200
+++ gcompris-8.0/src/gcompris/gcompris.c	2006-10-15 12:47:24.000000000 +0200
@@ -247,7 +247,8 @@
   int window_x;
   int window_y;
   gboolean fullscreen_active;
-} XF86VidModeData = { { 0 }, { 0 }, 0, 0, 0, 0, FALSE };
+  int ignore_focus_out;
+} XF86VidModeData = { { 0 }, { 0 }, 0, 0, 0, 0, FALSE, 0 };
 
 static void xf86_vidmode_init( void );
 static void xf86_vidmode_set_fullscreen( int state );
@@ -394,6 +395,12 @@
   return window;
 }
 
+void gc_ignore_next_focus_out()
+{
+#ifdef XF86_VIDMODE
+  XF86VidModeData.ignore_focus_out++;
+#endif
+}
 
 GnomeCanvasItem *gc_set_background(GnomeCanvasGroup *parent, gchar *file)
 {
@@ -1325,8 +1332,11 @@
 static gint xf86_focus_changed(GtkWindow *window,
   GdkEventFocus *event, gpointer param)
 {
-  printf("focus change %d\n", (int)event->in);
-  if (properties->fullscreen)
+  printf("focus change %d, ignore: %d\n", (int)event->in,
+    XF86VidModeData.ignore_focus_out);
+  if (!event->in && XF86VidModeData.ignore_focus_out)
+    XF86VidModeData.ignore_focus_out--;
+  else if (properties->fullscreen)
     xf86_vidmode_set_fullscreen(event->in);
   /* Act as if we aren't there / aren't hooked up */
   return FALSE;

gcompris-8.0-silence.patch:

--- NEW FILE gcompris-8.0-silence.patch ---
--- gcompris-8.0/src/gcompris/gcompris.c~	2006-10-15 13:13:02.000000000 +0200
+++ gcompris-8.0/src/gcompris/gcompris.c	2006-10-15 13:13:02.000000000 +0200
@@ -1265,8 +1265,6 @@
   if (properties->noxf86vm || XF86VidModeData.fullscreen_active == state)
     return;
 
-  printf("setfullscreen %d\n", state);
-
   if (state)
     {
       if (!XF86VidModeSwitchToMode(GDK_DISPLAY(), GDK_SCREEN_XNUMBER(
@@ -1314,9 +1312,6 @@
   XF86VidModeData.window_x = event->x;
   XF86VidModeData.window_y = event->y;
 
-  printf("configure: %dx%d, fullscreen_active: %d\n", event->x, event->y,
-    (int)XF86VidModeData.fullscreen_active);
-
   if(XF86VidModeData.fullscreen_active) {
     if (gdk_pointer_grab(event->window, TRUE, 0, event->window, NULL,
           GDK_CURRENT_TIME) != GDK_GRAB_SUCCESS)
@@ -1332,8 +1327,6 @@
 static gint xf86_focus_changed(GtkWindow *window,
   GdkEventFocus *event, gpointer param)
 {
-  printf("focus change %d, ignore: %d\n", (int)event->in,
-    XF86VidModeData.ignore_focus_out);
   if (!event->in && XF86VidModeData.ignore_focus_out)
     XF86VidModeData.ignore_focus_out--;
   else if (properties->fullscreen)

gcompris-8.0-warn.patch:

--- NEW FILE gcompris-8.0-warn.patch ---
--- gcompris-8.0/src/boards/chess.c~	2006-10-15 10:27:49.000000000 +0200
+++ gcompris-8.0/src/boards/chess.c	2006-10-15 10:27:49.000000000 +0200
@@ -1001,7 +1001,7 @@
 				   &len,
 				   &err);
 
-  g_warning("g_io_channel_read_line len=%d", len);
+  g_warning("g_io_channel_read_line len=%d", (int)len);
   if(status == G_IO_STATUS_ERROR)
     {
       g_warning("g_io_channel_read_chars error=%s",
--- gcompris-8.0/src/gcompris/board_config.c~	2006-10-15 12:00:50.000000000 +0200
+++ gcompris-8.0/src/gcompris/board_config.c	2006-10-15 12:00:50.000000000 +0200
@@ -194,7 +194,7 @@
   GcomprisProperties *properties = gc_prop_get();
   if (properties->fullscreen && !properties->noxf86vm)
     if (gdk_pointer_grab(gc_get_window()->window, TRUE, 0,
-			 GDK_WINDOW(gc_get_window()), NULL, GDK_CURRENT_TIME) !=
+			 gc_get_window()->window, NULL, GDK_CURRENT_TIME) !=
 	GDK_GRAB_SUCCESS)
       g_warning("Pointer grab failed");
 

gcompris-8.1-icon.patch:

--- NEW FILE gcompris-8.1-icon.patch ---
--- gcompris-8.1/src/gcompris/gcompris.c~	2006-10-15 14:44:14.000000000 +0200
+++ gcompris-8.1/src/gcompris/gcompris.c	2006-10-15 14:44:14.000000000 +0200
@@ -625,7 +625,7 @@
    * Set an icon for gcompris
    * ------------------------
    */
-  icon_file = g_strconcat(properties->system_icon_dir, "/gcompris.png", NULL);
+  icon_file = g_strconcat("/usr/share/icons/hicolor/48x48/apps", "/gcompris.png", NULL);
   if (!g_file_test (icon_file, G_FILE_TEST_EXISTS)) {
       /* Now check if this file is on the net */
       icon_file = gc_net_get_url_from_file("gcompris.png", NULL);


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/gcompris/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore	13 Aug 2006 10:32:43 -0000	1.3
+++ .cvsignore	15 Oct 2006 14:41:12 -0000	1.4
@@ -1,2 +1 @@
-gcompris-7.4.tar.gz
-gcompris-africa-patch.tar.gz
+gcompris-8.1.tar.gz


Index: gcompris.spec
===================================================================
RCS file: /cvs/extras/rpms/gcompris/devel/gcompris.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- gcompris.spec	28 Aug 2006 11:26:56 -0000	1.14
+++ gcompris.spec	15 Oct 2006 14:41:12 -0000	1.15
@@ -1,29 +1,23 @@
 Name:           gcompris
-Version:        7.4
-Release:        14%{?dist}
+Version:        8.1
+Release:        1%{?dist}
 Summary:        Educational suite for kids 2-10 years old
 Group:          Amusements/Games
 License:        GPL
 URL:            http://gcompris.net
 Source0:        http://download.sf.net/%{name}/%{name}-%{version}.tar.gz
 Source1:        gcompris.6
-Source2:        U006A.ogg
-Source3:        gcompris-africa-patch.tar.gz
-Patch1:         gcompris-sys-assetml.patch
-Patch2:         gcompris-nl.patch
-Patch3:         gcompris-electric.patch
-Patch4:         gcompris-click_on_letter.patch
-Patch5:         gcompris-7.4-xf86vidmode.patch
-Patch6:         gcompris-7.4-xf86vidmode2.patch
-Patch7:         gcompris-7.4-xf86vidmode3.patch
+Patch0:         gcompris-8.0-warn.patch
+Patch1:         gcompris-8.0-fullscreen.patch
+Patch2:         gcompris-8.0-silence.patch
+Patch3:         gcompris-8.1-icon.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-Buildrequires:  libgnomeui-devel sqlite-devel libassetml-devel python-devel
+Buildrequires:  libgnomeui-devel sqlite-devel python-devel gnet2-devel
 Buildrequires:  pygtk2-devel SDL_mixer-devel libXt-devel libXxf86vm-devel
-Buildrequires:  xorg-x11-proto-devel
-Buildrequires:  gnome-python2-canvas python-sqlite2 texinfo texi2html
+Buildrequires:  xorg-x11-proto-devel python-sqlite2 texinfo texi2html
 Buildrequires:  perl(XML::Parser) gettext desktop-file-utils gnuchess
-Requires:       gnuchess gnucap tuxpaint gcompris-flags
-Requires:       gnome-python2-canvas python-sqlite2
+Requires:       gnuchess gnucap tuxpaint gcompris-flags hicolor-icon-theme
+Requires:       pygtk2 python-sqlite2
 Requires:       %{name}-libs = %{version}-%{release}
 Requires(post): /sbin/install-info
 Requires(preun): /sbin/install-info
@@ -82,114 +76,108 @@
 Developmental files for the core-engine library of GCompris
 
 
+%package sound-cs
+Summary:        GCompris voices in Tsjech
+Group:          Amusements/Games
+
+%description sound-cs
+Voice samples for the GCompris games in Tsjech.
+
+
 %package sound-da
 Summary:        GCompris voices in Danish
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-da
-Voice samples for the GCompris games in Danish, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Danish.
 
 
 %package sound-de
 Summary:        GCompris voices in German
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-de
-Voice samples for the GCompris games in German, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in German.
 
 
 %package sound-en
 Summary:        GCompris voices in English
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-en
-Voice samples for the GCompris games in English, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in English.
 
 
 %package sound-es
 Summary:        GCompris voices in Spanish
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-es
-Voice samples for the GCompris games in Spanish, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Spanish.
 
 
 %package sound-fi
 Summary:        GCompris voices in Finish
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-fi
-Voice samples for the GCompris games in Finish, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Finish.
 
 
 %package sound-fr
 Summary:        GCompris voices in French
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-fr
-Voice samples for the GCompris games in French, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in French.
 
 
 %package sound-hu
 Summary:        GCompris voices in Hungarian
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-hu
-Voice samples for the GCompris games in Hungarian, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Hungarian.
 
 
 %package sound-it
 Summary:        GCompris voices in Italian
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-it
-Voice samples for the GCompris games in Italian, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Italian.
+
+
+%package sound-mr
+Summary:        GCompris voices in Indian Marathi
+Group:          Amusements/Games
+
+%description sound-mr
+Voice samples for the GCompris games in Indian Marathi.
 
 
 %package sound-nl
 Summary:        GCompris voices in Dutch
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-nl
-Voice samples for the GCompris games in Dutch, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Dutch.
 
 
 %package sound-pt
 Summary:        GCompris voices in Portuguese
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-pt
-Voice samples for the GCompris games in Portuguese, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Portuguese.
 
 
 %package sound-ru
 Summary:        GCompris voices in Russian
 Group:          Amusements/Games
-Requires:       /usr/share/assetml
 
 %description sound-ru
-Voice samples for the GCompris games in Russian, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Russian.
 
 
 %package sound-sv
@@ -197,8 +185,15 @@
 Group:          Amusements/Games
 
 %description sound-sv
-Voice samples for the GCompris games in Swedish, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Swedish.
+
+
+%package sound-tr
+Summary:        GCompris voices in Turk
+Group:          Amusements/Games
+
+%description sound-tr
+Voice samples for the GCompris games in Turk.
 
 
 %package sound-eu
@@ -206,8 +201,7 @@
 Group:          Amusements/Games
 
 %description sound-eu
-Voice samples for the GCompris games in Basque, these come with an assetml
-description so they could potentially be used by other packages.
+Voice samples for the GCompris games in Basque.
 
 
 %package flags
@@ -215,56 +209,23 @@
 Group:          Amusements/Games
 
 %description flags
-Country flags for use with GCompris (60x40 PNG), these come with an assetml
-description so they could potentially be used by other packages.
+Country flags for use with GCompris (60x40 PNG).
 
 
 %prep
 %setup -q
-%patch1 -p1 -z .sysassetml -E
-# no backup files for this patch, otherwise they get installed under /usr/share
+%patch0 -p1
+%patch1 -p1
 %patch2 -p1
-%patch3 -p1 -z .electric
-%patch4 -p1 -z .click_on_letter
-%patch5 -p1 -z .xf86vm
-%patch6 -p1 -z .xf86vm2
-%patch7 -p1 -z .xf86vm3
+%patch3 -p1
 iconv -f ISO-8859-1 -t UTF8 docs/C/gcompris.info > tmp
 mv tmp docs/C/gcompris.info
-# fix gnome.canvas deprecation warnings
-for i in src/boards/python.c `find src/boards/python -name "*.py"`; do
-   %{__sed} -i 's/gnome\.canvas/gnomecanvas/g' $i
-done
-# fix up broken dutch alphabet sounds
-pushd boards/sounds/nl/alphabet
-for i in U007{B..F}.ogg; do
-  mv $i `echo $i|%{__sed} s/7/6/`
-done
-cp %{SOURCE2} .
-popd
-# fix up missing dutch "ok zo" sound
-pushd boards/sounds/nl/misc
-cp ok.ogg check_answer.ogg
-popd
-# fixup african maps with files from CVS (BZ 197758)
-tar xfz %{SOURCE3}
-# these are no longer used
-rm boards/geography/africa/north_africa.xcf \
-  boards/geography/afrique/burundi.png \
-  boards/geography/afrique/djibouti.png \
-  boards/geography/afrique/equatorial_guinea.png \
-  boards/geography/afrique/gambia.png \
-  boards/geography/afrique/guinea_bissau.png \
-  boards/geography/afrique/lesotho.png \
-  boards/geography/afrique/rwanda.png \
-  boards/geography/afrique/sierra_leone.png \
-  boards/geography/afrique/swaziland.png
 
 
 %build
 # The configure check for python-gnome.canvas fails without X running,
 # --enable-py-build-only works around this
-%configure --enable-py-build-only
+%configure --enable-py-build-only --enable-gnet
 # we can't use %%{?_smp_mflags} because that breaks compilation!
 make 
 # Fixup the desktop files a bit, we don't use a patch because that breaks
@@ -353,6 +314,7 @@
 %{_datadir}/gcompris/boards/l*
 %{_datadir}/gcompris/boards/m*
 %{_datadir}/gcompris/boards/n*
+%{_datadir}/gcompris/boards/o*
 %{_datadir}/gcompris/boards/p*
 %{_datadir}/gcompris/boards/r*
 %{_datadir}/gcompris/boards/s*.xml
@@ -365,6 +327,7 @@
 %{_datadir}/gcompris/boards/sounds/chronos
 %{_datadir}/gcompris/boards/sounds/LuneRouge
 %{_datadir}/gcompris/boards/sounds/HOWTO_ENCODE
+%{_datadir}/gcompris/boards/sounds/README
 %{_datadir}/gcompris/boards/submarine
 %{_datadir}/gcompris/boards/t*
 %{_datadir}/gcompris/boards/w*
@@ -385,9 +348,15 @@
 %{_libdir}/libgcompris-1.so
 %{_libdir}/pkgconfig/libgcompris-1.0.pc
 
+%files sound-cs
+%defattr(-,root,root,-)
+%dir %{_datadir}/gcompris
+%dir %{_datadir}/gcompris/boards
+%dir %{_datadir}/gcompris/boards/sounds
+%{_datadir}/gcompris/boards/sounds/cs
+
 %files sound-da
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_da.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -395,7 +364,6 @@
 
 %files sound-de
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_de.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -403,7 +371,6 @@
 
 %files sound-en
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_en.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -411,7 +378,6 @@
 
 %files sound-es
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_es.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -419,7 +385,6 @@
 
 %files sound-fi
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_fi.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -427,7 +392,6 @@
 
 %files sound-fr
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_fr.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -435,7 +399,6 @@
 
 %files sound-hu
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_hu.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -443,15 +406,20 @@
 
 %files sound-it
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_it.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
 %{_datadir}/gcompris/boards/sounds/it
 
+%files sound-mr
+%defattr(-,root,root,-)
+%dir %{_datadir}/gcompris
+%dir %{_datadir}/gcompris/boards
+%dir %{_datadir}/gcompris/boards/sounds
+%{_datadir}/gcompris/boards/sounds/mr
+
 %files sound-nl
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_nl.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -459,15 +427,14 @@
 
 %files sound-pt
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_pt.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
 %{_datadir}/gcompris/boards/sounds/pt
+%{_datadir}/gcompris/boards/sounds/pt_BR
 
 %files sound-ru
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_ru.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -475,15 +442,20 @@
 
 %files sound-sv
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_sv.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
 %{_datadir}/gcompris/boards/sounds/sv
 
+%files sound-tr
+%defattr(-,root,root,-)
+%dir %{_datadir}/gcompris
+%dir %{_datadir}/gcompris/boards
+%dir %{_datadir}/gcompris/boards/sounds
+%{_datadir}/gcompris/boards/sounds/tr
+
 %files sound-eu
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_*_eu.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %dir %{_datadir}/gcompris/boards/sounds
@@ -491,13 +463,16 @@
 
 %files flags
 %defattr(-,root,root,-)
-%{_datadir}/assetml/gcompris_flags.assetml
 %dir %{_datadir}/gcompris
 %dir %{_datadir}/gcompris/boards
 %{_datadir}/gcompris/boards/flags
 
 
 %changelog
+* Sun Oct 15 2006 Hans de Goede <j.w.r.degoede at hhs.nl> 8.1-1
+- New upstream release 8.1
+- Drop most patches (integrated upstream)
+
 * Mon Aug 28 2006 Hans de Goede <j.w.r.degoede at hhs.nl> 7.4-14
 - FE6 Rebuild
 


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/gcompris/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources	13 Aug 2006 10:32:43 -0000	1.3
+++ sources	15 Oct 2006 14:41:12 -0000	1.4
@@ -1,2 +1 @@
-d80e55da21170a98d671c98b3e582cc3  gcompris-7.4.tar.gz
-bc3d9ba72b4dd9742859ec6b90d12056  gcompris-africa-patch.tar.gz
+439b70411ccdbd99c6391d6bfb5e6fb6  gcompris-8.1.tar.gz


--- U006A.ogg DELETED ---


--- gcompris-7.4-xf86vidmode.patch DELETED ---


--- gcompris-7.4-xf86vidmode2.patch DELETED ---


--- gcompris-7.4-xf86vidmode3.patch DELETED ---


--- gcompris-click_on_letter.patch DELETED ---


--- gcompris-electric.patch DELETED ---


--- gcompris-nl.patch DELETED ---


--- gcompris-sys-assetml.patch DELETED ---




More information about the fedora-extras-commits mailing list