
* SourceForge: Mirror Mixin Add a mixing class for direct `CNAME`s to sourceforge mirrors. Since the main gateway servers are often down, this could reduce timeouts and fetch errors for sourceforge.net hosted software. * SourceForge: unspectacular mirror replacement add mirrors to all sourceforge packages with trivial download logic. tested fetch of latest version of each of these packages with various mirrors before committing. * SourceForge: xz the author homepage is chronocially overrun and this is the offical upload with many mirrors.
22 lines
692 B
Python
22 lines
692 B
Python
# Copyright 2013-2020 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 Giflib(AutotoolsPackage, SourceforgePackage):
|
|
"""The GIFLIB project maintains the giflib service library, which has
|
|
been pulling images out of GIFs since 1989."""
|
|
|
|
homepage = "http://giflib.sourceforge.net/"
|
|
sourceforge_mirror_path = "giflib/giflib-5.1.4.tar.bz2"
|
|
|
|
version('5.1.4', sha256='df27ec3ff24671f80b29e6ab1c4971059c14ac3db95406884fc26574631ba8d5')
|
|
|
|
patch('bsd-head.patch')
|
|
|
|
def check(self):
|
|
make('check', parallel=False)
|