diff options
author | Kent Fredric <kentnl@gentoo.org> | 2020-07-16 00:34:23 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-07-16 00:34:37 +1200 |
commit | 75d4be9e2e5629667b23cd1f1a3b1d228ec146a3 (patch) | |
tree | 30c44d94fb49ae03a44ac5c61c35b635439db9cb /dev-perl/Data-ICal | |
parent | sys-apps/s6-rc: arm keyworded (bug #705540) (diff) | |
download | gentoo-75d4be9e2e5629667b23cd1f1a3b1d228ec146a3.tar.gz gentoo-75d4be9e2e5629667b23cd1f1a3b1d228ec146a3.tar.bz2 gentoo-75d4be9e2e5629667b23cd1f1a3b1d228ec146a3.zip |
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>
Diffstat (limited to 'dev-perl/Data-ICal')
-rw-r--r-- | dev-perl/Data-ICal/Data-ICal-0.240.0.ebuild | 39 | ||||
-rw-r--r-- | dev-perl/Data-ICal/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Data-ICal/files/Data-ICal-0.24-no-autoinstall.patch | 24 | ||||
-rw-r--r-- | dev-perl/Data-ICal/files/Data-ICal-0.24-no-dot-inc.patch | 21 | ||||
-rw-r--r-- | dev-perl/Data-ICal/metadata.xml | 3 |
5 files changed, 88 insertions, 0 deletions
diff --git a/dev-perl/Data-ICal/Data-ICal-0.240.0.ebuild b/dev-perl/Data-ICal/Data-ICal-0.240.0.ebuild new file mode 100644 index 000000000000..f156dbbb8885 --- /dev/null +++ b/dev-perl/Data-ICal/Data-ICal-0.240.0.ebuild @@ -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" +) diff --git a/dev-perl/Data-ICal/Manifest b/dev-perl/Data-ICal/Manifest index 652df5522f21..03b95c929cbc 100644 --- a/dev-perl/Data-ICal/Manifest +++ b/dev-perl/Data-ICal/Manifest @@ -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 diff --git a/dev-perl/Data-ICal/files/Data-ICal-0.24-no-autoinstall.patch b/dev-perl/Data-ICal/files/Data-ICal-0.24-no-autoinstall.patch new file mode 100644 index 000000000000..f321bbec98ca --- /dev/null +++ b/dev-perl/Data-ICal/files/Data-ICal-0.24-no-autoinstall.patch @@ -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 + diff --git a/dev-perl/Data-ICal/files/Data-ICal-0.24-no-dot-inc.patch b/dev-perl/Data-ICal/files/Data-ICal-0.24-no-dot-inc.patch new file mode 100644 index 000000000000..361b40943cf6 --- /dev/null +++ b/dev-perl/Data-ICal/files/Data-ICal-0.24-no-dot-inc.patch @@ -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 + diff --git a/dev-perl/Data-ICal/metadata.xml b/dev-perl/Data-ICal/metadata.xml index c02018bdf3aa..2d008fc1d7bc 100644 --- a/dev-perl/Data-ICal/metadata.xml +++ b/dev-perl/Data-ICal/metadata.xml @@ -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> |