git: c51c400dba70 - main - security/py-vpn-slice: Update to 0.16.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Jul 2023 10:36:41 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c51c400dba702e285ba807bc83c9461f4ee1846b
commit c51c400dba702e285ba807bc83c9461f4ee1846b
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2023-07-09 10:20:29 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2023-07-09 10:20:29 +0000
security/py-vpn-slice: Update to 0.16.1
- Update LICENSE
- Add LICENSE_FILE
- Update version requirement of RUN_DEPENDS
- Update pkg-descr
- Take maintainership
Changes: https://github.com/dlenski/vpn-slice/commits/master
---
security/py-vpn-slice/Makefile | 13 +++++++------
security/py-vpn-slice/distinfo | 6 +++---
security/py-vpn-slice/pkg-descr | 11 +++++++++++
3 files changed, 21 insertions(+), 9 deletions(-)
diff --git a/security/py-vpn-slice/Makefile b/security/py-vpn-slice/Makefile
index 8cb831d9fa29..a6bc3824faeb 100644
--- a/security/py-vpn-slice/Makefile
+++ b/security/py-vpn-slice/Makefile
@@ -1,17 +1,18 @@
PORTNAME= vpn-slice
-DISTVERSION= 0.15
+PORTVERSION= 0.16.1
CATEGORIES= security python net-vpn
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Customized VPN split-tunnel
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= vpnc-script replacement for easy split-tunnel VPN setup
WWW= https://github.com/dlenski/vpn-slice
-LICENSE= GPLv3
+LICENSE= GPLv3+
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dnspython>=1.16:dns/py-dnspython@${PY_FLAVOR} \
- ${PYTHON_PKGNAMEPREFIX}setproctitle>=1.2:devel/py-setproctitle@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dnspython>=0,1:dns/py-dnspython@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}setproctitle>=0:devel/py-setproctitle@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent distutils
diff --git a/security/py-vpn-slice/distinfo b/security/py-vpn-slice/distinfo
index a6a29ae6a854..bed355608901 100644
--- a/security/py-vpn-slice/distinfo
+++ b/security/py-vpn-slice/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1637510617
-SHA256 (vpn-slice-0.15.tar.gz) = 7d5133aecbed9d5696d59dcb799c3d8d30a89a08f6d36fac335f6b8357786353
-SIZE (vpn-slice-0.15.tar.gz) = 18510
+TIMESTAMP = 1688166324
+SHA256 (vpn-slice-0.16.1.tar.gz) = 28d02dd1b41210b270470350f28967320b3a34321d57cc9736f53d6121e9ceaa
+SIZE (vpn-slice-0.16.1.tar.gz) = 34925
diff --git a/security/py-vpn-slice/pkg-descr b/security/py-vpn-slice/pkg-descr
index 6f83f230b3d1..70a6d5c57ec6 100644
--- a/security/py-vpn-slice/pkg-descr
+++ b/security/py-vpn-slice/pkg-descr
@@ -5,3 +5,14 @@ normally reroute all your network traffic through the VPN, this one tries to
minimize your contact with an intrusive VPN. This is also known as a
split-tunnel VPN, since it splits your traffic between the VPN tunnel and your
normal network interfaces.
+
+vpn-slice makes it easy to set up a split-tunnel VPN:
+- By default, it only routes traffic for specific hosts or subnets through the
+ VPN.
+- It automatically looks up named hosts, using the VPN's DNS servers, and adds
+ entries for them to your /etc/hosts (which it cleans up after VPN
+ disconnection), however it does not otherwise alter your /etc/resolv.conf at
+ all.
+- It has many additional options to customize routing and lookup (for example,
+ --route-splits to additionally route traffic for specific subnets requested by
+ the server). Run vpn-slice --help to see them all.