GNU bug report logs -
#27190
[PATCH] gnu: Add retux.
Previous Next
Reported by: Kei Kebreau <kei <at> openmailbox.org>
Date: Thu, 1 Jun 2017 17:50:01 UTC
Severity: normal
Tags: patch
Done: Kei Kebreau <kei <at> openmailbox.org>
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 27190 in the body.
You can then email your comments to 27190 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#27190
; Package
guix-patches
.
(Thu, 01 Jun 2017 17:50:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Kei Kebreau <kei <at> openmailbox.org>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 01 Jun 2017 17:50:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/games.scm (retux): New variable.
---
gnu/packages/games.scm | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 57 insertions(+)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 60d885500..aaae1e54b 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -331,6 +331,63 @@ Chess). It is similar to standard chess but this variant is far more complicate
"PrBoom+ is a Doom source port developed from the original PrBoom project.")
(license license:gpl2+)))
+(define-public retux
+ (package
+ (name "retux")
+ (version "1.3.4")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://savannah/retux/"
+ (version-major+minor version) "/retux-"
+ version "-src.tar.gz"))
+ (sha256
+ (base32
+ "1wgvh3q96kfgymb2jpd58xsms9hmckhhc4fq7v2k61gh2l11cvdj"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f ; no check target
+ #:phases
+ (modify-phases %standard-phases
+ ;; no setup.py script
+ (delete 'build)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (bin (string-append out "/bin"))
+ (data (string-append out "/share/retux"))
+ (doc (string-append out "/share/doc/retux")))
+ (mkdir-p bin)
+
+ (substitute* "retux.py"
+ ;; Use the correct data directory.
+ (("os\\.path\\.join\\(os\\.path\\.dirname\\(__file__\\), \"data\"\\),")
+ (string-append "\"" data "\","))
+ ;; Use Python 3 so the patch-shebangs phase works properly.
+ ((".*python2.*") "#!/usr/bin/python3"))
+
+ (copy-file "retux.py" (string-append bin "/retux"))
+
+ (copy-recursively "data" data)
+
+ (install-file "COPYING" doc)))))))
+ (inputs `(("python-sge-pygame" ,python-sge-pygame)
+ ("python-six" ,python-six)
+ ("python-xsge" ,python-xsge)))
+ (home-page "http://retux.nongnu.org")
+ (synopsis "Action platformer game")
+ (description
+ "ReTux is an action platformer loosely inspired by the Mario games,
+utilizing the art assets from the @code{SuperTux} project.")
+ ;; GPL version 3 or later is the license for the code and some art.
+ ;; The rest of the licenses are for the art exclusively, as listed in
+ ;; data/LICENSES.
+ (license (list license:cc0
+ license:cc-by3.0
+ license:cc-by-sa3.0
+ license:cc-by-sa4.0
+ license:gpl2+
+ license:gpl3+))))
+
(define-public xshogi
(package
(name "xshogi")
--
2.13.0
Reply sent
to
Kei Kebreau <kei <at> openmailbox.org>
:
You have taken responsibility.
(Thu, 22 Jun 2017 21:26:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Kei Kebreau <kei <at> openmailbox.org>
:
bug acknowledged by developer.
(Thu, 22 Jun 2017 21:26:01 GMT)
Full text and
rfc822 format available.
Message #10 received at 27190-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Kei Kebreau <kei <at> openmailbox.org> writes:
> * gnu/packages/games.scm (retux): New variable.
> ---
> gnu/packages/games.scm | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 57 insertions(+)
>
> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
> index 60d885500..aaae1e54b 100644
> --- a/gnu/packages/games.scm
> +++ b/gnu/packages/games.scm
> @@ -331,6 +331,63 @@ Chess). It is similar to standard chess but this variant is far more complicate
> "PrBoom+ is a Doom source port developed from the original PrBoom project.")
> (license license:gpl2+)))
>
> +(define-public retux
> + (package
> + (name "retux")
> + (version "1.3.4")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "mirror://savannah/retux/"
> + (version-major+minor version) "/retux-"
> + version "-src.tar.gz"))
> + (sha256
> + (base32
> + "1wgvh3q96kfgymb2jpd58xsms9hmckhhc4fq7v2k61gh2l11cvdj"))))
> + (build-system python-build-system)
> + (arguments
> + `(#:tests? #f ; no check target
> + #:phases
> + (modify-phases %standard-phases
> + ;; no setup.py script
> + (delete 'build)
> + (replace 'install
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let* ((out (assoc-ref outputs "out"))
> + (bin (string-append out "/bin"))
> + (data (string-append out "/share/retux"))
> + (doc (string-append out "/share/doc/retux")))
> + (mkdir-p bin)
> +
> + (substitute* "retux.py"
> + ;; Use the correct data directory.
> + (("os\\.path\\.join\\(os\\.path\\.dirname\\(__file__\\), \"data\"\\),")
> + (string-append "\"" data "\","))
> + ;; Use Python 3 so the patch-shebangs phase works properly.
> + ((".*python2.*") "#!/usr/bin/python3"))
> +
> + (copy-file "retux.py" (string-append bin "/retux"))
> +
> + (copy-recursively "data" data)
> +
> + (install-file "COPYING" doc)))))))
> + (inputs `(("python-sge-pygame" ,python-sge-pygame)
> + ("python-six" ,python-six)
> + ("python-xsge" ,python-xsge)))
> + (home-page "http://retux.nongnu.org")
> + (synopsis "Action platformer game")
> + (description
> + "ReTux is an action platformer loosely inspired by the Mario games,
> +utilizing the art assets from the @code{SuperTux} project.")
> + ;; GPL version 3 or later is the license for the code and some art.
> + ;; The rest of the licenses are for the art exclusively, as listed in
> + ;; data/LICENSES.
> + (license (list license:cc0
> + license:cc-by3.0
> + license:cc-by-sa3.0
> + license:cc-by-sa4.0
> + license:gpl2+
> + license:gpl3+))))
> +
> (define-public xshogi
> (package
> (name "xshogi")
Noting the lack of commentary, this package is pushed to master as
519bfc656c680067c902f12b9db32fa8a0ec7c2a.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 21 Jul 2017 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 7 years and 335 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.