commit: 9bccc26c4368756b11e975affb354d3465bdae8b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Mar 4 00:20:45 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Mar 4 00:57:28 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bccc26c
dev-vcs/gitolite: add 3.6.14 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-vcs/gitolite/Manifest | 1 + dev-vcs/gitolite/gitolite-3.6.14.ebuild | 98 +++++++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+) diff --git a/dev-vcs/gitolite/Manifest b/dev-vcs/gitolite/Manifest index 29eb0220e3f9..e570de3bcddf 100644 --- a/dev-vcs/gitolite/Manifest +++ b/dev-vcs/gitolite/Manifest @@ -1 +1,2 @@ DIST gitolite-3.6.13.tar.gz 204615 BLAKE2B f4a6f5ea106695371b75837fc8ff39a62f0464247781abcaa79bc779cd72a2c2483c2436cbd9cb1091689e51b09a3a9ee17bcce5bdab02b6cb641b1c8bab7066 SHA512 95c232dd117b8849b205946b6427422abadbfb0d59fdb72f1de75813cbe3fbf63cbc0f5f5f2de4e761797c0cf5423c94805a55af87b7ff78a2d9ea9f2406dfcb +DIST gitolite-3.6.14.tar.gz 205222 BLAKE2B a238d8d396c77099daf4d5ef39619ddc8145b602bd93d2d8a32d4eaf0dc68e9ae7b54a5ff9686bbfbadedc615edbe4b70d41bc90a88a228ae1a5557b58e48397 SHA512 e4a0af108ac1dfce0c876c2f92914150a0967981e338bf1976ac9837102bb0e81056deeccd10a2939c53b4c38b88a205f0d3951346a6902824bb06d82a447d31 diff --git a/dev-vcs/gitolite/gitolite-3.6.14.ebuild b/dev-vcs/gitolite/gitolite-3.6.14.ebuild new file mode 100644 index 000000000000..1ec72aa634d9 --- /dev/null +++ b/dev-vcs/gitolite/gitolite-3.6.14.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit eapi9-ver perl-module + +DESCRIPTION="Highly flexible server for git directory version tracker" +HOMEPAGE="https://github.com/sitaramc/gitolite" + +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" +fi + +LICENSE="GPL-2" +SLOT="0" +IUSE="selinux tools" +# TODO: At some point, wire it up safely. +# See https://gitolite.com/gitolite/testing.html and t/README first! +RESTRICT="test" + +DEPEND=" + dev-lang/perl + >=dev-vcs/git-1.6.6 + virtual/perl-File-Path + virtual/perl-File-Temp +" +RDEPEND=" + ${DEPEND} + acct-group/git + acct-user/git[gitolite] + !app-vim/gitolite-syntax + !dev-vcs/gitolite-gentoo + selinux? ( sec-policy/selinux-gitosis ) + dev-perl/JSON +" + +src_prepare() { + default + echo ${PF} > src/VERSION || die +} + +src_install() { + local uexec=/usr/libexec/${PN} + + rm -rf src/lib/Gitolite/Test{,.pm} + insinto $VENDOR_LIB + doins -r src/lib/Gitolite + + dodoc README.markdown CHANGELOG + # These are meant by upstream as examples, you are strongly recommended to + # customize them for your needs. + dodoc contrib/utils/ipa_groups.pl contrib/utils/ldap_groups.sh + + insinto /usr/share/vim/vimfiles + doins -r contrib/vim/* + + insopts -m0755 + insinto $uexec + doins -r src/{commands,syntactic-sugar,triggers,VREF}/ + doins -r contrib/{commands,triggers,hooks} + + insopts -m0644 + doins src/VERSION + + exeinto $uexec + doexe src/gitolite{,-shell} + + dodir /usr/bin + for bin in gitolite{,-shell}; do + dosym ../libexec/${PN}/${bin} /usr/bin/${bin} + done + + if use tools; then + dobin check-g2-compat convert-gitosis-conf + dobin contrib/utils/rc-format-v3.4 + fi + + fperms 0644 ${uexec}/VREF/MERGE-CHECK # It's meant as example only +} + +pkg_postinst() { + if ver_replacing -lt "3" ; then + ewarn + elog "***NOTE*** This is a major upgrade and will likely break your existing gitolite-2.x setup!" + elog "Please read http://gitolite.com/gitolite/migr/index.html first!" + fi + + # bug 352291 + ewarn + elog "Please make sure that your 'git' user has the correct homedir (/var/lib/gitolite)." + elog "Especially if you're migrating from gitosis." + ewarn +}
