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 F25F915810D for ; Tue, 16 May 2023 11:50:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60D54E088A; Tue, 16 May 2023 11:50:50 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3661FE088A for ; Tue, 16 May 2023 11:50:50 +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 1D809340D00 for ; Tue, 16 May 2023 11:50:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76CA3A70 for ; Tue, 16 May 2023 11:50:47 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1684237843.3a1364a6a38575dea322388e778a20d2d008f7db.xgqt@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-r1.ebuild dev-scheme/guile-lzlib/guile-lzlib-0.0.2.ebuild X-VCS-Directories: dev-scheme/guile-lzlib/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 3a1364a6a38575dea322388e778a20d2d008f7db X-VCS-Branch: master Date: Tue, 16 May 2023 11:50:47 +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: 6dc684dd-9f58-4f10-85b4-c768cc021b16 X-Archives-Hash: e7c033ad0555ba21d54014d7ddd9ec57 commit: 3a1364a6a38575dea322388e778a20d2d008f7db Author: Maciej Barć gentoo org> AuthorDate: Tue May 16 11:46:01 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Tue May 16 11:50:43 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a1364a6 dev-scheme/guile-lzlib: do not strip guile bytecode Bug: https://bugs.gentoo.org/905898 Signed-off-by: Maciej Barć gentoo.org> ...guile-lzlib-0.0.2.ebuild => guile-lzlib-0.0.2-r1.ebuild} | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-scheme/guile-lzlib/guile-lzlib-0.0.2.ebuild b/dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r1.ebuild similarity index 70% rename from dev-scheme/guile-lzlib/guile-lzlib-0.0.2.ebuild rename to dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r1.ebuild index 390b88d1e1f5..099b269f0587 100644 --- a/dev-scheme/guile-lzlib/guile-lzlib-0.0.2.ebuild +++ b/dev-scheme/guile-lzlib/guile-lzlib-0.0.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,7 +7,8 @@ inherit autotools DESCRIPTION="GNU Guile library providing bindings to lzlib" HOMEPAGE="https://notabug.org/guile-lzlib/guile-lzlib/" -SRC_URI="https://notabug.org/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://notabug.org/${PN}/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" S="${WORKDIR}"/${PN} LICENSE="GPL-3+" @@ -34,3 +35,11 @@ src_prepare() { eautoreconf } + +src_install() { + default + + # Workaround llvm-strip problem of mangling guile ELF debug + # sections: https://bugs.gentoo.org/905898 + dostrip -x "/usr/$(get_libdir)/guile" +}