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 3F3791581F3 for ; Sat, 30 Nov 2024 13:53:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CBA4E0819; Sat, 30 Nov 2024 13:52:58 +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 2BE80E0815 for ; Sat, 30 Nov 2024 13:52:58 +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 EBFC2342FF3 for ; Sat, 30 Nov 2024 13:52:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5A16E1F7A for ; Sat, 30 Nov 2024 13:52:54 +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: <1732974676.0d11961b6fbca7eebf28cd78e84935d357fd833a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-lzlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r2.ebuild X-VCS-Directories: dev-scheme/guile-lzlib/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0d11961b6fbca7eebf28cd78e84935d357fd833a X-VCS-Branch: master Date: Sat, 30 Nov 2024 13:52:54 +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: 7c169383-b08f-460b-b52c-62432be24466 X-Archives-Hash: 68000af956df56e39a81295287f42f2a commit: 0d11961b6fbca7eebf28cd78e84935d357fd833a Author: Sam James gentoo org> AuthorDate: Sat Nov 30 13:46:07 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 30 13:51:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d11961b dev-scheme/guile-lzlib: drop 0.0.2-r2 Signed-off-by: Sam James gentoo.org> dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r2.ebuild | 57 ---------------------- 1 file changed, 57 deletions(-) diff --git a/dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r2.ebuild b/dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r2.ebuild deleted file mode 100644 index 228c3c646d40..000000000000 --- a/dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r2.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="GNU Guile library providing bindings to lzlib" -HOMEPAGE="https://notabug.org/guile-lzlib/guile-lzlib/" - -if [[ "${PV}" == *9999* ]] ; then - inherit git-r3 - - EGIT_REPO_URI="https://notabug.org/${PN}/${PN}.git" -else - SRC_URI="https://notabug.org/${PN}/${PN}/archive/${PV}.tar.gz - -> ${P}.tar.gz" - S="${WORKDIR}/${PN}" - - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="GPL-3+" -SLOT="0" - -RDEPEND=" - >=dev-scheme/guile-2.0.0:= - app-arch/lzlib -" -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - virtual/pkgconfig -" - -DOCS=( AUTHORS ChangeLog HACKING NEWS README.org ) - -# 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 - eautoreconf - - # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 - find "${S}" -name "*.scm" -exec touch {} + || die -} - -src_install() { - default - - # Workaround llvm-strip problem of mangling guile ELF debug - # sections: https://bugs.gentoo.org/905898 - dostrip -x "/usr/$(get_libdir)/guile" -}