all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Guillaume Le Vaillant <glv@posteo.net>
To: 48217@debbugs.gnu.org
Cc: Guillaume Le Vaillant <glv@posteo.net>
Subject: [bug#48217] [PATCH v2 6/9] gnu: Add sgp4.
Date: Wed,  5 May 2021 08:48:21 +0000	[thread overview]
Message-ID: <20210505084824.22275-6-glv@posteo.net> (raw)
In-Reply-To: <20210505084824.22275-1-glv@posteo.net>

* gnu/packages/astronomy.scm (sgp4): New variable.
---
 gnu/packages/astronomy.scm | 35 ++++++++++++++++++++++++++++++++++-
 1 file changed, 34 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index c7d27a58d3..6d1c4ddfe6 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4,7 +4,7 @@
 ;;; Copyright © 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2019 by Amar Singh <nly@disroot.org>
 ;;; Copyright © 2020 R Veera Kumar <vkor@vkten.in>
-;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2020, 2021 Guillaume Le Vaillant <glv@posteo.net>
 ;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -792,6 +792,39 @@ provide you with detailed information about each pass.")
     (home-page "http://gpredict.oz9aec.net/index.php")
     (license license:gpl2+)))
 
+(define-public sgp4
+  ;; No tagged releases, use commit directly.
+  (let ((commit "ca9d4d97af4ee62461de6f13e0c85d1dc6000040")
+        (revision "1"))
+    (package
+      (name "sgp4")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/dnwrnr/sgp4")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "1xwfa6papmd2qz5w0hwzvijmzvp9np8dlw3q3qz4bmsippzjv8p7"))))
+      (build-system cmake-build-system)
+      (arguments
+       `(#:phases
+         (modify-phases %standard-phases
+           (replace 'check
+             (lambda _
+               ;; Tests fails, probably because of a few "(e <= -0.001)" errors.
+               ;; Or maybe this is not the right way to run the tests?
+               ;; (invoke "runtest/runtest")
+               #t)))))
+      (home-page "https://github.com/dnwrnr/sgp4")
+      (synopsis "Simplified perturbations models library")
+      (description
+       "This is a library implementing the simplified perturbations model.
+It can be used to calculate the trajectory of satellites.")
+      (license license:asl2.0))))
+
 (define-public indi
   (package
     (name "indi")
-- 
2.31.1





  parent reply	other threads:[~2021-05-05  8:50 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-04  8:46 [bug#48217] [PATCH 0/9] Add sdrangel Guillaume Le Vaillant
2021-05-04  8:56 ` [bug#48217] [PATCH 1/9] gnu: Add csdr Guillaume Le Vaillant
2021-05-04  8:56   ` [bug#48217] [PATCH 2/9] gnu: Add serialdv Guillaume Le Vaillant
2021-05-04  8:56   ` [bug#48217] [PATCH 3/9] gnu: aptdec: Update to 1.7-1.5f91799 Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 4/9] gnu: Add cm256cc Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 5/9] gnu: Add libdab Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 6/9] gnu: Add sgp4 Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 7/9] gnu: Add sdrangel Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 8/9] gnu: Add dsdcc Guillaume Le Vaillant
2021-05-04  8:57   ` [bug#48217] [PATCH 9/9] gnu: sdrangel: Add dsdcc support Guillaume Le Vaillant
2021-05-04 16:39     ` Leo Famulari
2021-05-04 20:02     ` Leo Famulari
2021-05-04 21:48       ` Guillaume Le Vaillant
2021-05-04 20:00   ` [bug#48217] [PATCH 1/9] gnu: Add csdr Leo Famulari
2021-05-04 21:34     ` Guillaume Le Vaillant
2021-05-04 16:38 ` [bug#48217] [PATCH 0/9] Add sdrangel Leo Famulari
2021-05-05  8:48   ` [bug#48217] [PATCH v2 1/9] gnu: Add csdr Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 2/9] gnu: Add serialdv Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 3/9] gnu: aptdec: Update to 1.7-1.5f91799 Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 4/9] gnu: Add cm256cc Guillaume Le Vaillant
2021-05-05 11:22       ` Maxime Devos
2021-05-05 13:37         ` Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 5/9] gnu: Add libdab Guillaume Le Vaillant
2021-05-05  8:48     ` Guillaume Le Vaillant [this message]
2021-05-05  8:48     ` [bug#48217] [PATCH v2 7/9] gnu: Add mbelib Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 8/9] gnu: Add dsdcc Guillaume Le Vaillant
2021-05-05  8:48     ` [bug#48217] [PATCH v2 9/9] gnu: Add sdrangel Guillaume Le Vaillant
2021-05-07 16:48     ` bug#48217: [PATCH 0/9] " Guillaume Le Vaillant
2021-05-08  2:32       ` [bug#48217] " Leo Famulari

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210505084824.22275-6-glv@posteo.net \
    --to=glv@posteo.net \
    --cc=48217@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.