form: use version tarballs, fix and enable gmp and zlib variants (#26425)

Co-authored-by: Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com>
Co-authored-by: iarspider <iarspider@gmail.com>
This commit is contained in:
Takahiro Ueda 2021-10-03 17:45:33 +09:00 committed by GitHub
parent d4b3724557
commit d603f4519d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,22 +10,19 @@ class Form(AutotoolsPackage):
"""FORM is a Symbolic Manipulation System."""
homepage = "https://www.nikhef.nl/~form/"
url = "https://github.com/vermaseren/form/archive/v4.2.1.tar.gz"
maintainers = ['iarspider']
url = "https://github.com/vermaseren/form/releases/download/v4.2.1/form-4.2.1.tar.gz"
maintainers = ['iarspider', 'tueda']
version('4.2.1', sha256='6f32c7470d00e8ab6934dc352f5a78e29290146a00e5775f8cd5fef7810bbbb8')
version('4.1-20131025', sha256='caece2c6e605ccf32eb3612c4ed5c9257a7a62824ad219c5e46b6d00066f1ba6')
version('4.2.1', sha256='f2722d6d4ccb034e01cf786d55342e1c21ff55b182a4825adf05d50702ab1a28')
version('4.1-20131025', sha256='fb3470937d66ed5cb1af896b15058836d2c805d767adac1b9073ed2df731cbe9',
url='https://github.com/vermaseren/form/releases/download/v4.1-20131025/form-4.1.tar.gz')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
depends_on('gmp', type='link', when='+zlib')
depends_on('zlib', type='link', when='+gmp')
depends_on('gmp', type='link', when='+gmp')
depends_on('zlib', type='link', when='+zlib')
depends_on('mpi', type='link', when='+parform')
variant('gmp', default=False, description='Use GMP for long integer arithmetic')
variant('zlib', default=False, description='Use zlib for compression')
variant('gmp', default=True, description='Use GMP for long integer arithmetic')
variant('zlib', default=True, description='Use zlib for compression')
variant('scalar', default=True, description='Build scalar version (form)')
variant('threaded', default=True, description='Build threaded version (tform)')
variant('parform', default=False, description='Build parallel version using MPI (parform)')