summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gdal
AgeCommit message (Collapse)AuthorFilesLines
2023-12-27Initial License CheckinAiden Grossman1-0/+2
This patch adds license information for about 5,300 packages from automated sources. The license information was obtained from Alpine Linux and PyPI and processed using tooling available in https://github.com/boomanaiden154/spack-license-utils. The license field was added in after all other directives in an automated fashion. Note that while this license information is probably fairly accurate, it is not guaranteed to be accurate. In addition some of the license strings from Alpine Linux might not be valid SPDX license strings. Invalid SPDX identifiers can be picked up and fixed once we have validation/parsing infrastructure in place for the solver, and issues can be fixed as they come up.
2023-12-22GDAL: add v3.8.2 (#41795)Adam J. Stewart1-0/+1
2023-12-19GDAL: Ensure a spack libproj is used instead of a system libproj (#41785)Chris Marsh1-0/+8
* Ensure a spack libproj is used instead of a system libproj when libproj < 8. spack/spack/issues/41299 * Fix style as per ci-bot * Fix style as per ci-bot * Ensure 3.5:3.8. Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2023-11-30GDAL: add v3.8.1 (#41365)Adam J. Stewart1-0/+1
2023-11-14GDAL: add v3.8.0 (#41047)Adam J. Stewart1-8/+15
2023-11-03GDAL: add v3.7.3 (#40865)Adam J. Stewart1-0/+1
2023-09-13GDAL: add v3.7.2 (#39979)Adam J. Stewart1-0/+1
2023-08-11GDAL: fix supported versions of HDF5 (#39378)Adam J. Stewart1-1/+4
2023-08-09zlib-api: new virtual with zlib/zlib-ng as providers (#37372)Harmen Stoppels1-2/+6
Introduces a new virtual zlib-api, which replaces zlib in most packages. This allows users to switch to zlib-ng by default for better performance.
2023-07-14GDAL: add v3.7.1 (#38884)Adam J. Stewart1-0/+1
2023-05-12GDAL: add v3.7.0 (#37598)Adam J. Stewart1-1/+5
2023-05-02libintl, iconv, gettext: account for libc provider and externals (#35450)Chris Green1-2/+6
* libiconv can be provided by libc, so update packages which depend on libiconv to require the iconv virtual instead * Many packages need special consideration when locating iconv depending on whether it is provided by libc (no prefix provided) or the libiconv package (in that case we want to provide a prefix) * It was also noticed that when an iconv external was provided, that there was interference with linking (this should generally be handled by Spack's compiler wrappers and bears further investigation) * Like iconv, libintl can be provided by libc or another package, namely gettext. It is not converted to a provider like libiconv because it provides additional routines. The logic is similar to that of iconv but instead of checking the provider, we check whether the gettext installation includes libintl.
2023-04-21GDAL: add v3.6.4 (#37087)Adam J. Stewart1-0/+1
2023-03-18cmake build system: make "generator" a variant (#35552)Massimiliano Culpo1-3/+1
2023-03-15GDAL: add v3.6.3 (#36097)Adam J. Stewart1-0/+1
2023-02-16Style: black 23, skip magic trailing comma (#35351)Adam J. Stewart1-3/+1
* Style: black 23, skip magic trailing commas * isort should use same line length as black * Fix unused import * Update version of black used in CI * Update new packages * Update new packages
2023-02-01Use the `maintainers` directive in all packages (#35201)Massimiliano Culpo1-1/+1
2023-01-18license year bump (#34921)Harmen Stoppels1-1/+1
* license bump year * fix black issues of modified files * mypy * fix 2021 -> 2023
2023-01-07GDAL: add v3.6.2 (#34823)Adam J. Stewart1-0/+1
2022-12-16GDAL: add v3.6.1 (#34556)Adam J. Stewart1-0/+1
2022-11-13GDAL: add v3.6.0 (#33856)Adam J. Stewart1-4/+13
* GDAL: add v3.6.0 * Explicitly control BASISU * More reasonable variant defaults
2022-10-31GDAL: add v3.5.3 (#33623)Adam J. Stewart1-0/+1
2022-10-27GDAL: multi-build system support (#33566)Adam J. Stewart1-56/+61
2022-09-13GDAL: add v3.5.2 (#32614)Adam J. Stewart1-0/+1
2022-09-12GDAL: fix typo (#32524)Adam J. Stewart1-1/+1
2022-08-22crunch: add new package (#31980)Adam J. Stewart1-3/+2
2022-08-10libgta: add new package (#31981)Adam J. Stewart1-2/+1
2022-08-10libjxl: add new package (#31983)Adam J. Stewart1-2/+1
2022-08-08libheif: add new package (#31982)Adam J. Stewart1-2/+1
2022-07-31black: reformat entire repository with blackTodd Gamblin1-522/+550
2022-07-25gdal: fixing typo for libxml2 (#31734)snehring1-1/+1
2022-07-13GDAL: CMake support and dependency variants (#31197)Adam J. Stewart1-434/+514
Add support for CMake builds while preserving autotools support for older versions of GDAL * Add GDAL 3.5.0 * Remove GDAL 1 * Add support for new CMake build system * Change defaults to build all recommended dependencies * Simplify Autotools flag handling * Determine version range for drivers
2022-05-28refactor: packages import `spack.package` explicitly (#30404)Tom Scogland1-0/+1
Explicitly import package utilities in all packages, and corresponding fallout. This includes: * rename `spack.package` to `spack.package_base` * rename `spack.pkgkit` to `spack.package` * update all packages in builtin, builtin_mock and tutorials to include `from spack.package import *` * update spack style * ensure packages include the import * automatically add the new import and remove any/all imports of `spack` and `spack.pkgkit` from packages when using `--fix` * add support for type-checking packages with mypy when SPACK_MYPY_CHECK_PACKAGES is set in the environment * fix all type checking errors in packages in spack upstream * update spack create to include the new imports * update spack repo to inject the new import, injection persists to allow for a deprecation period Original message below: As requested @adamjstewart, update all packages to use pkgkit. I ended up using isort to do this, so repro is easy: ```console $ isort -a 'from spack.pkgkit import *' --rm 'spack' ./var/spack/repos/builtin/packages/*/package.py $ spack style --fix ``` There were several line spacing fixups caused either by space manipulation in isort or by packages that haven't been touched since we added requirements, but there are no functional changes in here. * [x] add config to isort to make sure this is maintained going forward
2022-05-17GDAL: deprecate 2.X (#30668)Adam J. Stewart1-11/+11
2022-05-04GDAL: add v3.4.3 (#30474)Adam J. Stewart1-0/+1
2022-05-02package/gdal fix config issue with +pg for newer gdal (#30421)Sinan1-2/+5
* package/gdal fix config issue with +pg for newer gdal * fix version logic * improve style Co-authored-by: sbulut <sbulut@3vgeomatics.com>
2022-04-29gdal: changing behavior of configure for +xml2 with 3.0+ (#30405)snehring1-2/+5
* gdal: changing behavior of configure for +xml2 with 3.0+ * Update var/spack/repos/builtin/packages/gdal/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2022-04-25GDAL: don't add system paths to env vars (#30229)Adam J. Stewart1-1/+3
2022-03-23Use stable URLs and `?full_index=1` for all github patches (#29239)Adam J. Stewart1-2/+2
The number of commit characters in patch files fetched from GitHub can change, so we should use `full_index=1` to enforce full commit hashes (and a stable patch `sha256`). Similarly, URLs for branches like `master` don't give us stable patch files, because branches are moving targets. Use specific tags or commits for those. - [x] update all github patch URLs to use `full_index=1` - [x] don't use `master` or other branches for patches - [x] add an audit check and a test for `?full_index=1` Co-authored-by: Todd Gamblin <tgamblin@llnl.gov>
2022-03-19GDAL: add v3.4.2 (#29496)Adam J. Stewart1-3/+6
2022-01-14Update copyright year to 2022Todd Gamblin1-1/+1
2022-01-06GDAL: add new version (#28238)Adam J. Stewart1-9/+15
* GDAL: add new version * Use conflicts for PCRE
2021-12-29Ensure some version known to Spack can satisfy constraints in `depends_on` ↵Massimiliano Culpo1-0/+1
(#28131) Add a new check to `spack audit` to scan and verify that version constraints may be satisfied Modifications: - [x] Add a new check to `spack audit` to scan and verify that version constraints may be satisfied by some version declared in the built-in repository - [x] Fix issues found by CI Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2021-12-17Specify dependencies to py-setuptools@:57.99 for packages using 2to3 (#27777)haralmha1-1/+2
2021-11-11GDAL: add v3.4.0 (#27288)Adam J. Stewart1-31/+31
2021-10-29GDAL package: add version 3.3.3 (#27071)Adam J. Stewart1-0/+1
2021-10-19Libtiff: improve compression support (#26809)Adam J. Stewart1-7/+0
2021-10-03Remove .99 from version ranges (#26422)Harmen Stoppels1-5/+5
In most cases, .99 can be omitted thanks to #26402 .
2021-09-25GDAL: fix build of Java bindings (#26244)Adam J. Stewart1-2/+4
2021-09-07GDAL package: add version 3.3.2 (#25820)Adam J. Stewart1-0/+1