commit:     8d5b730e870a710dea0626c3c94b2c118bde8754
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  7 18:45:55 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Dec  7 22:51:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d5b730e

media-sound/beets: Drop python3_5 support

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/beets/beets-1.4.9-r1.ebuild        | 144 +++++++++++++++++++++++++
 media-sound/beets/files/beets-1.4.9-py37.patch |  38 +++++++
 2 files changed, 182 insertions(+)

diff --git a/media-sound/beets/beets-1.4.9-r1.ebuild 
b/media-sound/beets/beets-1.4.9-r1.ebuild
new file mode 100644
index 00000000000..a340e1c3ed4
--- /dev/null
+++ b/media-sound/beets/beets-1.4.9-r1.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV=${PV/_beta/-beta.}
+MY_P=${PN}-${MY_PV}
+
+PYTHON_COMPAT=( python3_6 )
+PYTHON_REQ_USE="sqlite"
+inherit distutils-r1
+
+DESCRIPTION="Media library management system for obsessive-compulsive music 
geeks"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+HOMEPAGE="http://beets.io/ https://pypi.org/project/beets/";
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="MIT"
+IUSE="badfiles chromaprint discogs doc ffmpeg gstreamer icu lastfm mpd 
replaygain test thumbnail webserver"
+
+BDEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+"
+DEPEND="
+       >=dev-python/jellyfish-0.7.1[${PYTHON_USEDEP}]
+       dev-python/munkres[${PYTHON_USEDEP}]
+       >=dev-python/python-musicbrainz-ngs-0.4[${PYTHON_USEDEP}]
+       dev-python/pyyaml[${PYTHON_USEDEP}]
+       dev-python/requests[${PYTHON_USEDEP}]
+       dev-python/requests-oauthlib[${PYTHON_USEDEP}]
+       >=dev-python/six-1.9[${PYTHON_USEDEP}]
+       dev-python/unidecode[${PYTHON_USEDEP}]
+       >=media-libs/mutagen-1.33[${PYTHON_USEDEP}]
+       virtual/python-enum34[${PYTHON_USEDEP}]
+       badfiles? (
+               media-libs/flac
+               media-sound/mp3val
+       )
+       chromaprint? (
+               dev-python/pyacoustid[${PYTHON_USEDEP}]
+               media-libs/chromaprint[tools]
+       )
+       discogs? ( dev-python/discogs-client[${PYTHON_USEDEP}] )
+       ffmpeg? ( media-video/ffmpeg:0[encode] )
+       gstreamer? (
+               media-libs/gst-plugins-good:1.0
+               media-libs/gst-plugins-bad:1.0
+       )
+       icu? ( dev-db/sqlite[icu] )
+       lastfm? ( dev-python/pylast[${PYTHON_USEDEP}] )
+       mpd? (
+               dev-python/bluelet[${PYTHON_USEDEP}]
+               dev-python/python-mpd[${PYTHON_USEDEP}]
+       )
+       replaygain? (
+               gstreamer? (
+                       dev-python/pygobject:3[${PYTHON_USEDEP}]
+                       media-plugins/gst-plugins-libav:1.0
+               )
+               !gstreamer? ( media-sound/mp3gain )
+       )
+       thumbnail? (
+               dev-python/pyxdg[${PYTHON_USEDEP}]
+               virtual/python-pathlib[${PYTHON_USEDEP}]
+               || (
+                       dev-python/pillow[${PYTHON_USEDEP}]
+                       media-gfx/imagemagick
+               )
+       )
+       webserver? (
+               dev-python/flask[${PYTHON_USEDEP}]
+               dev-python/flask-cors[${PYTHON_USEDEP}]
+       )
+"
+RDEPEND="${DEPEND}"
+
+RESTRICT="test" # tests broken in 1.4.3 already
+
+PATCHES=( "${FILESDIR}/${P}-py37.patch" )
+
+S="${WORKDIR}/${MY_P}"
+
+python_prepare_all() {
+       rm_use_plugins() {
+               [[ -n "${1}" ]] || die "rm_use_plugins: No use option given"
+               local use=${1}
+               local plugins=${use}
+               use ${use} && return
+               einfo "no ${use}:"
+               [[ $# -gt 1 ]] && plugins="${@:2}"
+               for arg in ${plugins[@]}; do
+                       einfo "  removing ${arg}"
+                       if [[ -e "beetsplug/${arg}.py" ]]; then
+                               rm beetsplug/${arg}.py || die "Unable to remove 
${arg} plugin"
+                       fi
+                       if [[ -d "beetsplug/${arg}" ]]; then
+                               rm -r beetsplug/${arg} || die "Unable to remove 
${arg} plugin"
+                       fi
+                       sed -e "s:'beetsplug.${arg}',::" -i setup.py || \
+                               die "Unable to disable ${arg} plugin "
+               done
+       }
+
+       distutils-r1_python_prepare_all
+
+       rm_use_plugins chromaprint chroma
+       rm_use_plugins ffmpeg convert
+       rm_use_plugins icu loadext
+       rm_use_plugins lastfm lastgenre lastimport
+       rm_use_plugins mpd bpd mpdstats
+       rm_use_plugins webserver web
+       rm_use_plugins thumbnail thumbnails
+
+       # remove plugins that do not have appropriate dependencies installed
+       for flag in badfiles discogs replaygain; do
+               rm_use_plugins ${flag}
+       done
+
+       if ! use mpd; then
+               rm test/test_player.py || die
+       fi
+}
+
+python_compile_all() {
+       use doc && emake -C docs html
+}
+
+python_test() {
+       cd test || die
+       if ! use webserver; then
+               rm test_web.py || die "Failed to remove test_web.py"
+       fi
+       "${EPYTHON}" testall.py || die "Testsuite failed"
+}
+
+python_install_all() {
+       distutils-r1_python_install_all
+
+       doman man/beet.1 man/beetsconfig.5
+       use doc && local HTML_DOCS=( docs/_build/html/. )
+       einstalldocs
+}

diff --git a/media-sound/beets/files/beets-1.4.9-py37.patch 
b/media-sound/beets/files/beets-1.4.9-py37.patch
new file mode 100644
index 00000000000..564357bc378
--- /dev/null
+++ b/media-sound/beets/files/beets-1.4.9-py37.patch
@@ -0,0 +1,38 @@
+From 15d44f02a391764da1ce1f239caef819f08beed8 Mon Sep 17 00:00:00 2001
+From: Adrian Sampson <[email protected]>
+Date: Sun, 22 Jul 2018 12:34:19 -0400
+Subject: [PATCH] Fix Python 3.7 compatibility (#2978)
+
+---
+ beets/autotag/hooks.py | 8 +++++++-
+ docs/changelog.rst     | 2 ++
+ 2 files changed, 9 insertions(+), 1 deletion(-)
+
+diff --git a/beets/autotag/hooks.py b/beets/autotag/hooks.py
+index 3615a93337b8..1c62a54c5c35 100644
+--- a/beets/autotag/hooks.py
++++ b/beets/autotag/hooks.py
+@@ -31,6 +31,12 @@ import six
+ 
+ log = logging.getLogger('beets')
+ 
++# The name of the type for patterns in re changed in Python 3.7.
++try:
++    Pattern = re._pattern_type
++except AttributeError:
++    Pattern = re.Pattern
++
+ 
+ # Classes used to represent candidate options.
+ 
+@@ -433,7 +439,7 @@ class Distance(object):
+         be a compiled regular expression, in which case it will be
+         matched against `value2`.
+         """
+-        if isinstance(value1, re._pattern_type):
++        if isinstance(value1, Pattern):
+             return bool(value1.match(value2))
+         return value1 == value2
+ 
+-- 
+2.20.1

Reply via email to