diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-04-08 03:37:43 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-04-08 03:37:53 +1200 |
commit | 59f8405877c1f76c92115d136fcdf7ec422579c6 (patch) | |
tree | 1e38a529835535385c965a92f35326826c1bed97 /dev-perl/PerlIO-utf8_strict | |
parent | dev-perl/PerlIO-utf8_strict: Fix non-blank line after header (diff) | |
download | gentoo-59f8405877c1f76c92115d136fcdf7ec422579c6.tar.gz gentoo-59f8405877c1f76c92115d136fcdf7ec422579c6.tar.bz2 gentoo-59f8405877c1f76c92115d136fcdf7ec422579c6.zip |
dev-perl/PerlIO-utf8_strict: Bump to version 0.7.0
Upstream:
- Fix '.' in @INC reliance.
- Fix calling syswrite() with unicode.
Bug: https://bugs.gentoo.org/614920
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'dev-perl/PerlIO-utf8_strict')
-rw-r--r-- | dev-perl/PerlIO-utf8_strict/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/PerlIO-utf8_strict/PerlIO-utf8_strict-0.7.0.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-perl/PerlIO-utf8_strict/Manifest b/dev-perl/PerlIO-utf8_strict/Manifest index ecda7e0aa783..97ee69786374 100644 --- a/dev-perl/PerlIO-utf8_strict/Manifest +++ b/dev-perl/PerlIO-utf8_strict/Manifest @@ -1 +1,2 @@ DIST PerlIO-utf8_strict-0.006.tar.gz 66240 SHA256 980010e624c43be0a2aac8e1fe5db3fe43035940def75ca70401bb1ca98bd562 SHA512 9c8423d5e60eba54d1c1ad77840d703577e3bb35333e08ef34ada64bebc8c50630e19c6d536243bfbae4197bf8143de82251122af8581813c61428c8a78111de WHIRLPOOL a91f41d0aacfb1d32746d08ae639994ada8f02f65c4adb29b7bb4ffdf2244d4ed81712812b7b7773b5fa87e9dd8f91fc5e680b5850c622310af9b7d00d015469 +DIST PerlIO-utf8_strict-0.007.tar.gz 67922 SHA256 83a33f2fe046cb3ad6afc80790635a423e2c7c6854afacc6998cd46951cc81cb SHA512 0d39be9bcbab4cea087f59c67dc1af6773b6258c5e836590ff58cc18bf3392ba6e95c55a0c7ce94236e0be7053802b4b1d6010130355e1a973a3698aaf49af0f WHIRLPOOL 5dde44f00af014fa9046164de250bb22d85e92dcaab7c3e7abdc897f4457bc77d2365a366af7c2c1775e4689b9df7c8e6cb1cf59623f7ef9f61df3c403324d7b diff --git a/dev-perl/PerlIO-utf8_strict/PerlIO-utf8_strict-0.7.0.ebuild b/dev-perl/PerlIO-utf8_strict/PerlIO-utf8_strict-0.7.0.ebuild new file mode 100644 index 000000000000..c3651f9260ee --- /dev/null +++ b/dev-perl/PerlIO-utf8_strict/PerlIO-utf8_strict-0.7.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +DIST_AUTHOR=LEONT +DIST_VERSION=0.007 +inherit perl-module + +DESCRIPTION="Fast and correct UTF-8 IO" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" +# r: strict, warnings -> perl +RDEPEND=" + virtual/perl-XSLoader +" +# t: File::Spec::Functions -> File-Spec +# t: IO::File -> IO +# t: utf8 -> perl +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + test? ( + virtual/perl-Carp + virtual/perl-Exporter + virtual/perl-File-Spec + virtual/perl-IO + dev-perl/Test-Exception + >=virtual/perl-Test-Simple-0.880.0 + ) +" +src_compile() { + emake OPTIMIZE="${CFLAGS}" +} |