Update to 0.3.2.0

ok stephan@
This commit is contained in:
giovanni 2010-10-13 17:11:10 +00:00
parent f51d703635
commit 6ea3d66dea
5 changed files with 132 additions and 89 deletions

View File

@ -1,13 +1,11 @@
# $OpenBSD: Makefile,v 1.11 2010/08/30 21:36:14 fgsch Exp $
# $OpenBSD: Makefile,v 1.12 2010/10/13 17:11:10 giovanni Exp $
COMMENT = music manager and player for GTK+ written in Python
V = 0.3.1
P = 2
V = 0.3.2
P = 0
DISTNAME = exaile-${V}.${P}
REVISION= 1
CATEGORIES = audio x11
HOMEPAGE = http://www.exaile.org/
@ -27,7 +25,7 @@ RUN_DEPENDS = :dbus-python->=0.82.1:x11/dbus-python \
:py-notify->=0.1.1:devel/py-notify \
:py-mutagen->=1.11:audio/py-mutagen \
:py-cddb->=1.4:audio/py-cddb \
:py-gtk2->=1.10:x11/py-gtk2 \
:py-gtk2->=2.17:x11/py-gtk2 \
::devel/libglade2 \
::devel/desktop-file-utils \
::multimedia/gstreamer-0.10/core \

View File

