all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Liliana Marie Prikler <liliana.prikler@gmail.com>
To: gemmaro <gemmaro.dev@gmail.com>, 68199@debbugs.gnu.org
Cc: 宋文武 <iyzsong@envs.net>
Subject: [bug#68199] [PATCH 1/3] gnu: taisei: Reformat with guix style.
Date: Tue, 02 Jan 2024 22:02:22 +0100	[thread overview]
Message-ID: <b0e00883f7b4605eaee0fe68a25b90ce06be1bb7.camel@gmail.com> (raw)
In-Reply-To: <1365e301c94d1d7bf36a2985c9ba2f01b22edd05.1704112246.git.gemmaro.dev@gmail.com>

Am Dienstag, dem 02.01.2024 um 10:07 +0900 schrieb gemmaro:
> * gnu/packages/games.scm (taisei): Reformat with guix style.
> 
> Change-Id: If542566f43e581968f73537e90101a18d3b1bca1
> ---
>  gnu/packages/games.scm | 56 ++++++++++++++++++++--------------------
> --
>  1 file changed, 27 insertions(+), 29 deletions(-)
> 
> diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
> index c7813790a1..c26b9ef2c9 100644
> --- a/gnu/packages/games.scm
> +++ b/gnu/packages/games.scm
> @@ -78,7 +78,7 @@
>  ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
>  ;;; Copyright © 2023 Florian Pelz <pelzflorian@pelzflorian.de>
>  ;;; Copyright © 2023 Ivana Drazovic <iv.dra@hotmail.com>
> -;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
> +;;; Copyright © 2023, 2024 gemmaro <gemmaro.dev@gmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -3390,46 +3390,44 @@ (define-public taisei
>       (origin
>         (method url-fetch)
>         (uri (string-append "https://github.com/taisei-project/"
> -                           "taisei/releases/download/v" version
> -                           "/taisei-v" version ".tar.xz"))
> +                           "taisei/releases/download/v"
> +                           version
> +                           "/taisei-v"
> +                           version
> +                           ".tar.xz"))
>         (sha256
>          (base32
> "1g53fcyrlzmvlsb40pw90gaglysv6n1w42hk263iv61ibhdmzh6v"))))
>      (build-system meson-build-system)
>      (arguments
> -     `(#:build-type "release"      ;comment out for bug-reporting
> (and cheats)
> -       #:configure-flags
> -       (list "-Dr_default=gles30"
> -             "-Dr_gles20=true"
> -             "-Dr_gles30=true"
> -             "-Dshader_transpiler=true")))
> -    (native-inputs
> -     (list pkg-config python python-docutils python-pygments))
> -    (inputs
> -     (list cglm
> -           freetype
> -           libpng
> -           libwebp
> -           libzip
> -           mesa
> -           openssl
> -           opusfile
> -           sdl2
> -           sdl2-mixer
> -           shaderc
> -           spirv-cross
> -           zlib))
> +     `(#:build-type "release" ;comment out for bug-reporting (and
> cheats)
> +       #:configure-flags (list "-Dr_default=gles30" "-
> Dr_gles20=true"
> +                               "-Dr_gles30=true" "-
> Dshader_transpiler=true")))
> +    (native-inputs (list pkg-config python python-docutils python-
> pygments))
> +    (inputs (list cglm
> +                  freetype
> +                  libpng
> +                  libwebp
> +                  libzip
> +                  mesa
> +                  openssl
> +                  opusfile
> +                  sdl2
> +                  sdl2-mixer
> +                  shaderc
> +                  spirv-cross
> +                  zlib))
>      (home-page "https://taisei-project.org/")
>      (synopsis "Shoot'em up fangame and libre clone of Touhou
> Project")
>      (description
>       "The player controls a character (one of three: Good, Bad, and
> Dead),
>  dodges the missiles (lots of it cover the screen, but the
> character's hitbox
>  is very small), and shoot at the adversaries that keep appear on the
> screen.")
> -    (license (list ;;game
> +    (license (list ;game
This comment looks out of place.
>                     license:expat
> -                   ;;resources/00-taisei.pkgdir/bgm/
> -                   ;;atlas/portraits/
> +                   ;; resources/00-taisei.pkgdir/bgm/
> +                   ;; atlas/portraits/
>                     license:cc-by4.0
> -                   ;;miscellaneous
> +                   ;; miscellaneous
>                     license:cc0
>                     license:public-domain))))
>  
Other than that LGTM.

  reply	other threads:[~2024-01-02 21:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-02  1:04 [bug#68199] [PATCH 0/3] gnu: taisei: Update to 1.4 gemmaro
2024-01-02  1:07 ` [bug#68199] [PATCH 1/3] gnu: taisei: Reformat with guix style gemmaro
2024-01-02 21:02   ` Liliana Marie Prikler [this message]
2024-01-02  1:07 ` [bug#68199] [PATCH 2/3] gnu: taisei: Use gexps gemmaro
2024-01-02 21:02   ` Liliana Marie Prikler
2024-01-02  1:07 ` [bug#68199] [PATCH 3/3] gnu: taisei: Update to 1.4 gemmaro
2024-01-02 23:59 ` [bug#68199] [PATCH v2 1/2] gnu: taisei: Use gexps gemmaro
2024-01-02 23:59   ` [bug#68199] [PATCH v2 2/2] gnu: taisei: Update to 1.4 gemmaro
2024-01-05 17:52   ` [bug#68199] [PATCH v2 1/2] gnu: taisei: Use gexps Liliana Marie Prikler
2024-01-06  2:20 ` [bug#68199] [PATCH v3 " gemmaro
2024-01-06  2:20   ` [bug#68199] [PATCH v3 2/2] gnu: taisei: Update to 1.4 gemmaro
2024-01-07  9:30     ` bug#68199: " Liliana Marie Prikler

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=b0e00883f7b4605eaee0fe68a25b90ce06be1bb7.camel@gmail.com \
    --to=liliana.prikler@gmail.com \
    --cc=68199@debbugs.gnu.org \
    --cc=gemmaro.dev@gmail.com \
    --cc=iyzsong@envs.net \
    /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.