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 1699A158091 for ; Sun, 8 May 2022 20:23:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F983E082B; Sun, 8 May 2022 20:23:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37AB7E082B for ; Sun, 8 May 2022 20:23:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 71F0F3415C7 for ; Sun, 8 May 2022 20:23:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94AB5447 for ; Sun, 8 May 2022 20:23:52 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1652041417.55653c0a136a0e582aa102cbb9f35cd3dd218989.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/gitolite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/gitolite/gitolite-3.6.12.ebuild X-VCS-Directories: dev-vcs/gitolite/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 55653c0a136a0e582aa102cbb9f35cd3dd218989 X-VCS-Branch: master Date: Sun, 8 May 2022 20:23:52 +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: c3ac56f9-faa2-4248-9f3a-78888b72d619 X-Archives-Hash: d4359fd533686082d139975460deb174 commit: 55653c0a136a0e582aa102cbb9f35cd3dd218989 Author: Jonathan Davies protonmail com> AuthorDate: Fri Oct 2 15:28:26 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sun May 8 20:23:37 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55653c0a dev-vcs/gitolite: Switch to git-r3 and simplify Closes: https://github.com/gentoo/gentoo/pull/17751 Signed-off-by: Jonathan Davies protonmail.com> Signed-off-by: Matt Turner gentoo.org> dev-vcs/gitolite/gitolite-3.6.12.ebuild | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/dev-vcs/gitolite/gitolite-3.6.12.ebuild b/dev-vcs/gitolite/gitolite-3.6.12.ebuild index 360ff3ce4bc0..99fac58cfa00 100644 --- a/dev-vcs/gitolite/gitolite-3.6.12.ebuild +++ b/dev-vcs/gitolite/gitolite-3.6.12.ebuild @@ -3,19 +3,17 @@ EAPI=7 -[[ ${PV} == *9999 ]] && SCM="git-2" -EGIT_REPO_URI="https://github.com/sitaramc/${PN}.git" -EGIT_MASTER=master - -inherit perl-module ${SCM} +inherit perl-module DESCRIPTION="Highly flexible server for git directory version tracker" HOMEPAGE="https://github.com/sitaramc/gitolite" -if [[ ${PV} != *9999 ]]; then + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/sitaramc/${PN}.git" +else SRC_URI="https://github.com/sitaramc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~x86" -else - SRC_URI="" fi LICENSE="GPL-2"