aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/genealogy.scm
blob: 36c05fff28a7f7542f96933f4e260ed79ef92c54 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages genealogy)
  #:use-module (guix build-system python)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages fonts)
  #:use-module (gnu packages freedesktop)
  #:use-module (gnu packages geo)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages ghostscript)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnome)
  #:use-module (gnu packages graphviz)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages sqlite)
  #:use-module (gnu packages version-control))

(define-public gramps
  (package
    (name "gramps")
    (version "5.1.4")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/gramps-project/gramps")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "00358nzyw686ypqv45imc5k9frcqnhla0hpx9ynna3iy6iz5006x"))))
    (build-system python-build-system)
    (native-inputs
     `(("gettext" ,gettext-minimal)
       ("intltool" ,intltool)))
    (inputs
     (list bash-minimal
           cairo
           font-gnu-freefont
           geocode-glib
           gexiv2
           ghostscript
           gobject-introspection
           gtk+
           gtkspell3
           graphviz
           (librsvg-for-system)
           osm-gps-map
           pango
           python-bsddb3
           python-pillow
           python-pycairo
           python-pygobject
           python-pyicu
           rcs
           sqlite
           xdg-utils))
    (arguments
     `(#:imported-modules ((guix build glib-or-gtk-build-system)
                           ,@%python-build-system-modules)
       #:modules ((ice-9 match)
                  (guix build python-build-system)
                  ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
                  (guix build utils))
       #:phases
       (modify-phases %standard-phases
         (add-before 'check 'set-home-for-tests
           (lambda _
             (setenv "HOME" (getenv "TMPDIR"))
             #t))
         (add-before 'wrap 'wrap-with-GI_TYPELIB_PATH
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out"))
                   (paths (map (match-lambda
                                 ((output . directory)
                                  (let ((girepodir (string-append
                                                    directory
                                                    "/lib/girepository-1.0")))
                                    (if (file-exists? girepodir)
                                        girepodir
                                        #f))))
                               inputs)))
               (wrap-program (string-append out "/bin/gramps")
                 `("GI_TYPELIB_PATH" ":" prefix ,(filter identity paths))))))
         (add-after 'wrap 'glib-or-gtk-wrap
           (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
    (home-page "https://gramps-project.org")
    (synopsis "Genealogical research software")
    (description
     "Gramps is a free software project and community striving to produce
a genealogy program that is both intuitive for hobbyists and feature-complete
for professional genealogists.")
    (license license:gpl2+)))
68c46c819d976289e'>gnu: lcrq: Update to 0.2.3....* gnu/packages/networking.scm (lcrq): Update to 0.2.3. Vagrant Cascadian 2024-11-04gnu: frrouting: Update to 10.1.1....* gnu/packages/networking.scm (frrouting): Update to 10.1.1. [source]: Switch to git-fetch. [inputs]: Add libelf and protobuf-c. [native-inputs]: Add autoconf, automake, libtool, flex, and bison. [arguments]<#:configure-flags>: Add --sysconfdir=/etc. Change-Id: I54d589a314c20f19a1c0096e77dc75d9dd1b5c47 Zheng Junjie 2024-11-04gnu: libyang: Update to 3.4.2. [security fixes]...This fixes CVE-2021-28902, CVE-2021-28903, CVE-2021-28904, CVE-2021-28905 and CVE-2021-28906. * gnu/packages/networking.scm (libyang): Update to 3.4.2. Nicolas Graves 2024-11-04gnu: wireshark: Build from git source....* gnu/packages/networking.scm (wireshark)[source]: Switch to git-fetch. [arguments]<#:configure-flags>: Set -DVCSVERSION_OVERRIDE. Change-Id: I82356c1faea9a6253108dc17334db2464ba38098 Zheng Junjie 2024-11-04gnu: wireshark: Update to 4.4.1. [security fixes]...This fixes CVE-2024-9780. * gnu/packages/networking.scm (wireshark): Update to 4.4.1. Nicolas Graves 2024-11-03gnu: iwd: Update to 3.0....* gnu/packages/networking.scm (iwd): Update to 3.0. Signed-off-by: Hilton Chain <hako@ultrarare.space> Sergey Trofimov 2024-10-23gnu: ngtcp2: Update to 1.8.1....* gnu/packages/networking.scm (ngtcp2): Update to 1.8.1. Change-Id: I986c697da1b101c367f1ca7850555495e8f26179 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Tomas Volf 2024-10-22gnu: yggdrasil: Update to 0.5.9....* gnu/packages/networking.scm (yggdrasil): Update to 0.5.9. [propagated-inputs]: Remove go-nhooyr-io-websocket; add go-github-com-coder-websocket and go-github-com-wlynxg-anet. Change-Id: I282661d8e45c9a02ec9d4e8a9079a469d19261a1 Artyom V. Poptsov 2024-10-14gnu: ngtcp2: Update to 1.8.0....* gnu/packages/networking.scm (ngtcp2): Update to 1.8.0. Change-Id: I0a704cc0e4dc72302b0b7aef133c2cdca9f224fb Tomas Volf 2024-09-29gnu: phantomsocks: Update to 0.0.0-20240729085950-7928f8eff406....* gnu/packages/networking.scm (phantomsocks): Update to 0.0.0-20240729085950-7928f8eff406. Change-Id: If15b87551996f3b52548a5c18a0ff315ac9a2e72 Hilton Chain 2024-09-20gnu: vnstat: Update to 2.12....* gnu/packages/networking.scm (vnstat): Update to 2.12. Change-Id: Ib2e65949be0b4c707c055210cc7996bdd2b8fa9d Efraim Flashner 2024-09-19gnu: wireshark: Update to 4.4.0....* gnu/packages/networking.scm (wireshark): Update to 4.4.0. Change-Id: I7f817641b9fac944483a2d6a90851843209a680f Signed-off-by: Ludovic Courtès <ludo@gnu.org> Zheng Junjie 2024-09-06gnu: lcsync: Update to 0.3.1....* gnu/packages/networking.scm (lcsync): Update to 0.3.1. Vagrant Cascadian 2024-09-06gnu: lcrq: Add compiler optimizations....* gnu/packages/networking.scm (lcrq)[arguments]: Pass compiler optimizations to configure. [phases]: Add 'speedtest phase. Vagrant Cascadian 2024-09-06gnu: lcrq: Update to 0.2.1....* gnu/packages/networking.scm (lcrq): Update to 0.2.1. Vagrant Cascadian 2024-09-05gnu: libcamera: Disable signature verification....Signature verification breaks, when libcamera is grafted. Running built-in libcamera modules via proxy is not recommended by upstream and not always work. We control the build process of all libcamera modules, so to workaround the issue we disable signature verification. For more information see: <https://issues.guix.gnu.org/72828> * gnu/packages/patches/libcamera-ipa_manager-disable-signature-verification.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/networking.scm (libcamera): Disable signature verification. [inputs]: Remove gnutls and openssl. [arguments]: Remove re-sign-binaries phase. [source]: Add disable-signature patch. Change-Id: Icf422553c0f49b28d7997a1e818a4b8d9a6b5732 Andrew Tropin 2024-09-05gnu: libcamera: Remove stale boost dependency....* gnu/packages/networking.scm (libcamera)[inputs]: Boost is not needed anymore, remove it. Change-Id: Idd4ce931036298b71e6414a76df37365341ae47d Andrew Tropin 2024-08-31gnu: libcamera: Do not pass empty string to meson....* gnu/packages/networking.scm (libcamera)[arguments]: Use list for extra arguments to meson to avoid passing an empty string. Change-Id: I5e494eb10f06b4fe9e65e3b0f0f32dd99947b250 Ricardo Wurmus 2024-08-31gnu: libcamera: Disable failing file test on aarch64....* gnu/packages/networking.scm (libcamera): Disable failing file test on aarch64. Change-Id: Ie3b98a3610df78def46196c05fa823f0cd878926 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Roman Scherer 2024-08-31gnu: opendht: Fix build....* gnu/packages/networking.scm (opendht)[arguments]: Fix typo of "unpack". Change-Id: I176d9ce69401fe1c79498329264edd6686993846 宋文武 2024-08-31gnu: squid: Add libxcrypt dependency....* gnu/packages/networking.scm (squid)[inputs]: Add libxcrypt. Change-Id: I1d7e671d0095e988375d2deab554b0142b822e2f 宋文武 2024-08-31gnu: frrouting: Add libxcrypt dependency....* gnu/packages/networking.scm (frrouting)[inputs]: Add libxcrypt. Change-Id: I43a06c04e8ddd6c7687192275f8215ae3ec8363f 宋文武 2024-08-31gnu: dante: Add libxcrypt dependency....* gnu/packages/networking.scm (dante)[inputs]: Add libxcrypt. Change-Id: If36e869dc5ce1b4d15ef0f63933d498c94d426b1 宋文武 2024-08-31gnu: whois: Add libxcrypt dependency....* gnu/packages/networking.scm (whois)[inputs]: Add libxcrypt. Change-Id: Ic00fdcabd82d484a4331b11058aa96df2c32557d 宋文武 2024-08-31gnu: networking: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/networking.scm (blueman)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ifd94df2e7fd13c6036119940dc24d1366a75376d Maxime Devos 2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer 2024-08-31gnu: Remove unneeded libxml2 from native-inputs. (libxslt)...XML_CATALOG_FILES is already set within libxslt so it's unnecessary to include libxml2 for the same effect. * gnu/packages/freedesktop.scm (wayland): Remove obsolete comment. (farstream, elogind, packagekit, accountsservice, plymouth)[native-inputs]: Remove libxml2. * gnu/packages/benchmark.scm (sysbench)[native-inputs]: Ditto. * gnu/packages/cluster.scm (drbd-utils)[native-inputs]: Ditto. * gnu/packages/glib.scm (dbus)[native-inputs]: Ditto. * gnu/packages/gnome.scm (gnome-keyring, glade3, dconf, libsecret, colord) (upower, gnome-settings-daemon)[native-inputs]: Ditto. * gnu/packages/linux.scm (eudev)[native-inputs]: Ditto. * gnu/packages/networking.scm (iputils)[native-inputs]: Ditto. * gnu/packages/ocr.scm (tesseract-ocr)[native-inputs]: Ditto. * gnu/packages/polkit.scm (polkit)[native-inputs]: Ditto. * gnu/packages/samba.scm (samba/pinned)[native-inputs]: Ditto. * gnu/packages/sssd.scm (adcli)[native-inputs]: Ditto. * gnu/packages/terminals.scm (kmscon)[native-inputs]: Ditto. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ica3fb5a8e23ad928c53ae508c02777d78c635af0 Bruno Victal 2024-08-31gnu: tunctl: Update comment....The actual dependency is docbook-to-man which is a completely different project [1]. (unrelated to docbook2x and docbook-utils) [1]: <https://www.oasis-open.org/docbook/tools/dtm/> * gnu/packages/networking.scm (tunctl): Update comment. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: iputils: Restyle description and native-inputs....* gnu/packages/networking.scm (iputils)[native-inputs]: Reorder inputs. [description]: Use @table over @itemize. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: iputils: Use docbook-xml-5.0.1....* gnu/packages/networking.scm (iputils)[native-inputs]: Use docbook-xml-5.0.1 over docbook-xml. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: socat: Update to 1.7.4.4....* gnu/packages/networking.scm (socat): Update to 1.7.4.4. [inputs]: Add readline for READLINE support. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-28gnu: ngtcp2: Update to 1.7.0....* gnu/packages/networking.scm (ngtcp2)[version]: Update to 1.7.0. [source]: Use gzip archive. Change-Id: If4490a46c0ab551ded32aab962981c9fdb43ff94 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Tomas Volf 2024-08-27gnu: libcamera: Re-sign binaries after stripping....* gnu/packages/networking.scm (libcamera) [arguments]: Re-sign binaries after stripping. Change-Id: If57a44d22347d8ebc7eab7df343e9c3996fe1793 Andrew Tropin 2024-08-27gnu: libcamera: Enable udev support....* gnu/packages/networking.scm (libcamera) [arguments]: Add udev configuration flag. Change-Id: Ia4e4588d29603dc7a293263a15cce22a2d150813 Andrew Tropin 2024-08-20gnu: libcamera: Update dependencies for cam and qcam....* gnu/packages/networking.scm (libcamera) [arguments]: Update dependencies for cam and qcam. Change-Id: Ica9df2a2e224edd85cc32a6f2c66a83d1557f8df Andrew Tropin 2024-08-20gnu: libcamera: Enable simple pipeline....* gnu/packages/networking.scm (libcamera) [arguments]: Enable simple pipeline in configure-flags. Change-Id: Ica9df2a2e224edd85cc32a6f2c66a83d1557f8df Andrew Tropin