[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/files/, sci-libs/stellarsolver/

2024-04-22 Thread Andreas Sturmlechner
commit: 65f38f29b1d319f64a4c37d3c55ce487d654049a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Apr 22 17:46:04 2024 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Apr 22 17:51:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65f38f29

sci-libs/stellarsolver: Fix QA warnings

Closes: https://bugs.gentoo.org/873595
Closes: https://bugs.gentoo.org/886465
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/stellarsolver-2.5-compiler-warning.patch |  26 ++
 .../files/stellarsolver-2.5-qsort-warning.patch| 291 +
 sci-libs/stellarsolver/stellarsolver-2.5-r1.ebuild |  37 +++
 3 files changed, 354 insertions(+)

diff --git 
a/sci-libs/stellarsolver/files/stellarsolver-2.5-compiler-warning.patch 
b/sci-libs/stellarsolver/files/stellarsolver-2.5-compiler-warning.patch
new file mode 100644
index ..eaae908db774
--- /dev/null
+++ b/sci-libs/stellarsolver/files/stellarsolver-2.5-compiler-warning.patch
@@ -0,0 +1,26 @@
+From 475193d28c0b33b14cecf9492a7c3cd06abcc9f5 Mon Sep 17 00:00:00 2001
+From: Tim Surber 
+Date: Wed, 10 Apr 2024 23:36:49 +0200
+Subject: [PATCH] fix another compiler warning
+
+---
+ stellarsolver/astrometry/util/fitstable.c | 6 +-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/stellarsolver/astrometry/util/fitstable.c 
b/stellarsolver/astrometry/util/fitstable.c
+index 10e1bc2..5885040 100644
+--- a/stellarsolver/astrometry/util/fitstable.c
 b/stellarsolver/astrometry/util/fitstable.c
+@@ -1227,7 +1227,11 @@ static fitstable_t* open_for_writing(const char* fn, 
const char* mode, FILE* fid
+ else {
+ tab->fid = fopen(fn, mode);
+ if (!tab->fid) {
+-SYSERROR("Couldn't open output file %s for writing", fn);
++if (fn != NULL) {
++SYSERROR("Couldn't open output file %s for writing", fn);
++} else {
++SYSERROR("Couldn't open output file because the filename is 
null");
++}
+ goto bailout;
+ }
+ }

diff --git a/sci-libs/stellarsolver/files/stellarsolver-2.5-qsort-warning.patch 
b/sci-libs/stellarsolver/files/stellarsolver-2.5-qsort-warning.patch
new file mode 100644
index ..72acd2adc9c6
--- /dev/null
+++ b/sci-libs/stellarsolver/files/stellarsolver-2.5-qsort-warning.patch
@@ -0,0 +1,291 @@
+From efd820a1655f808107a1984d55124ea142c66fa6 Mon Sep 17 00:00:00 2001
+From: Tim Surber 
+Date: Wed, 10 Apr 2024 23:31:58 +0200
+Subject: [PATCH] backport qsort warning fix
+
+---
+ .../astrometry/include/astrometry/ioutils.h   |  9 +++
+ .../include/astrometry/os-features-config.h   |  4 +-
+ .../include/astrometry/permutedsort.h |  2 +-
+ stellarsolver/astrometry/os-features.h| 16 --
+ stellarsolver/astrometry/util/bl-sort.c   |  3 +-
+ stellarsolver/astrometry/util/ioutils.c   |  2 +-
+ .../astrometry/util/os-features-test.c| 57 ---
+ stellarsolver/astrometry/util/os-features.c   |  6 +-
+ stellarsolver/astrometry/util/permutedsort.c  |  3 +-
+ .../astrometry/util/qsort_reentrant.c | 37 +++-
+ 10 files changed, 27 insertions(+), 112 deletions(-)
+
+diff --git a/stellarsolver/astrometry/include/astrometry/ioutils.h 
b/stellarsolver/astrometry/include/astrometry/ioutils.h
+index 07f7eecf..e5cf63c8 100644
+--- a/stellarsolver/astrometry/include/astrometry/ioutils.h
 b/stellarsolver/astrometry/include/astrometry/ioutils.h
+@@ -31,6 +31,15 @@ char* dirname(const char* path);
+ 
+ extern uint32_t ENDIAN_DETECTOR;
+ 
++void QSORT_R(void* base, size_t nmembers, size_t member_size,
++ void* token, int (*compar)(void *, const void *, const void *));
++
++/**
++   You should define the "comparison" function like this:
++   static int QSORT_COMPARISON_FUNCTION(my_comparison, void* token, const 
void* v1, const void* v2) {
++ */
++#define QSORT_COMPARISON_FUNCTION(func, thunk, v1, v2) func(thunk, v1, v2)
++
+ int copy_file(const char* infn, const char* outfn);
+ 
+ int pad_fid(FILE* fid, size_t len, char pad);
+diff --git a/stellarsolver/astrometry/include/astrometry/os-features-config.h 
b/stellarsolver/astrometry/include/astrometry/os-features-config.h
+index a246d428..bcc336e9 100644
+--- a/stellarsolver/astrometry/include/astrometry/os-features-config.h
 b/stellarsolver/astrometry/include/astrometry/os-features-config.h
+@@ -1,4 +1,4 @@
+-#define NEED_DECLARE_QSORT_R 0
+-#define NEED_QSORT_R 1
++#define NEED_DECLARE_QSORT_R 1
++#define NEED_QSORT_R 0
+ #define NEED_SWAP_QSORT_R 0
+ #define HAVE_NETPBM 0
+\ No newline at end of file
+diff --git a/stellarsolver/astrometry/include/astrometry/permutedsort.h 
b/stellarsolver/astrometry/include/astrometry/permutedsort.h
+index 23c1a7e9..d3590160 100644
+--- a/stellarsolver/astrometry/include/astrometry/permutedsort.h
 b/stellarsolver/astrometry/include/astrometry/permutedsort.h
+@@ -7,7 +7,7 @@
+ #define 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2024-03-17 Thread Sam James
commit: 681f94760646bda2d7089ed485a6dbe985b97def
Author: Sam James  gentoo  org>
AuthorDate: Sun Mar 17 08:40:04 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Mar 17 08:42:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=681f9476

sci-libs/stellarsolver: filter LTO

I haven't reported this upstream because I can't even build it with GCC 14
(bug #886465).

Bug: https://bugs.gentoo.org/886465
Closes: https://bugs.gentoo.org/862930
Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-2.5.ebuild | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-2.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
index 1473c730ee95..c7e235ccd58b 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-inherit cmake
+inherit cmake flag-o-matic
 
 DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
 HOMEPAGE="https://github.com/rlancaste/stellarsolver;
@@ -25,3 +25,10 @@ RDEPEND="
sci-astronomy/wcslib:=
 "
 DEPEND="${RDEPEND}"
+
+src_configure() {
+   # bug #862930
+   filter-lto
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2023-10-01 Thread Andreas Sturmlechner
commit: 31ba477b5585e423a389b0b96c562a37cc52b8fd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  1 06:50:29 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  1 06:50:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31ba477b

sci-libs/stellarsolver: drop 2.4

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 -
 sci-libs/stellarsolver/stellarsolver-2.4.ebuild | 27 -
 2 files changed, 28 deletions(-)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index f84b5d7e357c..5b8e51985b49 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1,2 +1 @@
-DIST stellarsolver-2.4.tar.gz 23402982 BLAKE2B 
6eb9dafdf2a209afba10c09f7e7c0f6832a4399cd67c6ed3e4eb87ba98f2163ee8cbb342490314246c77d13581d1c0547817b6ab3c292685f3c496fa305f320d
 SHA512 
f397ddafd3bb4774ac89e95673f67c4fef40ea0be842555608d95978ee26949b21b16cc984e00e936eda2ceca316f604b784b44844cf37ad1e44a5ef8d7e75f8
 DIST stellarsolver-2.5.tar.gz 23402988 BLAKE2B 
ec1ab428413104a329128e3e90883884eedf2c031fb4f3f5a8ab7579243a7b7a496579f3127ad0324176cf825d02a417e1538272b931a87090f1373adf0d1239
 SHA512 
003522ac0b4130e0ca16ccb617743e3716aa2a182ad63abfb901ea0b47c28a745e8ca1e5b7874d17636ff948b1ebc055277557f89a159e425af7d2a64f513fe8

diff --git a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
deleted file mode 100644
index 1473c730ee95..
--- a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
-HOMEPAGE="https://github.com/rlancaste/stellarsolver;
-SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   sci-libs/cfitsio:=
-   sci-libs/gsl:=
-   sci-astronomy/wcslib:=
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2023-09-30 Thread Sam James
commit: fbd81fca37baf6b6eef2f50e356a364def490a7d
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  1 02:27:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  1 02:27:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd81fca

sci-libs/stellarsolver: Stabilize 2.5 amd64, #914977

Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-2.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
index 0f99bc4fa47b..1473c730ee95 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2023-09-03 Thread Andreas Sturmlechner
commit: 149a07fae8dd821a4e1a8b09b4b94178ea2c3dd7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Sep  3 09:50:15 2023 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Sep  3 12:18:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=149a07fa

sci-libs/stellarsolver: add 2.5

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 +
 sci-libs/stellarsolver/stellarsolver-2.5.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index 851d88078164..f84b5d7e357c 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1 +1,2 @@
 DIST stellarsolver-2.4.tar.gz 23402982 BLAKE2B 
6eb9dafdf2a209afba10c09f7e7c0f6832a4399cd67c6ed3e4eb87ba98f2163ee8cbb342490314246c77d13581d1c0547817b6ab3c292685f3c496fa305f320d
 SHA512 
f397ddafd3bb4774ac89e95673f67c4fef40ea0be842555608d95978ee26949b21b16cc984e00e936eda2ceca316f604b784b44844cf37ad1e44a5ef8d7e75f8
+DIST stellarsolver-2.5.tar.gz 23402988 BLAKE2B 
ec1ab428413104a329128e3e90883884eedf2c031fb4f3f5a8ab7579243a7b7a496579f3127ad0324176cf825d02a417e1538272b931a87090f1373adf0d1239
 SHA512 
003522ac0b4130e0ca16ccb617743e3716aa2a182ad63abfb901ea0b47c28a745e8ca1e5b7874d17636ff948b1ebc055277557f89a159e425af7d2a64f513fe8

diff --git a/sci-libs/stellarsolver/stellarsolver-2.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
new file mode 100644
index ..0f99bc4fa47b
--- /dev/null
+++ b/sci-libs/stellarsolver/stellarsolver-2.5.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
+HOMEPAGE="https://github.com/rlancaste/stellarsolver;
+SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sci-libs/cfitsio:=
+   sci-libs/gsl:=
+   sci-astronomy/wcslib:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/, sci-libs/stellarsolver/files/

2022-11-03 Thread Andreas Sturmlechner
commit: 0fb5e0ce631600ff13783d7a91d24e55ff872115
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Nov  3 08:34:23 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Nov  3 08:34:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fb5e0ce

sci-libs/stellarsolver: drop 2.2

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest|  1 -
 ...larsolver-2.2-fix-implicit-vasprintf-decl.patch | 88 --
 sci-libs/stellarsolver/stellarsolver-2.2.ebuild| 30 
 3 files changed, 119 deletions(-)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index 000210384e4b..851d88078164 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1,2 +1 @@
-DIST stellarsolver-2.2.tar.gz 10971732 BLAKE2B 
019b822d9a84401dfe2d01053da14c3f0eafb8a8b67e60c4f664ad64c0ffefe72f9dc086edef6dac5950f7fd99e655a641ecf781609b8b54e50cf3c0f8a516b5
 SHA512 
0b200437130ea8131ade9219e1055ea4265925168cbfb5a7bdcf3836e267a1b670df43f20d4657ef64dea2c1ef2314cfc0bcb8503eb4ead3f0cc3fae3267f7bc
 DIST stellarsolver-2.4.tar.gz 23402982 BLAKE2B 
6eb9dafdf2a209afba10c09f7e7c0f6832a4399cd67c6ed3e4eb87ba98f2163ee8cbb342490314246c77d13581d1c0547817b6ab3c292685f3c496fa305f320d
 SHA512 
f397ddafd3bb4774ac89e95673f67c4fef40ea0be842555608d95978ee26949b21b16cc984e00e936eda2ceca316f604b784b44844cf37ad1e44a5ef8d7e75f8

diff --git 
a/sci-libs/stellarsolver/files/stellarsolver-2.2-fix-implicit-vasprintf-decl.patch
 
b/sci-libs/stellarsolver/files/stellarsolver-2.2-fix-implicit-vasprintf-decl.patch
deleted file mode 100644
index b2625fe4429e..
--- 
a/sci-libs/stellarsolver/files/stellarsolver-2.2-fix-implicit-vasprintf-decl.patch
+++ /dev/null
@@ -1,88 +0,0 @@
-From acb58bd78388adec25eb6e09ce6434546de008b8 Mon Sep 17 00:00:00 2001
-From: Robert Lancaster 
-Date: Wed, 16 Mar 2022 18:15:21 -0400
-Subject: [PATCH] Trying to eliminate vasprintf implicit declaration warning on
- Linux
-

- stellarsolver/astrometry/util/bl.c  | 4 +++-
- stellarsolver/astrometry/util/errors.c  | 4 +++-
- stellarsolver/astrometry/util/fitsioutils.c | 3 +++
- stellarsolver/astrometry/util/ioutils.c | 4 +++-
- stellarsolver/astrometry/util/log.c | 4 +++-
- 5 files changed, 15 insertions(+), 4 deletions(-)
-
-diff --git a/stellarsolver/astrometry/util/bl.c 
b/stellarsolver/astrometry/util/bl.c
-index 1a0fee9..e84d74a 100644
 a/stellarsolver/astrometry/util/bl.c
-+++ b/stellarsolver/astrometry/util/bl.c
-@@ -2,7 +2,9 @@
-  # This file is part of the Astrometry.net suite.
-  # Licensed under a 3-clause BSD style license - see LICENSE
-  */
--
-+#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
-+#define __STDC_WANT_LIB_EXT2__ 1
-+#endif
- #include 
- #include 
- #include 
-diff --git a/stellarsolver/astrometry/util/errors.c 
b/stellarsolver/astrometry/util/errors.c
-index 94f5f9c..b7c4e9f 100644
 a/stellarsolver/astrometry/util/errors.c
-+++ b/stellarsolver/astrometry/util/errors.c
-@@ -2,7 +2,9 @@
-  # This file is part of the Astrometry.net suite.
-  # Licensed under a 3-clause BSD style license - see LICENSE
-  */
--
-+#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
-+#define __STDC_WANT_LIB_EXT2__ 1
-+#endif
- #include 
- #include 
- #include 
-diff --git a/stellarsolver/astrometry/util/fitsioutils.c 
b/stellarsolver/astrometry/util/fitsioutils.c
-index 7451c36..f2b20bc 100644
 a/stellarsolver/astrometry/util/fitsioutils.c
-+++ b/stellarsolver/astrometry/util/fitsioutils.c
-@@ -2,6 +2,9 @@
-  # This file is part of the Astrometry.net suite.
-  # Licensed under a 3-clause BSD style license - see LICENSE
-  */
-+#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
-+#define __STDC_WANT_LIB_EXT2__ 1
-+#endif
- #include 
- #include 
- #include 
-diff --git a/stellarsolver/astrometry/util/ioutils.c 
b/stellarsolver/astrometry/util/ioutils.c
-index ee17011..c490fb8 100644
 a/stellarsolver/astrometry/util/ioutils.c
-+++ b/stellarsolver/astrometry/util/ioutils.c
-@@ -2,7 +2,9 @@
-  # This file is part of the Astrometry.net suite.
-  # Licensed under a 3-clause BSD style license - see LICENSE
-  */
--
-+#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
-+#define __STDC_WANT_LIB_EXT2__ 1
-+#endif
- #include 
- #include 
- #include 
-diff --git a/stellarsolver/astrometry/util/log.c 
b/stellarsolver/astrometry/util/log.c
-index 256d5a1..1a2b8db 100644
 a/stellarsolver/astrometry/util/log.c
-+++ b/stellarsolver/astrometry/util/log.c
-@@ -2,7 +2,9 @@
-  # This file is part of the Astrometry.net suite.
-  # Licensed under a 3-clause BSD style license - see LICENSE
-  */
--
-+#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
-+#define __STDC_WANT_LIB_EXT2__ 1
-+#endif

[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-11-03 Thread Agostino Sarubbo
commit: 6ae95f176428127cd83eea2ed10fe8d813ed7fa7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov  3 08:07:41 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov  3 08:08:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ae95f17

sci-libs/stellarsolver: Stabilize 2.4 x86, #878279

Signed-off-by: Agostino Sarubbo  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
index 9d256308a02c..745064e47d62 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-11-03 Thread Agostino Sarubbo
commit: d9c4cfe548ca8719b6c66bb2e89ea758e1943d75
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Nov  3 07:59:23 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Nov  3 07:59:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c4cfe5

sci-libs/stellarsolver: Stabilize 2.4 amd64, #878279

Signed-off-by: Agostino Sarubbo  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
index 9a2aed549e42..9d256308a02c 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-10-05 Thread Andreas Sturmlechner
commit: 4c91a18a812107dd267687faa3c07a85edd19687
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  2 22:09:47 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Oct  5 20:46:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c91a18a

sci-libs/stellarsolver: add 2.4

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 +
 sci-libs/stellarsolver/stellarsolver-2.4.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index eca2074ad514..000210384e4b 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1 +1,2 @@
 DIST stellarsolver-2.2.tar.gz 10971732 BLAKE2B 
019b822d9a84401dfe2d01053da14c3f0eafb8a8b67e60c4f664ad64c0ffefe72f9dc086edef6dac5950f7fd99e655a641ecf781609b8b54e50cf3c0f8a516b5
 SHA512 
0b200437130ea8131ade9219e1055ea4265925168cbfb5a7bdcf3836e267a1b670df43f20d4657ef64dea2c1ef2314cfc0bcb8503eb4ead3f0cc3fae3267f7bc
+DIST stellarsolver-2.4.tar.gz 23402982 BLAKE2B 
6eb9dafdf2a209afba10c09f7e7c0f6832a4399cd67c6ed3e4eb87ba98f2163ee8cbb342490314246c77d13581d1c0547817b6ab3c292685f3c496fa305f320d
 SHA512 
f397ddafd3bb4774ac89e95673f67c4fef40ea0be842555608d95978ee26949b21b16cc984e00e936eda2ceca316f604b784b44844cf37ad1e44a5ef8d7e75f8

diff --git a/sci-libs/stellarsolver/stellarsolver-2.4.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
new file mode 100644
index ..9a2aed549e42
--- /dev/null
+++ b/sci-libs/stellarsolver/stellarsolver-2.4.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
+HOMEPAGE="https://github.com/rlancaste/stellarsolver;
+SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sci-libs/cfitsio:=
+   sci-libs/gsl:=
+   sci-astronomy/wcslib:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-06-22 Thread Andreas Sturmlechner
commit: ca6a4c941bb49b979eaa32a45f3c6a3b0410e728
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jun 22 06:24:34 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jun 22 06:36:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6a4c94

sci-libs/stellarsolver: Drop 1.9

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 -
 sci-libs/stellarsolver/stellarsolver-1.9.ebuild | 27 -
 2 files changed, 28 deletions(-)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index 7e29c11d356d..eca2074ad514 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1,2 +1 @@
-DIST stellarsolver-1.9.tar.gz 9117560 BLAKE2B 
dd458399bd53a6e9de50293ebe15538275fb494d8ef63699eb1234aaee5234fdbb81fe23a28cc1d264490ea8849569293342125461d9e638111c9acb9756fbdf
 SHA512 
a618e551ec28bd8439a495ca6f2a69b857852f0129c8e7d692315bd124b7c7a5130763775264b3f6a7394b3d0480d4f95c1605fb02e311ab6c38b4c60bc6b9e3
 DIST stellarsolver-2.2.tar.gz 10971732 BLAKE2B 
019b822d9a84401dfe2d01053da14c3f0eafb8a8b67e60c4f664ad64c0ffefe72f9dc086edef6dac5950f7fd99e655a641ecf781609b8b54e50cf3c0f8a516b5
 SHA512 
0b200437130ea8131ade9219e1055ea4265925168cbfb5a7bdcf3836e267a1b670df43f20d4657ef64dea2c1ef2314cfc0bcb8503eb4ead3f0cc3fae3267f7bc

diff --git a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
deleted file mode 100644
index 745064e47d62..
--- a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
-HOMEPAGE="https://github.com/rlancaste/stellarsolver;
-SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   sci-libs/cfitsio:=
-   sci-libs/gsl:=
-   sci-astronomy/wcslib:=
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-06-21 Thread Sam James
commit: 42947794be9f0324d0f5b39412a92a26a3127ef1
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 21 22:11:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 21 22:11:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42947794

sci-libs/stellarsolver: Stabilize 2.2 x86, #839555

Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
index a4a83b616757..e33679de6897 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-04-21 Thread Jakov Smolić
commit: 2346a390c0df946cdc69f78c993190f6fbea561e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Apr 21 12:59:51 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Apr 21 12:59:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2346a390

sci-libs/stellarsolver: Stabilize 2.2 amd64, #839555

Signed-off-by: Jakov Smolić  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
index 3fd2a5f94878..a4a83b616757 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-03-25 Thread Andreas Sturmlechner
commit: eac6000bb498f44ff17399af2c6e4a5898c445e4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Mar 16 17:11:42 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Mar 25 19:59:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac6000b

sci-libs/stellarsolver: 2.2 version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 +
 sci-libs/stellarsolver/stellarsolver-2.2.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index 4b2ab6e6f597..7e29c11d356d 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1 +1,2 @@
 DIST stellarsolver-1.9.tar.gz 9117560 BLAKE2B 
dd458399bd53a6e9de50293ebe15538275fb494d8ef63699eb1234aaee5234fdbb81fe23a28cc1d264490ea8849569293342125461d9e638111c9acb9756fbdf
 SHA512 
a618e551ec28bd8439a495ca6f2a69b857852f0129c8e7d692315bd124b7c7a5130763775264b3f6a7394b3d0480d4f95c1605fb02e311ab6c38b4c60bc6b9e3
+DIST stellarsolver-2.2.tar.gz 10971732 BLAKE2B 
019b822d9a84401dfe2d01053da14c3f0eafb8a8b67e60c4f664ad64c0ffefe72f9dc086edef6dac5950f7fd99e655a641ecf781609b8b54e50cf3c0f8a516b5
 SHA512 
0b200437130ea8131ade9219e1055ea4265925168cbfb5a7bdcf3836e267a1b670df43f20d4657ef64dea2c1ef2314cfc0bcb8503eb4ead3f0cc3fae3267f7bc

diff --git a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
new file mode 100644
index ..9a2aed549e42
--- /dev/null
+++ b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
+HOMEPAGE="https://github.com/rlancaste/stellarsolver;
+SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sci-libs/cfitsio:=
+   sci-libs/gsl:=
+   sci-astronomy/wcslib:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/, sci-libs/stellarsolver/files/

2022-03-25 Thread Andreas Sturmlechner
commit: 5d6e71977cacf505f87e1da254798423a6a5945f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Mar 25 19:50:09 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Mar 25 19:59:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d6e7197

sci-libs/stellarsolver: Fix vasprintf implicit declaration warning

Upstream commit acb58bd78388adec25eb6e09ce6434546de008b8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 ...larsolver-2.2-fix-implicit-vasprintf-decl.patch | 88 ++
 sci-libs/stellarsolver/stellarsolver-2.2.ebuild|  3 +
 2 files changed, 91 insertions(+)

diff --git 
a/sci-libs/stellarsolver/files/stellarsolver-2.2-fix-implicit-vasprintf-decl.patch
 
b/sci-libs/stellarsolver/files/stellarsolver-2.2-fix-implicit-vasprintf-decl.patch
new file mode 100644
index ..b2625fe4429e
--- /dev/null
+++ 
b/sci-libs/stellarsolver/files/stellarsolver-2.2-fix-implicit-vasprintf-decl.patch
@@ -0,0 +1,88 @@
+From acb58bd78388adec25eb6e09ce6434546de008b8 Mon Sep 17 00:00:00 2001
+From: Robert Lancaster 
+Date: Wed, 16 Mar 2022 18:15:21 -0400
+Subject: [PATCH] Trying to eliminate vasprintf implicit declaration warning on
+ Linux
+
+---
+ stellarsolver/astrometry/util/bl.c  | 4 +++-
+ stellarsolver/astrometry/util/errors.c  | 4 +++-
+ stellarsolver/astrometry/util/fitsioutils.c | 3 +++
+ stellarsolver/astrometry/util/ioutils.c | 4 +++-
+ stellarsolver/astrometry/util/log.c | 4 +++-
+ 5 files changed, 15 insertions(+), 4 deletions(-)
+
+diff --git a/stellarsolver/astrometry/util/bl.c 
b/stellarsolver/astrometry/util/bl.c
+index 1a0fee9..e84d74a 100644
+--- a/stellarsolver/astrometry/util/bl.c
 b/stellarsolver/astrometry/util/bl.c
+@@ -2,7 +2,9 @@
+  # This file is part of the Astrometry.net suite.
+  # Licensed under a 3-clause BSD style license - see LICENSE
+  */
+-
++#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
++#define __STDC_WANT_LIB_EXT2__ 1
++#endif
+ #include 
+ #include 
+ #include 
+diff --git a/stellarsolver/astrometry/util/errors.c 
b/stellarsolver/astrometry/util/errors.c
+index 94f5f9c..b7c4e9f 100644
+--- a/stellarsolver/astrometry/util/errors.c
 b/stellarsolver/astrometry/util/errors.c
+@@ -2,7 +2,9 @@
+  # This file is part of the Astrometry.net suite.
+  # Licensed under a 3-clause BSD style license - see LICENSE
+  */
+-
++#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
++#define __STDC_WANT_LIB_EXT2__ 1
++#endif
+ #include 
+ #include 
+ #include 
+diff --git a/stellarsolver/astrometry/util/fitsioutils.c 
b/stellarsolver/astrometry/util/fitsioutils.c
+index 7451c36..f2b20bc 100644
+--- a/stellarsolver/astrometry/util/fitsioutils.c
 b/stellarsolver/astrometry/util/fitsioutils.c
+@@ -2,6 +2,9 @@
+  # This file is part of the Astrometry.net suite.
+  # Licensed under a 3-clause BSD style license - see LICENSE
+  */
++#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
++#define __STDC_WANT_LIB_EXT2__ 1
++#endif
+ #include 
+ #include 
+ #include 
+diff --git a/stellarsolver/astrometry/util/ioutils.c 
b/stellarsolver/astrometry/util/ioutils.c
+index ee17011..c490fb8 100644
+--- a/stellarsolver/astrometry/util/ioutils.c
 b/stellarsolver/astrometry/util/ioutils.c
+@@ -2,7 +2,9 @@
+  # This file is part of the Astrometry.net suite.
+  # Licensed under a 3-clause BSD style license - see LICENSE
+  */
+-
++#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
++#define __STDC_WANT_LIB_EXT2__ 1
++#endif
+ #include 
+ #include 
+ #include 
+diff --git a/stellarsolver/astrometry/util/log.c 
b/stellarsolver/astrometry/util/log.c
+index 256d5a1..1a2b8db 100644
+--- a/stellarsolver/astrometry/util/log.c
 b/stellarsolver/astrometry/util/log.c
+@@ -2,7 +2,9 @@
+  # This file is part of the Astrometry.net suite.
+  # Licensed under a 3-clause BSD style license - see LICENSE
+  */
+-
++#ifdef __GNUC__ //# Modified by Robert Lancaster for the StellarSolver 
Internal Library
++#define __STDC_WANT_LIB_EXT2__ 1
++#endif
+ #include 
+ #include 
+ #include 

diff --git a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild 
b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
index 9a2aed549e42..3fd2a5f94878 100644
--- a/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-2.2.ebuild
@@ -25,3 +25,6 @@ RDEPEND="
sci-astronomy/wcslib:=
 "
 DEPEND="${RDEPEND}"
+
+# https://github.com/rlancaste/stellarsolver/issues/108
+PATCHES=( "${FILESDIR}/${P}-fix-implicit-vasprintf-decl.patch" )



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-02-26 Thread Andreas Sturmlechner
commit: 35b663a3d46eedbdadb5b968d25986cdf580e784
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Feb 26 18:57:39 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Feb 26 19:42:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b663a3

sci-libs/stellarsolver: Drop 1.8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 -
 sci-libs/stellarsolver/stellarsolver-1.8.ebuild | 27 -
 2 files changed, 28 deletions(-)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index 4aaf3f12e192..4b2ab6e6f597 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1,2 +1 @@
-DIST stellarsolver-1.8.tar.gz 9117094 BLAKE2B 
fbfb08e1225c4285b5ce6f88372c1076fcfa622f63b093ffb0261e81c14f6901788b5bc6d6246008024df3a5ad7a96c07908633fa42453df5f57eeae4b1ada8d
 SHA512 
08aa0647507874c9dfe032c10f7e583a54ca18302bc92731147875100c3f0903e03083ee71af851b2497898211ff8903477dfb56e61360a792a388d14d226db1
 DIST stellarsolver-1.9.tar.gz 9117560 BLAKE2B 
dd458399bd53a6e9de50293ebe15538275fb494d8ef63699eb1234aaee5234fdbb81fe23a28cc1d264490ea8849569293342125461d9e638111c9acb9756fbdf
 SHA512 
a618e551ec28bd8439a495ca6f2a69b857852f0129c8e7d692315bd124b7c7a5130763775264b3f6a7394b3d0480d4f95c1605fb02e311ab6c38b4c60bc6b9e3

diff --git a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
deleted file mode 100644
index 35969b975220..
--- a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
-HOMEPAGE="https://github.com/rlancaste/stellarsolver;
-SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   sci-libs/cfitsio:=
-   sci-libs/gsl:=
-   sci-astronomy/wcslib:=
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-02-26 Thread Sam James
commit: cc5dd55c3440b14e1e8057819bfa18fec3ca7e20
Author: Sam James  gentoo  org>
AuthorDate: Sat Feb 26 18:49:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Feb 26 18:49:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc5dd55c

sci-libs/stellarsolver: Stabilize 1.9 x86, #833839

Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
index 9d256308a02c..745064e47d62 100644
--- a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-02-26 Thread Agostino Sarubbo
commit: f06cac0e3892376e04ec9c6d72a16c6237c7b92d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Feb 26 09:15:10 2022 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Feb 26 09:15:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06cac0e

sci-libs/stellarsolver: amd64 stable wrt bug #833839

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-1.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
index 9a2aed549e42..9d256308a02c 100644
--- a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2022-01-26 Thread Andreas Sturmlechner
commit: bada7ddf7834f02bcb149b6a8d3e22d270a7196f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan 26 11:20:14 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jan 26 13:17:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bada7ddf

sci-libs/stellarsolver: 1.9 version bump

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 +
 sci-libs/stellarsolver/stellarsolver-1.9.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index 58a5ca4694f8..4aaf3f12e192 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1 +1,2 @@
 DIST stellarsolver-1.8.tar.gz 9117094 BLAKE2B 
fbfb08e1225c4285b5ce6f88372c1076fcfa622f63b093ffb0261e81c14f6901788b5bc6d6246008024df3a5ad7a96c07908633fa42453df5f57eeae4b1ada8d
 SHA512 
08aa0647507874c9dfe032c10f7e583a54ca18302bc92731147875100c3f0903e03083ee71af851b2497898211ff8903477dfb56e61360a792a388d14d226db1
+DIST stellarsolver-1.9.tar.gz 9117560 BLAKE2B 
dd458399bd53a6e9de50293ebe15538275fb494d8ef63699eb1234aaee5234fdbb81fe23a28cc1d264490ea8849569293342125461d9e638111c9acb9756fbdf
 SHA512 
a618e551ec28bd8439a495ca6f2a69b857852f0129c8e7d692315bd124b7c7a5130763775264b3f6a7394b3d0480d4f95c1605fb02e311ab6c38b4c60bc6b9e3

diff --git a/sci-libs/stellarsolver/stellarsolver-1.9.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
new file mode 100644
index ..9a2aed549e42
--- /dev/null
+++ b/sci-libs/stellarsolver/stellarsolver-1.9.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
+HOMEPAGE="https://github.com/rlancaste/stellarsolver;
+SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sci-libs/cfitsio:=
+   sci-libs/gsl:=
+   sci-astronomy/wcslib:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-10-03 Thread Andreas Sturmlechner
commit: f58bdf8b4a13b437ac32b6890cd19829ec14d631
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct  3 20:40:16 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Oct  3 20:40:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f58bdf8b

sci-libs/stellarsolver: Drop 1.5

Package-Manager: Portage-3.0.26, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 -
 sci-libs/stellarsolver/stellarsolver-1.5.ebuild | 27 -
 2 files changed, 28 deletions(-)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index eda31a7e6fc..58a5ca4694f 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1,2 +1 @@
-DIST stellarsolver-1.5.tar.gz 9113711 BLAKE2B 
3fe4489df71bbfa4d75f02a8a0ea26202165a7fe321b626fedceccce52122502be0040a47347abdd4e52b3c3402451f10d79b8258db53d6da029bd20dd02c279
 SHA512 
eb1d8b8b94a4a4d165b49cd55ffef5e0ae32e7da1bb6b3e061421ba1a5a27ec30438b789c5c56bad22b512de9bf091aeb24b991c9a146cc852b22a9ca97cf3ce
 DIST stellarsolver-1.8.tar.gz 9117094 BLAKE2B 
fbfb08e1225c4285b5ce6f88372c1076fcfa622f63b093ffb0261e81c14f6901788b5bc6d6246008024df3a5ad7a96c07908633fa42453df5f57eeae4b1ada8d
 SHA512 
08aa0647507874c9dfe032c10f7e583a54ca18302bc92731147875100c3f0903e03083ee71af851b2497898211ff8903477dfb56e61360a792a388d14d226db1

diff --git a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
deleted file mode 100644
index f3665c5dfa9..000
--- a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
-HOMEPAGE="https://github.com/rlancaste/stellarsolver;
-SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   sci-libs/cfitsio:=
-   sci-libs/gsl:=
-   sci-astronomy/wcslib:=
-"
-DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-10-03 Thread Sam James
commit: 21afe4a4419f710ac0c67ce55903696f00ea0853
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct  3 18:46:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct  3 18:46:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21afe4a4

sci-libs/stellarsolver: Stabilize 1.8 amd64, #815835

Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-1.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
index d0553c0b9c5..35969b97522 100644
--- a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-10-03 Thread Agostino Sarubbo
commit: 482dab484be322ef7af794254d173bc3af50d175
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Oct  3 17:52:05 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Oct  3 17:52:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=482dab48

sci-libs/stellarsolver: x86 stable wrt bug #815835

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-1.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
index 21d2375cc42..d0553c0b9c5 100644
--- a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-09-04 Thread Andreas Sturmlechner
commit: f0f45034a7b3e68761b5433b8eafeaf17fb8c313
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Sep  4 18:40:42 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Sep  4 20:58:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f45034

sci-libs/stellarsolver: 1.8 version bump

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 +
 sci-libs/stellarsolver/stellarsolver-1.8.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
index c0a501c85fc..eda31a7e6fc 100644
--- a/sci-libs/stellarsolver/Manifest
+++ b/sci-libs/stellarsolver/Manifest
@@ -1 +1,2 @@
 DIST stellarsolver-1.5.tar.gz 9113711 BLAKE2B 
3fe4489df71bbfa4d75f02a8a0ea26202165a7fe321b626fedceccce52122502be0040a47347abdd4e52b3c3402451f10d79b8258db53d6da029bd20dd02c279
 SHA512 
eb1d8b8b94a4a4d165b49cd55ffef5e0ae32e7da1bb6b3e061421ba1a5a27ec30438b789c5c56bad22b512de9bf091aeb24b991c9a146cc852b22a9ca97cf3ce
+DIST stellarsolver-1.8.tar.gz 9117094 BLAKE2B 
fbfb08e1225c4285b5ce6f88372c1076fcfa622f63b093ffb0261e81c14f6901788b5bc6d6246008024df3a5ad7a96c07908633fa42453df5f57eeae4b1ada8d
 SHA512 
08aa0647507874c9dfe032c10f7e583a54ca18302bc92731147875100c3f0903e03083ee71af851b2497898211ff8903477dfb56e61360a792a388d14d226db1

diff --git a/sci-libs/stellarsolver/stellarsolver-1.8.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
new file mode 100644
index 000..21d2375cc42
--- /dev/null
+++ b/sci-libs/stellarsolver/stellarsolver-1.8.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
+HOMEPAGE="https://github.com/rlancaste/stellarsolver;
+SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sci-libs/cfitsio:=
+   sci-libs/gsl:=
+   sci-astronomy/wcslib:=
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-02-18 Thread Sam James
commit: 91c135949157b450e1a9a7d1d55c8810b8b1c440
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 18 21:46:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 18 21:46:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91c13594

sci-libs/stellarsolver: Stabilize 1.5 x86, #770226

Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
index 24ef832a6e1..f3665c5dfa9 100644
--- a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-02-18 Thread Sam James
commit: 2980fafb34a908783235a5cb4b3b2b2997acaafe
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 18 21:43:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 18 21:43:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2980fafb

sci-libs/stellarsolver: Stabilize 1.5 amd64, #770226

Signed-off-by: Sam James  gentoo.org>

 sci-libs/stellarsolver/stellarsolver-1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
index ff0cde6a60c..24ef832a6e1 100644
--- a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
+++ b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-libs/stellarsolver/

2021-01-02 Thread Andreas Sturmlechner
commit: 0c5a7dd65f6cd147b8d2ef28180f67b2eac853dc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jan  2 17:06:16 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Jan  2 20:30:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c5a7dd6

sci-libs/stellarsolver: New package, version 1.5

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 sci-libs/stellarsolver/Manifest |  1 +
 sci-libs/stellarsolver/metadata.xml | 15 ++
 sci-libs/stellarsolver/stellarsolver-1.5.ebuild | 27 +
 3 files changed, 43 insertions(+)

diff --git a/sci-libs/stellarsolver/Manifest b/sci-libs/stellarsolver/Manifest
new file mode 100644
index 000..c0a501c85fc
--- /dev/null
+++ b/sci-libs/stellarsolver/Manifest
@@ -0,0 +1 @@
+DIST stellarsolver-1.5.tar.gz 9113711 BLAKE2B 
3fe4489df71bbfa4d75f02a8a0ea26202165a7fe321b626fedceccce52122502be0040a47347abdd4e52b3c3402451f10d79b8258db53d6da029bd20dd02c279
 SHA512 
eb1d8b8b94a4a4d165b49cd55ffef5e0ae32e7da1bb6b3e061421ba1a5a27ec30438b789c5c56bad22b512de9bf091aeb24b991c9a146cc852b22a9ca97cf3ce

diff --git a/sci-libs/stellarsolver/metadata.xml 
b/sci-libs/stellarsolver/metadata.xml
new file mode 100644
index 000..2fc86c69b3f
--- /dev/null
+++ b/sci-libs/stellarsolver/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+   
+   sci-astron...@gentoo.org
+   Gentoo Astronomy project
+   
+   
+   rlancaste/stellarsolver
+   
+

diff --git a/sci-libs/stellarsolver/stellarsolver-1.5.ebuild 
b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
new file mode 100644
index 000..ff0cde6a60c
--- /dev/null
+++ b/sci-libs/stellarsolver/stellarsolver-1.5.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Cross-platform Sextractor and Astrometry.net-Based internal 
astrometric solver"
+HOMEPAGE="https://github.com/rlancaste/stellarsolver;
+SRC_URI="https://github.com/rlancaste/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+   sci-libs/cfitsio:=
+   sci-libs/gsl:=
+   sci-astronomy/wcslib:=
+"
+DEPEND="${RDEPEND}"