[root] add dataframe cmake option (#17962)

* [root] add dataframe cmake option

@chissg @HadrienG2  @drbenmorgan


This has been a separate cmake option starting v6-19 I believe: 31292b9082
It should default to true -- not sure why, but this recipe sets it to off.

I could add a variant too, but since it has become an integral part of root and doesn't introduce extra dependencies, I'd propose to just set it to true like I do here.

* Update package.py
This commit is contained in:
vvolkl 2020-08-15 17:13:11 +02:00 committed by GitHub
parent 395b478b1b
commit 46fb456b54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ class Root(CMakePackage):
homepage = "https://root.cern.ch"
url = "https://root.cern/download/root_v6.16.00.source.tar.gz"
maintainers = ['chissg', 'HadrienG2', 'drbenmorgan']
maintainers = ['chissg', 'HadrienG2', 'drbenmorgan', 'vvolkl']
# ###################### Versions ##########################
@ -347,6 +347,7 @@ def cmake_args(self):
['chirp', False],
['cling', True],
['cocoa', 'aqua'],
['dataframe', True],
['davix'],
['dcache', False],
['fftw3', 'fftw'],