Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/i2pd/
Date: Thu, 31 Jan 2019 00:05:28
Message-Id: 1548893115.345f5b9043cae88112f9be599cfbc2c136497aff.blueness@gentoo
1 commit: 345f5b9043cae88112f9be599cfbc2c136497aff
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 31 00:05:01 2019 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 31 00:05:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=345f5b90
7
8 net-vpn/i2pd: version bump to 2.23.0
9
10 Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-vpn/i2pd/Manifest | 1 +
14 net-vpn/i2pd/i2pd-2.23.0.ebuild | 120 ++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 121 insertions(+)
16
17 diff --git a/net-vpn/i2pd/Manifest b/net-vpn/i2pd/Manifest
18 index 49e864574a2..a62f6f7118e 100644
19 --- a/net-vpn/i2pd/Manifest
20 +++ b/net-vpn/i2pd/Manifest
21 @@ -3,3 +3,4 @@ DIST i2pd-2.20.0.tar.gz 1991174 BLAKE2B 37b85dc37299cd6d2f64050eb096ecc11d75ccdc
22 DIST i2pd-2.21.0.tar.gz 1993520 BLAKE2B 616f4938d547e6a5d27292bec1741fa28131c37ad12b0f7c564e24ff0fd3b0a01974989ac6f337cd58cc1a618980fd171692c0164d22c3e97080540318e5df89 SHA512 a9c2f4bb1ec6459e7f8f48b74a48dd192af0962876fc6dcf998febe342918f98a21ae421cf48402d5e0c4570641eb3112d85522230dad34cabe6c4f367d6d8ab
23 DIST i2pd-2.21.1.tar.gz 1993853 BLAKE2B 8686acf12464f892cb116ba6c14b67fc56af45315feec25b4c165c7b38238f48b7e1ca227f8b2b53dabcb4d9f46555e1528f4f11e675fbfc63aa3fad062280b6 SHA512 e73c0c1f624b468a4a30996de77b27f5a2166d16b57724ec58647e5630f9e988052b11962fa47f318403ccd4c675a8d7c8b0ddcaa79666cea9743a6437fc4fd2
24 DIST i2pd-2.22.0.tar.gz 2263033 BLAKE2B b8b7fa0a1fc4e333824eed8c6bd5fbfe40b83b7a0dbf5db8001144ca1b672c6e33996ad5218ef53cca15e56738fd8447f1c10a90c109d86a2364ef7646cc1377 SHA512 da8187a5d68bf09962419da91eeeb12534eaa2b519139784afb5faf6f1c40e7b344181f987461614d0f7b6563d0a872c8180ecc8a122ed08688130de3d13b0e8
25 +DIST i2pd-2.23.0.tar.gz 1008677 BLAKE2B c216785d8642e1c8d7cdbcddd23e6dd0b8a1fe8d732ef8b8d19e3c7c55ad91285dfa85bcfab0934a0acc4c180750ff8e3f5730f948dafff7c283ed084afa3374 SHA512 b547fa5b4ab3fbdf51cded846966b702304cc3dcbafbf3b4fc0e93e1907e45a649dd19eabc851309dfb7d3aa8ef84eefcb2cf1a3cda8549f90200da54df06923
26
27 diff --git a/net-vpn/i2pd/i2pd-2.23.0.ebuild b/net-vpn/i2pd/i2pd-2.23.0.ebuild
28 new file mode 100644
29 index 00000000000..963416b932a
30 --- /dev/null
31 +++ b/net-vpn/i2pd/i2pd-2.23.0.ebuild
32 @@ -0,0 +1,120 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +inherit systemd user cmake-utils eapi7-ver toolchain-funcs
38 +
39 +DESCRIPTION="A C++ daemon for accessing the I2P anonymous network"
40 +HOMEPAGE="https://github.com/PurpleI2P/i2pd"
41 +SRC_URI="https://github.com/PurpleI2P/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
45 +IUSE="cpu_flags_x86_aes cpu_flags_x86_avx i2p-hardening libressl static +upnp websocket"
46 +
47 +# if using libressl, require >=boost-1.65, see #597798
48 +RDEPEND="
49 + !static? (
50 + dev-libs/boost[threads]
51 + !libressl? ( dev-libs/openssl:0[-bindist] )
52 + libressl? (
53 + dev-libs/libressl:0
54 + >=dev-libs/boost-1.65
55 + )
56 + upnp? ( net-libs/miniupnpc )
57 + )"
58 +DEPEND="${RDEPEND}
59 + static? (
60 + dev-libs/boost[static-libs,threads]
61 + !libressl? ( dev-libs/openssl:0[static-libs] )
62 + libressl? (
63 + dev-libs/libressl:0[static-libs]
64 + >=dev-libs/boost-1.65
65 + )
66 + sys-libs/zlib[static-libs]
67 + upnp? ( net-libs/miniupnpc[static-libs] )
68 + )
69 + websocket? ( dev-cpp/websocketpp )"
70 +
71 +I2PD_USER=i2pd
72 +I2PD_GROUP=i2pd
73 +
74 +CMAKE_USE_DIR="${S}/build"
75 +
76 +DOCS=( README.md contrib/i2pd.conf contrib/tunnels.conf )
77 +
78 +PATCHES=( "${FILESDIR}/${PN}-2.14.0-fix_installed_components.patch" )
79 +
80 +pkg_pretend() {
81 + if tc-is-gcc && ! ver_test "$(gcc-version)" -ge "4.7"; then
82 + die "At least gcc 4.7 is required"
83 + fi
84 + if use i2p-hardening && ! tc-is-gcc; then
85 + die "i2p-hardening requires gcc"
86 + fi
87 +}
88 +
89 +src_configure() {
90 + mycmakeargs=(
91 + -DWITH_AESNI=$(usex cpu_flags_x86_aes ON OFF)
92 + -DWITH_AVX=$(usex cpu_flags_x86_avx ON OFF)
93 + -DWITH_HARDENING=$(usex i2p-hardening ON OFF)
94 + -DWITH_PCH=OFF
95 + -DWITH_STATIC=$(usex static ON OFF)
96 + -DWITH_UPNP=$(usex upnp ON OFF)
97 + -DWITH_WEBSOCKETS=$(usex websocket ON OFF)
98 + -DWITH_LIBRARY=ON
99 + -DWITH_BINARY=ON
100 + )
101 + cmake-utils_src_configure
102 +}
103 +
104 +src_install() {
105 + cmake-utils_src_install
106 +
107 + # config
108 + insinto /etc/i2pd
109 + doins contrib/i2pd.conf
110 + doins contrib/tunnels.conf
111 +
112 + # grant i2pd group read and write access to config files
113 + fowners "root:${I2PD_GROUP}" \
114 + /etc/i2pd/i2pd.conf \
115 + /etc/i2pd/tunnels.conf
116 + fperms 660 \
117 + /etc/i2pd/i2pd.conf \
118 + /etc/i2pd/tunnels.conf
119 +
120 + # working directory
121 + keepdir /var/lib/i2pd
122 + insinto /var/lib/i2pd
123 + doins -r contrib/certificates
124 + fowners "${I2PD_USER}:${I2PD_GROUP}" /var/lib/i2pd/
125 + fperms 700 /var/lib/i2pd/
126 +
127 + # add /var/lib/i2pd/certificates to CONFIG_PROTECT
128 + doenvd "${FILESDIR}/99i2pd"
129 +
130 + # openrc and systemd daemon routines
131 + newconfd "${FILESDIR}/i2pd-2.6.0-r3.confd" i2pd
132 + newinitd "${FILESDIR}/i2pd-2.6.0-r3.initd" i2pd
133 + systemd_newunit "${FILESDIR}/i2pd-2.6.0-r3.service" i2pd.service
134 +
135 + # logrotate
136 + insinto /etc/logrotate.d
137 + newins "${FILESDIR}/i2pd-2.6.0-r3.logrotate" i2pd
138 +}
139 +
140 +pkg_setup() {
141 + enewgroup "${I2PD_GROUP}"
142 + enewuser "${I2PD_USER}" -1 -1 /var/lib/run/i2pd "${I2PD_GROUP}"
143 +}
144 +
145 +pkg_postinst() {
146 + if [[ -f ${EROOT%/}/etc/i2pd/subscriptions.txt ]]; then
147 + ewarn
148 + ewarn "Configuration of the subscriptions has been moved from"
149 + ewarn "subscriptions.txt to i2pd.conf. We recommend updating"
150 + ewarn "i2pd.conf accordingly and deleting subscriptions.txt."
151 + fi
152 +}