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-misc/calendar/
Date: Sun, 31 Jul 2022 20:03:52
Message-Id: 1659297798.648b8c0b0ffc982f9f6dc970f2847d074b4eb3e0.soap@gentoo
1 commit: 648b8c0b0ffc982f9f6dc970f2847d074b4eb3e0
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 20:03:18 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 20:03:18 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=648b8c0b
7
8 app-misc/calendar: update EAPI 6 -> 8
9
10 Signed-off-by: David Seifert <soap <AT> gentoo.org>
11
12 ...endar-0.9.1-r1.ebuild => calendar-0.9.1-r2.ebuild} | 19 +++++++------------
13 1 file changed, 7 insertions(+), 12 deletions(-)
14
15 diff --git a/app-misc/calendar/calendar-0.9.1-r1.ebuild b/app-misc/calendar/calendar-0.9.1-r2.ebuild
16 similarity index 66%
17 rename from app-misc/calendar/calendar-0.9.1-r1.ebuild
18 rename to app-misc/calendar/calendar-0.9.1-r2.ebuild
19 index 24ec92d9935d..bf33a89f4bd4 100644
20 --- a/app-misc/calendar/calendar-0.9.1-r1.ebuild
21 +++ b/app-misc/calendar/calendar-0.9.1-r2.ebuild
22 @@ -1,7 +1,7 @@
23 -# Copyright 1999-2021 Gentoo Authors
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 @@ -13,21 +13,16 @@ LICENSE="BSD"
33 SLOT="0"
34 KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
35
36 -DOCS=( README )
37 -
38 -src_compile() {
39 +src_configure() {
40 tc-export CC
41 - emake
42 }
43
44 src_install() {
45 - dobin "${PN}"
46 - doman "${PN}.1"
47 -
48 - insinto "/usr/share"
49 - doins -r "${PN}s"
50 + dobin calendar
51 + doman calendar.1
52
53 - mv "${D}/usr/share/${PN}s" "${D}/usr/share/${PN}" || die
54 + insinto /usr/share/calendar
55 + doins -r calendars/.
56
57 einstalldocs
58 }