From ce0910a82cbbb7ae4ea03372c5169df49145fa58 Mon Sep 17 00:00:00 2001 From: Arne Becker <101113822+EbiArnie@users.noreply.github.com> Date: Thu, 10 Oct 2024 08:05:11 +0100 Subject: [PATCH] perl-sort-naturally: new package (#46886) * perl-sort-naturally: new package Adds Sort::Naturally * Use new mechanism for testing * Make black happier --- .../packages/perl-sort-naturally/package.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 var/spack/repos/builtin/packages/perl-sort-naturally/package.py diff --git a/var/spack/repos/builtin/packages/perl-sort-naturally/package.py b/var/spack/repos/builtin/packages/perl-sort-naturally/package.py new file mode 100644 index 00000000000..a4ba950b05f --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-sort-naturally/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2024 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 PerlSortNaturally(PerlPackage): + """Sort lexically, but sort numeral parts numerically""" + + homepage = "https://metacpan.org/pod/Sort::Naturally" + url = "https://cpan.metacpan.org/authors/id/B/BI/BINGOS/Sort-Naturally-1.03.tar.gz" + + maintainers("EbiArnie") + + license("Artistic-1.0-Perl OR GPL-1.0-or-later") + + version("1.03", sha256="eaab1c5c87575a7826089304ab1f8ffa7f18e6cd8b3937623e998e865ec1e746") + + depends_on("perl@5.0.0:", type=("build", "link", "run", "test")) + + use_modules = ["Sort::Naturally"]