Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/
Date: Thu, 30 Jan 2020 20:47:21
Message-Id: 1580417155.19ddaac43c07ca60bb27a54c92c53ee6f49351e5.gyakovlev@gentoo
1 commit: 19ddaac43c07ca60bb27a54c92c53ee6f49351e5
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 30 20:45:55 2020 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 30 20:45:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ddaac4
7
8 net-dns/dnscrypt-proxy: bump to 2.0.38
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
12
13 net-dns/dnscrypt-proxy/Manifest | 1 +
14 .../dnscrypt-proxy/dnscrypt-proxy-2.0.38.ebuild | 99 ++++++++++++++++++++++
15 2 files changed, 100 insertions(+)
16
17 diff --git a/net-dns/dnscrypt-proxy/Manifest b/net-dns/dnscrypt-proxy/Manifest
18 index 66a479f6498..f812ad7651f 100644
19 --- a/net-dns/dnscrypt-proxy/Manifest
20 +++ b/net-dns/dnscrypt-proxy/Manifest
21 @@ -2,3 +2,4 @@ DIST dnscrypt-proxy-2.0.33.tar.gz 2723092 BLAKE2B 26ed819f264c1a536b2e47d9ffa412
22 DIST dnscrypt-proxy-2.0.34.tar.gz 2741556 BLAKE2B 81e3c5b1de70cf81882725b1d1f9bfb0b687dbac6ce408c70178ac7107c6c4fc6fbee4a05deb775519aef82c2added5cec9e264a73af1b6eca1524ecd973c381 SHA512 b48bbedbd5fea5514669ff5593ecd0aee083979c3030fe775558441ee2c398206eba786b9497022c3fab08fe7ee49dcc5205303629834f8fe65d7246e3352381
23 DIST dnscrypt-proxy-2.0.35.tar.gz 2740595 BLAKE2B a64d1771979179f6b2387473c6ac21705b30263572550efd4ffb8ef008e67a74878ab4e72bbb4f29528c4c13dfaf4654f7625671579cb90c3b784ab4299f7ec0 SHA512 41e3c0646e215da3ce00e9ff9f22a4d3468b6589c424343ce0649c5a47cdbce26c2d9ffc3abf61c35d85eda964c499877d6f13619ce2308fe045a0272b1ca0e9
24 DIST dnscrypt-proxy-2.0.36.tar.gz 2814470 BLAKE2B d1483d1c0550d9493129fd7b9969d45ab5225b09cfa6c2e10c60d9df963742664a1fa75720561e1e883c4688077ee1e2de84669f527271c8c5455e435ea2daf8 SHA512 b1e3ed2a0226eaf35980b9f1125e0794640bcd837f99b8f2a0346498770305f04e27f13ccf97f01f0639285ef35f63cbbf72e9f2b419d592b615f6b07cdf7f2d
25 +DIST dnscrypt-proxy-2.0.38.tar.gz 2814501 BLAKE2B 6dd4e3a0056a7a687335fcf6f15d8dccd9088c0cb44fa8f44be65a25290e0cbbde5b122cf43a2488311ab6b65511a9311b16434bdd31df1dbed0c2dd89e224b1 SHA512 eab418580eddce4f1788784cdea15ff7f2456c7f723b495fbc70a7ed5b3e9828fb0bc3b0ac169718044f27b081cb94d561054d24b1bd167fb8d84c5aeaae1a26
26
27 diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.38.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.38.ebuild
28 new file mode 100644
29 index 00000000000..df223114220
30 --- /dev/null
31 +++ b/net-dns/dnscrypt-proxy/dnscrypt-proxy-2.0.38.ebuild
32 @@ -0,0 +1,99 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +EGO_PN="github.com/jedisct1/${PN}"
39 +
40 +inherit fcaps go-module systemd
41 +
42 +if [[ ${PV} == 9999 ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://${EGO_PN}.git"
45 +else
46 + SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
47 + KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
48 +fi
49 +
50 +DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols"
51 +HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"
52 +
53 +LICENSE="Apache-2.0 BSD ISC MIT MPL-2.0"
54 +SLOT="0"
55 +IUSE="pie"
56 +
57 +BDEPEND=">=dev-lang/go-1.13"
58 +
59 +RDEPEND="
60 + acct-group/dnscrypt-proxy
61 + acct-user/dnscrypt-proxy
62 +"
63 +
64 +FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy )
65 +PATCHES=( "${FILESDIR}"/config-full-paths-r10.patch )
66 +
67 +src_compile() {
68 + pushd "${PN}" >/dev/null || die
69 + go build -buildmode="$(usex pie pie default)" || die
70 + popd >/dev/null || die
71 +}
72 +
73 +src_install() {
74 + pushd "${PN}" >/dev/null || die
75 +
76 + dobin dnscrypt-proxy
77 +
78 + insinto /etc/dnscrypt-proxy
79 + newins example-dnscrypt-proxy.toml dnscrypt-proxy.toml
80 + doins example-{blacklist.txt,whitelist.txt}
81 + doins example-{cloaking-rules.txt,forwarding-rules.txt}
82 +
83 + popd >/dev/null || die
84 +
85 + insinto /usr/share/dnscrypt-proxy
86 + doins -r "utils/generate-domains-blacklists/."
87 +
88 + newinitd "${FILESDIR}"/dnscrypt-proxy.initd dnscrypt-proxy
89 + newconfd "${FILESDIR}"/dnscrypt-proxy.confd dnscrypt-proxy
90 +
91 + systemd_newunit "${FILESDIR}"/dnscrypt-proxy.service dnscrypt-proxy.service
92 + systemd_newunit "${FILESDIR}"/dnscrypt-proxy.socket dnscrypt-proxy.socket
93 +
94 + insinto /etc/logrotate.d
95 + newins "${FILESDIR}"/dnscrypt-proxy.logrotate dnscrypt-proxy
96 +
97 + einstalldocs
98 +}
99 +
100 +pkg_postinst() {
101 + fcaps_pkg_postinst
102 + go-module_pkg_postinst
103 +
104 + if ! use filecaps; then
105 + ewarn "'filecaps' USE flag is disabled"
106 + ewarn "${PN} will fail to listen on port 53"
107 + ewarn "please do one the following:"
108 + ewarn "1) re-enable 'filecaps'"
109 + ewarn "2) change port to > 1024"
110 + ewarn "3) configure to run ${PN} as root (not recommended)"
111 + ewarn
112 + fi
113 +
114 + if systemd_is_booted || has_version sys-apps/systemd; then
115 + elog "Using systemd socket activation may cause issues with speed"
116 + elog "latency and reliability of ${PN} and is discouraged by upstream"
117 + elog "Existing installations advised to disable 'dnscrypt-proxy.socket'"
118 + elog "It is disabled by default for new installations"
119 + elog "check "$(systemd_get_systemunitdir)/${PN}.service" for details"
120 + elog
121 +
122 + fi
123 +
124 + elog "After starting the service you will need to update your"
125 + elog "/etc/resolv.conf and replace your current set of resolvers"
126 + elog "with:"
127 + elog
128 + elog "nameserver 127.0.0.1"
129 + elog
130 + elog "Also see https://github.com/jedisct1/${PN}/wiki"
131 +}