Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/picard/
Date: Tue, 28 Sep 2021 21:24:50
Message-Id: 1632864285.0d56cf27568f372405a490c14b5b86d3350e4a6e.fordfrog@gentoo
1 commit: 0d56cf27568f372405a490c14b5b86d3350e4a6e
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 28 21:19:51 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 28 21:24:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d56cf27
7
8 media-sound/picard: removed obsolete 2.6.2
9
10 Package-Manager: Portage-3.0.24, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/picard/Manifest | 1 -
14 media-sound/picard/picard-2.6.2.ebuild | 73 ----------------------------------
15 2 files changed, 74 deletions(-)
16
17 diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
18 index 8c10e10ee9b..0b7e3c9d3b6 100644
19 --- a/media-sound/picard/Manifest
20 +++ b/media-sound/picard/Manifest
21 @@ -1,2 +1 @@
22 -DIST picard-2.6.2.tar.gz 4318817 BLAKE2B 9b4b9837fc7703368f28f2451c230ee9cb4826b61a970c514162bf615461d942512764661295bba98499000e781662e3a001c5fc91571abbafce8d7bc7418a63 SHA512 01fc8f49b273edbd020e3c9f91d622e60a84421b6de9dfd584d086224897b81f5e7c3f94616341c56f952774af7d912a8369d8fff4e47f19e00324c4f6944225
23 DIST picard-2.6.3.tar.gz 4320046 BLAKE2B ce308440ed4c6297128a5470b7bdced50fb22e62995c26670339ff71c70d610fc0c4ea8433f9dbacb197b710b8100de171817df604d76986596391d029b3c20f SHA512 71bdeb4777a0d996ac0093edefc448a348aa72e657ec639331e67257c47c389993d2715ccebf715458c3b606051154586d63b22b3cebd541d8b2da5e96a833b5
24
25 diff --git a/media-sound/picard/picard-2.6.2.ebuild b/media-sound/picard/picard-2.6.2.ebuild
26 deleted file mode 100644
27 index 69225481a3a..00000000000
28 --- a/media-sound/picard/picard-2.6.2.ebuild
29 +++ /dev/null
30 @@ -1,73 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8,9} )
37 -DISTUTILS_SINGLE_IMPL=1
38 -DISABLE_AUTOFORMATTING=true
39 -inherit distutils-r1 xdg
40 -
41 -if [[ ${PV} = *9999* ]]; then
42 - EGIT_REPO_URI="https://github.com/metabrainz/picard"
43 - inherit git-r3
44 -else
45 - SRC_URI="https://musicbrainz.osuosl.org/pub/musicbrainz/${PN}/${P}.tar.gz"
46 - KEYWORDS="amd64 x86"
47 - S="${WORKDIR}/${PN}-release-${PV}"
48 -fi
49 -
50 -DESCRIPTION="Cross-platform music tagger"
51 -HOMEPAGE="https://picard.musicbrainz.org"
52 -
53 -LICENSE="GPL-2+"
54 -SLOT="0"
55 -IUSE="discid fingerprints nls"
56 -
57 -BDEPEND="
58 - nls? ( dev-qt/linguist-tools:5 )
59 -"
60 -RDEPEND="
61 - $(python_gen_cond_dep '
62 - dev-python/fasteners[${PYTHON_USEDEP}]
63 - dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}]
64 - dev-python/python-dateutil[${PYTHON_USEDEP}]
65 - ')
66 - dev-qt/qtgui:5
67 - media-libs/mutagen
68 - discid? ( dev-python/python-discid )
69 - fingerprints? ( media-libs/chromaprint[tools] )
70 -"
71 -
72 -RESTRICT="test" # doesn't work with ebuilds
73 -
74 -python_compile() {
75 - local build_args=(
76 - --disable-autoupdate
77 - )
78 - if ! use nls; then
79 - build_args+=( --disable-locales )
80 - fi
81 - distutils-r1_python_compile ${build_args[@]}
82 -}
83 -
84 -python_install() {
85 - local install_args=(
86 - --disable-autoupdate
87 - --skip-build
88 - )
89 - if ! use nls; then
90 - install_args+=( --disable-locales )
91 - fi
92 - distutils-r1_python_install ${install_args[@]}
93 -}
94 -
95 -python_install_all() {
96 - distutils-r1_python_install_all
97 -
98 - if [[ -n "${REPLACING_VERSIONS}" ]]; then
99 - elog "If you are upgrading Picard and it does not start, try removing"
100 - elog "Picard's settings:"
101 - elog " rm ~/.config/MusicBrainz/Picard.conf"
102 - fi
103 -}