From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1573496-garchives=archives.gentoo.org@lists.gentoo.org>
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 4A680158099
	for <garchives@archives.gentoo.org>; Sat, 25 Nov 2023 08:51:59 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 1CDFC2BC131;
	Sat, 25 Nov 2023 08:51:58 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(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 F33B52BC131
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Nov 2023 08:51: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 DAD1A34076D
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Nov 2023 08:51:56 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 4075113E0
	for <gentoo-commits@lists.gentoo.org>; Sat, 25 Nov 2023 08:51:55 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1700902252.9d62783d0430b11c2754cc7115d834741d3a20f5.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ccls/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-util/ccls/ccls-0.20230717-r1.ebuild dev-util/ccls/ccls-9999.ebuild
X-VCS-Directories: dev-util/ccls/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 9d62783d0430b11c2754cc7115d834741d3a20f5
X-VCS-Branch: master
Date: Sat, 25 Nov 2023 08:51:55 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: db4189bf-0c10-4b3d-9984-1cdab0f9fd51
X-Archives-Hash: 84b6d457821a25fac61cd6c05b57ff11

commit:     9d62783d0430b11c2754cc7115d834741d3a20f5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 08:50:24 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 25 08:50:52 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d62783d

dev-util/ccls: crank LLVM_MAX_SLOT to 17

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-util/ccls/{ccls-9999.ebuild => ccls-0.20230717-r1.ebuild} | 9 +++------
 dev-util/ccls/ccls-9999.ebuild                                | 9 +++------
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/dev-util/ccls/ccls-9999.ebuild b/dev-util/ccls/ccls-0.20230717-r1.ebuild
similarity index 90%
copy from dev-util/ccls/ccls-9999.ebuild
copy to dev-util/ccls/ccls-0.20230717-r1.ebuild
index c6b39f910fd1..ee7cfb7a7cf5 100644
--- a/dev-util/ccls/ccls-9999.ebuild
+++ b/dev-util/ccls/ccls-0.20230717-r1.ebuild
@@ -7,9 +7,9 @@ EGIT_REPO_URI="https://github.com/MaskRay/${PN}"
 
 if [[ ${PV} = 9999* ]]; then
 	GIT_ECLASS="git-r3"
-	LLVM_MAX_SLOT=16
+	LLVM_MAX_SLOT=17
 else
-	LLVM_MAX_SLOT=16
+	LLVM_MAX_SLOT=17
 fi
 
 inherit cmake llvm ${GIT_ECLASS}
@@ -17,16 +17,13 @@ inherit cmake llvm ${GIT_ECLASS}
 DESCRIPTION="C/C++/ObjC language server"
 HOMEPAGE="https://github.com/MaskRay/ccls"
 
-if [[ ${PV} == *9999 ]] ; then
-	SRC_URI=""
-else
+if [[ ${PV} != *9999 ]] ; then
 	SRC_URI="https://github.com/MaskRay/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~arm64 ~riscv"
 fi
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE=""
 
 # We only depend on Clang because of a quirk in how dependencies work
 # See comment in llvm.eclass docs

diff --git a/dev-util/ccls/ccls-9999.ebuild b/dev-util/ccls/ccls-9999.ebuild
index c6b39f910fd1..ee7cfb7a7cf5 100644
--- a/dev-util/ccls/ccls-9999.ebuild
+++ b/dev-util/ccls/ccls-9999.ebuild
@@ -7,9 +7,9 @@ EGIT_REPO_URI="https://github.com/MaskRay/${PN}"
 
 if [[ ${PV} = 9999* ]]; then
 	GIT_ECLASS="git-r3"
-	LLVM_MAX_SLOT=16
+	LLVM_MAX_SLOT=17
 else
-	LLVM_MAX_SLOT=16
+	LLVM_MAX_SLOT=17
 fi
 
 inherit cmake llvm ${GIT_ECLASS}
@@ -17,16 +17,13 @@ inherit cmake llvm ${GIT_ECLASS}
 DESCRIPTION="C/C++/ObjC language server"
 HOMEPAGE="https://github.com/MaskRay/ccls"
 
-if [[ ${PV} == *9999 ]] ; then
-	SRC_URI=""
-else
+if [[ ${PV} != *9999 ]] ; then
 	SRC_URI="https://github.com/MaskRay/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~arm64 ~riscv"
 fi
 
 LICENSE="Apache-2.0"
 SLOT="0"
-IUSE=""
 
 # We only depend on Clang because of a quirk in how dependencies work
 # See comment in llvm.eclass docs