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: Fri, 09 Oct 2020 12:00:34
Message-Id: 1602244805.103cb7366e2c4f2a71edb303cf113eb7c4a71712.fordfrog@gentoo
1 commit: 103cb7366e2c4f2a71edb303cf113eb7c4a71712
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 9 12:00:05 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 9 12:00:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103cb736
7
8 media-sound/picard: removed obsolete 2.3.1
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/picard/Manifest | 1 -
14 media-sound/picard/picard-2.3.1.ebuild | 75 ----------------------------------
15 2 files changed, 76 deletions(-)
16
17 diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
18 index 0758a494ae1..38be1fcb13d 100644
19 --- a/media-sound/picard/Manifest
20 +++ b/media-sound/picard/Manifest
21 @@ -1,2 +1 @@
22 -DIST picard-2.3.1.tar.gz 3778379 BLAKE2B b829c29d95922e31479cea0c8bcb3294cd3751374e71f37d387a013529c294a695a2e2f4c8b73af5eeee2fa8f7423d24074bc18b7db130798411803c70a013ff SHA512 fb5ac4cbd02f4b832cb23e3c8b5881eeca04b7b101c015a97fc20c8e0e7871ad2098b750a0c486af958b2bf30221b0c28666313f768dc7d70389519dd795d9cd
23 DIST picard-2.4.2.tar.gz 4096438 BLAKE2B a44e82ac1a0ad776eb371309ad13f0a5e9afe4a0fe8b898dbbcb71ac554da3ff7cf4a2d88a8e476c811dfeb515ca7371ca8effb326b9285e6c53ebeac6795c15 SHA512 17f6015dd06a1282e6dc216726a74cc7bf2a54a5694e09e2d7ae6f1b4c85f2f60f3de1218d952fa2c4e088b3330d1fd12e4b41cf819d7c3d2d96278532338e15
24
25 diff --git a/media-sound/picard/picard-2.3.1.ebuild b/media-sound/picard/picard-2.3.1.ebuild
26 deleted file mode 100644
27 index 6d0e749dc69..00000000000
28 --- a/media-sound/picard/picard-2.3.1.ebuild
29 +++ /dev/null
30 @@ -1,75 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{6,7,8} )
37 -DISTUTILS_SINGLE_IMPL=1
38 -DISABLE_AUTOFORMATTING=true
39 -inherit distutils-r1 gnome2-utils readme.gentoo-r1 xdg
40 -
41 -DESCRIPTION="Cross-platform music tagger"
42 -HOMEPAGE="https://picard.musicbrainz.org"
43 -SRC_URI="https://musicbrainz.osuosl.org/pub/musicbrainz/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="GPL-2+"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="discid nls"
49 -
50 -RDEPEND="
51 - $(python_gen_cond_dep '
52 - dev-python/PyQt5[dbus,declarative,gui,network,widgets,${PYTHON_MULTI_USEDEP}]
53 - ')
54 - dev-qt/qtgui:5
55 - media-libs/mutagen
56 - discid? ( dev-python/python-discid )
57 -"
58 -DEPEND="
59 - nls? ( dev-qt/linguist-tools:5 )
60 -"
61 -
62 -RESTRICT="test" # doesn't work with ebuilds
63 -
64 -S="${WORKDIR}/${PN}-release-${PV}"
65 -
66 -python_compile() {
67 - local build_args=(
68 - --disable-autoupdate
69 - )
70 - if ! use nls; then
71 - build_args+=( --disable-locales )
72 - fi
73 - distutils-r1_python_compile ${build_args[@]}
74 -}
75 -
76 -python_install() {
77 - local install_args=(
78 - --disable-autoupdate
79 - --skip-build
80 - )
81 - if ! use nls; then
82 - install_args+=( --disable-locales )
83 - fi
84 - distutils-r1_python_install ${install_args[@]}
85 -}
86 -
87 -python_install_all() {
88 - distutils-r1_python_install_all
89 -
90 - local DOC_CONTENTS="Install optional package media-libs/chromaprint[tools] to enable
91 -calculation and lookup of AcoustID fingerprints.
92 -
93 -Install optional package dev-python/python-discid to enable
94 -calculation and lookup of compact disc identifiers (disc IDs).
95 -
96 -If you are upgrading Picard and it does not start, try removing
97 -Picard's settings:
98 - rm ~/.config/MusicBrainz/Picard.conf"
99 - readme.gentoo_create_doc
100 -}
101 -
102 -pkg_postinst() {
103 - readme.gentoo_print_elog
104 - xdg_pkg_postinst
105 -}