Archived
1
0
Fork 0

gnu: libpasastro: Update to 1.4.1.

* gnu/packages/astronomy.scm (libpasastro): Update to 1.4.1.

Change-Id: I8ad8e9c23c08897f84cbf0b35c1197320bbdeb86
Signed-off-by: Eric Bavier <bavier@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2023-11-17 12:15:52 +00:00 committed by Eric Bavier
parent d3a93691ac
commit 497209f1f4
No known key found for this signature in database
GPG key ID: BC45CA67E2F8D007

View file

@ -2974,44 +2974,40 @@ low quality ones")
(license license:gpl3+))) (license license:gpl3+)))
(define-public libpasastro (define-public libpasastro
;; NOTE: (Sharlatan-20210122T215921+0000): the version tag has a build (package
;; error on spice which is resolved with the latest commit. (name "libpasastro")
(let ((commit "e3c218d1502a18cae858c83a9a8812ab197fcb60") (version "1.4.1")
(revision "1")) (source
(package (origin
(name "libpasastro") (method git-fetch)
(version (git-version "1.4.0" revision commit)) (uri (git-reference
(source (origin (url "https://github.com/pchev/libpasastro")
(method git-fetch) (commit (string-append "v" version))))
(uri (git-reference (file-name (git-file-name name version))
(url "https://github.com/pchev/libpasastro") (sha256
(commit commit))) (base32 "1h92p9ph3zi4w8krny1azd9wgwna2nf07ims983jcky1chkfm0is"))))
(file-name (git-file-name name version)) (build-system gnu-build-system)
(sha256 (arguments
(base32 `(#:tests? #f
"0asp2sn34nds5va2ghppwc41vb6j3d1mf049j949rgrll817kx47")))) #:make-flags
(build-system gnu-build-system) (list
(arguments ,(match (or (%current-target-system) (%current-system))
`(#:tests? #f ((or "aarch64-linux" "armhf-linux" "i686-linux" "x86_64-linux")
#:make-flags "OS_TARGET=linux")
(list (_ #f))
,(match (or (%current-target-system) (%current-system)) ,(match (or (%current-target-system) (%current-system))
((or "aarch64-linux" "armhf-linux" "i686-linux" "x86_64-linux") ("i686-linux" "CPU_TARGET=i386")
"OS_TARGET=linux") ("x86_64-linux" "CPU_TARGET=x86_64")
(_ #f)) ((or "armhf-linux" "aarch64-linux") "CPU_TARGET=armv7l")
,(match (or (%current-target-system) (%current-system)) (_ #f))
("i686-linux" "CPU_TARGET=i386") (string-append "PREFIX=" (assoc-ref %outputs "out")))
("x86_64-linux" "CPU_TARGET=x86_64") #:phases
((or "armhf-linux" "aarch64-linux") "CPU_TARGET=armv7l") (modify-phases %standard-phases
(_ #f)) (delete 'configure))))
(string-append "PREFIX=" (assoc-ref %outputs "out"))) (home-page "https://github.com/pchev/libpasastro")
#:phases (synopsis "Interface to astronomy library for use from Pascal program")
(modify-phases %standard-phases (description
(delete 'configure)))) "This package provides shared libraries to interface Pascal program with
(home-page "https://github.com/pchev/libpasastro")
(synopsis "Interface to astronomy library for use from Pascal program")
(description
"This package provides shared libraries to interface Pascal program with
standard astronomy libraries: standard astronomy libraries:
@itemize @itemize
@ -3020,7 +3016,7 @@ standard astronomy libraries:
@item @code{libpaswcs.so}: Interface with libwcs to work with FITS WCS. @item @code{libpaswcs.so}: Interface with libwcs to work with FITS WCS.
@item @code{libpasspice.so}: To work with NAIF/SPICE kernel. @item @code{libpasspice.so}: To work with NAIF/SPICE kernel.
@end itemize\n") @end itemize\n")
(license license:gpl2+)))) (license license:gpl2+)))
(define-public libxisf (define-public libxisf
(package (package