summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-26 10:50:03 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-06-26 10:50:45 +0100
commit178d3e1f88b773f24046508bfb755dcfb8d19ae6 (patch)
treefa0cd056fe06be4204d25a459c24c3b599b7a9b9 /gnu
parent5842d6cf9b87add4cff12cbed7cba96358b10925 (diff)
gnu: gr-satellites: Update to 5.9.0.
* gnu/packages/radio.scm (gr-satellites): Update to 5.9.0. [arguments] <tests?>: Disable for now. [inputs]: Remove boost-1.83 and spdlog-1.13; add boost-1.88 and spdlog. [native-inputs]: Remove pybind11-2 and python-six; add pybind11. Fixes: guix/guix#9529
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/radio.scm18
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/radio.scm b/gnu/packages/radio.scm
index 9df5d81a5fb..96177e89dd2 100644
--- a/gnu/packages/radio.scm
+++ b/gnu/packages/radio.scm
@@ -1358,19 +1358,22 @@ to the fix block above.
1358(define-public gr-satellites 1358(define-public gr-satellites
1359 (package 1359 (package
1360 (name "gr-satellites") 1360 (name "gr-satellites")
1361 (version "4.6.0") 1361 (version "5.9.0")
1362 (source 1362 (source
1363 (origin 1363 (origin
1364 (method git-fetch) 1364 (method git-fetch)
1365 (uri (git-reference 1365 (uri (git-reference
1366 (url "https://github.com/daniestevez/gr-satellites") 1366 (url "https://github.com/daniestevez/gr-satellites")
1367 (commit (string-append "v" version)))) 1367 (commit (string-append "v" version))))
1368 (file-name (git-file-name name version)) 1368 (file-name (git-file-name name version))
1369 (sha256 1369 (sha256
1370 (base32 "0mcrxwb27n2v8v8vmcmmm1pbmy3c02a22mz2wnpdsfb2163qpchw")))) 1370 (base32 "0fjc6fdcfh4j0asn7g1qph3g5lz0mswhv284ckl9d0p9dg91i489"))))
1371 (build-system cmake-build-system) 1371 (build-system cmake-build-system)
1372 (arguments 1372 (arguments
1373 (list 1373 (list
1374 ;; TODO: CMake struggles to find Python module: ModuleNotFoundError: No
1375 ;; module named 'satellites'.
1376 #:tests? #f
1374 #:modules `((guix build cmake-build-system) 1377 #:modules `((guix build cmake-build-system)
1375 ((guix build pyproject-build-system) #:prefix py:) 1378 ((guix build pyproject-build-system) #:prefix py:)
1376 (guix build utils)) 1379 (guix build utils))
@@ -1384,9 +1387,10 @@ to the fix block above.
1384 (add-after 'install 'wrap-python 1387 (add-after 'install 'wrap-python
1385 (assoc-ref py:%standard-phases 'wrap))))) 1388 (assoc-ref py:%standard-phases 'wrap)))))
1386 (native-inputs 1389 (native-inputs
1387 (list pkg-config pybind11-2 python-six)) 1390 (list pkg-config
1391 pybind11))
1388 (inputs 1392 (inputs
1389 (list boost-1.83 1393 (list boost-1.88
1390 gmp 1394 gmp
1391 gnuradio 1395 gnuradio
1392 log4cpp 1396 log4cpp
@@ -1396,7 +1400,7 @@ to the fix block above.
1396 python-pyaml 1400 python-pyaml
1397 python-pyzmq 1401 python-pyzmq
1398 python-requests 1402 python-requests
1399 spdlog-1.13 1403 spdlog
1400 volk)) 1404 volk))
1401 (synopsis "GNU Radio decoders for several Amateur satellites") 1405 (synopsis "GNU Radio decoders for several Amateur satellites")
1402 (description 1406 (description