all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Hilton Chain via Guix-patches via <guix-patches@gnu.org>
To: 59336@debbugs.gnu.org
Subject: [bug#59336] [PATCH v2 2/3] gnu: Add apparmor.
Date: Fri, 18 Nov 2022 12:30:14 +0800	[thread overview]
Message-ID: <y764juwq3zd.wl-hako@ultrarare.space> (raw)
In-Reply-To: <y765yfcq40r.wl-hako@ultrarare.space>

* gnu/packages/apparmor.scm (apparmor): New variable.
---
 gnu/packages/apparmor.scm | 66 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/gnu/packages/apparmor.scm b/gnu/packages/apparmor.scm
index ac97580640..82c00ebb0e 100644
--- a/gnu/packages/apparmor.scm
+++ b/gnu/packages/apparmor.scm
@@ -110,3 +110,69 @@ (define-public libapparmor
 the mainline Linux kernel since version 2.6.36 and its development has been
 supported by Canonical since 2009.")
     (license license:lgpl2.1)))
+
+(define-public apparmor
+  (let ((base libapparmor))
+    (package
+      (inherit base)
+      (name "apparmor")
+      (arguments
+       (append
+        (list #:make-flags
+              #~(list (string-append "CC=" #$(cc-for-target))
+                      (string-append "DESTDIR=" #$output)
+                      "USE_SYSTEM=1"
+                      ;; No need to run the linter
+                      "PYFLAKES=true"))
+        (substitute-keyword-arguments (package-arguments base)
+          ((#:phases phases)
+           #~(modify-phases #$phases
+               (delete 'configure)
+               ;; apparmor-binutils
+               (replace 'change-directory
+                 (lambda _
+                   (chdir "binutils")))
+
+               ;; apparmor-parser
+               (add-after 'install 'chdir-parser
+                 (lambda _
+                   (chdir "../parser")))
+               (add-after 'chdir-parser 'patch-source-shebangs-parser
+                 (assoc-ref %standard-phases 'patch-source-shebangs))
+               (add-after 'patch-source-shebangs-parser 'build-parser
+                 (assoc-ref %standard-phases 'build))
+               (add-after 'build-parser 'check-parser
+                 (assoc-ref %standard-phases 'check))
+               (add-after 'check-parser 'install-parser
+                 (assoc-ref %standard-phases 'install))
+
+               ;; apparmor-utils
+               ;; FIXME: Tests required Python library from this package
+               ;; (itself).
+               (add-after 'install-parser 'chdir-utils
+                 (lambda _
+                   (chdir "../utils")
+                   ;; Fix paths to installed policygroups and templates for
+                   ;; easyprof.
+                   (substitute* "easyprof/easyprof.conf"
+                     (("/usr") #$output))))
+               (add-after 'chdir-utils 'build-utils
+                 (assoc-ref %standard-phases 'build))
+               (add-after 'build-utils 'install-utils
+                 (assoc-ref %standard-phases 'install))
+
+               ;; apparmor-profiles
+               ;; FIXME: Tests need an AppArmor-enabled system.
+               (add-after 'install-utils 'chdir-profiles
+                 (lambda _
+                   (chdir "../profiles")))
+               (add-after 'chdir-profiles 'build-profiles
+                 (assoc-ref %standard-phases 'build))
+               (add-after 'check-build 'install-profiles
+                 (assoc-ref %standard-phases 'install)))))))
+      (propagated-inputs
+       (list libapparmor))
+      ;; Python module `readline' needed
+      (native-inputs
+       (list bison flex gettext-minimal perl python which))
+      (license license:gpl2))))
-- 
2.38.1





  reply	other threads:[~2022-11-18  4:31 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-17 16:27 [bug#59336] [PATCH 0/6] gnu: Add apparmor Hilton Chain via Guix-patches via
     [not found] ` <handler.59336.B.166870251813777.ack@debbugs.gnu.org>
2022-11-17 16:30   ` [bug#59336] [PATCH 1/6] gnu: Add libapparmor Hilton Chain via Guix-patches via
2022-11-17 16:30     ` [bug#59336] [PATCH 2/6] gnu: Add apparmor Hilton Chain via Guix-patches via
2022-11-17 16:31       ` [bug#59336] [PATCH 3/6] gnu: Add apparmor-parser Hilton Chain via Guix-patches via
2022-11-17 16:32         ` [bug#59336] [PATCH 4/6] gnu: Add apparmor-utils Hilton Chain via Guix-patches via
2022-11-17 16:32           ` [bug#59336] [PATCH 5/6] gnu: Add apparmor-profiles Hilton Chain via Guix-patches via
2022-11-17 16:33             ` [bug#59336] [PATCH 6/6] gnu: Add pam-apparmor Hilton Chain via Guix-patches via
2022-11-18  4:28 ` [bug#59336] [PATCH v2 0/3] gnu: Add apparmor Hilton Chain via Guix-patches via
2022-11-18  4:29   ` [bug#59336] [PATCH v2 1/3] gnu: Add libapparmor Hilton Chain via Guix-patches via
2022-11-18  4:30     ` Hilton Chain via Guix-patches via [this message]
2022-11-18  4:30       ` [bug#59336] [PATCH v2 3/3] gnu: Add pam-apparmor Hilton Chain via Guix-patches via
2022-12-04 21:16         ` bug#59336: [PATCH 0/6] gnu: Add apparmor Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=y764juwq3zd.wl-hako@ultrarare.space \
    --to=guix-patches@gnu.org \
    --cc=59336@debbugs.gnu.org \
    --cc=hako@ultrarare.space \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.