Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/bbacpi/
Date: Tue, 14 Feb 2017 19:42:41
Message-Id: 1487101312.120d32ec3008792f13ece7fd668e6c0449a4acd0.soap@gentoo
1 commit: 120d32ec3008792f13ece7fd668e6c0449a4acd0
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Tue Feb 14 07:42:00 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 19:41:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=120d32ec
7
8 x11-misc/bbacpi: EAPI bump 5 -> 6
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/3967
12
13 ...acpi-0.1.5-r2.ebuild => bbacpi-0.1.5-r3.ebuild} | 29 ++++++++++++++--------
14 1 file changed, 18 insertions(+), 11 deletions(-)
15
16 diff --git a/x11-misc/bbacpi/bbacpi-0.1.5-r2.ebuild b/x11-misc/bbacpi/bbacpi-0.1.5-r3.ebuild
17 similarity index 50%
18 rename from x11-misc/bbacpi/bbacpi-0.1.5-r2.ebuild
19 rename to x11-misc/bbacpi/bbacpi-0.1.5-r3.ebuild
20 index 626f304f5e..70e4e5f387 100644
21 --- a/x11-misc/bbacpi/bbacpi-0.1.5-r2.ebuild
22 +++ b/x11-misc/bbacpi/bbacpi-0.1.5-r3.ebuild
23 @@ -1,9 +1,10 @@
24 -# Copyright 1999-2014 Gentoo Foundation
25 +# Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 # $Id$
28
29 -EAPI=5
30 -inherit autotools eutils
31 +EAPI=6
32 +
33 +inherit autotools
34
35 DESCRIPTION="ACPI monitor for X11"
36 HOMEPAGE="http://bbacpi.sourceforge.net"
37 @@ -18,18 +19,24 @@ DEPEND="
38 sys-power/acpi
39 sys-power/acpid
40 x11-libs/libX11
41 - x11-misc/xdialog
42 -"
43 + x11-misc/xdialog"
44 RDEPEND="
45 ${DEPEND}
46 - media-fonts/font-adobe-100dpi
47 -"
48 + media-fonts/font-adobe-100dpi"
49
50 -DOCS=( AUTHORS ChangeLog README )
51 +DOCS=( AUTHORS ChangeLog NEWS README data/README.bbacpi )
52 +PATCHES=(
53 + "${FILESDIR}"/${P}-noextraquals.diff
54 + "${FILESDIR}"/${P}-overflows.diff
55 +)
56
57 src_prepare() {
58 - epatch \
59 - "${FILESDIR}"/${P}-noextraquals.diff \
60 - "${FILESDIR}"/${P}-overflows.diff
61 + default
62 + mv configure.{in,ac} || die
63 eautoreconf
64 }
65 +
66 +src_install() {
67 + default
68 + rm "${ED%/}"/usr/share/bbtools/README.bbacpi || die
69 +}