all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46072] [PATCH] New variable - sextractor
@ 2021-01-24 11:24 Sharlatan Hellseher
  2021-01-25 17:06 ` bug#46072: " Guillaume Le Vaillant
  2021-01-25 17:09 ` [bug#46072] " Guillaume Le Vaillant
  0 siblings, 2 replies; 3+ messages in thread
From: Sharlatan Hellseher @ 2021-01-24 11:24 UTC (permalink / raw)
  To: 46072

[-- Attachment #1: Type: text/plain, Size: 542 bytes --]

Hi Guix team!

This patch is one of the planed set of software for astronomy I'd like
to pack for Guix
https://github.com/Hellseher/guix-patches/blob/main/astronomy.org

Regards

--
… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

[-- Attachment #2: 0001-Add-new-sextractor.patch --]
[-- Type: text/x-patch, Size: 2616 bytes --]

From 067fecb0a5b64d1dd17dcb0c4ef78687fe030645 Mon Sep 17 00:00:00 2001
From: Sharlatan Hellseher <sharlatanus@gmail.com>
Date: Sun, 24 Jan 2021 11:16:36 +0000
Subject: [PATCH] Add new sextractor

* gnu/packages/astronomy.scm (sextractor): New variable
---
 gnu/packages/astronomy.scm | 48 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 9485fe600f..65f42df5df 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -156,6 +156,54 @@ header.")
 programs for the manipulation and analysis of astronomical data.")
     (license license:gpl3+)))
 
+(define-public sextractor
+  (package
+    (name "sextractor")
+    (version "2.25.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/astromatic/sextractor")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0q69n3nyal57h3ik2xirwzrxzljrwy9ivwraxzv9566vi3n4z5mw"))))
+    (build-system gnu-build-system)
+    ;; NOTE: (Sharlatan-20210124T103117+0000): Building with `atlas' is failing
+    ;; due to missing shared library which required on configure phase. Switch
+    ;; build to use `openblas' instead. It requires FFTW with single precision
+    ;; `fftwf'.
+    (arguments
+     `(#:configure-flags
+       (list
+        "--enable-openblas"
+        (string-append
+         "--with-openblas-libdir=" (assoc-ref %build-inputs "openblas") "/lib")
+        (string-append
+         "--with-openblas-incdir=" (assoc-ref %build-inputs "openblas") "/include")
+        (string-append
+         "--with-fftw-libdir=" (assoc-ref %build-inputs "fftw") "/lib")
+        (string-append
+         "--with-fftw-incdir=" (assoc-ref %build-inputs "fftw") "/include"))))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)))
+    (inputs
+     `(("openblas" ,openblas)
+       ("fftw" ,fftwf)))
+    (home-page "http://www.astromatic.net/software/sextractor")
+    (synopsis "Extract catalogs of sources from astronomical images")
+    (description
+     "SExtractor is a program that builds a catalogue of objects from an
+astronomical image.  Although it is particularly oriented towards reduction of
+large scale galaxy-survey data, it can perform reasonably well on moderately
+crowded star fields.
+
+This package produces binaries: ldactoasc, sex")
+ (license license:gpl3)))
+
 (define-public stellarium
   (package
     (name "stellarium")
-- 
2.30.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#46072: [PATCH] New variable - sextractor
  2021-01-24 11:24 [bug#46072] [PATCH] New variable - sextractor Sharlatan Hellseher
@ 2021-01-25 17:06 ` Guillaume Le Vaillant
  2021-01-25 17:09 ` [bug#46072] " Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2021-01-25 17:06 UTC (permalink / raw)
  To: Sharlatan Hellseher; +Cc: 46072-done


Patch pushed as b2d6f127c24787df00bffd918fa879842f933817.
Thanks.




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#46072] [PATCH] New variable - sextractor
  2021-01-24 11:24 [bug#46072] [PATCH] New variable - sextractor Sharlatan Hellseher
  2021-01-25 17:06 ` bug#46072: " Guillaume Le Vaillant
@ 2021-01-25 17:09 ` Guillaume Le Vaillant
  1 sibling, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2021-01-25 17:09 UTC (permalink / raw)
  To: Sharlatan Hellseher; +Cc: 46072-done

[-- Attachment #1: Type: text/plain, Size: 67 bytes --]


Patch pushed as b2d6f127c24787df00bffd918fa879842f933817.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-01-25 17:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-24 11:24 [bug#46072] [PATCH] New variable - sextractor Sharlatan Hellseher
2021-01-25 17:06 ` bug#46072: " Guillaume Le Vaillant
2021-01-25 17:09 ` [bug#46072] " Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.