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 DB76F1580B3 for ; Sat, 4 Sep 2021 15:31:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D34AAE0830; Sat, 4 Sep 2021 15:31:29 +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 ACCB5E0830 for ; Sat, 4 Sep 2021 15:31:29 +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 760C533CEF2 for ; Sat, 4 Sep 2021 15:31:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0BA0FA7 for ; Sat, 4 Sep 2021 15:31:27 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1630769471.6fc8ee20a7667040574f1ae444ec396da8dd0c79.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-auth/nss_ldap/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-auth/nss_ldap/nss_ldap-265-r5.ebuild X-VCS-Directories: sys-auth/nss_ldap/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6fc8ee20a7667040574f1ae444ec396da8dd0c79 X-VCS-Branch: master Date: Sat, 4 Sep 2021 15:31:27 +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: d6d12ce9-3f18-4f0f-ac82-064c4d130560 X-Archives-Hash: da56a66248dc3bb60c0c256264a4bff2 commit: 6fc8ee20a7667040574f1ae444ec396da8dd0c79 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 19 12:45:32 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Sep 4 15:31:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fc8ee20 sys-auth/nss_ldap: Drop 265-r5, EAPI5-- Closes: https://bugs.gentoo.org/777633 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-auth/nss_ldap/nss_ldap-265-r5.ebuild | 144 ------------------------------- 1 file changed, 144 deletions(-) diff --git a/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild b/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild deleted file mode 100644 index ca216ce2854..00000000000 --- a/sys-auth/nss_ldap/nss_ldap-265-r5.ebuild +++ /dev/null @@ -1,144 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit fixheadtails epatch multilib multilib-minimal autotools prefix - -IUSE="debug ssl sasl kerberos" - -DESCRIPTION="NSS LDAP Module" -HOMEPAGE="http://www.padl.com/OSS/nss_ldap.html" -SRC_URI="http://www.padl.com/download/${P}.tar.gz" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux" - -DEPEND=">=net-nds/openldap-2.4.38-r1[${MULTILIB_USEDEP}] - sasl? ( >=dev-libs/cyrus-sasl-2.1.26-r3[${MULTILIB_USEDEP}] ) - kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] ) - ssl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] )" -RDEPEND="${DEPEND} - !> ${S}/config.h - echo "#define HAVE_NET_ROUTE_H 1" >> ${S}/config.h - echo "#define HAVE_RESOLV_H 1" >> ${S}/config.h - fi -} - -multilib_src_install() { - if use kernel_FreeBSD; then - emake -j1 DESTDIR="${D}" install - else - emake -j1 DESTDIR="${D}" install \ - INST_UID=${PORTAGE_USER:-root} INST_GID=${PORTAGE_GROUP:-root} - fi -} - -multilib_src_install_all() { - # dumb /usr/lib* -> /lib* symlinks gone wrong - rm -rf "${ED}"/usr/usr - - insinto /etc - doins ldap.conf - - # Append two blank lines and some skip entries - echo >>"${ED}"/etc/ldap.conf - echo >>"${ED}"/etc/ldap.conf - sed -i "${ED}"/etc/ldap.conf \ - -e '$inss_initgroups_ignoreusers ldap,openldap,mysql,syslog,root,postgres' - - dodoc ldap.conf ANNOUNCE NEWS ChangeLog AUTHORS \ - CVSVersionInfo.txt README nsswitch.ldap certutil - docinto docs; dodoc doc/* -} - -pkg_postinst() { - elog "If you use a ldaps:// string in the 'uri' setting of" - elog "your /etc/ldap.conf, you must set 'ssl on'!" -}