add mill-local-0.1.0

This commit is contained in:
Andreas Billmeier 2021-12-04 23:11:00 +01:00 committed by Andreas Billmeier
parent 178504e9ce
commit 55041e6e6b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST mill-local-0.1.0.tar.gz 4836 BLAKE2B cd8e736e59d69ea387943976dc28f1b501a3ea57b20872ec3ff1ba8eb102c9efa0640dbfb5c129ffbe6e4e29138c01e54ed146c654fb23fd2e5c83a3e631918a SHA512 d73836c5297f3405ef5f51a9dfc6cb8285feadeb17ccb3bc1596e155910294e8e26660e8faa846c25782070b05f4120639b4dd04a3e2b790f3ae5700662d331c
EBUILD mill-local-0.1.0.ebuild 873 BLAKE2B 7cb5159b5f38673ae07ee914f4940b1c158dca1fcb39ea98ec0f1cfa9adf6d6a91a5446453c4aba1b30e90a86ba42013364d6f18c3dd0342879389517774c2f8 SHA512 1c43d6f5a0622fa07924a6a289036a04953bda3935a6926a59eb625b3bd3763bc0ef0da97471319b8a6605f5c081add0d5bf4db0335fad16574bec712a39c1f7
MISC metadata.xml 460 BLAKE2B d2ebf9326dcabd74068e5f4f38f9e80efdca24809c1bab757bee431aeda6a3c7614ae8663dab77446059c81220c3f90b4e777d66173db8f3eea7bc43f3ad4b4a SHA512 da1549b1362e5f36c8c6e61bec80eda94d5ef887edb95b6291062aee19a1b1e6fcb5f918ea0c0ccd6983ec1950c020c00acc1f9094b2a88296b49b7022b343f4

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">mill-local</remote-id>
<maintainer status="unknown">
<email>mail@dahoiv.net</email>
<name>Daniel Hjelseth Høyer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,35 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A python3 library to communicate with Mill"
HOMEPAGE="https://github.com/Danielhiversen/pyMillLocal https://pypi.org/project/mill-local/"
MY_PN="pyMillLocal"
SRC_URI="https://github.com/Danielhiversen/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS=""
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/async_timeout[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}