summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-02 23:40:41 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-03 10:11:10 +0100
commit8416ed6451fe81f267bb7425ddaa848a667a94ab (patch)
tree4b81546f89e7189fa9db159669d418f8161592f1 /dev-python/characteristic
parentdev-python/chameleon: Clean old up (diff)
downloadgentoo-8416ed6451fe81f267bb7425ddaa848a667a94ab.tar.gz
gentoo-8416ed6451fe81f267bb7425ddaa848a667a94ab.tar.bz2
gentoo-8416ed6451fe81f267bb7425ddaa848a667a94ab.zip
dev-python/characteristic: Clean old up
Diffstat (limited to 'dev-python/characteristic')
-rw-r--r--dev-python/characteristic/Manifest1
-rw-r--r--dev-python/characteristic/characteristic-14.1.0.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/characteristic/Manifest b/dev-python/characteristic/Manifest
index 89cee9e1e0fd..7137abeba052 100644
--- a/dev-python/characteristic/Manifest
+++ b/dev-python/characteristic/Manifest
@@ -1,2 +1 @@
-DIST characteristic-14.1.0.tar.gz 24612 BLAKE2B 19720a991602d1c0c41daf003feb16eeaddcec21b51cf60018c5efdb2092d99d37a89b7902f3db677dfe8436d3ae3e6c273234a18d4fc68d6f285825482d13b7 SHA512 21bb40814f405c73471a83e15d1cfb07f74ebd157e647799bedffffd3909271145347eaec8ec09470dddad7224d1a15e8984a75f1fce00bbe20f9e1cb385f9b9
DIST characteristic-14.3.0.tar.gz 26993 BLAKE2B a24548953451da77e08678b8a204c0fc649ebff52026aafc6f80037a65f527c9a2244273420b1ce76e3ac75778f48c11bc2344296cbf34ff1e9a1e82356d52f1 SHA512 e13a86f453cd3688a74188005b82a661a9c73d9f0408d9afe9e0575e69ffe87a5327f51e2c16a9c0a653b738e7c014d5aa08e353835f0aca7897714b7ae56e83
diff --git a/dev-python/characteristic/characteristic-14.1.0.ebuild b/dev-python/characteristic/characteristic-14.1.0.ebuild
deleted file mode 100644
index fb2a02327729..000000000000
--- a/dev-python/characteristic/characteristic-14.1.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Python attributes without the boilerplate"
-HOMEPAGE="https://characteristic.readthedocs.org/ https://github.com/hynek/characteristic"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ppc ppc64 s390 sh x86"
-IUSE="doc test"
-
-RDEPEND=""
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/pytest-cov[${PYTHON_USEDEP}] )
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_prepare_all() {
- # Prevent un-needed download during build
- sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die
- distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- esetup.py test -a "--cov characteristic --cov-report term-missing"
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}