rpms/amarok/EL-5 amarok-1.4.7-xdg.patch, NONE, 1.1 amarok-1.4.8-gcc43.patch, NONE, 1.1 .cvsignore, 1.29, 1.30 amarok.spec, 1.74, 1.75 sources, 1.29, 1.30 amarok-1.4-engines-cfg.patch, 1.1, NONE amarok-1.4.1-gstreamer.patch, 1.1, NONE amarok-1.4.3-playlist_encoding.patch, 1.1, NONE amarok-1.4.4-lastfm+xine-lib-1.1.3.patch, 1.1, NONE amarok-1.4.4-libgpod-0.4.2.patch, 1.1, NONE amarok-1.4.5-CVE-2006-6979.patch, 1.2, NONE

Rex Dieter (rdieter) fedora-extras-commits at redhat.com
Tue Apr 15 20:01:10 UTC 2008


Author: rdieter

Update of /cvs/pkgs/rpms/amarok/EL-5
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv2123

Modified Files:
	.cvsignore amarok.spec sources 
Added Files:
	amarok-1.4.7-xdg.patch amarok-1.4.8-gcc43.patch 
Removed Files:
	amarok-1.4-engines-cfg.patch amarok-1.4.1-gstreamer.patch 
	amarok-1.4.3-playlist_encoding.patch 
	amarok-1.4.4-lastfm+xine-lib-1.1.3.patch 
	amarok-1.4.4-libgpod-0.4.2.patch 
	amarok-1.4.5-CVE-2006-6979.patch 
Log Message:
* Tue Apr 15 2008 Rex Dieter <rdieter at fedoraproject.org> - 1.4.9.1-1
- amarok-1.4.9.1


amarok-1.4.7-xdg.patch:

--- NEW FILE amarok-1.4.7-xdg.patch ---
diff -up amarok-1.4.7/amarok/src/Options1.ui.h~ amarok-1.4.7/amarok/src/Options1.ui.h
--- amarok-1.4.7/amarok/src/Options1.ui.h~	2007-08-07 20:48:28.000000000 +0300
+++ amarok-1.4.7/amarok/src/Options1.ui.h	2007-10-02 22:45:03.000000000 +0300
@@ -27,8 +27,8 @@ void Options1::init()
     //slotUpdateRatingsFrame();
 
     QStringList browsers;
