Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 545444

Summary: x11-wm/qtile-9999 KEYWORDS="" is missing
Product: Gentoo Linux Reporter: Jonas Stein <jstein>
Component: Current packagesAssignee: Tim Harder <radhermit>
Status: RESOLVED INVALID    
Severity: minor    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Jonas Stein gentoo-dev 2015-04-03 20:49:14 UTC
Every ebuild must specify a KEYWORDS variable. [1]

==== old ====

if [[ ${PV} == 9999* ]] ; then
        EGIT_REPO_URI="https://github.com/qtile/qtile.git"
        inherit git-r3
else
        SRC_URI="https://github.com/qtile/qtile/archive/v${PV}.tar.gz -> ${P}.tar.gz"
        KEYWORDS="~amd64 ~x86"
fi

======================

==== suggestion ====
if [[ ${PV} == 9999* ]] ; then
        EGIT_REPO_URI="https://github.com/qtile/qtile.git"
        inherit git-r3
        KEYWORDS=""

else
        SRC_URI="https://github.com/qtile/qtile/archive/v${PV}.tar.gz -> ${P}.tar.gz"
        KEYWORDS="~amd64 ~x86"
fi

==================

[1] https://devmanual.gentoo.org/keywording/index.html

Reproducible: Always
Comment 1 Tim Harder gentoo-dev 2015-04-04 03:22:33 UTC
No, the devmanual is wrong in this case.