* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2021-01-06 9:42 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-01-06 9:42 UTC (permalink / raw
To: gentoo-commits
commit: 84af6e5a12e998df40a8bb7893766193f5a87ac4
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Wed Jan 6 09:36:45 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Wed Jan 6 09:36:45 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=84af6e5a
sci-libs/simpleitk: drop keywords not available in itk dep
can't add keywords to itk, cause its dep dcmtk does not
have those keywords
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-libs/simpleitk/simpleitk-1.2.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index 331a5d23c..bd37550a8 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -20,7 +20,7 @@ RESTRICT="primaryuri"
LICENSE="Apache-2.0"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86"
IUSE="python"
RDEPEND="
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2021-01-19 16:56 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-01-19 16:56 UTC (permalink / raw
To: gentoo-commits
commit: a8ef7d64b496c3ab7286f78cf8a923d3aa27c6d5
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jan 19 16:49:38 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jan 19 16:49:38 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a8ef7d64
sci-libs/simpleitk: add python deps
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-libs/simpleitk/simpleitk-1.2.4.ebuild | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index bd37550a8..ef20b6629 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -21,13 +21,16 @@ RESTRICT="primaryuri"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+
IUSE="python"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
dev-lang/lua:0
dev-cpp/gtest
sci-libs/itk
dev-python/virtualenv
+ python? ( ${PYTHON_DEPS} )
"
DEPEND="
${RDEPEND}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2021-02-12 21:30 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-02-12 21:30 UTC (permalink / raw
To: gentoo-commits
commit: c136fc7e637924777738dd329548975e49f5e5e1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 21:30:46 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 21:30:46 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c136fc7e
sci-libs/simpleitk: fix incorrect non-slotted Lua dependency
* We let the eclass figure out the dependencies on Lua for us
via ${LUA_DEPS}. Hardcoding a single Lua version is contradictory.
* If we were to depend on a single version, we should still
let the Lua eclass do this, but we should depend on the
slotted ebuild (e.g. :5.1) if we are to do it at all,
not the unslotted :0.
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/simpleitk/simpleitk-1.2.4.ebuild | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index ef20b6629..383d63268 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -25,17 +25,15 @@ KEYWORDS="~amd64 ~x86"
IUSE="python"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+BDEPEND="dev-lang/swig"
RDEPEND="
- dev-lang/lua:0
+ ${LUA_DEPS}
dev-cpp/gtest
sci-libs/itk
dev-python/virtualenv
python? ( ${PYTHON_DEPS} )
"
-DEPEND="
- ${RDEPEND}
- dev-lang/swig
-"
+DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-module.patch"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2021-02-12 21:34 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2021-02-12 21:34 UTC (permalink / raw
To: gentoo-commits
commit: 6e935f5b03eb6ea1e71c72b5a68a356575e590e4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 12 21:32:49 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 12 21:32:49 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6e935f5b
sci-libs/simpleitk: drop ChangeLog
::gentoo dropped these post-git migration, but
this contained an invalid email anyway.
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-libs/simpleitk/ChangeLog | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/sci-libs/simpleitk/ChangeLog b/sci-libs/simpleitk/ChangeLog
deleted file mode 100644
index 308cd02b7..000000000
--- a/sci-libs/simpleitk/ChangeLog
+++ /dev/null
@@ -1,10 +0,0 @@
- 27 Nov 2020; <chymera@gentoo.org> +files/0dfae3e_reversed.patch,
- +files/77a3d89_reversed.patch, +files/simpleitk-1.2.4-int-cast.patch,
- +files/simpleitk-1.2.4-module.patch, -simpleitk-1.2.3.ebuild,
- simpleitk-1.2.4.ebuild, simpleitk-2.0.0.ebuild:
- sci-libs/simpleitk: new package ahead of Gentoo Science
-
-*simpleitk-2.0.0 (25 Sep 2020)
-
- 25 Sep 2020; <chymera@gentoo.org> +metadata.xml, +simpleitk-2.0.0.ebuild:
- sci-libs/simpleitk: new package ahead of Gentoo Science
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2021-08-31 9:45 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-08-31 9:45 UTC (permalink / raw
To: gentoo-commits
commit: bfb01f2d1b4d5b7f4cba8151cec18a828f7ae0a3
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 31 09:43:54 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Tue Aug 31 09:43:54 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bfb01f2d
sci-libs/simpleitk: remove unknown RESTRICT
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sci-libs/simpleitk/simpleitk-1.2.4.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index d8324a014..afc114669 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -16,7 +16,6 @@ SRC_URI="
https://github.com/SimpleITK/SimpleITK/releases/download/v${PV}/SimpleITK-${PV}.tar.gz
https://github.com/SimpleITK/SimpleITK/releases/download/v${PV}/SimpleITKData-${PV}.tar.gz
"
-RESTRICT="primaryuri"
LICENSE="Apache-2.0"
SLOT="0"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2021-12-16 10:57 Andrew Ammerlaan
0 siblings, 0 replies; 7+ messages in thread
From: Andrew Ammerlaan @ 2021-12-16 10:57 UTC (permalink / raw
To: gentoo-commits
commit: b2e5ef2f4318714b8cb9cb8ed7a0b3deaeaffda2
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 16 10:48:17 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Dec 16 10:48:17 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b2e5ef2f
sci-libs/simpleitk: drop UnusedInherits
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sci-libs/simpleitk/simpleitk-1.2.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index afc114669..8a3bf5f5a 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -6,7 +6,7 @@ EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
LUA_COMPAT=( lua5-{1..3} )
-inherit lua-single toolchain-funcs cmake python-single-r1
+inherit lua-single cmake python-single-r1
MY_PN="SimpleITK"
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/
@ 2022-07-11 14:06 Horea Christian
0 siblings, 0 replies; 7+ messages in thread
From: Horea Christian @ 2022-07-11 14:06 UTC (permalink / raw
To: gentoo-commits
commit: a86429cc5183e439e13405dcc1a4fc1e0968725e
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Jul 11 14:06:16 2022 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Mon Jul 11 14:06:16 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a86429cc
sci-libs/simpleitk: EAPI and PYTHON_COMPAT bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
sci-libs/simpleitk/simpleitk-1.2.4.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
index 8a3bf5f5a..fa9a721e3 100644
--- a/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
+++ b/sci-libs/simpleitk/simpleitk-1.2.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{8..10} )
LUA_COMPAT=( lua5-{1..3} )
inherit lua-single cmake python-single-r1
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-07-11 14:06 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-19 16:56 [gentoo-commits] proj/sci:master commit in: sci-libs/simpleitk/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2022-07-11 14:06 Horea Christian
2021-12-16 10:57 Andrew Ammerlaan
2021-08-31 9:45 Andrew Ammerlaan
2021-02-12 21:34 Sam James
2021-02-12 21:30 Sam James
2021-01-06 9:42 Andrew Ammerlaan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox