GNU bug report logs -
#75487
[PATCH] gnu: Add doom-runner.
Previous Next
Reported by: Andrew Wong <wongandj <at> icloud.com>
Date: Sat, 11 Jan 2025 07:26:01 UTC
Severity: normal
Tags: patch
Done: 宋文武 <iyzsong <at> envs.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75487 in the body.
You can then email your comments to 75487 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
adam.faiz <at> disroot.org, liliana.prikler <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org
:
bug#75487
; Package
guix-patches
.
(Sat, 11 Jan 2025 07:26:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Andrew Wong <wongandj <at> icloud.com>
:
New bug report received and forwarded. Copy sent to
adam.faiz <at> disroot.org, liliana.prikler <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org
.
(Sat, 11 Jan 2025 07:26:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/games.scm (doom-runner): New variable.
Change-Id: I986299789ab1c73b6a918226fdb33558355c0269
---
gnu/packages/games.scm | 52 ++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index fb8018e271..ac6b0d314f 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -1517,6 +1517,58 @@ (define-public deal
license:gpl1+ ;ansidecl.h
license:bsd-3)))) ;random.c
+(define-public doom-runner
+ (package
+ (name "doom-runner")
+ (version "1.8.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Youda008/DoomRunner")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0rpywq95zy9w0wj1262x4rf84c52wg1rgf0by549qph6fybn34rn"))))
+ (build-system qt-build-system)
+ (arguments
+ (list
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'configure
+ (lambda _
+ (substitute* "DoomRunner.pro"
+ (("/usr")
+ #$output))
+ (invoke "qmake" "DoomRunner.pro" "-spec" "linux-g++"
+ "\"CONFIG+=release\"")))
+ (add-after 'install 'install-xdg
+ (lambda _
+ (with-directory-excursion "Install/XDG"
+ (install-file "DoomRunner.desktop"
+ (string-append #$output
+ "/share/applications"))
+ (let ((install-icon
+ (lambda (size)
+ (install-file (simple-format
+ #f "DoomRunner.~sx~s.png"
+ size size)
+ (simple-format
+ #f "~a/share/icons/hicolor/~sx~s/apps"
+ #$output size size)))))
+ (for-each install-icon
+ '(16 24 32 48 64 128)))))))))
+ (home-page "https://github.com/Youda008/DoomRunner")
+ (synopsis "Launcher for Doom engine games")
+ (description
+ "Doom Runner is yet another launcher of common Doom source ports (like
+GZDoom, Zandronum, PrBoom, ...) with graphical user interface. It is
+written in C++ and Qt, and it is designed around the idea of presets
+for various multi-file modifications to allow one-click switching
+between them and minimize any repetitive work.")
+ (license license:gpl3)))
+
(define-public falltergeist
(package
(name "falltergeist")
base-commit: f15ca836e4686496f675308655c370c95e9f52b7
--
2.47.1
Reply sent
to
宋文武 <iyzsong <at> envs.net>
:
You have taken responsibility.
(Mon, 13 Jan 2025 00:22:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Andrew Wong <wongandj <at> icloud.com>
:
bug acknowledged by developer.
(Mon, 13 Jan 2025 00:22:02 GMT)
Full text and
rfc822 format available.
Message #10 received at 75487-done <at> debbugs.gnu.org (full text, mbox):
Andrew Wong <wongandj <at> icloud.com> writes:
> * gnu/packages/games.scm (doom-runner): New variable.
Pushed to master, thank you!
It seems my email can't reach icloud though.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Mon, 10 Feb 2025 12:24:14 GMT)
Full text and
rfc822 format available.
This bug report was last modified 130 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.