diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2018-10-09 09:17:21 -0500 |
---|---|---|
committer | Levi Baber <baberlevi@gmail.com> | 2018-10-09 09:17:21 -0500 |
commit | 817ee344c565768d94a2a1dfa307f87c0629e709 (patch) | |
tree | 0b42d0940344c4cce62e3a83c05fd0b2b63dd5c8 /var | |
parent | 36941ffb45b109125fd5e66b0d99682274341dee (diff) | |
download | spack-817ee344c565768d94a2a1dfa307f87c0629e709.tar.gz spack-817ee344c565768d94a2a1dfa307f87c0629e709.tar.bz2 spack-817ee344c565768d94a2a1dfa307f87c0629e709.tar.xz spack-817ee344c565768d94a2a1dfa307f87c0629e709.zip |
perl-perl4-corelibs: new package (#9459)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-perl4-corelibs/package.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-perl4-corelibs/package.py b/var/spack/repos/builtin/packages/perl-perl4-corelibs/package.py new file mode 100644 index 0000000000..d7d0c9cc18 --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-perl4-corelibs/package.py @@ -0,0 +1,42 @@ +############################################################################## +# Copyright (c) 2013-2018, Lawrence Livermore National Security, LLC. +# Produced at the Lawrence Livermore National Laboratory. +# +# This file is part of Spack. +# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved. +# LLNL-CODE-647188 +# +# For details, see https://github.com/spack/spack +# Please also see the NOTICE and LICENSE files for our notice and the LGPL. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License (as +# published by the Free Software Foundation) version 2.1, February 1999. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and +# conditions of the GNU Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +############################################################################## + +from spack import * + + +class PerlPerl4Corelibs(PerlPackage): + """Perl4::CoreLibs - libraries historically supplied with Perl 4""" + + # doesn't look like a homepage but it is + homepage = "https://metacpan.org/pod/release/ZEFRAM/Perl4-CoreLibs-0.003/lib/Perl4/CoreLibs.pm" + url = "https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Perl4-CoreLibs-0.003.tar.gz" + + version('0.004', sha256='78887e3365f8935ab00d528832e9b7a426fb684ffc5c03c20e67a217ca4ac64a') + version('0.003', sha256='55c9b2b032944406dbaa2fd97aa3692a1ebce558effc457b4e800dabfaad9ade') + version('0.002', sha256='c68272e8b0e37268d9fbb93f5ef5708e12e0a13bbb5a6123af3f493ea8852521') + version('0.001', sha256='f7479f63e8b0cc344752a59f66fd084a14ee87bcc2a1f67c1a413afab8d0ad37') + version('0.000', sha256='d8f2310ad0b0f48c8fc258a75042ebeedf47bcefb231be427761dba77e734875') + + depends_on('perl-module-build', type='build') |