Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update perl-test-yaml to 1.07 #9881

Merged
merged 2 commits into from
Jul 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion build-fail-blacklist
Original file line number Diff line number Diff line change
Expand Up @@ -2366,7 +2366,6 @@ recipes/perl-test-pod-coverage/1.10
recipes/perl-text-asciitable/0.22
recipes/perl-perlio-utf8_strict
recipes/perl-data-optlist
recipes/perl-test-yaml
recipes/perl-algorithm-dependency
recipes/perl-acme-damn/0.08
recipes/oases
Expand Down
2 changes: 2 additions & 0 deletions recipes/perl-test-yaml/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ else
echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.'
exit 1
fi
# Workaround https://github.com/conda/conda-build/issues/2824
chmod u+w $PREFIX/bin/test-yaml
19 changes: 12 additions & 7 deletions recipes/perl-test-yaml/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{% set name = "perl-test-yaml" %}
{% set version = "1.07" %}
{% set sha256 = "1f300d034f46298cb92960912cc04bac33fb27f05b8852d8f051e110b9cd995f" %}

package:
name: perl-test-yaml
version: "1.06"
name: {{ name }}
version: {{ version }}

source:
url: https://cpan.metacpan.org/authors/id/I/IN/INGY/Test-YAML-1.06.tar.gz
md5: 92e6ea57576428095fe3c9b8e00e6f29
url: https://cpan.metacpan.org/authors/id/T/TI/TINITA/Test-YAML-1.07.tar.gz
sha256: {{ sha256 }}

build:
number: 2
number: 0

requirements:
host:
- perl
- perl-test-base
- perl-extutils-makemaker
- perl-test-base >=0.89

run:
- perl
- perl-test-base
- perl-test-base >=0.89

test:
# Perl 'use' tests trigger "readline() on unopened filehandle DATA" errors,
Expand Down