From 6216778ea41914378aa00d5e4a2c3ae3437d4128 Mon Sep 17 00:00:00 2001 From: Olivier Farges <olivier.farges@univ-lorraine.fr> Date: Sun, 2 Mar 2025 00:12:15 +0100 Subject: [PATCH] hash 32 update --- edix/packages/random123.scm | 1 - edix/packages/star-enclosures-2d.scm | 1 - edix/packages/star-enclosures-3d.scm | 21 ++++++++------------- 3 files changed, 8 insertions(+), 15 deletions(-) diff --git a/edix/packages/random123.scm b/edix/packages/random123.scm index 56ad909..07e81a7 100644 --- a/edix/packages/random123.scm +++ b/edix/packages/random123.scm @@ -43,4 +43,3 @@ (synopsis "Bibliothèque de générateurs de nombres pseudo-aléatoires") (description "Random123 est une bibliothèque pour des générateurs de nombres pseudo-aléatoires (PRNG) rapides et parallélisables.") (license bsd-3))) -random123 diff --git a/edix/packages/star-enclosures-2d.scm b/edix/packages/star-enclosures-2d.scm index 1a1ec04..1f80709 100644 --- a/edix/packages/star-enclosures-2d.scm +++ b/edix/packages/star-enclosures-2d.scm @@ -16,7 +16,6 @@ #:use-module (edix packages star-2d) #:use-module (edix packages rsys)) - (define-public star-enclosures-2d (package (name "star-enclosures-2d") diff --git a/edix/packages/star-enclosures-3d.scm b/edix/packages/star-enclosures-3d.scm index 8f2bd6d..14d5282 100644 --- a/edix/packages/star-enclosures-3d.scm +++ b/edix/packages/star-enclosures-3d.scm @@ -17,7 +17,6 @@ #:use-module (edix packages rsys)) - (define-public star-enclosures-3d (package (name "star-enclosures-3d") @@ -28,27 +27,22 @@ (url "https://gitlab.com/meso-star/star-enclosures-3d.git") (commit "0.7.2"))) (sha256 - (base32 "1jh0q1lmxc7lp820dzip5i18pr2h1ygsly5iss10593y95d58sj6")))) + (base32 "1lf28q934yrr59dryrp0qgidi00y4fickdc0qxg7w53f4n45f0b0")))) (build-system gnu-build-system) (native-inputs - (list pkg-config autoconf automake libtool rsys star-3d)) + (list pkg-config autoconf automake libtool)) (inputs (list gcc gfortran bash - gnu-make + gnu-make rsys star-3d )) (arguments `(#:make-flags (list (string-append "CC=gcc" )) #:phases (modify-phases %standard-phases (delete 'configure) - (delete 'check) -;(add-before 'build 'set-pkg-config-path -; (lambda* (#:key inputs #:allow-other-keys) -; (let ((pkgconfig-path (string-append (assoc-ref inputs "star-3d") "/lib/pkgconfig"))) -; (setenv "PKG_CONFIG_PATH" (string-append pkgconfig-path ":" (or (getenv "PKG_CONFIG_PATH") ""))) -; (format #t "PKG_CONFIG_PATH set to: ~a~%" (getenv "PKG_CONFIG_PATH"))))) + (delete 'check) (replace 'build (lambda* (#:key make-flags #:allow-other-keys) (invoke "make" (string-join make-flags " ")))) @@ -56,7 +50,8 @@ (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (invoke "make" "install" (string-append "PREFIX=" out)))))))) - (home-page "https://meso-star.com/star-vx") ;; Remplacez avec le bon lien - (synopsis "Bibliothèque Star-VX") - (description "Star-VX est une bibliothèque de traitement de structures de données arborescentes.") + + (home-page "https://meso-star.com/star-enclosures-3d") ;; Remplacez avec le bon lien + (synopsis "Bibliothèque Star-enclosures-3d") + (description "Star-enclosures-3d") (license (list gpl3+)))) -- GitLab