diff options
author | Nicolas Bock <nicolasbock@gentoo.org> | 2017-12-03 09:28:28 -0700 |
---|---|---|
committer | Nicolas Bock <nicolasbock@gentoo.org> | 2017-12-03 09:29:34 -0700 |
commit | 07a873bc4aa93329802366bcb7d97ca10d6f034a (patch) | |
tree | 5454ef3a8bbd4990fec5d311853b5f7f22f821de /mail-client | |
parent | profiles: desktop: Drop USE qt4 default, keep supporting package.use (diff) | |
download | gentoo-07a873bc4aa93329802366bcb7d97ca10d6f034a.tar.gz gentoo-07a873bc4aa93329802366bcb7d97ca10d6f034a.tar.bz2 gentoo-07a873bc4aa93329802366bcb7d97ca10d6f034a.zip |
mail-client/neomutt: Workaround Bug 614746
Currently a conditional in the ebuild such as
if [[ ${PV} =~ 9999$ ]]
is not recognized by `ekeyword` [1]. A workaround is to omit the
`KEYWORDS` assignment in the live ebuild branch.
[1] https://bugs.gentoo.org/614746
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/neomutt/neomutt-9999.ebuild | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mail-client/neomutt/neomutt-9999.ebuild b/mail-client/neomutt/neomutt-9999.ebuild index 8a0f8bb25dd2..406bc5c0cc73 100644 --- a/mail-client/neomutt/neomutt-9999.ebuild +++ b/mail-client/neomutt/neomutt-9999.ebuild @@ -5,11 +5,10 @@ EAPI=6 inherit autotools eutils flag-o-matic -if (( ${PV} == 9999 )); then +if [[ ${PV} =~ 9999$ ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/neomutt/neomutt.git" EGIT_CHECKOUT_DIR="${WORKDIR}/neomutt-${P}" - KEYWORDS="" else SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz" KEYWORDS="~amd64 ~x86" |