Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/bchunk/
Date: Mon, 02 Jan 2023 09:03:30
Message-Id: 1672650187.8b71b4d465800447fd6a1f4e852537d48f8c5253.soap@gentoo
1 commit: 8b71b4d465800447fd6a1f4e852537d48f8c5253
2 Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
3 AuthorDate: Mon Jan 2 09:03:07 2023 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 09:03:07 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b71b4d4
7
8 app-cdr/bchunk: update EAPI 7 -> 8
9
10 Closes: https://github.com/gentoo/gentoo/pull/28896
11 Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 .../bchunk/{bchunk-1.2.2.ebuild => bchunk-1.2.2-r1.ebuild} | 11 +++++------
15 1 file changed, 5 insertions(+), 6 deletions(-)
16
17 diff --git a/app-cdr/bchunk/bchunk-1.2.2.ebuild b/app-cdr/bchunk/bchunk-1.2.2-r1.ebuild
18 similarity index 80%
19 rename from app-cdr/bchunk/bchunk-1.2.2.ebuild
20 rename to app-cdr/bchunk/bchunk-1.2.2-r1.ebuild
21 index 670347ecf25e..560ed89d1b81 100644
22 --- a/app-cdr/bchunk/bchunk-1.2.2.ebuild
23 +++ b/app-cdr/bchunk/bchunk-1.2.2-r1.ebuild
24 @@ -1,7 +1,7 @@
25 -# Copyright 1999-2021 Gentoo Authors
26 +# Copyright 1999-2023 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=7
30 +EAPI=8
31
32 inherit toolchain-funcs
33
34 @@ -13,8 +13,6 @@ LICENSE="GPL-2+"
35 SLOT="0"
36 KEYWORDS="amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris"
37
38 -DOCS=( "${PN}.spec" README ChangeLog )
39 -
40 src_compile() {
41 emake \
42 CC="$(tc-getCC)" \
43 @@ -23,7 +21,8 @@ src_compile() {
44 }
45
46 src_install() {
47 - dobin "${PN}"
48 - doman "${PN}.1"
49 + dobin bchunk
50 + doman bchunk.1
51 einstalldocs
52 + dodoc bchunk.spec
53 }