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 49AC3138359 for ; Tue, 4 Aug 2020 16:02:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56D16E09E2; Tue, 4 Aug 2020 16:02:02 +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 19A2CE09E2 for ; Tue, 4 Aug 2020 16:02:02 +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 464A134F170 for ; Tue, 4 Aug 2020 16:02:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01764274 for ; Tue, 4 Aug 2020 16:02:00 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1596556916.7b7fd7c54eb47186e2bce7d55394fffaa3bb505b.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pambase/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/pambase/pambase-20200804.ebuild X-VCS-Directories: sys-auth/pambase/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 7b7fd7c54eb47186e2bce7d55394fffaa3bb505b X-VCS-Branch: master Date: Tue, 4 Aug 2020 16:02:00 +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: 46494eab-652b-42d8-aefb-cd1d72a56eef X-Archives-Hash: 6a306b032e523ca17ba36db042f9c6b0 commit: 7b7fd7c54eb47186e2bce7d55394fffaa3bb505b Author: Mikle Kolyada gentoo org> AuthorDate: Tue Aug 4 16:01:28 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Tue Aug 4 16:01:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b7fd7c5 sys-auth/pambase: install files via pam.eclass Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Mikle Kolyada gentoo.org> sys-auth/pambase/pambase-20200804.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sys-auth/pambase/pambase-20200804.ebuild b/sys-auth/pambase/pambase-20200804.ebuild index a97d5160337..cb83a3cab2e 100644 --- a/sys-auth/pambase/pambase-20200804.ebuild +++ b/sys-auth/pambase/pambase-20200804.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{7..9} ) -inherit python-any-r1 +inherit pam python-any-r1 DESCRIPTION="PAM base configuration files" HOMEPAGE="https://github.com/gentoo/pambase" @@ -68,7 +68,5 @@ src_configure() { src_test() { :; } src_install() { - dodir /etc/pam.d - insinto /etc/pam.d - doins -r stack/. + dopamd -r stack/. }