* [bug#72777] [PATCH] gnu: dhewm3: Update to 1.5.4.
@ 2024-08-24 0:52 James Smith via Guix-patches via
2024-09-05 3:37 ` [bug#72777] [PATCH v2] " James Smith via Guix-patches via
0 siblings, 1 reply; 4+ messages in thread
From: James Smith via Guix-patches via @ 2024-08-24 0:52 UTC (permalink / raw)
To: 72777
Cc: James Smith, Adam Faiz, Liliana Marie Prikler,
宋文武
* gnu/packages/game-development.scm: (dhewm3): Update to 1.5.4.
Change-Id: I8db801b099910e60e85d0da7ddcc77654205107f
---
gnu/packages/game-development.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index aff95d48a1..22fd372b33 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -3089,7 +3089,7 @@ (define-public warsow-qfusion
(define-public dhewm3
(package
(name "dhewm3")
- (version "1.5.3")
+ (version "1.5.4")
(source (origin
(method git-fetch)
(uri (git-reference (url "https://github.com/dhewm/dhewm3")
@@ -3097,10 +3097,15 @@ (define-public dhewm3
(file-name (git-file-name name version))
(sha256
(base32
- "1zbwhrngmgb0969izmxididyx892qk7591aa9mbigakw6dvmlm84"))))
+ "16cvf78a7q00bkf74waj6gss09y4iqn3zl9srsfg6i7336gjm2wn"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ; No tests.
+ #:configure-flags
+ ;; Needed to fix 32bit builds.
+ #~(if (not #$(target-64bit?))
+ (list "-DCMAKE_CXX_FLAGS=-D_FILE_OFFSET_BITS=64")
+ '())
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'change-to-build-dir
base-commit: d48af5cca84914d44b032d0bf0820640ebbe7a4b
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#72777] [PATCH v2] gnu: dhewm3: Update to 1.5.4.
2024-08-24 0:52 [bug#72777] [PATCH] gnu: dhewm3: Update to 1.5.4 James Smith via Guix-patches via
@ 2024-09-05 3:37 ` James Smith via Guix-patches via
2024-09-13 19:00 ` Liliana Marie Prikler
0 siblings, 1 reply; 4+ messages in thread
From: James Smith via Guix-patches via @ 2024-09-05 3:37 UTC (permalink / raw)
To: 72777
Cc: James Smith, Adam Faiz, Liliana Marie Prikler,
宋文武
* gnu/packages/game-development.scm: (dhewm3): Update to 1.5.4.
[arguments]: Set configure flags for 32-bit builds.
Change-Id: I8db801b099910e60e85d0da7ddcc77654205107f
---
gnu/packages/game-development.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index 62f578f3db..0723cb49f3 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -3091,7 +3091,7 @@ (define-public warsow-qfusion
(define-public dhewm3
(package
(name "dhewm3")
- (version "1.5.3")
+ (version "1.5.4")
(source (origin
(method git-fetch)
(uri (git-reference (url "https://github.com/dhewm/dhewm3")
@@ -3099,10 +3099,15 @@ (define-public dhewm3
(file-name (git-file-name name version))
(sha256
(base32
- "1zbwhrngmgb0969izmxididyx892qk7591aa9mbigakw6dvmlm84"))))
+ "16cvf78a7q00bkf74waj6gss09y4iqn3zl9srsfg6i7336gjm2wn"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ; No tests.
+ #:configure-flags
+ ;; Needed to fix 32bit builds.
+ #~(if (not #$(target-64bit?))
+ (list "-DCMAKE_CXX_FLAGS=-D_FILE_OFFSET_BITS=64")
+ '())
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'change-to-build-dir
base-commit: ed95ddeb1e58c314f2e22b4cd35986042f3e2f21
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#72777] [PATCH v2] gnu: dhewm3: Update to 1.5.4.
2024-09-05 3:37 ` [bug#72777] [PATCH v2] " James Smith via Guix-patches via
@ 2024-09-13 19:00 ` Liliana Marie Prikler
2024-10-27 14:35 ` bug#72777: " James Smith via Guix-patches via
0 siblings, 1 reply; 4+ messages in thread
From: Liliana Marie Prikler @ 2024-09-13 19:00 UTC (permalink / raw)
To: James Smith, 72777; +Cc: 宋文武, Adam Faiz
Am Mittwoch, dem 04.09.2024 um 20:37 -0700 schrieb James Smith:
> * gnu/packages/game-development.scm: (dhewm3): Update to 1.5.4.
> [arguments]: Set configure flags for 32-bit builds.
>
> Change-Id: I8db801b099910e60e85d0da7ddcc77654205107f
> ---
Pushed as 0e0d9bc91f20ac6dda439ab09330f0163eb9bf42.
Thanks
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-27 14:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-24 0:52 [bug#72777] [PATCH] gnu: dhewm3: Update to 1.5.4 James Smith via Guix-patches via
2024-09-05 3:37 ` [bug#72777] [PATCH v2] " James Smith via Guix-patches via
2024-09-13 19:00 ` Liliana Marie Prikler
2024-10-27 14:35 ` bug#72777: " James Smith via Guix-patches via
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.