* [bug#49319] [PATCH] gnu: po4a: Update to 0.63.
@ 2021-07-01 16:28 EuAndreh via Guix-patches via
2021-07-01 18:10 ` Julien Lepiller
0 siblings, 1 reply; 5+ messages in thread
From: EuAndreh via Guix-patches via @ 2021-07-01 16:28 UTC (permalink / raw)
To: 49319; +Cc: EuAndreh
* gnu/packages/gettext.scm (po4a): Update to 0.63.
---
I've sent a patch yesterday that fixes PER5LIB on the package build of
po4a [0], but this one is unrelated and can be applied independently.
[0]: https://issues.guix.gnu.org/49294
gnu/packages/gettext.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
index 21228694d7..82604ee9be 100644
--- a/gnu/packages/gettext.scm
+++ b/gnu/packages/gettext.scm
@@ -225,14 +225,14 @@ from Markdown files.")
(define-public po4a
(package
(name "po4a")
- (version "0.61")
+ (version "0.63")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/mquinson/po4a/releases/download/v"
version "/po4a-" version ".tar.gz"))
(sha256
(base32
- "1nw61dj7ymrsjps79vvfdzp549drwd51kyj598937zvyafq4r5b2"))))
+ "1kmlfpdl1i1wrcdn0k1frh44fq10sfwswi3azvibli2lakpf66z2"))))
(build-system perl-build-system)
(arguments
`(#:phases
--
2.32.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#49319] [PATCH] gnu: po4a: Update to 0.63.
2021-07-01 16:28 [bug#49319] [PATCH] gnu: po4a: Update to 0.63 EuAndreh via Guix-patches via
@ 2021-07-01 18:10 ` Julien Lepiller
2021-07-01 23:34 ` bug#49319: " Julien Lepiller
2021-07-01 23:48 ` EuAndreh via Guix-patches via
0 siblings, 2 replies; 5+ messages in thread
From: Julien Lepiller @ 2021-07-01 18:10 UTC (permalink / raw)
To: EuAndreh, 49319
[-- Attachment #1: Type: text/plain, Size: 1435 bytes --]
Since po4a is a dependency of guix (for the translated manual), have you checked that this does not break anything by running "make as-derivation"?
Le 1 juillet 2021 12:28:20 GMT-04:00, EuAndreh via Guix-patches via <guix-patches@gnu.org> a écrit :
>* gnu/packages/gettext.scm (po4a): Update to 0.63.
>---
>I've sent a patch yesterday that fixes PER5LIB on the package build of
>po4a [0], but this one is unrelated and can be applied independently.
>
>[0]: https://issues.guix.gnu.org/49294
>
> gnu/packages/gettext.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
>diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm
>index 21228694d7..82604ee9be 100644
>--- a/gnu/packages/gettext.scm
>+++ b/gnu/packages/gettext.scm
>@@ -225,14 +225,14 @@ from Markdown files.")
> (define-public po4a
> (package
> (name "po4a")
>- (version "0.61")
>+ (version "0.63")
> (source (origin
> (method url-fetch)
>(uri (string-append
>"https://github.com/mquinson/po4a/releases/download/v"
> version "/po4a-" version ".tar.gz"))
> (sha256
> (base32
>-
>"1nw61dj7ymrsjps79vvfdzp549drwd51kyj598937zvyafq4r5b2"))))
>+
>"1kmlfpdl1i1wrcdn0k1frh44fq10sfwswi3azvibli2lakpf66z2"))))
> (build-system perl-build-system)
> (arguments
> `(#:phases
>--
>2.32.0
[-- Attachment #2: Type: text/html, Size: 1745 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* bug#49319: [PATCH] gnu: po4a: Update to 0.63.
2021-07-01 18:10 ` Julien Lepiller
@ 2021-07-01 23:34 ` Julien Lepiller
2021-07-02 0:01 ` [bug#49319] " EuAndreh via Guix-patches via
2021-07-01 23:48 ` EuAndreh via Guix-patches via
1 sibling, 1 reply; 5+ messages in thread
From: Julien Lepiller @ 2021-07-01 23:34 UTC (permalink / raw)
To: EuAndreh, 49319-done
Le Thu, 01 Jul 2021 14:10:12 -0400,
Julien Lepiller <julien@lepiller.eu> a écrit :
> Since po4a is a dependency of guix (for the translated manual), have
> you checked that this does not break anything by running "make
> as-derivation"?
>
Pushed as a597ddea423801158eaae7166e1730b10d0280e6, thank you!
In the end, I was able to run "make as-derivation" myself to check
everything was good :)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#49319] [PATCH] gnu: po4a: Update to 0.63.
2021-07-01 18:10 ` Julien Lepiller
2021-07-01 23:34 ` bug#49319: " Julien Lepiller
@ 2021-07-01 23:48 ` EuAndreh via Guix-patches via
1 sibling, 0 replies; 5+ messages in thread
From: EuAndreh via Guix-patches via @ 2021-07-01 23:48 UTC (permalink / raw)
To: 49319, Julien Lepiller
(Now replying to all xD)
I did run the build command you suggested, and it ran successfully:
```
$ ./pre-inst-env make as-derivation
...
/gnu/store/vm1mgqd3131gf2snf6qddvfxmj395dls-guix-20210701.23
```
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#49319] [PATCH] gnu: po4a: Update to 0.63.
2021-07-01 23:34 ` bug#49319: " Julien Lepiller
@ 2021-07-02 0:01 ` EuAndreh via Guix-patches via
0 siblings, 0 replies; 5+ messages in thread
From: EuAndreh via Guix-patches via @ 2021-07-02 0:01 UTC (permalink / raw)
To: 49319-done, Julien Lepiller
Thanks!
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-07-02 0:03 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-01 16:28 [bug#49319] [PATCH] gnu: po4a: Update to 0.63 EuAndreh via Guix-patches via
2021-07-01 18:10 ` Julien Lepiller
2021-07-01 23:34 ` bug#49319: " Julien Lepiller
2021-07-02 0:01 ` [bug#49319] " EuAndreh via Guix-patches via
2021-07-01 23:48 ` EuAndreh 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.