Python-3.10.8-GCCcore-12.2.0-bare.eb 899 B

1234567891011121314151617181920212223242526272829303132333435
  1. name = 'Python'
  2. version = '3.10.8'
  3. versionsuffix = '-bare'
  4. homepage = 'https://python.org/'
  5. description = """Python is a programming language that lets you work more quickly and integrate your systems
  6. more effectively."""
  7. toolchain = {'name': 'GCCcore', 'version': '12.2.0'}
  8. toolchainopts = {'pic': True}
  9. source_urls = ['https://www.python.org/ftp/%(namelower)s/%(version)s/']
  10. sources = [SOURCE_TGZ]
  11. checksums = ['f400c3fb394b8bef1292f6dc1292c5fadc3533039a5bc0c3e885f3e16738029a']
  12. builddependencies = [
  13. ('UnZip', '6.0'),
  14. ('pkgconf', '1.9.3'),
  15. ]
  16. dependencies = [
  17. ('binutils', '2.39'),
  18. ('bzip2', '1.0.8'), # required for bz2 package in Python stdlib
  19. ('zlib', '1.2.12'),
  20. ('libreadline', '8.2'),
  21. ('ncurses', '6.3'),
  22. ('SQLite', '3.39.4'),
  23. ('XZ', '5.2.7'),
  24. ('libffi', '3.4.4'),
  25. ('OpenSSL', '1.1', '', SYSTEM),
  26. ]
  27. install_pip = True
  28. moduleclass = 'lang'