Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Klaus Noelp
ebrains-spack-builds
Commits
0b3bb263
Commit
0b3bb263
authored
1 year ago
by
Eleni Mathioulaki
Browse files
Options
Downloads
Patches
Plain Diff
copy libvips from upstream
parent
c8ac1a58
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/libvips/package.py
+41
-0
41 additions, 0 deletions
packages/libvips/package.py
with
41 additions
and
0 deletions
packages/libvips/package.py
0 → 100644
+
41
−
0
View file @
0b3bb263
# Copyright 2013-2022 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.package
import
*
class
Libvips
(
AutotoolsPackage
):
"""
libvips is a demand-driven, horizontally threaded image processing
library. Compared to similar libraries, libvips runs quickly and uses
little memory.
"""
homepage
=
"
https://libvips.github.io/libvips/
"
url
=
"
https://github.com/libvips/libvips/releases/download/v8.9.0/vips-8.9.0.tar.gz
"
git
=
"
https://github.com/libvips/libvips.git
"
version
(
"
8.10.5
"
,
sha256
=
"
a4eef2f5334ab6dbf133cd3c6d6394d5bdb3e76d5ea4d578b02e1bc3d9e1cfd8
"
)
version
(
"
8.9.1
"
,
sha256
=
"
45633798877839005016c9d3494e98dee065f5cb9e20f4552d3b315b8e8bce91
"
)
version
(
"
8.9.0
"
,
sha256
=
"
97334a5e70aff343d2587f23cb8068fc846a58cd937c89a446142ccf00ea0349
"
)
variant
(
"
fftw
"
,
default
=
True
,
description
=
"
Uses FFTW3 for fourier transforms.
"
)
variant
(
"
jpeg
"
,
default
=
False
,
description
=
"
Enable JPEG support
"
)
variant
(
"
tiff
"
,
default
=
False
,
description
=
"
Enable TIFF support
"
)
variant
(
"
png
"
,
default
=
False
,
description
=
"
Enable pngfile support
"
)
variant
(
"
poppler
"
,
default
=
False
,
description
=
"
Enable PDF rendering via poppler
"
)
# TODO: Add more variants!
depends_on
(
"
glib
"
)
depends_on
(
"
expat
"
)
depends_on
(
"
fftw
"
,
when
=
"
+fftw
"
)
depends_on
(
"
libjpeg
"
,
when
=
"
+jpeg
"
)
depends_on
(
"
libtiff
"
,
when
=
"
+tiff
"
)
depends_on
(
"
libpng
"
,
when
=
"
+png
"
)
depends_on
(
"
poppler
"
,
when
=
"
+poppler
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment