mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
net-dns/coredns: drop 1.11.2 & 1.11.3
Signed-off-by: Rahil Bhimjiani <me@rahil.rocks> Closes: https://github.com/gentoo/gentoo/pull/41414 Signed-off-by: Zac Medico <zmedico@gentoo.org>
This commit is contained in:
committed by
Zac Medico
parent
46138bf76b
commit
4fa3f511f2
@@ -1,7 +1,3 @@
|
||||
DIST coredns-1.11.2-r1-deps.tar.xz 6547080 BLAKE2B 19a067a5b402ebe3b8a462e534bbdcf9baade4b5f434c6f24fe8ede0cbe623e2d5d8bdf0ffc06954d796441095688f19caa40f2255a2cc56102fdef36d327ac5 SHA512 caf6e0f1c9be4857059244019d6556f907e4f6907a932c201c856355c3e0b86c1752a90a226d5904c511d0db08ce4869cc5d24203bb4b9e2e1be02e725990332
|
||||
DIST coredns-1.11.2.tar.gz 651994 BLAKE2B 1a7a272756eaf83170e242a573c8a765d6ea7b70fe422d36a87850b600a88287291aa0fe0d49462c34453d4d3c4d33f9497be409379ff8fccc87f41e2195efc1 SHA512 0e90ef4793555bd46aa5ce84cf639c015d1869b407627c69746eb948abff1920f891c45e5f00c0127f23e2c6394c07cc55c1776af840881210f90faa6ec22b40
|
||||
DIST coredns-1.11.3-deps.tar.xz 6662680 BLAKE2B 44bc099586cdaffc381141e347c8921596b0b51bf4f82064d2aca562083597672dfe4b0c965f4c6feebbf4711aff07bd7a301b6ecab28233294978ae94df5fbd SHA512 49690bc11816e1bbc0a5f325abe64648ea820fecd25695f19bf9921f0a38786cddf30e4a385306470a27d17af9d09a5ec50025ff241ea9f3b6b346eddc859755
|
||||
DIST coredns-1.11.3.tar.gz 653856 BLAKE2B db9efdd1b674f6908ff094866ca5c148e018d7ddae2ae1cc07c13fbf78dcc4e6ed478d2e5946f73d43b8ee6a1924fecd53759e6b9a41935d084fbb1d84b7bb10 SHA512 3ec9296626a2994d1259329e50b032d2972ef8e05bfed742c0ee570414adbfa8f296046b9356ef73d885a1f1c1e3660421762267535ec2d3f357c3064a75d405
|
||||
DIST coredns-1.11.4-deps.tar.xz 8743848 BLAKE2B a083c85ed3a43b1d97ab928a133511dd7ae58431803387b5aa3b6d3dbf93f35f5aca18ca6a35e258e7596ef7c7718fe3599f1af48735a0f3d8e08eef5669c18e SHA512 d6d7d8ca5f085d5e04e4499041eb89ac88a6a2b2737b10c8979765d9e397261cfa48ed4c12a369c6794741a4e7150b44b3c09663b9cd2ca4bf8540843df22e55
|
||||
DIST coredns-1.11.4.tar.gz 663610 BLAKE2B 2cb3930009bc68a3725da38bdd919a8b3969199bdae9fdbc4495361a9e83b9046f46a1c1ec1adf67170b75fe011fd0b24dd73163bef81ac43b7ea50faae5a1a2 SHA512 90506926736152958d6ec154734a6cce689406aea9eed7d68e868fa48361b0fb5c899d445f52e13a5401b91683c8ed7715c80617efaabdd7b5d9dde6ca634984
|
||||
DIST coredns-1.12.0-deps.tar.xz 8762780 BLAKE2B 674f181aea1e48577bc97c64fba4eb90bef600e600d183b1043ddaa9a5a53cbaa70f1822a82fd51c817a18f13ec22be4c82dc08b41f133ec552b1174e0f9ee62 SHA512 853d8327537ada98d734591ce7dc3b6afdda9a43de1712de9452824de7be85bfe1314d89467f132b84181e4f0e229f637f87cd70e17eb663adb2dd17bd5aa0ca
|
||||
|
||||
@@ -1,121 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit fcaps go-module multiprocessing systemd tmpfiles toolchain-funcs
|
||||
|
||||
DESCRIPTION="CoreDNS is a DNS server that chains plugins"
|
||||
HOMEPAGE="https://github.com/coredns/coredns"
|
||||
|
||||
if [[ ${PV} == 9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/coredns/coredns.git"
|
||||
else
|
||||
#SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
# The v1.11.2 tag went missing upstream, so use a previously fetched copy.
|
||||
SRC_URI="https://dev.gentoo.org/~zmedico/dist/${P}.tar.gz"
|
||||
SRC_URI+=" https://dev.gentoo.org/~zmedico/dist/${PF}-deps.tar.xz"
|
||||
KEYWORDS="amd64"
|
||||
fi
|
||||
|
||||
# main
|
||||
LICENSE="Apache-2.0"
|
||||
# deps
|
||||
LICENSE+=" MIT BSD ISC MPL-2.0 BSD-2"
|
||||
|
||||
SLOT="0"
|
||||
IUSE="test"
|
||||
# TODO: debug test failure with deps tarball
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="acct-user/coredns
|
||||
acct-group/coredns"
|
||||
|
||||
FILECAPS=(
|
||||
-m 755 'cap_net_bind_service=+ep' usr/bin/${PN}
|
||||
)
|
||||
|
||||
src_unpack() {
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
git-r3_src_unpack
|
||||
go-module_live_vendor
|
||||
else
|
||||
go-module_src_unpack
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
use test || sed -i -e 's|coredns: $(CHECKS)|coredns:|' Makefile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# For non-live versions, prevent git operations which causes sandbox violations
|
||||
# https://github.com/gentoo/gentoo/pull/33531#issuecomment-1786107493
|
||||
[[ ${PV} != 9999* ]] && export GITCOMMIT=''
|
||||
|
||||
# Mimicking go-module.eclass's GOFLAGS
|
||||
if use amd64 || use arm || use arm64 ||
|
||||
( use ppc64 && [[ $(tc-endian) == "little" ]] ) || use s390 || use x86; then
|
||||
local buildmode="-buildmode=pie"
|
||||
fi
|
||||
export BUILDOPTS="-buildvcs=false -modcacherw -v -x -p=$(makeopts_jobs) ${buildmode}"
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${PN}"
|
||||
einstalldocs
|
||||
doman man/*
|
||||
|
||||
newinitd "${FILESDIR}"/coredns.initd coredns
|
||||
newconfd "${FILESDIR}"/coredns.confd coredns
|
||||
|
||||
insinto /etc/coredns/
|
||||
newins "${FILESDIR}"/Corefile.example Corefile
|
||||
|
||||
insinto /etc/logrotate.d
|
||||
newins "${FILESDIR}"/coredns.logrotated coredns
|
||||
|
||||
systemd_dounit "${FILESDIR}"/coredns.service
|
||||
newtmpfiles "${FILESDIR}"/coredns.tmpfiles "${PN}.conf"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# eclass default '-x' makes tests output unreadable
|
||||
export GOFLAGS="-v -mod=readonly"
|
||||
|
||||
local known_fail=(
|
||||
"TestZoneExternalCNAMELookupWithProxy"
|
||||
"TestMetricsSeveralBlocs"
|
||||
"TestMetricsAvailable"
|
||||
"TestMetricsAvailableAfterReload"
|
||||
"TestMetricsAvailableAfterReloadAndFailedReload"
|
||||
)
|
||||
# concat as '|^Test1$|^Test2$|^Test3...$':
|
||||
local known_fail_re="$(printf '|^%s$' "${known_fail[@]}")"
|
||||
# drop '|' in the begining:
|
||||
known_fail_re="${known_fail_re:1}"
|
||||
|
||||
local working_tests_re="$(
|
||||
# get list of all test:
|
||||
{ GOFLAGS="-mod=readonly" go test -list . ./... ||
|
||||
die "Can't get list of tests"; } |
|
||||
# skip "no tests" messages as well as know failures:
|
||||
grep -v -E " |${known_fail_re}" |
|
||||
# format a regexp:
|
||||
sed -z 's/\n/$|^/g'
|
||||
)"
|
||||
# drop '|^' in the end:
|
||||
working_tests_re="^${working_tests_re::-2}"
|
||||
|
||||
go test -race -run "${working_tests_re}" ./... || die "Tests failed"
|
||||
go test -race -run "${known_fail_re}" ./... || ewarn "Known test failure"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fcaps_pkg_postinst
|
||||
tmpfiles_process ${PN}.conf
|
||||
}
|
||||
@@ -1,108 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit fcaps go-module multiprocessing systemd tmpfiles toolchain-funcs
|
||||
|
||||
DESCRIPTION="CoreDNS is a DNS server that chains plugins"
|
||||
HOMEPAGE="https://github.com/coredns/coredns"
|
||||
|
||||
if [[ ${PV} == 9999* ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/coredns/coredns.git"
|
||||
else
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI+=" https://dev.gentoo.org/~zmedico/dist/${P}-deps.tar.xz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
# main
|
||||
LICENSE="Apache-2.0"
|
||||
# deps
|
||||
LICENSE+=" MIT BSD ISC MPL-2.0 BSD-2"
|
||||
|
||||
SLOT="0"
|
||||
# TODO: debug test failure with deps tarball
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="acct-user/coredns
|
||||
acct-group/coredns"
|
||||
|
||||
FILECAPS=(
|
||||
-m 755 'cap_net_bind_service=+ep' usr/bin/${PN}
|
||||
)
|
||||
|
||||
src_unpack() {
|
||||
if [[ ${PV} == 9999* ]]; then
|
||||
git-r3_src_unpack
|
||||
go-module_live_vendor
|
||||
else
|
||||
default
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
[[ ${PV} != 9999* ]] && { ln -sv ../vendor ./ || die ; }
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
[[ ${PV} == 9999* ]] && local GIT_COMMIT="$(git describe --dirty --always)"
|
||||
ego build -ldflags="-s -w -X github.com/coredns/coredns/coremain.GitCommit=${GIT_COMMIT}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin "${PN}"
|
||||
einstalldocs
|
||||
doman man/*
|
||||
|
||||
newinitd "${FILESDIR}"/coredns.initd coredns
|
||||
newconfd "${FILESDIR}"/coredns.confd coredns
|
||||
|
||||
insinto /etc/coredns/
|
||||
newins "${FILESDIR}"/Corefile.example Corefile
|
||||
|
||||
insinto /etc/logrotate.d
|
||||
newins "${FILESDIR}"/coredns.logrotated coredns
|
||||
|
||||
systemd_dounit "${FILESDIR}"/coredns.service
|
||||
newtmpfiles "${FILESDIR}"/coredns.tmpfiles "${PN}.conf"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# eclass default '-x' makes tests output unreadable
|
||||
export GOFLAGS="-v -mod=readonly"
|
||||
|
||||
local known_fail=(
|
||||
"TestZoneExternalCNAMELookupWithProxy"
|
||||
"TestMetricsSeveralBlocs"
|
||||
"TestMetricsAvailable"
|
||||
"TestMetricsAvailableAfterReload"
|
||||
"TestMetricsAvailableAfterReloadAndFailedReload"
|
||||
)
|
||||
# concat as '|^Test1$|^Test2$|^Test3...$':
|
||||
local known_fail_re="$(printf '|^%s$' "${known_fail[@]}")"
|
||||
# drop '|' in the begining:
|
||||
known_fail_re="${known_fail_re:1}"
|
||||
|
||||
local working_tests_re="$(
|
||||
# get list of all test:
|
||||
{ GOFLAGS="-mod=readonly" go test -list . ./... ||
|
||||
die "Can't get list of tests"; } |
|
||||
# skip "no tests" messages as well as know failures:
|
||||
grep -v -E " |${known_fail_re}" |
|
||||
# format a regexp:
|
||||
sed -z 's/\n/$|^/g'
|
||||
)"
|
||||
# drop '|^' in the end:
|
||||
working_tests_re="^${working_tests_re::-2}"
|
||||
|
||||
go test -race -run "${working_tests_re}" ./... || die "Tests failed"
|
||||
go test -race -run "${known_fail_re}" ./... || ewarn "Known test failure"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fcaps_pkg_postinst
|
||||
tmpfiles_process ${PN}.conf
|
||||
}
|
||||
Reference in New Issue
Block a user