summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-09-18 22:08:38 +0200
committerMichał Górny <mgorny@gentoo.org>2021-09-18 22:57:00 +0200
commit54e0cf99d5803cc1ca027f5e02b7809756a2c69e (patch)
tree4153cefafd29c676f361693f05eebe979f56f700 /dev-python/quantities
parentdev-python/pyglet: Remove old (diff)
downloadgentoo-54e0cf99d5803cc1ca027f5e02b7809756a2c69e.tar.gz
gentoo-54e0cf99d5803cc1ca027f5e02b7809756a2c69e.tar.bz2
gentoo-54e0cf99d5803cc1ca027f5e02b7809756a2c69e.zip
dev-python/quantities: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/quantities')
-rw-r--r--dev-python/quantities/Manifest1
-rw-r--r--dev-python/quantities/quantities-0.12.4.ebuild36
2 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/quantities/Manifest b/dev-python/quantities/Manifest
index bbd182155d6e..3516beb4dda5 100644
--- a/dev-python/quantities/Manifest
+++ b/dev-python/quantities/Manifest
@@ -1,2 +1 @@
-DIST python-quantities-0.12.4.tar.gz 104093 BLAKE2B 84587726ef3c2f4c7dce4ea538363aecc42aa88c31d2990f834f2de9540b52d6ca0c437c1876a4c2dd5512b4be3af95cc64a1294ea60555ed1b51819f7f46125 SHA512 b5d181880d0789e6fbd55837c5ce65b677764a718be4550f1f553131e171caa59f8fc84d67e69563a293cda01e7b0678074fb311b3766f0013e658a9fa00471f
DIST python-quantities-0.12.5.tar.gz 105130 BLAKE2B db1cf09fa2efc249bc722abe34ed71d0f59d85595f70baf44203785c32179a3598be8aac225adadfd7d5f09c44ec077dcef310ee2fe7ce4d49a1533b04cb9de6 SHA512 db81e45d464e65d6b144d05e1b990fccc5c17ab7fdd47c7bb0c0094ebcacd6af52a3692492561af3a694741810ddac03e4c887d7c6effed833f196493da5f156
diff --git a/dev-python/quantities/quantities-0.12.4.ebuild b/dev-python/quantities/quantities-0.12.4.ebuild
deleted file mode 100644
index 6a7c1364b3f6..000000000000
--- a/dev-python/quantities/quantities-0.12.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PN="python-quantities"
-MY_PV="$(ver_cut 1-3)"
-MY_P="${MY_PN}-${PV}"
-
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-DESCRIPTION="Support for physical quantities with units, based on numpy"
-HOMEPAGE="https://github.com/python-quantities/python-quantities"
-SRC_URI="https://github.com/python-quantities/${MY_PN}/archive/v${MY_PV}.tar.gz -> ${MY_PN}-${MY_PV}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- dev-python/numpy[$PYTHON_USEDEP]
-"
-
-distutils_enable_tests unittest
-
-python_prepare_all() {
- # Unexpected success
- sed -i -e 's:test_fix:_&:' \
- quantities/tests/test_umath.py || die
-
- distutils-r1_python_prepare_all
-}