diff options
| author | Anderson Torres <anderson.torres.8519@gmail.com> | 2025-08-17 19:11:13 -0300 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-10-17 00:09:37 +0200 |
| commit | a0c91172bde3f00334cc80997ca0daadf11aa3dc (patch) | |
| tree | 1b695daa35357e27fb6e5f7f1df2f90c9b822afe /gnu/packages | |
| parent | 8354442a997ab2ea0ca1985e33d73a0684e338ab (diff) | |
gnu: Move abduco to screen.scm.
* gnu/packages/abduco.scm (abduco): Move from here…
* gnu/packages/screen.scm: …to here.
* gnu/local.mk (GNU_SYSTEM_MODULES): Remove reference to abduco.scm.
* po/packages/POTFILES.in: Likewise.
Change-Id: Ic1acbf3264ee242b3c5aa5363e466a48f4408f45
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/abduco.scm | 51 | ||||
| -rw-r--r-- | gnu/packages/screen.scm | 28 |
2 files changed, 28 insertions, 51 deletions
diff --git a/gnu/packages/abduco.scm b/gnu/packages/abduco.scm deleted file mode 100644 index 19671d14c98..00000000000 --- a/gnu/packages/abduco.scm +++ /dev/null @@ -1,51 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name> -;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de> -;;; -;;; This file is part of GNU Guix. -;;; -;;; GNU Guix is free software; you can redistribute it and/or modify it -;;; under the terms of the GNU General Public License as published by -;;; the Free Software Foundation; either version 3 of the License, or (at -;;; your option) any later version. -;;; -;;; GNU Guix is distributed in the hope that it will be useful, but -;;; WITHOUT ANY WARRANTY; without even the implied warranty of -;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;;; GNU General Public License for more details. -;;; -;;; You should have received a copy of the GNU General Public License -;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. - -(define-module (gnu packages abduco) - #:use-module (guix build-system gnu) - #:use-module (guix utils) - #:use-module (guix download) - #:use-module (guix licenses) - #:use-module (guix packages)) - -(define-public abduco - (package - (name "abduco") - (version "0.6") - (source (origin - (method url-fetch) - (uri (string-append - "https://www.brain-dump.org/projects/abduco/abduco-" - version ".tar.gz")) - (sha256 - (base32 - "1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9")))) - (build-system gnu-build-system) - (arguments - `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" (assoc-ref %outputs "out"))) - #:phases (modify-phases %standard-phases - (delete 'configure) - (delete 'check)))) ; no test suite - (synopsis "Session management in a clean and simple way") - (description "abduco provides session management i.e. it allows programs to -be run independently from their controlling terminal. That is, programs can -be detached---run in the background---and then later reattached.") - (home-page "https://www.brain-dump.org/projects/abduco/") - (license isc))) diff --git a/gnu/packages/screen.scm b/gnu/packages/screen.scm index 503a7beefe8..98a2575719f 100644 --- a/gnu/packages/screen.scm +++ b/gnu/packages/screen.scm @@ -1,11 +1,13 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com> ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> +;;; Copyright © 2015, 2016 Leo Famulari <leo@famulari.name> ;;; Copyright © 2015, 2017 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016, 2017, 2019-2022, 2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de> ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; @@ -44,6 +46,32 @@ #:use-module (gnu packages slang) #:use-module (gnu packages texinfo)) +(define-public abduco + (package + (name "abduco") + (version "0.6") + (source (origin + (method url-fetch) + (uri (string-append + "https://www.brain-dump.org/projects/abduco/abduco-" + version ".tar.gz")) + (sha256 + (base32 + "1x1m58ckwsprljgmdy93mvgjyg9x3cqrzdf3mysp0mx97zhhj2f9")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases (modify-phases %standard-phases + (delete 'configure) + (delete 'check)))) ; no test suite + (synopsis "Session management in a clean and simple way") + (description "abduco provides session management i.e. it allows programs to +be run independently from their controlling terminal. That is, programs can +be detached---run in the background---and then later reattached.") + (home-page "https://www.brain-dump.org/projects/abduco/") + (license isc))) + (define-public screen (package (name "screen") |
