diff options
author | hellekin <hellekin@cepheide.org> | 2019-06-17 22:48:21 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2019-06-17 22:48:21 +0200 |
commit | 7b9c5d58e6981f01c89a4772e76ddd4ab30191c0 (patch) | |
tree | 1f9c3d47385731856ead6d3b389e41f67874646c | |
parent | 1d0f9678cd2298ea308d14dc35b0825924872df8 (diff) | |
download | cepheide-overlay-7b9c5d58e6981f01c89a4772e76ddd4ab30191c0.tar.gz |
Add matrix-nio
-rw-r--r-- | dev-python/matrix-nio/matrix-nio-9999.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/matrix-nio/matrix-nio-9999.ebuild b/dev-python/matrix-nio/matrix-nio-9999.ebuild new file mode 100644 index 0000000..b0effb7 --- /dev/null +++ b/dev-python/matrix-nio/matrix-nio-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2019 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_5 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="A Python Matrix client library, designed according to sans I/O principles" +HOMEPAGE="https://github.com/poljar/matrix-nio" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/poljar/${PN}.git" +else + SRC_URI="https://github.com/poljar/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +fi + +LICENSE="ISC" +SLOT="0" +IUSE="" + +DEPEND="dev-python/python-olm + >=dev-python/h11-0.7.0 + >=dev-python/hyper-h2-3.0.1 + >=dev-python/atomicwrites-1.2.1 + >=dev-python/peewee-3.8.1 + >=dev-python/attrs-18.2.0 + >=dev-python/future-0.16.0-r1 + >=dev-python/jsonschema-2.6.0 + dev-python/logbook + dev-python/typing" +RDEPEND="${DEPEND}" |