[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: aide: Update to 0.18.8.
From: |
guix-commits |
Subject: |
06/08: gnu: aide: Update to 0.18.8. |
Date: |
Fri, 31 May 2024 07:42:44 -0400 (EDT) |
z572 pushed a commit to branch master
in repository guix.
commit e2274ac7c514a1e10ad16e1f9bf1b1e8508f8272
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Wed May 29 22:31:59 2024 +0300
gnu: aide: Update to 0.18.8.
* gnu/packages/admin.scm (aide): Update to 0.18.8.
[arguments]: Add configure flags to enable features "--with-posix-acl",
"--with-selinux" and "--with-xattr". Add
"--with-config-file=/etc/aide.conf" to instruct the program to use this
patch to search for the configuration file.
[native-inputs]: Add "pkg-config".
[inputs]: Use "acl", "attr", "libselinux" and "pcre2".
Change-Id: I15ae1d86ea9fdfed16e901c041bae292ec68a742
Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn>
---
gnu/packages/admin.scm | 20 +++++++++++++-------
1 file changed, 13 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index d1efd6213f..c730d43819 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -65,7 +65,6 @@
;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Tomás Ortín Fernández <tomasortin@mailbox.org>
;;; Copyright © 2024 dan <i@dan.games>
-;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -235,23 +234,30 @@ simplicity in mind.")
(define-public aide
(package
(name "aide")
- (version "0.16.2")
+ (version "0.18.8")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/aide/aide/releases/download/v"
version "/aide-" version ".tar.gz"))
(sha256
- (base32 "15xp47sz7kk1ciffw3f5xw2jg2mb2lqrbr3q6p4bkbz5dap9iy8p"))))
+ (base32 "0q1sp0vwrwbmw6ymw1kwd4i8walijwppa0dq61b2qzni6b32srhn"))))
(build-system gnu-build-system)
+ (arguments
+ (list #:configure-flags #~(list "--with-posix-acl"
+ "--with-selinux"
+ "--with-xattr"
+ "--with-config-file=/etc/aide.conf")))
(native-inputs
- (list bison flex))
+ (list bison flex pkg-config))
(inputs
- (list libgcrypt
+ (list acl
+ attr
+ libgcrypt
libgpg-error
libmhash
- `(,pcre "static")
- pcre
+ libselinux
+ pcre2
`(,zlib "static")
zlib))
(synopsis "File and directory integrity checker")
- branch master updated (01de17143c -> 0c87fe868a), guix-commits, 2024/05/31
- 02/08: gnu: conmon: Update to 2.1.12., guix-commits, 2024/05/31
- 04/08: gnu: parallel: Update to 20240522., guix-commits, 2024/05/31
- 07/08: gnu: entr: Update to 5.5., guix-commits, 2024/05/31
- 03/08: gnu: podman: Update to 5.1.0., guix-commits, 2024/05/31
- 01/08: gnu: weechat: Update to 4.3.0., guix-commits, 2024/05/31
- 05/08: gnu: icewm: Update to 3.5.0, guix-commits, 2024/05/31
- 08/08: gnu: f3d: Update to 2.4.0., guix-commits, 2024/05/31
- 06/08: gnu: aide: Update to 0.18.8.,
guix-commits <=