rpms/childsplay_plugins/FC-5 childsplay_plugins-0.80.7-alphabet-sounds.patch, 1.1, 1.2 childsplay_plugins.spec, 1.3, 1.4 childsplay_plugins-0.80.8-assetml.patch, 1.2, NONE
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay_plugins/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15266
Modified Files:
childsplay_plugins-0.80.7-alphabet-sounds.patch
childsplay_plugins.spec
Removed Files:
childsplay_plugins-0.80.8-assetml.patch
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84-1
- New upstream release 0.84
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
childsplay_plugins-0.80.7-alphabet-sounds.patch:
Index: childsplay_plugins-0.80.7-alphabet-sounds.patch
===================================================================
RCS file: /cvs/extras/rpms/childsplay_plugins/FC-5/childsplay_plugins-0.80.7-alphabet-sounds.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- childsplay_plugins-0.80.7-alphabet-sounds.patch 11 May 2006 18:18:46 -0000 1.1
+++ childsplay_plugins-0.80.7-alphabet-sounds.patch 31 Oct 2006 11:08:15 -0000 1.2
@@ -4,10 +4,10 @@
def _setup(self):
""" Set all the stuff we need"""
#self.sounddir = os.path.join(self.libdir,'Findsound2Data',get_locale()[:2])
-- if _FSDEBUG: print "Looking for ",os.path.join(DATADIR,'AlphabetSounds',ChildsplayGoodies.language)
-- self.sounddir = os.path.join(DATADIR,'AlphabetSounds',ChildsplayGoodies.language)
-+ if _FSDEBUG: print "Looking for ", os.path.join('/usr/share/gcompris/boards/sounds',ChildsplayGoodies.language,'alphabet')
-+ self.sounddir = os.path.join('/usr/share/gcompris/boards/sounds',ChildsplayGoodies.language,'alphabet')
+- if _FSDEBUG: print "Looking for ",os.path.join(DATADIR,'AlphabetSounds',self.cpg.language)
+- self.sounddir = os.path.join(DATADIR,'AlphabetSounds',self.cpg.language)
++ if _FSDEBUG: print "Looking for ", os.path.join('/usr/share/gcompris/boards/sounds',self.cpg.language,'alphabet')
++ self.sounddir = os.path.join('/usr/share/gcompris/boards/sounds',self.cpg.language,'alphabet')
if not os.path.exists(self.sounddir):
- self.sounddir = os.path.join(DATADIR,'AlphabetSounds','en')
+ self.sounddir = '/usr/share/gcompris/boards/sounds/en/alphabet'
Index: childsplay_plugins.spec
===================================================================
RCS file: /cvs/extras/rpms/childsplay_plugins/FC-5/childsplay_plugins.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- childsplay_plugins.spec 27 Aug 2006 12:20:34 -0000 1.3
+++ childsplay_plugins.spec 31 Oct 2006 11:08:15 -0000 1.4
@@ -1,5 +1,5 @@
Name: childsplay_plugins
-Version: 0.83
+Version: 0.84
Release: 1%{?dist}
Summary: Plugins for childsplay (educational games for young children)
Group: Amusements/Games
@@ -7,10 +7,9 @@
URL: http://childsplay.sourceforge.net/
Source: http://dl.sf.net/sourceforge/childsplay/%{name}-%{version}.tgz
Patch0: childsplay_plugins-0.80.7-alphabet-sounds.patch
-Patch1: childsplay_plugins-0.80.8-assetml.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
-Requires: childsplay >= 0.83
+Requires: childsplay >= 0.84
%description
Plugins (games) for Childsplay a suite of educational games for young
@@ -21,7 +20,6 @@
%setup -q
# no backups otherwise the backups endup in the rpm.
%patch0 -p1
-%patch1 -p1
# the translation is merged into the assetml file, so don't ship it seperatly
rm -r assetml/childsplay/sounds-misc/po
@@ -35,12 +33,9 @@
# INSTALL.sh is seriously borked, so DIY
mkdir -p $RPM_BUILD_ROOT%{_datadir}/childsplay/plugins
mkdir -p $RPM_BUILD_ROOT%{_datadir}/childsplay/Data/icons
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/assetml
cp -a Data/*.icon.png $RPM_BUILD_ROOT%{_datadir}/childsplay/Data/icons
cp -a lib/* $RPM_BUILD_ROOT%{_datadir}/childsplay/plugins
cp -a assetml/childsplay/* $RPM_BUILD_ROOT%{_datadir}/childsplay
-mv $RPM_BUILD_ROOT%{_datadir}/childsplay/*/*.assetml \
- $RPM_BUILD_ROOT%{_datadir}/assetml
%clean
@@ -50,18 +45,18 @@
%files
%defattr(-, root, root, -)
%doc README*
-%dir %{_datadir}/childsplay
-%dir %{_datadir}/childsplay/plugins
-%{_datadir}/childsplay/plugins/*.py
-%{_datadir}/childsplay/plugins/*.pyc
-%ghost %{_datadir}/childsplay/plugins/*.pyo
-%{_datadir}/childsplay/plugins/*Data
-%{_datadir}/childsplay/plugins/SoundMemory
-%{_datadir}/childsplay/Data
-%{_datadir}/childsplay/sounds-misc
-%{_datadir}/assetml/*
+%{_datadir}/childsplay
+
%changelog
+* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84-1
+- New upstream release 0.84
+- Install the (still used) assetml files under %%{_datadir}/%%{name} instead
+ of under %%{_datadir}/assetml, since we no longer ship libassetml
+
+* Wed Sep 6 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83-2
+- Don't %%ghost the .pyo files (bug 205370)
+
* Sun Aug 27 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83-1
- New upstream version 0.83
--- childsplay_plugins-0.80.8-assetml.patch DELETED ---
15 years, 6 months
rpms/childsplay/FC-5 childsplay.spec, 1.4, 1.5 childsplay-0.81.8-assetml.patch, 1.2, NONE
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15249
Modified Files:
childsplay.spec
Removed Files:
childsplay-0.81.8-assetml.patch
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
- New upstream release 0.84.1
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
Index: childsplay.spec
===================================================================
RCS file: /cvs/extras/rpms/childsplay/FC-5/childsplay.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- childsplay.spec 27 Aug 2006 12:20:56 -0000 1.4
+++ childsplay.spec 31 Oct 2006 11:08:13 -0000 1.5
@@ -1,5 +1,5 @@
Name: childsplay
-Version: 0.83
+Version: 0.84.1
Release: 1%{?dist}
Summary: Suite of educational games for young children
Group: Amusements/Games
@@ -8,11 +8,10 @@
Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tgz
Source1: childsplay.desktop
Patch0: childsplay-0.81.8-highscore.patch
-Patch1: childsplay-0.81.8-assetml.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: desktop-file-utils
-Requires: pygame, childsplay_plugins >= 0.83
+Requires: pygame, childsplay_plugins >= 0.84, hicolor-icon-theme
%description
Childsplay is a suite of educational games for young children. It's written in
@@ -27,8 +26,6 @@
%prep
%setup -q
%patch0 -p1 -z .highscore
-# no backups otherwise the backups endup in the rpm.
-%patch1 -p1
# we don't use the buggy provided install
rm install.py
# the translation is merged into the assetml file, so don't ship it seperatly
@@ -49,7 +46,7 @@
echo "MODULESDIR=\"%{_datadir}/%{name}/plugins\"" >> BASEPATH.py
echo "RCDIR=\"%{_datadir}/%{name}/plugins/ConfigData\"" >> BASEPATH.py
echo "LOCALEDIR=\"%{_datadir}/locale\"" >> BASEPATH.py
-echo "ASSETMLDIR=\"%{_datadir}/assetml\"" >> BASEPATH.py
+echo "ASSETMLDIR=\"%{_datadir}\"" >> BASEPATH.py
echo "CHILDSPLAYRC=\"childsplayrc\"" >> BASEPATH.py
echo "HOME_DIR_NAME=\".childsplay\"" >> BASEPATH.py
@@ -59,7 +56,6 @@
# INSTALL.sh is seriously borked, so DIY
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/assetml
mkdir -p $RPM_BUILD_ROOT%{_datadir}/locale
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man6
cp -a *.py $RPM_BUILD_ROOT%{_datadir}/%{name}
@@ -68,9 +64,7 @@
$RPM_BUILD_ROOT%{_bindir}/letters-trans
cp -a Data $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -a lib/* $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins
-cp -a assetml/childsplay/* $RPM_BUILD_ROOT%{_datadir}/%{name}
-mv $RPM_BUILD_ROOT%{_datadir}/%{name}/*/*.assetml \
- $RPM_BUILD_ROOT%{_datadir}/assetml
+cp -a assetml/%{name}/* $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -a locale/* $RPM_BUILD_ROOT%{_datadir}/locale
cp -a man/* $RPM_BUILD_ROOT%{_mandir}/man6
@@ -115,26 +109,24 @@
%doc README* doc/GPL* doc/README* License_*.ttf.txt
%{_bindir}/%{name}
%{_bindir}/letters-trans
-%dir %{_datadir}/childsplay
-%{_datadir}/childsplay/*.py
-%{_datadir}/childsplay/*.pyc
-%ghost %{_datadir}/childsplay/*.pyo
-%{_datadir}/childsplay/Data
-%{_datadir}/childsplay/childsplay-images
-%{_datadir}/childsplay/childsplay-sounds
-%{_datadir}/childsplay/memory-136x136
-%dir %{_datadir}/childsplay/plugins
-%{_datadir}/childsplay/plugins/*.py
-%{_datadir}/childsplay/plugins/*.pyc
-%ghost %{_datadir}/childsplay/plugins/*.pyo
-%{_datadir}/childsplay/plugins/*Data
-%{_datadir}/assetml
+%{_datadir}/%{name}
%{_mandir}/man6/*.6.gz
%{_datadir}/applications/fedora-%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%changelog
+* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
+- New upstream release 0.84.1
+- Install the (still used) assetml files under %%{_datadir}/%%{name} instead
+ of under %%{_datadir}/assetml, since we no longer ship libassetml
+
+* Fri Sep 22 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83.1-1
+- New upstream release 0.83.1
+
+* Wed Sep 6 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83-2
+- Don't %%ghost the .pyo files (bug 205370)
+
* Sun Aug 27 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83-1
- New upstream version 0.83
--- childsplay-0.81.8-assetml.patch DELETED ---
15 years, 6 months
rpms/childsplay/FC-6 childsplay.spec, 1.6, 1.7 childsplay-0.81.8-assetml.patch, 1.2, NONE
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay/FC-6
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15097
Modified Files:
childsplay.spec
Removed Files:
childsplay-0.81.8-assetml.patch
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
- New upstream release 0.84.1
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
Index: childsplay.spec
===================================================================
RCS file: /cvs/extras/rpms/childsplay/FC-6/childsplay.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- childsplay.spec 22 Sep 2006 09:39:06 -0000 1.6
+++ childsplay.spec 31 Oct 2006 11:07:07 -0000 1.7
@@ -1,5 +1,5 @@
Name: childsplay
-Version: 0.83.1
+Version: 0.84.1
Release: 1%{?dist}
Summary: Suite of educational games for young children
Group: Amusements/Games
@@ -8,11 +8,10 @@
Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tgz
Source1: childsplay.desktop
Patch0: childsplay-0.81.8-highscore.patch
-Patch1: childsplay-0.81.8-assetml.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: desktop-file-utils
-Requires: pygame, childsplay_plugins >= 0.83
+Requires: pygame, childsplay_plugins >= 0.84, hicolor-icon-theme
%description
Childsplay is a suite of educational games for young children. It's written in
@@ -27,8 +26,6 @@
%prep
%setup -q
%patch0 -p1 -z .highscore
-# no backups otherwise the backups endup in the rpm.
-%patch1 -p1
# we don't use the buggy provided install
rm install.py
# the translation is merged into the assetml file, so don't ship it seperatly
@@ -49,7 +46,7 @@
echo "MODULESDIR=\"%{_datadir}/%{name}/plugins\"" >> BASEPATH.py
echo "RCDIR=\"%{_datadir}/%{name}/plugins/ConfigData\"" >> BASEPATH.py
echo "LOCALEDIR=\"%{_datadir}/locale\"" >> BASEPATH.py
-echo "ASSETMLDIR=\"%{_datadir}/assetml\"" >> BASEPATH.py
+echo "ASSETMLDIR=\"%{_datadir}\"" >> BASEPATH.py
echo "CHILDSPLAYRC=\"childsplayrc\"" >> BASEPATH.py
echo "HOME_DIR_NAME=\".childsplay\"" >> BASEPATH.py
@@ -59,7 +56,6 @@
# INSTALL.sh is seriously borked, so DIY
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/assetml
mkdir -p $RPM_BUILD_ROOT%{_datadir}/locale
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man6
cp -a *.py $RPM_BUILD_ROOT%{_datadir}/%{name}
@@ -68,9 +64,7 @@
$RPM_BUILD_ROOT%{_bindir}/letters-trans
cp -a Data $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -a lib/* $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins
-cp -a assetml/childsplay/* $RPM_BUILD_ROOT%{_datadir}/%{name}
-mv $RPM_BUILD_ROOT%{_datadir}/%{name}/*/*.assetml \
- $RPM_BUILD_ROOT%{_datadir}/assetml
+cp -a assetml/%{name}/* $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -a locale/* $RPM_BUILD_ROOT%{_datadir}/locale
cp -a man/* $RPM_BUILD_ROOT%{_mandir}/man6
@@ -115,14 +109,18 @@
%doc README* doc/GPL* doc/README* License_*.ttf.txt
%{_bindir}/%{name}
%{_bindir}/letters-trans
-%{_datadir}/childsplay
-%{_datadir}/assetml
+%{_datadir}/%{name}
%{_mandir}/man6/*.6.gz
%{_datadir}/applications/fedora-%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%changelog
+* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
+- New upstream release 0.84.1
+- Install the (still used) assetml files under %%{_datadir}/%%{name} instead
+ of under %%{_datadir}/assetml, since we no longer ship libassetml
+
* Fri Sep 22 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83.1-1
- New upstream release 0.83.1
--- childsplay-0.81.8-assetml.patch DELETED ---
15 years, 6 months
rpms/childsplay_plugins/FC-6 childsplay_plugins-0.80.7-alphabet-sounds.patch, 1.1, 1.2 childsplay_plugins.spec, 1.4, 1.5 childsplay_plugins-0.80.8-assetml.patch, 1.2, NONE
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay_plugins/FC-6
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15074
Modified Files:
childsplay_plugins-0.80.7-alphabet-sounds.patch
childsplay_plugins.spec
Removed Files:
childsplay_plugins-0.80.8-assetml.patch
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84-1
- New upstream release 0.84
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
childsplay_plugins-0.80.7-alphabet-sounds.patch:
Index: childsplay_plugins-0.80.7-alphabet-sounds.patch
===================================================================
RCS file: /cvs/extras/rpms/childsplay_plugins/FC-6/childsplay_plugins-0.80.7-alphabet-sounds.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- childsplay_plugins-0.80.7-alphabet-sounds.patch 11 May 2006 18:18:46 -0000 1.1
+++ childsplay_plugins-0.80.7-alphabet-sounds.patch 31 Oct 2006 11:07:02 -0000 1.2
@@ -4,10 +4,10 @@
def _setup(self):
""" Set all the stuff we need"""
#self.sounddir = os.path.join(self.libdir,'Findsound2Data',get_locale()[:2])
-- if _FSDEBUG: print "Looking for ",os.path.join(DATADIR,'AlphabetSounds',ChildsplayGoodies.language)
-- self.sounddir = os.path.join(DATADIR,'AlphabetSounds',ChildsplayGoodies.language)
-+ if _FSDEBUG: print "Looking for ", os.path.join('/usr/share/gcompris/boards/sounds',ChildsplayGoodies.language,'alphabet')
-+ self.sounddir = os.path.join('/usr/share/gcompris/boards/sounds',ChildsplayGoodies.language,'alphabet')
+- if _FSDEBUG: print "Looking for ",os.path.join(DATADIR,'AlphabetSounds',self.cpg.language)
+- self.sounddir = os.path.join(DATADIR,'AlphabetSounds',self.cpg.language)
++ if _FSDEBUG: print "Looking for ", os.path.join('/usr/share/gcompris/boards/sounds',self.cpg.language,'alphabet')
++ self.sounddir = os.path.join('/usr/share/gcompris/boards/sounds',self.cpg.language,'alphabet')
if not os.path.exists(self.sounddir):
- self.sounddir = os.path.join(DATADIR,'AlphabetSounds','en')
+ self.sounddir = '/usr/share/gcompris/boards/sounds/en/alphabet'
Index: childsplay_plugins.spec
===================================================================
RCS file: /cvs/extras/rpms/childsplay_plugins/FC-6/childsplay_plugins.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- childsplay_plugins.spec 6 Sep 2006 14:05:45 -0000 1.4
+++ childsplay_plugins.spec 31 Oct 2006 11:07:02 -0000 1.5
@@ -1,16 +1,15 @@
Name: childsplay_plugins
-Version: 0.83
-Release: 2%{?dist}
+Version: 0.84
+Release: 1%{?dist}
Summary: Plugins for childsplay (educational games for young children)
Group: Amusements/Games
License: GPL
URL: http://childsplay.sourceforge.net/
Source: http://dl.sf.net/sourceforge/childsplay/%{name}-%{version}.tgz
Patch0: childsplay_plugins-0.80.7-alphabet-sounds.patch
-Patch1: childsplay_plugins-0.80.8-assetml.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
-Requires: childsplay >= 0.83
+Requires: childsplay >= 0.84
%description
Plugins (games) for Childsplay a suite of educational games for young
@@ -21,7 +20,6 @@
%setup -q
# no backups otherwise the backups endup in the rpm.
%patch0 -p1
-%patch1 -p1
# the translation is merged into the assetml file, so don't ship it seperatly
rm -r assetml/childsplay/sounds-misc/po
@@ -35,12 +33,9 @@
# INSTALL.sh is seriously borked, so DIY
mkdir -p $RPM_BUILD_ROOT%{_datadir}/childsplay/plugins
mkdir -p $RPM_BUILD_ROOT%{_datadir}/childsplay/Data/icons
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/assetml
cp -a Data/*.icon.png $RPM_BUILD_ROOT%{_datadir}/childsplay/Data/icons
cp -a lib/* $RPM_BUILD_ROOT%{_datadir}/childsplay/plugins
cp -a assetml/childsplay/* $RPM_BUILD_ROOT%{_datadir}/childsplay
-mv $RPM_BUILD_ROOT%{_datadir}/childsplay/*/*.assetml \
- $RPM_BUILD_ROOT%{_datadir}/assetml
%clean
@@ -51,10 +46,14 @@
%defattr(-, root, root, -)
%doc README*
%{_datadir}/childsplay
-%{_datadir}/assetml
%changelog
+* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84-1
+- New upstream release 0.84
+- Install the (still used) assetml files under %%{_datadir}/%%{name} instead
+ of under %%{_datadir}/assetml, since we no longer ship libassetml
+
* Wed Sep 6 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83-2
- Don't %%ghost the .pyo files (bug 205370)
--- childsplay_plugins-0.80.8-assetml.patch DELETED ---
15 years, 6 months
rpms/childsplay/devel .cvsignore,1.4,1.5
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12896
Modified Files:
.cvsignore
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
- New upstream release 0.84.1
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/childsplay/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 22 Sep 2006 09:39:55 -0000 1.4
+++ .cvsignore 31 Oct 2006 11:02:25 -0000 1.5
@@ -1 +1 @@
-childsplay-0.83.1.tgz
+childsplay-0.84.1.tgz
15 years, 6 months
rpms/childsplay_plugins/devel .cvsignore,1.4,1.5 sources,1.4,1.5
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay_plugins/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12883
Modified Files:
.cvsignore sources
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84-1
- New upstream release 0.84
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/childsplay_plugins/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 27 Aug 2006 12:19:51 -0000 1.4
+++ .cvsignore 31 Oct 2006 11:02:23 -0000 1.5
@@ -1 +1 @@
-childsplay_plugins-0.83.tgz
+childsplay_plugins-0.84.tgz
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/childsplay_plugins/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 27 Aug 2006 12:19:51 -0000 1.4
+++ sources 31 Oct 2006 11:02:23 -0000 1.5
@@ -1 +1 @@
-81355e87ee3968107305642333e253cf childsplay_plugins-0.83.tgz
+573c1d60506143d68070e309c9009c20 childsplay_plugins-0.84.tgz
15 years, 6 months
rpms/amarok/devel .cvsignore, 1.27, 1.28 amarok.spec, 1.63, 1.64 sources, 1.27, 1.28
by fedora-extras-commits@redhat.com
Author: abompard
Update of /cvs/extras/rpms/amarok/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12694/devel
Modified Files:
.cvsignore amarok.spec sources
Log Message:
update to 1.4.4
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/amarok/devel/.cvsignore,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- .cvsignore 13 Sep 2006 13:27:07 -0000 1.27
+++ .cvsignore 31 Oct 2006 11:01:45 -0000 1.28
@@ -1 +1 @@
-amarok-1.4.3.tar.bz2
+amarok-1.4.4.tar.bz2
Index: amarok.spec
===================================================================
RCS file: /cvs/extras/rpms/amarok/devel/amarok.spec,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- amarok.spec 7 Oct 2006 09:01:54 -0000 1.63
+++ amarok.spec 31 Oct 2006 11:01:45 -0000 1.64
@@ -1,18 +1,16 @@
-# The amarok dev (Ian Monroe) prefers to make amarok excludearched on x86_64
-# than to include the unfinished gstreamer engine (private mail following
-# http://amarok.kde.org/blog/archives/210-And-How-Open-Source-Sucks-Sometim... )
+# TODO:
+# Rio Karma support : libkarma
Name: amarok
Summary: Media player for KDE
-Version: 1.4.3
-Release: 6%{?dist}
+Version: 1.4.4
+Release: 1%{?dist}
Group: Applications/Multimedia
License: GPL
Url: http://amarok.kde.org
# http://download.kde.org/download.php?url=stable/amarok/1.4.3/src
-Source0: http://mirrors.isc.org/pub/kde/stable/amarok/1.4.3/src/amarok-1.4.3.tar.bz2
-Patch0: amarok-1.4.3-playlist_encoding.patch
+Source0: http://mirrors.isc.org/pub/kde/stable/amarok/%{version}/src/amarok-%{vers...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: kdemultimedia-devel >= 6:3.2
@@ -26,6 +24,7 @@
BuildRequires: libtunepimp-devel >= 0.4.0
BuildRequires: kdebase-devel
BuildRequires: alsa-lib-devel
+BuildRequires: xine-lib-devel
# Detected by configure
BuildRequires: ruby, ruby-devel
BuildRequires: libifp-devel, libusb-devel
@@ -43,8 +42,6 @@
%endif
Requires: ruby
-# Helix is the only available engine
-Requires: HelixPlayer
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
@@ -52,10 +49,6 @@
Obsoletes: amarok-arts < 1.3, amarok-akode < 1.3
Provides: amarok-devel = %{version}-%{release}
-# On those archs, there is no engine
-# (Helix is unavailable, gstreamer is in beta, xine is encumbered)
-ExcludeArch: ppc64 x86_64 s390 s390x ia64
-
%description
Amarok is a KDE multimedia player with:
@@ -87,7 +80,6 @@
%prep
%setup -q
-%patch0 -p0 -b .playlist_encoding
@@ -104,7 +96,6 @@
--with-ifp \
--with-libgpod \
--without-mp4v2 \
- --without-xine \
%ifnarch ppc64 x86_64 s390 s390x ia64
--with-helix=%{_libdir}/helix \
%endif
@@ -179,7 +170,6 @@
%{_bindir}/amarokcollectionscanner
%{_bindir}/amarok_proxy.rb
%{_datadir}/apps/%{name}
-%exclude %{_datadir}/apps/%{name}/images/xine_logo.png
%{_datadir}/icons/hicolor/*/*
%{_datadir}/applications/kde/*.desktop
%{_datadir}/servicetypes/*.desktop
@@ -193,6 +183,7 @@
%{_datadir}/services/amarokitpc.protocol
%{_datadir}/services/amaroklastfm.protocol
%{_datadir}/services/amarokpcast.protocol
+%{_libdir}/ruby_lib/*
# DAAP
%{_bindir}/amarok_daapserver.rb
%{_libdir}/kde3/libamarok_daap-mediadevice.*
@@ -224,6 +215,9 @@
# Void engine (noop)
%{_datadir}/services/amarok_void-engine_plugin.desktop
%{_libdir}/kde3/libamarok_void-engine_plugin.*
+# Xine engine
+%{_datadir}/services/amarok_xine-engine.desktop
+%{_libdir}/kde3/libamarok_xine-engine.*
## Gstreamer engine
#%{_datadir}/services/amarok_gst10engine_plugin.desktop
#%{_libdir}/kde3/libamarok_gst10engine_plugin.*
@@ -244,6 +238,10 @@
%changelog
+* Fri Oct 27 2006 Aurelien Bompard <abompard(a)fedoraproject.org> 1.4.4-1
+- version 1.4.4
+- enable xine support since xine is now in Fedora
+
* Sat Oct 07 2006 Aurelien Bompard <abompard(a)fedoraproject.org> 1.4.3-6
- rebuild for new libtunepimp
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/amarok/devel/sources,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- sources 13 Sep 2006 13:27:07 -0000 1.27
+++ sources 31 Oct 2006 11:01:45 -0000 1.28
@@ -1 +1 @@
-b0b4f8952ad23705c70815d50fd0af52 amarok-1.4.3.tar.bz2
+56a9aec42088c338b81252f8e0651781 amarok-1.4.4.tar.bz2
15 years, 6 months
rpms/amarok/FC-6 .cvsignore, 1.27, 1.28 amarok.spec, 1.63, 1.64 sources, 1.27, 1.28
by fedora-extras-commits@redhat.com
Author: abompard
Update of /cvs/extras/rpms/amarok/FC-6
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12694/FC-6
Modified Files:
.cvsignore amarok.spec sources
Log Message:
update to 1.4.4
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/amarok/FC-6/.cvsignore,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- .cvsignore 13 Sep 2006 13:27:07 -0000 1.27
+++ .cvsignore 31 Oct 2006 11:01:42 -0000 1.28
@@ -1 +1 @@
-amarok-1.4.3.tar.bz2
+amarok-1.4.4.tar.bz2
Index: amarok.spec
===================================================================
RCS file: /cvs/extras/rpms/amarok/FC-6/amarok.spec,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- amarok.spec 7 Oct 2006 09:01:54 -0000 1.63
+++ amarok.spec 31 Oct 2006 11:01:42 -0000 1.64
@@ -1,18 +1,16 @@
-# The amarok dev (Ian Monroe) prefers to make amarok excludearched on x86_64
-# than to include the unfinished gstreamer engine (private mail following
-# http://amarok.kde.org/blog/archives/210-And-How-Open-Source-Sucks-Sometim... )
+# TODO:
+# Rio Karma support : libkarma
Name: amarok
Summary: Media player for KDE
-Version: 1.4.3
-Release: 6%{?dist}
+Version: 1.4.4
+Release: 1%{?dist}
Group: Applications/Multimedia
License: GPL
Url: http://amarok.kde.org
# http://download.kde.org/download.php?url=stable/amarok/1.4.3/src
-Source0: http://mirrors.isc.org/pub/kde/stable/amarok/1.4.3/src/amarok-1.4.3.tar.bz2
-Patch0: amarok-1.4.3-playlist_encoding.patch
+Source0: http://mirrors.isc.org/pub/kde/stable/amarok/%{version}/src/amarok-%{vers...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: kdemultimedia-devel >= 6:3.2
@@ -26,6 +24,7 @@
BuildRequires: libtunepimp-devel >= 0.4.0
BuildRequires: kdebase-devel
BuildRequires: alsa-lib-devel
+BuildRequires: xine-lib-devel
# Detected by configure
BuildRequires: ruby, ruby-devel
BuildRequires: libifp-devel, libusb-devel
@@ -43,8 +42,6 @@
%endif
Requires: ruby
-# Helix is the only available engine
-Requires: HelixPlayer
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
@@ -52,10 +49,6 @@
Obsoletes: amarok-arts < 1.3, amarok-akode < 1.3
Provides: amarok-devel = %{version}-%{release}
-# On those archs, there is no engine
-# (Helix is unavailable, gstreamer is in beta, xine is encumbered)
-ExcludeArch: ppc64 x86_64 s390 s390x ia64
-
%description
Amarok is a KDE multimedia player with:
@@ -87,7 +80,6 @@
%prep
%setup -q
-%patch0 -p0 -b .playlist_encoding
@@ -104,7 +96,6 @@
--with-ifp \
--with-libgpod \
--without-mp4v2 \
- --without-xine \
%ifnarch ppc64 x86_64 s390 s390x ia64
--with-helix=%{_libdir}/helix \
%endif
@@ -179,7 +170,6 @@
%{_bindir}/amarokcollectionscanner
%{_bindir}/amarok_proxy.rb
%{_datadir}/apps/%{name}
-%exclude %{_datadir}/apps/%{name}/images/xine_logo.png
%{_datadir}/icons/hicolor/*/*
%{_datadir}/applications/kde/*.desktop
%{_datadir}/servicetypes/*.desktop
@@ -193,6 +183,7 @@
%{_datadir}/services/amarokitpc.protocol
%{_datadir}/services/amaroklastfm.protocol
%{_datadir}/services/amarokpcast.protocol
+%{_libdir}/ruby_lib/*
# DAAP
%{_bindir}/amarok_daapserver.rb
%{_libdir}/kde3/libamarok_daap-mediadevice.*
@@ -224,6 +215,9 @@
# Void engine (noop)
%{_datadir}/services/amarok_void-engine_plugin.desktop
%{_libdir}/kde3/libamarok_void-engine_plugin.*
+# Xine engine
+%{_datadir}/services/amarok_xine-engine.desktop
+%{_libdir}/kde3/libamarok_xine-engine.*
## Gstreamer engine
#%{_datadir}/services/amarok_gst10engine_plugin.desktop
#%{_libdir}/kde3/libamarok_gst10engine_plugin.*
@@ -244,6 +238,10 @@
%changelog
+* Fri Oct 27 2006 Aurelien Bompard <abompard(a)fedoraproject.org> 1.4.4-1
+- version 1.4.4
+- enable xine support since xine is now in Fedora
+
* Sat Oct 07 2006 Aurelien Bompard <abompard(a)fedoraproject.org> 1.4.3-6
- rebuild for new libtunepimp
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/amarok/FC-6/sources,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- sources 13 Sep 2006 13:27:07 -0000 1.27
+++ sources 31 Oct 2006 11:01:42 -0000 1.28
@@ -1 +1 @@
-b0b4f8952ad23705c70815d50fd0af52 amarok-1.4.3.tar.bz2
+56a9aec42088c338b81252f8e0651781 amarok-1.4.4.tar.bz2
15 years, 6 months
rpms/amarok/FC-5 .cvsignore, 1.27, 1.28 amarok.spec, 1.62, 1.63 sources, 1.27, 1.28
by fedora-extras-commits@redhat.com
Author: abompard
Update of /cvs/extras/rpms/amarok/FC-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv12694/FC-5
Modified Files:
.cvsignore amarok.spec sources
Log Message:
update to 1.4.4
Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/amarok/FC-5/.cvsignore,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- .cvsignore 13 Sep 2006 13:27:07 -0000 1.27
+++ .cvsignore 31 Oct 2006 11:01:33 -0000 1.28
@@ -1 +1 @@
-amarok-1.4.3.tar.bz2
+amarok-1.4.4.tar.bz2
Index: amarok.spec
===================================================================
RCS file: /cvs/extras/rpms/amarok/FC-5/amarok.spec,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- amarok.spec 7 Oct 2006 09:01:50 -0000 1.62
+++ amarok.spec 31 Oct 2006 11:01:33 -0000 1.63
@@ -1,18 +1,16 @@
-# The amarok dev (Ian Monroe) prefers to make amarok excludearched on x86_64
-# than to include the unfinished gstreamer engine (private mail following
-# http://amarok.kde.org/blog/archives/210-And-How-Open-Source-Sucks-Sometim... )
+# TODO:
+# Rio Karma support : libkarma
Name: amarok
Summary: Media player for KDE
-Version: 1.4.3
-Release: 6%{?dist}
+Version: 1.4.4
+Release: 1%{?dist}
Group: Applications/Multimedia
License: GPL
Url: http://amarok.kde.org
# http://download.kde.org/download.php?url=stable/amarok/1.4.3/src
-Source0: http://mirrors.isc.org/pub/kde/stable/amarok/1.4.3/src/amarok-1.4.3.tar.bz2
-Patch0: amarok-1.4.3-playlist_encoding.patch
+Source0: http://mirrors.isc.org/pub/kde/stable/amarok/%{version}/src/amarok-%{vers...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: kdemultimedia-devel >= 6:3.2
@@ -26,6 +24,7 @@
BuildRequires: libtunepimp-devel >= 0.4.0
BuildRequires: kdebase-devel
BuildRequires: alsa-lib-devel
+BuildRequires: xine-lib-devel
# Detected by configure
BuildRequires: ruby, ruby-devel
BuildRequires: libifp-devel, libusb-devel
@@ -43,8 +42,6 @@
%endif
Requires: ruby
-# Helix is the only available engine
-Requires: HelixPlayer
Requires(post): desktop-file-utils
Requires(postun): desktop-file-utils
@@ -52,10 +49,6 @@
Obsoletes: amarok-arts < 1.3, amarok-akode < 1.3
Provides: amarok-devel = %{version}-%{release}
-# On those archs, there is no engine
-# (Helix is unavailable, gstreamer is in beta, xine is encumbered)
-ExcludeArch: ppc64 x86_64 s390 s390x ia64
-
%description
Amarok is a KDE multimedia player with:
@@ -87,7 +80,6 @@
%prep
%setup -q
-%patch0 -p0 -b .playlist_encoding
@@ -104,7 +96,6 @@
--with-ifp \
--with-libgpod \
--without-mp4v2 \
- --without-xine \
%ifnarch ppc64 x86_64 s390 s390x ia64
--with-helix=%{_libdir}/helix \
%endif
@@ -179,7 +170,6 @@
%{_bindir}/amarokcollectionscanner
%{_bindir}/amarok_proxy.rb
%{_datadir}/apps/%{name}
-%exclude %{_datadir}/apps/%{name}/images/xine_logo.png
%{_datadir}/icons/hicolor/*/*
%{_datadir}/applications/kde/*.desktop
%{_datadir}/servicetypes/*.desktop
@@ -193,6 +183,7 @@
%{_datadir}/services/amarokitpc.protocol
%{_datadir}/services/amaroklastfm.protocol
%{_datadir}/services/amarokpcast.protocol
+%{_libdir}/ruby_lib/*
# DAAP
%{_bindir}/amarok_daapserver.rb
%{_libdir}/kde3/libamarok_daap-mediadevice.*
@@ -224,6 +215,9 @@
# Void engine (noop)
%{_datadir}/services/amarok_void-engine_plugin.desktop
%{_libdir}/kde3/libamarok_void-engine_plugin.*
+# Xine engine
+%{_datadir}/services/amarok_xine-engine.desktop
+%{_libdir}/kde3/libamarok_xine-engine.*
## Gstreamer engine
#%{_datadir}/services/amarok_gst10engine_plugin.desktop
#%{_libdir}/kde3/libamarok_gst10engine_plugin.*
@@ -244,6 +238,10 @@
%changelog
+* Fri Oct 27 2006 Aurelien Bompard <abompard(a)fedoraproject.org> 1.4.4-1
+- version 1.4.4
+- enable xine support since xine is now in Fedora
+
* Sat Oct 07 2006 Aurelien Bompard <abompard(a)fedoraproject.org> 1.4.3-6
- rebuild for new libtunepimp
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/amarok/FC-5/sources,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- sources 13 Sep 2006 13:27:07 -0000 1.27
+++ sources 31 Oct 2006 11:01:33 -0000 1.28
@@ -1 +1 @@
-b0b4f8952ad23705c70815d50fd0af52 amarok-1.4.3.tar.bz2
+56a9aec42088c338b81252f8e0651781 amarok-1.4.4.tar.bz2
15 years, 6 months
rpms/childsplay/devel childsplay.spec, 1.6, 1.7 sources, 1.4, 1.5 childsplay-0.81.8-assetml.patch, 1.2, NONE
by fedora-extras-commits@redhat.com
Author: jwrdegoede
Update of /cvs/extras/rpms/childsplay/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv9700
Modified Files:
childsplay.spec sources
Removed Files:
childsplay-0.81.8-assetml.patch
Log Message:
* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
- New upstream release 0.84.1
- Install the (still used) assetml files under %{_datadir}/%{name} instead
of under %{_datadir}/assetml, since we no longer ship libassetml
Index: childsplay.spec
===================================================================
RCS file: /cvs/extras/rpms/childsplay/devel/childsplay.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- childsplay.spec 22 Sep 2006 09:39:06 -0000 1.6
+++ childsplay.spec 31 Oct 2006 10:54:52 -0000 1.7
@@ -1,5 +1,5 @@
Name: childsplay
-Version: 0.83.1
+Version: 0.84.1
Release: 1%{?dist}
Summary: Suite of educational games for young children
Group: Amusements/Games
@@ -8,11 +8,10 @@
Source0: http://dl.sf.net/sourceforge/%{name}/%{name}-%{version}.tgz
Source1: childsplay.desktop
Patch0: childsplay-0.81.8-highscore.patch
-Patch1: childsplay-0.81.8-assetml.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
BuildRequires: desktop-file-utils
-Requires: pygame, childsplay_plugins >= 0.83
+Requires: pygame, childsplay_plugins >= 0.84, hicolor-icon-theme
%description
Childsplay is a suite of educational games for young children. It's written in
@@ -27,8 +26,6 @@
%prep
%setup -q
%patch0 -p1 -z .highscore
-# no backups otherwise the backups endup in the rpm.
-%patch1 -p1
# we don't use the buggy provided install
rm install.py
# the translation is merged into the assetml file, so don't ship it seperatly
@@ -49,7 +46,7 @@
echo "MODULESDIR=\"%{_datadir}/%{name}/plugins\"" >> BASEPATH.py
echo "RCDIR=\"%{_datadir}/%{name}/plugins/ConfigData\"" >> BASEPATH.py
echo "LOCALEDIR=\"%{_datadir}/locale\"" >> BASEPATH.py
-echo "ASSETMLDIR=\"%{_datadir}/assetml\"" >> BASEPATH.py
+echo "ASSETMLDIR=\"%{_datadir}\"" >> BASEPATH.py
echo "CHILDSPLAYRC=\"childsplayrc\"" >> BASEPATH.py
echo "HOME_DIR_NAME=\".childsplay\"" >> BASEPATH.py
@@ -59,7 +56,6 @@
# INSTALL.sh is seriously borked, so DIY
mkdir -p $RPM_BUILD_ROOT%{_bindir}
mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/assetml
mkdir -p $RPM_BUILD_ROOT%{_datadir}/locale
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man6
cp -a *.py $RPM_BUILD_ROOT%{_datadir}/%{name}
@@ -68,9 +64,7 @@
$RPM_BUILD_ROOT%{_bindir}/letters-trans
cp -a Data $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -a lib/* $RPM_BUILD_ROOT%{_datadir}/%{name}/plugins
-cp -a assetml/childsplay/* $RPM_BUILD_ROOT%{_datadir}/%{name}
-mv $RPM_BUILD_ROOT%{_datadir}/%{name}/*/*.assetml \
- $RPM_BUILD_ROOT%{_datadir}/assetml
+cp -a assetml/%{name}/* $RPM_BUILD_ROOT%{_datadir}/%{name}
cp -a locale/* $RPM_BUILD_ROOT%{_datadir}/locale
cp -a man/* $RPM_BUILD_ROOT%{_mandir}/man6
@@ -115,14 +109,18 @@
%doc README* doc/GPL* doc/README* License_*.ttf.txt
%{_bindir}/%{name}
%{_bindir}/letters-trans
-%{_datadir}/childsplay
-%{_datadir}/assetml
+%{_datadir}/%{name}
%{_mandir}/man6/*.6.gz
%{_datadir}/applications/fedora-%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%changelog
+* Tue Oct 31 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.84.1-1
+- New upstream release 0.84.1
+- Install the (still used) assetml files under %%{_datadir}/%%{name} instead
+ of under %%{_datadir}/assetml, since we no longer ship libassetml
+
* Fri Sep 22 2006 Hans de Goede <j.w.r.degoede(a)hhs.nl> 0.83.1-1
- New upstream release 0.83.1
Index: sources
===================================================================
RCS file: /cvs/extras/rpms/childsplay/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 22 Sep 2006 09:39:55 -0000 1.4
+++ sources 31 Oct 2006 10:54:52 -0000 1.5
@@ -1 +1 @@
-bdcd090f0adcd992c62a60ef39819e14 childsplay-0.83.1.tgz
+ae4e26a361b12d88b2d597a57568ac5e childsplay-0.84.1.tgz
--- childsplay-0.81.8-assetml.patch DELETED ---
15 years, 6 months