@ -1,5 +1,5 @@
MD5 (exaile-0.3.1.2.tar.gz) = 5PgNOhBjGyhIW+Is0pakUA==
RMD160 (exaile-0.3.1.2.tar.gz) = PGcZKx3ku8ITzPWf2H9Vlj07hVE=
SHA1 (exaile-0.3.1.2.tar.gz) = 16revC0IcVPrOEG/yTbIzefP8dw=
SHA256 (exaile-0.3.1.2.tar.gz) = 5znNKYQjheKo+9XoFkb8LwSIdGxyo45PWxq0cp8XBKM=
SIZE (exaile-0.3.1.2.tar.gz) = 1899168
MD5 (exaile-0.3.2.0.tar.gz) = /dH3URgDKlqgkyy0SbLFMw==
RMD160 (exaile-0.3.2.0.tar.gz) = cPKPcerBAXiim6uYhEoaHkjzkAY=
SHA1 (exaile-0.3.2.0.tar.gz) = CAFatkf1uDmXvS8ch8FNPSh/0+c=
SHA256 (exaile-0.3.2.0.tar.gz) = dXHbiNtUU9CWde1w2L1QRoJbbnt56nawFwfhHNFGCes=
SIZE (exaile-0.3.2.0.tar.gz) = 2082057

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-Makefile,v 1.3 2010/04/21 07:02:42 giovanni Exp $
--- Makefile.orig Tue Mar 16 02:52:51 2010
+++ Makefile Thu Mar 18 09:10:29 2010
@@ -1,9 +1,9 @@
$OpenBSD: patch-Makefile,v 1.4 2010/10/13 17:11:10 giovanni Exp $
--- Makefile.orig Sat Jun 26 01:21:23 2010
+++ Makefile Tue Oct 12 12:54:09 2010
@@ -1,14 +1,14 @@
-PREFIX ?= /usr/local
+PREFIX ?= ${TRUEPREFIX}
LIBINSTALLDIR ?= /lib
@ -15,6 +15,12 @@ $OpenBSD: patch-Makefile,v 1.3 2010/04/21 07:02:42 giovanni Exp $
EXAILECONFDIR = $(DESTDIR)$(XDGCONFDIR)/exaile
.PHONY: dist test coverage clean sanitycheck
-all: compile locale manpage
+all: compile locale
@echo "Ready to install..."
# The no_locale stuff is by request of BSD people, please ensure
@@ -17,12 +17,12 @@ all_no_locale: compile
@echo "Ready to install..."
@ -31,41 +37,45 @@ $OpenBSD: patch-Makefile,v 1.3 2010/04/21 07:02:42 giovanni Exp $
mkdir -p $(EXAILELIBDIR)
mkdir -p $(EXAILELIBDIR)/xl
mkdir -p $(EXAILELIBDIR)/xl/metadata
@@ -44,8 +44,8 @@ make-install-dirs:
mkdir -p $(EXAILESHAREDIR)/data/ui
@@ -48,9 +48,9 @@ make-install-dirs:
mkdir -p $(EXAILESHAREDIR)/data/ui/widgets
mkdir -p $(EXAILESHAREDIR)/data/migrations
mkdir -p $(EXAILESHAREDIR)/data/migrations/migration_200907100931
- mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
- mkdir -p $(DESTDIR)$(PREFIX)/share/applications
- mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
+ mkdir -p $(DESTDIR)${TRUEPREFIX}/share/pixmaps
+ mkdir -p $(DESTDIR)${TRUEPREFIX}/share/applications
+ mkdir -p $(DESTDIR)${TRUEPREFIX}/man/man1
mkdir -p $(EXAILECONFDIR)
uninstall:
@@ -89,18 +89,18 @@ install-target: make-install-dirs
@@ -99,7 +99,7 @@ install-target: make-install-dirs
install -m 644 data/images/scalable/*.svg $(EXAILESHAREDIR)/data/images/scalable
install -m 644 data/images/*.png $(EXAILESHAREDIR)/data/images
install -m 644 data/images/48x48/exaile.png \
- $(DESTDIR)$(PREFIX)/share/pixmaps/exaile.png
+ $(DESTDIR)${TRUEPREFIX}/share/pixmaps/exaile.png
install -m 644 data/ui/*.ui $(EXAILESHAREDIR)/data/ui
install -m 644 data/migrations/*.py $(EXAILESHAREDIR)/data/migrations/
install -m 644 data/ui/preferences/*.ui $(EXAILESHAREDIR)/data/ui/preferences
install -m 644 data/ui/widgets/*.ui $(EXAILESHAREDIR)/data/ui/widgets
@@ -107,11 +107,11 @@ install-target: make-install-dirs
install -m 644 data/migrations/migration_200907100931/*.py \
$(EXAILESHAREDIR)/data/migrations/migration_200907100931/
install -m 644 data/exaile.desktop \
- $(DESTDIR)$(PREFIX)/share/applications/
- -install -m 644 exaile.1.gz $(DESTDIR)$(PREFIX)/share/man/man1/
+ $(DESTDIR)${TRUEPREFIX}/share/applications/
+ -install -m 644 exaile.1 $(DESTDIR)${TRUEPREFIX}/man/man1/
install -m 644 data/config/settings.ini $(EXAILECONFDIR)
# 2010-03-12 danfuhry: moved this to an external script to clean up syntax
# and avoid makefile limitations
- tools/generate-launcher "$(DESTDIR)" "$(PREFIX)" "$(LIBINSTALLDIR)"
- chmod 755 $(DESTDIR)$(PREFIX)/bin/exaile
+ tools/generate-launcher "$(DESTDIR)" "${TRUEPREFIX}" "$(LIBINSTALLDIR)"
+ chmod 755 $(DESTDIR)${TRUEPREFIX}/bin/exaile
- tools/generate-launcher "$(DESTDIR)" "$(PREFIX)" "$(LIBINSTALLDIR)" && \
- chmod 755 $(DESTDIR)$(PREFIX)/bin/exaile
+ tools/generate-launcher "$(DESTDIR)" "${TRUEPREFIX}" "$(LIBINSTALLDIR)" && \
+ chmod 755 $(DESTDIR)${TRUEPREFIX}/bin/exaile
$(MAKE) -C plugins install
locale:
@@ -109,10 +109,10 @@ locale:
@@ -120,10 +120,10 @@ locale:
install-locale:
for f in `find po -name exaile.mo` ; do \
install -d -m 755 \

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-data_exaile_desktop,v 1.4 2010/07/15 09:58:47 giovanni Exp $
--- data/exaile.desktop.orig Mon May 31 21:10:10 2010
+++ data/exaile.desktop Wed Jun 30 13:10:33 2010
$OpenBSD: patch-data_exaile_desktop,v 1.5 2010/10/13 17:11:10 giovanni Exp $
--- data/exaile.desktop.orig Sat Jun 26 01:21:23 2010
+++ data/exaile.desktop Tue Oct 12 12:53:45 2010
@@ -33,7 +33,7 @@ Comment[pl]=Słuchanie, przeglądanie i modyfikowanie
Comment[sv]=Spela, utforska och hantera din musiksamling
Comment[pt_BR]=Escute, gerencie ou edite sua coleção de músicas

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.6 2010/08/26 12:09:32 ajacoutot Exp $
@comment $OpenBSD: PLIST,v 1.7 2010/10/13 17:11:10 giovanni Exp $
bin/exaile
lib/python${MODPY_VERSION}/site-packages/exaile/
lib/python${MODPY_VERSION}/site-packages/exaile/exaile.py
@ -12,9 +12,9 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xl/collection.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/common.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/common.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/common.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/cover.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/cover.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/cover.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/covers.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/covers.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/covers.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/devices.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/devices.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/devices.pyo
@ -24,6 +24,9 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xl/dynamic.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/event.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/event.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/event.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/formatter.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/formatter.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/formatter.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/hal.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/hal.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/hal.pyo
@ -46,6 +49,9 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_base.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_id3.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_id3.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_id3.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_matroska.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_matroska.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_matroska.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/ape.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/ape.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/ape.pyo
@ -55,6 +61,9 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/asf.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/flac.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/flac.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/flac.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/mka.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/mka.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/mka.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/mod.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/mod.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/mod.pyo
@ -96,6 +105,13 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/__init__.
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/from1to2.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/from1to2.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/from1to2.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/__init__.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/rating.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/rating.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/settings/rating.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xl/nls.py
lib/python${MODPY_VERSION}/site-packages/exaile/xl/nls.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xl/nls.pyo
@ -168,18 +184,12 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/collection.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/collection.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/collection.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/commondialogs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/commondialogs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/commondialogs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/cover.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/cover.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/cover.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/devices.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/devices.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/devices.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/filtergui.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/filtergui.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/filtergui.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/guiutil.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/guiutil.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/guiutil.pyo
@ -223,34 +233,34 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/playlist.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/plcolumns.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/plcolumns.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/plcolumns.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/__init__.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/appearance_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/appearance_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/appearance_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/collection_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/collection_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/collection_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/cover_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/cover_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/cover_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/osd_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/osd_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/osd_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/playback_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/playback_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/playback_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/playlists_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/playlists_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/playlists_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/plugin_prefs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/plugin_prefs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/plugin_prefs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/widgets.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/widgets.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/widgets.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/__init__.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/appearance.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/appearance.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/appearance.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/collection.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/collection.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/collection.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/cover.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/cover.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/cover.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/osd.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/osd.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/osd.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/playback.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/playback.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/playback.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/playlists.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/playlists.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/playlists.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/plugin.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/plugin.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/plugin.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/widgets.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/widgets.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/preferences/widgets.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/progress.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/progress.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/progress.pyo
@ -260,12 +270,25 @@ lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/properties.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/queue.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/queue.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/queue.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/rating.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/rating.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/rating.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/tray.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/tray.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/tray.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/__init__.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/__init__.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/__init__.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/dialogs.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/dialogs.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/dialogs.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/filter.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/filter.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/filter.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/info.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/info.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/info.pyo
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/rating.py
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/rating.pyc
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/widgets/rating.pyo
share/applications/exaile.desktop
share/exaile/
share/exaile/data/
@ -303,7 +326,7 @@ share/exaile/data/images/48x48/exaile-pause.png
share/exaile/data/images/48x48/exaile-play.png
share/exaile/data/images/48x48/exaile.png
share/exaile/data/images/artist.png
share/exaile/data/images/brightstar.png
share/exaile/data/images/emptystar.png
share/exaile/data/images/exailelogo.png
share/exaile/data/images/genre.png
share/exaile/data/images/nocover.png
@ -533,10 +556,10 @@ share/exaile/data/plugins/desktopcover/PLUGININFO
share/exaile/data/plugins/desktopcover/__init__.py
share/exaile/data/plugins/desktopcover/__init__.pyc
share/exaile/data/plugins/desktopcover/__init__.pyo
share/exaile/data/plugins/desktopcover/prefs.py
share/exaile/data/plugins/desktopcover/prefs.pyc
share/exaile/data/plugins/desktopcover/prefs.pyo
share/exaile/data/plugins/desktopcover/prefs.ui
share/exaile/data/plugins/desktopcover/desktopcover_preferences.py
share/exaile/data/plugins/desktopcover/desktopcover_preferences.pyc
share/exaile/data/plugins/desktopcover/desktopcover_preferences.pyo
share/exaile/data/plugins/desktopcover/desktopcover_preferences.ui
share/exaile/data/plugins/droptrayicon/
share/exaile/data/plugins/droptrayicon/PLUGININFO
share/exaile/data/plugins/droptrayicon/__init__.py
@ -602,7 +625,6 @@ share/exaile/data/plugins/jamendo/simplejson/
share/exaile/data/plugins/jamendo/simplejson/__init__.py
share/exaile/data/plugins/jamendo/simplejson/__init__.pyc
share/exaile/data/plugins/jamendo/simplejson/__init__.pyo
share/exaile/data/plugins/jamendo/simplejson/_speedups.c
share/exaile/data/plugins/jamendo/simplejson/decoder.py
share/exaile/data/plugins/jamendo/simplejson/decoder.pyc
share/exaile/data/plugins/jamendo/simplejson/decoder.pyo
@ -705,6 +727,9 @@ share/exaile/data/plugins/lyricsviewer/PLUGININFO
share/exaile/data/plugins/lyricsviewer/__init__.py
share/exaile/data/plugins/lyricsviewer/__init__.pyc
share/exaile/data/plugins/lyricsviewer/__init__.pyo
share/exaile/data/plugins/lyricsviewer/images/
share/exaile/data/plugins/lyricsviewer/images/loading.gif
share/exaile/data/plugins/lyricsviewer/lyricsviewer.ui
share/exaile/data/plugins/lyricwiki/
share/exaile/data/plugins/lyricwiki/PLUGININFO
share/exaile/data/plugins/lyricwiki/__init__.py
@ -725,10 +750,10 @@ share/exaile/data/plugins/minimode/icons/exaile-minimode16.png
share/exaile/data/plugins/minimode/icons/exaile-minimode22.png
share/exaile/data/plugins/minimode/icons/exaile-minimode24.png
share/exaile/data/plugins/minimode/icons/exaile-minimode32.png
share/exaile/data/plugins/minimode/minimodeprefs.py
share/exaile/data/plugins/minimode/minimodeprefs.pyc
share/exaile/data/plugins/minimode/minimodeprefs.pyo
share/exaile/data/plugins/minimode/minimodeprefs_pane.ui
share/exaile/data/plugins/minimode/minimode_preferences.py
share/exaile/data/plugins/minimode/minimode_preferences.pyc
share/exaile/data/plugins/minimode/minimode_preferences.pyo
share/exaile/data/plugins/minimode/minimode_preferences.ui
share/exaile/data/plugins/minimode/mmwidgets.py
share/exaile/data/plugins/minimode/mmwidgets.pyc
share/exaile/data/plugins/minimode/mmwidgets.pyo
@ -820,6 +845,11 @@ share/exaile/data/plugins/shoutcast/PLUGININFO
share/exaile/data/plugins/shoutcast/__init__.py
share/exaile/data/plugins/shoutcast/__init__.pyc
share/exaile/data/plugins/shoutcast/__init__.pyo
share/exaile/data/plugins/shutdown/
share/exaile/data/plugins/shutdown/PLUGININFO
share/exaile/data/plugins/shutdown/__init__.py
share/exaile/data/plugins/shutdown/__init__.pyc
share/exaile/data/plugins/shutdown/__init__.pyo
share/exaile/data/plugins/streamripper/
share/exaile/data/plugins/streamripper/PLUGININFO
share/exaile/data/plugins/streamripper/__init__.py
@ -836,11 +866,8 @@ share/exaile/data/plugins/xkeys/__init__.pyc
share/exaile/data/plugins/xkeys/__init__.pyo
share/exaile/data/ui/
share/exaile/data/ui/about_dialog.ui
share/exaile/data/ui/appearance_prefs_pane.ui
share/exaile/data/ui/collection_manager.ui
share/exaile/data/ui/collection_panel.ui
share/exaile/data/ui/collection_prefs_pane.ui
share/exaile/data/ui/cover_prefs_pane.ui
share/exaile/data/ui/coverchooser.ui
share/exaile/data/ui/covermanager.ui
share/exaile/data/ui/coverwindow.ui
@ -848,19 +875,27 @@ share/exaile/data/ui/device_manager.ui
share/exaile/data/ui/device_panel.ui
share/exaile/data/ui/files_panel.ui
share/exaile/data/ui/flatplaylist_panel.ui
share/exaile/data/ui/general_prefs_pane.ui
share/exaile/data/ui/main.ui
share/exaile/data/ui/osd_prefs_pane.ui
share/exaile/data/ui/osd_window.ui
share/exaile/data/ui/playback_prefs_pane.ui
share/exaile/data/ui/playlists_panel.ui
share/exaile/data/ui/playlists_prefs_pane.ui
share/exaile/data/ui/plugin_prefs_pane.ui
share/exaile/data/ui/preferences_dialog.ui
share/exaile/data/ui/preferences/
share/exaile/data/ui/preferences/appearance.ui
share/exaile/data/ui/preferences/collection.ui
share/exaile/data/ui/preferences/cover.ui
share/exaile/data/ui/preferences/general.ui
share/exaile/data/ui/preferences/osd.ui
share/exaile/data/ui/preferences/playback.ui
share/exaile/data/ui/preferences/playlists.ui
share/exaile/data/ui/preferences/plugin.ui
share/exaile/data/ui/preferences/preferences_dialog.ui
share/exaile/data/ui/queue_dialog.ui
share/exaile/data/ui/radio_panel.ui
share/exaile/data/ui/splash.ui
share/exaile/data/ui/trackproperties_dialog.ui
share/exaile/data/ui/widgets/
share/exaile/data/ui/widgets/track_info.ui
share/exaile/data/ui/widgets/tracklist_info.ui
share/exaile/data/ui/widgets/volume_control.ui
share/exaile/xdg/
share/exaile/xdg/exaile/
share/exaile/xdg/exaile/settings.ini