forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-perl/YAML: Bump to version 1.200.0
Upstream: - Fix errors in parsing YAML with quoted whitespace in map keys - Correctly delay loading of B::Deparse at runtime - Add new feature $YAML::Preserve that creates order-preserving tied hashes instead of plain random-ordered hashes. Package-Manager: portage-2.3.2
- Loading branch information
1 parent
abaab04
commit d70ae35
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=INGY | ||
DIST_VERSION=1.20 | ||
inherit perl-module | ||
|
||
DESCRIPTION="YAML Ain't Markup Language (tm)" | ||
|
||
SLOT="0" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" | ||
IUSE="test" | ||
|
||
RDEPEND="" | ||
DEPEND="${RDEPEND} | ||
virtual/perl-ExtUtils-MakeMaker | ||
test? ( | ||
>=virtual/perl-Test-Simple-0.880.0 | ||
>=dev-perl/Test-YAML-1.50.0 | ||
) | ||
" | ||
src_test() { | ||
perl_rm_files t/author-*.t | ||
perl-module_src_test | ||
} |