all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kei Kebreau <kei@openmailbox.org>
To: 27190-done@debbugs.gnu.org
Subject: bug#27190: [PATCH] gnu: Add retux.
Date: Thu, 22 Jun 2017 17:25:30 -0400	[thread overview]
Message-ID: <8737arsoj9.fsf@openmailbox.org> (raw)
In-Reply-To: <20170601174844.4306-1-kei@openmailbox.org> (Kei Kebreau's message of "Thu, 1 Jun 2017 13:48:44 -0400")

[-- Attachment #1: Type: text/plain, Size: 3311 bytes --]

Kei Kebreau <kei@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.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

      reply	other threads:[~2017-06-22 21:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-01 17:48 bug#27190: [PATCH] gnu: Add retux Kei Kebreau
2017-06-22 21:25 ` Kei Kebreau [this message]

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=8737arsoj9.fsf@openmailbox.org \
    --to=kei@openmailbox.org \
    --cc=27190-done@debbugs.gnu.org \
    /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.