From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: 54691@debbugs.gnu.org
Cc: "Ludovic Courtès" <ludo@gnu.org>,
"Tobias Geerinckx-Rice" <me@tobias.gr>,
"Maxime Devos" <maximedevos@telenet.be>
Subject: bug#54691: [PATCH v3 4/6] gnu: Remove fortune-mod.
Date: Sat, 23 Jul 2022 17:13:41 +0200 [thread overview]
Message-ID: <8466fbccca93607f2c96622d15f1d1738606d3d5.camel@gmail.com> (raw)
In-Reply-To: <3fc3794df2d837c16ce768594c3ea9086b5f0abf.camel@telenet.be>
Since the addition of fortune-jkirchartz, it is no longer necessary to
keep around a package that propagates various non-nice things.
For a complete list, see <https://bugs.gnu.org/54691>.
* gnu/packages/games.scm (fortune-mod): Delete variable.
---
gnu/packages/games.scm | 73 ------------------------------------------
1 file changed, 73 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 99eccca04d..959ad319cf 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -7683,79 +7683,6 @@ (define-public rinutils
(description "This package provides C11 / gnu11 utilities C library")
(license license:expat)))
-(define-public fortune-mod
- (package
- (name "fortune-mod")
- (version "3.14.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/shlomif/fortune-mod")
- (commit (string-append "fortune-mod-" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1f2zif3s6vddbhph4jr1cymdsn7gagg59grrxs0yap6myqmy8shg"))))
- (build-system cmake-build-system)
- (arguments
- (list #:configure-flags
- #~(let ((fortunes (string-append #$output "/share/fortunes")))
- (list (string-append "-DLOCALDIR=" fortunes)
- (string-append "-DLOCALODIR=" fortunes "/off")
- (string-append "-DCOOKIEDIR=" fortunes)
- (string-append "-DOCOOKIEDIR=" fortunes "/off")))
- #:test-target "check"
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'enter-build-directory
- (lambda _
- (chdir "fortune-mod")))
- (add-after 'enter-build-directory 'symlink-rinutils
- (lambda _
- (mkdir-p "rinutils")
- (symlink #$(this-package-native-input "rinutils")
- "rinutils/rinutils")))
- (add-after 'enter-build-directory 'copy-cmake-modules
- (lambda _
- (copy-file #$shlomif-cmake-modules
- (string-append "cmake/"
- (strip-store-file-name
- #$shlomif-cmake-modules)))))
- (add-after 'enter-build-directory 'delete-failing-test
- (lambda _
- ;; TODO: Valgrind tests fail for some reason. Similar issue?
- ;; https://github.com/shlomif/fortune-mod/issues/21
- (delete-file "tests/data/valgrind.t")
- (with-output-to-file "tests/scripts/split-valgrind.pl"
- (const #t))))
- (add-after 'install 'fix-install-directory
- ;; Move fortune from "games/" to "bin/" and remove the
- ;; former. This is easier than patching CMakeLists.txt
- ;; since the tests hard-code the location as well.
- (lambda _
- (with-directory-excursion #$output
- (rename-file "games/fortune" "bin/fortune")
- (rmdir "games")))))))
- (inputs (list recode))
- (native-inputs
- (list perl
- ;; For generating the documentation.
- docbook-xml-5
- docbook-xsl
- perl-app-xml-docbook-builder
- ;; The following are only needed for tests.
- perl-file-find-object
- perl-test-differences
- perl-class-xsaccessor
- perl-io-all
- perl-test-runvalgrind
- rinutils))
- (home-page "https://www.shlomifish.org/open-source/projects/fortune-mod/")
- (synopsis "The Fortune Cookie program from BSD games")
- (description "Fortune is a command-line utility which displays a random
-quotation from a collection of quotes.")
- (license license:bsd-4)))
-
(define xonotic-data
(package
(name "xonotic-data")
--
2.37.0
next prev parent reply other threads:[~2022-08-13 9:43 UTC|newest]
Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-03 13:09 bug#54691: fortune-mod propagates various non-nice things Maxime Devos
2022-04-03 17:26 ` Liliana Marie Prikler
2022-04-03 18:12 ` Maxime Devos
2022-04-03 18:41 ` Maxime Devos
2022-04-04 10:41 ` Maxime Devos
2022-07-19 19:20 ` Maxime Devos
2022-07-20 4:31 ` Liliana Marie Prikler
2022-07-20 8:45 ` Maxime Devos
2022-07-20 16:57 ` Liliana Marie Prikler
2022-07-20 18:50 ` Maxime Devos
2022-04-03 18:20 ` Maxime Devos
2022-07-14 1:30 ` Maxim Cournoyer
2022-07-14 13:00 ` Csepp
2022-07-14 14:55 ` Maxim Cournoyer
2022-07-19 18:54 ` Maxime Devos
2022-07-19 19:45 ` Maxime Devos
2022-07-23 15:06 ` bug#54691: [PATCH v2 1/5] gnu: Add daikichi Liliana Marie Prikler
2022-07-23 15:06 ` bug#54691: [PATCH v3 2/6] " Liliana Marie Prikler
2022-07-23 15:06 ` bug#54691: [PATCH 1/5] " Liliana Marie Prikler
2022-07-23 15:11 ` bug#54691: [PATCH 2/5] gnu: Add fortunes-jkirchartz Liliana Marie Prikler
2022-07-23 19:54 ` Maxime Devos
2022-07-23 20:43 ` Liliana Marie Prikler
2022-07-23 21:41 ` Maxime Devos
2022-07-23 21:52 ` Liliana Marie Prikler
2022-07-23 22:13 ` Maxime Devos
2022-07-23 19:56 ` Maxime Devos
2022-07-23 20:53 ` Liliana Marie Prikler
2022-07-23 22:01 ` Maxime Devos
2022-07-24 1:09 ` bokr
2022-07-23 15:11 ` bug#54691: [PATCH v2 " Liliana Marie Prikler
2022-07-23 15:11 ` bug#54691: [PATCH v3 3/6] " Liliana Marie Prikler
2022-07-23 15:13 ` bug#54691: [PATCH v2 3/5] gnu: Remove fortune-mod Liliana Marie Prikler
2022-08-03 13:43 ` [bug#56599] bug#54691: fortune-mod propagates various non-nice things Ludovic Courtès
2022-08-03 17:09 ` Liliana Marie Prikler
2022-08-04 12:23 ` Ludovic Courtès
2022-08-04 15:37 ` [bug#56599] " Tobias Geerinckx-Rice via Guix-patches via
2022-08-04 17:12 ` Liliana Marie Prikler
2022-08-04 19:58 ` Tobias Geerinckx-Rice via Bug reports for GNU Guix
2022-08-06 23:01 ` [bug#56599] " bokr
2022-08-06 23:05 ` Maxime Devos
2022-08-30 10:22 ` bug#56599: " Liliana Marie Prikler
2022-07-23 15:13 ` Liliana Marie Prikler [this message]
2022-07-23 15:13 ` bug#54691: [PATCH 3/5] gnu: Remove fortune-mod Liliana Marie Prikler
2022-07-23 19:58 ` Maxime Devos
2022-07-23 20:54 ` Liliana Marie Prikler
2022-07-23 15:16 ` bug#54691: [PATCH v2 4/5] gnu: Remove rinutils Liliana Marie Prikler
2022-07-24 10:33 ` paren--- via Bug reports for GNU Guix
2022-07-24 11:27 ` Liliana Marie Prikler
2022-07-23 15:16 ` bug#54691: [PATCH " Liliana Marie Prikler
2022-07-23 15:16 ` bug#54691: [PATCH v3 5/6] " Liliana Marie Prikler
2022-07-23 15:17 ` bug#54691: [PATCH 5/5] gnu: Remove shlomif-cmake-modules Liliana Marie Prikler
2022-07-23 15:17 ` bug#54691: [PATCH v2 " Liliana Marie Prikler
2022-07-23 15:17 ` bug#54691: [PATCH v3 6/6] " Liliana Marie Prikler
2022-08-13 9:26 ` bug#54691: [PATCH v3 1/6] build-system: copy: Support #:tests? Liliana Marie Prikler
2022-08-28 22:16 ` Liliana Marie Prikler
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=8466fbccca93607f2c96622d15f1d1738606d3d5.camel@gmail.com \
--to=liliana.prikler@gmail.com \
--cc=54691@debbugs.gnu.org \
--cc=ludo@gnu.org \
--cc=maximedevos@telenet.be \
--cc=me@tobias.gr \
/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.