Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: /
Date: Tue, 12 Mar 2019 19:38:37
Message-Id: 1552419481.03a6bf58ed5bdd09ae32d4d6fa74c8b4175c3b69.ulm@gentoo
1 commit: 03a6bf58ed5bdd09ae32d4d6fa74c8b4175c3b69
2 Author: Joonas Niilola <juippis <AT> gmail <DOT> com>
3 AuthorDate: Mon Mar 4 14:42:17 2019 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 12 19:38:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03a6bf58
7
8 skel.ebuild: update for EAPI-7
9
10 Closes: https://bugs.gentoo.org/679408
11 Signed-off-by: Joonas Niilola <juippis <AT> gmail.com>
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 skel.ebuild | 13 ++++++++++---
15 1 file changed, 10 insertions(+), 3 deletions(-)
16
17 diff --git a/skel.ebuild b/skel.ebuild
18 index c39ac798ea0..88d4d177e85 100644
19 --- a/skel.ebuild
20 +++ b/skel.ebuild
21 @@ -10,7 +10,9 @@
22 # It is suggested that you use the latest EAPI approved by the Council.
23 # The PMS contains specifications for all EAPIs. Eclasses will test for this
24 # variable if they need to use features that are not universal in all EAPIs.
25 -EAPI=6
26 +# If an eclass doesn't support latest EAPI, use the previous EAPI instead.
27 +EAPI=7
28 +
29
30 # inherit lists eclasses to inherit functions from. For example, an ebuild
31 # that needs the eautoreconf function from autotools.eclass won't work
32 @@ -89,11 +91,16 @@ IUSE="gnome X"
33 # The below is valid if the same run-time depends are required to compile.
34 RDEPEND="${DEPEND}"
35
36 +# Build-time dependencies that are executed during the emerge process, and
37 +# only need to be present in the native build system (CBUILD). Example:
38 +#BDEPEND="virtual/pkgconfig"
39 +
40 +
41 # Source directory; the dir where the sources can be found (automatically
42 # unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P}
43 # If you don't need to change it, leave the S= line out of the ebuild
44 # to keep it tidy.
45 -#S=${WORKDIR}/${P}
46 +#S="${WORKDIR}/${P}"
47
48
49 # The following src_configure function is implemented as default by portage, so
50 @@ -116,7 +123,7 @@ RDEPEND="${DEPEND}"
51 # --mandir=/usr/share/man || die
52 # Note the use of --infodir and --mandir, above. This is to make
53 # this package FHS 2.2-compliant. For more information, see
54 - # https://www.pathname.com/fhs/
55 + # https://wiki.linuxfoundation.org/lsb/fhs
56 #}
57
58 # The following src_compile function is implemented as default by portage, so