dev-python/webencodings: Clean old up

This commit is contained in:
Michał Górny
2018-01-06 10:54:14 +01:00
parent c5b7aa97a0
commit 47d14f4fdf
2 changed files with 0 additions and 37 deletions

View 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

View File

@@ -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
}