Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/openfortivpn/
Date: Wed, 20 Oct 2021 03:26:26
Message-Id: 1634700369.c8b473f0b87da6dcaa18585f9da1a3ff095899af.sam@gentoo
1 commit: c8b473f0b87da6dcaa18585f9da1a3ff095899af
2 Author: Petru Ciobanu <scantlight <AT> gmail <DOT> com>
3 AuthorDate: Tue Oct 12 00:12:02 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 20 03:26:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b473f0
7
8 net-vpn/openfortivpn: Version bump 1.17.0
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Petru Ciobanu <scantlight <AT> gmail.com>
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-vpn/openfortivpn/Manifest | 1 +
15 net-vpn/openfortivpn/openfortivpn-1.17.0.ebuild | 36 +++++++++++++++++++++++++
16 2 files changed, 37 insertions(+)
17
18 diff --git a/net-vpn/openfortivpn/Manifest b/net-vpn/openfortivpn/Manifest
19 index 923da164637..8634d5657e3 100644
20 --- a/net-vpn/openfortivpn/Manifest
21 +++ b/net-vpn/openfortivpn/Manifest
22 @@ -1,3 +1,4 @@
23 DIST openfortivpn-1.13.2.tar.gz 82977 BLAKE2B 5daf2fdacaf2f9c3bc0a4bc3fc26543ed0ab424b70d2795e7b3d74b38cba53b1a8a9823564198ea5292b63f872c12f17ed3f65111a7024faee19640fff765cd7 SHA512 6be456784618d0af26190bad4af20a5f7163d3d984e3317fa3aac04b605ddd39f8973b192cf35fc8a371bf5ca4cbff8f644991b0cc031f558bf7881066fe8ec2
24 DIST openfortivpn-1.15.0.tar.gz 157951 BLAKE2B 051dbc5ab5c003926fa4424b9c69e899bc9602aabab7749953743d1d81e0ebd90ebdf157921cabc016cf93263279eab111ed1b9763fb4ba50a11f463659be2dd SHA512 8ec6454c197925a031a454e3983ed98d93d48514d86ebb09483157872e299d9c6b36a966ac6c67cd85d203223460998cdc0e6af9d5389357d4a55789aa5e2083
25 DIST openfortivpn-1.16.0.tar.gz 163878 BLAKE2B 003460ca6012b90ddea41b1fe533c3b6899fa8528ef656e6d1b4a200f01d3a476749405294fc2c3c4ba489a41d7e72738d540632922fe2ae2d2344f5fc5750e3 SHA512 bd57bc076f89604077c0c6f538090b33707e2534f83ae7e01ee0604b044b2f1083b65f7d0241fb4fc38eabe8462689137c66bf59dac12b21408b8453f5b2cc5a
26 +DIST openfortivpn-1.17.0.tar.gz 166943 BLAKE2B f6372eac056ce0b9c1d3ea46d6af3d5da2323ecc96273b37efb9eccb13d31f607b1bc5843b2d33b3a722901530109a6cf0b270d6d4e31433045e6bca6041279a SHA512 fb92e07468c6a4232977506eb42e416a32612a0bd78b705588c66e7ae68c712e2d245ee4eac6806dfb7cab5fcf10739ed9002358a425a8dbb75fb1cdc15e4c98
27
28 diff --git a/net-vpn/openfortivpn/openfortivpn-1.17.0.ebuild b/net-vpn/openfortivpn/openfortivpn-1.17.0.ebuild
29 new file mode 100644
30 index 00000000000..0c64cdfd137
31 --- /dev/null
32 +++ b/net-vpn/openfortivpn/openfortivpn-1.17.0.ebuild
33 @@ -0,0 +1,36 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit autotools linux-info
40 +
41 +DESCRIPTION="Fortinet compatible VPN client"
42 +HOMEPAGE="https://github.com/adrienverge/openfortivpn"
43 +SRC_URI="https://github.com/adrienverge/openfortivpn/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3-with-openssl-exception openssl"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +DEPEND="
50 + net-dialup/ppp
51 + dev-libs/openssl:0=
52 +"
53 +RDEPEND="${DEPEND}"
54 +
55 +CONFIG_CHECK="~PPP ~PPP_ASYNC"
56 +
57 +src_prepare() {
58 + default
59 +
60 + sed -i 's/-Werror//g' Makefile.am || die "Failed to remove -Werror from Makefile.am"
61 +
62 + eautoreconf
63 +}
64 +
65 +src_install() {
66 + default
67 +
68 + keepdir /etc/openfortivpn
69 +}