summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/gnutls
AgeCommit message (Collapse)AuthorFilesLines
2019-11-29Mass conversion of setup_(dependent_)?environment (#13924)Adam J. Stewart1-4/+2
* Mass conversion of setup_(dependent_)?environment * prefix -> self.prefix
2019-10-12checksums: use sha256 checksums everywhereTodd Gamblin1-4/+4
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
2019-06-25gnutls: workaround guile build error on macos (#11751)Chuck Atkins1-1/+4
2019-06-05set GUILE env var when building gnutls, fixes issue #11601 (#11607)Gregory Lee1-0/+7
2019-05-28GnuTLS by default depends on Guile, added a guile variant. Updated GnuTLS to ↵mathsen1-0/+8
3.6.8 (#11571)
2019-05-26Add a new version for gnutls. (#11546)健美猞猁1-0/+2
* Update URL and add a new version. * Fix flake8 issues. * Remove newly-added duplicate url_for_version.
2019-05-15CMake package: add dependencies (#11257)Leonhard Reichenbach1-1/+3
Add dependencies to CMake and GnuTLS which would otherwise be picked up from the system * Add gnutls as explicit dependency of CMake * Add new package libidn2 as explicit dependency for gnutls
2019-01-01copyright: update license headers for 2013-2019 copyright.Todd Gamblin1-1/+1
2018-10-17relicense: replace LGPL headers with Apache-2.0/MIT SPDX headersTodd Gamblin1-23/+4
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
2018-03-24Update copyright on LLNL files for 2018. (#7592)Todd Gamblin1-1/+1
2017-11-23Introduce virtual dependency pkgconfig (#5198)Michael Kuhn1-1/+1
There are two providers, pkgconf and pkg-config, with the former being the default provider.
2017-11-04Replace github.com/llnl/spack with github.com/spack/spack (#6142)Todd Gamblin1-1/+1
We moved to a new GitHub org! Now make the code and docs reflect that.
2017-09-06Update copyright notices for 2017 (#5295)Michael Kuhn1-1/+1
2017-06-24Make LICENSE recognizable by GitHub. (#4598)Todd Gamblin1-1/+1
2017-06-19Various updates to wget and dependencies (#4116)Adam J. Stewart1-13/+41
* Various updates to wget and dependencies * Add newer version of gnutls
2017-03-30Fix url fetching for GnuTLS (#3631)Adam J. Stewart1-5/+9
2017-03-29Add version 3.5.9 to package gnutls (#3616)healther1-2/+14
2017-03-27Bugfix/gnutls (#3565)George Hartzell1-1/+5
* Fix nettle dependency GnuTLS requires a nettle from the 2.7 series, won't work with 3.x (so sayeth configure when it crashes...). * Fix configure symlinking GNUmakefile to itself I'm confused about how this ever worked, but.... As configure runs, it does something like this: ``` config.status: linking /home/hartzelg/tmp/spack/var/spack/stage/gnutls-3.3.9-uq2u4ecucncv2l3akran765aystyvkys/gnutls-3.3.9/GNUmakefile to GNUmakefile ``` and since that is the cwd the build crashes with: ``` ==> 'make' '-j28' make: GNUmakefile: Too many levels of symbolic links make: stat: GNUmakefile: Too many levels of symbolic links make: *** No rule to make target `GNUmakefile'. Stop. ``` Since the comment in the configure script points out that the GNUmakefile is "only for the maintainer" I've just commented out the bit that leads to the symlinking. Builds for me on CentOS 7. (I do have a recent-ish set of auto-* things in my patch via linuxbrew) * Wordsmith * Fix symbolic link problem properly Autotools magic. See #3565 for the details. * Flake8 cleanup * Add some headroom on the version number constraint We really want < 3.0 but there's not a good way to express it. We'd like to avoid having to update the file if they release 2.7.2. This seems like a good compromise.
2017-01-31Replace FTP retrieval URLs with HTTP/HTTPS serving packages with identical ↵健美猫1-1/+1
checksum. (#2958)
2017-01-18Massive conversion from Package to AutotoolsPackage (#2845)Adam J. Stewart1-6/+1
* Massive conversion from Package to AutotoolsPackage * Forgot to convert p4est to AutotoolsPackage * Fix typo * Fix broken link in docs
2016-08-10Spack packages now PEP8 compliant.Todd Gamblin1-0/+1
2016-05-11Correct LLNL LGPL license template for clarity.Todd Gamblin1-0/+24
2015-11-26New, cleaner package repository structure.Todd Gamblin1-0/+22
Package repositories now look like this: top-level-dir/ repo.yaml packages/ libelf/ package.py mpich/ package.py ... This leaves room at the top level for additional metadata, source, per-repo configs, indexes, etc., and it makes it easy to see that something is a spack repo (just look for repo.yaml and packages).