Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Build-XSUtil/
Date: Sun, 28 Feb 2016 10:02:06
Message-Id: 1456562396.c91014d0c0c14498da89515e202627b602175420.monsieurp@gentoo
1 commit: c91014d0c0c14498da89515e202627b602175420
2 Author: Kent Fredric <kentfredric <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 22 11:56:12 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 27 08:39:56 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c91014d0
7
8 dev-perl/Module-Build-XSUtil: Bump to version 0.160.0
9
10 - use EAPI6
11 - Install examples with `USE=examples`
12
13 Package-Manager: portage-2.2.27
14
15 dev-perl/Module-Build-XSUtil/Manifest | 1 +
16 .../Module-Build-XSUtil-0.160.0.ebuild | 47 ++++++++++++++++++++++
17 2 files changed, 48 insertions(+)
18
19 diff --git a/dev-perl/Module-Build-XSUtil/Manifest b/dev-perl/Module-Build-XSUtil/Manifest
20 index 393aeb5..910649a 100644
21 --- a/dev-perl/Module-Build-XSUtil/Manifest
22 +++ b/dev-perl/Module-Build-XSUtil/Manifest
23 @@ -1 +1,2 @@
24 DIST Module-Build-XSUtil-0.14.tar.gz 14863 SHA256 d344fe7986767d7689b332c04d53fa02ff33f383dd5fd1769833c4b25415b625 SHA512 88932b6b726bcb86663318b49d2c1e4449d330c155729e7cd149e6bfb419e337f09140ebdb99a779f85f7398c5eccb464b990d4ad7cf3cd980609dfc3f6c3c70 WHIRLPOOL cf68390b609ed81bf29e736e0a09d9635700a8dcc6f4c585321bcc2cb2f685bd12139a3adc4a26820c6402f0a4659f90ea90b7094deb4cc434a58298f02534dc
25 +DIST Module-Build-XSUtil-0.16.tar.gz 15137 SHA256 15762fa4e43b41302cff261c7ad75aacdc874f416981f206d783f20acd023adb SHA512 8acc86564341e5ac435e37ecf6c10fdd5621dff3d5fe1764ca229ea2228e990d9774b65a9e95b1154c8dc4afd5299173e5eb6c632c4fbbe86162b7bb319bc18e WHIRLPOOL 43c13e1524bad731033c279bc6329ad67e2273a12cf5e648e0038ba3c2bc714bcf0c73dca73f22e17f8a659c5ba032c2f9f5f843f2e0798695c5c38cb4f64c43
26
27 diff --git a/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.160.0.ebuild b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.160.0.ebuild
28 new file mode 100644
29 index 0000000..82f415a
30 --- /dev/null
31 +++ b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.160.0.ebuild
32 @@ -0,0 +1,47 @@
33 +# Copyright 1999-2016 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=6
38 +
39 +DIST_AUTHOR=HIDEAKIO
40 +DIST_VERSION=0.16
41 +inherit perl-module
42 +
43 +DESCRIPTION="A Module::Build class for building XS modules"
44 +
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~hppa ~ppc ~x86"
47 +IUSE="test examples"
48 +# File::Basename -> perl
49 +RDEPEND="
50 + dev-perl/Devel-CheckCompiler
51 + virtual/perl-Devel-PPPort
52 + virtual/perl-Exporter
53 + virtual/perl-ExtUtils-CBuilder
54 + virtual/perl-File-Path
55 + virtual/perl-XSLoader
56 + virtual/perl-parent
57 +"
58 +# File::Spec::Functions -> virtual/perl-File-Spec
59 +# Test::More -> perl-Test-Simple
60 +DEPEND="
61 + >=dev-perl/Module-Build-0.400.500
62 + ${RDEPEND}
63 + test? (
64 + dev-perl/Capture-Tiny
65 + dev-perl/Cwd-Guard
66 + dev-perl/File-Copy-Recursive
67 + virtual/perl-File-Spec
68 + virtual/perl-File-Temp
69 + >=virtual/perl-Test-Simple-0.980.0
70 + )
71 +"
72 +src_install() {
73 + perl-module_src_install
74 + if use examples; then
75 + docompress -x usr/share/doc/${PF}/eg/
76 + insinto usr/share/doc/${PF}
77 + doins -r eg
78 + fi
79 +}