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 61CCA158093 for ; Sun, 3 Jul 2022 11:48:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 829AAE08EB; Sun, 3 Jul 2022 11:48:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 67999E08EB for ; Sun, 3 Jul 2022 11:48:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 9F804341ED6 for ; Sun, 3 Jul 2022 11:48:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24A447F for ; Sun, 3 Jul 2022 11:48:35 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1656848877.1e56455be295dfe817c7cd7f37bd48f287f282c0.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/argtable/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/argtable/argtable-2.13-r1.ebuild X-VCS-Directories: dev-libs/argtable/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 1e56455be295dfe817c7cd7f37bd48f287f282c0 X-VCS-Branch: master Date: Sun, 3 Jul 2022 11:48:35 +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: bdff49ff-c60e-4472-9f5f-3eb4fc2be41d X-Archives-Hash: 2ccee02a0d815fff1d89b12d47e81157 commit: 1e56455be295dfe817c7cd7f37bd48f287f282c0 Author: Matthew Smith gentoo org> AuthorDate: Sun Jul 3 11:47:29 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sun Jul 3 11:47:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e56455b dev-libs/argtable: drop 2.13-r1 Signed-off-by: Matthew Smith gentoo.org> dev-libs/argtable/argtable-2.13-r1.ebuild | 48 ------------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-libs/argtable/argtable-2.13-r1.ebuild b/dev-libs/argtable/argtable-2.13-r1.ebuild deleted file mode 100644 index e8053275362f..000000000000 --- a/dev-libs/argtable/argtable-2.13-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit versionator - -DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss" -HOMEPAGE="http://argtable.sourceforge.net/" - -MY_PV="$(replace_version_separator 1 '-')" -MY_P=${PN}${MY_PV} - -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86" -IUSE="doc debug examples static-libs" - -S="${WORKDIR}/${MY_P}" - -src_configure() { - econf \ - $(use_enable debug) \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install - rm -rf "${D}"/usr/share/doc/${PF}/ - - dodoc AUTHORS ChangeLog NEWS README - - if use doc ; then - cd "${S}/doc" - dodoc *.pdf *.ps - docinto html - dodoc *.html *.gif - fi - - if use examples ; then - cd "${S}/example" - docinto examples - dodoc Makefile *.[ch] README.txt - fi - - find "${ED}" -name "*.la" -delete || die "failed to delete .la files" -}