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 7DD0F158089 for ; Sun, 8 Oct 2023 18:38:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C07882BC029; Sun, 8 Oct 2023 18:38:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 A4FA92BC029 for ; Sun, 8 Oct 2023 18:38:22 +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 BB9DE335C8E for ; Sun, 8 Oct 2023 18:38:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 699A6EBE for ; Sun, 8 Oct 2023 18:38:20 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1696790290.d5288953bcc343f811fd59179097dad1db206320.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libbsd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libbsd/libbsd-0.11.7.ebuild X-VCS-Directories: dev-libs/libbsd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d5288953bcc343f811fd59179097dad1db206320 X-VCS-Branch: master Date: Sun, 8 Oct 2023 18:38:20 +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: e8120dc5-ee64-467a-8844-7b68a0e2c245 X-Archives-Hash: fdeb2755d1140b1d3aa1d96560271ee7 commit: d5288953bcc343f811fd59179097dad1db206320 Author: David Seifert gentoo org> AuthorDate: Sun Oct 8 18:38:10 2023 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Oct 8 18:38:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5288953 dev-libs/libbsd: drop 0.11.7 Signed-off-by: David Seifert gentoo.org> dev-libs/libbsd/libbsd-0.11.7.ebuild | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/dev-libs/libbsd/libbsd-0.11.7.ebuild b/dev-libs/libbsd/libbsd-0.11.7.ebuild deleted file mode 100644 index f01b8521ce0d..000000000000 --- a/dev-libs/libbsd/libbsd-0.11.7.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/guillemjover.asc -inherit multilib-minimal verify-sig - -DESCRIPTION="Library to provide useful functions commonly found on BSD systems" -HOMEPAGE="https://libbsd.freedesktop.org/wiki/ https://gitlab.freedesktop.org/libbsd/libbsd" -SRC_URI="https://${PN}.freedesktop.org/releases/${P}.tar.xz" -SRC_URI+=" verify-sig? ( https://${PN}.freedesktop.org/releases/${P}.tar.xz.asc )" - -LICENSE="BSD BSD-2 BSD-4 ISC" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="static-libs" - -RDEPEND="app-crypt/libmd[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND} - >=sys-kernel/linux-headers-3.17 -" -BDEPEND="verify-sig? ( sec-keys/openpgp-keys-guillemjover )" - -multilib_src_configure() { - # The build system will install libbsd-ctor.a despite USE="-static-libs" - # which is correct, see: - # https://gitlab.freedesktop.org/libbsd/libbsd/commit/c5b959028734ca2281250c85773d9b5e1d259bc8 - ECONF_SOURCE="${S}" econf $(use_enable static-libs static) -} - -multilib_src_install() { - emake DESTDIR="${D}" install - - find "${ED}" -type f -name "*.la" -delete || die -}