
* 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.
18 lines
625 B
Python
18 lines
625 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 Libexif(AutotoolsPackage, SourceforgePackage):
|
|
"""A library to parse an EXIF file and read the data from those tags"""
|
|
|
|
homepage = "https://sourceforge.net/projects/libexif"
|
|
sourceforge_mirror_path = "libexif/libexif-0.6.21.tar.bz2"
|
|
|
|
maintainers = ['TheQueasle']
|
|
|
|
version('0.6.21', sha256='16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a')
|
|
depends_on('glib')
|