Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 545444 - x11-wm/qtile-9999 KEYWORDS="" is missing
Summary: x11-wm/qtile-9999 KEYWORDS="" is missing
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal minor (vote)
Assignee: Tim Harder
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-04-03 20:49 UTC by Jonas Stein
Modified: 2015-04-09 06:15 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.