modified: .gitlab-ci.yml

new file:   c/Coreutils/Coreutils-8.30-GCCcore-8.1.0.eb
This commit is contained in:
Lukáš Krupčík 2018-10-02 15:34:35 +02:00
parent f66264b502
commit 5f9eb7876e
2 changed files with 27 additions and 0 deletions

View File

@ -25,5 +25,6 @@ python_check:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- which pip || apt install python-pip
- which autopep8 || pip install autopep8
- find . -type f -name "*.eb" -exec autopep8 {} +

View File

@ -0,0 +1,26 @@
# IT4Innovations
easyblock = 'ConfigureMake'
name = "Coreutils"
version = "8.30"
homepage = 'http://www.gnu.org/software/coreutils/'
description = """The GNU Core Utilities are the basic file, shell and text manipulation utilities of the
GNU operating system. These are the core utilities which are expected to exist on every operating system.
"""
toolchain = {'name': 'GCCcore', 'version': '8.1.0'}
toolchainopts = {'optarch': True, 'pic': True}
source_urls = [GNU_SOURCE]
sources = [SOURCELOWER_TAR_XZ]
builddependencies = [('binutils', '2.30')]
sanity_check_paths = {
'files': ['bin/sort', 'bin/echo', 'bin/du', 'bin/date', 'bin/true'],
'dirs': []
}
moduleclass = 'tools'