gramps: update to 6.0.1

This commit is contained in:
Christopher Nielsen
2025-04-25 13:51:22 -04:00
parent 58d09721ef
commit 05663a9310
+19 -13
View File
@@ -5,7 +5,7 @@ PortGroup github 1.0
PortGroup python 1.0
PortGroup app 1.1
github.setup gramps-project gramps 5.2.3 v
github.setup gramps-project gramps 6.0.1 v
revision 0
github.tarball_from archive
@@ -22,9 +22,9 @@ long_description Gramps is a genealogy program to store, edit, \
correlation to potentially fill relationship gaps.
homepage https://www.gramps-project.org/
checksums rmd160 b2e689b574b5e02c16be9d2bde783dc6ce05cd40 \
sha256 bd1b7dc3f26ffd480f607a79e3a76688024a28b0f0b412ac1e4d77402ddc87d6 \
size 21081011
checksums rmd160 486f9b01dcb5cc9dc828c8efc1a8ff760f0a8d46 \
sha256 894d854da32ff51a72dd812e8430dcbaa11757928a018c76120cfbb16686e877 \
size 22016734
depends_build-append \
port:intltool
@@ -34,10 +34,10 @@ depends_lib-append \
port:geocode-glib \
port:gexiv2 \
port:ghostscript \
port:goocanvas2 \
path:bin/dot:graphviz \
port:gspell \
path:lib/pkgconfig/gtk+-3.0.pc:gtk3 \
port:gtkspell3 \
path:lib/pkgconfig/librsvg-2.0.pc:librsvg \
port:osm-gps-map \
port:shared-mime-info \
port:sqlite3
@@ -52,8 +52,9 @@ proc py_setup {py_ver} {
${py_ver}
depends_lib-append \
port:py${py_ver}-bsddb3 \
port:py${py_ver}-berkeleydb \
port:py${py_ver}-gobject3 \
port:py${py_ver}-orjson \
port:py${py_ver}-Pillow \
port:py${py_ver}-pyicu
@@ -64,27 +65,32 @@ proc py_setup {py_ver} {
test.run yes
}
variant python39 conflicts python310 python311 python312 description {Use Python 3.9} {
variant python39 conflicts python310 python311 python312 python313 description {Use Python 3.9} {
py_setup 39
}
variant python310 conflicts python39 python311 python312 description {Use Python 3.10} {
variant python310 conflicts python39 python311 python312 python313 description {Use Python 3.10} {
py_setup 310
}
variant python311 conflicts python39 python310 python312 description {Use Python 3.11} {
variant python311 conflicts python39 python310 python312 python313 description {Use Python 3.11} {
py_setup 311
}
variant python312 conflicts python39 python310 python311 description {Use Python 3.12} {
variant python312 conflicts python39 python310 python311 python313 description {Use Python 3.12} {
py_setup 312
}
variant python313 conflicts python39 python310 python311 python312 description {Use Python 3.13} {
py_setup 313
}
if {![variant_isset python39] && \
![variant_isset python310] && \
![variant_isset python311] && \
![variant_isset python312]} {
default_variants +python312
![variant_isset python312] && \
![variant_isset python313]} {
default_variants +python313
}
# Dummy variants, to ensure user's choice cascades to dependencies