dev-python/tlslite: Clean old up

This commit is contained in:
Michał Górny
2018-01-06 10:47:00 +01:00
parent c8c8cf7d7d
commit 69a3bbc4d4
2 changed files with 0 additions and 34 deletions

View File

@@ -1,2 +1 @@
DIST tlslite-0.4.3.tar.gz 562090 BLAKE2B d31f686f2200a4fd0c6cdbad21620e55be5614c23eebb148fc2b91b85b7aa13022f3d3919123751d8b4bddff0008653260b573c86d100717b5a1398a0397fe44 SHA512 d1f451ebc2f7bd4d5436f1ca8ecfdbaa403f3dbbae9f9ac3900131e5d168e3267e22fcf23d85f87457f06468997cb01a51683d028a67fde58820b15f97689a0c
DIST tlslite-0.4.9.tar.gz 105402 BLAKE2B a26d0938dc713b701d6079263e46f44b23814708d04fef8698bd0b736e10d58ceb5e99dcb1ecdd66a225fc0a697aafdbb97ed46522229d3af7f760daf23f4d86 SHA512 5473139b5730ef946efa139fbb9adb3333dc67f33f03305f4a6d3b6eaaefce950ba93bc1053362fc31b9d68ff9f6deceb9449987e29ff44035b818d7310edbea

View File

@@ -1,33 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 eutils
DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 1.0/1.1"
HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite https://github.com/trevp/tlslite"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
#Refrain for now setting IUSE test and deps of test given test restricted.
IUSE="doc gmp"
RESTRICT="test"
DEPEND=""
RDEPEND="${DEPEND}"
# Tests still hang
python_test() {
"${S}"/tests/tlstest.py client localhost:4443 .
"${S}"/tests/tlstest.py server localhost:4442 .
}
python_install_all(){
distutils-r1_python_install_all
use doc && dohtml -r docs/
}