Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Wx-Scintilla/
Date: Thu, 22 Mar 2018 06:58:24
Message-Id: 1521701888.da1b80dc5d4ab388607a6b88082f796549563de9.kentnl@gentoo
1 commit: da1b80dc5d4ab388607a6b88082f796549563de9
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 22 06:57:38 2018 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 22 06:58:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da1b80dc
7
8 dev-perl/Wx-Scintilla: EAPI6 + tests
9
10 - EAPI6ify
11 - Enable tests (w/ virtualx handling)
12 - Stop using deprecated wxwidgets.eclass API
13
14 Package-Manager: Portage-2.3.24, Repoman-2.3.6
15
16 .../Wx-Scintilla/Wx-Scintilla-0.390.0-r3.ebuild | 41 ++++++++++++++++++++++
17 1 file changed, 41 insertions(+)
18
19 diff --git a/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r3.ebuild b/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r3.ebuild
20 new file mode 100644
21 index 00000000000..df5e61dfc0a
22 --- /dev/null
23 +++ b/dev-perl/Wx-Scintilla/Wx-Scintilla-0.390.0-r3.ebuild
24 @@ -0,0 +1,41 @@
25 +# Copyright 1999-2018 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=6
29 +
30 +WX_GTK_VER="3.0"
31 +DIST_AUTHOR=AZAWAWI
32 +DIST_VERSION=0.39
33 +inherit wxwidgets perl-module virtualx
34 +
35 +DESCRIPTION="Scintilla source code editing component for wxWidgets"
36 +
37 +LICENSE+=" HPND"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86"
40 +IUSE=""
41 +
42 +RDEPEND="
43 + dev-perl/Alien-wxWidgets
44 + dev-perl/Wx
45 + x11-libs/wxGTK:${WX_GTK_VER}
46 +"
47 +DEPEND="${RDEPEND}
48 + >=dev-perl/ExtUtils-XSpp-0.160.200
49 + >=dev-perl/Module-Build-0.360.0
50 +"
51 +
52 +PATCHES=(
53 + "${FILESDIR}"/${PN}-0.34-flags.patch
54 + "${FILESDIR}"/${PN}-0.39-gcc6.patch
55 +)
56 +
57 +src_configure() {
58 + setup-wxwidgets
59 + myconf=( --verbose )
60 + perl-module_src_configure
61 +}
62 +
63 +src_test() {
64 + virtx perl-module_src_test
65 +}