GNU bug report logs - #74494
[PATCH] gramps: Update to 5.2.3.

Previous Next

Package: guix-patches;

Reported by: Julien Lepiller <julien <at> lepiller.eu>

Date: Sat, 23 Nov 2024 18:08:02 UTC

Severity: normal

Tags: patch

Done: Julien Lepiller <julien <at> lepiller.eu>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74494 in the body.
You can then email your comments to 74494 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#74494; Package guix-patches. (Sat, 23 Nov 2024 18:08:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Julien Lepiller <julien <at> lepiller.eu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 23 Nov 2024 18:08:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Julien Lepiller <julien <at> lepiller.eu>
To: guix-patches <at> gnu.org
Subject: [PATCH] gramps: Update to 5.2.3.
Date: Sat, 23 Nov 2024 19:06:55 +0100
* gnu/packages/genealogy.scm (gramps): Update to 5.2.3.

Change-Id: Icfd3470989da905d50233564b894887305e9de1e
---
 gnu/packages/genealogy.scm | 24 ++++++++++++++++++------
 1 file changed, 18 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/genealogy.scm b/gnu/packages/genealogy.scm
index 36c05fff28..668505a71a 100644
--- a/gnu/packages/genealogy.scm
+++ b/gnu/packages/genealogy.scm
@@ -22,6 +22,7 @@ (define-module (gnu packages genealogy)
   #:use-module (guix git-download)
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
+  #:use-module (gnu packages base)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages fonts)
   #:use-module (gnu packages freedesktop)
@@ -35,12 +36,13 @@ (define-module (gnu packages genealogy)
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages sqlite)
-  #:use-module (gnu packages version-control))
+  #:use-module (gnu packages version-control)
+  #:use-module (gnu packages xml))
 
 (define-public gramps
   (package
     (name "gramps")
-    (version "5.1.4")
+    (version "5.2.3")
     (source
      (origin
        (method git-fetch)
@@ -49,11 +51,12 @@ (define-public gramps
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "00358nzyw686ypqv45imc5k9frcqnhla0hpx9ynna3iy6iz5006x"))))
+        (base32 "1gzhi5hxpgc6pxs40xsxf67hndjifnfhm89s3ly68c70x83qmwhd"))))
     (build-system python-build-system)
     (native-inputs
      `(("gettext" ,gettext-minimal)
-       ("intltool" ,intltool)))
+       ("intltool" ,intltool)
+       ("glibc-utf8-locales" ,glibc-utf8-locales))) ;; for one test
     (inputs
      (list bash-minimal
            cairo
@@ -69,6 +72,8 @@ (define-public gramps
            osm-gps-map
            pango
            python-bsddb3
+           python-jsonschema
+           python-lxml
            python-pillow
            python-pycairo
            python-pygobject
@@ -87,8 +92,15 @@ (define-public gramps
        (modify-phases %standard-phases
          (add-before 'check 'set-home-for-tests
            (lambda _
-             (setenv "HOME" (getenv "TMPDIR"))
-             #t))
+             (setenv "HOME" (getenv "TMPDIR"))))
+         (add-before 'check 'prepare-tests
+           (lambda _
+             ;; Presence of .git directory is used to determine whether this
+             ;; is a final installation.  Without it, tests fail to determine
+             ;; resource path.
+             (mkdir ".git")
+             ;; Test is failing
+             (delete-file "gramps/gen/utils/test/file_test.py")))
          (add-before 'wrap 'wrap-with-GI_TYPELIB_PATH
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out"))

base-commit: 36f516bfcdf64185f5d70c21a908283be22a34fd
-- 
2.46.0





Information forwarded to guix-patches <at> gnu.org:
bug#74494; Package guix-patches. (Tue, 26 Nov 2024 13:25:02 GMT) Full text and rfc822 format available.

Message #8 received at 74494 <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Julien Lepiller <julien <at> lepiller.eu>
Cc: 74494 <at> debbugs.gnu.org
Subject: Re: [bug#74494] [PATCH] gramps: Update to 5.2.3.
Date: Tue, 26 Nov 2024 13:24:20 +0000
[Message part 1 (text/plain, inline)]
Julien Lepiller <julien <at> lepiller.eu> skribis:

> * gnu/packages/genealogy.scm (gramps): Update to 5.2.3.
>
> [...]
>      (native-inputs
>       `(("gettext" ,gettext-minimal)
> -       ("intltool" ,intltool)))
> +       ("intltool" ,intltool)
> +       ("glibc-utf8-locales" ,glibc-utf8-locales))) ;; for one test

