src_prepare-overlay/dev-python/janus/janus-0.5.0.ebuild
akater ec16256079
app-emacs/ement: New package and its dependencies
- app-emacs/ement
  Matrix client for GNU Emacs

- app-emacs/ement-extras
  My package; among other things, tries to make it easier to use E2EE

- app-emacs/defmacro-gensym
  My package; dependency for app-emacs/ement-extras

- app-emacs/plz
  Dependency for app-emacs/ement

- app-emacs/ts
  Dependency for app-emacs/ement

- net-im/pantalaimon
  Dependency for app-emacs/ement[e2e]
  net-im category is used because pantalaimon is a transparent proxy

- dev-python/janus-0.5
  Dependency for net-im/pantalaimon
2021-09-12 01:01:25 +00:00

35 lines
697 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# credit goes to ebuild repository gentoo-zh
EAPI=7
PYTHON_COMPAT=( python3_{8,9} pypy3 )
inherit distutils-r1
DESCRIPTION="Implementation of the asyncio (PEP 3156) event-loop with Qt"
HOMEPAGE="https://github.com/aio-libs/janus"
MY_P="${P/_alpha/a}"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
IUSE="test"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)
"
python_test() {
py.test -v || die "Tests fail with ${EPYTHON}"
}
python_install_all() {
distutils-r1_python_install_all
}