From 103e12680fefd4b0b9593f00c5192b8eb7ad123b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Sj=C3=B6din?= Date: Tue, 7 Aug 2018 22:26:17 +0300 Subject: [PATCH] Bump perl-graphviz --- build-fail-blacklist | 2 -- recipes/perl-graphviz/build.sh | 7 ++--- recipes/perl-graphviz/meta.yaml | 46 +++++++++++++++++++++------------ 3 files changed, 33 insertions(+), 22 deletions(-) diff --git a/build-fail-blacklist b/build-fail-blacklist index 9ad399c6254a5..d521f38ece234 100644 --- a/build-fail-blacklist +++ b/build-fail-blacklist @@ -1982,8 +1982,6 @@ recipes/perl-estscan2/2.1 # Creating new 'Build' script for 'Error' version '0.17024' # /opt/conda/conda-bld/perl-error_1530981443167/work/conda_build.sh: ./Build: /opt/conda/conda-bld/perl-error_1530981443167/_h_env_placehold_placehold_plac: bad interpreter: No such file or directory recipes/perl-io-socket-inet6 -#recipes/perl-path-class -recipes/perl-graphviz recipes/perl-ppi/1.236 recipes/perl-term-app-roles diff --git a/recipes/perl-graphviz/build.sh b/recipes/perl-graphviz/build.sh index 64652ea2132d9..6f4625802a6e9 100644 --- a/recipes/perl-graphviz/build.sh +++ b/recipes/perl-graphviz/build.sh @@ -3,10 +3,10 @@ # If it has Build.PL use that, otherwise use Makefile.PL if [ -f Build.PL ]; then perl Build.PL - ./Build - ./Build test + perl ./Build + perl ./Build test # Make sure this goes in site - ./Build install --installdirs site + perl ./Build install --installdirs site elif [ -f Makefile.PL ]; then # Make sure this goes in site perl Makefile.PL INSTALLDIRS=site @@ -17,3 +17,4 @@ else echo 'Unable to find Build.PL or Makefile.PL. You need to modify build.sh.' exit 1 fi + diff --git a/recipes/perl-graphviz/meta.yaml b/recipes/perl-graphviz/meta.yaml index df4668b7d103e..e4c900805c644 100644 --- a/recipes/perl-graphviz/meta.yaml +++ b/recipes/perl-graphviz/meta.yaml @@ -1,36 +1,47 @@ +{% set name = "perl-graphviz" %} +{% set version = "2.24" %} +{% set sha256 = "d95efac4cdeedb18283100efe3e00c59c1add524d9ce88c1c8a358359122f5ad" %} + package: - name: perl-graphviz - version: "2.20" + name: {{ name }} + version: {{ version }} source: - url: https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/GraphViz-2.20.tgz - md5: 714dedddd36d86950cd436d87d1d52b6 + url: https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/GraphViz-2.24.tgz + sha256: {{ sha256 }} build: - number: 2 + number: 0 requirements: host: - perl - - perl-module-build - - perl-file-which - - perl-ipc-run - - perl-libwww-perl - - perl-parse-recdescent - - perl-test-pod - perl-xml-twig + - perl-test-pod + - perl-extutils-makemaker + - perl-getopt-long + - perl-pod-usage + - perl-ipc-run + - perl-file-which - perl-xml-xpath + - perl-carp + - perl-time-hires + - perl-lib + - perl-parse-recdescent - graphviz run: - perl - - perl-file-which - - perl-ipc-run - - perl-libwww-perl - - perl-parse-recdescent - - perl-test-pod - perl-xml-twig + - perl-getopt-long + - perl-pod-usage + - perl-ipc-run + - perl-time-hires - perl-xml-xpath + - perl-carp + - perl-file-which + - perl-lib + - perl-parse-recdescent - graphviz test: @@ -47,5 +58,6 @@ test: about: home: http://metacpan.org/pod/GraphViz - license: artistic_2 + license: perl_5 summary: "Interface to AT&T's GraphViz. Deprecated. See GraphViz2" +