* [bug#71329] [PATCH 0/2] opensurge: Update to 0.6.1.1
@ 2024-06-03 4:07 iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 1/2] gnu: surgescript: Update to 0.6.0 iyzsong--- via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-03 4:07 UTC (permalink / raw)
To: 71329
Cc: 宋文武, Adam Faiz, Liliana Marie Prikler,
宋文武
From: 宋文武 <iyzsong@member.fsf.org>
*** BLURB HERE ***
Sou Bunnbu (宋文武) (2):
gnu: surgescript: Update to 0.6.0.
gnu: opensurge: Update to 0.6.1.1.
gnu/packages/game-development.scm | 4 ++--
gnu/packages/games.scm | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
base-commit: 834a4195241806784d4b321b95f06d85f458ce18
--
2.41.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#71329] [PATCH 1/2] gnu: surgescript: Update to 0.6.0.
2024-06-03 4:07 [bug#71329] [PATCH 0/2] opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
@ 2024-06-03 4:09 ` iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 2/2] gnu: opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
2024-06-11 11:39 ` bug#71329: [PATCH 0/2] " Christopher Baines
2 siblings, 0 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-03 4:09 UTC (permalink / raw)
To: 71329
Cc: 宋文武, Adam Faiz, Liliana Marie Prikler,
宋文武
From: 宋文武 <iyzsong@member.fsf.org>
* gnu/packages/game-development.scm (surgescript): Update to 0.6.0.
Change-Id: Ie976d33f3f2df4ac5c37476fcd9675c122a5783a
---
gnu/packages/game-development.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 5b7852c4eb..17c1bc9736 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -921,7 +921,7 @@ (define-public sfxr
(define-public surgescript
(package
(name "surgescript")
- (version "0.5.6.1")
+ (version "0.6.0")
(source
(origin
(method git-fetch)
@@ -930,7 +930,7 @@ (define-public surgescript
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1p1pxb4iixzq7z14bpy32dx3dhfaaf6mcz4y3g3g09bkdmm1ys6j"))))
+ (base32 "17k14108hvz329cqnr3g799ksmiv8d710slnghi2wmwswir8s0jd"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f)) ; there are no tests
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#71329] [PATCH 2/2] gnu: opensurge: Update to 0.6.1.1.
2024-06-03 4:07 [bug#71329] [PATCH 0/2] opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 1/2] gnu: surgescript: Update to 0.6.0 iyzsong--- via Guix-patches via
@ 2024-06-03 4:09 ` iyzsong--- via Guix-patches via
2024-06-11 11:39 ` bug#71329: [PATCH 0/2] " Christopher Baines
2 siblings, 0 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2024-06-03 4:09 UTC (permalink / raw)
To: 71329
Cc: 宋文武, Adam Faiz, Liliana Marie Prikler,
宋文武
From: 宋文武 <iyzsong@member.fsf.org>
* gnu/packages/games.scm (opensurge): Update to 0.6.1.1.
[inputs]: Add mesa and physfs.
Change-Id: Ia62559372757f7cfd6dc4784e2a8271bbe6d7868
---
gnu/packages/games.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 2c096ea15d..aaf95fc964 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -1850,7 +1850,7 @@ (define-public meandmyshadow
(define-public opensurge
(package
(name "opensurge")
- (version "0.6.0.3")
+ (version "0.6.1.1")
(source
(origin
(method git-fetch)
@@ -1859,7 +1859,7 @@ (define-public opensurge
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0yia2qcva741a64qpls8a59lvnx5vynqkk2i3arkflw6f1m1vb55"))))
+ (base32 "1hwnjgkbywspmsmpmmnndqil86qqyd21y2q5krs8znwi35ychd3q"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ; there are no tests
@@ -1891,7 +1891,7 @@ (define-public opensurge
"Roboto-Bold.ttf"
"Roboto-Medium.ttf"))))))))
(inputs
- (list allegro font-google-roboto surgescript xdg-utils))
+ (list allegro font-google-roboto mesa physfs surgescript xdg-utils))
(home-page "https://opensurge2d.org")
(synopsis "2D retro side-scrolling game")
(description "@code{Open Surge} is a 2D retro side-scrolling platformer
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#71329: [PATCH 0/2] opensurge: Update to 0.6.1.1
2024-06-03 4:07 [bug#71329] [PATCH 0/2] opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 1/2] gnu: surgescript: Update to 0.6.0 iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 2/2] gnu: opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
@ 2024-06-11 11:39 ` Christopher Baines
2024-06-11 11:39 ` [bug#71329] " Christopher Baines
2 siblings, 1 reply; 5+ messages in thread
From: Christopher Baines @ 2024-06-11 11:39 UTC (permalink / raw)
To: iyzsong--- via Guix-patches via
Cc: Adam Faiz, 宋文武, 71329-done, iyzsong,
Liliana Marie Prikler
[-- Attachment #1: Type: text/plain, Size: 504 bytes --]
iyzsong--- via Guix-patches via <guix-patches@gnu.org> writes:
> From: 宋文武 <iyzsong@member.fsf.org>
>
> *** BLURB HERE ***
>
> Sou Bunnbu (宋文武) (2):
> gnu: surgescript: Update to 0.6.0.
> gnu: opensurge: Update to 0.6.1.1.
>
> gnu/packages/game-development.scm | 4 ++--
> gnu/packages/games.scm | 6 +++---
> 2 files changed, 5 insertions(+), 5 deletions(-)
Looks good to me, I've pushed this to master as
cca59ba0e330d3ed95ae4398510bbf6b8241f54c.
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#71329] [PATCH 0/2] opensurge: Update to 0.6.1.1
2024-06-11 11:39 ` bug#71329: [PATCH 0/2] " Christopher Baines
@ 2024-06-11 11:39 ` Christopher Baines
0 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2024-06-11 11:39 UTC (permalink / raw)
To: 71329
Cc: Adam Faiz, 宋文武, 71329-done, iyzsong,
Liliana Marie Prikler
[-- Attachment #1: Type: text/plain, Size: 504 bytes --]
iyzsong--- via Guix-patches via <guix-patches@gnu.org> writes:
> From: 宋文武 <iyzsong@member.fsf.org>
>
> *** BLURB HERE ***
>
> Sou Bunnbu (宋文武) (2):
> gnu: surgescript: Update to 0.6.0.
> gnu: opensurge: Update to 0.6.1.1.
>
> gnu/packages/game-development.scm | 4 ++--
> gnu/packages/games.scm | 6 +++---
> 2 files changed, 5 insertions(+), 5 deletions(-)
Looks good to me, I've pushed this to master as
cca59ba0e330d3ed95ae4398510bbf6b8241f54c.
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-06-11 20:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-03 4:07 [bug#71329] [PATCH 0/2] opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 1/2] gnu: surgescript: Update to 0.6.0 iyzsong--- via Guix-patches via
2024-06-03 4:09 ` [bug#71329] [PATCH 2/2] gnu: opensurge: Update to 0.6.1.1 iyzsong--- via Guix-patches via
2024-06-11 11:39 ` bug#71329: [PATCH 0/2] " Christopher Baines
2024-06-11 11:39 ` [bug#71329] " Christopher Baines
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).