-    browsers << "konqueror" << "firefox" << "opera" << "galeon" << "epiphany"
-             << "safari" << "mozilla";
+    browsers << "xdg-open" << "konqueror" << "firefox" << "opera" << "galeon"
+             << "epiphany" << "safari" << "mozilla";
 
     // Remove browsers which are not actually installed
     for( QStringList::Iterator it = browsers.begin(), end = browsers.end(); it != end; ) {
@@ -41,8 +41,8 @@ void Options1::init()
     if ( KStandardDirs::findExe( "open" ) != QString::null )
         browsers.prepend( i18n( "Default Browser" ) );
 #else
-    if ( KStandardDirs::findExe( "kfmclient" ) != QString::null )
-        browsers.prepend( i18n( "Default KDE Browser" ) );
+    if ( KStandardDirs::findExe( "xdg-open" ) != QString::null )
+        browsers.prepend( i18n( "Default Browser" ) );
 #endif
 
     kComboBox_browser->insertStringList( browsers );
@@ -54,7 +54,7 @@ void Options1::init()
 #ifdef Q_WS_MAC
             "open"
 #else
-            "kfmclient openURL"
+            "xdg-open"
 #endif
       )
     {

amarok-1.4.8-gcc43.patch:

--- NEW FILE amarok-1.4.8-gcc43.patch ---
diff -up amarok-1.4.8/amarok/src/metadata/mp4/mp4file.cpp.gcc43 amarok-1.4.8/amarok/src/metadata/mp4/mp4file.cpp
--- amarok-1.4.8/amarok/src/metadata/mp4/mp4file.cpp.gcc43	2007-12-17 09:53:19.000000000 -0600
+++ amarok-1.4.8/amarok/src/metadata/mp4/mp4file.cpp	2008-02-21 21:05:18.000000000 -0600
@@ -30,6 +30,7 @@ email                : aumuell at reserv.at
 #include <audioproperties.h>
 
 #include <stdint.h>
+#include <cstdlib>
 
 #define MP4V2_HAS_WRITE_BUG 1
 
diff -up amarok-1.4.8/amarok/src/metadata/mp4/taglib_mp4filetyperesolver.cpp.gcc43 amarok-1.4.8/amarok/src/metadata/mp4/taglib_mp4filetyperesolver.cpp
--- amarok-1.4.8/amarok/src/metadata/mp4/taglib_mp4filetyperesolver.cpp.gcc43	2007-12-17 09:53:19.000000000 -0600
+++ amarok-1.4.8/amarok/src/metadata/mp4/taglib_mp4filetyperesolver.cpp	2008-02-21 21:05:18.000000000 -0600
@@ -24,6 +24,7 @@
 
 #include "taglib_mp4filetyperesolver.h"
 #include "mp4file.h"
+#include <cstring>
 
 TagLib::File *MP4FileTypeResolver::createFile(const char *fileName,
         bool readProperties,
diff -up amarok-1.4.8/amarok/src/metadata/mp4/mp4tag.cpp.gcc43 amarok-1.4.8/amarok/src/metadata/mp4/mp4tag.cpp
--- amarok-1.4.8/amarok/src/metadata/mp4/mp4tag.cpp.gcc43	2007-12-17 09:53:19.000000000 -0600
+++ amarok-1.4.8/amarok/src/metadata/mp4/mp4tag.cpp	2008-02-21 21:05:18.000000000 -0600
@@ -24,6 +24,8 @@ email                : andrew.leadbetter
 
 #include <tag.h>
 #include <stdint.h>
+#include <cstdlib>
+#include <cstring>
 
 using namespace TagLib;
 
diff -up amarok-1.4.8/amarok/src/metadata/mp4/mp4properties.cpp.gcc43 amarok-1.4.8/amarok/src/metadata/mp4/mp4properties.cpp
--- amarok-1.4.8/amarok/src/metadata/mp4/mp4properties.cpp.gcc43	2007-12-17 09:53:19.000000000 -0600
+++ amarok-1.4.8/amarok/src/metadata/mp4/mp4properties.cpp	2008-02-21 21:05:18.000000000 -0600
@@ -30,6 +30,7 @@ email                : andrew.leadbetter
 #endif
 
 #include <stdint.h>
+#include <cstring>
 
 #ifndef UINT64_TO_DOUBLE
 #define UINT64_TO_DOUBLE(a) ((double)((int64_t)(a)))
diff -up amarok-1.4.8/amarok/src/engine/helix/hxplayercontrol.cpp.gcc43 amarok-1.4.8/amarok/src/engine/helix/hxplayercontrol.cpp
--- amarok-1.4.8/amarok/src/engine/helix/hxplayercontrol.cpp.gcc43	2007-12-17 09:53:18.000000000 -0600
+++ amarok-1.4.8/amarok/src/engine/helix/hxplayercontrol.cpp	2008-02-21 21:07:10.000000000 -0600
@@ -15,6 +15,8 @@
  the alsa guys
  ***************************************************************************/
 
+#include <cstdlib>
+#include <cstring>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <sys/wait.h>
diff -up amarok-1.4.8/amarok/src/engine/helix/helix-sp/helix-sp.h.gcc43 amarok-1.4.8/amarok/src/engine/helix/helix-sp/helix-sp.h
--- amarok-1.4.8/amarok/src/engine/helix/helix-sp/helix-sp.h.gcc43	2007-12-17 09:53:18.000000000 -0600
+++ amarok-1.4.8/amarok/src/engine/helix/helix-sp/helix-sp.h	2008-02-21 21:07:54.000000000 -0600
@@ -23,6 +23,7 @@ class HelixSimplePlayerAudioStreamInfoRe
 #include <limits.h>
 #include <sys/param.h>
 #include <pthread.h>
+#include <cstring>
 #include <vector>
 #include <config.h>
 #include <iostream>
diff -up amarok-1.4.8/amarok/src/engine/helix/helix-engine.cpp.gcc43 amarok-1.4.8/amarok/src/engine/helix/helix-engine.cpp
--- amarok-1.4.8/amarok/src/engine/helix/helix-engine.cpp.gcc43	2007-12-17 09:53:18.000000000 -0600
+++ amarok-1.4.8/amarok/src/engine/helix/helix-engine.cpp	2008-02-21 21:09:38.000000000 -0600
@@ -15,6 +15,7 @@
 #include <climits>
 #include <cmath>
 #include <stdarg.h>
+#include <cstring>
 
 #include <config.h>
 


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/amarok/EL-5/.cvsignore,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- .cvsignore	7 Feb 2007 18:27:50 -0000	1.29
+++ .cvsignore	15 Apr 2008 20:00:33 -0000	1.30
@@ -1 +1 @@
-amarok-1.4.5.tar.bz2
+amarok-1.4.9.1.tar.bz2


Index: amarok.spec
===================================================================
RCS file: /cvs/pkgs/rpms/amarok/EL-5/amarok.spec,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- amarok.spec	19 Feb 2007 19:57:29 -0000	1.74
+++ amarok.spec	15 Apr 2008 20:00:33 -0000	1.75
@@ -1,104 +1,158 @@
 # TODO:
 # Rio Karma support : libkarma
 
+%if 0%{?fedora} < 9
+# define to include konquisidebar support for kde3 desktop
+%define konq 1
+%endif
+%if 0%{?fedora} > 6 
+# suffix for kde3 -devel packages
+%define kde3 3
+%endif
+
+# Helix engine on archs where it is available
+%ifnarch ppc64 x86_64 s390 s390x ia64 sparc sparc64 alpha
+# consider omitting helix support, srsly, does *anyone* use it? -- Rex
+%define _with_helix --with-helix=%{_libdir}/helix
+%endif
+
+%if 0%{?fedora}
+%define _with_ifp --with-ifp
+%define _with_libgpod --with-libgpod
+%define _with_libmtp --with-libmtp
+%define _with_libnjb --with-libnjb
+%define _with_mp4v2 --with-mp4v2
+%endif
+
 Name:       amarok
-Summary:    Media player for KDE
-Version:    1.4.5
-Release:    4%{?dist}
+Summary:    Media player
+Version:    1.4.9.1
+Release:    1%{?dist}
 
 Group: 	    Applications/Multimedia
-License:    GPL
+License:    GPLv2+
 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/%{version}/src/amarok-%{version}.tar.bz2
-Patch0:     amarok-1.4.5-CVE-2006-6979.patch
+Source0:    ftp://ftp.kde.org/pub/kde/stable/amarok/%{version}/src/amarok-%{version}.tar.bz2
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildRequires:  kdemultimedia-devel >= 6:3.2
-BuildRequires:  taglib-devel >= 1.3, esound-devel
-BuildRequires:  desktop-file-utils, gettext
-BuildRequires:  libGL
-BuildRequires:  libmusicbrainz-devel, xmms-devel >= 1:1.2
-BuildRequires:  libvisual-devel >= 0.4.0, SDL-devel
-BuildRequires:  libtool-ltdl-devel
-BuildRequires:  mysql-devel, postgresql-devel
-BuildRequires:  libtunepimp-devel >= 0.4.0
-BuildRequires:  kdebase-devel
+Patch1:     amarok-1.4.8-gcc43.patch
+# Use xdg-open to start the selected browser
+Patch2:     amarok-1.4.7-xdg.patch
+
 BuildRequires:  alsa-lib-devel
-BuildRequires:  xine-lib-devel
-# Detected by configure
-BuildRequires:  ruby, ruby-devel
-BuildRequires:  libifp-devel, libusb-devel
+BuildRequires:  desktop-file-utils
+BuildRequires:  esound-devel
+BuildRequires:  gettext
+%{?_with_helix:BuildRequires:  HelixPlayer}
+BuildRequires:  kdelibs%{?kde3}-devel
+%if 0%{?konq}
+BuildRequires:  kdebase%{?kde3}-devel
+%else
+Obsoletes: %{name}-konqueror < %{version}-%{release}
+%endif
+BuildRequires:  taglib-devel 
+%{?_with_ifp:BuildRequires:  libifp-devel}
 # Ipod
-BuildRequires:  libgpod-devel
-# Creative Nomad Jukebox
-BuildRequires:  libnjb-devel
+%{?_with_libgpod:BuildRequires:  libgpod-devel}
+%{?_with_mp4v2:BuildRequires: libmp4v2-devel}
 # MTP players
-BuildRequires:  libmtp-devel
-## Gstreamer engine
-#BuildRequires:  gstreamer-plugins-base-devel, gstreamer-plugins-good-devel, gstreamer-devel
-# Helix engine on archs where it is available
-%ifnarch ppc64 x86_64 s390 s390x ia64 sparc sparc64
-BuildRequires:  HelixPlayer
+%{?_with_libmtp:BuildRequires:  libmtp-devel}
+BuildRequires:  libmusicbrainz-devel
+# Creative Nomad Jukebox
+%{?_with_njb:BuildRequires:  libnjb-devel}
+BuildRequires:  libtool
+%if 0%{?fedora} > 4 || 0%{?rhel} > 4
+BuildRequires:  libtool-ltdl-devel
 %endif
+BuildRequires:  libtunepimp-devel
+BuildRequires:  libusb-devel
+BuildRequires:  libvisual-devel
+BuildRequires:  mysql-devel
+BuildRequires:  postgresql-devel
+BuildRequires:  ruby-devel ruby
+BuildRequires:  SDL-devel
+BuildRequires:  taglib-devel
+BuildRequires:  xine-lib-devel
+BuildRequires:  xmms-devel
 
+# For dir ownership and some default plugins (lyrics), -ruby subpkg?  -- Rex
 Requires:  ruby
 
-Requires(post): desktop-file-utils
-Requires(postun): desktop-file-utils
+# To open the selected browser, works with Patch2
+Requires:  xdg-utils
+Requires(post): xdg-utils
+Requires(postun): xdg-utils
 
 Obsoletes: amarok-arts < 1.3, amarok-akode < 1.3
+
+Obsoletes: amarok-devel < %{version}-%{release}
+%if 0%{?fedora} > 6 && 0%{?fedora} < 9
+# need to keep this around for previous releases, so not to break multilib compat.
 Provides:  amarok-devel = %{version}-%{release}
+%endif
+
+# engines, etc...
+# old, obsolete ones: arts, akode
+Obsoletes: amarok-arts < 1.3, amarok-akode < 1.3
+# xine-lib
+Provides: %{name}-engine-xine = %{version}-%{release}
 
 
 %description
-Amarok is a KDE multimedia player with:
+Amarok is a multimedia player with:
  - fresh playlist concept, very fast to use, with drag and drop
  - plays all formats supported by the various engines
  - audio effects, like reverb and compressor
  - compatible with the .m3u and .pls formats for playlists
  - nice GUI, integrates into the KDE look, but with a unique touch
 
+%if 0%{?_with_helix:1}
 Amarok can use various engines to decode sound : helix and xine.
-(gstreamer is in the works)
-To use the helix engine, you'll have to install either HelixPlayer
+To use the helix engine, you need to install either HelixPlayer
 or RealPlayer
+%endif
 
+%package konqueror
+Summary: Amarok konqueror (service menus, sidebar) support
+Group:   Applications/Multimedia
+Requires: %{name} = %{version}-%{release}
+%description konqueror
+%{summary}.
 
 %package visualisation
 Summary:    Visualisation plugins for Amarok
 Group:      Applications/Multimedia
-Requires:   %{name} = %{version}
+Requires:   %{name} = %{version}-%{release}
 # No plugins by default, we need libvisual-plugins
 Requires:   libvisual-plugins
-
 %description visualisation
 Amarok can use visualisation plugins from different origins.
 Right now, only xmms is supported, which means that you can
 use any of xmms' visualisation plugins with Amarok.
 
 
-
 %prep
-%setup -q
-%patch0 -p0 -b .CVE-2006-6979
+%setup -q 
 
+%patch1 -p1 -b .gcc43
+%patch2 -p1 -b .xdg
 
 
 %build
 unset QTDIR && . %{_sysconfdir}/profile.d/qt.sh
+
 %configure \
-     --disable-debug \
+     --disable-debug --disable-warnings \
      --disable-rpath \
-     --with-gstreamer10 \
      --enable-mysql \
      --enable-postgresql \
-     --with-ifp \
-     --with-libgpod \
-     --without-mp4v2 \
-%ifnarch ppc64 x86_64 s390 s390x ia64 sparc sparc64
-     --with-helix=%{_libdir}/helix \
-%endif
+     %{?_with_helix} %{!?_with_helix:--without-helix} \
+     %{?_with_ifp} %{!?_with_ifp:--without-ifp} \
+     %{?_with_libgpod} %{!?_with_libgpod:--without-libgpod} \
+     %{?_with_libmtp} %{!?_with_libmtp:--without-libmtp} \
+     %{?_with_libnjb} %{!?_with_libnjb:--without-libnjb  \
+     %{?_with_mp4v2} %{!?_with_mp4v2:--without-mp4v2}
+
 #     --enable-final \
 #     --with-nmm \
 #     --with-mas
@@ -113,47 +167,38 @@
 make install DESTDIR=$RPM_BUILD_ROOT 
 
 # desktop files
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/apps/konqueror/servicemenus
-
 desktop-file-install  --vendor "" \
         --dir $RPM_BUILD_ROOT%{_datadir}/applications/kde \
         --delete-original \
         $RPM_BUILD_ROOT%{_datadir}/applications/kde/%{name}.desktop
 
-#rm -f $RPM_BUILD_ROOT%{_datadir}/applications/kde/amarokapp.desktop
-# Amarok crashes without the *.la files !
-#find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
-# Remove the *.la file in /usr/lib though, those are OK to delete
-rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
+# unpackaged files
+rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
+%if ! 0%{?konq}
+rm -f $RPM_BUILD_ROOT%{_datadir}/apps/konqueror/servicemenus/*.desktop
+%endif
 
 
-%find_lang %{name}
+%find_lang %{name} 
 # HTML
 for lang_dir in $RPM_BUILD_ROOT%{_docdir}/HTML/* ; do
-  lang=$(basename $lang_dir)
-  [ "$lang" == "en" ] && d=en/%{name} || d=$lang
-  echo "%lang($lang) %doc %{_docdir}/HTML/$d" >> %{name}.lang
+  if [ -d $lang_dir ]; then
+    lang=$(basename $lang_dir)
+    [ "$lang" == "en" ] && d=en/%{name} || d=$lang
+    echo "%lang($lang) %doc %{_docdir}/HTML/$d" >> %{name}.lang
+  fi
 done
 
 
 %post
-# update icon themes if necessary
-touch --no-create %{_datadir}/icons/hicolor || :
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
-    %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
-update-desktop-database &> /dev/null ||:
-ldconfig
+/sbin/ldconfig
+xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || :
+xdg-desktop-menu forceupdate 2> /dev/null || :
 
 %postun
-# update icon themes if necessary
-touch --no-create %{_datadir}/icons/hicolor || :
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
-    %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
-update-desktop-database &> /dev/null ||:
-ldconfig
+/sbin/ldconfig
+xdg-icon-resource forceupdate --theme hicolor 2> /dev/null || :
+xdg-desktop-menu forceupdate 2> /dev/null || :
 
 
 %clean
@@ -161,26 +206,25 @@
 
 
 %files -f %{name}.lang
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %doc COPYING AUTHORS ChangeLog README
 %{_bindir}/amarok
 %{_bindir}/amarokapp
 %{_bindir}/amarokcollectionscanner
 %{_bindir}/amarok_proxy.rb
-%{_datadir}/apps/%{name}
-%{_datadir}/icons/hicolor/*/*
+%{_datadir}/apps/amarok/
+%{_datadir}/icons/hicolor/*/*/*
 %{_datadir}/applications/kde/*.desktop
 %{_datadir}/servicetypes/*.desktop
-%{_datadir}/apps/konqueror/servicemenus/*.desktop
-%{_libdir}/kde3/konqsidebar_universalamarok.*
-%{_libdir}/libamarok.*
-%{_datadir}/apps/konqsidebartng/*/amarok.desktop
 %{_datadir}/apps/profiles/amarok.profile.xml
 %{_datadir}/config/amarokrc
 %{_datadir}/config.kcfg/*.kcfg
 %{_datadir}/services/amarokitpc.protocol
 %{_datadir}/services/amaroklastfm.protocol
 %{_datadir}/services/amarokpcast.protocol
+# -libs ?  -- Rex
+%{_libdir}/libamarok.*
+# -ruby ? -- Rex
 %{_libdir}/ruby_lib/*
 # DAAP
 %{_bindir}/amarok_daapserver.rb
@@ -195,21 +239,32 @@
 # SMB
 %{_datadir}/services/amarok_smb-device.desktop
 %{_libdir}/kde3/libamarok_smb-device.*
+%if 0%{?_with_libgpod:1}
 # IPod
 %{_datadir}/services/amarok_ipod-mediadevice.desktop
 %{_libdir}/kde3/libamarok_ipod-mediadevice.*
+%endif
 # VFAT
 %{_datadir}/services/amarok_generic-mediadevice.desktop
 %{_libdir}/kde3/libamarok_generic-mediadevice.*
+%if 0%{?_with_ifp:1}
 # iRiver
 %{_datadir}/services/amarok_ifp-mediadevice.desktop
 %{_libdir}/kde3/libamarok_ifp-mediadevice.*
+%endif
+%if 0%{?_with_njb:1}
 # Creative Zen
 %{_datadir}/services/amarok_njb-mediadevice.desktop
 %{_libdir}/kde3/libamarok_njb-mediadevice.*
+%endif
+%if 0%{?_with_libmtp:1}
 # MTP players
 %{_datadir}/services/amarok_mtp-mediadevice.desktop
 %{_libdir}/kde3/libamarok_mtp-mediadevice.*
+%endif
+# Rio Karma
+#%{_datadir}/services/amarok_riokarma-mediadevice.desktop
+#%{_libdir}/kde3/libamarok_riokarma-mediadevice.*
 # Void engine (noop)
 %{_datadir}/services/amarok_void-engine_plugin.desktop
 %{_libdir}/kde3/libamarok_void-engine_plugin.*
@@ -220,21 +275,101 @@
 #%{_datadir}/services/amarok_gst10engine_plugin.desktop
 #%{_libdir}/kde3/libamarok_gst10engine_plugin.*
 # Helix engine
-%ifnarch ppc64 x86_64 s390 s390x ia64 sparc sparc64
+%if 0%{?_with_helix:1}
 %{_libdir}/kde3/libamarok_helixengine_plugin.*
 %{_datadir}/services/amarok_helixengine_plugin.desktop
 %endif
 
-
-
+%if 0%{?konq}
+%files konqueror
+%defattr(-,root,root,-)
+%{_datadir}/apps/konqueror/servicemenus/*.desktop
+%{_libdir}/kde3/konqsidebar_universalamarok.*
+%{_datadir}/apps/konqsidebartng/*/amarok.desktop
+%endif
 
 %files visualisation
-%defattr(-,root,root)
+%defattr(-,root,root,-)
 %{_bindir}/amarok_libvisual
 
 
-
 %changelog
+* Tue Apr 15 2008 Rex Dieter <rdieter at fedoraproject.org> - 1.4.9.1-1
+- amarok-1.4.9.1
+
+* Wed Mar 12 2008 Rex Dieter <rdieter at fedoraproject.org> - 1.4.8-5
+- -konqueror: drop Obsoletes: %%name < 1.4.8-4 , which breaks 
+  multilib upgrades (#436578)
+
+* Thu Feb 21 2008 Rex Dieter <rdieter at fedoraproject.org> - 1.4.8-4
+- -konqueror subpkg (#426803)
+- fix multiarch conflicts (#340641)
+  drop Provides: amarok-devel (f9+), add Obsoletes: amarok-devel
+- gcc43 patch (#433904)
+
+* Mon Feb 18 2008 Fedora Release Engineering <rel-eng at fedoraproject.org> - 1.4.8-3
+- Autorebuild for GCC 4.3
+
+* Wed Jan 09 2008 Rex Dieter <rdieter[AT]fedoraproject.org> 1.4.8-2
+- f9+: don't build/include konq(3) side bar support
+
+* Thu Dec 20 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.4.8-1
+- amarok-1.4.8
+
+* Fri Dec 07 2007 Alex Lancaster <alexlan[AT]fedoraproject.org> 1.4.7-14
+- Rebuild for new openssl
+
+* Thu Nov 29 2007 Rex Dieter <rdieter[AT]fedoraproejct.org> 1.4.7-13
+- fix --with-mp4v2 handling (#346011#c5,6)
+
+* Thu Nov 29 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.4.7-12
+- --with-mp4v2 (#346011#c3)
+- fix asf/wma support (rh#346011,kde#151733)
+
+* Wed Nov 21 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.4.7-11
+- dynamic mode floods playlist ... (kde #148317)
+
+* Wed Nov 21 2007 Todd Zullinger <tmz at pobox.com> 1.4.7-10
+- rebuild for libgpod-0.6.0
+
+* Tue Nov 20 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.4.7-9
+- cosmetics (cleanup/sort BR's mostly)
+- omit "for KDE" from summary/description
+- make gst support toggled by macro (disabled by default)
+
+* Sat Nov 10 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.7-8
+- rebuild
+
+* Sun Oct 07 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.7-7
+- use xdg-open to start the configured browser
+
+* Sat Oct 06 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.7-6
+- add "alpha" to the list of archs where HelixPlayer is not available
+  (bug 318431)
+
+* Fri Sep 28 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.7-5
+- add patch 1 to fix Fedora bug 242862: Amarok doesn't support transfer
+  of Unicode filenames to MTP devices
+
+* Sun Sep 02 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.7-4
+- add patch for kde bug 147126 : amarok freezes when trying to play
+  mp3 files without mp3 support
+
+* Fri Aug 24 2007 Todd Zullinger <tmz at pobox.com> 1.4.7-3
+- rebuild with libgpod-0.5.2
+
+* Sat Aug 18 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.7-2
+- version 1.4.7
+
+* Sun Aug 05 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.6-3
+- rebuild for new libmtp (bug 250905)
+
+* Wed Jun 27 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.6-2
+- add explicit Requires on kdelibs >= 3.5.7 to fix bug 245386
+
+* Mon Jun 18 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.6-1
+- version 1.4.6
+
 * Mon Feb 19 2007 Aurelien Bompard <abompard at fedoraproject.org> 1.4.5-4
 - have the visualisation subpackage require libvisual-plugins (bug 229131)
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/amarok/EL-5/sources,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- sources	7 Feb 2007 18:27:50 -0000	1.29
+++ sources	15 Apr 2008 20:00:33 -0000	1.30
@@ -1 +1 @@
-1dac1cb5ac9c9cdabdab5f69b39e92c8  amarok-1.4.5.tar.bz2
+aa588778379a391ad3f4b3fc770217e4  amarok-1.4.9.1.tar.bz2


--- amarok-1.4-engines-cfg.patch DELETED ---


--- amarok-1.4.1-gstreamer.patch DELETED ---


--- amarok-1.4.3-playlist_encoding.patch DELETED ---


--- amarok-1.4.4-lastfm+xine-lib-1.1.3.patch DELETED ---


--- amarok-1.4.4-libgpod-0.4.2.patch DELETED ---


--- amarok-1.4.5-CVE-2006-6979.patch DELETED ---




More information about the fedora-extras-commits mailing list