
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
26 lines
1.1 KiB
Python
26 lines
1.1 KiB
Python
# Copyright 2013-2021 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 Libunistring(AutotoolsPackage, GNUMirrorPackage):
|
|
"""This library provides functions for manipulating Unicode strings
|
|
and for manipulating C strings according to the Unicode standard."""
|
|
|
|
homepage = "https://www.gnu.org/software/libunistring/"
|
|
gnu_mirror_path = "libunistring/libunistring-0.9.10.tar.xz"
|
|
|
|
version('0.9.10', sha256='eb8fb2c3e4b6e2d336608377050892b54c3c983b646c561836550863003c05d7')
|
|
version('0.9.9', sha256='a4d993ecfce16cf503ff7579f5da64619cee66226fb3b998dafb706190d9a833')
|
|
version('0.9.8', sha256='7b9338cf52706facb2e18587dceda2fbc4a2a3519efa1e15a3f2a68193942f80')
|
|
version('0.9.7', sha256='2e3764512aaf2ce598af5a38818c0ea23dedf1ff5460070d1b6cee5c3336e797')
|
|
version('0.9.6', sha256='2df42eae46743e3f91201bf5c100041540a7704e8b9abfd57c972b2d544de41b')
|
|
|
|
depends_on('iconv')
|
|
|
|
# glibc 2.28+ removed libio.h and thus _IO_ftrylockfile
|
|
patch('removed_libio.patch', when='@:0.9.9')
|