public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrey Grozin" <grozin@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/mpmath/
Date: Tue,  2 Oct 2018 13:46:42 +0000 (UTC)	[thread overview]
Message-ID: <1538487972.65b0330bbfb83ff48b70582481db0fa2ae7a3e51.grozin@gentoo> (raw)

commit:     65b0330bbfb83ff48b70582481db0fa2ae7a3e51
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  2 13:46:12 2018 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Tue Oct  2 13:46:12 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65b0330b

dev-python/mpmath: cleaning old versions

Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-python/mpmath/Manifest              |  1 -
 dev-python/mpmath/mpmath-0.19-r1.ebuild | 62 ---------------------------------
 dev-python/mpmath/mpmath-0.19-r2.ebuild | 62 ---------------------------------
 3 files changed, 125 deletions(-)

diff --git a/dev-python/mpmath/Manifest b/dev-python/mpmath/Manifest
index 0cfa09cfc3d..ff89cb05b2c 100644
--- a/dev-python/mpmath/Manifest
+++ b/dev-python/mpmath/Manifest
@@ -1,2 +1 @@
 DIST mpmath-1.0.0.tar.gz 511349 BLAKE2B 62c6275f76c412043cdafef51815e4b5d055a63ca36f3f63b33957351b19e03419ca27f7d59641c580cf8e47c1ca45240b68b3040e2749b3de679eb45b15a28e SHA512 b225f237008e1cfee52b2f0dca0dce1445b932b6eaef92879d7feca30d728e3f88810bfa80882ad8776ba846a636807e59bebe0b9f690cd878c089e9418bd8b7
-DIST mpmath-all-0.19.tar.gz 2123129 BLAKE2B df7e6255f09362a4203716a5d70036b712d069cc08c09613cabd6d1a88ab5155610f5fe5d2f33db3ed241322e92e93301c54c9cba777c0fbedfb5c891ffa3db0 SHA512 5a6ed0b5fad84c1e8399467ea7a1295f9b77c8e673b821c11e3298e88df6c48d9967eed84e2979bf12868e2f9b42bffba01a0c1836a6d82ac42d5f423fed6580

diff --git a/dev-python/mpmath/mpmath-0.19-r1.ebuild b/dev-python/mpmath/mpmath-0.19-r1.ebuild
deleted file mode 100644
index 85fc57bbf39..00000000000
--- a/dev-python/mpmath/mpmath-0.19-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit distutils-r1 eutils
-
-MY_PN=${PN}-all
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
-HOMEPAGE="http://mpmath.org/"
-SRC_URI="http://mpmath.org/files/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-
-IUSE="doc examples gmp matplotlib test"
-
-RDEPEND="
-	gmp? ( dev-python/gmpy )
-	matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
-DEPEND="${RDEPEND}
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-S="${WORKDIR}/${MY_P}"
-
-python_prepare_all() {
-	local PATCHES=(
-		"${FILESDIR}/${PN}.patch"
-		)
-
-	# this fails with the current version of dev-python/py
-	rm ${PN}/conftest.py || die
-
-	# this test requires X
-	rm ${PN}/tests/test_visualization.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-	if use doc; then
-		einfo "Generation of documentation"
-		cd doc || die
-		"${PYTHON}" build.py || die "Generation of documentation failed"
-	fi
-}
-
-python_test() {
-	py.test -v || die
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( doc/build/. )
-	use examples && local EXAMPLES=( demo/. )
-	distutils-r1_python_install_all
-}

diff --git a/dev-python/mpmath/mpmath-0.19-r2.ebuild b/dev-python/mpmath/mpmath-0.19-r2.ebuild
deleted file mode 100644
index 3bd7c37eb1c..00000000000
--- a/dev-python/mpmath/mpmath-0.19-r2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit distutils-r1 eutils
-
-MY_PN=${PN}-all
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
-HOMEPAGE="http://mpmath.org/"
-SRC_URI="http://mpmath.org/files/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-
-IUSE="doc examples gmp matplotlib test"
-
-RDEPEND="
-	gmp? ( dev-python/gmpy )
-	matplotlib? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
-DEPEND="${RDEPEND}
-	doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-S="${WORKDIR}/${MY_P}"
-
-python_prepare_all() {
-	local PATCHES=(
-		"${FILESDIR}/${PN}.patch"
-		)
-
-	# this fails with the current version of dev-python/py
-	rm ${PN}/conftest.py || die
-
-	# this test requires X
-	rm ${PN}/tests/test_visualization.py || die
-
-	distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-	if use doc; then
-		einfo "Generation of documentation"
-		cd doc || die
-		"${PYTHON}" build.py || die "Generation of documentation failed"
-	fi
-}
-
-python_test() {
-	py.test -v || die
-}
-
-python_install_all() {
-	use doc && local HTML_DOCS=( doc/build/. )
-	use examples && local EXAMPLES=( demo/. )
-	distutils-r1_python_install_all
-}


             reply	other threads:[~2018-10-02 13:46 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-02 13:46 Andrey Grozin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-09-09 19:55 [gentoo-commits] repo/gentoo:master commit in: dev-python/mpmath/ Arthur Zamarin
2024-08-31  4:48 Sam James
2024-08-30 14:59 Ionen Wolkens
2024-08-30 14:59 Ionen Wolkens
2024-08-29 16:33 Arthur Zamarin
2024-08-29 14:28 Ionen Wolkens
2024-08-29 14:28 Ionen Wolkens
2024-08-29 14:28 Ionen Wolkens
2024-08-29 14:28 Ionen Wolkens
2024-08-12 22:05 Jakov Smolić
2024-08-12 22:05 Jakov Smolić
2024-07-20 11:24 Arthur Zamarin
2024-07-20 11:24 Arthur Zamarin
2023-11-24 15:22 Arthur Zamarin
2023-11-17 16:51 Michał Górny
2023-11-05 20:58 Michał Górny
2023-10-05 17:25 Arthur Zamarin
2023-03-11 10:25 Michał Górny
2023-03-11  9:49 Michał Górny
2023-03-11  9:49 Michał Górny
2023-03-11  9:49 Michał Górny
2023-03-07 16:58 Sam James
2022-09-22 14:29 Marek Szuba
2022-06-04 19:57 Michał Górny
2021-11-22  3:07 Yixun Lan
2021-09-03 14:41 Arthur Zamarin
2021-09-03 14:41 Arthur Zamarin
2021-09-03 14:41 Arthur Zamarin
2021-03-15  3:50 Sam James
2021-03-15  3:50 Sam James
2021-02-09 18:48 Michał Górny
2021-02-03 10:48 Sam James
2020-10-27 19:58 Sam James
2020-08-02  6:46 Michał Górny
2020-08-02  6:46 Michał Górny
2020-08-02  6:46 Michał Górny
2020-07-12 16:57 Michał Górny
2020-05-13 10:08 Agostino Sarubbo
2020-05-12 13:05 Agostino Sarubbo
2020-04-29 16:40 Pacho Ramos
2020-01-17 10:02 Michał Górny
2017-12-02 20:55 Mike Gilbert
2017-10-02 14:02 Andrey Grozin
2017-03-30 18:25 Andrey Grozin
2017-03-30 18:21 Andrey Grozin
2017-02-02 18:43 David Seifert
2016-12-29 10:05 Agostino Sarubbo
2016-03-18 20:48 Andrey Grozin

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=1538487972.65b0330bbfb83ff48b70582481db0fa2ae7a3e51.grozin@gentoo \
    --to=grozin@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