Hello community, here is the log from the commit of package pithos for openSUSE:Factory checked in at 2012-05-07 22:48:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pithos (Old) and /work/SRC/openSUSE:Factory/.pithos.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pithos", Maintainer is "" Changes: -------- New Changes file: --- /dev/null 2012-05-03 01:24:41.895590051 +0200 +++ /work/SRC/openSUSE:Factory/.pithos.new/pithos.changes 2012-05-07 22:48:55.000000000 +0200 @@ -0,0 +1,31 @@ +------------------------------------------------------------------- +Wed Apr 25 15:06:50 UTC 2012 - [email protected] + +- Updated to new version 0.3.16: + + Numerous bugfixes. + + Minor User Interface improvements. +- Add pithos-fix-incorrect-fsf-address.patch: Fix incorrect FSF + address (lp#987883). +- Add pithos-fix-non-executable-script.patch: Fix file contains a + shebang (lp#988364). + +------------------------------------------------------------------- +Sat Apr 14 19:38:43 UTC 2012 - [email protected] + +- New bzr version now at revision 202: + + Tweaks to prefs dialog. + + Pass album art URL to MPRIS for Unity sound menu (lp#876984). + + Add "Quit" item to menu (lp#904589). + + Better handling of fatal gstreamer codec errors. + + Add "Player" to category to allow build on openSUSE Open Build + service (lp#976327). + + Handle urllib HTTPError. +- Drop pithos-fix-no-sufficient-category-definition.patch as this + has been upstreamed. + +------------------------------------------------------------------- +Sun Apr 8 03:08:48 UTC 2012 - [email protected] + +- Initial build. +- Add pithos-fix-no-sufficient-category-definition.patch: Add + Player to categories in desktop file (lp#976327). New: ---- pithos-fix-incorrect-fsf-address.patch pithos-fix-non-executable-script.patch pithos.changes pithos.spec pithos_0.3.16.tgz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pithos.spec ++++++ # # spec file for package pithos # # Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2012 Malcolm J Lewis <[email protected]> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: pithos Version: 0.3.16 Release: 0 Summary: Native Pandora Radio client for Linux License: GPL-3.0+ Group: Productivity/Multimedia/Other Url: http://kevinmehall.net/p/pithos/ Source0: http://kevinmehall.net/p/pithos/release/pithos_0.3.16.tgz # PATCH-FIX-UPSTREAM pithos-fix-incorrect-fsf-address.patch lp#987883 [email protected] -- Fix incorrect FSF address. Patch0: pithos-fix-incorrect-fsf-address.patch # PATCH-FIX-UPSTREAM pithos-fix-non-executable-script.patch lp#988364 [email protected] -- Fix file contains a shebang. Patch1: pithos-fix-non-executable-script.patch BuildRequires: fdupes BuildRequires: intltool BuildRequires: hicolor-icon-theme BuildRequires: python-devel BuildRequires: python-distutils-extra >= 2.10 BuildRequires: python-setuptools BuildRequires: update-desktop-files Requires: dbus-1-python Requires: gstreamer-0_10-plugins-bad Requires: gstreamer-0_10-plugins-good Requires: python-gstreamer-0_10 %if 0%{?suse_version} > 1130 Requires: python-gobject2 %else Requires: python-gobject %endif Requires: python-gtk Requires: python-notify Requires: python-xdg BuildRoot: %{_tmppath}/%{name}-%{version}-build %if 0%{?suse_version} %py_requires %if 0%{?suse_version} > 1110 BuildArch: noarch %endif %endif %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %description Pithos is a native Pandora Radio client for Linux. It's much more lightweight than the Pandora.com web client, and integrates with desktop features such as media keys, notifications, and the sound menu. %prep %setup -q -n %{name}_%{version} %patch0 -p1 %patch1 -p1 %build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} # We package this as %%doc rm %{buildroot}%{_datadir}/doc/%{name}/README.md %suse_update_desktop_file %{name} %fdupes %{buildroot} %if 0%{?suse_version} > 1130 %post %desktop_database_post %icon_theme_cache_post %postun %desktop_database_postun %icon_theme_cache_postun %endif %files %defattr(-,root,root) %doc CHANGELOG README.md %{_bindir}/%{name} %{python_sitelib}/%{name} %{python_sitelib}/%{name}-0.3-py%{py_ver}.egg-info %{_datadir}/%{name}/ %{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/scalable/apps/%{name}*.svg %changelog ++++++ pithos-fix-incorrect-fsf-address.patch ++++++ diff -Naur a/pithos/pylast.py b/pithos/pylast.py --- a/pithos/pylast.py 2012-04-24 09:49:02.938204000 -0500 +++ b/pithos/pylast.py 2012-04-24 10:05:13.137272284 -0500 @@ -15,7 +15,7 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 # USA # # http://code.google.com/p/pylast/ ++++++ pithos-fix-non-executable-script.patch ++++++ diff -Naur a/pithos/plugin.py b/pithos/plugin.py --- a/pithos/plugin.py 2012-04-20 11:40:36.000000000 -0500 +++ b/pithos/plugin.py 2012-04-25 09:58:39.384117646 -0500 @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*- ### BEGIN LICENSE # Copyright (C) 2010-2012 Kevin Mehall <[email protected]> diff -Naur a/pithos/plugins/notification_icon.py b/pithos/plugins/notification_icon.py --- a/pithos/plugins/notification_icon.py 2012-04-20 11:40:36.000000000 -0500 +++ b/pithos/plugins/notification_icon.py 2012-04-25 09:58:41.352145709 -0500 @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*- ### BEGIN LICENSE # Copyright (C) 2010-2012 Kevin Mehall <[email protected]> diff -Naur a/pithos/plugins/scrobble.py b/pithos/plugins/scrobble.py --- a/pithos/plugins/scrobble.py 2012-04-20 11:40:36.000000000 -0500 +++ b/pithos/plugins/scrobble.py 2012-04-25 09:58:43.496176289 -0500 @@ -1,4 +1,3 @@ -#!/usr/bin/python # -*- coding: utf-8; tab-width: 4; indent-tabs-mode: nil; -*- ### BEGIN LICENSE # Copyright (C) 2010-2012 Kevin Mehall <[email protected]> -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
