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 10962138334 for ; Fri, 3 Jan 2020 21:32:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5946AE0918; Fri, 3 Jan 2020 21:32:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 316B0E0918 for ; Fri, 3 Jan 2020 21:32:10 +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 0CC4334DD58 for ; Fri, 3 Jan 2020 21:32:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0868AAB for ; Fri, 3 Jan 2020 21:32:07 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1578087119.8f426fb91a7cd4bafcdfe00c137fee1ebeddb83d.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/getdns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/getdns/getdns-1.6.0_beta1.ebuild X-VCS-Directories: net-dns/getdns/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 8f426fb91a7cd4bafcdfe00c137fee1ebeddb83d X-VCS-Branch: master Date: Fri, 3 Jan 2020 21:32:07 +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: c3f56e20-1ef0-416f-a592-c2337a289745 X-Archives-Hash: edbe46d7cf2b71ee7d47987802ea9c91 commit: 8f426fb91a7cd4bafcdfe00c137fee1ebeddb83d Author: Quentin Retornaz retornaz com> AuthorDate: Sun Dec 29 20:28:25 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Fri Jan 3 21:31:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f426fb9 net-dns/getdns: Remove old Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Quentin Retornaz retornaz.com> Signed-off-by: Anthony G. Basile gentoo.org> net-dns/getdns/getdns-1.6.0_beta1.ebuild | 87 -------------------------------- 1 file changed, 87 deletions(-) diff --git a/net-dns/getdns/getdns-1.6.0_beta1.ebuild b/net-dns/getdns/getdns-1.6.0_beta1.ebuild deleted file mode 100644 index 7b782226afc..00000000000 --- a/net-dns/getdns/getdns-1.6.0_beta1.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -_SRCURI_P="${P/%_beta1/-beta.1}" - -inherit cmake-utils fcaps systemd - -DESCRIPTION="Modern asynchronous DNS API" -HOMEPAGE="https://getdnsapi.net/" -SRC_URI="https://getdnsapi.net/releases/${_SRCURI_P//./-}/${_SRCURI_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc examples +getdns-query +getdns-server-mon gnutls +idn libev libevent libuv static-libs stubby +unbound" - -S="${WORKDIR}/${_SRCURI_P}" - -# https://bugs.gentoo.org/661760 -# https://github.com/getdnsapi/getdns/issues/407 -RESTRICT="test" - -DEPEND=" - dev-libs/libbsd:= - dev-libs/libyaml:= - dev-libs/openssl:0= - idn? ( net-dns/libidn2:= ) - gnutls? ( - net-libs/gnutls:0=[dane,openssl] - dev-libs/nettle:0= - ) - libev? ( dev-libs/libev:= ) - libevent? ( dev-libs/libevent:= ) - libuv? ( dev-libs/libuv:= ) - unbound? ( >=net-dns/unbound-1.5.9:= ) -" -RDEPEND=" - ${DEPEND} - stubby? ( - acct-group/stubby - acct-user/stubby - sys-libs/libcap:= - ) -" -BDEPEND=" - doc? ( app-doc/doxygen ) -" - -PATCHES=( "${FILESDIR}/${PN}-1.4.2-stubby.service.patch" ) - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_RUNSTATEDIR=/var/run - -DENABLE_STATIC=$(usex static-libs) - -DBUILD_GETDNS_QUERY=$(usex getdns-query) - -DBUILD_GETDNS_SERVER_MON=$(usex getdns-server-mon) - -DUSE_GNUTLS=$(usex gnutls) - -DUSE_LIBIDN2=$(usex idn) - -DUSE_LIBEV=$(usex libev) - -DUSE_LIBEVENT2=$(usex libevent) - -DUSE_LIBUV=$(use_with libuv) - -DBUILD_STUBBY=$(usex stubby) - -DENABLE_UNBOUND_EVENT_API=$(usex unbound) - -DBUILD_DOXYGEN=$(usex doc) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - if use stubby; then - newinitd "${FILESDIR}"/stubby.initd-r2 stubby - newconfd "${FILESDIR}"/stubby.confd-r1 stubby - insinto /etc/logrotate.d - newins "${FILESDIR}"/stubby.logrotate stubby - systemd_dounit "${S}"/stubby/systemd/stubby.service - systemd_dotmpfilesd "${S}"/stubby/systemd/stubby.conf - fi -} - -pkg_postinst() { - if use stubby; then - fcaps cap_net_bind_service=ei /usr/bin/stubby - fi -}