summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-01-06 10:54:14 +0100
committerMichał Górny <mgorny@gentoo.org>2018-01-06 14:39:15 +0100
commit47d14f4fdf3c5ddbf59d10b7e1380d4157b8bb1a (patch)
tree40d01e35fa9c64005c098665c9ed2fad2d263532 /dev-python/webencodings
parentdev-python/weasyprint: Clean old up (diff)
downloadgentoo-47d14f4fdf3c5ddbf59d10b7e1380d4157b8bb1a.tar.gz
gentoo-47d14f4fdf3c5ddbf59d10b7e1380d4157b8bb1a.tar.bz2
gentoo-47d14f4fdf3c5ddbf59d10b7e1380d4157b8bb1a.zip
dev-python/webencodings: Clean old up
Diffstat (limited to 'dev-python/webencodings')
-rw-r--r--dev-python/webencodings/Manifest1
-rw-r--r--dev-python/webencodings/webencodings-0.5.ebuild36
2 files changed, 0 insertions, 37 deletions
diff --git a/dev-python/webencodings/Manifest b/dev-python/webencodings/Manifest
index f677a6f1b4ba..25b9ea738528 100644
--- a/dev-python/webencodings/Manifest
+++ b/dev-python/webencodings/Manifest
@@ -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
index b907e4c822c4..000000000000
--- a/dev-python/webencodings/webencodings-0.5.ebuild
+++ /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
-}