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
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ dependencies = [
('pkg-config', '0.29.2'),
]

# Due to poetry doing the actual build of pkgconfig we need use_pip=False
use_pip = False
use_pip = True
download_dep_fail = True
sanity_pip_check = True

moduleclass = 'devel'
Original file line number Diff line number Diff line change
@@ -1,32 +1,26 @@
easyblock = 'PythonBundle'
easyblock = 'PythonPackage'

name = 'pkgconfig'
version = '1.5.1'
versionsuffix = '-python'

homepage = 'http://github.com/matze/pkgconfig'
homepage = 'https://github.com/matze/pkgconfig'
description = """pkgconfig is a Python module to interface with the pkg-config command line tool"""

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

sources = ['%(name)s-%(version)s-py2.py3-none-any.whl']
checksums = ['cddf2d7ecadb272178a942eb852a9dee46bda2adcc36c3416b0fef47a4ed9f38']
unpack_sources = False

multi_deps = {'Python': ['3.7.2', '2.7.15']}

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

dependencies = [('pkg-config', '0.29.2')]

# Due to poetry doing the actual build of pkgconfig we need use_pip=False
use_pip = False

exts_list = [
('poetry', '0.12.12', {
'source_urls': ['https://pypi.python.org/packages/source/p/poetry/'],
'checksums': ['726420e7519e069d9245ebac3f1c367b7ef9aca420c6911a9261772c7c814a2d'],
}),
(name, version, {
'source_urls': ['https://pypi.python.org/packages/source/p/pkgconfig/'],
'checksums': ['97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f'],
}),
]
use_pip = True
download_dep_fail = True
sanity_pip_check = True

moduleclass = 'devel'
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
easyblock = 'PythonBundle'
easyblock = 'PythonPackage'

name = 'pkgconfig'
version = '1.5.1'
Expand All @@ -9,25 +9,19 @@ description = """pkgconfig is a Python module to interface with the pkg-config c

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

sources = ['%(name)s-%(version)s-py2.py3-none-any.whl']
checksums = ['cddf2d7ecadb272178a942eb852a9dee46bda2adcc36c3416b0fef47a4ed9f38']
unpack_sources = False

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

dependencies = [
('Python', '3.7.4'),
('pkg-config', '0.29.2'),
]

# Due to poetry doing the actual build of pkgconfig we need use_pip=False
use_pip = False

exts_list = [
('poetry', '0.12.17', {
'source_urls': ['https://pypi.python.org/packages/source/p/poetry/'],
'checksums': ['6e535de38df7e6ab46ff8d197f53632b071675287d1477efc7bf4a5c4c63bc3f'],
}),
(name, version, {
'source_urls': ['https://pypi.python.org/packages/source/p/pkgconfig/'],
'checksums': ['97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f'],
}),
]
use_pip = True
download_dep_fail = True
sanity_pip_check = True

moduleclass = 'devel'
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
easyblock = 'PythonBundle'
easyblock = 'PythonPackage'

name = 'pkgconfig'
version = '1.5.1'
Expand All @@ -9,26 +9,21 @@ description = """pkgconfig is a Python module to interface with the pkg-config c

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

builddependencies = [('binutils', '2.34')]
sources = [SOURCE_TAR_GZ]
checksums = ['97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f']

builddependencies = [
('binutils', '2.34'),
('poetry', '1.0.9', versionsuffix),
]

dependencies = [
('Python', '3.8.2'),
('pkg-config', '0.29.2'),
]

# Due to poetry doing the actual build of pkgconfig we need use_pip=False
use_pip = False

exts_list = [
# Not updating this since it is basically a build dep
('poetry', '0.12.17', {
'source_urls': ['https://pypi.python.org/packages/source/p/poetry/'],
'checksums': ['6e535de38df7e6ab46ff8d197f53632b071675287d1477efc7bf4a5c4c63bc3f'],
}),
(name, version, {
'source_urls': ['https://pypi.python.org/packages/source/p/pkgconfig/'],
'checksums': ['97bfe3d981bab675d5ea3ef259045d7919c93897db7d3b59d4e8593cba8d354f'],
}),
]
use_pip = True
download_dep_fail = True
sanity_pip_check = True

moduleclass = 'devel'