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 1797E1581D3 for ; Fri, 24 May 2024 10:08:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A9C2E2A61; Fri, 24 May 2024 10:08:01 +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 26C78E2A61 for ; Fri, 24 May 2024 10:08:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69010340C33 for ; Fri, 24 May 2024 10:08:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC5641A28 for ; Fri, 24 May 2024 10:07:58 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1716545249.6b7e609b347d7d25409008c6dbda9b4bea924208.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/rpmatch-standalone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild X-VCS-Directories: sys-libs/rpmatch-standalone/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 6b7e609b347d7d25409008c6dbda9b4bea924208 X-VCS-Branch: master Date: Fri, 24 May 2024 10:07:58 +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: ae79f0c7-0d29-4638-8c90-923c1263837d X-Archives-Hash: 00816e52aeca9f094fa585ac0d8ab462 commit: 6b7e609b347d7d25409008c6dbda9b4bea924208 Author: Arthur Zamarin gentoo org> AuthorDate: Fri May 24 10:07:29 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Fri May 24 10:07:29 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7e609b sys-libs/rpmatch-standalone: drop 1.0 Signed-off-by: Arthur Zamarin gentoo.org> .../rpmatch-standalone-1.0.ebuild | 37 ---------------------- 1 file changed, 37 deletions(-) diff --git a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild b/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild deleted file mode 100644 index d6689b450bd9..000000000000 --- a/sys-libs/rpmatch-standalone/rpmatch-standalone-1.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Standalone rpmatch library for use with musl" -HOMEPAGE="https://github.com/pullmoll/musl-rpmatch" -SRC_URI="https://github.com/pullmoll/musl-rpmatch/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86" -IUSE="static-libs" - -RDEPEND="!sys-libs/glibc" - -S="${WORKDIR}/musl-rpmatch-${PV}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die - - mkdir "${ED%/}"/usr/$(get_libdir)/pkgconfig/ - cp "${S}"/musl-rpmatch.pc "${ED%/}"/usr/$(get_libdir)/pkgconfig/rpmatch-standalone.pc -}