From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1CAFD138334 for ; Tue, 12 Mar 2019 19:38:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2734E085D; Tue, 12 Mar 2019 19:38:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B8144E085D for ; Tue, 12 Mar 2019 19:38:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88D8E335CD2 for ; Tue, 12 Mar 2019 19:38:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DEA0517 for ; Tue, 12 Mar 2019 19:38:33 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1552419481.03a6bf58ed5bdd09ae32d4d6fa74c8b4175c3b69.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: / X-VCS-Repository: repo/gentoo X-VCS-Files: skel.ebuild X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 03a6bf58ed5bdd09ae32d4d6fa74c8b4175c3b69 X-VCS-Branch: master Date: Tue, 12 Mar 2019 19:38:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 78e59b4d-faea-4365-8b48-11c855ce3d24 X-Archives-Hash: e0afa47ead7ed58d32bb6bf4574e45f2 commit: 03a6bf58ed5bdd09ae32d4d6fa74c8b4175c3b69 Author: Joonas Niilola gmail com> AuthorDate: Mon Mar 4 14:42:17 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Mar 12 19:38:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03a6bf58 skel.ebuild: update for EAPI-7 Closes: https://bugs.gentoo.org/679408 Signed-off-by: Joonas Niilola gmail.com> Signed-off-by: Ulrich Müller gentoo.org> skel.ebuild | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/skel.ebuild b/skel.ebuild index c39ac798ea0..88d4d177e85 100644 --- a/skel.ebuild +++ b/skel.ebuild @@ -10,7 +10,9 @@ # It is suggested that you use the latest EAPI approved by the Council. # The PMS contains specifications for all EAPIs. Eclasses will test for this # variable if they need to use features that are not universal in all EAPIs. -EAPI=6 +# If an eclass doesn't support latest EAPI, use the previous EAPI instead. +EAPI=7 + # inherit lists eclasses to inherit functions from. For example, an ebuild # that needs the eautoreconf function from autotools.eclass won't work @@ -89,11 +91,16 @@ IUSE="gnome X" # The below is valid if the same run-time depends are required to compile. RDEPEND="${DEPEND}" +# Build-time dependencies that are executed during the emerge process, and +# only need to be present in the native build system (CBUILD). Example: +#BDEPEND="virtual/pkgconfig" + + # Source directory; the dir where the sources can be found (automatically # unpacked) inside ${WORKDIR}. The default value for S is ${WORKDIR}/${P} # If you don't need to change it, leave the S= line out of the ebuild # to keep it tidy. -#S=${WORKDIR}/${P} +#S="${WORKDIR}/${P}" # The following src_configure function is implemented as default by portage, so @@ -116,7 +123,7 @@ RDEPEND="${DEPEND}" # --mandir=/usr/share/man || die # Note the use of --infodir and --mandir, above. This is to make # this package FHS 2.2-compliant. For more information, see - # https://www.pathname.com/fhs/ + # https://wiki.linuxfoundation.org/lsb/fhs #} # The following src_compile function is implemented as default by portage, so