dev-python/characteristic: Clean old up
authorMichał Górny <mgorny@gentoo.org>
Tue, 2 Jan 2018 22:40:41 +0000 (23:40 +0100)
committerMichał Górny <mgorny@gentoo.org>
Wed, 3 Jan 2018 09:11:10 +0000 (10:11 +0100)
dev-python/characteristic/Manifest
dev-python/characteristic/characteristic-14.1.0.ebuild [deleted file]

index 89cee9e1e0fd831559d66969b5d5af6befbbdeda..7137abeba052d89475fd14320f9565e051a268c2 100644 (file)
@@ -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 (file)
index fb2a023..0000000
+++ /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
-}