pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/py-beets update to 1.2.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2807fec6b7dd
branches:  trunk
changeset: 622016:2807fec6b7dd
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Mon Jul 22 14:20:38 2013 +0000

description:
update to 1.2.1
changes:
-internal refactoring to the way that we calculate and process distance
 scores in the autotagger
-Python-2.6 compatibility fixes, other minor fixes

diffstat:

 audio/py-beets/Makefile         |   4 ++--
 audio/py-beets/distinfo         |   9 ++++-----
 audio/py-beets/patches/patch-aa |  17 -----------------
 3 files changed, 6 insertions(+), 24 deletions(-)

diffs (48 lines):

diff -r 00c102f0726f -r 2807fec6b7dd audio/py-beets/Makefile
--- a/audio/py-beets/Makefile   Mon Jul 22 12:53:05 2013 +0000
+++ b/audio/py-beets/Makefile   Mon Jul 22 14:20:38 2013 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2013/06/12 20:29:21 drochner Exp $
+# $NetBSD: Makefile,v 1.5 2013/07/22 14:20:38 drochner Exp $
 #
 
-DISTNAME=      v1.2.0
+DISTNAME=      v1.2.1
 PKGNAME=       beets-${DISTNAME:S/v//}
 CATEGORIES=    audio
 MASTER_SITES=  https://github.com/sampsyo/beets/archive/
diff -r 00c102f0726f -r 2807fec6b7dd audio/py-beets/distinfo
--- a/audio/py-beets/distinfo   Mon Jul 22 12:53:05 2013 +0000
+++ b/audio/py-beets/distinfo   Mon Jul 22 14:20:38 2013 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.3 2013/06/12 20:29:21 drochner Exp $
+$NetBSD: distinfo,v 1.4 2013/07/22 14:20:38 drochner Exp $
 
-SHA1 (py-beets/v1.2.0.tar.gz) = dc1b26bb6a44ed51aaa182fa9bcb2e92d7b27687
-RMD160 (py-beets/v1.2.0.tar.gz) = 1562aae49d41c724f542ef0d57c1be596e41fe71
-Size (py-beets/v1.2.0.tar.gz) = 615975 bytes
-SHA1 (patch-aa) = b155411bd603f9fc0cd46799d96d69bd08615e90
+SHA1 (py-beets/v1.2.1.tar.gz) = 33801eb48054d10dd63ef3cc127fc0bad1d3a3b1
+RMD160 (py-beets/v1.2.1.tar.gz) = b971d914f5e9f316344284995e4887f3c5e2b3b6
+Size (py-beets/v1.2.1.tar.gz) = 619470 bytes
diff -r 00c102f0726f -r 2807fec6b7dd audio/py-beets/patches/patch-aa
--- a/audio/py-beets/patches/patch-aa   Mon Jul 22 12:53:05 2013 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2013/06/12 20:29:21 drochner Exp $
-
-Python-2.6 compatibility
-
---- beetsplug/random.py.orig   2013-06-06 04:58:04.000000000 +0000
-+++ beetsplug/random.py
-@@ -40,7 +40,9 @@ def random_item(lib, opts, args):
-         # Group the objects by artist so we can sample from them.
-         key = attrgetter('albumartist')
-         objs.sort(key=key)
--        objs_by_artists = {artist: list(v) for artist, v in groupby(objs, key)}
-+        objs_by_artists = {}
-+        for artist, v in groupby(objs, key):
-+            objs_by_artists[artist] = list(v)
- 
-         objs = []
-         for _ in range(opts.number):



Home | Main Index | Thread Index | Old Index