gnu: libpEpAdapter: Update to 2.1.21.
* gnu/packages/pep.scm (libpEpAdapter): Update to 2.1.21. [source]: Swicht to new git repo. [arguments]<make-flags>: Enable release-build.master
parent
85d80283b6
commit
c178f859b5
|
@ -147,20 +147,21 @@ privacy).")
|
||||||
(define-public libpepadapter
|
(define-public libpepadapter
|
||||||
(package
|
(package
|
||||||
(name "libpepadapter")
|
(name "libpepadapter")
|
||||||
(version "2.0.2")
|
(version "2.1.21")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method hg-fetch)
|
(method git-fetch)
|
||||||
(uri (hg-reference
|
(uri (git-reference
|
||||||
(url "https://pep.foundation/dev/repos/libpEpAdapter")
|
(url "https://gitea.pep.foundation/pEp.foundation/libpEpAdapter")
|
||||||
(changeset "e8fe371c870a"))) ;; r168
|
(commit (string-append "Release_" version))))
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1mlpavjbnmslvmr5jxcvpjgb2x40nhmxjb10hza3kn4qzj0k1pjz"))))
|
(base32 "09ljj3x09y99wc47n063hpn62zi8cdvdha82rnaypvirrlga6a5w"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:test-target "test"
|
'(#:test-target "test"
|
||||||
#:tests? #f ;; building the tests fails
|
#:tests? #f ;; building the tests fails
|
||||||
|
#:make-flags '("NDEBUG=1") ; release build
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
|
@ -170,7 +171,7 @@ privacy).")
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(let ((out (assoc-ref outputs "out"))
|
||||||
(engine (assoc-ref inputs "pep-engine")))
|
(engine (assoc-ref inputs "pep-engine")))
|
||||||
(with-output-to-file "local.conf"
|
(with-output-to-file "local.conf"
|
||||||
(lambda _ ;()
|
(lambda _
|
||||||
(format #t "
|
(format #t "
|
||||||
PREFIX=~a
|
PREFIX=~a
|
||||||
ENGINE_LIB_PATH=~a/lib
|
ENGINE_LIB_PATH=~a/lib
|
||||||
|
|
Reference in New Issue