
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
679 B
Python
20 lines
679 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)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Printproto(AutotoolsPackage, XorgPackage):
|
|
"""Xprint extension to the X11 protocol - a portable, network-transparent
|
|
printing system."""
|
|
|
|
homepage = "https://cgit.freedesktop.org/xorg/proto/printproto"
|
|
xorg_mirror_path = "proto/printproto-1.0.5.tar.gz"
|
|
|
|
version('1.0.5', sha256='e8b6f405fd865f0ea7a3a2908dfbf06622f57f2f91359ec65d13b955e49843fc')
|
|
|
|
depends_on('pkgconfig', type='build')
|
|
depends_on('util-macros', type='build')
|