Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/flacon/
Date: Tue, 02 Jan 2018 18:29:28
Message-Id: 1514917755.0412619d64c9fdc4ab7b6e75a055bb43cf3c20d8.monsieurp@gentoo
1 commit: 0412619d64c9fdc4ab7b6e75a055bb43cf3c20d8
2 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
3 AuthorDate: Sat Dec 30 12:14:50 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 18:29:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0412619d
7
8 media-sound/flacon: remove old.
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 media-sound/flacon/Manifest | 1 -
13 media-sound/flacon/flacon-2.1.1.ebuild | 100 ---------------------------------
14 2 files changed, 101 deletions(-)
15
16 diff --git a/media-sound/flacon/Manifest b/media-sound/flacon/Manifest
17 index 258937683d8..e6f2277ba3e 100644
18 --- a/media-sound/flacon/Manifest
19 +++ b/media-sound/flacon/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST flacon-2.1.1.tar.gz 337500 BLAKE2B 0e199653da28eaf123e3b847eb37bca3e58bcf4ed541bcbb1cb92f23451506dd48b199b0cc565715da1ccdc3a1b294fcca04b431539c6f2a9a360d088321528b SHA512 ef145685770ce4e5cb5f09b42023b5f88feed90f9444dcdb7bb30839d4ee6a4526542b0c3a5595f2b43b99759c7ff6ff4d419b88780d1394baa3654163db20ec
22 DIST flacon-3.1.1.tar.gz 431743 BLAKE2B 491919b31e0f19993c01c8a55145f1f6db7465e10112b7d3862ca2f66f15a534501248d682258fa944d0ac5de1d716c80a98f8329a4f62e22074dd397d9a03da SHA512 13b1abc2edba73e30c9a1b729650e8001a5b8de7e34fe2b599f28277c347539fb50679f8a0e608c87eb7feb1e05e26c7f71fbc3c696f0fa29ae8ae9e20e63cfd
23 DIST flacon-4.0.0.tar.gz 1294289 BLAKE2B 3afadc3545493558a5eadb7720509410fb448fed1e1fc5511f0ce477ea0e6e876d19e3038d5eb77191b449f730f50e6f1e3e4eacf546b064868863ed918acdee SHA512 64efc3369f11a7345d106a253873bcaf64ff0bbfb045e3554fecdc48a86ee5d150bef06643a5bf481d6e139a45a2bfdee91e730f9aa1354a4772f0d994297b78
24
25 diff --git a/media-sound/flacon/flacon-2.1.1.ebuild b/media-sound/flacon/flacon-2.1.1.ebuild
26 deleted file mode 100644
27 index 451179740b7..00000000000
28 --- a/media-sound/flacon/flacon-2.1.1.ebuild
29 +++ /dev/null
30 @@ -1,100 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -# Ignore rudimentary et, uz@Latn, zh_TW translation(s).
37 -PLOCALES="cs cs_CZ de es es_MX fr gl hu it ja_JP lt nb nl pl pl_PL pt_BR pt_PT ro_RO ru sr sr@latin tr uk zh_CN"
38 -
39 -inherit cmake-utils eutils gnome2-utils l10n virtualx xdg-utils
40 -
41 -DESCRIPTION="Extracts audio tracks from an audio CD image to separate tracks"
42 -HOMEPAGE="https://flacon.github.io/"
43 -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2.1+"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="qt5 test"
49 -
50 -COMMON_DEPEND="
51 - app-i18n/uchardet
52 - !qt5? (
53 - dev-qt/qtcore:4
54 - dev-qt/qtgui:4
55 - )
56 - qt5? (
57 - dev-qt/qtcore:5
58 - dev-qt/qtnetwork:5
59 - dev-qt/qtwidgets:5
60 - )
61 -"
62 -RDEPEND="${COMMON_DEPEND}
63 - media-sound/shntool
64 -"
65 -DEPEND="${COMMON_DEPEND}
66 - virtual/pkgconfig
67 - qt5? ( dev-qt/linguist-tools:5 )
68 - test? (
69 - media-sound/shntool
70 - virtual/ffmpeg
71 - !qt5? ( dev-qt/qttest:4 )
72 - qt5? ( dev-qt/qttest:5 )
73 - )
74 -"
75 -
76 -src_prepare() {
77 - cmake-utils_src_prepare
78 -
79 - # Ignore rudimentary et, uz@Latn, zh_TW translation(s).
80 - rm "translations/${PN}_uz@××××.desktop" || die
81 - rm "translations/${PN}"_{et,zh_TW}.ts || die
82 -
83 - remove_locale() {
84 - rm "translations/${PN}_${1}".{ts,desktop} || die
85 - }
86 -
87 - l10n_find_plocales_changes 'translations' "${PN}_" '.ts'
88 - l10n_for_each_disabled_locale_do remove_locale
89 -}
90 -
91 -src_configure() {
92 - local mycmakeargs=(
93 - -DUSE_QT4="$(usex !qt5)"
94 - -DUSE_QT5="$(usex qt5)"
95 - -DTEST_DATA_DIR="${S}/tests/data/"
96 - -DBUILD_TESTS="$(usex test 'Yes')"
97 - )
98 - cmake-utils_src_configure
99 -}
100 -
101 -src_test() {
102 - virtx "${BUILD_DIR}/tests/${PN}_test"
103 -}
104 -
105 -pkg_preinst() {
106 - gnome2_icon_savelist
107 -}
108 -
109 -pkg_postinst() {
110 - elog "${PN} optionally supports formats listed below."
111 - elog "(List will be empty if all extra packages are installed.)"
112 - elog "Please install the required packages and restart ${PN}."
113 - optfeature 'FLAC input and output support' media-libs/flac
114 - optfeature 'WavPack input and output support' media-sound/wavpack
115 - optfeature 'APE input support' media-sound/mac
116 - optfeature 'TTA input support' media-sound/ttaenc
117 - optfeature 'AAC output support' media-libs/faac
118 - optfeature 'MP3 output support' media-sound/lame
119 - optfeature 'Vorbis output support' media-sound/vorbis-tools
120 - optfeature 'MP3 Replay Gain support' media-sound/mp3gain
121 - optfeature 'Vorbis Replay Gain support' media-sound/vorbisgain
122 -
123 - gnome2_icon_cache_update
124 - xdg_desktop_database_update
125 -}
126 -
127 -pkg_postrm() {
128 - gnome2_icon_cache_update
129 - xdg_desktop_database_update
130 -}