summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-03-21 12:45:38 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-03-21 12:45:38 +0300
commit28adac52a58636572d48b0102b30e7f8f9d7a986 (patch)
tree1cde7cbc28b4ebbd6757f4e15ff5fde6cbaaae7e /dev-python
parentsys-cluster/openmpi: Drop old 2.0.x (diff)
downloadgentoo-28adac52a58636572d48b0102b30e7f8f9d7a986.tar.gz
gentoo-28adac52a58636572d48b0102b30e7f8f9d7a986.tar.bz2
gentoo-28adac52a58636572d48b0102b30e7f8f9d7a986.zip
dev-python/tlslite: remove last-rited pkg
Closes: https://bugs.gentoo.org/691044 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/tlslite/Manifest1
-rw-r--r--dev-python/tlslite/metadata.xml21
-rw-r--r--dev-python/tlslite/tlslite-0.4.9-r2.ebuild34
3 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/tlslite/Manifest b/dev-python/tlslite/Manifest
deleted file mode 100644
index adfffee00838..000000000000
--- a/dev-python/tlslite/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST tlslite-0.4.9.tar.gz 105402 BLAKE2B a26d0938dc713b701d6079263e46f44b23814708d04fef8698bd0b736e10d58ceb5e99dcb1ecdd66a225fc0a697aafdbb97ed46522229d3af7f760daf23f4d86 SHA512 5473139b5730ef946efa139fbb9adb3333dc67f33f03305f4a6d3b6eaaefce950ba93bc1053362fc31b9d68ff9f6deceb9449987e29ff44035b818d7310edbea
diff --git a/dev-python/tlslite/metadata.xml b/dev-python/tlslite/metadata.xml
deleted file mode 100644
index 03969c1ba052..000000000000
--- a/dev-python/tlslite/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <longdescription lang="en">
- TLS Lite is a free python library that implements SSL 3.0, TLS 1.0, and
- TLS 1.1. TLS Lite supports non-traditional authentication methods such
- as SRP, shared keys, and cryptoIDs in addition to X.509 certificates.
- TLS Lite is pure Python, however it can access OpenSSL, cryptlib,
- pycrypto, and GMPY for faster crypto operations. TLS Lite integrates
- with httplib, xmlrpclib, poplib, imaplib, smtplib, SocketServer,
- asyncore, and Twisted.
- </longdescription>
- <upstream>
- <remote-id type="github">trevp/tlslite</remote-id>
- <remote-id type="pypi">tlslite</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/tlslite/tlslite-0.4.9-r2.ebuild b/dev-python/tlslite/tlslite-0.4.9-r2.ebuild
deleted file mode 100644
index 33f6b717d373..000000000000
--- a/dev-python/tlslite/tlslite-0.4.9-r2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-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.org/project/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 ppc x86"
-#Refrain for now setting IUSE test and deps of test given test restricted.
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-# Tests still hang
-python_test() {
- cd tests || die
- "${PYTHON}" "${S}"/tests/tlstest.py client localhost:4443 . || die
- "${PYTHON}" "${S}"/tests/tlstest.py server localhost:4442 . || die
-}
-
-pkg_postinst() {
- optfeature "GMP support" dev-python/gmpy
-}