dev-python/webencodings: Clean old up
authorMichał Górny <mgorny@gentoo.org>
Sat, 6 Jan 2018 09:54:14 +0000 (10:54 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sat, 6 Jan 2018 13:39:15 +0000 (14:39 +0100)
dev-python/webencodings/Manifest
dev-python/webencodings/webencodings-0.5.ebuild [deleted file]

index f677a6f1b4baf86c4c8beec7cf5c8e09e950c8c8..25b9ea7385280dc67083263838746e1eea412be4 100644 (file)
@@ -1,2 +1 @@
 DIST webencodings-0.5.1.tar.gz 9721 BLAKE2B f62ee91cf0230f55bfbe9973a621bbaf3aa250f511b2e1e2c0c6db00bf52760bb058957040600cb33d6f9208987302a70783b04325be4ff344c428a43664290a SHA512 b727b01bac6ec79bca517960d27b4c0668b295f25559471b9641c2c33dab55db6dac9c990952177964c6418382c22831b14d57df5e632d51d7abf97b61f24326
-DIST webencodings-0.5.tar.gz 9479 BLAKE2B 87925c4e7958fbc00f7b82c84180aed47434c16b479b432015950d40a502587e5f4648029d60c313d62b38e0333c311cbd13d13260a3b55ceffef6bb646b01ce SHA512 3f0c1995d23a8ccf8f0b02301edec5834336c27b7daf2335ded888073a1f13058acd93477cd020bb2b12d51b393d9b3166acf4995564cb9751ace8df35a891c2
diff --git a/dev-python/webencodings/webencodings-0.5.ebuild b/dev-python/webencodings/webencodings-0.5.ebuild
deleted file mode 100644 (file)
index b907e4c..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Character encoding aliases for legacy web content"
-HOMEPAGE="https://github.com/SimonSapin/python-webencodings http://pypi.python.org/pypi/webencodings"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-       dev-python/setuptools[${PYTHON_USEDEP}]
-       test? (
-               dev-python/pytest[${PYTHON_USEDEP}]
-       )"
-
-python_prepare_all(){
-       cat >> setup.cfg <<- EOF
-       [pytest]
-       python_files=test*.py
-       EOF
-       distutils-r1_python_prepare_all
-}
-
-python_test() {
-       py.test -v -v || die
-}