Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libpeas/
Date: Mon, 26 Mar 2018 19:33:23
Message-Id: 1522092790.6288f83818f97d5b20988476ff0c00446a321f2c.mgorny@gentoo
1 commit: 6288f83818f97d5b20988476ff0c00446a321f2c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 26 22:22:41 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 26 19:33:10 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6288f838
7
8 dev-libs/libpeas: USE=jit -> USE=luajit
9
10 Closes: https://bugs.gentoo.org/648188
11
12 dev-libs/libpeas/libpeas-1.20.0-r1.ebuild | 8 ++++----
13 1 file changed, 4 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-libs/libpeas/libpeas-1.20.0-r1.ebuild b/dev-libs/libpeas/libpeas-1.20.0-r1.ebuild
16 index 71803c6cb7f..ead15aa6969 100644
17 --- a/dev-libs/libpeas/libpeas-1.20.0-r1.ebuild
18 +++ b/dev-libs/libpeas/libpeas-1.20.0-r1.ebuild
19 @@ -14,7 +14,7 @@ LICENSE="LGPL-2+"
20 SLOT="0"
21 KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
22
23 -IUSE="+gtk glade jit lua +python"
24 +IUSE="+gtk glade lua luajit +python"
25 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
26
27 RDEPEND="
28 @@ -24,8 +24,8 @@ RDEPEND="
29 gtk? ( >=x11-libs/gtk+-3:3[introspection] )
30 lua? (
31 >=dev-lua/lgi-0.9.0
32 - jit? ( >=dev-lang/luajit-2:2 )
33 - !jit? ( =dev-lang/lua-5.1*:0 ) )
34 + luajit? ( >=dev-lang/luajit-2:2 )
35 + !luajit? ( =dev-lang/lua-5.1*:0 ) )
36 python? (
37 ${PYTHON_DEPS}
38 >=dev-python/pygobject-3.2:3[${PYTHON_USEDEP}] )
39 @@ -65,7 +65,7 @@ src_configure() {
40
41 # lua
42 $(use_enable lua lua5.1)
43 - $(use_enable $(usex jit lua jit) luajit)
44 + $(use_enable $(usex luajit lua luajit) luajit)
45 )
46
47 gnome2_src_configure "${myconf[@]}"