Gentoo Archives: gentoo-dev

From: Ulrich Mueller <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: Re: [gentoo-dev] [PATCH git-r3 09/10] Add EGIT_MIN_CLONE_TYPE to support ebuilds requiring greater clone type.
Date: Wed, 26 Feb 2014 15:30:04
Message-Id: 21262.2162.314196.898911@a1i15.kph.uni-mainz.de
In Reply to: [gentoo-dev] [PATCH git-r3 09/10] Add EGIT_MIN_CLONE_TYPE to support ebuilds requiring greater clone type. by "Michał Górny"
1 In _git-r3_env_setup():
2
3 > + single)
4 > + if [[ ${EGIT_CLONE_TYPE} == shallow ]]; then
5 > + ewarn "git-r3: ebuild needs to be cloned in 'single' mode, adjusting"
6 > + EGIT_CLONE_TYPE=single
7 > + fi
8 > + ;;
9 > + mirror)
10 > + if [[ ${EGIT_CLONE_TYPE} != mirror ]]; then
11 > + ewarn "git-r3: ebuild needs to be cloned in 'mirror' mode, adjusting"
12
13 This is part of normal operation, so maybe downgrade these ewarns to
14 elog? There's nothing the user can do to suppress these warnings,
15 apart from changing his global setting for the clone type, which we
16 won't want him to do.
17
18 Ulrich

Replies