From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 912781382BD for ; Wed, 15 Jun 2016 15:48:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A5CDE0961; Wed, 15 Jun 2016 15:48:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A2572E0961 for ; Wed, 15 Jun 2016 15:48:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5D23340662 for ; Wed, 15 Jun 2016 15:48:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 394001AE8 for ; Wed, 15 Jun 2016 15:48:24 +0000 (UTC) From: "Göktürk Yüksek" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Göktürk Yüksek" Message-ID: <1466005378.1c80f594d8971d59cce294aa6720ddc5a4c2f954.gokturk@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-firewall/nftables/nftables-0.5-r3.ebuild net-firewall/nftables/nftables-0.5-r4.ebuild X-VCS-Directories: net-firewall/nftables/ X-VCS-Committer: gokturk X-VCS-Committer-Name: Göktürk Yüksek X-VCS-Revision: 1c80f594d8971d59cce294aa6720ddc5a4c2f954 X-VCS-Branch: master Date: Wed, 15 Jun 2016 15:48:24 +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: 36c529ce-cbf4-4554-85cd-3cb3ba0a6e0f X-Archives-Hash: a1b7772ec671646344641f5e40cbd05d commit: 1c80f594d8971d59cce294aa6720ddc5a4c2f954 Author: Nicholas Vinson gmail com> AuthorDate: Wed Jun 15 12:59:27 2016 +0000 Commit: Göktürk Yüksek gentoo org> CommitDate: Wed Jun 15 15:42:58 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c80f594 net-firewall/nftables: correct install utility function calls Previous modification changed the cp command to: instinto /usr/libexec/${PN} doins "${FILESDIR}"/libexec/${PN}.sh However, this change is incorrect as it strips the exec flag from ${PN}.sh. This commit changes the insinto and doins to exeinto and doexe which fixes the problem. Gentoo-bug: 586000 Package-Manager: portage-2.3.0_rc1 .../nftables/{nftables-0.5-r3.ebuild => nftables-0.5-r4.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-firewall/nftables/nftables-0.5-r3.ebuild b/net-firewall/nftables/nftables-0.5-r4.ebuild similarity index 95% rename from net-firewall/nftables/nftables-0.5-r3.ebuild rename to net-firewall/nftables/nftables-0.5-r4.ebuild index aa54e05..9ec62ec 100644 --- a/net-firewall/nftables/nftables-0.5-r3.ebuild +++ b/net-firewall/nftables/nftables-0.5-r4.ebuild @@ -56,8 +56,8 @@ src_install() { default dodir /usr/libexec/${PN} - insinto /usr/libexec/${PN} - doins "${FILESDIR}"/libexec/${PN}.sh + exeinto /usr/libexec/${PN} + doexe "${FILESDIR}"/libexec/${PN}.sh newconfd "${FILESDIR}"/${PN}.confd ${PN} newinitd "${FILESDIR}"/${PN}.init-r2 ${PN}