Skip to content

Commit 9163439

Browse files
thesamesamgyakovlev
authored andcommitted
net-dns/dnscrypt-proxy: Bump to 2.0.42
Signed-off-by: Sam James (sam_c) <[email protected]> Signed-off-by: Georgy Yakovlev <[email protected]>
1 parent 47d73a5 commit 9163439

File tree

2 files changed

+101
-0
lines changed

2 files changed

+101
-0
lines changed

net-dns/dnscrypt-proxy/Manifest

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
DIST dnscrypt-proxy-2.0.33.tar.gz 2723092 BLAKE2B 26ed819f264c1a536b2e47d9ffa412097eba5c9597ad2a5e7ff7a485ad660aeb882c5ce527bb072a5f7b5782387ce1b72cc74400973f9cebd66a50bd2308d830 SHA512 5c6eb655aa70457889253cbf630e7e37011a461a7f181f0a667694d53146ad9dee88bbbf80c7db3187bba0054af2a63b7b5be1a229800b2566a9758e9d047429
22
DIST dnscrypt-proxy-2.0.39.tar.gz 2814424 BLAKE2B 59be804a9c9641dd43e6b49e95c58c7d20dfdc940f2279a47a9ced707d1bbe64b1864c65feab2cada6c12945567ffd93478bd0a8129d40ea65c0fef50e5e90e4 SHA512 d4eacd8d1989b99d9932d66ef609948558af26f9db1fc37acd6b5609e2a410d20828e32f2b79f2f9fbdf822998af641aec20128e4c58233663929106e29d8e24
33
DIST dnscrypt-proxy-2.0.41.tar.gz 2323421 BLAKE2B 572a0ad15df6c40d1738b296972584f5d8fe382ca3c0a05b4fc74e986e767a058227dda2127c843127bc0b90e8b7bbe17a5eaee42175f0b77e21160ac63f7a88 SHA512 26be163daa03633f2d76f1121fb1987e0155613bd84cbb2aad2ba0eedbd35ec0b393d1c1a0aaba47968b3a08bd0273ad929a164695ce35d2ebe05ce3b5f5dfd1
4+
DIST dnscrypt-proxy-2.0.42.tar.gz 2324442 BLAKE2B 8444eca1fc2bfc6029c1848bbeb77697b9b9c228c1bd0d17ed357b73667524c7052b33410a92847743533c3712f749fd93dbac46a81da48dae367e2a515cad8c SHA512 093b07ee8eb44c1264e6ea4b60ad32e0221b1b02c1d61f142b1fbf37dc5181533cc3c5d6e7468d0f7488611de4620947684269da9f08f21da0aa501ba70be711
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Copyright 1999-2020 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=7
5+
6+
EGO_PN="github.com/DNSCrypt/${PN}"
7+
8+
inherit fcaps go-module systemd
9+
10+
if [[ ${PV} == 9999 ]]; then
11+
inherit git-r3
12+
EGIT_REPO_URI="https://${EGO_PN}.git"
13+
else
14+
SRC_URI="https://${EGO_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
15+
KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
16+
fi
17+
18+
DESCRIPTION="A flexible DNS proxy, with support for encrypted DNS protocols"
19+
HOMEPAGE="https://github.com/jedisct1/dnscrypt-proxy"
20+
21+
LICENSE="Apache-2.0 BSD ISC MIT MPL-2.0"
22+
SLOT="0"
23+
IUSE="pie"
24+
25+
BDEPEND=">=dev-lang/go-1.13"
26+
27+
RDEPEND="
28+
acct-group/dnscrypt-proxy
29+
acct-user/dnscrypt-proxy
30+
"
31+
32+
FILECAPS=( cap_net_bind_service+ep usr/bin/dnscrypt-proxy )
33+
34+
PATCHES=( "${FILESDIR}"/config-full-paths-r11.patch )
35+
36+
src_compile() {
37+
pushd "${PN}" >/dev/null || die
38+
go build -v -x -mod=readonly -mod=vendor -buildmode="$(usex pie pie default)" || die
39+
popd >/dev/null || die
40+
}
41+
42+
src_install() {
43+
pushd "${PN}" >/dev/null || die
44+
45+
dobin dnscrypt-proxy
46+
47+
insinto /etc/dnscrypt-proxy
48+
newins example-dnscrypt-proxy.toml dnscrypt-proxy.toml
49+
doins example-{blacklist.txt,whitelist.txt}
50+
doins example-{cloaking-rules.txt,forwarding-rules.txt}
51+
52+
popd >/dev/null || die
53+
54+
insinto /usr/share/dnscrypt-proxy
55+
doins -r "utils/generate-domains-blacklists/."
56+
57+
newinitd "${FILESDIR}"/dnscrypt-proxy.initd dnscrypt-proxy
58+
newconfd "${FILESDIR}"/dnscrypt-proxy.confd dnscrypt-proxy
59+
60+
systemd_newunit "${FILESDIR}"/dnscrypt-proxy.service dnscrypt-proxy.service
61+
systemd_newunit "${FILESDIR}"/dnscrypt-proxy.socket dnscrypt-proxy.socket
62+
63+
insinto /etc/logrotate.d
64+
newins "${FILESDIR}"/dnscrypt-proxy.logrotate dnscrypt-proxy
65+
66+
einstalldocs
67+
}
68+
69+
pkg_postinst() {
70+
fcaps_pkg_postinst
71+
go-module_pkg_postinst
72+
73+
if ! use filecaps; then
74+
ewarn "'filecaps' USE flag is disabled"
75+
ewarn "${PN} will fail to listen on port 53"
76+
ewarn "please do one the following:"
77+
ewarn "1) re-enable 'filecaps'"
78+
ewarn "2) change port to > 1024"
79+
ewarn "3) configure to run ${PN} as root (not recommended)"
80+
ewarn
81+
fi
82+
83+
if systemd_is_booted || has_version sys-apps/systemd; then
84+
elog "Using systemd socket activation may cause issues with speed"
85+
elog "latency and reliability of ${PN} and is discouraged by upstream"
86+
elog "Existing installations advised to disable 'dnscrypt-proxy.socket'"
87+
elog "It is disabled by default for new installations"
88+
elog "check "$(systemd_get_systemunitdir)/${PN}.service" for details"
89+
elog
90+
91+
fi
92+
93+
elog "After starting the service you will need to update your"
94+
elog "/etc/resolv.conf and replace your current set of resolvers"
95+
elog "with:"
96+
elog
97+
elog "nameserver 127.0.0.1"
98+
elog
99+
elog "Also see https://github.com/DNSCrypt/${PN}/wiki"
100+
}

0 commit comments

Comments
 (0)