Am 2014-07-30 14:33, schrieb Samuli Suominen: > > There is no need to package.mask if proper if -logic is used, like, for > example, > > if [[ ${PV} == 9999* ]]; then > inherit git-r3 > KEYWORDS="" > else > KEYWORDS="~amd64 ~arm ~arm64 ~x86" > fi > > Then you can just `cp foo-9999.ebuild foo-1.2.3.ebuild` and it'll have > the KEYWORDS > ready, and 1.2.3 and 9999 ebuilds can be identical
Which instance of the KEYWORDS line is touched by the ekeyword tool these days? To have ekeyword touch the else-part in the release ebuild, what about this: if [[ ${PV} == 9999* ]]; then inherit vcs... :; KEYWORDS="" else KEYWORDS="..." fi /haubi/