Ryan Fox
fdc579eda9
Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Ryan Fox <flewkey@2a03.party>
41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{5..9} )
|
|
DISTUTILS_USE_SETUPTOOLS=bdepend
|
|
|
|
inherit distutils-r1
|
|
|
|
if [[ ${PV} != *9999* ]]; then
|
|
SRC_URI="https://github.com/magic-wormhole/magic-wormhole/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
else
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/magic-wormhole/magic-wormhole.git"
|
|
fi
|
|
|
|
DESCRIPTION="Safe, simple file sharing"
|
|
HOMEPAGE="https://github.com/magic-wormhole/magic-wormhole"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
>=dev-python/spake2-0.8[${PYTHON_USEDEP}]
|
|
dev-python/pynacl[${PYTHON_USEDEP}]
|
|
dev-python/six[${PYTHON_USEDEP}]
|
|
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
|
>=dev-python/twisted-17.5.0[${PYTHON_USEDEP},crypt]
|
|
>=dev-python/autobahn-0.14.1[${PYTHON_USEDEP}]
|
|
dev-python/automat[${PYTHON_USEDEP}]
|
|
dev-python/hkdf[${PYTHON_USEDEP}]
|
|
dev-python/tqdm[${PYTHON_USEDEP}]
|
|
dev-python/click[${PYTHON_USEDEP}]
|
|
dev-python/humanize[${PYTHON_USEDEP}]
|
|
>=dev-python/txtorcon-18.0.2[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND=""
|
|
|
|
distutils_enable_tests setup.py
|