Skip to content

Commit

Permalink
cl-com.inuoe.jzon: fix build on powerpc
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 committed Nov 17, 2024
1 parent a1a2358 commit 34b2924
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions lisp/cl-com.inuoe.jzon/Portfile
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

PortSystem 1.0
PortGroup github 1.0
PortGroup common_lisp 1.0
PortGroup github 1.0

github.setup Zulu-Inuoe jzon 1.1.3 v
github.setup Zulu-Inuoe jzon 1.1.4 v
name cl-com.inuoe.jzon
revision 0

checksums rmd160 2cd79d808467bdf27ffafafb854d9a32a0e90ee1 \
sha256 b1b8014c444727220f3de9be89d7fe21d94b52f0180e476327e88e5306654ebf \
size 68494
checksums rmd160 e4ac3db573add144141f67bb090e339b7a050802 \
sha256 7940102401edd39a7b38c25c724ebb42d071e470ebdeb113de29f665323c01e7 \
size 68597
github.tarball_from archive

categories-append devel
maintainers nomaintainer
license MIT

description A correct and safe(er) JSON RFC 8259 parser with sane defaults

description A correct and safe(er) JSON RFC 8259 parser \
with sane defaults
long_description {*}${description}

depends_lib-append port:cl-alexandria \
Expand All @@ -30,5 +31,10 @@ depends_lib-append port:cl-alexandria \
common_lisp.systems {src/*.asd} \
{test/*.asd}

# See: https://github.com/Zulu-Inuoe/jzon/issues/53
common_lisp.clisp no
if {${os.arch} eq "powerpc"} {
# https://github.com/Zulu-Inuoe/jzon/issues/70
common_lisp.sbcl no
} else {
# https://github.com/Zulu-Inuoe/jzon/issues/53
common_lisp.clisp no
}

0 comments on commit 34b2924

Please sign in to comment.