diff options
author | 2016-03-16 14:49:08 +1300 | |
---|---|---|
committer | 2016-03-16 23:49:47 +0100 | |
commit | 0422850ff1d7ae595203534357f19b50465d34f0 (patch) | |
tree | fd7b361cdc3d3f8ae5205781188c4c4f7e01985f /dev-perl/Parse-RecDescent | |
parent | dev-perl/Parse-ErrorString-Perl: Bump to version 0.220.0 (diff) | |
download | gentoo-0422850ff1d7ae595203534357f19b50465d34f0.tar.gz gentoo-0422850ff1d7ae595203534357f19b50465d34f0.tar.bz2 gentoo-0422850ff1d7ae595203534357f19b50465d34f0.zip |
dev-perl/Parse-RecDescent: Bump to version 1.967.13
- EAPI6
- Fixup DESCRIPTION
- Fixup deps
- Fixup Tests
- add USE="examples"
Upstream:
- Avoid bug with "already defined" in precompiled parsers.
- Precompiled parser runtime sharing support.
- Global skip: now more like other skip: directives
- Sort hash key structures emitted for consistency
- Precompiled parsers track parent compiler.
- Localise Data::Dumper args to avoid certain bugs
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-perl/Parse-RecDescent')
-rw-r--r-- | dev-perl/Parse-RecDescent/Manifest | 1 | ||||
-rw-r--r-- | dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.13.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-perl/Parse-RecDescent/Manifest b/dev-perl/Parse-RecDescent/Manifest index cc647c95c52d..1c90d89f7abb 100644 --- a/dev-perl/Parse-RecDescent/Manifest +++ b/dev-perl/Parse-RecDescent/Manifest @@ -1 +1,2 @@ DIST Parse-RecDescent-1.967009.tar.gz 170858 SHA256 e1000f0b82256269fb8daa43aab166a7832fc18b4689af7c8d6d1a49fe75c687 SHA512 8423f4c61770ec77b67c656755dd952fb01b739405fe0586d502d9698f8b18e401ca7f40e7e88208af4a15c0f7d45c4ecf5f20032014cf650351763516515cae WHIRLPOOL 91af978877642f54bf4e8464343a79892242a49859df78c3f11962ca2e09eafcc69cbd2e935a5220e1552fa90907d0b02a866d4cfa3b4339ac16afb74a95d45e +DIST Parse-RecDescent-1.967013.tar.gz 176362 SHA256 226590d3850cd1678deb0190d5207b3477fb9070a8ca6f18d8999daf44485930 SHA512 10d3daca3b4d23059937f81fe188b2377598841381dc92582c5cce6a1bfcb5963e1eed4d7f1601a45ae41ed0f3f864a50ff68cd72e05778866fe83cd3d158def WHIRLPOOL 3418d15447f4c898194705616720c38d337a2ccad8c632b78e8460d0b7c66f1065070e81dce81caf72782f7ca0cf1729e779e8cf5755d331088b02766cfb2106 diff --git a/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.13.ebuild b/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.13.ebuild new file mode 100644 index 000000000000..85acda0cd4ee --- /dev/null +++ b/dev-perl/Parse-RecDescent/Parse-RecDescent-1.967.13.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=JTBRAUN +DIST_VERSION=1.967013 +inherit perl-module + +DESCRIPTION="Generate Recursive-Descent Parsers" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +IUSE="test examples" + +RDEPEND=" + >=virtual/perl-Text-Balanced-1.950.0 +" +DEPEND="${RDEPEND} + dev-perl/Module-Build + test? ( + virtual/perl-Test-Simple + dev-perl/Test-Warn + ) +" +src_test() { + perl_rm_files "t/pod.t" + perl-module_src_test +} +src_install() { + perl-module_src_install + docinto html/ + dodoc -r tutorial + if use examples; then + docompress -x /usr/share/doc/${PF}/examples/ + docinto examples/ + dodoc -r demo/* + fi +} |