[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64287] [PATCH 2/9] gnu: swarp: Update to 2.41.2, fix build.
From: |
Sharlatan Hellseher |
Subject: |
[bug#64287] [PATCH 2/9] gnu: swarp: Update to 2.41.2, fix build. |
Date: |
Sun, 25 Jun 2023 22:28:14 +0100 |
* gnu/packages/astronomy.scm (swarp): Update to 2.41.2, fix build.
[source]: Swap to 'git-fetch.
[native-inputs]: Add automake, autoconf, libtool, pkg-config.
[inputs]: Add cfitsio.
---
gnu/packages/astronomy.scm | 23 ++++++++++++++++++-----
1 file changed, 18 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index a7faa2c425..17bc4ed7d7 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1073,15 +1073,28 @@ (define-public stuff
(define-public swarp
(package
(name "swarp")
- (version "2.38.0")
+ (version "2.41.2")
(source
(origin
- (method url-fetch)
- (uri (string-append "https://www.astromatic.net/download/swarp/"
- "swarp-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/astromatic/swarp")
+ (commit (string-append "v" version))))
(sha256
- (base32 "1i670waqp54vin1cn08mqckcggm9zqd69nk7yya2vvqpdizn6jpm"))))
+ (base32 "1ycdk5h77mflw3hnmkczj1m2603aks9vq6555f3vc5vj1shx2d4m"))
+ (file-name (git-file-name name version))))
(build-system gnu-build-system)
+ (arguments
+ (list
+ #:configure-flags
+ #~(list
+ ;; Address this link error:
+ ;; ld: ... multiple definition of ... first defined here
+ "CFLAGS=-O2 -g -fcommon")))
+ (native-inputs
+ (list automake autoconf libtool pkg-config))
+ (inputs
+ (list cfitsio))
(home-page "https://www.astromatic.net/software/swarp")
(synopsis "FITS image resampling and co-addition")
(description
--
2.40.1
- [bug#64287] [PATCH 0/9]: gnu: Monthly astronomy packages update II., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 4/9] gnu: missfits: Fix build., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 6/9] gnu: stuff: Update to 1.26.0-0.9008dc0, fix build., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 9/9] gnu: celestia-gtk: Fix build., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 3/9] gnu: eye: Fix build., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 5/9] gnu: skymaker: Update to 3.10.5-0.1a69c47, fix build., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 8/9] gnu: celestia: Update to 1.6.3., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 1/9] gnu: weightwatcher: Fix build., Sharlatan Hellseher, 2023/06/25
- [bug#64287] [PATCH 2/9] gnu: swarp: Update to 2.41.2, fix build.,
Sharlatan Hellseher <=
- [bug#64287] [PATCH 7/9] gnu: xplanet: Use G-expressions., Sharlatan Hellseher, 2023/06/25