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/Gtk2-Ex-Simple-List/
Date: Tue, 24 Oct 2017 02:43:21
Message-Id: 1508809726.46f5df0ea03bcacb570f40ce2ac1d6c8ee0632a5.kentnl@gentoo
1 commit: 46f5df0ea03bcacb570f40ce2ac1d6c8ee0632a5
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 24 01:41:45 2017 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 24 01:48:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f5df0e
7
8 dev-perl/Gtk2-Ex-Simple-List: Enable tests
9
10 - EAPI6
11 - Add USE=examples
12 - Enable Tests (require X11)
13
14 Package-Manager: Portage-2.3.8, Repoman-2.3.3
15
16 .../Gtk2-Ex-Simple-List-0.500.0-r2.ebuild | 27 ++++++++++++++++++++++
17 1 file changed, 27 insertions(+)
18
19 diff --git a/dev-perl/Gtk2-Ex-Simple-List/Gtk2-Ex-Simple-List-0.500.0-r2.ebuild b/dev-perl/Gtk2-Ex-Simple-List/Gtk2-Ex-Simple-List-0.500.0-r2.ebuild
20 new file mode 100644
21 index 00000000000..ca999714796
22 --- /dev/null
23 +++ b/dev-perl/Gtk2-Ex-Simple-List/Gtk2-Ex-Simple-List-0.500.0-r2.ebuild
24 @@ -0,0 +1,27 @@
25 +# Copyright 1999-2017 Gentoo Foundation
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=6
29 +
30 +DIST_AUTHOR=RMCFARLA
31 +DIST_VERSION=0.50
32 +DIST_SECTION=Gtk2-Perl-Ex
33 +DIST_EXAMPLES=( "examples/*" )
34 +inherit perl-module virtualx
35 +
36 +DESCRIPTION="A simple interface to Gtk2's complex MVC list widget"
37 +
38 +LICENSE="|| ( LGPL-2.1 LGPL-3 )" # LGPL-2.1+
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~ia64 ~sparc ~x86"
41 +IUSE=""
42 +
43 +RDEPEND="
44 + >=dev-perl/Gtk2-1.60.0
45 + >=dev-perl/glib-perl-1.62.0
46 +"
47 +DEPEND="${RDEPEND}"
48 +
49 +src_test() {
50 + virtx perl-module_src_test
51 +}