mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
Part-of: https://github.com/gentoo/guru/pull/447 Closes: https://github.com/gentoo/guru/pull/447 Signed-off-by: David Roman <stkw0@disroot.org>
57 lines
1.5 KiB
Bash
57 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{12..13} )
|
|
|
|
inherit distutils-r1 linux-info
|
|
|
|
DESCRIPTION="Proton VPN Network Manager handler"
|
|
HOMEPAGE="https://github.com/ProtonVPN/python-proton-vpn-network-manager"
|
|
SRC_URI="https://github.com/ProtonVPN/python-proton-vpn-network-manager/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/python-${P}"
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND="test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )"
|
|
|
|
RDEPEND="
|
|
dev-python/jinja2[${PYTHON_USEDEP}]
|
|
dev-python/packaging[${PYTHON_USEDEP}]
|
|
dev-python/proton-core[${PYTHON_USEDEP}]
|
|
>=dev-python/proton-vpn-api-core-0.45.1[${PYTHON_USEDEP}]
|
|
>=dev-python/proton-vpn-local-agent-1.4.4[${PYTHON_USEDEP}]
|
|
dev-python/pygobject[${PYTHON_USEDEP}]
|
|
net-misc/networkmanager[introspection]
|
|
net-vpn/networkmanager-openvpn
|
|
"
|
|
|
|
CONFIG_CHECK="~DUMMY ~WIREGUARD"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-0.12.13-fix-networkmanager-plugin-loading.patch"
|
|
"${FILESDIR}/${PN}-0.12.13-remove-call-to-apt.patch"
|
|
)
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
src_prepare() {
|
|
distutils-r1_src_prepare
|
|
sed -i "/--cov/d" setup.cfg || die
|
|
}
|
|
|
|
python_test() {
|
|
# VPN connection cannot be tested within sandbox
|
|
local EPYTEST_IGNORE=(
|
|
tests/unit/core/test_networkmanager.py
|
|
tests/unit/wireguard/test_wireguard.py
|
|
)
|
|
|
|
XDG_RUNTIME_DIR="${T}/python_test" epytest
|
|
}
|