-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
net-vpn/vpn-slice: new package, add 0.16.1
Signed-off-by: Andrew Udvare <[email protected]>
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
DIST vpn-slice-0.16.1.tar.gz 34925 BLAKE2B 4a43bc5e0b4f9e32d813f1a06a42fbb81df6353ef588ad9fb7f3de51cecaf7006cdc17f22fff40f5fbb13da148c892a52be3f75b10d3a15fe74a2eba2ef4287e SHA512 2bd0e04dc172b9879992583c66e0e453fbbfb1cee1b60a612d52735a6de67eacbb1b3dc20a27f2830547254b6585f90e9824d56a75bded8c622aa373dbcdce16 | ||
EBUILD vpn-slice-0.16.1.ebuild 540 BLAKE2B 9a951b1dc3f44b32df1aca73756f4c0083347f7bb6656e4088f9af49cee851ee8ec686b9f025507c0b5381d62c8bdeb820bfe5c73842c43b4e541f28d9406b65 SHA512 f52c3f03c8243a6310d59440055096e84aa950405f6acdc553264e82ec640a81f388571380ec1f49a39ee2db1492492119402f5142d02ba3ce399c69b37f8e40 | ||
MISC metadata.xml 328 BLAKE2B 89aaa9e44ff4603a17db6c0342d9f32f8f9530e177d5478cc1bdbd625b31bd4ba32167cded5e53c0c43e1e02986e4b06f7141baf186d27545e46638675d94fdb SHA512 5c37a6f77d0208e197792cb0ecdca96db7f936a5d6218f3c7f771f498271518193440d78e7582d92007f4be3d0da54c6adb759b89c4aefe2cc07a941c51ef195 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Andrew Udvare</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">dlenski/vpn-slice</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright 2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
DISTUTILS_USE_PEP517=setuptools | ||
PYTHON_COMPAT=( python3_{8..12} pypy3 ) | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="vpnc-script replacement for easy and secure split-tunnel VPN setup." | ||
HOMEPAGE="https://github.com/dlenski/vpn-slice https://pypi.org/project/vpn-slice/" | ||
SRC_URI="$(pypi_sdist_url --no-normalize "${PN}")" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND="dev-python/dnspython net-dns/bind-tools" | ||
|
||
S="${WORKDIR}/${P}" |