diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2026-05-13 17:37:00 -0300 |
|---|---|---|
| committer | Nguyễn Gia Phong <cnx@loang.net> | 2026-06-04 11:44:22 +0900 |
| commit | 6655d5fb372c4cbbcfa03935a702c06e32555ac7 (patch) | |
| tree | e8a647fa330b090806f5dd80b248ea222da1987b /gnu | |
| parent | aeae4b1a2786f70c29a09b18487970ee4552f354 (diff) | |
gnu: acct: Move to (gnu packages admin).
* gnu/packages/admin.scm (acct): Move to here...
* gnu/packages/acct.scm (acct): ...from here. New deprecated variable.
Change-Id: I4494503a5655be8db117d6a0148c117beb20ec4e
Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/acct.scm | 30 | ||||
| -rw-r--r-- | gnu/packages/admin.scm | 22 |
2 files changed, 26 insertions, 26 deletions
diff --git a/gnu/packages/acct.scm b/gnu/packages/acct.scm index 585a3c2184c..aaf246f4575 100644 --- a/gnu/packages/acct.scm +++ b/gnu/packages/acct.scm | |||
| @@ -1,6 +1,4 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> | ||
| 3 | ;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de> | ||
| 4 | ;;; | 2 | ;;; |
| 5 | ;;; This file is part of GNU Guix. | 3 | ;;; This file is part of GNU Guix. |
| 6 | ;;; | 4 | ;;; |
| @@ -18,28 +16,8 @@ | |||
| 18 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. | 16 | ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. |
| 19 | 17 | ||
| 20 | (define-module (gnu packages acct) | 18 | (define-module (gnu packages acct) |
| 21 | #:use-module (guix licenses) | 19 | #:use-module (guix deprecation)) |
| 22 | #:use-module (guix packages) | ||
| 23 | #:use-module (guix download) | ||
| 24 | #:use-module (guix build-system gnu)) | ||
| 25 | 20 | ||
| 26 | (define-public acct | 21 | ;; XXX: Deprecated on 2026-06-04. |
| 27 | (package | 22 | (define-deprecated/public-alias acct |
| 28 | (name "acct") | 23 | (@ (gnu packages admin) acct)) |
| 29 | (version "6.6.4") | ||
| 30 | (source | ||
| 31 | (origin | ||
| 32 | (method url-fetch) | ||
| 33 | (uri (string-append "mirror://gnu/acct/acct-" | ||
| 34 | version ".tar.gz")) | ||
| 35 | (sha256 | ||
| 36 | (base32 | ||
| 37 | "0gv6m8giazshvgpvwbng98chpas09myyfw1zr2y7hqxib0mvy5ac")))) | ||
| 38 | (build-system gnu-build-system) | ||
| 39 | (home-page "https://www.gnu.org/software/acct/") | ||
| 40 | (synopsis "Standard login and process accounting utilities") | ||
| 41 | (description | ||
| 42 | "GNU acct provides a means for system administrators to determine | ||
| 43 | system usage patterns. It provides information on, for example, connections, | ||
| 44 | programs executed, and system resources used.") | ||
| 45 | (license gpl3+))) | ||
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 24432353990..b4ae7f45fe9 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2012-2026 Ludovic Courtès <ludo@gnu.org> | 2 | ;;; Copyright © 2012-2026 Ludovic Courtès <ludo@gnu.org> |
| 3 | ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> | 3 | ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> |
| 4 | ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> | ||
| 4 | ;;; Copyright © 2014, 2015, 2016, 2018, 2019, 2020 Mark H Weaver <mhw@netris.org> | 5 | ;;; Copyright © 2014, 2015, 2016, 2018, 2019, 2020 Mark H Weaver <mhw@netris.org> |
| 5 | ;;; Copyright © 2014, 2015-2018, 2020-2023 Eric Bavier <bavier@posteo.net> | 6 | ;;; Copyright © 2014, 2015-2018, 2020-2023 Eric Bavier <bavier@posteo.net> |
| 6 | ;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> | 7 | ;;; Copyright © 2015, 2016 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> |
| @@ -223,6 +224,27 @@ | |||
| 223 | #:use-module (gnu packages xml) | 224 | #:use-module (gnu packages xml) |
| 224 | #:use-module (gnu packages xorg)) | 225 | #:use-module (gnu packages xorg)) |
| 225 | 226 | ||
| 227 | (define-public acct | ||
| 228 | (package | ||
| 229 | (name "acct") | ||
| 230 | (version "6.6.4") | ||
| 231 | (source | ||
| 232 | (origin | ||
| 233 | (method url-fetch) | ||
| 234 | (uri (string-append "mirror://gnu/acct/acct-" | ||
| 235 | version ".tar.gz")) | ||
| 236 | (sha256 | ||
| 237 | (base32 | ||
| 238 | "0gv6m8giazshvgpvwbng98chpas09myyfw1zr2y7hqxib0mvy5ac")))) | ||
| 239 | (build-system gnu-build-system) | ||
| 240 | (home-page "https://www.gnu.org/software/acct/") | ||
| 241 | (synopsis "Standard login and process accounting utilities") | ||
| 242 | (description | ||
| 243 | "GNU acct provides a means for system administrators to determine | ||
| 244 | system usage patterns. It provides information on, for example, connections, | ||
| 245 | programs executed, and system resources used.") | ||
| 246 | (license license:gpl3+))) | ||
| 247 | |||
| 226 | (define-public aide | 248 | (define-public aide |
| 227 | (package | 249 | (package |
| 228 | (name "aide") | 250 | (name "aide") |
