From c2dd3a09c9855f9e513a38c8c5c5c0c732b6149c Mon Sep 17 00:00:00 2001 From: giovanni Date: Thu, 15 Jul 2010 09:58:47 +0000 Subject: [PATCH] Update to 0.3.1.2 --- audio/exaile/Makefile | 7 ++++--- audio/exaile/distinfo | 10 ++++----- .../exaile/patches/patch-data_exaile_desktop | 6 +++--- .../patch-plugins_daapclient___init___py | 21 ------------------- ...tch-plugins_daapserver_spydaap_metadata_py | 10 ++++----- 5 files changed, 17 insertions(+), 37 deletions(-) delete mode 100644 audio/exaile/patches/patch-plugins_daapclient___init___py diff --git a/audio/exaile/Makefile b/audio/exaile/Makefile index 7243273d7c7..272f60c6d52 100644 --- a/audio/exaile/Makefile +++ b/audio/exaile/Makefile @@ -1,15 +1,16 @@ -# $OpenBSD: Makefile,v 1.8 2010/04/21 07:02:42 giovanni Exp $ +# $OpenBSD: Makefile,v 1.9 2010/07/15 09:58:47 giovanni Exp $ COMMENT = music manager and player for GTK+ written in Python V = 0.3.1 -DISTNAME = exaile-${V}.1 +P = 2 +DISTNAME = exaile-${V}.${P} CATEGORIES = audio x11 HOMEPAGE = http://www.exaile.org/ -MASTER_SITES = http://www.launchpad.net/exaile/$V/$V.1/+download/ +MASTER_SITES = http://www.launchpad.net/exaile/$V/$V.$P/+download/ # GPLv2+ PERMIT_PACKAGE_CDROM = Yes diff --git a/audio/exaile/distinfo b/audio/exaile/distinfo index 356f37373f9..117da7c5956 100644 --- a/audio/exaile/distinfo +++ b/audio/exaile/distinfo @@ -1,5 +1,5 @@ -MD5 (exaile-0.3.1.1.tar.gz) = Tw5s5yJJAn1pZTRWoHB8Vw== -RMD160 (exaile-0.3.1.1.tar.gz) = OPbUVB3dpOJcj8/ipyHiPe/rG1Q= -SHA1 (exaile-0.3.1.1.tar.gz) = 6DtegDTxeaj1cf3Yw0k/j3PqUQ0= -SHA256 (exaile-0.3.1.1.tar.gz) = 54Xgjc9Lc5LP1ggRhzLyNl6c1TdO7X1HPoFCCPI+Hjw= -SIZE (exaile-0.3.1.1.tar.gz) = 1897993 +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 diff --git a/audio/exaile/patches/patch-data_exaile_desktop b/audio/exaile/patches/patch-data_exaile_desktop index f35d2ee2847..40a5f54b868 100644 --- a/audio/exaile/patches/patch-data_exaile_desktop +++ b/audio/exaile/patches/patch-data_exaile_desktop @@ -1,6 +1,6 @@ -$OpenBSD: patch-data_exaile_desktop,v 1.3 2010/04/21 07:02:42 giovanni Exp $ ---- data/exaile.desktop.orig Wed Apr 7 22:09:52 2010 -+++ data/exaile.desktop Fri Apr 9 09:04:00 2010 +$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 @@ -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 diff --git a/audio/exaile/patches/patch-plugins_daapclient___init___py b/audio/exaile/patches/patch-plugins_daapclient___init___py deleted file mode 100644 index 33ab537f8ff..00000000000 --- a/audio/exaile/patches/patch-plugins_daapclient___init___py +++ /dev/null @@ -1,21 +0,0 @@ -$OpenBSD: patch-plugins_daapclient___init___py,v 1.1 2010/04/21 07:02:42 giovanni Exp $ ---- plugins/daapclient/__init__.py.orig Fri Apr 2 09:49:03 2010 -+++ plugins/daapclient/__init__.py Fri Apr 2 09:49:45 2010 -@@ -41,7 +41,7 @@ gobject.threads_init() - try: - import avahi - AVAHI = True --except Exception as inst: -+except Exception, inst: - logger.warn('AVAHI exception: %s' % inst) - AVAHI = False - -@@ -266,7 +266,7 @@ class DaapConnection(object): - self.session = client.login() - self.connected = True - # except DAAPError: -- except Exception as inst: -+ except Exception, inst: - #print 's:%s, p:%s (%s, %s)' % (self.server, self.port, type(self.server), type(self.port)) - logger.warn('Exception: %s' % inst) - self.auth = True diff --git a/audio/exaile/patches/patch-plugins_daapserver_spydaap_metadata_py b/audio/exaile/patches/patch-plugins_daapserver_spydaap_metadata_py index 4cd91467960..07235bb4d70 100644 --- a/audio/exaile/patches/patch-plugins_daapserver_spydaap_metadata_py +++ b/audio/exaile/patches/patch-plugins_daapserver_spydaap_metadata_py @@ -1,9 +1,9 @@ -$OpenBSD: patch-plugins_daapserver_spydaap_metadata_py,v 1.1 2010/04/21 07:02:42 giovanni Exp $ ---- plugins/daapserver/spydaap/metadata.py.orig Fri Apr 2 09:50:21 2010 -+++ plugins/daapserver/spydaap/metadata.py Fri Apr 2 09:50:47 2010 -@@ -14,7 +14,7 @@ - #along with Spydaap. If not, see . +$OpenBSD: patch-plugins_daapserver_spydaap_metadata_py,v 1.2 2010/07/15 09:58:47 giovanni Exp $ +--- plugins/daapserver/spydaap/metadata.py.orig Mon May 31 21:10:10 2010 ++++ plugins/daapserver/spydaap/metadata.py Wed Jun 9 19:01:48 2010 +@@ -15,7 +15,7 @@ + from __future__ import with_statement import warnings -with warnings.catch_warnings(): +class catch_warnings():