commit: 98aea8b888a8cfb3049d90e0d37b7066d1731136
parent 717edcbc8eaa6e94de16b469e433351cbc80dcb9
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Mon, 12 Jun 2023 10:02:40 +0200
www-apps/pleroma: Set EGIT_MIN_CLONE_TYPE for dumb-http
Diffstat:
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/www-apps/pleroma/pleroma-2.5.2.ebuild b/www-apps/pleroma/pleroma-2.5.2.ebuild
@@ -10,6 +10,8 @@ HOMEPAGE="https://pleroma.social/"
if [[ "${PV}" == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.pleroma.social/pleroma/pleroma"
+ # git-r3 doesn't allows make.conf override of MIN_CLONE_TYPE, so done here for my self-hosted branch
+ EGIT_MIN_CLONE_TYPE="single+tags"
else
SRC_URI="https://git.pleroma.social/pleroma/pleroma/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"
diff --git a/www-apps/pleroma/pleroma-9999.ebuild b/www-apps/pleroma/pleroma-9999.ebuild
@@ -10,6 +10,8 @@ HOMEPAGE="https://pleroma.social/"
if [[ "${PV}" == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://git.pleroma.social/pleroma/pleroma"
+ # git-r3 doesn't allows make.conf override of MIN_CLONE_TYPE, so done here for my self-hosted branch
+ EGIT_MIN_CLONE_TYPE="single+tags"
else
SRC_URI="https://git.pleroma.social/pleroma/pleroma/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"