mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-14 02:41:22 +01:00
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
name = 'Python'
|
|
version = '2.7.11'
|
|
versionsuffix = '-bare'
|
|
|
|
homepage = 'http://python.org/'
|
|
description = """Python is a programming language that lets you work more quickly and integrate your systems
|
|
more effectively."""
|
|
|
|
toolchain = {'name': 'GCC', 'version': '4.9.3-2.25'}
|
|
toolchainopts = {'pic': True, 'opt': True, 'optarch': True}
|
|
|
|
source_urls = ['http://www.python.org/ftp/%(namelower)s/%(version)s/']
|
|
sources = [SOURCE_TGZ]
|
|
|
|
# python needs bzip2 to build the bz2 package
|
|
dependencies = [
|
|
('bzip2', '1.0.6'),
|
|
('zlib', '1.2.8'),
|
|
('libreadline', '6.3', '', ('GCCcore', '4.9.3')),
|
|
('ncurses', '6.0', '', ('GCCcore', '4.9.3')),
|
|
('SQLite', '3.9.2'),
|
|
('Tk', '8.6.4', '-no-X11'),
|
|
# ('OpenSSL', '1.0.1q'), # OS dependency should be preferred if the os version is more recent then this version, it's
|
|
# nice to have an up to date openssl for security reasons
|
|
]
|
|
|
|
osdependencies = [('openssl-devel', 'libssl-dev', 'libopenssl-devel')]
|
|
|
|
# bare installation: no extensions included
|
|
exts_list = []
|
|
|
|
moduleclass = 'lang'
|