forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-scheme/guile-json: bump up to 3.5.0
While at it added a workaround about ignored CFLAGS. Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich <[email protected]>
- Loading branch information
Sergei Trofimovich
committed
May 27, 2020
1 parent
8fd2621
commit 3d6074f
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST guile-json-3.4.0.tar.gz 146506 BLAKE2B f6d0b4c8897b18530018446186012a886094392b689e69024b99d2015fe3fcb2394e4a371cac34cf1d5244f081a42dbde49f6ba04249518ad76184230d64344e SHA512 c9681b2e19a1dc00161888c58172de84b0ab5a24eafd3870146e7f047af7d208fb57aa64b9fa3b1255958093ea24fb264652d622a1fda9f5cb107ce0518254fe | ||
DIST guile-json-3.5.0.tar.gz 146851 BLAKE2B ee1b0be643f4de7cf9211adb6b167bc8aa302124a959f51d82634d176fe83f93beb928b0286044e441c9c743e2731117f6894d0c244271cef4ac4b8b9a24751c SHA512 4d9df313b9708a067ed9712fa390618b9b2b2a42633e1b140fec58d813ebf9187553ee85c743bf509bb0c228bd98c426325d23dd020a53b389ab269bda2a324e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
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" | ||
IUSE="" | ||
|
||
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_FLAGS_IGNORED='.*[.]go' | ||
|
||
src_prepare() { | ||
default | ||
|
||
# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112 | ||
find "${S}" -name "*.scm" -exec touch {} + || die | ||
} |