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 29A1D138359 for ; Tue, 17 Nov 2020 09:18:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B20CE092D; Tue, 17 Nov 2020 09:18:44 +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 036E3E092D for ; Tue, 17 Nov 2020 09:18:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9174C340EB6 for ; Tue, 17 Nov 2020 09:18:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 159C544C for ; Tue, 17 Nov 2020 09:18:41 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1605604713.19e71b2bf9b030645e194a2cb274ca3337607768.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/https_dns_proxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild X-VCS-Directories: net-dns/https_dns_proxy/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 19e71b2bf9b030645e194a2cb274ca3337607768 X-VCS-Branch: master Date: Tue, 17 Nov 2020 09:18:41 +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: 146e53fc-8248-4318-b695-5c1395dae7ce X-Archives-Hash: 9d90bce80a23284b0b54bd7e038e9149 commit: 19e71b2bf9b030645e194a2cb274ca3337607768 Author: Jakov Smolic sartura hr> AuthorDate: Mon Nov 9 08:53:12 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Nov 17 09:18:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19e71b2b net-dns/https_dns_proxy: update live ebuild Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Joonas Niilola gentoo.org> .../https_dns_proxy/https_dns_proxy-9999.ebuild | 28 ++++++++++++---------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild b/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild index 4952e64d90e..3c26883fb12 100644 --- a/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild +++ b/net-dns/https_dns_proxy/https_dns_proxy-9999.ebuild @@ -1,27 +1,31 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit git-r3 cmake-utils +EAPI=7 +inherit cmake -DESCRIPTION="A lightweight DNS-over-HTTPS proxy." +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/aarond10/https_dns_proxy.git" + inherit git-r3 +else + MY_COMMIT="2d9285e2b94bce21c588c8160f8fac660806987a" + SRC_URI="https://github.com/aarond10/https_dns_proxy/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/${PN}-${MY_COMMIT}" +fi + +DESCRIPTION="A lightweight DNS-over-HTTPS proxy" HOMEPAGE="https://github.com/aarond10/https_dns_proxy" -EGIT_REPO_URI="https://github.com/aarond10/${PN}.git" -SRC_URI="" LICENSE="MIT" SLOT="0" -KEYWORDS="" -IUSE="" DEPEND="dev-libs/libev net-dns/c-ares - >=net-misc/curl-7.53.0[http2,ssl] - " + net-misc/curl[http2,ssl]" RDEPEND="${DEPEND}" src_install() { - cmake-utils_src_install - exeinto /usr/bin - doexe "${S}_build/https_dns_proxy" + cmake_src_install + dobin "${S}_build/https_dns_proxy" }