dev-python/matrix-nio: new package

This commit is contained in:
nemunaire 2020-06-01 15:10:26 +02:00
parent 7b9fece280
commit b2a41a8b85
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST matrix-nio-0.12.0.tar.gz 126648 BLAKE2B 6b43c2cb9c01e9c2d4fa73dcf24f6cb08767195935e07a22e93eb1919d4f156733391a9fff736a4224bfbbcb00f5f2891599b07ecd83a30e0497afcd2a6c66fb SHA512 89e51138e6575c52ecf8c6a1a031db7e157446d61e9d247e31adf6f507eff4fdecc346cdcb0d76c94df0bc1df97ad4447d56d8108e5ce4d5e5c62e5a28b22360
EBUILD matrix-nio-0.12.0.ebuild 1213 BLAKE2B 9fc5cf3dc396c35d184df96ca93deffbe87f83ca81750ca05fadff9040f6a7ed0618b024b9d40483249dff21c9cbaa74f0d1f3a1f4a200bc3c913fa00495a4d2 SHA512 e8692bd7544e09d140b863dd50c7606a818f45df3f10f9891417c244bf9c6c8cbd76db4f6ffdfb0b73ffa7dbcc5c84068f870113fe9ec67843eb97a968b959af

View File

@ -0,0 +1,38 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{5,6,7,8} )
inherit distutils-r1
DESCRIPTION="A Python Matrix client library, designed according to sans I/O principles"
HOMEPAGE="https://github.com/poljar/matrix-nio"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
IUSE="+e2e"
RDEPEND="
dev-python/future[${PYTHON_USEDEP}]
dev-python/aiohttp[${PYTHON_USEDEP}]
dev-python/aiofiles[${PYTHON_USEDEP}]
dev-python/typing[${PYTHON_USEDEP}]
dev-python/dataclasses[${PYTHON_USEDEP}]
dev-python/h11[${PYTHON_USEDEP}]
dev-python/hyper-h2[${PYTHON_USEDEP}]
dev-python/logbook[${PYTHON_USEDEP}]
dev-python/jsonschema[${PYTHON_USEDEP}]
dev-python/unpaddedbase64[${PYTHON_USEDEP}]
dev-python/pycryptodome[${PYTHON_USEDEP}]
e2e? (
dev-libs/olm[python,${PYTHON_USEDEP}]
dev-python/peewee[${PYTHON_USEDEP}]
dev-python/cachetools[${PYTHON_USEDEP}]
dev-python/atomicwrites[${PYTHON_USEDEP}]
)
"
BDEPEND="${RDEPEND}"