
Most of these are perl packages that need to point to the meta docs site, and then a fair amount of http addresses that need to be https, and then the rest are usually documentation sites that no longer exist or were otherwise changes Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
20 lines
891 B
Python
20 lines
891 B
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)
|
|
|
|
|
|
class PyRuamelOrdereddict(PythonPackage):
|
|
"""This is an implementation of an ordered dictionary with Key Insertion
|
|
Order (KIO: updates of values do not affect the position of the key), Key
|
|
Value Insertion Order (KVIO, an existing key's position is removed and put
|
|
at the back). The standard library module OrderedDict, implemented later,
|
|
implements a subset of ordereddict functionality."""
|
|
|
|
homepage = "https://sourceforge.net/projects/ruamel-ordereddict/"
|
|
pypi = "ruamel.ordereddict/ruamel.ordereddict-0.4.14.tar.gz"
|
|
|
|
version('0.4.14', sha256='281051d26eb2b18ef3d920e1e260716a52bd058a6b1a2f324102fc6a15cb8d4a')
|
|
|
|
depends_on('py-setuptools', type='build')
|