diff --git a/gnu/local.mk b/gnu/local.mk index 9f40a77caa4..b652abdc502 100644 --- a/gnu/local.mk +++ b/gnu/local.mk @@ -132,7 +132,6 @@ GNU_SYSTEM_MODULES = \ %D%/home/services/xdg.scm \ %D%/image.scm \ %D%/packages.scm \ - %D%/packages/abduco.scm \ %D%/packages/abiword.scm \ %D%/packages/accessibility.scm \ %D%/packages/acct.scm \ 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 -;;; Copyright © 2020 Björn Höfling -;;; -;;; 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 . - -(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 ;;; Copyright © 2014 Mark H Weaver +;;; Copyright © 2015, 2016 Leo Famulari ;;; Copyright © 2015, 2017 Eric Bavier ;;; Copyright © 2016, 2017, 2019-2022, 2025 Efraim Flashner ;;; Copyright © 2016 Alex Griffin ;;; Copyright © 2017 Mathieu Othacehe ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice +;;; Copyright © 2020 Björn Höfling ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2024 Janneke Nieuwenhuizen ;;; @@ -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") diff --git a/po/packages/POTFILES.in b/po/packages/POTFILES.in index 10e32e36160..8efd8a9e781 100644 --- a/po/packages/POTFILES.in +++ b/po/packages/POTFILES.in @@ -1,7 +1,6 @@ # List of source files which contain translatable strings. These should be # only package modules (currently it's only a subset of them, but eventually # all of them should be listed here.) Strings of the tools are in 'po/guix'. -gnu/packages/abduco.scm gnu/packages/abiword.scm gnu/packages/accessibility.scm gnu/packages/acct.scm