Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/i2pd/
Date: Wed, 01 Dec 2021 05:50:09
Message-Id: 1638337757.fecadde56702a97c4c5eab61b68191f98f4d5327.ionen@gentoo
1 commit: fecadde56702a97c4c5eab61b68191f98f4d5327
2 Author: Alexey Korepanov <kaikaikai <AT> yandex <DOT> ru>
3 AuthorDate: Mon Nov 29 15:19:29 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 1 05:49:17 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fecadde5
7
8 net-vpn/i2pd: remove old
9
10 Signed-off-by: Alexey Korepanov <kaikaikai <AT> yandex.ru>
11 Closes: https://github.com/gentoo/gentoo/pull/23113
12 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
13
14 net-vpn/i2pd/Manifest | 1 -
15 net-vpn/i2pd/i2pd-2.39.0.ebuild | 81 -----------------------------------------
16 2 files changed, 82 deletions(-)
17
18 diff --git a/net-vpn/i2pd/Manifest b/net-vpn/i2pd/Manifest
19 index 6ad053b5a959..fad0441f8eba 100644
20 --- a/net-vpn/i2pd/Manifest
21 +++ b/net-vpn/i2pd/Manifest
22 @@ -1,2 +1 @@
23 -DIST i2pd-2.39.0.tar.gz 579825 BLAKE2B 14f4167fd7752529f513f89cf9d08fd9dbf086f9336c5dae47ef30fa81a753c955de7e622131214f6924a7af8fb62e6a3b5b59c8ae0d407ed7305c3c6dc8a692 SHA512 6b38e6e2e763e94ffe9d11eb2f9a0e9554560bb4fec95891240adf5bc0a9639f879dac4ff3712a9f8e00895b7bbeabc854887e61fe9f9755c33f96899e20aa76
24 DIST i2pd-2.40.0.tar.gz 587626 BLAKE2B 80433580f3db5969f0f30bac420104a29995c0f32ed738d64d079854892a1f70876ab9180fbe8269ccb6b91474f786c834dc08e71a2cad81307a8b54fdda8888 SHA512 58d10417f3fd2c2fb427fb88b30ccd3e03053c84aa7ac6d3e346c388f2376d1768846bec5ee8d5134dd62d5712b20f890af11083634f94095b1117f6494c25fd
25
26 diff --git a/net-vpn/i2pd/i2pd-2.39.0.ebuild b/net-vpn/i2pd/i2pd-2.39.0.ebuild
27 deleted file mode 100644
28 index a97df49807db..000000000000
29 --- a/net-vpn/i2pd/i2pd-2.39.0.ebuild
30 +++ /dev/null
31 @@ -1,81 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -inherit cmake toolchain-funcs systemd
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 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
46 -IUSE="cpu_flags_x86_aes cpu_flags_x86_avx i2p-hardening +upnp"
47 -
48 -RDEPEND="
49 - acct-user/i2pd
50 - acct-group/i2pd
51 - dev-libs/boost:=[threads(+)]
52 - dev-libs/openssl:0=[-bindist(-)]
53 - sys-libs/zlib
54 - upnp? ( net-libs/miniupnpc:= )"
55 -DEPEND="${RDEPEND}"
56 -
57 -CMAKE_USE_DIR="${S}/build"
58 -
59 -DOCS=( README.md contrib/i2pd.conf contrib/tunnels.conf )
60 -
61 -pkg_pretend() {
62 - if use i2p-hardening && ! tc-is-gcc; then
63 - die "i2p-hardening requires gcc"
64 - fi
65 -}
66 -
67 -src_configure() {
68 - local mycmakeargs=(
69 - -DWITH_AESNI=$(usex cpu_flags_x86_aes ON OFF)
70 - -DWITH_HARDENING=$(usex i2p-hardening ON OFF)
71 - -DWITH_PCH=OFF
72 - -DWITH_STATIC=OFF
73 - -DWITH_UPNP=$(usex upnp ON OFF)
74 - -DWITH_LIBRARY=ON
75 - -DWITH_BINARY=ON
76 - )
77 - cmake_src_configure
78 -}
79 -
80 -src_install() {
81 - cmake_src_install
82 -
83 - # config
84 - insinto /etc/i2pd
85 - doins contrib/i2pd.conf
86 - doins contrib/tunnels.conf
87 -
88 - # working directory
89 - insinto /var/lib/i2pd
90 - doins -r contrib/certificates
91 -
92 - # add /var/lib/i2pd/certificates to CONFIG_PROTECT
93 - doenvd "${FILESDIR}/99i2pd"
94 -
95 - # openrc and systemd daemon routines
96 - newconfd "${FILESDIR}/i2pd-2.6.0-r3.confd" i2pd
97 - newinitd "${FILESDIR}/i2pd-2.39.0.initd" i2pd
98 - systemd_newunit "${FILESDIR}/i2pd-2.38.0.service" i2pd.service
99 -
100 - # logrotate
101 - insinto /etc/logrotate.d
102 - newins "${FILESDIR}/i2pd-2.38.0-r1.logrotate" i2pd
103 -}
104 -
105 -pkg_postinst() {
106 - if [[ -f ${EROOT}/etc/i2pd/subscriptions.txt ]]; then
107 - ewarn
108 - ewarn "Configuration of the subscriptions has been moved from"
109 - ewarn "subscriptions.txt to i2pd.conf. We recommend updating"
110 - ewarn "i2pd.conf accordingly and deleting subscriptions.txt."
111 - fi
112 -}