2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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 *
|
|
|
|
|
|
|
|
|
|
|
|
class PerlNetHttp(PerlPackage):
|
|
|
|
"""Low-level HTTP connection (client)"""
|
|
|
|
|
|
|
|
homepage = "http://search.cpan.org/~oalders/Net-HTTP-6.17/lib/Net/HTTP.pm"
|
|
|
|
url = "http://search.cpan.org/CPAN/authors/id/O/OA/OALDERS/Net-HTTP-6.17.tar.gz"
|
|
|
|
|
|
|
|
version('6.17', '068fa02fd3c8a5b63316025b5a24844c')
|
|
|
|
|
|
|
|
depends_on('perl-uri', type=('build', 'run'))
|