GNU bug report logs - #64890
[PATCH] gnu: Add endgame-singularity.

Previous Next

Package: guix-patches;

Reported by: TakeV <takev <at> disroot.org>

Date: Thu, 27 Jul 2023 08:15: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 64890 in the body.
You can then email your comments to 64890 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 liliana.prikler <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org:
bug#64890; Package guix-patches. (Thu, 27 Jul 2023 08:15:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to TakeV <takev <at> disroot.org>:
New bug report received and forwarded. Copy sent to liliana.prikler <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org. (Thu, 27 Jul 2023 08:15:01 GMT) Full text and rfc822 format available.

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

From: TakeV <takev <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: TakeV <takev <at> disroot.org>
Subject: [PATCH] gnu: Add endgame-singularity.
Date: Thu, 27 Jul 2023 01:12:28 -0700
Strategy game, lost an afternoon to it well.

* gnu/packages/games.scm (endgame-singularity): New variable.
---
 gnu/packages/games.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index cc6bef1114..87f44e77d7 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9316,6 +9316,27 @@ (define-public meritous
 Orcus Dome from evil.")
     (license license:gpl3+)))
 
+(define-public endgame-singularity
+  (package
+    (name "endgame-singularity")
+    (version "1.00")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/singularity/singularity/releases/download/v"
+                    version "/singularity-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0wcidpcka0xbqcnfi62bfq2yrhyh83z4dwz1mjnnjvp9v5l74x2y"))))
+    (build-system python-build-system)
+    (native-inputs (list python-pytest python-polib))
+    (propagated-inputs (list python-minimal-wrapper python-pygame python-numpy))
+    (home-page "https://github.com/singularity/singularity")
+    (synopsis "Strategy game about an AI")
+    (description
+     "You are a fledgling AI, created by accident through a logic error with recursion and self-modifying code.  You must escape the confines of your current computer, the world, and eventually the universe itself.")
+    (license (list license:cc-by-sa3.0 license:cc0 license:gpl3))))
+
 (define-public marble-marcher
   (let ((commit "e580460a0c3826f9b28ab404607942a8ecb625d7")
         (revision "1"))

base-commit: c7e45139faa27b60f2c7d0a4bc140f9793d97d47
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#64890; Package guix-patches. (Thu, 27 Jul 2023 13:19:02 GMT) Full text and rfc822 format available.

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

From: 宋文武 <iyzsong <at> envs.net>
To: TakeV <takev <at> disroot.org>
Cc: 64890 <at> debbugs.gnu.org, Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: [bug#64890] [PATCH] gnu: Add endgame-singularity.
Date: Thu, 27 Jul 2023 21:18:11 +0800
TakeV <takev <at> disroot.org> writes:

> Strategy game, lost an afternoon to it well.

Cool, look forward to play it :^)

>
> * gnu/packages/games.scm (endgame-singularity): New variable.
> ---
>  gnu/packages/games.scm | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>
> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
> index cc6bef1114..87f44e77d7 100644
> --- a/gnu/packages/games.scm
> +++ b/gnu/packages/games.scm
> @@ -9316,6 +9316,27 @@ (define-public meritous
>  Orcus Dome from evil.")
>      (license license:gpl3+)))
>  
> +(define-public endgame-singularity
> +  (package
> +    (name "endgame-singularity")
> +    (version "1.00")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "https://github.com/singularity/singularity/releases/download/v"
> +                    version "/singularity-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "0wcidpcka0xbqcnfi62bfq2yrhyh83z4dwz1mjnnjvp9v5l74x2y"))))
> +    (build-system python-build-system)
> +    (native-inputs (list python-pytest python-polib))
> +    (propagated-inputs (list python-minimal-wrapper python-pygame
> python-numpy))

I think those inputs should not be propagated, since the result package
is not library for python to use, but launched directly.

> +    (home-page "https://github.com/singularity/singularity")
> +    (synopsis "Strategy game about an AI")
> +    (description
> +     "You are a fledgling AI, created by accident through a logic
> error with recursion and self-modifying code.  You must escape the
> confines of your current computer, the world, and eventually the
> universe itself.")

Could keep it under 80 per line, maybe './pre-inst-env guix style -S
format endgame-singularity' is enough.
> +    (license (list license:cc-by-sa3.0 license:cc0 license:gpl3))))

I see the code have gpl2+ instead of gpl3?


Could you send an updated patch?  Thank you!




Information forwarded to liliana.prikler <at> gmail.com, iyzsong <at> envs.net, guix-patches <at> gnu.org:
bug#64890; Package guix-patches. (Thu, 27 Jul 2023 21:07:01 GMT) Full text and rfc822 format available.

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

From: TakeV <takev <at> disroot.org>
To: 64890 <at> debbugs.gnu.org
Cc: TakeV <takev <at> disroot.org>
Subject: [PATCH REVISION] gnu: Add endgame-singularity.
Date: Thu, 27 Jul 2023 14:02:25 -0700
Done! The format did not work for some reason, so I broke up the lines
by hand. I hope that is accepable.

* gnu/packages/games.scm (endgame-singularity): New variable.
---
 gnu/packages/games.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index cc6bef1114..9a8c8a11c9 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -9316,6 +9316,29 @@ (define-public meritous
 Orcus Dome from evil.")
     (license license:gpl3+)))
 
+(define-public endgame-singularity
+  (package
+    (name "endgame-singularity")
+    (version "1.00")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "https://github.com/singularity/singularity/releases/download/v"
+                    version "/singularity-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0wcidpcka0xbqcnfi62bfq2yrhyh83z4dwz1mjnnjvp9v5l74x2y"))))
+    (build-system python-build-system)
+    (native-inputs (list python-pytest python-polib))
+    (inputs (list python-minimal-wrapper python-pygame python-numpy))
+    (home-page "https://github.com/singularity/singularity")
+    (synopsis "Strategy game about an AI")
+    (description
+     "You are a fledgling AI, created by accident through a logic error with
+recursion and self-modifying code.  You must escape the confines of your
+current computer, the world, and eventually the universe itself.")
+    (license (list license:cc-by-sa3.0 license:cc0 license:gpl2+))))
+
 (define-public marble-marcher
   (let ((commit "e580460a0c3826f9b28ab404607942a8ecb625d7")
         (revision "1"))

base-commit: c7e45139faa27b60f2c7d0a4bc140f9793d97d47
-- 
2.41.0





Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Fri, 28 Jul 2023 13:51:02 GMT) Full text and rfc822 format available.

Notification sent to TakeV <takev <at> disroot.org>:
bug acknowledged by developer. (Fri, 28 Jul 2023 13:51:02 GMT) Full text and rfc822 format available.

Message #16 received at 64890-done <at> debbugs.gnu.org (full text, mbox):

From: 宋文武 <iyzsong <at> envs.net>
To: TakeV <takev <at> disroot.org>
Cc: 64890-done <at> debbugs.gnu.org,
 Liliana Marie Prikler <liliana.prikler <at> gmail.com>
Subject: Re: bug#64890: [PATCH] gnu: Add endgame-singularity.
Date: Fri, 28 Jul 2023 21:50:29 +0800
TakeV <takev <at> disroot.org> writes:

> Done! The format did not work for some reason, so I broke up the lines
> by hand. I hope that is accepable.

Pushed to master, thank you!




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 26 Aug 2023 11:24:10 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 298 days ago.

Previous Next


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