commit:     21928a595f1e4a3faea68c6ba97d183a77ec1579
Author:     Kent Fredric <kentfredric <AT> gmail <DOT> com>
AuthorDate: Wed Apr  6 12:47:46 2016 +0000
Commit:     Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Thu Apr  7 23:07:41 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21928a59

dev-perl/PPIx-Regexp: Bump to version 0.48.0

- EAPI6
- Added USE="examples"

Upstream:
- MultiCharacter modifiers supported
- Invalid \g and \k backrefs now considered errors
- error() method added to elements
- added modifier_asserted() to check for modifier influence
- non-ascii whitespace under /x supported for perl >=5.21.1
- replacements in s///ee now considered code
- arity of modifier use now available on Tokens
- \b{unknownthing} is now an error
- \b{gcb} \b{wb} \b{sb} \b{lb} now supported
- Nested subscripts in interpolation detected
- Interpret /n capture-group semantics like perl>=5.21.8 does
- PPIx::Regexp::Dumper now reports structures missing delimiters
- Parsing all-space strings a parse error
- Treat \U as a meta-character in \Q\E
- Better parising of ']' and whitespace in []'s
- Better \Q,\U,\L,\F,\E nesting.
- Only recognise \k in replacements, not \k{} or \g{}
- Postfix-deref parse support added
- explain(), main_structure() and in_regex_set() methods added.
- prior() deprecated
- Now accepts strings to parse()
- \N{} is a no-op
- added strict mode.

Package-Manager: portage-2.2.28

 dev-perl/PPIx-Regexp/Manifest                  |  1 +
 dev-perl/PPIx-Regexp/PPIx-Regexp-0.48.0.ebuild | 34 ++++++++++++++++++++++++++
 dev-perl/PPIx-Regexp/metadata.xml              |  3 +++
 3 files changed, 38 insertions(+)

diff --git a/dev-perl/PPIx-Regexp/Manifest b/dev-perl/PPIx-Regexp/Manifest
index c2b1cb6..910d891 100644
--- a/dev-perl/PPIx-Regexp/Manifest
+++ b/dev-perl/PPIx-Regexp/Manifest
@@ -1,2 +1,3 @@
 DIST PPIx-Regexp-0.031.tar.gz 152166 SHA256 
44f705b2f0a47f8434c4ba84b17989597d65dde813b7b42c5cd7bd5c16699ff2 SHA512 
4a55c368c24447dc8a386e58fac7f7acc31725b8b913595eff2cc0dc2f43d7e398474c5b94c8c007c2e9c2ad78f817dca4b39ae53f8b27a13b06aa9c291fa2e3
 WHIRLPOOL 
fc80f560a7f0ee2dfd44eb27db134682f200393bd3a2ec2dcea3cfc8b2bdd73ea97b0b375b1e98304f871762984d6e87a9fdfd1da58b5afe3fba4e5962b86e5f
 DIST PPIx-Regexp-0.033.tar.gz 153667 SHA256 
40adf6555cd8a692f79530f74f343d7d9ace53f7e3a2eefbbefebf8e7743d784 SHA512 
6367941b3ffc71c7f5ecbbee8ccb8953c6fab1ac7caea5b242e917241335c693bb8e30797c9ee82b52250976de9712abb0173e2490422c243116c25092faf5e1
 WHIRLPOOL 
58fcc27908249af88c443660f43c0655afd496af275856be853cfd0f23478e3f7b1d7d81013af523b7789e35175f7d11f88ffa868d380d02ec975de03214180a
+DIST PPIx-Regexp-0.048.tar.gz 193354 SHA256 
45894e2cabde6052d729082a5005cb3ada9c72239b167e85c2b42c6de463711f SHA512 
59ac89a9deb279cd454d5b52bdd796a098ab298a02038c06bbbe933e44b2d0bf235bdcab6e73d04945b1de60540e0171465ccf4f772fcfcabdd4bed218c18e28
 WHIRLPOOL 
fa254da6d570929197500fd5796bbb3d995ae05b78fd77f15f6256a6dde95667f9795dd99f3c7793358c806bb7f1d14b69812bc8a0288aac5fa519ac4c2d3e67

diff --git a/dev-perl/PPIx-Regexp/PPIx-Regexp-0.48.0.ebuild 
b/dev-perl/PPIx-Regexp/PPIx-Regexp-0.48.0.ebuild
new file mode 100644
index 0000000..a78b947
--- /dev/null
+++ b/dev-perl/PPIx-Regexp/PPIx-Regexp-0.48.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=WYANT
+DIST_VERSION=0.048
+inherit perl-module
+
+DESCRIPTION="Represent a regular expression of some sort"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
+IUSE="test examples"
+
+RDEPEND="
+       dev-perl/List-MoreUtils
+       >=dev-perl/PPI-1.117.0
+       virtual/perl-Scalar-List-Utils
+"
+DEPEND="${RDEPEND}
+       dev-perl/Module-Build
+       test? ( virtual/perl-Test-Simple )
+"
+
+src_install() {
+       perl-module_src_install
+       if use examples; then
+               docompress -x /usr/share/doc/${PF}/examples
+               docinto examples
+               dodoc -r eg/*
+       fi
+}

diff --git a/dev-perl/PPIx-Regexp/metadata.xml 
b/dev-perl/PPIx-Regexp/metadata.xml
index 93d3070..a2d1335 100644
--- a/dev-perl/PPIx-Regexp/metadata.xml
+++ b/dev-perl/PPIx-Regexp/metadata.xml
@@ -14,6 +14,8 @@
     <remote-id type="cpan-module">PPIx::Regexp::Lexer</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Node</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Node::Range</remote-id>
+    <remote-id type="cpan-module">PPIx::Regexp::Node::Unknown</remote-id>
+    <remote-id type="cpan-module">PPIx::Regexp::StringTokenizer</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Structure</remote-id>
     <remote-id 
type="cpan-module">PPIx::Regexp::Structure::Assertion</remote-id>
     <remote-id 
type="cpan-module">PPIx::Regexp::Structure::BranchReset</remote-id>
@@ -56,6 +58,7 @@
     <remote-id 
type="cpan-module">PPIx::Regexp::Token::Interpolation</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Token::Literal</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Token::Modifier</remote-id>
+    <remote-id type="cpan-module">PPIx::Regexp::Token::NoOp</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Token::Operator</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Token::Quantifier</remote-id>
     <remote-id type="cpan-module">PPIx::Regexp::Token::Recursion</remote-id>

Reply via email to