GNU bug report logs - #47508
[PATCH] gnu: add instead

Previous Next

Package: guix-patches;

Reported by: Alexander Krotov <krotov <at> iitp.ru>

Date: Tue, 30 Mar 2021 23:54:02 UTC

Severity: normal

Tags: patch

Merged with 46378

Done: Leo Prikler <leo.prikler <at> student.tugraz.at>

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 47508 in the body.
You can then email your comments to 47508 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#47508; Package guix-patches. (Tue, 30 Mar 2021 23:54:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Alexander Krotov <krotov <at> iitp.ru>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Tue, 30 Mar 2021 23:54:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Alexander Krotov <krotov <at> iitp.ru>
To: guix-patches <at> gnu.org
Cc: Alexander Krotov <krotov <at> iitp.ru>
Subject: [PATCH] gnu: add instead
Date: Wed, 31 Mar 2021 02:53:29 +0300
* gnu/packages/games.scm (instead): New variable.
---
 gnu/packages/games.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 3f909aad4b..22975cf0d6 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -12379,3 +12379,34 @@ game FPS.")
 implemented using ncurses user interface.  An SDL graphical version is also
 available.")
     (license license:gpl3+)))
+
+(define-public instead
+  (package
+    (name "instead")
+    (version "3.3.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/instead-hub/instead")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "09z22i0ny3dhjhj3g1walxg5mdnr3wsx95q1f92z32cabmqkbiyc"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f))
+    (inputs `(("zlib" ,zlib)
+              ("lua" ,lua)
+              ("sdl2" ,sdl2)
+              ("sdl2-mixer" ,sdl2-mixer)
+              ("sdl2-image" ,sdl2-image)
+              ("sdl2-ttf" ,sdl2-ttf)
+              ("gtk+" ,gtk+)))
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (home-page "https://instead.hugeping.ru/")
+    (synopsis "Simple text adventures/visual novels engine")
+    (description "INSTEAD is an INterpreter of Simple TExt ADventure.  Using
+INSTEAD you can create and play games that could be classified as a mix of
+visual novel and text quest.")
+    (license license:expat)))
-- 
2.31.0





Information forwarded to guix-patches <at> gnu.org:
bug#47508; Package guix-patches. (Mon, 05 Apr 2021 16:43:02 GMT) Full text and rfc822 format available.

Message #8 received at 47508 <at> debbugs.gnu.org (full text, mbox):

From: Leo Prikler <leo.prikler <at> student.tugraz.at>
To: Alexander Krotov <krotov <at> iitp.ru>, 47508 <at> debbugs.gnu.org, 
 control <at> debbugs.gnu.org
Subject: Re: [PATCH] gnu: add instead
Date: Mon, 05 Apr 2021 18:42:40 +0200
merge 46378 47508
thanks

Hi,

as you can see, there does exist prior work on the packaging of
instead.  Dmitry's patch also includes a search path among other
things, but there were some setbacks, that are discussed over there. 
Work on that patch seems to have come to a halt, but it would be great
if you could try to see what could be salvaged from it.

Regards,
Leo

Am Mittwoch, den 31.03.2021, 02:53 +0300 schrieb Alexander Krotov:
> * gnu/packages/games.scm (instead): New variable.
> ---
>  gnu/packages/games.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
> 
> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
> index 3f909aad4b..22975cf0d6 100644
> --- a/gnu/packages/games.scm
> +++ b/gnu/packages/games.scm
> @@ -12379,3 +12379,34 @@ game FPS.")
>  implemented using ncurses user interface.  An SDL graphical version
> is also
>  available.")
>      (license license:gpl3+)))
> +
> +(define-public instead
> +  (package
> +    (name "instead")
> +    (version "3.3.4")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/instead-hub/instead")
> +             (commit version)))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32
> "09z22i0ny3dhjhj3g1walxg5mdnr3wsx95q1f92z32cabmqkbiyc"))))
> +    (build-system cmake-build-system)
> +    (arguments
> +     `(#:tests? #f))
> +    (inputs `(("zlib" ,zlib)
> +              ("lua" ,lua)
> +              ("sdl2" ,sdl2)
> +              ("sdl2-mixer" ,sdl2-mixer)
> +              ("sdl2-image" ,sdl2-image)
> +              ("sdl2-ttf" ,sdl2-ttf)
> +              ("gtk+" ,gtk+)))
> +    (native-inputs `(("pkg-config" ,pkg-config)))
> +    (home-page "https://instead.hugeping.ru/")
> +    (synopsis "Simple text adventures/visual novels engine")
> +    (description "INSTEAD is an INterpreter of Simple TExt
> ADventure.  Using
> +INSTEAD you can create and play games that could be classified as a
> mix of
> +visual novel and text quest.")
> +    (license license:expat)))





Merged 46378 47508. Request was from Leo Prikler <leo.prikler <at> student.tugraz.at> to control <at> debbugs.gnu.org. (Mon, 05 Apr 2021 16:43:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 02 Sep 2021 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 235 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.