summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-lwp-protocol-https/package.py
blob: b17b710128cd33a74fe504693c2daa684c84ded0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PerlLwpProtocolHttps(PerlPackage):
    """Provide https support for LWP::UserAgent"""

    homepage = "https://metacpan.org/pod/LWP::Protocol::https"
    url = "http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-Protocol-https-6.04.tar.gz"

    version("6.04", sha256="1ef67750ee363525cf729b59afde805ac4dc80eaf8d36ca01082a4d78a7af629")

    depends_on("perl-test-requiresinternet", type=("build", "run"))
    depends_on("perl-io-socket-ssl", type=("build", "run"))
    depends_on("perl-net-http", type=("build", "run"))
    depends_on("perl-mozilla-ca", type=("build", "run"))
    depends_on("perl-libwww-perl", type=("build", "run"))