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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1C8A215800F for ; Wed, 25 Jan 2023 08:25:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 076E4E0929; Wed, 25 Jan 2023 08:25:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E4661E0924 for ; Wed, 25 Jan 2023 08:25:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 12FBC335DC6 for ; Wed, 25 Jan 2023 08:25:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D36988A for ; Wed, 25 Jan 2023 08:25:25 +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: <1674635067.111004fd4fe23bf3fc8673dbc58b4616b16b6488.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nds/ldapvi/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nds/ldapvi/ldapvi-1.7_p20101214-r3.ebuild X-VCS-Directories: net-nds/ldapvi/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 111004fd4fe23bf3fc8673dbc58b4616b16b6488 X-VCS-Branch: master Date: Wed, 25 Jan 2023 08:25:25 +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: fc67bed3-8867-47ec-87bd-78c059f131b9 X-Archives-Hash: 1ac9e5427eb96a203db05df814dbef16 commit: 111004fd4fe23bf3fc8673dbc58b4616b16b6488 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jan 25 08:24:27 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jan 25 08:24:27 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111004fd net-nds/ldapvi: drop 1.7_p20101214-r3 Signed-off-by: Andreas Sturmlechner gentoo.org> net-nds/ldapvi/ldapvi-1.7_p20101214-r3.ebuild | 52 --------------------------- 1 file changed, 52 deletions(-) diff --git a/net-nds/ldapvi/ldapvi-1.7_p20101214-r3.ebuild b/net-nds/ldapvi/ldapvi-1.7_p20101214-r3.ebuild deleted file mode 100644 index 71a2b08d735a..000000000000 --- a/net-nds/ldapvi/ldapvi-1.7_p20101214-r3.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Manage LDAP entries with a text editor" -HOMEPAGE="http://www.lichteblau.com/ldapvi/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" -S="${WORKDIR}"/${P}/${PN} - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~hppa ~ppc ~sparc x86" -IUSE="gnutls sasl" - -RDEPEND="dev-libs/popt - dev-libs/glib:2 - net-nds/openldap:= - sys-libs/readline:= - sys-libs/ncurses:0= - virtual/libcrypt:= - gnutls? ( net-libs/gnutls:= ) - !gnutls? ( dev-libs/openssl:0= ) - sasl? ( dev-libs/cyrus-sasl:2 )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - # bug #459478 - sed -i \ - -e '/^AC_SEARCH_LIBS/s:curses ncurses:curses ncurses tinfo:' \ - configure.in || die - - mv configure.{in,ac} || die - - eautoreconf -} - -src_configure() { - econf \ - --with-libcrypto=$(usex gnutls gnutls openssl) -} - -src_install() { - dobin ldapvi - doman ldapvi.1 - dodoc NEWS manual/{bg.png,html.xsl,manual.{css,xml}} -}