summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/cctools
AgeCommit message (Collapse)AuthorFilesLines
2020-05-05cctools to 7.1.5 (#16450)Benjamin Tovar1-2/+3
* change homepage to readthedocs * update cctools version to 7.1.5 * change http to https
2020-04-27update cctools to version 7.1.3 (#16324)Benjamin Tovar1-1/+2
2020-04-07updates CCTools to version 7.1.2 (#15923)Benjamin Tovar1-1/+2
2020-03-18Cctools 7.1.0 (#15506)Benjamin Tovar1-12/+41
* update to 7.1.0 * adds gettext as dependency (needed to link with python) * disable python2 or python3 as needed
2019-12-30copyright: update copyright dates for 2020 (#14328)Todd Gamblin1-1/+1
2019-11-25cctools: fix python related error. (#13802)Toyohisa Kameyama3-3/+144
* cctools: fix python related error. * patch bugfix.
2019-10-03Update cctools to v7.0.18 (#13037)George Hartzell1-1/+2
- add version/checksum info for v7.0.18 - update checksum for v6.1.1 to use sha256, while I have the editor open...
2019-09-20targets: adjust packages to use new specific targets semanticsMassimiliano Culpo1-1/+1
Seamless translation from 'target=<generic>' to either - target.family == <generic> (in methods) - 'target=<generic>:' (in directives) Also updated docs to show ranges in directives.
2019-09-04cctools: fixed to build on ARM. (#11862)Toyohisa Kameyama2-0/+29
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-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-07Bug/cctools syscall (#4440)George Hartzell1-0/+12
* Handle missing defn of __NR_memfd_create Generally SYS_foo is defined to __NR_foo (in sys/syscall.h) which is then defined to a syscall number (in asm/unistd_64.h). Certain CentOS systems have SYS_memfd_create defined to __NR_memfd_create but are missing the second definition. This is a belt and suspenders solution to the problem. See [this post][syscall] for a nice general description of how these parts fit together. [syscall]: https://www.uninformativ.de/blog/postings/2017-02-11/0/POSTING-en.html * Avoid flake8 warning
2017-06-05Add package for cctools (#4417)George Hartzell1-0/+55
* Add package for cctools Add a package for cctools. Requires the recently submitted "useshrplib" support in Perl (or some other mechanism to enable -fPIC for perl). * Delete extraneous import * Perl's shared variant changed, adapt... The name of the variant that perl uses to build a shared lib changed and it now defaults to True. Use the new name and continue to be insistent about using the shared variant. * Flake8 cleanup