dev-perl/boolean: bump to version 0.460.0

- EAPI6
- Clean dependencies
- Smarter tests

Upstream:
- Ensure thread safe objects with CLONE method

Package-Manager: Portage-2.3.8, Repoman-2.3.3
This commit is contained in:
Kent Fredric
2017-09-19 22:25:31 +12:00
parent 6a9b6317a6
commit 04d640a49c
2 changed files with 28 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST boolean-0.45.tar.gz 14641 SHA256 f2fa412c8042bb1e97675cdac8dfb9696e5c4036bd439401031a5afe1b7d19a2 SHA512 1acc26a5015f067e701fa52cbc80fb1fe84f2b4246690a96fc1efb608fb9c40cf0998f9932a485e659e3ea03a7c05d82d779fb029ed70a0a468f7bf3573f260e WHIRLPOOL eb56cc406bf61caa44cd05bce4e8a2cb6273606972a946feace651e161789cb8545ee257c1831ddb3c4d5df371d244a7c3589371f906f76796d7d0e2a616396b
DIST boolean-0.46.tar.gz 15552 SHA256 95c088085c3e83bf680fe6ce16d8264ec26310490f7d1680e416ea7a118f156a SHA512 910653882f501cbf9420d775a79a000c62632a98643ac5e9f3d99765652e7c8c073f251bc36f0b69c9b259762bebeaeac18376e78494977d912da538939bb296 WHIRLPOOL 903305da0d28452549a7b3a516639c9095d81259d4cdf16c333d470a01f730395543079482b89a418697cc16c1e261f264e17ec771921c6a2c90d7a5226cd18a

View File

@@ -0,0 +1,27 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DIST_AUTHOR=INGY
DIST_VERSION=0.46
inherit perl-module
DESCRIPTION="Boolean support for Perl"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=""
DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
"
src_test() {
elog "Install the following dependencies for comprehensive tests:"
local i="$(if has_version 'dev-perl/JSON-MaybeXS'; then echo '[I]'; else echo '[ ]'; fi)"
elog " $i dev-perl/JSON-MaybeXS - Interop testing with native C JSON Decoders";
echo
perl_rm_files t/author-pod-syntax.t
perl-module_src_test
}