From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1264389-garchives=archives.gentoo.org@lists.gentoo.org> 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 DD8CE1382C5 for <garchives@archives.gentoo.org>; Fri, 26 Mar 2021 15:32:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BFAEE083B; Fri, 26 Mar 2021 15:32:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 1528BE083B for <gentoo-commits@lists.gentoo.org>; Fri, 26 Mar 2021 15:32:38 +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 3A1B6340D1B for <gentoo-commits@lists.gentoo.org>; Fri, 26 Mar 2021 15:32:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC74D5AC for <gentoo-commits@lists.gentoo.org>; Fri, 26 Mar 2021 15:32:35 +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: <1616772717.ff6caea684e81826c864461bfebe39195f906c7e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ctags/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ctags/ctags-20210321.0.ebuild dev-util/ctags/ctags-99999999.ebuild X-VCS-Directories: dev-util/ctags/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff6caea684e81826c864461bfebe39195f906c7e X-VCS-Branch: master Date: Fri, 26 Mar 2021 15:32:35 +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: 7bdde8a2-4ee1-4967-bb17-3ece68eae43f X-Archives-Hash: 6da7d816b351e6bf6a0a003fe5a39c64 commit: ff6caea684e81826c864461bfebe39195f906c7e Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri Mar 26 15:31:03 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Mar 26 15:31:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff6caea6 dev-util/ctags: add live ebuild Bug: https://bugs.gentoo.org/737268 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-util/ctags/ctags-20210321.0.ebuild | 11 ++++++++--- .../ctags/{ctags-20210321.0.ebuild => ctags-99999999.ebuild} | 11 ++++++++--- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/dev-util/ctags/ctags-20210321.0.ebuild b/dev-util/ctags/ctags-20210321.0.ebuild index 49a829a6a7e..398cfa10dcb 100644 --- a/dev-util/ctags/ctags-20210321.0.ebuild +++ b/dev-util/ctags/ctags-20210321.0.ebuild @@ -7,12 +7,17 @@ inherit autotools DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors" HOMEPAGE="https://ctags.io/ https://github.com/universal-ctags/ctags" -SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz" -S="${WORKDIR}/${PN}-p5.9.${PV}" +if [[ ${PV} == *99999999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/universal-ctags/ctags" +else + SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz" + S="${WORKDIR}/${PN}-p5.9.${PV}" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="json xml yaml" DEPEND=" diff --git a/dev-util/ctags/ctags-20210321.0.ebuild b/dev-util/ctags/ctags-99999999.ebuild similarity index 75% copy from dev-util/ctags/ctags-20210321.0.ebuild copy to dev-util/ctags/ctags-99999999.ebuild index 49a829a6a7e..398cfa10dcb 100644 --- a/dev-util/ctags/ctags-20210321.0.ebuild +++ b/dev-util/ctags/ctags-99999999.ebuild @@ -7,12 +7,17 @@ inherit autotools DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors" HOMEPAGE="https://ctags.io/ https://github.com/universal-ctags/ctags" -SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz" -S="${WORKDIR}/${PN}-p5.9.${PV}" +if [[ ${PV} == *99999999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/universal-ctags/ctags" +else + SRC_URI="https://github.com/universal-ctags/ctags/archive/refs/tags/p5.9.${PV}.tar.gz" + S="${WORKDIR}/${PN}-p5.9.${PV}" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +fi LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="json xml yaml" DEPEND="