summaryrefslogtreecommitdiff
path: root/audio/py-beets
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2013-07-22 14:20:38 +0000
committerdrochner <drochner@pkgsrc.org>2013-07-22 14:20:38 +0000
commit4bb220142294581020e6aed69cac17bd7e65de76 (patch)
tree738e8f938c12d5f9b35fe862d20b40aae1ea982e /audio/py-beets
parente978d20240e7c936d2f333a49e8fdc59182c8aa0 (diff)
downloadpkgsrc-4bb220142294581020e6aed69cac17bd7e65de76.tar.gz
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 (limited to 'audio/py-beets')
-rw-r--r--audio/py-beets/Makefile4
-rw-r--r--audio/py-beets/distinfo9
-rw-r--r--audio/py-beets/patches/patch-aa17
3 files changed, 6 insertions, 24 deletions
diff --git a/audio/py-beets/Makefile b/audio/py-beets/Makefile
index 8cf091f44a2..a1bbb671f76 100644
--- a/audio/py-beets/Makefile
+++ b/audio/py-beets/Makefile
@@ -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 --git a/audio/py-beets/distinfo b/audio/py-beets/distinfo
index 73a0f5a9ebc..7e07862970b 100644
--- a/audio/py-beets/distinfo
+++ b/audio/py-beets/distinfo
@@ -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 --git a/audio/py-beets/patches/patch-aa b/audio/py-beets/patches/patch-aa
deleted file mode 100644
index 4f6e250f86d..00000000000
--- a/audio/py-beets/patches/patch-aa
+++ /dev/null
@@ -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):