spack/var/spack/repos/builtin/packages/perl-bignum/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

21 lines
785 B
Python

# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack.package import *
class PerlBignum(PerlPackage):
"""bigint/bigrat/bignum - transparent big number support"""
homepage = "https://github.com/pjacklam/p5-bignum"
url = "https://cpan.metacpan.org/authors/id/P/PJ/PJACKLAM/bignum-0.66.tar.gz"
version("0.66", sha256="26d48fb4b63a4b738ab84b577f9de7cdec164fe5f8a7089010a1ec17e127ed97")
depends_on("perl@5.6.0:", type=("build", "run"))
depends_on("perl-math-bigrat", type=("build", "run"))
depends_on("perl-math-bigint", type=("build", "run"))
depends_on("perl-extutils-makemaker", type=("build"))