perl-sort-naturally: new package (#46886)

* perl-sort-naturally: new package
   Adds Sort::Naturally
* Use new mechanism for testing
* Make black happier
This commit is contained in:
Arne Becker 2024-10-10 08:05:11 +01:00 committed by GitHub
parent afc01f9570
commit ce0910a82c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"]