
This PR adds 'http://' to the homepage setting of a few packages that do not have it set. Not having that set can cause problems with some wiki apps when embedding the homepage value into markdown syntax. - bowtie2 - exuberant-ctags - perl-want - samtools
16 lines
531 B
Python
16 lines
531 B
Python
# Copyright 2013-2020 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 import *
|
|
|
|
|
|
class PerlWant(PerlPackage):
|
|
"""A generalisation of wantarray."""
|
|
|
|
homepage = "http://search.cpan.org/~robin/Want/Want.pm"
|
|
url = "http://search.cpan.org/CPAN/authors/id/R/RO/ROBIN/Want-0.29.tar.gz"
|
|
|
|
version('0.29', sha256='b4e4740b8d4cb783591273c636bd68304892e28d89e88abf9273b1de17f552f7')
|