summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--gnu/packages/astronomy.scm410
-rw-r--r--gnu/packages/audio.scm9
-rw-r--r--gnu/packages/bdw-gc.scm10
-rw-r--r--gnu/packages/gnome.scm42
-rw-r--r--gnu/packages/guile-xyz.scm22
-rw-r--r--gnu/packages/messaging.scm8
-rw-r--r--gnu/packages/pantheon.scm6
-rw-r--r--gnu/packages/skribilo.scm1
-rw-r--r--gnu/packages/web.scm2
-rw-r--r--guix/lint.scm4
11 files changed, 250 insertions, 267 deletions
diff --git a/.gitignore b/.gitignore
index 66c2ea39a5..4f7308b295 100644
--- a/.gitignore
+++ b/.gitignore
@@ -138,8 +138,7 @@
/t-*/
/test-env
/test-tmp
-/tests/*.trs
-/tests/services/*.trs
+/tests/**/*.trs
GPATH
GRTAGS
GTAGS
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index a96b4661fd..745120b85c 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1967,6 +1967,50 @@ support for reading and writing various compression algorithms including:
@url{http://facebook.github.io/zstd/,Zstandard}.")
(license license:bsd-3))))
+(define-public python-asdf-transform-schemas
+ (hidden-package
+ (package
+ (name "python-asdf-transform-schemas")
+ (version "0.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "asdf_transform_schemas" version))
+ (sha256
+ (base32 "0clp3a2ldfhvsh5c7zqd7nr2bvv62a89aaf8p4a2vzgzjvhghl0g"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; XXX: Check why all tests fail in this file.
+ #:test-flags #~(list "--deselect=tests/test_invalid.py")))
+ (native-inputs
+ (list python-asdf-bootstrap
+ python-pytest
+ python-setuptools-next
+ python-setuptools-scm
+ python-wheel))
+ (propagated-inputs
+ (list python-asdf-standard))
+ (home-page "https://github.com/asdf-format/asdf-transform-schemas")
+ (synopsis "ASDF schemas for transforms")
+ (description
+ "This package provides ASDF schemas for validating transform tags.
+Users should not need to install this directly; instead, install an
+implementation package such as asdf-astropy.")
+ (license license:bsd-3))))
+
+(define-public python-asdf-transform-schemas-bootstrap
+ (hidden-package
+ (package/inherit python-asdf-transform-schemas
+ (arguments
+ (list #:tests? #f
+ #:phases #~(modify-phases %standard-phases
+ (delete 'sanity-check))))
+ (native-inputs
+ (list python-setuptools-next
+ python-wheel))
+ (propagated-inputs '()))))
+
(define-public python-asdf-zarr
(package
(name "python-asdf-zarr")
@@ -4453,6 +4497,34 @@ semi-analytic models, to cosmological hydrodynamic simulations, and even
observationally-derived galaxy merger catalogs.")
(license license:expat)))
+(define-public python-hvpy
+ (package
+ (name "python-hvpy")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "hvpy" version))
+ (sha256
+ (base32 "0bly1bgp0axxhzzf5imqsgmms41z8cxbjahxsibvb55dk94gwig6"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ; Requires HTTP(S) access to api.beta.helioviewer.org
+ (native-inputs
+ (list python-pytest
+ python-pytest-astropy
+ python-setuptools
+ python-wheel))
+ (propagated-inputs
+ (list python-pydantic-2
+ python-pydantic-settings
+ python-requests))
+ (home-page "https://helioviewer.org/")
+ (synopsis "Helioviewer Python API Wrapper")
+ (description "@code{hvpy} is a Python API wrapper around the formal
+@url{Helioviewer API, https://api.helioviewer.org/docs/v2/}.")
+ (license license:bsd-2)))
+
(define-public python-irispy-lmsal
(package
(name "python-irispy-lmsal")
@@ -4662,6 +4734,89 @@ Telescope,JWST} from a set of input dark current files and a set of flat field
files.")
(license license:bsd-3)))
+(define-public python-kanon
+ (package
+ (name "python-kanon")
+ (version "0.6.6")
+ (source
+ (origin
+ (method git-fetch) ; no release in PyPI
+ (uri (git-reference
+ (url "https://github.com/ALFA-project-erc/kanon")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0sg9yrsas5xmhbw6mhfyxsxh9i060af6v02whr9fqgv687fiyrhc"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list ;"--numprocesses" "auto"
+ ;; XXX: This tests failing a lot.
+ "-k" (string-append "not test_attribute_forwardin"
+ " and not test_declination"
+ " and not test_init_basedquantity"
+ " and not test_ptolemy_viz"
+ " and not test_ptolemy_viz"
+ " and not test_quantity"
+ " and not test_read"
+ " and not test_shifting"
+ " and not test_sun_true_position"
+ " and not test_sun_true_position")
+ "--ignore=kanon/tables/__init__.py")
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; See <https://github.com/ALFA-project-erc/kanon/issues/149>.
+ (delete 'sanity-check)
+ (add-after 'unpack 'relax-requirements
+ (lambda _
+ (substitute* "pyproject.toml"
+ (("version = \"0.0.0\"") (string-append "version = \"" #$version "\""))
+ ;; RuntimeError: Unable to detect version control
+ ;; system. Checked: Git. Not installed: Mercurial, Darcs,
+ ;; Subversion, Bazaar, Fossil, Pijul. See
+ ;; <https://github.com/blacklanternsecurity/bbot/issues/1257>.
+ (("enable = true") "enable = false"))))
+ (add-before 'check 'prepare-test-environment
+ (lambda _
+ (setenv "HOME" "/tmp"))))))
+ (native-inputs
+ (list git-minimal/pinned
+ python-poetry-core
+ python-poetry-dynamic-versioning
+ python-pytest-astropy
+ python-pytest-xdist
+ python-requests-mock))
+ (propagated-inputs
+ (list python-astropy-6
+ python-matplotlib
+ python-numpy
+ python-pandas
+ python-requests
+ python-scipy
+ ;; Optional
+ python-ipykernel
+ python-papermill))
+ (home-page "https://dishas.obspm.fr")
+ (synopsis "History of astronomy")
+ (description "This package provides a history of astronomy library.
+Current Features:
+@itemize
+@item define standard positional numeral systems with standard arithmetics
+(BasedReal)
+@item set your own precision contexts and algorithms on arithmetical
+operations (PrecisionContext)
+@item keep track of all operations
+@item build or import ancient astronomical tables
+@item perform arithmetical and statistical operations
+@item support for BasedReal values
+@item define new calendar types
+@item date conversions
+@item collection of mathematical models used for all kinds of geocentric
+astronomical tables
+@end itemize")
+ (license license:bsd-3)))
+
(define-public python-lenstronomy
(package
(name "python-lenstronomy")
@@ -5273,6 +5428,56 @@ position-frequency slice.")
(list python-setuptools
python-wheel)))))
+(define-public python-pyerfa
+ (package
+ (name "python-pyerfa")
+ (version "2.0.1.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pyerfa" version))
+ (sha256
+ (base32 "1h7nw61wqx9qsznnl8qandixr6c1n3f65hyqwzanav44wi7v5mhp"))
+ (modules '((guix build utils)))
+ (snippet
+ #~(begin
+ ;; Remove bundled submodule library.
+ (delete-file-recursively "liberfa")))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ ;; Disable only one failing test:
+ ;; AttributeError: __warningregistry__
+ ;; See https://github.com/liberfa/pyerfa/issues/126
+ #:test-flags #~(list "-k" "not test_errwarn_reporting")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'build 'use-system-liberfa
+ (lambda _
+ (setenv "PYERFA_USE_SYSTEM_LIBERFA" "1")))
+ (add-before 'check 'build-extensions
+ (lambda _
+ (invoke "python" "setup.py" "build_ext" "--inplace"))))))
+ (native-inputs
+ (list python-pytest-doctestplus
+ python-pytest
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
+ (inputs
+ (list erfa))
+ (propagated-inputs
+ (list python-numpy))
+ (home-page "https://github.com/liberfa/pyerfa")
+ (synopsis "Python bindings for ERFA")
+ (description
+ "PyERFA is the Python wrapper for the ERFA library (Essential
+Routines for Fundamental Astronomy), a C library containing key algorithms for
+astronomy, which is based on the SOFA library published by the International
+Astronomical Union (IAU). All C routines are wrapped as Numpy universal
+functions, so that they can be called with scalar or array inputs.")
+ (license license:bsd-3)))
+
(define-public python-pyhalo
(package
(name "python-pyhalo")
@@ -6186,34 +6391,6 @@ instruments.")
(license (list license:bsd-3 ; licenses/LICENSE.rst, same as python-astropy
license:expat)))) ; licenses/KOSMOS_LICENSE
-(define-public python-hvpy
- (package
- (name "python-hvpy")
- (version "1.1.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "hvpy" version))
- (sha256
- (base32 "0bly1bgp0axxhzzf5imqsgmms41z8cxbjahxsibvb55dk94gwig6"))))
- (build-system pyproject-build-system)
- (arguments
- (list #:tests? #f)) ; Requires HTTP(S) access to api.beta.helioviewer.org
- (native-inputs
- (list python-pytest
- python-pytest-astropy
- python-setuptools
- python-wheel))
- (propagated-inputs
- (list python-pydantic-2
- python-pydantic-settings
- python-requests))
- (home-page "https://helioviewer.org/")
- (synopsis "Helioviewer Python API Wrapper")
- (description "@code{hvpy} is a Python API wrapper around the formal
-@url{Helioviewer API, https://api.helioviewer.org/docs/v2/}.")
- (license license:bsd-2)))
-
(define-public python-jplephem
(package
(name "python-jplephem")
@@ -6248,89 +6425,6 @@ Astronomical Almanac to within 0.0005 arcseconds (half a @emph{mas} or
milliarcsecond).")
(license license:expat)))
-(define-public python-kanon
- (package
- (name "python-kanon")
- (version "0.6.6")
- (source
- (origin
- (method git-fetch) ; no release in PyPI
- (uri (git-reference
- (url "https://github.com/ALFA-project-erc/kanon")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0sg9yrsas5xmhbw6mhfyxsxh9i060af6v02whr9fqgv687fiyrhc"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- #:test-flags
- #~(list ;"--numprocesses" "auto"
- ;; XXX: This tests failing a lot.
- "-k" (string-append "not test_attribute_forwardin"
- " and not test_declination"
- " and not test_init_basedquantity"
- " and not test_ptolemy_viz"
- " and not test_ptolemy_viz"
- " and not test_quantity"
- " and not test_read"
- " and not test_shifting"
- " and not test_sun_true_position"
- " and not test_sun_true_position")
- "--ignore=kanon/tables/__init__.py")
- #:phases
- #~(modify-phases %standard-phases
- ;; See <https://github.com/ALFA-project-erc/kanon/issues/149>.
- (delete 'sanity-check)
- (add-after 'unpack 'relax-requirements
- (lambda _
- (substitute* "pyproject.toml"
- (("version = \"0.0.0\"") (string-append "version = \"" #$version "\""))
- ;; RuntimeError: Unable to detect version control
- ;; system. Checked: Git. Not installed: Mercurial, Darcs,
- ;; Subversion, Bazaar, Fossil, Pijul. See
- ;; <https://github.com/blacklanternsecurity/bbot/issues/1257>.
- (("enable = true") "enable = false"))))
- (add-before 'check 'prepare-test-environment
- (lambda _
- (setenv "HOME" "/tmp"))))))
- (native-inputs
- (list git-minimal/pinned
- python-poetry-core
- python-poetry-dynamic-versioning
- python-pytest-astropy
- python-pytest-xdist
- python-requests-mock))
- (propagated-inputs
- (list python-astropy-6
- python-matplotlib
- python-numpy
- python-pandas
- python-requests
- python-scipy
- ;; Optional
- python-ipykernel
- python-papermill))
- (home-page "https://dishas.obspm.fr")
- (synopsis "History of astronomy")
- (description "This package provides a history of astronomy library.
-Current Features:
-@itemize
-@item define standard positional numeral systems with standard arithmetics
-(BasedReal)
-@item set your own precision contexts and algorithms on arithmetical
-operations (PrecisionContext)
-@item keep track of all operations
-@item build or import ancient astronomical tables
-@item perform arithmetical and statistical operations
-@item support for BasedReal values
-@item define new calendar types
-@item date conversions
-@item collection of mathematical models used for all kinds of geocentric
-astronomical tables
-@end itemize")
- (license license:bsd-3)))
-
(define-public python-photutils
(package
(name "python-photutils")
@@ -7211,56 +7305,6 @@ science instruments plus the fine guidance sensor, including both direct
imaging, coronagraphic, and spectroscopic modes.")
(license license:bsd-3)))
-(define-public python-pyerfa
- (package
- (name "python-pyerfa")
- (version "2.0.1.5")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pyerfa" version))
- (sha256
- (base32 "1h7nw61wqx9qsznnl8qandixr6c1n3f65hyqwzanav44wi7v5mhp"))
- (modules '((guix build utils)))
- (snippet
- #~(begin
- ;; Remove bundled submodule library.
- (delete-file-recursively "liberfa")))))
- (build-system pyproject-build-system)
- (arguments
- (list
- ;; Disable only one failing test:
- ;; AttributeError: __warningregistry__
- ;; See https://github.com/liberfa/pyerfa/issues/126
- #:test-flags #~(list "-k" "not test_errwarn_reporting")
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'build 'use-system-liberfa
- (lambda _
- (setenv "PYERFA_USE_SYSTEM_LIBERFA" "1")))
- (add-before 'check 'build-extensions
- (lambda _
- (invoke "python" "setup.py" "build_ext" "--inplace"))))))
- (native-inputs
- (list python-pytest-doctestplus
- python-pytest
- python-setuptools
- python-setuptools-scm
- python-wheel))
- (inputs
- (list erfa))
- (propagated-inputs
- (list python-numpy))
- (home-page "https://github.com/liberfa/pyerfa")
- (synopsis "Python bindings for ERFA")
- (description
- "PyERFA is the Python wrapper for the ERFA library (Essential
-Routines for Fundamental Astronomy), a C library containing key algorithms for
-astronomy, which is based on the SOFA library published by the International
-Astronomical Union (IAU). All C routines are wrapped as Numpy universal
-functions, so that they can be called with scalar or array inputs.")
- (license license:bsd-3)))
-
(define-public python-pynbody
(package
(name "python-pynbody")
@@ -7628,50 +7672,6 @@ and use. Unlike FITS, the metadata is highly structured and is designed
up-front for extensibility.")
(license license:bsd-3)))
-(define-public python-asdf-transform-schemas
- (hidden-package
- (package
- (name "python-asdf-transform-schemas")
- (version "0.6.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "asdf_transform_schemas" version))
- (sha256
- (base32 "0clp3a2ldfhvsh5c7zqd7nr2bvv62a89aaf8p4a2vzgzjvhghl0g"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- ;; XXX: Check why all tests fail in this file.
- #:test-flags #~(list "--deselect=tests/test_invalid.py")))
- (native-inputs
- (list python-asdf-bootstrap
- python-pytest
- python-setuptools-next
- python-setuptools-scm
- python-wheel))
- (propagated-inputs
- (list python-asdf-standard))
- (home-page "https://github.com/asdf-format/asdf-transform-schemas")
- (synopsis "ASDF schemas for transforms")
- (description
- "This package provides ASDF schemas for validating transform tags.
-Users should not need to install this directly; instead, install an
-implementation package such as asdf-astropy.")
- (license license:bsd-3))))
-
-(define-public python-asdf-transform-schemas-bootstrap
- (hidden-package
- (package/inherit python-asdf-transform-schemas
- (arguments
- (list #:tests? #f
- #:phases #~(modify-phases %standard-phases
- (delete 'sanity-check))))
- (native-inputs
- (list python-setuptools-next
- python-wheel))
- (propagated-inputs '()))))
-
(define-public python-asdf-coordinates-schemas
(hidden-package
(package
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index c481b5a3de..622ce50020 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2850,6 +2850,11 @@ partial release of the General MIDI sound set.")
(string-append "--ldflags=-Wl,-rpath=" #$output "/lib"))
#:phases
'(modify-phases %standard-phases
+ (add-after 'unpack 'fix-includes
+ (lambda _
+ (substitute* "src/LV2/DSP/gx_common.h"
+ (("#include <cstdlib>" all)
+ (string-append all "\n#include <cstdint>")))))
(add-after 'unpack 'python3.11-compatibility
(lambda _
(substitute* "wscript"
@@ -6450,7 +6455,7 @@ as is the case with audio plugins.")
(define-public carla
(package
(name "carla")
- (version "2.4.1")
+ (version "2.5.10")
(source
(origin
(method git-fetch)
@@ -6460,7 +6465,7 @@ as is the case with audio plugins.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "01ngkmfcxyg1bb4qmfvlkkjbx4lx62akxqhizl8zmqnhfcy4p9bx"))))
+ (base32 "1p7nvydnmg5l457w3089bwj1a5z509ydlpwvf19k86i348a1lm6v"))))
(build-system gnu-build-system)
(arguments
(list #:tests? #f ; no "check" target
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index ea8cf4bb99..f7c3768145 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -39,7 +39,7 @@
(version "8.2.8")
(source (origin
(method url-fetch)
- (uri (list (string-append "https://github.com/ivmai/bdwgc/releases"
+ (uri (list (string-append "https://github.com/bdwgc/bdwgc/releases"
"/download/v" version
"/gc-" version ".tar.gz")
(string-append "https://www.hboehm.info/gc/gc_source"
@@ -73,7 +73,7 @@
((target-ppc64le?)
(list #:make-flags
;; This is a known workaround upstream.
- ;; https://github.com/ivmai/bdwgc/issues/479
+ ;; https://github.com/bdwgc/bdwgc/issues/479
#~(list "CFLAGS_EXTRA=-DNO_SOFT_VDB")))
((target-ppc32?)
(list #:make-flags
@@ -129,7 +129,7 @@ C or C++ programs, though that is not its primary goal.")
(version "7.6.12")
(source (origin
(method url-fetch)
- (uri (string-append "https://github.com/ivmai/bdwgc/releases"
+ (uri (string-append "https://github.com/bdwgc/bdwgc/releases"
"/download/v" version "/gc-" version ".tar.gz"))
(sha256
(base32
@@ -153,7 +153,7 @@ C or C++ programs, though that is not its primary goal.")
(source (origin
(method url-fetch)
(uri (string-append
- "https://github.com/ivmai/libatomic_ops/releases/download/v"
+ "https://github.com/bdwgc/libatomic_ops/releases/download/v"
version "/libatomic_ops-" version ".tar.gz"))
(sha256
(base32
@@ -182,7 +182,7 @@ C or C++ programs, though that is not its primary goal.")
memory update operations on a number of architectures. These might allow you to
write code that does more interesting things in signal handlers, write
lock-free code, experiment with thread programming paradigms, etc.")
- (home-page "https://github.com/ivmai/libatomic_ops/")
+ (home-page "https://github.com/bdwgc/libatomic_ops/")
;; Some source files are X11-style, others are GPLv2+.
(license gpl2+)))
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index e2af4d567b..506578fb11 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5991,16 +5991,6 @@ coordinates) using the Nominatim service. geocode-glib caches requests for
faster results and to avoid unnecessary server load.")
(license license:lgpl2.0+)))
-(define-public geocode-glib-with-libsoup2
- (package
- (inherit geocode-glib)
- (name "geocode-glib-with-libsoup2")
- (arguments (substitute-keyword-arguments (package-arguments geocode-glib)
- ((#:configure-flags flags ''())
- #~(delete "-Dsoup2=false" #$flags))))
- (inputs (modify-inputs (package-inputs geocode-glib)
- (replace "libsoup" libsoup-minimal-2)))))
-
(define-public upower
(package
(name "upower")
@@ -8518,30 +8508,6 @@ contacts, tasks, and calendar information. It was originally developed for
Evolution (hence the name), but is now used by other packages as well.")
(license license:lgpl2.0)))
-;;; This version can be used for projects with dependencies stuck on libsoup2.
-(define-public evolution-data-server-3.44
- (package
- (inherit evolution-data-server)
- (name "evolution-data-server")
- (version "3.44.4")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "mirror://gnome/sources/" name "/"
- (version-major+minor version) "/"
- name "-" version ".tar.xz"))
- (sha256
- (base32 "1sxjrjr31wqbp9g4pf6dwj8rc4mi7c5fbfd489ha92ym7246bin0"))))
- (inputs
- (modify-inputs (package-inputs evolution-data-server)
- (replace "gnome-online-accounts" gnome-online-accounts-3.44)
- (replace "libgweather4" libgweather)
- (replace "webkitgtk-for-gtk3" webkitgtk-with-libsoup2)))
- (propagated-inputs
- (modify-inputs (package-propagated-inputs evolution-data-server)
- (delete "gtk")
- (replace "libsoup" libsoup-minimal-2)))))
-
(define-public caribou
(package
(name "caribou")
@@ -11299,14 +11265,6 @@ compiled.")
(home-page "https://wiki.gnome.org/Projects/Folks")
(license license:lgpl2.1+)))
-(define-public folks-with-libsoup2
- (package
- (inherit folks)
- (name "folks-with-libsoup2")
- (inputs
- (modify-inputs (package-inputs folks)
- (replace "evolution-data-server" evolution-data-server-3.44)))))
-
(define-public gfbgraph
(package
(name "gfbgraph")
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index b34570a810..7ace87bc11 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -7593,6 +7593,28 @@ termios API is used. GNU Guile doesn't have an interface for that built in.
This module implements this interface by use of Guile's dynamic FFI.")
(license license:bsd-2)))
+(define-public guile-bstructs
+ (package
+ (name "guile-bstructs")
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://files.dthompson.us/releases"
+ "/guile-bstructs/guile-bstructs-" version ".tar.gz"))
+ (sha256
+ (base32 "0f847aiyzhrlvd2jmckyqrkrvi7i9mg8rmyhbh7fs1vzykcf67wb"))))
+ (build-system gnu-build-system)
+ (native-inputs (list autoconf automake pkg-config texinfo))
+ (inputs (list guile-3.0))
+ (synopsis "Efficient binary structures for Guile")
+ (description
+ "Guile-bstructs provides an efficient implementation of
+low-level binary structures for Guile Scheme inspired by Chez Scheme's
+ftypes.")
+ (home-page "https://dthompson.us/projects/guile-bstructs.html")
+ (license license:asl2.0)))
+
(define-public guile-goblins
(package
(name "guile-goblins")
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 8a32f2a75a..df35fc8229 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -2905,7 +2905,7 @@ validating international phone numbers.")
(define-public chatty
(package
(name "chatty")
- (version "0.6.7")
+ (version "0.7.3")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -2920,7 +2920,7 @@ validating international phone numbers.")
(file-name (git-file-name name version))
(sha256
(base32
- "11q07vjrrjf3k00kk41vm79brpq0qigz7l328br3g0li979kz32v"))))
+ "0d6z0mgl1xx384ph5lw3p5rpg3w1ninzyxjjjas3z8i7fyk47inf"))))
(build-system meson-build-system)
(arguments
'(#:glib-or-gtk? #t
@@ -2947,7 +2947,7 @@ validating international phone numbers.")
xorg-server-for-tests))
(inputs
(list feedbackd
- folks-with-libsoup2
+ folks
gnome-desktop
gsettings-desktop-schemas
gspell
@@ -2962,7 +2962,7 @@ validating international phone numbers.")
purple-mm-sms
sqlite))
(propagated-inputs
- (list adwaita-icon-theme evolution-data-server-3.44))
+ (list adwaita-icon-theme evolution-data-server))
(synopsis "Mobile client for XMPP and SMS messaging")
(description "Chatty is a chat program for XMPP and SMS. It works on mobile
as well as on desktop platforms. It's based on libpurple and ModemManager.")
diff --git a/gnu/packages/pantheon.scm b/gnu/packages/pantheon.scm
index 2e4fa08d5a..b17197a858 100644
--- a/gnu/packages/pantheon.scm
+++ b/gnu/packages/pantheon.scm
@@ -173,10 +173,10 @@ desktop.")
(symlink bin link)))))))
(inputs
(list clutter
- evolution-data-server-3.44
- folks-with-libsoup2
+ evolution-data-server
+ folks
geoclue
- geocode-glib-with-libsoup2
+ geocode-glib
granite-6
glib
gtk
diff --git a/gnu/packages/skribilo.scm b/gnu/packages/skribilo.scm
index 32132371a5..be72a39d33 100644
--- a/gnu/packages/skribilo.scm
+++ b/gnu/packages/skribilo.scm
@@ -78,7 +78,6 @@
(inputs (list guile-3.0
imagemagick
ghostscript ; for 'convert'
- ploticus
lout))
;; The 'skribilo' command needs them, and for people using Skribilo as a
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index a9b5f732ab..947fb6f800 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -6345,7 +6345,7 @@ developed as part of the NetSurf project.")
"0750q884ax8wygl64wq03zdjj8h838ch3f8jdfkv4gz809zj4my3"))))
(build-system gnu-build-system)
(native-inputs
- (list netsurf-buildsystem pkg-config gperf-3.0))
+ (list netsurf-buildsystem pkg-config gperf))
(inputs
(list libwapcaplet))
(propagated-inputs
diff --git a/guix/lint.scm b/guix/lint.scm
index f09fb24347..2033aa36f1 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -8,7 +8,7 @@
;;; Copyright © 2017 Alex Kost <alezost@gmail.com>
;;; Copyright © 2017, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017, 2018, 2020, 2024, 2025 Efraim Flashner <efraim@flashner.co.il>
-;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2018, 2019, 2025 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2020 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2020 Timothy Sample <samplet@ngyro.com>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
@@ -640,7 +640,7 @@ of a package, and INPUT-NAMES, a list of package specifications such as
(map (lambda (input)
(make-warning
package
- (G_ "'~a' should probably switched for its minimal variant")
+ (G_ "'~a' should probably be switched for its minimal variant")
(list input)
#:field 'inputs))
(package-input-intersection (package-direct-inputs package)