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 D9DC0138334 for ; Sat, 19 Oct 2019 10:15:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 563E7E0894; Sat, 19 Oct 2019 10:15:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 40DD1E0894 for ; Sat, 19 Oct 2019 10:15:55 +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 0DB3234C05F for ; Sat, 19 Oct 2019 10:15:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07EBD888 for ; Sat, 19 Oct 2019 10:15:51 +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: <1571480121.222079522ae84acfab5079fe5ef164aaa03f0b59.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/upslug2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/upslug2/upslug2-11.ebuild X-VCS-Directories: dev-embedded/upslug2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 222079522ae84acfab5079fe5ef164aaa03f0b59 X-VCS-Branch: master Date: Sat, 19 Oct 2019 10:15:51 +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: ff3d4b71-0e79-4974-9a54-54ab25b34210 X-Archives-Hash: d165a0563946b2218361079fff16a8ec commit: 222079522ae84acfab5079fe5ef164aaa03f0b59 Author: David Seifert gentoo org> AuthorDate: Sat Oct 19 10:15:21 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Oct 19 10:15:21 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22207952 dev-embedded/upslug2: Port to EAPI 7 Closes: https://bugs.gentoo.org/697360 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert gentoo.org> dev-embedded/upslug2/upslug2-11.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-embedded/upslug2/upslug2-11.ebuild b/dev-embedded/upslug2/upslug2-11.ebuild index 9aa13e4e8de..e994216ef58 100644 --- a/dev-embedded/upslug2/upslug2-11.ebuild +++ b/dev-embedded/upslug2/upslug2-11.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="util for flashing NSLU2 machines remotely" HOMEPAGE="http://www.nslu2-linux.org/wiki/Main/UpSlug2" @@ -10,11 +10,12 @@ SRC_URI="mirror://sourceforge/nslu/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~arm x86" -IUSE="" + +src_configure() { + econf --sbindir "${EPREFIX}"/usr/bin +} src_install() { - emake install DESTDIR="${D}" || die - mv "${D}"/usr/{sbin,bin} || die + default fperms 4711 /usr/bin/upslug2 - dodoc AUTHORS ChangeLog NEWS README* }