mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 19:30:37 -04:00
Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
30 lines
779 B
Bash
30 lines
779 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
|
|
DISTUTILS_USE_SETUPTOOLS=rdepend
|
|
inherit distutils-r1 optfeature
|
|
|
|
DESCRIPTION="TCP/UDP asynchronous tunnel proxy implemented in Python3 asyncio"
|
|
HOMEPAGE="
|
|
https://github.com/qwj/python-proxy
|
|
https://pypi.org/project/pproxy
|
|
"
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND=""
|
|
DEPEND="${RDEPEND}"
|
|
|
|
pkg_postinst() {
|
|
optfeature "ssh tunnelling" ">=dev-python/asyncssh-2.5.0"
|
|
optfeature "accelerated ciphers" ">=dev-python/pycryptodome-3.7.2"
|
|
optfeature "accelerated ciphers" ">=dev-python/uvloop-0.13.0"
|
|
optfeature "daemon" ">=dev-python/python-daemon-2.2.3"
|
|
}
|