mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-07-08 01:34:04 +02:00
Compare commits
43 Commits
master
...
astro-update
| Author | SHA1 | Date | |
|---|---|---|---|
| 613d3f87f1 | |||
| d53a54e788 | |||
| 3b04339e6d | |||
| d3c47268d2 | |||
| 2a60c9e0c3 | |||
| 973477b4d5 | |||
| 12b3853dee | |||
| 616b4fdf7b | |||
| 0e9c99ac1c | |||
| 6f10f2fc87 | |||
| 37a5698bd5 | |||
| 22268a20f7 | |||
| 5c28644f8a | |||
| ff481da2a8 | |||
| 4588769175 | |||
| 9009073fe3 | |||
| c156eeae47 | |||
| 70a36c5155 | |||
| d1290aa868 | |||
| c78d586db9 | |||
| 6938a05a31 | |||
| 9907047fdf | |||
| 7b36fe45cf | |||
| 8e0cdc3b45 | |||
| 29886ef79f | |||
| b3f0be8a16 | |||
| 89bdca6104 | |||
| bfa07468d1 | |||
| 658040170f | |||
| c96cbb6fef | |||
| 2e4a33c165 | |||
| 26b31bf02b | |||
| 25ba370441 | |||
| ca41670014 | |||
| 36c31393c1 | |||
| d6484691a9 | |||
| e3ac3b6ad4 | |||
| 1b87adf114 | |||
| 3b34ace33d | |||
| a86e0c0d60 | |||
| d444012ea8 | |||
| ff3e2447ee | |||
| 73083c9c51 |
@@ -1101,7 +1101,6 @@ dist_patch_DATA = \
|
||||
%D%/packages/patches/catdoc-CVE-2017-11110.patch \
|
||||
%D%/packages/patches/chez-irregex-import-cond-expand.patch \
|
||||
%D%/packages/patches/chez-scheme-bin-sh.patch \
|
||||
%D%/packages/patches/cianna-remove-error-for-missing-cuda.patch \
|
||||
%D%/packages/patches/circos-remove-findbin.patch \
|
||||
%D%/packages/patches/cdparanoia-fpic.patch \
|
||||
%D%/packages/patches/cdrkit-libre-cross-compile.patch \
|
||||
|
||||
+324
-156
File diff suppressed because it is too large
Load Diff
+15
-4
@@ -1248,21 +1248,32 @@ readily with other Python GIS packages such as pyproj, Rtree, and Shapely.")
|
||||
(define-public python-geopack
|
||||
(package
|
||||
(name "python-geopack")
|
||||
(version "1.0.12")
|
||||
;; See: <https://github.com/tsssss/geopack/issues/26>.
|
||||
(properties '((commit . "8c5f0e0f6752604c5a6f57bac752059e0f85edbb")
|
||||
(revision . "0")))
|
||||
(version (git-version "1.0.13"
|
||||
(assoc-ref properties 'revision)
|
||||
(assoc-ref properties 'commit)))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tsssss/geopack")
|
||||
(commit (string-append "v" version))))
|
||||
(commit (assoc-ref properties 'commit))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0ap5j4359xxjkbz06y097yq5d37sxcwlnlsfwrv6dvza7ydmgcgg"))))
|
||||
(base32 "0ywqg9j09mhpfb9dcjmnlvh26s0v4lvzfwdmlivgx9ypamafa117"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; XXX Reported upstream <https://github.com/tsssss/geopack/issues/21>.
|
||||
#:tests? #f))
|
||||
#:tests? #f
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'set-version
|
||||
(lambda _
|
||||
(substitute* "setup.py"
|
||||
(("1.0.12") "1.0.13")))))))
|
||||
(native-inputs
|
||||
(list python-setuptools))
|
||||
(propagated-inputs
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
From 5eed2d2ca7c13c08ca7eb92fc4a78c30ca4b6b3d Mon Sep 17 00:00:00 2001
|
||||
From: Hellseher <sharlatanus@gmail.com>
|
||||
Date: Sat, 18 Apr 2026 08:26:29 +0000
|
||||
Subject: [PATCH] Remove CUDA error handling from network.c
|
||||
|
||||
Removed error handling for CUDA compilation check.
|
||||
|
||||
Fixes: https://github.com/Deyht/CIANNA/issues/4
|
||||
---
|
||||
src/network.c | 9 ---------
|
||||
1 file changed, 9 deletions(-)
|
||||
|
||||
diff --git a/src/network.c b/src/network.c
|
||||
index d454f64..5a9497c 100644
|
||||
--- a/src/network.c
|
||||
+++ b/src/network.c
|
||||
@@ -155,15 +155,6 @@ CIANNA V-1.0.1.2 stable build (04/2026), by D.Cornu\n\
|
||||
init_cuda(networks[network_number]);
|
||||
#endif
|
||||
|
||||
- #ifndef CUDA
|
||||
- if(comp_int == C_CUDA)
|
||||
- {
|
||||
- printf("\n ERROR: compute method set to CUDA while CIANNA was not compiled for it.\n");
|
||||
- printf(" Install Nvidia CUDA and recompile CIANNA with the appropriate option.\n\n");
|
||||
- exit(EXIT_FAILURE);
|
||||
- }
|
||||
- #endif
|
||||
-
|
||||
#ifndef BLAS
|
||||
if(comp_int == C_BLAS)
|
||||
{
|
||||
@@ -3392,6 +3392,34 @@ files.")
|
||||
code asynchronously.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-requests-unixsocket
|
||||
(package
|
||||
(name "python-requests-unixsocket")
|
||||
(version "0.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/msabramo/requests-unixsocket")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1f0pi31xqzm3cdag4s4gpdj36x169jwc8ibqvcwqz6h9c0pklf3n"))))
|
||||
(build-system pyproject-build-system)
|
||||
(native-inputs
|
||||
(list python-pytest
|
||||
python-setuptools
|
||||
python-setuptools-scm
|
||||
python-waitress))
|
||||
(propagated-inputs
|
||||
(list python-requests))
|
||||
(home-page "https://github.com/msabramo/requests-unixsocket")
|
||||
(synopsis "Use requests to talk HTTP via a UNIX domain socket")
|
||||
(description
|
||||
"This package provides an extension to @code{requests} which let it talk
|
||||
HTTP via a UNIX domain socket.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-s3path
|
||||
(package
|
||||
(name "python-s3path")
|
||||
|
||||
Reference in New Issue
Block a user