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 54331139694 for ; Fri, 26 May 2017 10:27:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A96A21C2BA; Fri, 26 May 2017 10:27:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3230521C2B7 for ; Fri, 26 May 2017 10:27:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 37050341659 for ; Fri, 26 May 2017 10:27:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2C57845 for ; Fri, 26 May 2017 10:27:19 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1495794405.bd9d0922aec4371bbfc2628ce195762d0f3969db.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/bootcreator/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/bootcreator/bootcreator-1.1.ebuild sys-boot/bootcreator/bootcreator-1.2.ebuild X-VCS-Directories: sys-boot/bootcreator/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bd9d0922aec4371bbfc2628ce195762d0f3969db X-VCS-Branch: master Date: Fri, 26 May 2017 10:27:19 +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-Archives-Salt: dce4ada4-729f-449b-b51a-431f85e096da X-Archives-Hash: d1d8593d9710a08203259fe57e4fa52f commit: bd9d0922aec4371bbfc2628ce195762d0f3969db Author: David Seifert gentoo org> AuthorDate: Fri May 26 10:10:00 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Fri May 26 10:26:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd9d0922 sys-boot/bootcreator: Port to EAPI 6 Package-Manager: Portage-2.3.6, Repoman-2.3.2 sys-boot/bootcreator/bootcreator-1.1.ebuild | 24 +++++++++--------------- sys-boot/bootcreator/bootcreator-1.2.ebuild | 22 ++++++++-------------- 2 files changed, 17 insertions(+), 29 deletions(-) diff --git a/sys-boot/bootcreator/bootcreator-1.1.ebuild b/sys-boot/bootcreator/bootcreator-1.1.ebuild index 274359223c8..6c39fd7daa6 100644 --- a/sys-boot/bootcreator/bootcreator-1.1.ebuild +++ b/sys-boot/bootcreator/bootcreator-1.1.ebuild @@ -1,35 +1,29 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -inherit eutils +EAPI=6 DESCRIPTION="Simple generator for Forth based BootMenu scripts for Pegasos machines" - HOMEPAGE="http://tbs-software.com/morgoth/projects.html" SRC_URI="http://tbs-software.com/morgoth/files/bootcreator-src.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc -*" IUSE="" -DEPEND="" -S=${WORKDIR}/${PN} +DEPEND="" -src_unpack() { - unpack ${A} - cd ${S} - mv examples/example.bc examples/bootmenu.example -} +S=${WORKDIR} src_compile() { - cd ${S} - make all || die "Can't compile bootmenu" + emake all } src_install() { - cd ${S} dosbin src/bootcreator + dodoc doc/README + insinto /etc - doins examples/bootmenu.example - dodoc doc/README doc/COPYING + newins examples/example.bc bootmenu.example } diff --git a/sys-boot/bootcreator/bootcreator-1.2.ebuild b/sys-boot/bootcreator/bootcreator-1.2.ebuild index c76c2574951..6c39fd7daa6 100644 --- a/sys-boot/bootcreator/bootcreator-1.2.ebuild +++ b/sys-boot/bootcreator/bootcreator-1.2.ebuild @@ -1,35 +1,29 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -inherit eutils +EAPI=6 DESCRIPTION="Simple generator for Forth based BootMenu scripts for Pegasos machines" - HOMEPAGE="http://tbs-software.com/morgoth/projects.html" SRC_URI="http://tbs-software.com/morgoth/files/bootcreator-src.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="ppc -*" IUSE="" + DEPEND="" S=${WORKDIR} -src_unpack() { - unpack ${A} - cd ${S} - mv examples/example.bc examples/bootmenu.example -} - src_compile() { - cd ${S} - make all || die "Can't compile bootmenu" + emake all } src_install() { - cd ${S} dosbin src/bootcreator + dodoc doc/README + insinto /etc - doins examples/bootmenu.example - dodoc doc/README doc/COPYING + newins examples/example.bc bootmenu.example }