mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-perl/Data-ICal: Bump to versionj 0.240.0
- EAPI7 - Parallel tests - Convert 'sed' replacements into patches - Unconditionally remove bad tests Upstream: - Prevent escaping of semi-colon in GEO field - Faster/clearer property folding Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
This commit is contained in:
39
dev-perl/Data-ICal/Data-ICal-0.240.0.ebuild
Normal file
39
dev-perl/Data-ICal/Data-ICal-0.240.0.ebuild
Normal file
@@ -0,0 +1,39 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DIST_AUTHOR=BPS
|
||||
DIST_VERSION=0.24
|
||||
inherit perl-module
|
||||
|
||||
DESCRIPTION="Generates iCalendar (RFC 2445) calendar files"
|
||||
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-perl/Class-Accessor
|
||||
dev-perl/Class-ReturnValue
|
||||
virtual/perl-MIME-Base64
|
||||
dev-perl/Text-vFile-asData
|
||||
"
|
||||
BDEPEND="${RDEPEND}
|
||||
>=virtual/perl-ExtUtils-MakeMaker-6.360.0
|
||||
test? (
|
||||
dev-perl/Test-LongString
|
||||
dev-perl/Test-NoWarnings
|
||||
virtual/perl-Test-Simple
|
||||
dev-perl/Test-Warn
|
||||
)
|
||||
"
|
||||
PERL_RM_FILES=(
|
||||
"t/pod.t"
|
||||
"t/pod-coverage.t"
|
||||
)
|
||||
PATCHES=(
|
||||
"${FILESDIR}/${PN}-0.24-no-autoinstall.patch"
|
||||
"${FILESDIR}/${PN}-0.24-no-dot-inc.patch"
|
||||
)
|
||||
@@ -1 +1,2 @@
|
||||
DIST Data-ICal-0.22.tar.gz 119116 BLAKE2B 5288c6c32a1225a6fbe587bc07650d94895f937516a82a1781777ec79827d80040b1fb3f10542d52fa5985c4b26ef38f374d7fbe4761bc2d1bc7afa4769e1671 SHA512 a02364dfb0a1e24efcf2efdb7240bb6c47ad5ed3a99ada51ddb9817b4e433038d57113699c6875f7d592cd3af46f5b074a1ac50cf951b7af449bde1765ed5d55
|
||||
DIST Data-ICal-0.24.tar.gz 120451 BLAKE2B 5f96ae3a625eb4e5823b9250673d4ae7c2b4addf80ab9543d1152cd45462fa901d3a76419f66b2eda4532b48eb380262ceedf6356cc72844e3dd2765d836af53 SHA512 592cc76dd8dd00d8ce365a7105c6b732ecb94838876d6b430f1f3078e8674f9584c5a6248c5ec5ebbee9d35f3758d9709d45e70728899c528d030424abe81d9e
|
||||
|
||||
24
dev-perl/Data-ICal/files/Data-ICal-0.24-no-autoinstall.patch
Normal file
24
dev-perl/Data-ICal/files/Data-ICal-0.24-no-autoinstall.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
From 6d28e03e9c5bc92ddfb92d2787af6a7d3baff24d Mon Sep 17 00:00:00 2001
|
||||
From: Kent Fredric <kentnl@gentoo.org>
|
||||
Date: Wed, 15 Jul 2020 23:59:05 +1200
|
||||
Subject: Disable autoinstall and sign functionality
|
||||
|
||||
These aren't helpful for Gentoo
|
||||
---
|
||||
Makefile.PL | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile.PL b/Makefile.PL
|
||||
index c3d895e..ea29f9b 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -13,6 +13,4 @@ requires('Class::Accessor');
|
||||
requires('Text::vFile::asData');
|
||||
requires('MIME::QuotedPrint');
|
||||
requires('Class::ReturnValue');
|
||||
-auto_install();
|
||||
-sign();
|
||||
WriteAll;
|
||||
--
|
||||
2.27.0
|
||||
|
||||
21
dev-perl/Data-ICal/files/Data-ICal-0.24-no-dot-inc.patch
Normal file
21
dev-perl/Data-ICal/files/Data-ICal-0.24-no-dot-inc.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
From 976b06737710d78fc0aef76b8251d0e138ebbc18 Mon Sep 17 00:00:00 2001
|
||||
From: Kent Fredric <kentnl@gentoo.org>
|
||||
Date: Thu, 16 Jul 2020 00:19:16 +1200
|
||||
Subject: Include '.' in @INC for perl 5.26+
|
||||
|
||||
---
|
||||
Makefile.PL | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/Makefile.PL b/Makefile.PL
|
||||
index ea29f9b..44fb3b8 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -1,3 +1,4 @@
|
||||
+use lib '.';
|
||||
use inc::Module::Install;
|
||||
|
||||
name ('Data-ICal');
|
||||
--
|
||||
2.27.0
|
||||
|
||||
@@ -9,10 +9,13 @@
|
||||
<remote-id type="cpan">Data-ICal</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm::Audio</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm::Display</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm::Email</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm::None</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm::Procedure</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Alarm::URI</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Event</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::FreeBusy</remote-id>
|
||||
<remote-id type="cpan-module">Data::ICal::Entry::Journal</remote-id>
|
||||
|
||||
Reference in New Issue
Block a user