summaryrefslogtreecommitdiff
path: root/dev-python/pure-sasl
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pure-sasl')
-rw-r--r--dev-python/pure-sasl/Manifest3
-rw-r--r--dev-python/pure-sasl/metadata.xml10
-rw-r--r--dev-python/pure-sasl/pure-sasl-0.6.1.ebuild31
3 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/pure-sasl/Manifest b/dev-python/pure-sasl/Manifest
deleted file mode 100644
index c9cae016c42b..000000000000
--- a/dev-python/pure-sasl/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST pure-sasl-0.6.1.tar.gz 11553 BLAKE2B 17a3728e23b04cfcebd967ec4e40ab40ae72ebd18325579dfac52dbeac58ebee6e467f32a8030214cd976b2ae96e446afbc853c3e4233a61fa149d2910b1ecfc SHA512 f0e34fba460b03fb2348871859f79a21ac27df4be8b125a1652891efacd428a560673f42dff0993e87a3d80439f182e3a6e07b7c968cbfa3c86311c1592822a2
-EBUILD pure-sasl-0.6.1.ebuild 659 BLAKE2B fc7063d1fa80b97a82db0f2ccf49a8a5598be817fcf6a28d20947fdf22efd09bf8b30d1ea870c87d40f3bcbc6ede6a3674122e07483a7b1b64c45e9a01ee9462 SHA512 fefc7a6210f5057f78a02fcc91ade4fd9a151b536e162bfa3d16c647e65ea489b3fdeabec1b841147e91bf06aaaedf5d4e75e706ab418ea71b490d0bf8c6a91d
-MISC metadata.xml 290 BLAKE2B 8322f8c63c45531adea5bd73247270fcae565ba12ae0221d2eea4e2ac4583b55d280a9b8b9d4a27fdc87241105e9d445a27af256eb582b66bafda7d3f3715978 SHA512 79dcc8edca6d81bd09ead2069b1cee3798544aa6517e433c811a794a058a101c858968999d5083a9b93ae1471e9d288e35f6d0e6f98a376e75088b87dccdf844
diff --git a/dev-python/pure-sasl/metadata.xml b/dev-python/pure-sasl/metadata.xml
deleted file mode 100644
index c36b85044fde..000000000000
--- a/dev-python/pure-sasl/metadata.xml
+++ /dev/null
@@ -1,10 +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>
- </maintainer>
- <upstream>
- <remote-id type="pypi">pure-sasl</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pure-sasl/pure-sasl-0.6.1.ebuild b/dev-python/pure-sasl/pure-sasl-0.6.1.ebuild
deleted file mode 100644
index 7c6464c060d9..000000000000
--- a/dev-python/pure-sasl/pure-sasl-0.6.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_7 )
-inherit distutils-r1
-
-DESCRIPTION="High-level SASL client written in pure Python"
-HOMEPAGE="https://github.com/thobbs/pure-sasl"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- test? (
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/nose[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
- )"
-
-# tests aren't in dist tarball
-RESTRICT="test"
-
-python_test() {
- nosetests -v || die
-}