add aioimaplib

This commit is contained in:
2019-02-19 11:45:50 +01:00
parent 11d8afa10f
commit 34c2d769a0
4 changed files with 77 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
DIST aioimaplib-0.7.13.tar.gz 55747 BLAKE2B cd5faa855ddde57b17729a7e5ec5e5568d52280eec93770dfee602e9ed1969ea46ff344cf417514a340865e6aca76eba695e80e3f9c3cc693b1f430836eb69b6 SHA512 558e63d152df50e9989ebbe0c9fbb6ceed4769a18a5cc17ce342a89f4f9467648b72fb164fadf73717af0b521a8947f080e834ef9104099c19100e84c50c88fa
DIST aioimaplib-0.7.15.tar.gz 57337 BLAKE2B f81d589aea2a371e33b30f13f9db64712241a38f4cadbfb2f685293cb19d3a3c9ff1daf7744b0130f0747311b8812acb1152ab125bb4d2b6906d069232d6ecf5 SHA512 3430213ace2a48a559c9c13786be8f1eab13dcd06c1c980e942edf8acfaa680de7951b72f5dc560d4473e1153ca3d72ba31f1980b1fbf6ccb1f2cff6bc1a7dab
EBUILD aioimaplib-0.7.13.ebuild 684 BLAKE2B b159525646f4538ac865745f913b9ee4c3ac8c85f9ca910a9388e4dfacacfe8c07b315488fbbbbaaf3e0eed5383b830d3f58456a3e5dbc1b890a781f0944f521 SHA512 d1d692795f1a104b644b813aef4758f71f04f0bc926c820e6984d35e4c2420ab8875f8f611ad1dbb3ad4460e0ada67115bdc036eb594043ad55d1206127c28a1
EBUILD aioimaplib-0.7.15.ebuild 684 BLAKE2B b159525646f4538ac865745f913b9ee4c3ac8c85f9ca910a9388e4dfacacfe8c07b315488fbbbbaaf3e0eed5383b830d3f58456a3e5dbc1b890a781f0944f521 SHA512 d1d692795f1a104b644b813aef4758f71f04f0bc926c820e6984d35e4c2420ab8875f8f611ad1dbb3ad4460e0ada67115bdc036eb594043ad55d1206127c28a1
MISC metadata.xml 363 BLAKE2B 29729504f3c29dcc9df7d623670267ca496b4bfee66d084b9d127c140bba49109f972227a89a631a4a50547d5032793568ba64269efd059682c87a8fe651a1e7 SHA512 63e13cf3536b3faee869532b9ee4c3a0f66e51e0890b4dbbc6a5684704e43c2dc89b7499d3262265313cc029e12ffd39c5aefc4d265ab4a9cd15d49286667588

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python asyncio IMAP4rev1 client library"
HOMEPAGE="https://github.com/bamthomas/aioimaplib https://pypi.org/project/aioimaplib/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
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
}

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v3.0
EAPI=6
PYTHON_COMPAT=( python3_{5,6,7} )
inherit distutils-r1
DESCRIPTION="Python asyncio IMAP4rev1 client library"
HOMEPAGE="https://github.com/bamthomas/aioimaplib https://pypi.org/project/aioimaplib/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
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
}

View File

@@ -0,0 +1,12 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>python</herd>
<upstream>
<remote-id type="pypi">aioimaplib</remote-id>
<maintainer status="unknown">
<email>bruno@barreverte.fr</email>
<name>Bruno Thomas</name>
</maintainer>
</upstream>
</pkgmetadata>