Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/flac-image/
Date: Thu, 04 Aug 2022 21:56:10
Message-Id: 1659650147.e50bb01d10d3772bc1fbd777b854a91637d42145.soap@gentoo
1 commit: e50bb01d10d3772bc1fbd777b854a91637d42145
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 4 21:55:47 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 4 21:55:47 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e50bb01d
7
8 media-sound/flac-image: update EAPI 6 -> 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 .../{flac-image-1.00.ebuild => flac-image-1.00-r1.ebuild} | 14 ++++++--------
13 1 file changed, 6 insertions(+), 8 deletions(-)
14
15 diff --git a/media-sound/flac-image/flac-image-1.00.ebuild b/media-sound/flac-image/flac-image-1.00-r1.ebuild
16 similarity index 91%
17 rename from media-sound/flac-image/flac-image-1.00.ebuild
18 rename to media-sound/flac-image/flac-image-1.00-r1.ebuild
19 index 78ea6acddc74..2d8b79560fdc 100644
20 --- a/media-sound/flac-image/flac-image-1.00.ebuild
21 +++ b/media-sound/flac-image/flac-image-1.00-r1.ebuild
22 @@ -1,35 +1,33 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 +# Copyright 1999-2022 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=6
28 +EAPI=8
29
30 inherit toolchain-funcs
31
32 DESCRIPTION="Utility for adding image files (e.g. album cover art) to metadata of FLAC files"
33 HOMEPAGE="http://www.singingtree.com/software/"
34 -SRC_URI="http://www.singingtree.com/software/${PN}.tar.gz -> ${P}.tar.gz"
35 # FIXME: no version in tarball, but also no updates for a long time. So it's ok.
36 +SRC_URI="http://www.singingtree.com/software/${PN}.tar.gz -> ${P}.tar.gz"
37 +S="${WORKDIR}"
38
39 LICENSE="BSD"
40 SLOT="0"
41 KEYWORDS="~amd64 ~x86"
42 -IUSE=""
43
44 DEPEND="media-libs/flac"
45 RDEPEND="${DEPEND}"
46
47 -S=${WORKDIR}
48 -
49 PATCHES=(
50 "${FILESDIR}"/${PN}-1.00-add-missing-string-include.patch
51 "${FILESDIR}"/${PN}-1.00-fix-build-system.patch
52 )
53
54 src_configure() {
55 + tc-export CC
56 +
57 # remove pre-compiled binary
58 rm -f "${PN}" || die
59 -
60 - tc-export CC
61 }
62
63 src_install() {