* [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a.
@ 2023-12-31 3:26 iyzsong--- via Guix-patches via
2023-12-31 9:59 ` Liliana Marie Prikler
2024-01-07 2:41 ` bug#68161: " 宋文武 via Guix-patches via
0 siblings, 2 replies; 5+ messages in thread
From: iyzsong--- via Guix-patches via @ 2023-12-31 3:26 UTC (permalink / raw)
To: 68161
Cc: 宋文武, Liliana Marie Prikler,
宋文武
From: 宋文武 <iyzsong@member.fsf.org>
* gnu/packages/game-development.scm (bbcsdl): Update to 1.39a.
[arguments]: Replace bundled "DejaVuSans-Oblique.ttf" with symlink in the
'install' phase.
Change-Id: I7b7c8ec8a8216812e1c7a1fab74695b14f4d3ca2
---
gnu/packages/game-development.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index f2139b315f..5d675545d1 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -3217,16 +3217,16 @@ (define-public raylib
(define-public bbcsdl
(package
(name "bbcsdl")
- (version "1.35a")
+ (version "1.39a")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rtrussell/BBCSDL/")
- (commit "b9b2a3eb438cb799edb2766055b3c38e9518e3e3")))
+ (commit "93b0ffae960f4c4f45fdc2202bc6e83ee5ca277c")))
(file-name (git-file-name name version))
(sha256
(base32
- "1d03xmhrl6ba6w0vwfk46mpyc9d0w3bixxj2d4irx7wl7bh3bfic"))))
+ "03ga14k2hbhflnaynbyx9lwlbxlzx3rv6zqq21yhl183s6d4c0wa"))))
(build-system gnu-build-system)
(arguments
(list
@@ -3266,6 +3266,7 @@ (define-public bbcsdl
inputs (string-append "share/fonts/truetype/" font))
(string-append opt "/lib/" font)))
'("DejaVuSans.ttf" "DejaVuSansMono.ttf"
+ "DejaVuSans-Oblique.ttf"
"FreeSans.ttf" "FreeMono.ttf" "FreeSerif.ttf"))
(mkdir bin)
(symlink (string-append opt "/bbcsdl")
base-commit: 9d148d08be9d77781e8103915b1f498b03fd3dd2
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a.
2023-12-31 3:26 [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a iyzsong--- via Guix-patches via
@ 2023-12-31 9:59 ` Liliana Marie Prikler
2024-01-01 1:57 ` 宋文武 via Guix-patches via
2024-01-07 2:41 ` bug#68161: " 宋文武 via Guix-patches via
1 sibling, 1 reply; 5+ messages in thread
From: Liliana Marie Prikler @ 2023-12-31 9:59 UTC (permalink / raw)
To: iyzsong, 68161; +Cc: 宋文武
Am Sonntag, dem 31.12.2023 um 11:26 +0800 schrieb iyzsong@envs.net:
> From: 宋文武 <iyzsong@member.fsf.org>
>
> * gnu/packages/game-development.scm (bbcsdl): Update to 1.39a.
> [arguments]: Replace bundled "DejaVuSans-Oblique.ttf" with symlink in
> the
> 'install' phase.
>
> Change-Id: I7b7c8ec8a8216812e1c7a1fab74695b14f4d3ca2
> ---
> gnu/packages/game-development.scm | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-
> development.scm
> index f2139b315f..5d675545d1 100644
> --- a/gnu/packages/game-development.scm
> +++ b/gnu/packages/game-development.scm
> @@ -3217,16 +3217,16 @@ (define-public raylib
> (define-public bbcsdl
> (package
> (name "bbcsdl")
> - (version "1.35a")
> + (version "1.39a")
> (source (origin
> (method git-fetch)
> (uri (git-reference
> (url "https://github.com/rtrussell/BBCSDL/")
> - (commit
> "b9b2a3eb438cb799edb2766055b3c38e9518e3e3")))
> + (commit
> "93b0ffae960f4c4f45fdc2202bc6e83ee5ca277c")))
> (file-name (git-file-name name version))
> (sha256
> (base32
> -
> "1d03xmhrl6ba6w0vwfk46mpyc9d0w3bixxj2d4irx7wl7bh3bfic"))))
> +
> "03ga14k2hbhflnaynbyx9lwlbxlzx3rv6zqq21yhl183s6d4c0wa"))))
> (build-system gnu-build-system)
> (arguments
> (list
> @@ -3266,6 +3266,7 @@ (define-public bbcsdl
> inputs (string-append "share/fonts/truetype/"
> font))
> (string-append opt "/lib/" font)))
> '("DejaVuSans.ttf" "DejaVuSansMono.ttf"
> + "DejaVuSans-Oblique.ttf"
What about the other fonts? Are they no longer needed?
> "FreeSans.ttf" "FreeMono.ttf" "FreeSerif.ttf"))
> (mkdir bin)
> (symlink (string-append opt "/bbcsdl")
>
> base-commit: 9d148d08be9d77781e8103915b1f498b03fd3dd2
Cheers
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a.
2023-12-31 9:59 ` Liliana Marie Prikler
@ 2024-01-01 1:57 ` 宋文武 via Guix-patches via
2024-01-01 8:55 ` Liliana Marie Prikler
0 siblings, 1 reply; 5+ messages in thread
From: 宋文武 via Guix-patches via @ 2024-01-01 1:57 UTC (permalink / raw)
To: Liliana Marie Prikler; +Cc: 宋文武, 68161
Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
> [...]
>> '("DejaVuSans.ttf" "DejaVuSansMono.ttf"
>> + "DejaVuSans-Oblique.ttf"
> What about the other fonts? Are they no longer needed?
No, they are still needed there, only add a new symlink for
'DejaVuSans-Oblique.ttf'.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a.
2024-01-01 1:57 ` 宋文武 via Guix-patches via
@ 2024-01-01 8:55 ` Liliana Marie Prikler
0 siblings, 0 replies; 5+ messages in thread
From: Liliana Marie Prikler @ 2024-01-01 8:55 UTC (permalink / raw)
To: 宋文武; +Cc: 宋文武, 68161
Am Montag, dem 01.01.2024 um 09:57 +0800 schrieb 宋文武:
> Liliana Marie Prikler <liliana.prikler@gmail.com> writes:
>
> > [...]
> > > '("DejaVuSans.ttf" "DejaVuSansMono.ttf"
> > > + "DejaVuSans-Oblique.ttf"
> > What about the other fonts? Are they no longer needed?
>
> No, they are still needed there, only add a new symlink for
> 'DejaVuSans-Oblique.ttf'.
Ahh, thanks for pointing that out. I had somehow hallucinated a - on
the line above.
Cheers
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#68161: [PATCH] gnu: bbcsdl: Update to 1.39a.
2023-12-31 3:26 [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a iyzsong--- via Guix-patches via
2023-12-31 9:59 ` Liliana Marie Prikler
@ 2024-01-07 2:41 ` 宋文武 via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: 宋文武 via Guix-patches via @ 2024-01-07 2:41 UTC (permalink / raw)
To: 68161-done; +Cc: 宋文武, Liliana Marie Prikler
iyzsong@envs.net writes:
> From: 宋文武 <iyzsong@member.fsf.org>
>
> * gnu/packages/game-development.scm (bbcsdl): Update to 1.39a.
> [arguments]: Replace bundled "DejaVuSans-Oblique.ttf" with symlink in the
> 'install' phase.
Pushed now.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-07 3:05 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-31 3:26 [bug#68161] [PATCH] gnu: bbcsdl: Update to 1.39a iyzsong--- via Guix-patches via
2023-12-31 9:59 ` Liliana Marie Prikler
2024-01-01 1:57 ` 宋文武 via Guix-patches via
2024-01-01 8:55 ` Liliana Marie Prikler
2024-01-07 2:41 ` bug#68161: " 宋文武 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.