public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/
@ 2019-08-23 13:18 Alexey Shvetsov
  0 siblings, 0 replies; 6+ messages in thread
From: Alexey Shvetsov @ 2019-08-23 13:18 UTC (permalink / raw
  To: gentoo-commits

commit:     ebba7b05d62c91190420b54337c67b0f453ab9e7
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 23 13:14:12 2019 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Aug 23 13:18:02 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebba7b05

sci-libs/numkit: Initial import

Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>

 sci-libs/numkit/Manifest            |  1 +
 sci-libs/numkit/metadata.xml        | 15 +++++++++++++++
 sci-libs/numkit/numkit-1.1.2.ebuild | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 49 insertions(+)

diff --git a/sci-libs/numkit/Manifest b/sci-libs/numkit/Manifest
new file mode 100644
index 00000000000..b11a25b009e
--- /dev/null
+++ b/sci-libs/numkit/Manifest
@@ -0,0 +1 @@
+DIST numkit-1.1.2.tar.gz 243442 BLAKE2B e5d1e4d85b7646acf47a1e332cbb08f849272ada30bcd65fc5995cd000683f802eb882603e4e7043b159d30ca73395988b83c1fc16d6303ea32731bfdea12db5 SHA512 694a56f64282bbbffed975eabeb2716ac924fbf47f5fb62934ba3b57e6415e5f4b079345fd4eee670990fbf7abe1f945b98472aba034d8c7ff259676da58c034

diff --git a/sci-libs/numkit/metadata.xml b/sci-libs/numkit/metadata.xml
new file mode 100644
index 00000000000..f38dc92dab5
--- /dev/null
+++ b/sci-libs/numkit/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>alexxy@gentoo.org</email>
+    <name>Alexey Shvetsov</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>sci-chemistry@gentoo.org</email>
+    <name>Gentoo Chemistry Project</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">Becksteinlab/numkit</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/sci-libs/numkit/numkit-1.1.2.ebuild b/sci-libs/numkit/numkit-1.1.2.ebuild
new file mode 100644
index 00000000000..51a55005054
--- /dev/null
+++ b/sci-libs/numkit/numkit-1.1.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+if [[ $PV = *9999* ]]; then
+	scm_eclass=git-r3
+	EGIT_REPO_URI="https://github.com/Becksteinlab/${PN}.git"
+	EGIT_BRANCH="develop"
+	SRC_URI=""
+	KEYWORDS=""
+else
+	scm_eclass=vcs-snapshot
+	SRC_URI="https://github.com/Becksteinlab/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+fi
+
+inherit eutils distutils-r1 ${scm_eclass}
+
+DESCRIPTION="Numerical first aid kit (with numpy/scipy)"
+HOMEPAGE="https://numkit.readthedocs.io"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+BDEPEND="
+	dev-python/six[${PYTHON_USEDEP}]
+	>=dev-python/numpy-1.9[${PYTHON_USEDEP}]
+	>=sci-libs/scipy-1.0[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/
@ 2020-01-16  7:03 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2020-01-16  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     6878452b092c6ddba0e00d2f5c61314e8024e5aa
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 16 06:50:34 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 16 07:02:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6878452b

sci-libs/numkit: Remove Python 2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/sci-libs/numkit/numkit-1.1.2.ebuild b/sci-libs/numkit/numkit-1.1.2.ebuild
index 19fc0f3c816..8fb64e296e6 100644
--- a/sci-libs/numkit/numkit-1.1.2.ebuild
+++ b/sci-libs/numkit/numkit-1.1.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 if [[ $PV = *9999* ]]; then
 	scm_eclass=git-r3


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/
@ 2021-04-12  1:09 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-04-12  1:09 UTC (permalink / raw
  To: gentoo-commits

commit:     04a4df8b2b01985d63ee09cfc64bf832ab210fcb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 12 00:31:21 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 12 01:07:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04a4df8b

sci-libs/numkit: fix RDEPEND typo

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/numkit/{numkit-1.1.2.ebuild => numkit-1.1.2-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/numkit/numkit-1.1.2.ebuild b/sci-libs/numkit/numkit-1.1.2-r1.ebuild
similarity index 96%
rename from sci-libs/numkit/numkit-1.1.2.ebuild
rename to sci-libs/numkit/numkit-1.1.2-r1.ebuild
index 57d46a51a3f..80b313603db 100644
--- a/sci-libs/numkit/numkit-1.1.2.ebuild
+++ b/sci-libs/numkit/numkit-1.1.2-r1.ebuild
@@ -19,4 +19,4 @@ BDEPEND="
 	dev-python/six[${PYTHON_USEDEP}]
 	>=dev-python/numpy-1.9[${PYTHON_USEDEP}]
 	>=dev-python/scipy-1.0[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
+RDEPEND="${BDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/
@ 2022-01-13 16:13 Alexey Shvetsov
  0 siblings, 0 replies; 6+ messages in thread
From: Alexey Shvetsov @ 2022-01-13 16:13 UTC (permalink / raw
  To: gentoo-commits

commit:     88fafc47865d71b0fe9fef590f5d82bc0d6a92dd
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 13 16:11:53 2022 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Thu Jan 13 16:11:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88fafc47

sci-libs/numkit: Add py 3.10

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>

 sci-libs/numkit/numkit-1.1.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/numkit/numkit-1.1.2-r1.ebuild b/sci-libs/numkit/numkit-1.1.2-r1.ebuild
index 80b313603db7..a47312e24d4f 100644
--- a/sci-libs/numkit/numkit-1.1.2-r1.ebuild
+++ b/sci-libs/numkit/numkit-1.1.2-r1.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
 
-PYTHON_COMPAT=( python3_{7..9} )
+PYTHON_COMPAT=( python3_{7..10} )
 inherit distutils-r1
 
 DESCRIPTION="Numerical first aid kit (with numpy/scipy)"


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/
@ 2023-05-01  9:33 Sam James
  0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-05-01  9:33 UTC (permalink / raw
  To: gentoo-commits

commit:     d2386f75b347f0d4f60d72c03e5cbea0d1b138f2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 09:31:11 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May  1 09:31:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2386f75

sci-libs/numkit: add 1.2.3

Closes: https://bugs.gentoo.org/809776
Closes: https://bugs.gentoo.org/897220
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-libs/numkit/Manifest            |  1 +
 sci-libs/numkit/numkit-1.2.3.ebuild | 26 ++++++++++++++++++++++++++
 2 files changed, 27 insertions(+)

diff --git a/sci-libs/numkit/Manifest b/sci-libs/numkit/Manifest
index b11a25b009e3..2dee1a62be07 100644
--- a/sci-libs/numkit/Manifest
+++ b/sci-libs/numkit/Manifest
@@ -1 +1,2 @@
 DIST numkit-1.1.2.tar.gz 243442 BLAKE2B e5d1e4d85b7646acf47a1e332cbb08f849272ada30bcd65fc5995cd000683f802eb882603e4e7043b159d30ca73395988b83c1fc16d6303ea32731bfdea12db5 SHA512 694a56f64282bbbffed975eabeb2716ac924fbf47f5fb62934ba3b57e6415e5f4b079345fd4eee670990fbf7abe1f945b98472aba034d8c7ff259676da58c034
+DIST numkit-1.2.3.tar.gz 150900 BLAKE2B b729917dd0f1df2710c1eec9f4b6c34495fdb0c6f93271a1fc515fd9111848e80820ea385d96603c5b124cfc65b6d3a9912f13936fca218fe6b32cbee69832b8 SHA512 96317196477a4398432205be5b2eab5263e1f60213ff8b6e99e5a1e44ed1cbec2a535cb3b0c56fc7bb24aada59ad120a3befb802868854e9d15eced2f23d6659

diff --git a/sci-libs/numkit/numkit-1.2.3.ebuild b/sci-libs/numkit/numkit-1.2.3.ebuild
new file mode 100644
index 000000000000..84284156fb45
--- /dev/null
+++ b/sci-libs/numkit/numkit-1.2.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1
+
+DESCRIPTION="Numerical first aid kit (with numpy/scipy)"
+HOMEPAGE="https://numkit.readthedocs.io"
+SRC_URI="https://github.com/Becksteinlab/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-release-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+	dev-python/six[${PYTHON_USEDEP}]
+	>=dev-python/numpy-1.9[${PYTHON_USEDEP}]
+	>=dev-python/scipy-1.0[${PYTHON_USEDEP}]
+"
+RDEPEND="${BDEPEND}"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/
@ 2025-03-22 20:06 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2025-03-22 20:06 UTC (permalink / raw
  To: gentoo-commits

commit:     c04e17d88898448970ec52ac76ca6ade3c8ad281
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 22 20:05:01 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 22 20:06:35 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c04e17d8

sci-libs/numkit: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 sci-libs/numkit/Manifest               |  1 -
 sci-libs/numkit/numkit-1.1.2-r1.ebuild | 22 ----------------------
 2 files changed, 23 deletions(-)

diff --git a/sci-libs/numkit/Manifest b/sci-libs/numkit/Manifest
index 2dee1a62be07..9fb0346ee130 100644
--- a/sci-libs/numkit/Manifest
+++ b/sci-libs/numkit/Manifest
@@ -1,2 +1 @@
-DIST numkit-1.1.2.tar.gz 243442 BLAKE2B e5d1e4d85b7646acf47a1e332cbb08f849272ada30bcd65fc5995cd000683f802eb882603e4e7043b159d30ca73395988b83c1fc16d6303ea32731bfdea12db5 SHA512 694a56f64282bbbffed975eabeb2716ac924fbf47f5fb62934ba3b57e6415e5f4b079345fd4eee670990fbf7abe1f945b98472aba034d8c7ff259676da58c034
 DIST numkit-1.2.3.tar.gz 150900 BLAKE2B b729917dd0f1df2710c1eec9f4b6c34495fdb0c6f93271a1fc515fd9111848e80820ea385d96603c5b124cfc65b6d3a9912f13936fca218fe6b32cbee69832b8 SHA512 96317196477a4398432205be5b2eab5263e1f60213ff8b6e99e5a1e44ed1cbec2a535cb3b0c56fc7bb24aada59ad120a3befb802868854e9d15eced2f23d6659

diff --git a/sci-libs/numkit/numkit-1.1.2-r1.ebuild b/sci-libs/numkit/numkit-1.1.2-r1.ebuild
deleted file mode 100644
index 9197aac551b6..000000000000
--- a/sci-libs/numkit/numkit-1.1.2-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Numerical first aid kit (with numpy/scipy)"
-HOMEPAGE="https://numkit.readthedocs.io"
-S="${WORKDIR}/${PN}-release-${PV}"
-SRC_URI="https://github.com/Becksteinlab/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="
-	dev-python/six[${PYTHON_USEDEP}]
-	>=dev-python/numpy-1.9[${PYTHON_USEDEP}]
-	>=dev-python/scipy-1.0[${PYTHON_USEDEP}]"
-RDEPEND="${BDEPEND}"


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

end of thread, other threads:[~2025-03-22 20:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-23 13:18 [gentoo-commits] repo/gentoo:master commit in: sci-libs/numkit/ Alexey Shvetsov
  -- strict thread matches above, loose matches on Subject: below --
2020-01-16  7:03 Michał Górny
2021-04-12  1:09 Sam James
2022-01-13 16:13 Alexey Shvetsov
2023-05-01  9:33 Sam James
2025-03-22 20:06 Michał Górny

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox