[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
15/17: gnu: libsepol: Use G-expression.
From: |
guix-commits |
Subject: |
15/17: gnu: libsepol: Use G-expression. |
Date: |
Sat, 13 Aug 2022 13:26:50 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit d7278e4020cb3197d6f4d18e3347137e5f710774
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Aug 13 14:11:36 2022 +0200
gnu: libsepol: Use G-expression.
* gnu/packages/selinux.scm (libsepol)[arguments]: Convert to gexp.
---
gnu/packages/selinux.scm | 51 ++++++++++++++++++++++++------------------------
1 file changed, 26 insertions(+), 25 deletions(-)
diff --git a/gnu/packages/selinux.scm b/gnu/packages/selinux.scm
index 7686db7421..e4c57f4747 100644
--- a/gnu/packages/selinux.scm
+++ b/gnu/packages/selinux.scm
@@ -54,37 +54,38 @@
(source (origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/SELinuxProject/selinux")
- (commit version)))
+ (url "https://github.com/SELinuxProject/selinux")
+ (commit version)))
(file-name (git-file-name "selinux" version))
(sha256
(base32
"1lcmgmfr0q7g5cwg6b7jm6ncw8cw6c1jblkm93v1g37bfhcgrqc0"))))
(build-system gnu-build-system)
(arguments
- `(#:tests? #f ; tests require checkpolicy, which requires libsepol
- #:test-target "test"
- #:make-flags
- (let ((out (assoc-ref %outputs "out")))
- (list (string-append "PREFIX=" out)
- (string-append "SHLIBDIR=" out "/lib")
- (string-append "MAN3DIR=" out "/share/man/man3")
- (string-append "MAN5DIR=" out "/share/man/man5")
- (string-append "MAN8DIR=" out "/share/man/man8")
- (string-append "CFLAGS=-Wno-error")
- (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
- (string-append "CC=" ,(cc-for-target))))
- #:phases
- (modify-phases %standard-phases
- (delete 'configure)
- (add-after 'unpack 'enter-dir
- (lambda _ (chdir ,name)))
- (add-after 'enter-dir 'portability
- (lambda _
- (substitute* "src/ibpkeys.c"
- (("#include \"ibpkey_internal.h\"" line)
- (string-append line "\n#include <inttypes.h>\n"))
- (("%#lx") "%#\" PRIx64 \"")))))))
+ (list
+ #:tests? #f ; tests require checkpolicy, which requires libsepol
+ #:test-target "test"
+ #:make-flags
+ #~(let ((out #$output))
+ (list (string-append "PREFIX=" out)
+ (string-append "SHLIBDIR=" out "/lib")
+ (string-append "MAN3DIR=" out "/share/man/man3")
+ (string-append "MAN5DIR=" out "/share/man/man5")
+ (string-append "MAN8DIR=" out "/share/man/man8")
+ (string-append "CFLAGS=-Wno-error")
+ (string-append "LDFLAGS=-Wl,-rpath=" out "/lib")
+ (string-append "CC=" #$(cc-for-target))))
+ #:phases
+ #~(modify-phases %standard-phases
+ (delete 'configure)
+ (add-after 'unpack 'enter-dir
+ (lambda _ (chdir #$name)))
+ (add-after 'enter-dir 'portability
+ (lambda _
+ (substitute* "src/ibpkeys.c"
+ (("#include \"ibpkey_internal.h\"" line)
+ (string-append line "\n#include <inttypes.h>\n"))
+ (("%#lx") "%#\" PRIx64 \"")))))))
(native-inputs
(list flex))
(home-page "https://selinuxproject.org/")
- 03/17: gnu: python-numpy: Add 'upstream-name' property., (continued)
- 03/17: gnu: python-numpy: Add 'upstream-name' property., guix-commits, 2022/08/13
- 05/17: gnu: python-m2r: Adjust for Python 3.10., guix-commits, 2022/08/13
- 17/17: gnu: python-setuptools: Update to 64.0.3., guix-commits, 2022/08/13
- 08/17: gnu: SELinux: Update to 3.4., guix-commits, 2022/08/13
- 09/17: gnu: checkpolicy: Remove input labels., guix-commits, 2022/08/13
- 13/17: gnu: python-sepolgen: Use G-expression and remove labels., guix-commits, 2022/08/13
- 06/17: gnu: qtractor: Fix build., guix-commits, 2022/08/13
- 16/17: gnu: policycoreutils: Use G-expression., guix-commits, 2022/08/13
- 07/17: gnu: serf: Add release-monitoring-url., guix-commits, 2022/08/13
- 10/17: gnu: libselinux: Remove input labels., guix-commits, 2022/08/13
- 15/17: gnu: libsepol: Use G-expression.,
guix-commits <=
- 02/17: gnu: python-pyaml: Update to 21.10.1., guix-commits, 2022/08/13
- 04/17: gnu: python-pre-commit: Remove unnecessary dependency., guix-commits, 2022/08/13
- 11/17: gnu: libsemanage: Remove input labels., guix-commits, 2022/08/13
- 14/17: gnu: policycoreutils: Remove input labels., guix-commits, 2022/08/13
- 12/17: gnu: secilc: Remove input labels., guix-commits, 2022/08/13