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: Sat, 12 Jun 2021 09:48:23
Message-Id: 1623491297.e51eef0802593970ad4d9000f20f788966ceb270.fordfrog@gentoo
1 commit: e51eef0802593970ad4d9000f20f788966ceb270
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 12 09:48:08 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 12 09:48:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e51eef08
7
8 media-sound/picard: removed obsolete 2.4.2
9
10 Package-Manager: Portage-3.0.19, 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.4.2.ebuild | 72 ----------------------------------
15 2 files changed, 73 deletions(-)
16
17 diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
18 index 3ae05b2f162..ebbe370f66f 100644
19 --- a/media-sound/picard/Manifest
20 +++ b/media-sound/picard/Manifest
21 @@ -1,2 +1 @@
22 -DIST picard-2.4.2.tar.gz 4096438 BLAKE2B a44e82ac1a0ad776eb371309ad13f0a5e9afe4a0fe8b898dbbcb71ac554da3ff7cf4a2d88a8e476c811dfeb515ca7371ca8effb326b9285e6c53ebeac6795c15 SHA512 17f6015dd06a1282e6dc216726a74cc7bf2a54a5694e09e2d7ae6f1b4c85f2f60f3de1218d952fa2c4e088b3330d1fd12e4b41cf819d7c3d2d96278532338e15
23 DIST picard-2.6.2.tar.gz 4318817 BLAKE2B 9b4b9837fc7703368f28f2451c230ee9cb4826b61a970c514162bf615461d942512764661295bba98499000e781662e3a001c5fc91571abbafce8d7bc7418a63 SHA512 01fc8f49b273edbd020e3c9f91d622e60a84421b6de9dfd584d086224897b81f5e7c3f94616341c56f952774af7d912a8369d8fff4e47f19e00324c4f6944225
24
25 diff --git a/media-sound/picard/picard-2.4.2.ebuild b/media-sound/picard/picard-2.4.2.ebuild
26 deleted file mode 100644
27 index d866635fefb..00000000000
28 --- a/media-sound/picard/picard-2.4.2.ebuild
29 +++ /dev/null
30 @@ -1,72 +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_{7,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/PyQt5[declarative,gui,network,widgets,${PYTHON_MULTI_USEDEP}]
63 - dev-python/python-dateutil[${PYTHON_MULTI_USEDEP}]
64 - ')
65 - dev-qt/qtgui:5
66 - media-libs/mutagen
67 - discid? ( dev-python/python-discid )
68 - fingerprints? ( media-libs/chromaprint[tools] )
69 -"
70 -
71 -RESTRICT="test" # doesn't work with ebuilds
72 -
73 -python_compile() {
74 - local build_args=(
75 - --disable-autoupdate
76 - )
77 - if ! use nls; then
78 - build_args+=( --disable-locales )
79 - fi
80 - distutils-r1_python_compile ${build_args[@]}
81 -}
82 -
83 -python_install() {
84 - local install_args=(
85 - --disable-autoupdate
86 - --skip-build
87 - )
88 - if ! use nls; then
89 - install_args+=( --disable-locales )
90 - fi
91 - distutils-r1_python_install ${install_args[@]}
92 -}
93 -
94 -python_install_all() {
95 - distutils-r1_python_install_all
96 -
97 - if [[ -n "${REPLACING_VERSIONS}" ]]; then
98 - elog "If you are upgrading Picard and it does not start, try removing"
99 - elog "Picard's settings:"
100 - elog " rm ~/.config/MusicBrainz/Picard.conf"
101 - fi
102 -}