add ssdp-1.0.1

This commit is contained in:
Andreas Billmeier 2021-07-13 20:58:45 +02:00 committed by Andreas Billmeier
parent 5bc36e0c40
commit d5a883b3bf
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 52 additions and 0 deletions

3
dev-python/ssdp/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST ssdp-1.0.1.tar.gz 6143 BLAKE2B 2b4bb343512a1072a3479d742cdfb7aa7d02c2f9f09a391e85df3a275da0f5da37233ad9fece4aecceb9e11a23180a16ea2c93e2cb45b93ce402c7d1f90e666b SHA512 eb1c596a7a077e79acb068fa86a0463dcbd891f9855e41819f813b8a2ff8221b8fdada3b370c6e53c3a224e3584ec327b793fda122d4b89e11f4d07e239606dc
EBUILD ssdp-1.0.1.ebuild 809 BLAKE2B 25a1f399c67dac2bfeff60d0e3e6aa305df02b54b0ec94d5f98610a6fda61d4f9db7ed79f6951134cb9d2c0ee2ca2f063e9f20e0cc7c303a0cd006e9c48fccd7 SHA512 a338d76ac0ff31feedb4be754a48be530b007039cec3c5bb02752fa94e8f2dc1f7e42fc1c34b34ed90728dc8b9ee82343bd89a770c32378413693861f12ab189
MISC metadata.xml 453 BLAKE2B ea4da6ebfe9a4d9fcaa4141e72c3a6c2bf0a359f4b41c414a77f3ff8ce37605352cabca700a8c3d2137a25bb8552fb4f78a729eaa223fab7b5861d28d0e7f76c SHA512 331db20f8424a7570dff66fd487157948961cf1ab4027a3c76c0e561ac1643ecb7bd8e9bc5a3b343635e2e5bfc03f495b0c87f609a482f309c90670551b344ee

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">ssdp</remote-id>
<maintainer status="unknown">
<email>info@johanneshoppe.com</email>
<name>Johannes Hoppe</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,34 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python asyncio library for Simple Service Discovery Protocol (SSDP)."
HOMEPAGE="https://github.com/codingjoe/ssdp https://pypi.org/project/ssdp/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT License"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pytest-runner[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}