diff options
author | 2019-08-20 23:13:40 +0200 | |
---|---|---|
committer | 2019-08-20 23:14:32 +0200 | |
commit | 8d53db0b2e75d40b4e5dee316647cd3d531051fd (patch) | |
tree | c73c18017d303fe51a979cdae41daf4de80a1d8b /games-strategy/wesnoth | |
parent | media-libs/libglvnd: Version bump to 1.1.1 (diff) | |
download | gentoo-8d53db0b2e75d40b4e5dee316647cd3d531051fd.tar.gz gentoo-8d53db0b2e75d40b4e5dee316647cd3d531051fd.tar.bz2 gentoo-8d53db0b2e75d40b4e5dee316647cd3d531051fd.zip |
games-strategy/wesnoth: Only keyword release versions
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'games-strategy/wesnoth')
-rw-r--r-- | games-strategy/wesnoth/wesnoth-1.14.7.ebuild | 5 | ||||
-rw-r--r-- | games-strategy/wesnoth/wesnoth-1.15.0.ebuild | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/games-strategy/wesnoth/wesnoth-1.14.7.ebuild b/games-strategy/wesnoth/wesnoth-1.14.7.ebuild index e0b1b37602ec..e4bfda3bc803 100644 --- a/games-strategy/wesnoth/wesnoth-1.14.7.ebuild +++ b/games-strategy/wesnoth/wesnoth-1.14.7.ebuild @@ -11,7 +11,10 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86 ~x86-fbsd" +# uneven minor versions are development versions +if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then + KEYWORDS="~amd64 ~x86 ~x86-fbsd" +fi IUSE="dbus dedicated doc fribidi libressl nls openmp server" RDEPEND=" diff --git a/games-strategy/wesnoth/wesnoth-1.15.0.ebuild b/games-strategy/wesnoth/wesnoth-1.15.0.ebuild index 6ab67dcc94a9..f45abfd28f22 100644 --- a/games-strategy/wesnoth/wesnoth-1.15.0.ebuild +++ b/games-strategy/wesnoth/wesnoth-1.15.0.ebuild @@ -11,7 +11,10 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -#KEYWORDS="~amd64 ~x86 ~x86-fbsd" +# uneven minor versions are development versions +if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then + KEYWORDS="~amd64 ~x86 ~x86-fbsd" +fi IUSE="dbus dedicated doc fribidi libressl nls server" RDEPEND=" |