-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.py
More file actions
82 lines (69 loc) · 1.82 KB
/
package.py
File metadata and controls
82 lines (69 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 2023-2025 DreamWorks Animation LLC and Intel Corporation
# SPDX-License-Identifier: Apache-2.0
# -*- coding: utf-8 -*-
import sys
name = 'arras4_core'
@early()
def version():
"""
Increment the build in the version.
"""
_version = '4.10.3'
from rezbuild import earlybind
return earlybind.version(this, _version)
description = 'Arras Core'
authors = ['Dreamworks Animation R&D - JoSE Team',
'psw-jose@dreamworks.com',
'rob.wilson@dreamworks.com']
help = ('For assistance, '
"please contact the folio's owner at: psw-jose@dreamworks.com")
variants = [
[ # variant 0
'os-rocky-9',
'refplat-vfx2023.1'
],
[ # variant 1
'os-rocky-9',
'refplat-vfx2024.0'
],
[ # variant 2
'os-rocky-9',
'refplat-vfx2025.0'
],
[ # variant 3
'os-rocky-9',
'refplat-houdini21.0'
],
[ # variant 4
'os-rocky-9',
'refplat-vfx2022.0'
],
]
private_build_requires = [
'cmake_modules-1.1',
'cppunit',
'gcc-6.3.x|9.3.x|11.x'
]
def commands():
prependenv('CMAKE_MODULE_PATH', '{root}/lib64/cmake')
prependenv('CMAKE_PREFIX_PATH', '{root}')
prependenv('LD_LIBRARY_PATH', '{root}/lib64')
prependenv('PATH', '{root}/bin')
prependenv('ARRAS_SESSION_PATH', '{root}/sessions')
uuid = '2625d822-f8b4-4e3d-8106-007c2b9f42c2'
config_version = 0
@early()
def requires():
# Requirements that apply to both pipeX and job environments
requires = [
'uuid-1.0.0',
'boost',
'curl_no_ldap-7.49.1.x.2',
'jsoncpp-1.9.5.x',
'libmicrohttpd-0.9.71.x.1',
'breakpad-1499'
]
if building:
from rezbuild import earlybind
requires.extend(earlybind.get_compiler(build_variant_requires))
return requires