Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Build-XSUtil/
Date: Sun, 04 Jul 2021 22:49:50
Message-Id: 1625438974.807110f589c33e6497684706ab724dc3af46bd1a.dilfridge@gentoo
1 commit: 807110f589c33e6497684706ab724dc3af46bd1a
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 4 22:46:20 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 4 22:49:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807110f5
7
8 dev-perl/Module-Build-XSUtil: Version bump 0.19
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
12
13 dev-perl/Module-Build-XSUtil/Manifest | 1 +
14 .../Module-Build-XSUtil-0.190.0.ebuild | 45 ++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/dev-perl/Module-Build-XSUtil/Manifest b/dev-perl/Module-Build-XSUtil/Manifest
18 index e3c83ba84a2..2c8979deef8 100644
19 --- a/dev-perl/Module-Build-XSUtil/Manifest
20 +++ b/dev-perl/Module-Build-XSUtil/Manifest
21 @@ -1 +1,2 @@
22 DIST Module-Build-XSUtil-0.18.tar.gz 15200 BLAKE2B 04885b37ba0e9dea8a57269ec8352e525d5149c6ccfc905a075b9901da902f37c5ca1fa77b192aa3026bbfd5ee096cbdfeb5cb12ca3a4a5bf871a0536311f8c1 SHA512 ff2b9efd23a91e16ae95e6abc283e9c64e4eca9e1bfde3d6d2b95b052e5bcdf4d00baa6bf07d44dc6ffbf426eb73b2b83b52c60f5cd208862d35d006dec692be
23 +DIST Module-Build-XSUtil-0.19.tar.gz 15276 BLAKE2B 3f2d477551c0903449ea0de9e96d8d0ee3e82ce68faf2d11514c0a98103a7d7aef3a7c0c54f1a316a1ed812f2c8d8f4f7146aad9722f459f8f748df914dbe90d SHA512 187f504c3f26d15b96cdc5b682d3487a31cf124475160b7fe5dce727d5d6ec5de5a58d09535adb62a1a95b3030fb62951b2cc0eca860eb03c66a48042cea8819
24
25 diff --git a/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild
26 new file mode 100644
27 index 00000000000..6f075cea6f3
28 --- /dev/null
29 +++ b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DIST_AUTHOR=HIDEAKIO
37 +DIST_VERSION=0.19
38 +inherit perl-module
39 +
40 +DESCRIPTION="A Module::Build class for building XS modules"
41 +
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +IUSE="examples"
45 +
46 +RDEPEND="
47 + dev-perl/Devel-CheckCompiler
48 + virtual/perl-Devel-PPPort
49 + virtual/perl-Exporter
50 + virtual/perl-ExtUtils-CBuilder
51 + virtual/perl-File-Path
52 + virtual/perl-XSLoader
53 + virtual/perl-parent
54 +"
55 +BDEPEND="${RDEPEND}
56 + >=dev-perl/Module-Build-0.400.500
57 + test? (
58 + dev-perl/Capture-Tiny
59 + dev-perl/Cwd-Guard
60 + >=dev-perl/File-Copy-Recursive-Reduced-0.2.0
61 + virtual/perl-File-Spec
62 + virtual/perl-File-Temp
63 + >=virtual/perl-Test-Simple-0.980.0
64 + )
65 +
66 +"
67 +
68 +src_install() {
69 + perl-module_src_install
70 + if use examples; then
71 + docompress -x usr/share/doc/${PF}/eg/
72 + insinto usr/share/doc/${PF}
73 + doins -r eg
74 + fi
75 +}