From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numpydoc/
Date: Sat, 24 Aug 2024 13:06:40 +0000 (UTC) [thread overview]
Message-ID: <1724504295.a0f369004d8e7016c0d14adf245700d41c1c248f.mgorny@gentoo> (raw)
commit: a0f369004d8e7016c0d14adf245700d41c1c248f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 12:58:15 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 12:58:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0f36900
dev-python/numpydoc: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/numpydoc/Manifest | 2 --
dev-python/numpydoc/numpydoc-1.7.0.ebuild | 50 --------------------------
dev-python/numpydoc/numpydoc-1.8.0_rc2.ebuild | 52 ---------------------------
3 files changed, 104 deletions(-)
diff --git a/dev-python/numpydoc/Manifest b/dev-python/numpydoc/Manifest
index db9965b10791..845c3cd8bd3f 100644
--- a/dev-python/numpydoc/Manifest
+++ b/dev-python/numpydoc/Manifest
@@ -1,3 +1 @@
-DIST numpydoc-1.7.0.gh.tar.gz 87818 BLAKE2B b31e9478324bc45d78904c16330c9ed1513eca5668f20472faf9e2a36c0ed7eb03b18cf1c314180ec35716a26bd05357d5ef93025efbb8fb09c885a614ac7ea9 SHA512 0858d7eaafdd93d5a0894bb107b8238f75bd7cd34afa64fee38effcf4bebf9b4db957768143a46eec46023e69b53599a79b07a39640887f3a0471b5996022247
DIST numpydoc-1.8.0.gh.tar.gz 90624 BLAKE2B 112274fa185bd48909a3fbe0cd2a98465f94b30207060234a396278e1802058224164fb6f3c492a6b1e76b7e0f7966ecaf6c592c96675e6e45fae044414f62c7 SHA512 d7ea64f1140395815e0d95697d1b855ba0a5f63fc99e8cf1fb7d240cd799be1958c2efd034cbec64c8b3b1742076c8b7db5a0ddc54af3ef39fc341ea0e3ec586
-DIST numpydoc-1.8.0rc2.gh.tar.gz 90642 BLAKE2B cf47c0a2865ab5579c7f095607a58fe3db4e64ccf521e052797e4286d74351017ebe9c300b968f3f2f799fc0fc07f3d8eebbef59e1f1aab269ededf6d0a8bd12 SHA512 f323ca5fc62ba37af10a8d892b22a348ca3b2ecd9faa3bd885f0b233f51e169e8d86eb364bd0155bb8c9daee9185866f962e586123758555dae03ef46f437450
diff --git a/dev-python/numpydoc/numpydoc-1.7.0.ebuild b/dev-python/numpydoc/numpydoc-1.7.0.ebuild
deleted file mode 100644
index 7181e5ae6da1..000000000000
--- a/dev-python/numpydoc/numpydoc-1.7.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx extension to support docstrings in Numpy format"
-HOMEPAGE="
- https://numpydoc.readthedocs.io/en/latest/
- https://github.com/numpy/numpydoc/
- https://pypi.org/project/numpydoc/
-"
-SRC_URI="
- https://github.com/numpy/numpydoc/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-
-RDEPEND="
- >=dev-python/sphinx-6[${PYTHON_USEDEP}]
- >=dev-python/tabulate-0.8.10[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- >=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
- ' 3.10)
-"
-BDEPEND="
- test? (
- >=dev-python/matplotlib-3.2.1[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # these require Internet (intersphinx)
- numpydoc/tests/test_full.py::test_MyClass
- numpydoc/tests/test_full.py::test_my_function
- # TODO
- numpydoc/tests/test_validate.py::test_extract_ignore_validation_comments
- )
- epytest -o addopts= --pyargs numpydoc
-}
diff --git a/dev-python/numpydoc/numpydoc-1.8.0_rc2.ebuild b/dev-python/numpydoc/numpydoc-1.8.0_rc2.ebuild
deleted file mode 100644
index 14e88a8725d4..000000000000
--- a/dev-python/numpydoc/numpydoc-1.8.0_rc2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1
-
-MY_P=${P/_}
-DESCRIPTION="Sphinx extension to support docstrings in Numpy format"
-HOMEPAGE="
- https://numpydoc.readthedocs.io/en/latest/
- https://github.com/numpy/numpydoc/
- https://pypi.org/project/numpydoc/
-"
-SRC_URI="
- https://github.com/numpy/numpydoc/archive/v${PV/_}.tar.gz
- -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
-
-RDEPEND="
- >=dev-python/sphinx-6[${PYTHON_USEDEP}]
- >=dev-python/tabulate-0.8.10[${PYTHON_USEDEP}]
- $(python_gen_cond_dep '
- >=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
- ' 3.10)
-"
-BDEPEND="
- test? (
- >=dev-python/matplotlib-3.2.1[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=(
- # these require Internet (intersphinx)
- numpydoc/tests/test_full.py::test_MyClass
- numpydoc/tests/test_full.py::test_my_function
- # TODO
- numpydoc/tests/test_validate.py::test_extract_ignore_validation_comments
- )
- epytest -o addopts= --pyargs numpydoc
-}
next reply other threads:[~2024-08-24 13:06 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-24 13:06 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-07-12 11:42 [gentoo-commits] repo/gentoo:master commit in: dev-python/numpydoc/ Michał Górny
2025-06-25 4:35 Michał Górny
2025-02-19 20:22 Michał Górny
2024-08-24 8:10 Sam James
2024-08-10 5:26 Michał Górny
2024-07-25 3:12 Michał Górny
2024-06-30 11:51 Petr Vaněk
2024-05-27 15:30 Michał Górny
2024-04-13 16:01 Arthur Zamarin
2024-03-30 5:53 Michał Górny
2023-11-10 5:47 Viorel Munteanu
2023-10-28 15:23 Michał Górny
2023-10-28 15:23 Michał Górny
2023-10-27 19:32 Sam James
2023-09-26 4:42 Michał Górny
2022-11-10 19:25 Arthur Zamarin
2022-11-10 19:03 Arthur Zamarin
2022-10-10 14:04 Michał Górny
2022-08-31 12:38 Andrew Ammerlaan
2022-07-10 19:09 Michał Górny
2022-07-10 16:58 Sam James
2022-06-10 8:25 Michał Górny
2022-05-27 19:53 Michał Górny
2022-05-27 9:21 Jakov Smolić
2022-05-01 6:41 Michał Górny
2022-04-30 7:35 Michał Górny
2022-04-26 10:56 Michał Górny
2022-04-15 6:52 Sam James
2022-03-15 14:17 Michał Górny
2022-03-15 12:33 Jakov Smolić
2022-01-29 22:13 James Le Cuirot
2022-01-24 22:14 Michał Górny
2022-01-17 5:33 Joshua Kinard
2021-11-18 8:10 Sam James
2021-11-14 20:35 Sam James
2021-10-14 12:12 Arthur Zamarin
2021-10-14 12:12 Arthur Zamarin
2021-09-08 16:19 Sam James
2021-09-06 0:18 Sam James
2021-06-20 1:55 Sam James
2021-05-31 20:31 Michał Górny
2020-11-29 21:02 Sam James
2020-08-14 5:10 Sam James
2020-07-09 13:01 Michał Górny
2020-07-05 6:09 Michał Górny
2020-06-08 20:18 Michał Górny
2020-06-01 20:30 Michał Górny
2020-05-30 19:48 Michał Górny
2020-05-30 16:20 Michał Górny
2020-05-30 8:56 Michał Górny
2020-05-29 17:23 Michał Górny
2020-05-18 10:40 Michał Górny
2020-04-26 3:12 Patrick McLean
2020-03-25 13:25 Michał Górny
2020-03-25 13:25 Michał Górny
2020-02-26 17:50 Rick Farina
2020-02-26 17:32 Rick Farina
2020-01-29 16:26 Michał Górny
2019-12-03 3:02 Aaron Bauman
2019-05-02 15:11 Virgil Dupras
2019-04-27 18:50 Virgil Dupras
2018-02-25 21:52 Sergei Trofimovich
2017-07-17 13:29 Alexis Ballier
2017-06-28 4:02 Sebastien Fabbro
2017-05-03 7:37 Michał Górny
2017-03-16 7:06 Michael Weber
2017-03-12 12:31 Zac Medico
2017-02-02 18:43 David Seifert
2017-01-29 17:15 Fabian Groffen
2017-01-22 15:01 Agostino Sarubbo
2017-01-21 18:54 Agostino Sarubbo
2016-02-13 16:27 Kacper Kowalik
2015-10-19 16:29 Justin Lecher
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=1724504295.a0f369004d8e7016c0d14adf245700d41c1c248f.mgorny@gentoo \
--to=mgorny@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox