Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
sft
lcgcmake
Commits
c56e042d
Commit
c56e042d
authored
Dec 04, 2019
by
Pere Mato Vila
Browse files
Added uproot and dependencies
parent
967a0d72
Pipeline
#1272051
passed with stage
in 5 minutes and 18 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
cmake/toolchain/heptools-dev-base.cmake
View file @
c56e042d
...
...
@@ -100,6 +100,7 @@ LCG_external_package(attrs 19.1.0
LCG_external_package
(
autoconf 2.69
)
LCG_external_package
(
automake 1.16.1
)
LCG_external_package
(
autopep8 1.4.4
)
LCG_external_package
(
awkward 0.12.17
)
LCG_external_package
(
backcall 0.1.0
)
LCG_external_package
(
backports 1.0.0
)
LCG_external_package
(
backports.functools_lru_cache 1.5
)
...
...
@@ -499,6 +500,8 @@ LCG_external_package(tzlocal 2.0.0
LCG_external_package
(
umesimd 0.8.1
)
LCG_external_package
(
uncertainties 3.0.3
)
LCG_external_package
(
unigen 2.2
)
LCG_external_package
(
uproot 3.10.12
)
LCG_external_package
(
uproot_methods 0.7.1
)
LCG_external_package
(
urllib3 1.25.3
)
LCG_external_package
(
uuid 1.42
)
if
(
NOT
${
LCG_OS
}
STREQUAL mac
)
...
...
documentation/packages.json
View file @
c56e042d
...
...
@@ -2943,6 +2943,21 @@
"license"
:
"MIT"
,
"name"
:
"autopep8"
},
{
"category"
:
"Tool"
,
"contacts"
:
[
{
"email"
:
"jpivarski@gmail.com"
,
"name"
:
"Jim Pivarski"
}
],
"description"
:
"Manipulate arrays of complex data structures as easily as Numpy"
,
"fullname"
:
"awkward-arraypy"
,
"homepage"
:
"https://github.com/scikit-hep/awkward-array"
,
"language"
:
"Python"
,
"license"
:
"BSD"
,
"name"
:
"awkward"
},
{
"category"
:
"Other"
,
"contacts"
:
[],
...
...
@@ -7235,6 +7250,36 @@
"license"
:
"BSD"
,
"name"
:
"unigen"
},
{
"category"
:
"Tool"
,
"contacts"
:
[
{
"email"
:
"jpivarski@gmail.com"
,
"name"
:
"Jim Pivarski"
}
],
"description"
:
"ROOT I/O in pure Python and Numpy"
,
"fullname"
:
"uproot"
,
"homepage"
:
"https://github.com/scikit-hep/uproot"
,
"language"
:
"Python"
,
"license"
:
"BSD"
,
"name"
:
"uproot"
},
{
"category"
:
"Tool"
,
"contacts"
:
[
{
"email"
:
"jpivarski@gmail.com"
,
"name"
:
"Jim Pivarski"
}
],
"description"
:
"Pythonic mix-ins for ROOT classes"
,
"fullname"
:
"uproot-methods"
,
"homepage"
:
"https://github.com/scikit-hep/uproot-methods"
,
"language"
:
"Python"
,
"license"
:
"BSD"
,
"name"
:
"uproot-methods"
},
{
"category"
:
"Tool"
,
"contacts"
:
[],
...
...
pyexternals/CMakeLists.txt
View file @
c56e042d
...
...
@@ -3797,6 +3797,7 @@ LCGPackage_Add(
DEPENDS Python setuptools pycodestyle
)
#---imageio-----------------------------------------------------------------------------
LCGPackage_Add
(
imageio
URL
${
GenURL
}
/imageio-
${
imageio_native_version
}
.tar.gz
...
...
@@ -3809,6 +3810,7 @@ LCGPackage_Add(
DEPENDS Python setuptools pillow numpy
)
#---pywt-------------------------------------------------------------------------------
LCGPackage_Add
(
pywt
URL
${
GenURL
}
/pywt-
${
pywt_native_version
}
.tar.gz
...
...
@@ -3821,6 +3823,7 @@ LCGPackage_Add(
DEPENDS Python setuptools pillow numpy cython
)
#---scikitimage------------------------------------------------------------------------
LCGPackage_Add
(
scikitimage
URL
${
GenURL
}
/scikit-image-
${
scikitimage_native_version
}
.tar.gz
...
...
@@ -3833,6 +3836,43 @@ LCGPackage_Add(
DEPENDS Python setuptools pillow numpy cython scipy matplotlib imageio networkx pywt
)
#---awkward----------------------------------------------------------------------------
LCGPackage_Add
(
awkward
URL
${
GenURL
}
/awkward-<VERSION>.tar.gz
CONFIGURE_COMMAND <VOID>
BUILD_COMMAND <VOID>
INSTALL_COMMAND
${
MakeSitePackagesDir
}
COMMAND
${
PYTHON
}
setup.py install
${
PySetupOptions
}
COMMAND
${
CMAKE_SOURCE_DIR
}
/pyexternals/Python_postinstall.sh <INSTALL_DIR>
BUILD_IN_SOURCE 1
DEPENDS numpy
)
#---uproot-methods----------------------------------------------------------------------
LCGPackage_Add
(
uproot_methods
URL
${
GenURL
}
/uproot-methods-<VERSION>.tar.gz
CONFIGURE_COMMAND <VOID>
BUILD_COMMAND <VOID>
INSTALL_COMMAND
${
MakeSitePackagesDir
}
COMMAND
${
PYTHON
}
setup.py install
${
PySetupOptions
}
COMMAND
${
CMAKE_SOURCE_DIR
}
/pyexternals/Python_postinstall.sh <INSTALL_DIR>
BUILD_IN_SOURCE 1
DEPENDS numpy
)
#---uproot------------------------------------------------------------------------------
LCGPackage_Add
(
uproot
URL
${
GenURL
}
/uproot-<VERSION>.tar.gz
CONFIGURE_COMMAND <VOID>
BUILD_COMMAND <VOID>
INSTALL_COMMAND
${
MakeSitePackagesDir
}
COMMAND
${
PYTHON
}
setup.py install
${
PySetupOptions
}
COMMAND
${
CMAKE_SOURCE_DIR
}
/pyexternals/Python_postinstall.sh <INSTALL_DIR>
BUILD_IN_SOURCE 1
DEPENDS numpy awkward uproot_methods cachetools
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment