guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 0c2edbee112a4a2c97a199fa7c42f8ae0866ec00
Author: Andreas Enge <[email protected]>
AuthorDate: Sat Aug 30 11:54:35 2025 +0200
gnu: Remove libpepadapter.
* gnu/packages/pep.scm (libpepadapter): Delete variable.
Change-Id: I4d3d791f94e3c2b08ab7f37e5f0e376c57574b9e
---
gnu/packages/pep.scm | 42 ------------------------------------------
1 file changed, 42 deletions(-)
diff --git a/gnu/packages/pep.scm b/gnu/packages/pep.scm
index b4165dabb6..263d75c96a 100644
--- a/gnu/packages/pep.scm
+++ b/gnu/packages/pep.scm
@@ -151,45 +151,3 @@ privacy).")
(license ;; code: GPL 3, docs: CC-BY-SA
(list license:gpl3 license:cc-by-sa3.0))))
-(define-public libpepadapter
- (package
- (name "libpepadapter")
- (version "2.1.21")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://gitea.pep.foundation/pEp.foundation/libpEpAdapter")
- (commit (string-append "Release_" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "09ljj3x09y99wc47n063hpn62zi8cdvdha82rnaypvirrlga6a5w"))))
- (build-system gnu-build-system)
- (arguments
- '(#:test-target "test"
- #:tests? #f ;; building the tests fails
- #:make-flags '("NDEBUG=1") ; release build
- #:phases
- (modify-phases %standard-phases
- (replace 'configure
- ;; libpEpAdapter does not use autotools and configure,
- ;; but a local.conf. We need to tweak the values there.
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let ((out (assoc-ref outputs "out"))
- (engine (assoc-ref inputs "pep-engine")))
- (with-output-to-file "local.conf"
- (lambda _
- (format #t "
-PREFIX=~a
-ENGINE_LIB_PATH=~a/lib
-ENGINE_INC_PATH=~a/include
-" out engine engine))))
- #t)))))
- (inputs
- (list pep-engine))
- (home-page "https://pep.foundation/")
- (synopsis "Library for building p≡p adapters")
- (description "This C++ library provides common structures used in p≡p
-(pretty Easy privacy) adapters.")
- (license license:bsd-3)))
-