From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0538E139360 for ; Sun, 8 Aug 2021 21:39:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3ABAEE08F0; Sun, 8 Aug 2021 21:39:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2635AE08F0 for ; Sun, 8 Aug 2021 21:39:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1D7DB342BA9 for ; Sun, 8 Aug 2021 21:39:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00AA885A for ; Sun, 8 Aug 2021 21:39:27 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1628458760.06d82d1cae94cf3a4dd18fc134d31b41f827d2ab.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/knot/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/knot/knot-3.0.7.ebuild X-VCS-Directories: net-dns/knot/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 06d82d1cae94cf3a4dd18fc134d31b41f827d2ab X-VCS-Branch: master Date: Sun, 8 Aug 2021 21:39:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9a4652f6-a506-45b8-8f21-bada0731ca59 X-Archives-Hash: 1f95ef920bb324afe2e7233afdc0da00 commit: 06d82d1cae94cf3a4dd18fc134d31b41f827d2ab Author: Marek Szuba gentoo org> AuthorDate: Sun Aug 8 21:11:14 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Sun Aug 8 21:39:20 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06d82d1c net-dns/knot: keyword 3.0.7 for ~riscv Signed-off-by: Marek Szuba gentoo.org> net-dns/knot/knot-3.0.7.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/net-dns/knot/knot-3.0.7.ebuild b/net-dns/knot/knot-3.0.7.ebuild index ff2ab85cf4e..b4082a371f4 100644 --- a/net-dns/knot/knot-3.0.7.ebuild +++ b/net-dns/knot/knot-3.0.7.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit systemd +inherit flag-o-matic systemd DESCRIPTION="High-performance authoritative-only DNS server" HOMEPAGE="https://www.knot-dns.cz/" @@ -11,7 +11,7 @@ SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~riscv ~x86" KNOT_MODULES=( "+cookies" @@ -73,6 +73,10 @@ src_configure() { my_conf+=("$(use_with ${u} module-${u})") done + if use riscv; then + append-libs -latomic + fi + econf "${my_conf[@]}" }