* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2023-06-06 0:09 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2023-06-06 0:09 UTC (permalink / raw
To: gentoo-commits
commit: 86ab24a29b3d89c8d1178314dbf0fd5c89f14df4
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 6 00:08:42 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Tue Jun 6 00:08:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86ab24a2
net-vpn/ocserv: add 1.1.7
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 2 +
net-vpn/ocserv/ocserv-1.1.7.ebuild | 116 +++++++++++++++++++++++++++++++++++++
2 files changed, 118 insertions(+)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 16ced146731d..78a9512b8446 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1,2 +1,4 @@
DIST ocserv-1.1.6.tar.xz 839744 BLAKE2B 3b3591588d9a5be4e723df739a5d8b4c33d78d536ecb169263c83cf8bedfdaab1a3d06e6dc11544acbede135626d37d98f2bc26b95ff80abb3f0e99f4688b7f6 SHA512 d1c5e5cf0e84aab168ed51516534df8b2968194dd1421f33563c61b3e47d5d79ebe9e6ffbf7cbcc9ff1242fae05151024f70ef586d063bec0b3eec00050bfdfa
DIST ocserv-1.1.6.tar.xz.sig 442 BLAKE2B d24c46783f273bd329267cb3ba4effe0280655867e619bf0a3e4191386fa8851541fcd8768b0b1068e594caaf510ceeccfc30641169679ec394706fdf1ebe319 SHA512 2a87768ad63d40053732fa011bbeb3532c9673296b9be299bf8f7d8dd3dd35571eee96c0b4fa9bf5a30633b4c844337ab3d562d6ea2b6ad8efca084eb5e6f502
+DIST ocserv-1.1.7.tar.xz 844140 BLAKE2B 0b89937ce74fcf83d6423458462b3a419f9604407c80e2fc4a732b3e481dfd98cc76f062e112bf93ee392b3f4cdf5fdd271997c878bbe4165f11fa282852ff90 SHA512 5b6182b98c0406a27dae7121ec0d8771b158e0d8ce2056bd35451c8ed087a8b7f7d40035f9db5c19aa9a9a3b2c6b07be8f0bad4b6b96569584815a5358202ba4
+DIST ocserv-1.1.7.tar.xz.sig 442 BLAKE2B f5c40ef16f3bd4fb3dadff0459a6ecf8fadae01733a3d718ec00f35980b08860f7947c04a99386209a391185590edaedc349e9cb6684159178cd91caaf2f11fd SHA512 96d2562fdf918f2b6ea829d747330a3be2e015ab25897e01bd0d387cb69ef3592aacabbeec9612e95eca1fbce6178a176dbf76d553b7626c09d453d216ddd63d
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
new file mode 100644
index 000000000000..4705133bc578
--- /dev/null
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -0,0 +1,116 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+if [[ ${PV} == 9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
+else
+ inherit verify-sig
+ VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/ocserv.asc"
+ BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
+ SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
+ verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Openconnect SSL VPN server"
+HOMEPAGE="https://ocserv.gitlab.io/www/index.html"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
+RESTRICT="!test? ( test )"
+
+BDEPEND+="
+ virtual/pkgconfig
+ test? (
+ net-libs/gnutls[tools(+)]
+ net-libs/socket_wrapper
+ net-vpn/openconnect
+ sys-libs/nss_wrapper
+ sys-libs/uid_wrapper
+ pam? ( sys-libs/pam_wrapper )
+ )
+"
+DEPEND="
+ dev-libs/libnl:3=
+ dev-libs/libev:0=
+ >=dev-libs/nettle-2.7:0=
+ dev-libs/pcl:0=
+ dev-libs/protobuf-c:0=
+ >=net-libs/gnutls-3.3.0:0=
+ net-libs/http-parser:0=
+ sys-libs/readline:0=
+ sys-libs/talloc:0=
+ virtual/libcrypt:=
+ geoip? ( dev-libs/geoip:0= )
+ kerberos? ( virtual/krb5 )
+ lz4? ( app-arch/lz4:0= )
+ otp? ( sys-auth/oath-toolkit:0= )
+ pam? ( sys-libs/pam:0= )
+ radius? ( net-dialup/freeradius-client:0= )
+ seccomp? ( sys-libs/libseccomp:0= )
+ systemd? ( sys-apps/systemd:0= )
+ tcpd? ( sys-apps/tcp-wrappers:0= )
+"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ else
+ if use verify-sig; then
+ verify-sig_verify_detached "${DISTDIR}/${P}.tar.xz"{,.sig}
+ fi
+ unpack "${P}.tar.xz"
+ fi
+}
+
+src_prepare() {
+ default
+ if [[ ${PV} == 9999 ]]; then
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ local myconf=(
+ --without-root-tests
+ --without-nuttcp-tests
+
+ $(use_enable seccomp)
+ $(use_enable systemd)
+
+ $(use_with geoip)
+ $(use_with kerberos gssapi)
+ $(use_with lz4)
+ $(use_with otp liboath)
+ $(use_with radius)
+ $(use_with tcpd libwrap)
+ )
+ econf "${myconf[@]}"
+}
+
+src_test() {
+ addwrite /proc
+ default
+}
+
+src_install() {
+ default
+
+ dodoc doc/sample.{config,passwd}
+ use otp && dodoc doc/sample.otp
+
+ doinitd "${FILESDIR}"/ocserv
+
+ if use systemd; then
+ systemd_dounit doc/systemd/socket-activated/ocserv.{service,socket}
+ else
+ systemd_dounit doc/systemd/standalone/ocserv.service
+ fi
+}
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-08-10 15:41 Michał Górny
0 siblings, 0 replies; 41+ messages in thread
From: Michał Górny @ 2024-08-10 15:41 UTC (permalink / raw
To: gentoo-commits
commit: 62423e05c46a43aea969fcf6a5149c68b6260d97
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 10 15:41:16 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Aug 10 15:41:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62423e05
net-vpn/ocserv: Stabilize 1.3.0 arm, #937242
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.3.0.ebuild b/net-vpn/ocserv/ocserv-1.3.0.ebuild
index 5a5c8a445ee1..c354d7bae7ad 100644
--- a/net-vpn/ocserv/ocserv-1.3.0.ebuild
+++ b/net-vpn/ocserv/ocserv-1.3.0.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="amd64 ~arm ~arm64 ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm ~arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-08-04 12:53 Jakov Smolić
0 siblings, 0 replies; 41+ messages in thread
From: Jakov Smolić @ 2024-08-04 12:53 UTC (permalink / raw
To: gentoo-commits
commit: 999e5c68797f5a5c4c3dc0c23d1dd6729fcb21e2
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 4 12:52:30 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Aug 4 12:52:30 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=999e5c68
net-vpn/ocserv: Stabilize 1.3.0 x86, #937242
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.3.0.ebuild b/net-vpn/ocserv/ocserv-1.3.0.ebuild
index 3728f6e3ac38..8509e9caa33c 100644
--- a/net-vpn/ocserv/ocserv-1.3.0.ebuild
+++ b/net-vpn/ocserv/ocserv-1.3.0.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-08-04 12:53 Jakov Smolić
0 siblings, 0 replies; 41+ messages in thread
From: Jakov Smolić @ 2024-08-04 12:53 UTC (permalink / raw
To: gentoo-commits
commit: 9d31174e796718adc8e61545ef8f32a35d8a2c7d
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 4 12:52:35 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Aug 4 12:52:35 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d31174e
net-vpn/ocserv: Stabilize 1.3.0 amd64, #937242
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.3.0.ebuild b/net-vpn/ocserv/ocserv-1.3.0.ebuild
index 8509e9caa33c..5a5c8a445ee1 100644
--- a/net-vpn/ocserv/ocserv-1.3.0.ebuild
+++ b/net-vpn/ocserv/ocserv-1.3.0.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~riscv x86"
+ KEYWORDS="amd64 ~arm ~arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-08-03 22:51 Sam James
0 siblings, 0 replies; 41+ messages in thread
From: Sam James @ 2024-08-03 22:51 UTC (permalink / raw
To: gentoo-commits
commit: 07fd2fa72352e2d3087bba71145f6db0f6d44ed2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 3 22:50:50 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 3 22:50:50 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07fd2fa7
net-vpn/ocserv: Stabilize 1.3.0 ppc64, #937242
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.3.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.3.0.ebuild b/net-vpn/ocserv/ocserv-1.3.0.ebuild
index 44ddeac84fcd..3728f6e3ac38 100644
--- a/net-vpn/ocserv/ocserv-1.3.0.ebuild
+++ b/net-vpn/ocserv/ocserv-1.3.0.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~riscv ~x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-23 15:56 Arthur Zamarin
0 siblings, 0 replies; 41+ messages in thread
From: Arthur Zamarin @ 2024-05-23 15:56 UTC (permalink / raw
To: gentoo-commits
commit: ccfef2aeec68609306dc37b04dd1ae6efe4eca9e
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 15:56:15 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May 23 15:56:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccfef2ae
net-vpn/ocserv: Stabilize 1.1.7 amd64, #930631
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index a3d177775d5a..84fc07e9ea07 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 arm arm64 ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-23 15:56 Arthur Zamarin
0 siblings, 0 replies; 41+ messages in thread
From: Arthur Zamarin @ 2024-05-23 15:56 UTC (permalink / raw
To: gentoo-commits
commit: 1f46b4bdc153ffe11d9a07c8532c285d28c40877
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 15:56:14 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu May 23 15:56:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f46b4bd
net-vpn/ocserv: Stabilize 1.1.7 x86, #930631
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index 1aa02c77e3f5..a3d177775d5a 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 arm arm64 ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-22 22:10 Sam James
0 siblings, 0 replies; 41+ messages in thread
From: Sam James @ 2024-05-22 22:10 UTC (permalink / raw
To: gentoo-commits
commit: 6731026bd416e5bd05a2b380cfdf6ff7e7134fe5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 22:09:39 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 22:09:39 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6731026b
net-vpn/ocserv: Stabilize 1.1.7 ppc64, #930631
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index fa1bb2f37726..1aa02c77e3f5 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 arm arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm arm64 ppc64 ~riscv ~x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-22 19:24 Sam James
0 siblings, 0 replies; 41+ messages in thread
From: Sam James @ 2024-05-22 19:24 UTC (permalink / raw
To: gentoo-commits
commit: 0ba749097946285678c2536a14e913b6e964f1fd
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 19:24:14 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 19:24:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba74909
net-vpn/ocserv: Stabilize 1.1.7 arm, #930631
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index 9255a9952a09..a78d365da38d 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm ~arm64 ~ppc64 ~riscv ~x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-22 19:24 Sam James
0 siblings, 0 replies; 41+ messages in thread
From: Sam James @ 2024-05-22 19:24 UTC (permalink / raw
To: gentoo-commits
commit: f7dbc9453ece22e6666408bb3202baa82e42a1c5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 19:24:16 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 19:24:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7dbc945
net-vpn/ocserv: Stabilize 1.1.7 arm64, #930631
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index a78d365da38d..fa1bb2f37726 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -14,7 +14,7 @@ else
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
- KEYWORDS="~amd64 arm ~arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 arm arm64 ~ppc64 ~riscv ~x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-20 14:44 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2024-05-20 14:44 UTC (permalink / raw
To: gentoo-commits
commit: 1f4ffed3cf57e9d51427c51eba8b2c73dd93c8d8
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon May 20 14:43:28 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon May 20 14:43:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f4ffed3
net-vpn/ocserv: depend on ipcalc unconditionally
Closes: https://bugs.gentoo.org/932259
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.3.0.ebuild | 2 +-
net-vpn/ocserv/ocserv-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/ocserv/ocserv-1.3.0.ebuild b/net-vpn/ocserv/ocserv-1.3.0.ebuild
index 52512265f732..44ddeac84fcd 100644
--- a/net-vpn/ocserv/ocserv-1.3.0.ebuild
+++ b/net-vpn/ocserv/ocserv-1.3.0.ebuild
@@ -26,11 +26,11 @@ IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
BDEPEND+="
+ net-misc/ipcalc
virtual/pkgconfig
test? (
net-libs/gnutls[tools(+)]
net-libs/socket_wrapper
- net-misc/ipcalc
net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index 52512265f732..44ddeac84fcd 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -26,11 +26,11 @@ IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
BDEPEND+="
+ net-misc/ipcalc
virtual/pkgconfig
test? (
net-libs/gnutls[tools(+)]
net-libs/socket_wrapper
- net-misc/ipcalc
net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-19 16:19 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2024-05-19 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 9865fdb44c4ef2a21f59b24dd21540f8ef23cd87
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 16:03:13 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun May 19 16:19:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9865fdb4
net-vpn/ocserv: sync live
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-9999.ebuild | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index 9ff9e3fd75a7..be01b5b8a2b0 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -84,6 +84,11 @@ src_configure() {
econf "${myconf[@]}"
}
+src_test() {
+ addwrite /proc
+ default
+}
+
src_install() {
default
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-19 16:19 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2024-05-19 16:19 UTC (permalink / raw
To: gentoo-commits
commit: 1c8953c19955659e723ad8680f8f6ae2842ef480
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 16:14:01 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun May 19 16:19:02 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c8953c1
net-vpn/ocserv: add 1.3.0
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 2 ++
net-vpn/ocserv/{ocserv-9999.ebuild => ocserv-1.3.0.ebuild} | 4 ++--
net-vpn/ocserv/ocserv-9999.ebuild | 4 ++--
3 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 78a9512b8446..e2f907e3419d 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -2,3 +2,5 @@ DIST ocserv-1.1.6.tar.xz 839744 BLAKE2B 3b3591588d9a5be4e723df739a5d8b4c33d78d53
DIST ocserv-1.1.6.tar.xz.sig 442 BLAKE2B d24c46783f273bd329267cb3ba4effe0280655867e619bf0a3e4191386fa8851541fcd8768b0b1068e594caaf510ceeccfc30641169679ec394706fdf1ebe319 SHA512 2a87768ad63d40053732fa011bbeb3532c9673296b9be299bf8f7d8dd3dd35571eee96c0b4fa9bf5a30633b4c844337ab3d562d6ea2b6ad8efca084eb5e6f502
DIST ocserv-1.1.7.tar.xz 844140 BLAKE2B 0b89937ce74fcf83d6423458462b3a419f9604407c80e2fc4a732b3e481dfd98cc76f062e112bf93ee392b3f4cdf5fdd271997c878bbe4165f11fa282852ff90 SHA512 5b6182b98c0406a27dae7121ec0d8771b158e0d8ce2056bd35451c8ed087a8b7f7d40035f9db5c19aa9a9a3b2c6b07be8f0bad4b6b96569584815a5358202ba4
DIST ocserv-1.1.7.tar.xz.sig 442 BLAKE2B f5c40ef16f3bd4fb3dadff0459a6ecf8fadae01733a3d718ec00f35980b08860f7947c04a99386209a391185590edaedc349e9cb6684159178cd91caaf2f11fd SHA512 96d2562fdf918f2b6ea829d747330a3be2e015ab25897e01bd0d387cb69ef3592aacabbeec9612e95eca1fbce6178a176dbf76d553b7626c09d453d216ddd63d
+DIST ocserv-1.3.0.tar.xz 770596 BLAKE2B b45c528ca0d12602ae05cebf469a4be2efa846a49540375b258901620a9b95135297fdbb6553cec2cf63b506bcfc9355df8b519bcd6d52684b3b7432dbe66380 SHA512 24c3129b389fa767ad14f158580d8abd6830e697162b8fcfe3df6a4d21d543460c1955c3e0c63fecb8b4b01bd2492254d3eea8d5ba60d864cea314325badda7e
+DIST ocserv-1.3.0.tar.xz.sig 442 BLAKE2B f73b98c71a0c3fe18bf540e84871a51d28b8993ba9ae719f89fa345412a609d062b2041cd9b0e4b6aae8eecf8a117c68d408153b0ea15c7b1277f3d2ebcec567 SHA512 dd6a2e6f28a512bda19e758b32149cfe7951151edab8c34ac371dbcd17eed4a8b10fdfee306629c1d42c2a3e22bcfe523ee2aafb84d59181d5be719c399cfb7d
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-1.3.0.ebuild
similarity index 97%
copy from net-vpn/ocserv/ocserv-9999.ebuild
copy to net-vpn/ocserv/ocserv-1.3.0.ebuild
index be01b5b8a2b0..52512265f732 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-1.3.0.ebuild
@@ -30,6 +30,7 @@ BDEPEND+="
test? (
net-libs/gnutls[tools(+)]
net-libs/socket_wrapper
+ net-misc/ipcalc
net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
@@ -43,7 +44,6 @@ DEPEND="
dev-libs/pcl:0=
dev-libs/protobuf-c:0=
>=net-libs/gnutls-3.3.0:0=
- net-libs/http-parser:0=
sys-libs/readline:0=
sys-libs/talloc:0=
virtual/libcrypt:=
@@ -69,13 +69,13 @@ src_prepare() {
src_configure() {
local myconf=(
--without-root-tests
- --without-nuttcp-tests
$(use_enable seccomp)
$(use_enable systemd)
$(use_with geoip)
$(use_with kerberos gssapi)
+ --without-llhttp
$(use_with lz4)
$(use_with otp liboath)
$(use_with radius)
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index be01b5b8a2b0..52512265f732 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -30,6 +30,7 @@ BDEPEND+="
test? (
net-libs/gnutls[tools(+)]
net-libs/socket_wrapper
+ net-misc/ipcalc
net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
@@ -43,7 +44,6 @@ DEPEND="
dev-libs/pcl:0=
dev-libs/protobuf-c:0=
>=net-libs/gnutls-3.3.0:0=
- net-libs/http-parser:0=
sys-libs/readline:0=
sys-libs/talloc:0=
virtual/libcrypt:=
@@ -69,13 +69,13 @@ src_prepare() {
src_configure() {
local myconf=(
--without-root-tests
- --without-nuttcp-tests
$(use_enable seccomp)
$(use_enable systemd)
$(use_with geoip)
$(use_with kerberos gssapi)
+ --without-llhttp
$(use_with lz4)
$(use_with otp liboath)
$(use_with radius)
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2024-05-19 15:21 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2024-05-19 15:21 UTC (permalink / raw
To: gentoo-commits
commit: 10463c4094d53d072fec38d8c0d454692cf49fed
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 15:20:00 2024 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun May 19 15:21:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10463c40
net-vpn/ocserv: restrict tests
There seems to be some certificate issue. This version is out of date
anyway.
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index 1b35605dac3b..9255a9952a09 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -23,7 +23,7 @@ HOMEPAGE="https://ocserv.gitlab.io/www/index.html"
LICENSE="GPL-2"
SLOT="0"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
-RESTRICT="!test? ( test )"
+RESTRICT="test"
BDEPEND+="
virtual/pkgconfig
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2023-06-06 0:26 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2023-06-06 0:26 UTC (permalink / raw
To: gentoo-commits
commit: da025622b6a059587b5371b5ceb47d7626ea239d
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 6 00:22:00 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Tue Jun 6 00:23:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da025622
net-vpn/ocserv: drop unnecessary src_unpack
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.6.ebuild | 11 -----------
net-vpn/ocserv/ocserv-1.1.7.ebuild | 11 -----------
net-vpn/ocserv/ocserv-9999.ebuild | 11 -----------
3 files changed, 33 deletions(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index cb0b28a4a458..7b41838cadc2 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -59,17 +59,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-src_unpack() {
- if [[ ${PV} == 9999 ]]; then
- git-r3_src_unpack
- else
- if use verify-sig; then
- verify-sig_verify_detached "${DISTDIR}/${P}.tar.xz"{,.sig}
- fi
- unpack "${P}.tar.xz"
- fi
-}
-
src_prepare() {
default
if [[ ${PV} == 9999 ]]; then
diff --git a/net-vpn/ocserv/ocserv-1.1.7.ebuild b/net-vpn/ocserv/ocserv-1.1.7.ebuild
index 4705133bc578..06f0edf60a0d 100644
--- a/net-vpn/ocserv/ocserv-1.1.7.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.7.ebuild
@@ -59,17 +59,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-src_unpack() {
- if [[ ${PV} == 9999 ]]; then
- git-r3_src_unpack
- else
- if use verify-sig; then
- verify-sig_verify_detached "${DISTDIR}/${P}.tar.xz"{,.sig}
- fi
- unpack "${P}.tar.xz"
- fi
-}
-
src_prepare() {
default
if [[ ${PV} == 9999 ]]; then
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index ae6884026608..f2240dd6718d 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -59,17 +59,6 @@ DEPEND="
"
RDEPEND="${DEPEND}"
-src_unpack() {
- if [[ ${PV} == 9999 ]]; then
- git-r3_src_unpack
- else
- if use verify-sig; then
- verify-sig_verify_detached "${DISTDIR}/${P}.tar.xz"{,.sig}
- fi
- unpack "${P}.tar.xz"
- fi
-}
-
src_prepare() {
default
if [[ ${PV} == 9999 ]]; then
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2023-05-05 15:01 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2023-05-05 15:01 UTC (permalink / raw
To: gentoo-commits
commit: 0708b3a09f8be763316d3bc560cbca7da80847a9
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri May 5 15:00:00 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri May 5 15:00:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0708b3a0
net-vpn/ocserv: wire up verify-sig
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 1 +
net-vpn/ocserv/ocserv-1.1.6.ebuild | 21 ++++++++++++++++++---
net-vpn/ocserv/ocserv-9999.ebuild | 21 ++++++++++++++++++---
3 files changed, 37 insertions(+), 6 deletions(-)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 2352ae6b3fde..16ced146731d 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1 +1,2 @@
DIST ocserv-1.1.6.tar.xz 839744 BLAKE2B 3b3591588d9a5be4e723df739a5d8b4c33d78d536ecb169263c83cf8bedfdaab1a3d06e6dc11544acbede135626d37d98f2bc26b95ff80abb3f0e99f4688b7f6 SHA512 d1c5e5cf0e84aab168ed51516534df8b2968194dd1421f33563c61b3e47d5d79ebe9e6ffbf7cbcc9ff1242fae05151024f70ef586d063bec0b3eec00050bfdfa
+DIST ocserv-1.1.6.tar.xz.sig 442 BLAKE2B d24c46783f273bd329267cb3ba4effe0280655867e619bf0a3e4191386fa8851541fcd8768b0b1068e594caaf510ceeccfc30641169679ec394706fdf1ebe319 SHA512 2a87768ad63d40053732fa011bbeb3532c9673296b9be299bf8f7d8dd3dd35571eee96c0b4fa9bf5a30633b4c844337ab3d562d6ea2b6ad8efca084eb5e6f502
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index 85c409912412..cb0b28a4a458 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2022 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -9,7 +9,11 @@ if [[ ${PV} == 9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
- SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
+ inherit verify-sig
+ VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/ocserv.asc"
+ BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
+ SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
+ verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
fi
@@ -21,7 +25,7 @@ SLOT="0"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
-BDEPEND="
+BDEPEND+="
virtual/pkgconfig
test? (
net-libs/gnutls[tools(+)]
@@ -55,6 +59,17 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+src_unpack() {
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ else
+ if use verify-sig; then
+ verify-sig_verify_detached "${DISTDIR}/${P}.tar.xz"{,.sig}
+ fi
+ unpack "${P}.tar.xz"
+ fi
+}
+
src_prepare() {
default
if [[ ${PV} == 9999 ]]; then
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index b28feddc1b05..ae6884026608 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2022 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -9,7 +9,11 @@ if [[ ${PV} == 9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
- SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
+ inherit verify-sig
+ VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/ocserv.asc"
+ BDEPEND="verify-sig? ( sec-keys/openpgp-keys-ocserv )"
+ SRC_URI="https://www.infradead.org/ocserv/download/${P}.tar.xz
+ verify-sig? ( https://www.infradead.org/ocserv/download/${P}.tar.xz.sig )"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
fi
@@ -21,7 +25,7 @@ SLOT="0"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
-BDEPEND="
+BDEPEND+="
virtual/pkgconfig
test? (
net-libs/gnutls[tools(+)]
@@ -55,6 +59,17 @@ DEPEND="
"
RDEPEND="${DEPEND}"
+src_unpack() {
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ else
+ if use verify-sig; then
+ verify-sig_verify_detached "${DISTDIR}/${P}.tar.xz"{,.sig}
+ fi
+ unpack "${P}.tar.xz"
+ fi
+}
+
src_prepare() {
default
if [[ ${PV} == 9999 ]]; then
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2023-05-05 15:01 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2023-05-05 15:01 UTC (permalink / raw
To: gentoo-commits
commit: cdae2573496a4830b716fd8724b77404d3c55830
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri May 5 14:49:57 2023 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri May 5 14:49:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdae2573
net-vpn/ocserv: drop 1.0.1-r1, 1.1.3
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 2 -
net-vpn/ocserv/ocserv-1.0.1-r1.ebuild | 83 -----------------------------------
net-vpn/ocserv/ocserv-1.1.3.ebuild | 82 ----------------------------------
3 files changed, 167 deletions(-)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 6ecf2f227674..2352ae6b3fde 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1,3 +1 @@
-DIST ocserv-1.0.1.tar.xz 787800 BLAKE2B 655a2a6e1434a5b31b157e0f73df3d6d04011c06fd5a1f39f1152752abdc837974c739bc0694a804a1e96b4e219c78c5cf1a58040bbcdcad3e326d0c9e584c7b SHA512 953e1b6084f68f8627b5383e28b5fcde987881e66feac645a40fa37d895f0711b171c9029c3703773dfbd5432d747f92c71af9240c2df3381599902a7d5fe880
-DIST ocserv-1.1.3.tar.xz 833320 BLAKE2B bdf92683df55cd26bc102327b233703eefd58ea18ef71ccfc383e06b7fdd78ca59d605ef3517f430f3a20e8d4ab2c3f8abf2684cedd2eb0aeefe10c688faab15 SHA512 1138bd530e41f215f75e967aa293e80504a0ffc3384184832910b7bf8dc2049a637c1d8bef0221b6abb3e6510e51fba3c45d43901c0d2e4c0f180e72c0804628
DIST ocserv-1.1.6.tar.xz 839744 BLAKE2B 3b3591588d9a5be4e723df739a5d8b4c33d78d536ecb169263c83cf8bedfdaab1a3d06e6dc11544acbede135626d37d98f2bc26b95ff80abb3f0e99f4688b7f6 SHA512 d1c5e5cf0e84aab168ed51516534df8b2968194dd1421f33563c61b3e47d5d79ebe9e6ffbf7cbcc9ff1242fae05151024f70ef586d063bec0b3eec00050bfdfa
diff --git a/net-vpn/ocserv/ocserv-1.0.1-r1.ebuild b/net-vpn/ocserv/ocserv-1.0.1-r1.ebuild
deleted file mode 100644
index 30ecafc2b9cc..000000000000
--- a/net-vpn/ocserv/ocserv-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd
-
-DESCRIPTION="Openconnect SSL VPN server"
-HOMEPAGE="https://ocserv.gitlab.io/www/index.html"
-SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc64 x86"
-IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- virtual/pkgconfig
- test? (
- net-libs/gnutls[tools(+)]
- net-libs/socket_wrapper
- net-vpn/openconnect
- sys-libs/nss_wrapper
- sys-libs/uid_wrapper
- )
-"
-DEPEND="
- dev-libs/libnl:3=
- dev-libs/libev:0=
- >=dev-libs/nettle-2.7:0=
- dev-libs/pcl:0=
- dev-libs/protobuf-c:0=
- >=net-libs/gnutls-3.3.0:0=
- net-libs/http-parser:0=
- sys-libs/readline:0=
- sys-libs/talloc:0=
- virtual/libcrypt:=
- geoip? ( dev-libs/geoip:0= )
- kerberos? ( virtual/krb5 )
- lz4? ( app-arch/lz4:0= )
- otp? ( sys-auth/oath-toolkit:0= )
- pam? ( sys-libs/pam:0= )
- radius? ( net-dialup/freeradius-client:0= )
- seccomp? ( sys-libs/libseccomp:0= )
- systemd? ( sys-apps/systemd:0= )
- tcpd? ( sys-apps/tcp-wrappers:0= )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local myconf=(
- --without-root-tests
- --without-docker-tests
- --without-nuttcp-tests
-
- $(use_enable seccomp)
- $(use_enable systemd)
-
- $(use_with geoip)
- $(use_with kerberos gssapi)
- $(use_with lz4)
- $(use_with otp liboath)
- $(use_with radius)
- $(use_with tcpd libwrap)
- )
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- dodoc doc/sample.{config,passwd}
- use otp && dodoc doc/sample.otp
-
- doinitd "${FILESDIR}"/ocserv
-
- if use systemd; then
- systemd_dounit doc/systemd/socket-activated/ocserv.{service,socket}
- else
- systemd_dounit doc/systemd/standalone/ocserv.service
- fi
-}
diff --git a/net-vpn/ocserv/ocserv-1.1.3.ebuild b/net-vpn/ocserv/ocserv-1.1.3.ebuild
deleted file mode 100644
index 459da4219219..000000000000
--- a/net-vpn/ocserv/ocserv-1.1.3.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd
-
-DESCRIPTION="Openconnect SSL VPN server"
-HOMEPAGE="https://ocserv.gitlab.io/www/index.html"
-SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- virtual/pkgconfig
- test? (
- net-libs/gnutls[tools(+)]
- net-libs/socket_wrapper
- net-vpn/openconnect
- sys-libs/nss_wrapper
- sys-libs/uid_wrapper
- )
-"
-DEPEND="
- dev-libs/libnl:3=
- dev-libs/libev:0=
- >=dev-libs/nettle-2.7:0=
- dev-libs/pcl:0=
- dev-libs/protobuf-c:0=
- >=net-libs/gnutls-3.3.0:0=
- net-libs/http-parser:0=
- sys-libs/readline:0=
- sys-libs/talloc:0=
- virtual/libcrypt:=
- geoip? ( dev-libs/geoip:0= )
- kerberos? ( virtual/krb5 )
- lz4? ( app-arch/lz4:0= )
- otp? ( sys-auth/oath-toolkit:0= )
- pam? ( sys-libs/pam:0= )
- radius? ( net-dialup/freeradius-client:0= )
- seccomp? ( sys-libs/libseccomp:0= )
- systemd? ( sys-apps/systemd:0= )
- tcpd? ( sys-apps/tcp-wrappers:0= )
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local myconf=(
- --without-root-tests
- --without-nuttcp-tests
-
- $(use_enable seccomp)
- $(use_enable systemd)
-
- $(use_with geoip)
- $(use_with kerberos gssapi)
- $(use_with lz4)
- $(use_with otp liboath)
- $(use_with radius)
- $(use_with tcpd libwrap)
- )
- econf "${myconf[@]}"
-}
-
-src_install() {
- default
-
- dodoc doc/sample.{config,passwd}
- use otp && dodoc doc/sample.otp
-
- doinitd "${FILESDIR}"/ocserv
-
- if use systemd; then
- systemd_dounit doc/systemd/socket-activated/ocserv.{service,socket}
- else
- systemd_dounit doc/systemd/standalone/ocserv.service
- fi
-}
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-05-19 7:49 Agostino Sarubbo
0 siblings, 0 replies; 41+ messages in thread
From: Agostino Sarubbo @ 2022-05-19 7:49 UTC (permalink / raw
To: gentoo-commits
commit: e507ecedb569ebbb87fdabe32caa78a69f750dcf
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 07:49:11 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 19 07:49:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e507eced
net-vpn/ocserv: arm64 stable wrt bug #844061
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index 08132363756c..85c409912412 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
- KEYWORDS="amd64 arm ~arm64 ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-05-15 9:05 Jakov Smolić
0 siblings, 0 replies; 41+ messages in thread
From: Jakov Smolić @ 2022-05-15 9:05 UTC (permalink / raw
To: gentoo-commits
commit: 6534bb20f42d6e7aa2fd7054b841b1d44652c5c7
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun May 15 09:05:18 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun May 15 09:05:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6534bb20
net-vpn/ocserv: Stabilize 1.1.6 arm, #844061
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index e057fb61046c..08132363756c 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
- KEYWORDS="amd64 ~arm ~arm64 ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm ~arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-05-13 21:06 Jakov Smolić
0 siblings, 0 replies; 41+ messages in thread
From: Jakov Smolić @ 2022-05-13 21:06 UTC (permalink / raw
To: gentoo-commits
commit: c4897a2a86bd09aad7843f4b3d9203fb18fd4d09
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 21:06:25 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri May 13 21:06:25 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4897a2a
net-vpn/ocserv: Stabilize 1.1.6 ppc64, #844061
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index 0e1ed8612f93..e057fb61046c 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
- KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+ KEYWORDS="amd64 ~arm ~arm64 ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-05-13 20:09 Jakov Smolić
0 siblings, 0 replies; 41+ messages in thread
From: Jakov Smolić @ 2022-05-13 20:09 UTC (permalink / raw
To: gentoo-commits
commit: a5a54a531d95c32c3f32556265f8fdff9961dcd6
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 20:09:06 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri May 13 20:09:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a54a53
net-vpn/ocserv: Stabilize 1.1.6 amd64, #844061
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index b28feddc1b05..1d050488e0d8 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-05-13 20:09 Jakov Smolić
0 siblings, 0 replies; 41+ messages in thread
From: Jakov Smolić @ 2022-05-13 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 5200e036fc9574b5fd7a1c5d6ef9c6b8d1188c78
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 20:09:19 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri May 13 20:09:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5200e036
net-vpn/ocserv: Stabilize 1.1.6 x86, #844061
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.6.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
index 1d050488e0d8..0e1ed8612f93 100644
--- a/net-vpn/ocserv/ocserv-1.1.6.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == 9999 ]]; then
EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
else
SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
- KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
fi
DESCRIPTION="Openconnect SSL VPN server"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-04-11 1:08 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2022-04-11 1:08 UTC (permalink / raw
To: gentoo-commits
commit: 35882fadd9fb1e951e5c20ab90d307d267febb83
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 11 01:07:27 2022 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 01:07:27 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35882fad
net-vpn/ocserv: add 1.1.6
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 1 +
net-vpn/ocserv/{ocserv-9999.ebuild => ocserv-1.1.6.ebuild} | 1 +
net-vpn/ocserv/ocserv-9999.ebuild | 1 +
3 files changed, 3 insertions(+)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index ef5564e00169..6ecf2f227674 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1,2 +1,3 @@
DIST ocserv-1.0.1.tar.xz 787800 BLAKE2B 655a2a6e1434a5b31b157e0f73df3d6d04011c06fd5a1f39f1152752abdc837974c739bc0694a804a1e96b4e219c78c5cf1a58040bbcdcad3e326d0c9e584c7b SHA512 953e1b6084f68f8627b5383e28b5fcde987881e66feac645a40fa37d895f0711b171c9029c3703773dfbd5432d747f92c71af9240c2df3381599902a7d5fe880
DIST ocserv-1.1.3.tar.xz 833320 BLAKE2B bdf92683df55cd26bc102327b233703eefd58ea18ef71ccfc383e06b7fdd78ca59d605ef3517f430f3a20e8d4ab2c3f8abf2684cedd2eb0aeefe10c688faab15 SHA512 1138bd530e41f215f75e967aa293e80504a0ffc3384184832910b7bf8dc2049a637c1d8bef0221b6abb3e6510e51fba3c45d43901c0d2e4c0f180e72c0804628
+DIST ocserv-1.1.6.tar.xz 839744 BLAKE2B 3b3591588d9a5be4e723df739a5d8b4c33d78d536ecb169263c83cf8bedfdaab1a3d06e6dc11544acbede135626d37d98f2bc26b95ff80abb3f0e99f4688b7f6 SHA512 d1c5e5cf0e84aab168ed51516534df8b2968194dd1421f33563c61b3e47d5d79ebe9e6ffbf7cbcc9ff1242fae05151024f70ef586d063bec0b3eec00050bfdfa
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-1.1.6.ebuild
similarity index 98%
copy from net-vpn/ocserv/ocserv-9999.ebuild
copy to net-vpn/ocserv/ocserv-1.1.6.ebuild
index 77e32c01ce3f..b28feddc1b05 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.6.ebuild
@@ -29,6 +29,7 @@ BDEPEND="
net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
+ pam? ( sys-libs/pam_wrapper )
)
"
DEPEND="
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index 77e32c01ce3f..b28feddc1b05 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -29,6 +29,7 @@ BDEPEND="
net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
+ pam? ( sys-libs/pam_wrapper )
)
"
DEPEND="
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2022-04-11 0:46 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2022-04-11 0:46 UTC (permalink / raw
To: gentoo-commits
commit: 0bb2258a70f8aa0f8cf689dd45acd52c4f97b55c
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 15:30:21 2022 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 00:45:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bb2258a
net-vpn/ocserv: update EAPI 7 -> 8
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-9999.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
index 1dd59ce1a337..77e32c01ce3f 100644
--- a/net-vpn/ocserv/ocserv-9999.ebuild
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit systemd
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2021-08-07 0:05 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2021-08-07 0:05 UTC (permalink / raw
To: gentoo-commits
commit: d6d2ccc78afb0e0fcbfb03ddbe08b86fd95e0313
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 7 00:04:30 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Aug 7 00:04:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6d2ccc7
net-vpn/ocserv: add live ebuild
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-9999.ebuild | 95 +++++++++++++++++++++++++++++++++++++++
1 file changed, 95 insertions(+)
diff --git a/net-vpn/ocserv/ocserv-9999.ebuild b/net-vpn/ocserv/ocserv-9999.ebuild
new file mode 100644
index 00000000000..1dd59ce1a33
--- /dev/null
+++ b/net-vpn/ocserv/ocserv-9999.ebuild
@@ -0,0 +1,95 @@
+# Copyright 2019-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+if [[ ${PV} == 9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://gitlab.com/openconnect/ocserv.git"
+else
+ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Openconnect SSL VPN server"
+HOMEPAGE="https://ocserv.gitlab.io/www/index.html"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+ test? (
+ net-libs/gnutls[tools(+)]
+ net-libs/socket_wrapper
+ net-vpn/openconnect
+ sys-libs/nss_wrapper
+ sys-libs/uid_wrapper
+ )
+"
+DEPEND="
+ dev-libs/libnl:3=
+ dev-libs/libev:0=
+ >=dev-libs/nettle-2.7:0=
+ dev-libs/pcl:0=
+ dev-libs/protobuf-c:0=
+ >=net-libs/gnutls-3.3.0:0=
+ net-libs/http-parser:0=
+ sys-libs/readline:0=
+ sys-libs/talloc:0=
+ virtual/libcrypt:=
+ geoip? ( dev-libs/geoip:0= )
+ kerberos? ( virtual/krb5 )
+ lz4? ( app-arch/lz4:0= )
+ otp? ( sys-auth/oath-toolkit:0= )
+ pam? ( sys-libs/pam:0= )
+ radius? ( net-dialup/freeradius-client:0= )
+ seccomp? ( sys-libs/libseccomp:0= )
+ systemd? ( sys-apps/systemd:0= )
+ tcpd? ( sys-apps/tcp-wrappers:0= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ default
+ if [[ ${PV} == 9999 ]]; then
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ local myconf=(
+ --without-root-tests
+ --without-nuttcp-tests
+
+ $(use_enable seccomp)
+ $(use_enable systemd)
+
+ $(use_with geoip)
+ $(use_with kerberos gssapi)
+ $(use_with lz4)
+ $(use_with otp liboath)
+ $(use_with radius)
+ $(use_with tcpd libwrap)
+ )
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ dodoc doc/sample.{config,passwd}
+ use otp && dodoc doc/sample.otp
+
+ doinitd "${FILESDIR}"/ocserv
+
+ if use systemd; then
+ systemd_dounit doc/systemd/socket-activated/ocserv.{service,socket}
+ else
+ systemd_dounit doc/systemd/standalone/ocserv.service
+ fi
+}
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2021-08-02 19:43 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2021-08-02 19:43 UTC (permalink / raw
To: gentoo-commits
commit: 6f801f36a4552d5b04ce7bcfedd80437fada44a2
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 2 19:43:16 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Mon Aug 2 19:43:16 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f801f36
net-vpn/ocserv: add 1.1.3, drop 1.1.1-r1
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 2 +-
net-vpn/ocserv/{ocserv-1.1.1-r1.ebuild => ocserv-1.1.3.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 66048da9281..ef5564e0016 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1,2 +1,2 @@
DIST ocserv-1.0.1.tar.xz 787800 BLAKE2B 655a2a6e1434a5b31b157e0f73df3d6d04011c06fd5a1f39f1152752abdc837974c739bc0694a804a1e96b4e219c78c5cf1a58040bbcdcad3e326d0c9e584c7b SHA512 953e1b6084f68f8627b5383e28b5fcde987881e66feac645a40fa37d895f0711b171c9029c3703773dfbd5432d747f92c71af9240c2df3381599902a7d5fe880
-DIST ocserv-1.1.1.tar.xz 818988 BLAKE2B 06fdc47fcabea162ddd417f315c53e85f4ccdc1dc9b60b624c06ee4adae9d6f0ee96f94c15daafa0633b4925720519da7220914008c64c5771f61416208a570e SHA512 1173416f0d32f9faf98e539c8e73316a50ac93b519d1ade19374a3df865d10d975e13ac53e0c5a5e77c80f3605d7a810287b18b85b798887d227389761b54220
+DIST ocserv-1.1.3.tar.xz 833320 BLAKE2B bdf92683df55cd26bc102327b233703eefd58ea18ef71ccfc383e06b7fdd78ca59d605ef3517f430f3a20e8d4ab2c3f8abf2684cedd2eb0aeefe10c688faab15 SHA512 1138bd530e41f215f75e967aa293e80504a0ffc3384184832910b7bf8dc2049a637c1d8bef0221b6abb3e6510e51fba3c45d43901c0d2e4c0f180e72c0804628
diff --git a/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild b/net-vpn/ocserv/ocserv-1.1.3.ebuild
similarity index 100%
rename from net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
rename to net-vpn/ocserv/ocserv-1.1.3.ebuild
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2021-07-24 23:02 Marek Szuba
0 siblings, 0 replies; 41+ messages in thread
From: Marek Szuba @ 2021-07-24 23:02 UTC (permalink / raw
To: gentoo-commits
commit: 9231b8d368a0f6cb55889b915a9b86052e3dcf00
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 24 22:47:08 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Sat Jul 24 23:02:39 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9231b8d3
net-vpn/ocserv: keyword 1.1.1-r1 for ~riscv
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.1.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild b/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
index 83522add4c3..459da421921 100644
--- a/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2021-06-27 21:50 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2021-06-27 21:50 UTC (permalink / raw
To: gentoo-commits
commit: d630f8cedd689dd0f43c2ef1afeca4448a68134f
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 27 21:41:16 2021 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Jun 27 21:50:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d630f8ce
net-vpn/ocserv: depend on virtual/libcrypt
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/{ocserv-1.0.1.ebuild => ocserv-1.0.1-r1.ebuild} | 3 ++-
net-vpn/ocserv/{ocserv-1.1.1.ebuild => ocserv-1.1.1-r1.ebuild} | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1-r1.ebuild
similarity index 96%
rename from net-vpn/ocserv/ocserv-1.0.1.ebuild
rename to net-vpn/ocserv/ocserv-1.0.1-r1.ebuild
index bd210f3d141..30ecafc2b9c 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -35,6 +35,7 @@ DEPEND="
net-libs/http-parser:0=
sys-libs/readline:0=
sys-libs/talloc:0=
+ virtual/libcrypt:=
geoip? ( dev-libs/geoip:0= )
kerberos? ( virtual/krb5 )
lz4? ( app-arch/lz4:0= )
diff --git a/net-vpn/ocserv/ocserv-1.1.1.ebuild b/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
similarity index 96%
rename from net-vpn/ocserv/ocserv-1.1.1.ebuild
rename to net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
index 41a683070d5..83522add4c3 100644
--- a/net-vpn/ocserv/ocserv-1.1.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -35,6 +35,7 @@ DEPEND="
net-libs/http-parser:0=
sys-libs/readline:0=
sys-libs/talloc:0=
+ virtual/libcrypt:=
geoip? ( dev-libs/geoip:0= )
kerberos? ( virtual/krb5 )
lz4? ( app-arch/lz4:0= )
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-11-21 18:55 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2020-11-21 18:55 UTC (permalink / raw
To: gentoo-commits
commit: 6dacaeb8ae3cd690c830b31c6f12e8eb0665d234
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 21 18:55:15 2020 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Nov 21 18:55:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dacaeb8
net-vpn/ocserv: bump to 1.1.1
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/Manifest | 1 +
net-vpn/ocserv/ocserv-1.1.1.ebuild | 81 ++++++++++++++++++++++++++++++++++++++
2 files changed, 82 insertions(+)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 8bbe3efe2fa..66048da9281 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1 +1,2 @@
DIST ocserv-1.0.1.tar.xz 787800 BLAKE2B 655a2a6e1434a5b31b157e0f73df3d6d04011c06fd5a1f39f1152752abdc837974c739bc0694a804a1e96b4e219c78c5cf1a58040bbcdcad3e326d0c9e584c7b SHA512 953e1b6084f68f8627b5383e28b5fcde987881e66feac645a40fa37d895f0711b171c9029c3703773dfbd5432d747f92c71af9240c2df3381599902a7d5fe880
+DIST ocserv-1.1.1.tar.xz 818988 BLAKE2B 06fdc47fcabea162ddd417f315c53e85f4ccdc1dc9b60b624c06ee4adae9d6f0ee96f94c15daafa0633b4925720519da7220914008c64c5771f61416208a570e SHA512 1173416f0d32f9faf98e539c8e73316a50ac93b519d1ade19374a3df865d10d975e13ac53e0c5a5e77c80f3605d7a810287b18b85b798887d227389761b54220
diff --git a/net-vpn/ocserv/ocserv-1.1.1.ebuild b/net-vpn/ocserv/ocserv-1.1.1.ebuild
new file mode 100644
index 00000000000..41a683070d5
--- /dev/null
+++ b/net-vpn/ocserv/ocserv-1.1.1.ebuild
@@ -0,0 +1,81 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd
+
+DESCRIPTION="Openconnect SSL VPN server"
+HOMEPAGE="https://ocserv.gitlab.io/www/index.html"
+SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ virtual/pkgconfig
+ test? (
+ net-libs/gnutls[tools(+)]
+ net-libs/socket_wrapper
+ net-vpn/openconnect
+ sys-libs/nss_wrapper
+ sys-libs/uid_wrapper
+ )
+"
+DEPEND="
+ dev-libs/libnl:3=
+ dev-libs/libev:0=
+ >=dev-libs/nettle-2.7:0=
+ dev-libs/pcl:0=
+ dev-libs/protobuf-c:0=
+ >=net-libs/gnutls-3.3.0:0=
+ net-libs/http-parser:0=
+ sys-libs/readline:0=
+ sys-libs/talloc:0=
+ geoip? ( dev-libs/geoip:0= )
+ kerberos? ( virtual/krb5 )
+ lz4? ( app-arch/lz4:0= )
+ otp? ( sys-auth/oath-toolkit:0= )
+ pam? ( sys-libs/pam:0= )
+ radius? ( net-dialup/freeradius-client:0= )
+ seccomp? ( sys-libs/libseccomp:0= )
+ systemd? ( sys-apps/systemd:0= )
+ tcpd? ( sys-apps/tcp-wrappers:0= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local myconf=(
+ --without-root-tests
+ --without-nuttcp-tests
+
+ $(use_enable seccomp)
+ $(use_enable systemd)
+
+ $(use_with geoip)
+ $(use_with kerberos gssapi)
+ $(use_with lz4)
+ $(use_with otp liboath)
+ $(use_with radius)
+ $(use_with tcpd libwrap)
+ )
+ econf "${myconf[@]}"
+}
+
+src_install() {
+ default
+
+ dodoc doc/sample.{config,passwd}
+ use otp && dodoc doc/sample.otp
+
+ doinitd "${FILESDIR}"/ocserv
+
+ if use systemd; then
+ systemd_dounit doc/systemd/socket-activated/ocserv.{service,socket}
+ else
+ systemd_dounit doc/systemd/standalone/ocserv.service
+ fi
+}
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-06-08 6:41 Michał Górny
0 siblings, 0 replies; 41+ messages in thread
From: Michał Górny @ 2020-06-08 6:41 UTC (permalink / raw
To: gentoo-commits
commit: f13caa95d84e47a9187ae14ff561f909d818f409
Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Sun Jun 7 02:45:55 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jun 8 06:41:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f13caa95
net-vpn/ocserv: arm stable (bug #719108)
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 90aa175c0d3..bd210f3d141 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 arm arm64 ppc64 x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-14 21:29 Thomas Deutschmann
0 siblings, 0 replies; 41+ messages in thread
From: Thomas Deutschmann @ 2020-05-14 21:29 UTC (permalink / raw
To: gentoo-commits
commit: f6c72b156a1cf6d08d4ccd33ba085d8f7b10ecca
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu May 14 21:24:11 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu May 14 21:29:31 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c72b15
net-vpn/ocserv: x86 stable (bug #719108)
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 19106a23389..90aa175c0d3 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-13 17:14 Agostino Sarubbo
0 siblings, 0 replies; 41+ messages in thread
From: Agostino Sarubbo @ 2020-05-13 17:14 UTC (permalink / raw
To: gentoo-commits
commit: aac0e0ab6c2e4ee0e10b29955715058ef72bbd44
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed May 13 17:14:02 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed May 13 17:14:02 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aac0e0ab
net-vpn/ocserv: ppc64 stable wrt bug #719108
Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index b38b5a1ace6..19106a23389 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-09 8:47 Mart Raudsepp
0 siblings, 0 replies; 41+ messages in thread
From: Mart Raudsepp @ 2020-05-09 8:47 UTC (permalink / raw
To: gentoo-commits
commit: 19eac441fc7b5e238b6442ef0e68528149bd5859
Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Sat May 9 01:55:13 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat May 9 08:47:11 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19eac441
net-vpn/ocserv: arm64 stable (bug #719108)
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index b74db9451c7..b38b5a1ace6 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-08 2:41 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2020-05-08 2:41 UTC (permalink / raw
To: gentoo-commits
commit: 3ce65a2136c8f0c14ca1db4bb6d75e1795da0322
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri May 8 02:39:31 2020 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri May 8 02:39:31 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce65a21
net-vpn/ocserv: depend on net-vpn/openconnect for testing
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 321389528dd..b74db9451c7 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -20,6 +20,7 @@ BDEPEND="
test? (
net-libs/gnutls[tools(+)]
net-libs/socket_wrapper
+ net-vpn/openconnect
sys-libs/nss_wrapper
sys-libs/uid_wrapper
)
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-07 16:35 Mikle Kolyada
0 siblings, 0 replies; 41+ messages in thread
From: Mikle Kolyada @ 2020-05-07 16:35 UTC (permalink / raw
To: gentoo-commits
commit: 121253aa8423442957014a3f5da3ab3197f1a82c
Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Thu May 7 12:58:00 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Thu May 7 16:35:52 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=121253aa
net-vpn/ocserv: arm keyworded
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 6dd0936a116..321389528dd 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-07 15:58 Agostino Sarubbo
0 siblings, 0 replies; 41+ messages in thread
From: Agostino Sarubbo @ 2020-05-07 15:58 UTC (permalink / raw
To: gentoo-commits
commit: 55146cf3131919e90b42f85a04cb275b793f0650
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 7 15:57:34 2020 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 7 15:57:34 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55146cf3
net-vpn/ocserv: amd64 stable wrt bug #719108
Package-Manager: Portage-2.3.89, Repoman-2.3.20
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 45d14d09ec6..6dd0936a116 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-06 1:01 Thomas Deutschmann
0 siblings, 0 replies; 41+ messages in thread
From: Thomas Deutschmann @ 2020-05-06 1:01 UTC (permalink / raw
To: gentoo-commits
commit: 39b505ca8633c88f66e00e2c4c2435a9c3903438
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed May 6 01:00:23 2020 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed May 6 01:01:27 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39b505ca
net-vpn/ocserv: x86 keyworded (bug #718792)
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 53ba81cf66b..45d14d09ec6 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-02 13:30 Mart Raudsepp
0 siblings, 0 replies; 41+ messages in thread
From: Mart Raudsepp @ 2020-05-02 13:30 UTC (permalink / raw
To: gentoo-commits
commit: cdcf08e46b0829557b8990f07e3c7025ae81c743
Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Sat May 2 00:53:24 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Sat May 2 13:15:06 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdcf08e4
net-vpn/ocserv: arm64 keyworded
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 2b31e3249d4..53ba81cf66b 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-01 9:11 Georgy Yakovlev
0 siblings, 0 replies; 41+ messages in thread
From: Georgy Yakovlev @ 2020-05-01 9:11 UTC (permalink / raw
To: gentoo-commits
commit: 2c16a4960a59f8eec95c853f3c3994730b13db94
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Fri May 1 09:06:21 2020 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Fri May 1 09:06:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c16a496
net-vpn/ocserv: add ~ppc64 keyword, bug #718792, also fix manifest
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
net-vpn/ocserv/Manifest | 2 +-
net-vpn/ocserv/ocserv-1.0.1.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest
index 61f88a45c78..8bbe3efe2fa 100644
--- a/net-vpn/ocserv/Manifest
+++ b/net-vpn/ocserv/Manifest
@@ -1 +1 @@
-DIST ocserv-1.0.0.tar.xz 785020 BLAKE2B 6fff9459a29508e4f0e25f77b28d2c8883b4c3ba43fc758b71f6f0c0a369946287dd810f3af91e037e79f8b4a4085961246f313d2cb982cacba66615c24b0bb9 SHA512 6f396c9180004f8d439e094f9de0490016b085dad6bd7a5d17d3433480b37de65c25fc0c52452f5ea408bb7bc997ddcbfcdd80a3bbe454af3267aa14edbb3df9
+DIST ocserv-1.0.1.tar.xz 787800 BLAKE2B 655a2a6e1434a5b31b157e0f73df3d6d04011c06fd5a1f39f1152752abdc837974c739bc0694a804a1e96b4e219c78c5cf1a58040bbcdcad3e326d0c9e584c7b SHA512 953e1b6084f68f8627b5383e28b5fcde987881e66feac645a40fa37d895f0711b171c9029c3703773dfbd5432d747f92c71af9240c2df3381599902a7d5fe880
diff --git a/net-vpn/ocserv/ocserv-1.0.1.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
index 069c2334ddd..2b31e3249d4 100644
--- a/net-vpn/ocserv/ocserv-1.0.1.ebuild
+++ b/net-vpn/ocserv/ocserv-1.0.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-05-01 4:56 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2020-05-01 4:56 UTC (permalink / raw
To: gentoo-commits
commit: 275f49aae323245e399c2d401be4da8cc461a5c6
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri May 1 04:56:25 2020 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri May 1 04:56:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=275f49aa
net-vpn/ocserv: bump to 1.0.1
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/{ocserv-1.0.0.ebuild => ocserv-1.0.1.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/net-vpn/ocserv/ocserv-1.0.0.ebuild b/net-vpn/ocserv/ocserv-1.0.1.ebuild
similarity index 100%
rename from net-vpn/ocserv/ocserv-1.0.0.ebuild
rename to net-vpn/ocserv/ocserv-1.0.1.ebuild
^ permalink raw reply [flat|nested] 41+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/
@ 2020-04-03 4:17 Mike Gilbert
0 siblings, 0 replies; 41+ messages in thread
From: Mike Gilbert @ 2020-04-03 4:17 UTC (permalink / raw
To: gentoo-commits
commit: a2456cab13aff2f1006c5e42ef4f793214879a0d
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 3 04:16:58 2020 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Fri Apr 3 04:16:58 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2456cab
net-vpn/ocserv: remove lz4 USE flag description
Package-Manager: Portage-2.3.96_p4, Repoman-2.3.22_p1
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
net-vpn/ocserv/metadata.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/net-vpn/ocserv/metadata.xml b/net-vpn/ocserv/metadata.xml
index 499a99ebd4e..fc9ab30d465 100644
--- a/net-vpn/ocserv/metadata.xml
+++ b/net-vpn/ocserv/metadata.xml
@@ -6,7 +6,6 @@
<name>Mike Gilbert</name>
</maintainer>
<use>
- <flag name="lz4">Enable support for lz4 compression</flag>
<flag name="otp">Enable support for one-time passwords</flag>
</use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 41+ messages in thread
end of thread, other threads:[~2024-08-10 15:41 UTC | newest]
Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-06 0:09 [gentoo-commits] repo/gentoo:master commit in: net-vpn/ocserv/ Mike Gilbert
-- strict thread matches above, loose matches on Subject: below --
2024-08-10 15:41 Michał Górny
2024-08-04 12:53 Jakov Smolić
2024-08-04 12:53 Jakov Smolić
2024-08-03 22:51 Sam James
2024-05-23 15:56 Arthur Zamarin
2024-05-23 15:56 Arthur Zamarin
2024-05-22 22:10 Sam James
2024-05-22 19:24 Sam James
2024-05-22 19:24 Sam James
2024-05-20 14:44 Mike Gilbert
2024-05-19 16:19 Mike Gilbert
2024-05-19 16:19 Mike Gilbert
2024-05-19 15:21 Mike Gilbert
2023-06-06 0:26 Mike Gilbert
2023-05-05 15:01 Mike Gilbert
2023-05-05 15:01 Mike Gilbert
2022-05-19 7:49 Agostino Sarubbo
2022-05-15 9:05 Jakov Smolić
2022-05-13 21:06 Jakov Smolić
2022-05-13 20:09 Jakov Smolić
2022-05-13 20:09 Jakov Smolić
2022-04-11 1:08 Mike Gilbert
2022-04-11 0:46 Mike Gilbert
2021-08-07 0:05 Mike Gilbert
2021-08-02 19:43 Mike Gilbert
2021-07-24 23:02 Marek Szuba
2021-06-27 21:50 Mike Gilbert
2020-11-21 18:55 Mike Gilbert
2020-06-08 6:41 Michał Górny
2020-05-14 21:29 Thomas Deutschmann
2020-05-13 17:14 Agostino Sarubbo
2020-05-09 8:47 Mart Raudsepp
2020-05-08 2:41 Mike Gilbert
2020-05-07 16:35 Mikle Kolyada
2020-05-07 15:58 Agostino Sarubbo
2020-05-06 1:01 Thomas Deutschmann
2020-05-02 13:30 Mart Raudsepp
2020-05-01 9:11 Georgy Yakovlev
2020-05-01 4:56 Mike Gilbert
2020-04-03 4:17 Mike Gilbert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox