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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2FFA2158041 for ; Mon, 8 Apr 2024 17:47:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DE17E2A17; Mon, 8 Apr 2024 17:47:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FA33E2A17 for ; Mon, 8 Apr 2024 17:47:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5A536343259 for ; Mon, 8 Apr 2024 17:47:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A89A41662 for ; Mon, 8 Apr 2024 17:47:54 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1712598338.ad80f38181a03376fb1b72a1af616489add453e5.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/dotconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/dotconf/dotconf-1.4.ebuild X-VCS-Directories: dev-libs/dotconf/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: ad80f38181a03376fb1b72a1af616489add453e5 X-VCS-Branch: master Date: Mon, 8 Apr 2024 17:47:54 +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: e820e961-e7e2-45bb-808d-366ff1522084 X-Archives-Hash: c62d4061d0b058aac6d6928bad9fce36 commit: ad80f38181a03376fb1b72a1af616489add453e5 Author: Florian Schmaus gentoo org> AuthorDate: Mon Apr 8 17:45:38 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Apr 8 17:45:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad80f381 dev-libs/dotconf: inherit git-r3 only if live version Signed-off-by: Florian Schmaus gentoo.org> dev-libs/dotconf/dotconf-1.4.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-libs/dotconf/dotconf-1.4.ebuild b/dev-libs/dotconf/dotconf-1.4.ebuild index 7621056d492b..7e8371546f9f 100644 --- a/dev-libs/dotconf/dotconf-1.4.ebuild +++ b/dev-libs/dotconf/dotconf-1.4.ebuild @@ -3,11 +3,12 @@ EAPI=8 -inherit autotools git-r3 toolchain-funcs +inherit autotools toolchain-funcs DESCRIPTION="dot.conf configuration file parser" HOMEPAGE="https://github.com/williamh/dotconf" if [[ ${PV} == 9999* ]]; then + inherit git-r3 EGIT_REPO_URI="https://github.com/williamh/dotconf.git" else SRC_URI="https://github.com/williamh/dotconf/archive/v${PV}.tar.gz -> ${P}.tar.gz"