Hi.
You could remove the labels for native inputs.
Otherwise the patch looks good to me.
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#74494; Package guix-patches. (Wed, 18 Dec 2024 10:17:03 GMT) Full text and rfc822 format available.

Message #11 received at 74494 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Guillaume Le Vaillant <glv <at> posteo.net>
Cc: Julien Lepiller <julien <at> lepiller.eu>, 74494 <at> debbugs.gnu.org
Subject: Re: [bug#74494] [PATCH] gramps: Update to 5.2.3.
Date: Wed, 18 Dec 2024 11:15:47 +0100
Hey Julien,

Kind reminder. :-)

Ludo’.

Guillaume Le Vaillant <glv <at> posteo.net> skribis:

> Julien Lepiller <julien <at> lepiller.eu> skribis:
>
>> * gnu/packages/genealogy.scm (gramps): Update to 5.2.3.
>>
>> [...]
>>      (native-inputs
>>       `(("gettext" ,gettext-minimal)
>> -       ("intltool" ,intltool)))
>> +       ("intltool" ,intltool)
>> +       ("glibc-utf8-locales" ,glibc-utf8-locales))) ;; for one test
>
> Hi.
> You could remove the labels for native inputs.
> Otherwise the patch looks good to me.




Reply sent to Julien Lepiller <julien <at> lepiller.eu>:
You have taken responsibility. (Wed, 18 Dec 2024 17:34:02 GMT) Full text and rfc822 format available.

Notification sent to Julien Lepiller <julien <at> lepiller.eu>:
bug acknowledged by developer. (Wed, 18 Dec 2024 17:34:03 GMT) Full text and rfc822 format available.

Message #16 received at 74494-done <at> debbugs.gnu.org (full text, mbox):

From: Julien Lepiller <julien <at> lepiller.eu>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: Guillaume Le Vaillant <glv <at> posteo.net>, 74494-done <at> debbugs.gnu.org
Subject: Re: [bug#74494] [PATCH] gramps: Update to 5.2.3.
Date: Wed, 18 Dec 2024 18:33:04 +0100
Pushed to master as 478b9ccea854ec4407643a44d40ee61584fbc73d, thanks!

Le Wed, 18 Dec 2024 11:15:47 +0100,
Ludovic Courtès <ludo <at> gnu.org> a écrit :

> Hey Julien,
> 
> Kind reminder. :-)
> 
> Ludo’.
> 
> Guillaume Le Vaillant <glv <at> posteo.net> skribis:
> 
> > Julien Lepiller <julien <at> lepiller.eu> skribis:
> >  
> >> * gnu/packages/genealogy.scm (gramps): Update to 5.2.3.
> >>
> >> [...]
> >>      (native-inputs
> >>       `(("gettext" ,gettext-minimal)
> >> -       ("intltool" ,intltool)))
> >> +       ("intltool" ,intltool)
> >> +       ("glibc-utf8-locales" ,glibc-utf8-locales))) ;; for one
> >> test  
> >
> > Hi.
> > You could remove the labels for native inputs.
> > Otherwise the patch looks good to me.  





bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 16 Jan 2025 12:24:19 GMT) Full text and rfc822 format available.

This bug report was last modified 205 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.