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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3CA631581F3 for ; Sat, 30 Nov 2024 13:52:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F23B3E07B3; Sat, 30 Nov 2024 13:52:56 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED311E07B3 for ; Sat, 30 Nov 2024 13:52:55 +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 2879D342FE1 for ; Sat, 30 Nov 2024 13:52:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75A51F96 for ; Sat, 30 Nov 2024 13:52:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732974668.fde60a3208276061a8dede9c5c7144c22d0449da.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-config/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/guile-config/guile-config-0.5.1.ebuild X-VCS-Directories: dev-scheme/guile-config/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fde60a3208276061a8dede9c5c7144c22d0449da X-VCS-Branch: master Date: Sat, 30 Nov 2024 13:52:53 +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: c3a9449b-e888-4153-b820-b7a3e18a6c2c X-Archives-Hash: 952474fdff18bc610aba81b8e2388e09 commit: fde60a3208276061a8dede9c5c7144c22d0449da Author: Sam James gentoo org> AuthorDate: Sat Nov 30 13:39:14 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 30 13:51:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fde60a32 dev-scheme/guile-config: drop 0.5.1 Signed-off-by: Sam James gentoo.org> dev-scheme/guile-config/guile-config-0.5.1.ebuild | 38 ----------------------- 1 file changed, 38 deletions(-) diff --git a/dev-scheme/guile-config/guile-config-0.5.1.ebuild b/dev-scheme/guile-config/guile-config-0.5.1.ebuild deleted file mode 100644 index c1144e43ef4b..000000000000 --- a/dev-scheme/guile-config/guile-config-0.5.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Guile application configuration parsing library" -HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-config/" -SRC_URI="https://gitlab.com/a-sassmannshausen/${PN}/-/archive/${PV}/${P}.tar.bz2" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=">=dev-scheme/guile-2.0.0:=" -DEPEND="${RDEPEND}" - -# guile generates ELF files without use of C or machine code -# It's a portage's false positive. bug #677600 -QA_PREBUILT='*[.]go' - -src_prepare() { - default - - # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 - find "${S}" -name "*.scm" -exec touch {} + || die - - eautoreconf -} - -src_install() { - default - - # Workaround llvm-strip problem of mangling guile ELF debug - # sections. Bug https://bugs.gentoo.org/905898 - dostrip -x /usr/$(get_libdir)/guile -}