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: Wed, 3 May 2017 07:37:46 +0000 (UTC) [thread overview]
Message-ID: <1493797056.9a2aedd1036efcff52e36b62c2fa2efdcc1c08eb.mgorny@gentoo> (raw)
commit: 9a2aedd1036efcff52e36b62c2fa2efdcc1c08eb
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 3 06:43:10 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 3 07:37:36 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a2aedd1
dev-python/numpydoc: Clean old versions up
dev-python/numpydoc/Manifest | 2 --
dev-python/numpydoc/numpydoc-0.4-r1.ebuild | 33 ----------------------------
dev-python/numpydoc/numpydoc-0.5.ebuild | 35 ------------------------------
3 files changed, 70 deletions(-)
diff --git a/dev-python/numpydoc/Manifest b/dev-python/numpydoc/Manifest
index 9893c5dac48..c40a18150bd 100644
--- a/dev-python/numpydoc/Manifest
+++ b/dev-python/numpydoc/Manifest
@@ -1,3 +1 @@
-DIST numpydoc-0.4.tar.gz 28972 SHA256 20e07c60766a7a044f228de5bdcc0d10b84a9f0b460e0c09422a4f60ef21ff8f SHA512 980c3f56562b0faff4a8f453faff36d8ed92ca7241174c16fe0cc7d60e0d250e6674b6dc2aa98906922f5ccdd0800222b724f759d96174648147ca12e710e574 WHIRLPOOL 8eac57ebcc2eca69b89f98c053332380d902fc1d20dc46bf06768150f14e48b5cf77c203ebf4001766fde05ba9c80ad3bc94ce105ac9e32466c58fc48c64fdad
-DIST numpydoc-0.5.tar.gz 32051 SHA256 93f050bceb52489d92f85c346981f1962c867c01f233d3252894ceae5cb48d34 SHA512 f5ddd07103f3eadad979ddca2bfb4b1681fb783e58de80fbb2cbcb85dcdbe2340f708c94c9d494dce44ac3b1dff1b4b7bcf57231c2eb848f9468b72cec03b038 WHIRLPOOL dbb713f97c0a0a02ae06fd0d2190b2d52471a7ab1c1dcd5bbcf7df98111c97818a32c53c7857648e6c6788818f39b184de6544480382fc011e4a6a52ea43ba1d
DIST numpydoc-0.6.0.tar.gz 32464 SHA256 1ec573e91f6d868a9940d90a6599f3e834a2d6c064030fbe078d922ee21dcfa1 SHA512 aa86854cfba93f27540eee8a7937c81fe006e1d96b556b66ac643d9673b413fac357762068ca5675f265c7d2a80b0ba000416f5ddf3fbac2bfe4315fe0f48aa7 WHIRLPOOL da0615ef43ad45c0d016bf940092b87c32b2ae21ea25ba695931e40a301412a56c12277ff4cead7645b75f3a4bd3f13e077ad9b60684a35da98929b3c6ca6aeb
diff --git a/dev-python/numpydoc/numpydoc-0.4-r1.ebuild b/dev-python/numpydoc/numpydoc-0.4-r1.ebuild
deleted file mode 100644
index 8ffe38c045f..00000000000
--- a/dev-python/numpydoc/numpydoc-0.4-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Sphinx extension to support docstrings in Numpy format"
-HOMEPAGE="https://pypi.python.org/pypi/numpydoc"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="test"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/sphinx[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- test? ( dev-python/nose[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- chmod -R a+r *.egg-info || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- # Tests are written only for py2m pypy
- if ! python_is_python3; then
- nosetests || die "Testing failed with ${EPYTHON}"
- fi
-}
diff --git a/dev-python/numpydoc/numpydoc-0.5.ebuild b/dev-python/numpydoc/numpydoc-0.5.ebuild
deleted file mode 100644
index 10d27bcd251..00000000000
--- a/dev-python/numpydoc/numpydoc-0.5.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Sphinx extension to support docstrings in Numpy format"
-HOMEPAGE="https://pypi.python.org/pypi/numpydoc"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="test"
-
-RDEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/sphinx[${PYTHON_USEDEP}]"
-DEPEND="
- test? ( ${RDEPEND}
- dev-python/nose[${PYTHON_USEDEP}]
- >=dev-python/matplotlib-1.4.0[${PYTHON_USEDEP}]
- )"
-
-python_prepare_all() {
- chmod -R a+r *.egg-info || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- nosetests --verbose || die "Testing failed with ${EPYTHON}"
-}
next reply other threads:[~2017-05-03 7:38 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-03 7:37 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-19 20:22 [gentoo-commits] repo/gentoo:master commit in: dev-python/numpydoc/ Michał Górny
2024-08-24 13:06 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-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=1493797056.9a2aedd1036efcff52e36b62c2fa2efdcc1c08eb.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