diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-05-16 13:34:53 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-05-16 13:50:43 +0200 |
commit | 7e3b8ea2dbbeffdb67ab6b029d2d7349e059d4e4 (patch) | |
tree | f7f73c6d4e6e43b2aeeb448d713ce6590df57db2 /dev-scheme/skribilo | |
parent | virtual/dist-kernel: Remove old (diff) | |
download | gentoo-7e3b8ea2dbbeffdb67ab6b029d2d7349e059d4e4.tar.gz gentoo-7e3b8ea2dbbeffdb67ab6b029d2d7349e059d4e4.tar.bz2 gentoo-7e3b8ea2dbbeffdb67ab6b029d2d7349e059d4e4.zip |
dev-scheme: use dostrip instead of RESTRICT
Bug: https://bugs.gentoo.org/905898
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-scheme/skribilo')
-rw-r--r-- | dev-scheme/skribilo/skribilo-0.10.0.ebuild | 6 | ||||
-rw-r--r-- | dev-scheme/skribilo/skribilo-0.9.5.ebuild | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-scheme/skribilo/skribilo-0.10.0.ebuild b/dev-scheme/skribilo/skribilo-0.10.0.ebuild index a0e2b7ae3df6..85f9220a7c90 100644 --- a/dev-scheme/skribilo/skribilo-0.10.0.ebuild +++ b/dev-scheme/skribilo/skribilo-0.10.0.ebuild @@ -13,7 +13,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="emacs" -RESTRICT="strip test" # tests fail, seem broken +RESTRICT="test" # tests fail, seem broken RDEPEND=" app-text/ghostscript-gpl @@ -67,6 +67,10 @@ src_install() { rm -r "${emacsd}" || die fi fi + + # Workaround llvm-strip problem of mangling guile ELF debug + # sections: https://bugs.gentoo.org/905898 + dostrip -x "/usr/$(get_libdir)/guile" } pkg_postinst() { diff --git a/dev-scheme/skribilo/skribilo-0.9.5.ebuild b/dev-scheme/skribilo/skribilo-0.9.5.ebuild index fa72296a9295..85f9220a7c90 100644 --- a/dev-scheme/skribilo/skribilo-0.9.5.ebuild +++ b/dev-scheme/skribilo/skribilo-0.9.5.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 @@ -13,7 +13,7 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="emacs" -RESTRICT="strip test" # tests fail, seem broken +RESTRICT="test" # tests fail, seem broken RDEPEND=" app-text/ghostscript-gpl @@ -67,6 +67,10 @@ src_install() { rm -r "${emacsd}" || die fi fi + + # Workaround llvm-strip problem of mangling guile ELF debug + # sections: https://bugs.gentoo.org/905898 + dostrip -x "/usr/$(get_libdir)/guile" } pkg_postinst() { |