diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-12-06 01:55:43 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-12-06 03:19:20 +0100 |
commit | 46cf29bcafe91818ac17956a2794bcf194098688 (patch) | |
tree | ccf5f26b07529a44ba9954e741115697bc7836ed /dev-scheme/guile-json/guile-json-4.7.3.ebuild | |
parent | app-emacs/buttercup: bump to 1.29 (diff) | |
download | gentoo-46cf29bcafe91818ac17956a2794bcf194098688.tar.gz gentoo-46cf29bcafe91818ac17956a2794bcf194098688.tar.bz2 gentoo-46cf29bcafe91818ac17956a2794bcf194098688.zip |
dev-scheme/guile-json: bump to 4.7.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-scheme/guile-json/guile-json-4.7.3.ebuild')
-rw-r--r-- | dev-scheme/guile-json/guile-json-4.7.3.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-scheme/guile-json/guile-json-4.7.3.ebuild b/dev-scheme/guile-json/guile-json-4.7.3.ebuild new file mode 100644 index 000000000000..d2e78a2618c3 --- /dev/null +++ b/dev-scheme/guile-json/guile-json-4.7.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="JSON module for Guile" +HOMEPAGE="https://savannah.nongnu.org/projects/guile-json/" +SRC_URI="http://download.savannah.nongnu.org/releases/guile-json/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +RESTRICT="strip" + +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 +} |