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 B06C11382C5 for ; Sat, 19 Dec 2020 15:00:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07B3EE0909; Sat, 19 Dec 2020 15:00:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E5E76E0909 for ; Sat, 19 Dec 2020 15:00:38 +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 E8E9634110F for ; Sat, 19 Dec 2020 15:00:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5B0514A for ; Sat, 19 Dec 2020 15:00:36 +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: <1608390034.d8f7979e8ab4a14f6d2185fae742db0d5cd3ea27.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/pam-pgsql/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/pam-pgsql/pam-pgsql-0.7.3.2.ebuild X-VCS-Directories: sys-auth/pam-pgsql/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: d8f7979e8ab4a14f6d2185fae742db0d5cd3ea27 X-VCS-Branch: master Date: Sat, 19 Dec 2020 15:00:36 +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: ed3cf741-a2af-494c-b626-86b980885bb6 X-Archives-Hash: c981f8aa87804fc430c10dd5000838e9 commit: d8f7979e8ab4a14f6d2185fae742db0d5cd3ea27 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Dec 19 14:57:36 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Dec 19 15:00:34 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f7979e sys-auth/pam-pgsql: port to EAPI=7 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Mikle Kolyada gentoo.org> sys-auth/pam-pgsql/pam-pgsql-0.7.3.2.ebuild | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sys-auth/pam-pgsql/pam-pgsql-0.7.3.2.ebuild b/sys-auth/pam-pgsql/pam-pgsql-0.7.3.2.ebuild index cf69a6bf4c9..56bbf56885e 100644 --- a/sys-auth/pam-pgsql/pam-pgsql-0.7.3.2.ebuild +++ b/sys-auth/pam-pgsql/pam-pgsql-0.7.3.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 -inherit eutils pam +inherit pam DESCRIPTION="pam module to authenticate users via PostgreSQL" HOMEPAGE="https://sourceforge.net/projects/pam-pgsql/" @@ -17,18 +17,17 @@ fi RDEPEND="sys-libs/pam >=dev-db/postgresql-8.0:= >=dev-libs/libgcrypt-1.2.0:0=" + DEPEND="${RDEPEND}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" src_configure() { econf \ --sysconfdir=/etc/security \ - --libdir=/$(get_libdir) \ - --docdir=/usr/share/doc/${PF} + --libdir=/$(get_libdir) } src_compile() { @@ -37,7 +36,8 @@ src_compile() { src_install() { emake DESTDIR="${D}" pammoddir="$(getpam_mod_dir)" install - find "${ED}" -name '*.la' -delete + + find "${ED}" -name '*.la' -delete || die } pkg_postinst() {