Diff gitolite-3.6.11-r1 with a gitolite-3.6.12

/usr/portage/dev-vcs/gitolite/gitolite-3.6.12.ebuild 2023-10-09 14:52:31.020368389 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=7
5 5

  
6
[[ ${PV} == *9999 ]] && SCM="git-2"
7
EGIT_REPO_URI="https://github.com/sitaramc/${PN}.git"
8
EGIT_MASTER=master
9

  
10
inherit perl-module ${SCM}
6
inherit perl-module
11 7

  
12 8
DESCRIPTION="Highly flexible server for git directory version tracker"
13 9
HOMEPAGE="https://github.com/sitaramc/gitolite"
14
if [[ ${PV} != *9999 ]]; then
10

  
11
if [[ ${PV} == 9999 ]]; then
12
	inherit git-r3
13
	EGIT_REPO_URI="https://github.com/sitaramc/${PN}.git"
14
else
15 15
	SRC_URI="https://github.com/sitaramc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16 16
	KEYWORDS="amd64 arm x86"
17
else
18
	SRC_URI=""
19 17
fi
20 18

  
21 19
LICENSE="GPL-2"
Thank you!