commit: ff5f805cf40b764dadbd4cd2fbbaa4684981284d Author: Joonas Niilola <juippis <AT> gentoo <DOT> org> AuthorDate: Thu Jan 30 16:28:58 2025 +0000 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org> CommitDate: Thu Jan 30 16:28:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff5f805c
net-vpn/vopono: new package, add 0.10.11 vopono is a tool to run applications through VPN tunnels via temporary network namespaces. This allows you to run only a handful of applications through different VPNs simultaneously, whilst keeping your main connection as normal. vopono includes built-in configurations for both Wireguard and OpenVPN. Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org> net-vpn/vopono/Manifest | 2 ++ net-vpn/vopono/metadata.xml | 17 +++++++++++++++++ net-vpn/vopono/vopono-0.10.11.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) diff --git a/net-vpn/vopono/Manifest b/net-vpn/vopono/Manifest new file mode 100644 index 000000000000..4787d1b9bd21 --- /dev/null +++ b/net-vpn/vopono/Manifest @@ -0,0 +1,2 @@ +DIST vopono-0.10.11-crates.tar.xz 33726524 BLAKE2B 47a4867bbea7406b2997c7b75a0ae6fa7ac520f9650aa6bdf212d00beaed6e79f837e78b60d207db87bd30ffa53e2fb107901d0d6d4094a65ab11bf0d69eb16e SHA512 fdd7775466b6a4f60f9ec68377830a4c47fc4f3d3b63212cddc2927f4d9e4d7611b47d05fff9cd8cf7cc6229d4856a5432a28fe91e9e1b6223ed9f1a062fab2e +DIST vopono-0.10.11.tar.gz 1703898 BLAKE2B 4c1972be521e75d76a0d351f97caa24ab5d3ec0477ac4311f880c1746c6492cd16dc916103b98dbe35c9fbe24b8e10b453e952a372aa0d661c09244e55d17bc1 SHA512 cad113a400a2686752738e7e1a3246fd2b0722d8aa6172a2866d498e7c49e8fef13767d7574094476a547ba40f46bed1320c9f2b815eeee2ed22fa4ccbae11d9 diff --git a/net-vpn/vopono/metadata.xml b/net-vpn/vopono/metadata.xml new file mode 100644 index 000000000000..af5d9361ef89 --- /dev/null +++ b/net-vpn/vopono/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>juip...@gentoo.org</email> + </maintainer> + <longdescription> + vopono is a tool to run applications through VPN tunnels via temporary network namespaces. This + allows you to run only a handful of applications through different VPNs simultaneously, whilst + keeping your main connection as normal. + + vopono includes built-in killswitches for both Wireguard and OpenVPN. + </longdescription> + <upstream> + <remote-id type="github">jamesmcm/vopono</remote-id> + </upstream> +</pkgmetadata> diff --git a/net-vpn/vopono/vopono-0.10.11.ebuild b/net-vpn/vopono/vopono-0.10.11.ebuild new file mode 100644 index 000000000000..16c2beb63020 --- /dev/null +++ b/net-vpn/vopono/vopono-0.10.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Autogenerated by pycargoebuild 0.13.5 + +EAPI=8 + +inherit cargo + +DESCRIPTION="Launch applications via VPN tunnels using temporary network namespaces" +HOMEPAGE="https://github.com/jamesmcm/vopono" +SRC_URI="https://github.com/jamesmcm/vopono/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz + https://dev.gentoo.org/~juippis/distfiles/${P}-crates.tar.xz" + +LICENSE="GPL-3+" +# Dependent crate licenses +LICENSE+=" Apache-2.0 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 Unicode-3.0" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="|| ( + net-vpn/openvpn + net-vpn/wireguard-tools + )" + +src_install() { + cargo_src_install + einstalldocs + dodoc USERGUIDE.md +}