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 1796415815E for ; Fri, 2 Feb 2024 16:31:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBFC9E2A23; Fri, 2 Feb 2024 16:31:35 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A532EE2A23 for ; Fri, 2 Feb 2024 16:31:35 +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 C2A4A343210 for ; Fri, 2 Feb 2024 16:31:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3971614C5 for ; Fri, 2 Feb 2024 16:31:33 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1706891479.1ddf64e25b1b99a02b0334115ac5c8cbe74ec2f2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/libstrl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libstrl/Manifest dev-libs/libstrl/libstrl-0.5.1-r2.ebuild dev-libs/libstrl/metadata.xml profiles/package.mask X-VCS-Directories: profiles/ dev-libs/libstrl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1ddf64e25b1b99a02b0334115ac5c8cbe74ec2f2 X-VCS-Branch: master Date: Fri, 2 Feb 2024 16:31:33 +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: a9965517-cf76-4380-a47c-05304f4edb9a X-Archives-Hash: c9eee8ef788f3ea39eea1687dfb0c545 commit: 1ddf64e25b1b99a02b0334115ac5c8cbe74ec2f2 Author: Michał Górny gentoo org> AuthorDate: Fri Feb 2 16:25:55 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 2 16:31:19 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ddf64e2 dev-libs/libstrl: Remove last-rited pkg Closes: https://bugs.gentoo.org/917248 Signed-off-by: Michał Górny gentoo.org> dev-libs/libstrl/Manifest | 1 - dev-libs/libstrl/libstrl-0.5.1-r2.ebuild | 35 -------------------------------- dev-libs/libstrl/metadata.xml | 5 ----- profiles/package.mask | 1 - 4 files changed, 42 deletions(-) diff --git a/dev-libs/libstrl/Manifest b/dev-libs/libstrl/Manifest deleted file mode 100644 index a396cb5b7630..000000000000 --- a/dev-libs/libstrl/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST libstrl-0.5.1.tar.bz2 259026 BLAKE2B 9f2b576b1a86361f982069a1e7b1c12e0f47918637ed43add261379c195ba9ddeb5b8ca04b0811b75373235c79ff5b254a42c2e3ed360da410039a913137dd60 SHA512 c79b37aef2cf909529e3afabdf472730f9df2eb3605eeb41a74b56f1c9c43a5be1f23c7f383c4b1c2aacb81b9df1d455a3fe9ec1083d5fcabae4c82ef916df92 diff --git a/dev-libs/libstrl/libstrl-0.5.1-r2.ebuild b/dev-libs/libstrl/libstrl-0.5.1-r2.ebuild deleted file mode 100644 index 288542152c3e..000000000000 --- a/dev-libs/libstrl/libstrl-0.5.1-r2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Compat library for functions like strlcpy(), strlcat(), strnlen(), getline()" -HOMEPAGE="http://ohnopub.net/~ohnobinki/libstrl/" -SRC_URI="http://mirror.ohnopub.net/mirror/${P}.tar.bz2" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x64-macos" -IUSE="doc test" -RESTRICT="!test? ( test )" - -BDEPEND=" - doc? ( app-text/doxygen ) - test? ( dev-libs/check ) -" - -src_configure() { - tc-export AR - - econf \ - $(use_with doc doxygen) \ - $(use_with test check) -} - -src_install() { - default - - find "${ED}" -name '*.la' -delete || die -} diff --git a/dev-libs/libstrl/metadata.xml b/dev-libs/libstrl/metadata.xml deleted file mode 100644 index 85e4ed814fa2..000000000000 --- a/dev-libs/libstrl/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/profiles/package.mask b/profiles/package.mask index e4136a416369..6edad06b0528 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -276,7 +276,6 @@ dev-go/golicense # on vulnerable media-gfx/transfig. Homepage gone. No other revdeps. # Removal on 2024-01-21. Bug #917248. dev-libs/liblist -dev-libs/libstrl # Andreas Sturmlechner (2024-01-31) # KDE Plasma 6 RC2 (5.93) and Frameworks 6 RC2 (5.249) mask