2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-12-13 10:35:13 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-12-13 10:35:13 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2019-10-29 09:27:54 +08:00
|
|
|
class PerlPerlVersion(PerlPackage):
|
2017-12-13 10:35:13 +08:00
|
|
|
"""Parse and manipulate Perl version strings"""
|
|
|
|
|
|
|
|
homepage = "http://search.cpan.org/~bdfoy/Perl-Version-1.013/lib/Perl/Version.pm"
|
2018-07-25 10:56:56 +08:00
|
|
|
url = "http://search.cpan.org/CPAN/authors/id/B/BD/BDFOY/Perl-Version-1.013_03.tar.gz"
|
2017-12-13 10:35:13 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.013_03', sha256='6b5978f598dcdf8a304500c1b7bcdce967ca05e7b38673cebfdb4237531c2ff9')
|
2017-12-13 10:35:13 +08:00
|
|
|
|
|
|
|
depends_on('perl-file-slurp-tiny', type=('build', 'run'))
|