Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/picard/
Date: Mon, 01 Oct 2018 18:13:23
Message-Id: 1538417537.a003fddb5029fa5360a155996960fb5374e6d21e.asturm@gentoo
1 commit: a003fddb5029fa5360a155996960fb5374e6d21e
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 1 17:49:30 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 1 18:12:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a003fddb
7
8 media-sound/picard: Drop old
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.50, Repoman-2.3.11
12
13 media-sound/picard/Manifest | 1 -
14 media-sound/picard/picard-2.0.0_beta3.ebuild | 78 ----------------------------
15 2 files changed, 79 deletions(-)
16
17 diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
18 index bf3d515739c..56d3049fc4e 100644
19 --- a/media-sound/picard/Manifest
20 +++ b/media-sound/picard/Manifest
21 @@ -1,2 +1 @@
22 -DIST picard-2.0.0_beta3.tar.gz 2686246 BLAKE2B e11cc85282bb3dfe7298090e42b62f7e9b2d4ee7df09b040905665694074ede611884e1544abc89aa3d07e0844d6599d5fac7c0db09bad7d9e64439c0c4478c9 SHA512 c8c5bdd84af3946bc24eb495bcb83877dffedb81e6ff64742925f6d1b4f2780f86280dda839d96030ea15ee2a7bf7708c20cc4ac92e97bf9cd372ea36715d156
23 DIST picard-2.0.3.tar.gz 2748358 BLAKE2B ff71f9d7836b9f797a539db772e2ffcb8cb9ba4c25997c01590292bf1b7b5d311089174313af86f1eb0e82af48bc8f350578ae6bdffba3c6b3bf98b934481f8d SHA512 759252fa3c43af1bfc09d85ef90fe451e674bfebaee31838bd2779380d1b8ad817f899896baeccf583464566eb2acfe886c8288d1757faaaff2dc17c3b8ef6ae
24
25 diff --git a/media-sound/picard/picard-2.0.0_beta3.ebuild b/media-sound/picard/picard-2.0.0_beta3.ebuild
26 deleted file mode 100644
27 index b4fa7700a16..00000000000
28 --- a/media-sound/picard/picard-2.0.0_beta3.ebuild
29 +++ /dev/null
30 @@ -1,78 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_{5,6} )
37 -DISTUTILS_SINGLE_IMPL=1
38 -DISABLE_AUTOFORMATTING=true
39 -
40 -inherit distutils-r1 gnome2-utils readme.gentoo-r1 xdg-utils
41 -
42 -DESCRIPTION="A cross-platform music tagger"
43 -HOMEPAGE="https://picard.musicbrainz.org"
44 -SRC_URI="https://github.com/metabrainz/${PN}/archive/${PV/_beta3/dev6}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="GPL-2+"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86"
49 -IUSE="nls"
50 -
51 -RDEPEND="
52 - dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}]
53 - dev-qt/qtgui:5[accessibility]
54 - >=media-libs/mutagen-1.38"
55 -DEPEND="
56 - nls? ( dev-qt/linguist-tools:5 )
57 -"
58 -
59 -RESTRICT="test" # doesn't work with ebuilds
60 -
61 -S="${WORKDIR}/${P/_beta3/dev6}"
62 -
63 -python_compile() {
64 - local build_args=(
65 - --disable-autoupdate
66 - )
67 - if ! use nls; then
68 - build_args+=( --disable-locales )
69 - fi
70 - distutils-r1_python_compile ${build_args[@]}
71 -}
72 -
73 -python_install() {
74 - local install_args=(
75 - --disable-autoupdate
76 - --skip-build
77 - )
78 - if ! use nls; then
79 - install_args+=( --disable-locales )
80 - fi
81 - distutils-r1_python_install ${install_args[@]}
82 -}
83 -
84 -python_install_all() {
85 - distutils-r1_python_install_all
86 -
87 - local DOC_CONTENTS="Install optional package media-libs/chromaprint[tools] to enable
88 -calculation and lookup of AcoustID fingerprints.
89 -
90 -Install optional package dev-python/python-discid to enable
91 -calculation and lookup of compact disc identifiers (disc IDs).
92 -
93 -If you are upgrading Picard and it does not start, try removing
94 -Picard's settings:
95 - rm ~/.config/MusicBrainz/Picard.conf"
96 - readme.gentoo_create_doc
97 -}
98 -
99 -pkg_postinst() {
100 - readme.gentoo_print_elog
101 - xdg_desktop_database_update
102 - gnome2_icon_cache_update
103 -}
104 -
105 -pkg_postrm() {
106 - xdg_desktop_database_update
107 - gnome2_icon_cache_update
108 -}