Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions easybuild/easyconfigs/l/libyaml/libyaml-0.1.6-GCCcore-6.4.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
##
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild
#
# Copyright:: Copyright 2012-2014 Uni.Lu/LCSB, NTUA
# Authors:: Nils Christian <nils.christian@uni.lu>
# License:: MIT/GPL
# $Id$
##

easyblock = 'ConfigureMake'

name = 'libyaml'
version = '0.1.6'

homepage = 'http://pyyaml.org/wiki/LibYAML'

description = """LibYAML is a YAML parser and emitter written in C."""

toolchain = {'name': 'GCCcore', 'version': '6.4.0'}

source_urls = ['http://pyyaml.org/download/libyaml/']
sources = ['yaml-%(version)s.tar.gz']
checksums = ['7da6971b4bd08a986dd2a61353bc422362bd0edcc67d7ebaac68c95f74182749']

builddependencies = [
('binutils', '2.28'),
]

sanity_check_paths = {
'files': ["include/yaml.h", "lib/libyaml.a", "lib/libyaml.%s" % SHLIB_EXT],
'dirs': ["lib/pkgconfig"]
}

moduleclass = 'lib'
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
easyblock = 'PythonPackage'

name = 'PyYAML'
version = '3.12'
pyver = '2.7.13'
pyshortver = '2.7'
pysubver = '-bare'
versionsuffix = '-Python-%s%s' % (pyver, pysubver)

homepage = 'https://pypi.python.org/pypi/PyYAML/'

description = """
PyYAML is a YAML parser and emitter for the Python programming language.
"""

toolchain = {'name': 'GCCcore', 'version': '6.4.0'}

source_urls = [PYPI_SOURCE]
sources = [SOURCE_TAR_GZ]
checksums = ['592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab']

builddependencies = [
('binutils', '2.28'),
('Python', pyver, pysubver),
]

dependencies = [
('libyaml', '0.1.6'),
]

options = {'modulename': 'yaml'}

sanity_check_paths = {
'files': [],
'dirs': ['lib/python%s/site-packages' % pyshortver],
}

moduleclass = 'lib'