-
Notifications
You must be signed in to change notification settings - Fork 1
/
pkg.vars.config
105 lines (105 loc) · 3.95 KB
/
pkg.vars.config
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
%%
%% Packaging
%%
{build_envs, "REBAR_PROFILE=package"}.
{scl_prefix, "/opt/onedata"}.
{scl_package, "oz-worker"}.
{package_name, "oz-worker"}.
{package_install_name, "oz_worker"}.
{package_install_user, "oz_worker"}.
{package_runner_user, "root"}.
{package_runner_wait_process, "oz_worker_sup"}.
{package_install_group, "onedata"}.
{package_install_user_desc, "oz_worker user"}.
{package_shortdesc, "oz_worker worker node"}.
{package_desc, "The worker node of onezone cluster, part of onedata project"}.
{package_commands, {list, [[{name, "oz_worker"}]]}}.
{package_patch_dir, "onedata-patches"}.
{bin_or_sbin, "sbin"}.
{license_type, "MIT"}.
{copyright, "2016 ACK CYFRONET AGH"}.
{vendor_name, "onedata"}.
{vendor_url, "https://onedata.org"}.
{vendor_contact_name, "Onedata Package Maintainer"}.
{vendor_contact_email, "[email protected]"}.
{license_full_text,
"Permission is hereby granted, free of charge, to any person\n"
"obtaining a copy of this software and associated documentation\n"
"files (the \"Software\"), to deal in the Software without\n"
"restriction, including without limitation the rights to use, copy,\n"
"modify, merge, publish, distribute, sublicense, and/or sell copies\n"
"of the Software, and to permit persons to whom the Software is\n"
"furnished to do so, subject to the following conditions:\n"
"\n"
"The above copyright notice and this permission notice shall be\n"
"included in all copies or substantial portions of the Software.\n"
"\n"
"THE SOFTWARE IS PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND,\n"
"EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\n"
"MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n"
"NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT\n"
"HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\n"
"WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n"
"FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n"
"OTHER DEALINGS IN THE SOFTWARE."}.
{rpm_requires,
"Requires: %scl_require_package %{scl} folly >= 2021.01.04.00\n"
"Requires: openssl\n"
"Requires: libcouchbase2-libevent\n"}.
{rpm_build_requires,
"BuildRequires: %scl_require_package devtoolset-7 gcc-c++\n"
"BuildRequires: %scl_require_package %{scl} boost-devel >= 1.58.0\n"
"BuildRequires: %scl_require_package %{scl} folly-devel >= 2021.01.04.00\n"
"BuildRequires: %scl_require_package %{scl} fmt-devel >= 7.0.1\n"
"BuildRequires: %scl_require_package %{scl} gflags-devel\n"
"BuildRequires: %scl_require_package %{scl} glog-devel\n"
"BuildRequires: automake\n"
"BuildRequires: bc\n"
"BuildRequires: binutils-devel\n"
"BuildRequires: botan-devel >= 1.10.0\n"
"BuildRequires: cmake3\n"
"BuildRequires: double-conversion-devel\n"
"BuildRequires: double-conversion-static\n"
"BuildRequires: esl-erlang = 25.0.2\n"
"BuildRequires: git224\n"
"BuildRequires: golang\n"
"BuildRequires: libcouchbase-devel\n"
"BuildRequires: libevent-devel\n"
"BuildRequires: libsodium-devel\n"
"BuildRequires: libtool\n"
"BuildRequires: make\n"
"BuildRequires: ninja-build\n"
"BuildRequires: openssl\n"
"BuildRequires: python\n"
"BuildRequires: wget\n"}.
{rpm_build,
"export PATH=$PATH:$RPM_BUILD_DIR/node/bin"}.
{deb_depends,
"folly (>= 2021.01.04.00)"
", libcouchbase2-libevent"
", openssl"}.
{deb_build_depends,
"automake"
", bc"
", cmake (>= 3.0.0)"
", esl-erlang (>= 25.0.2)"
", folly-dev (>= 2021.01.04.00)"
", g++ (>= 4.9.0)"
", git"
", golang-go"
", libcouchbase-dev"
", libdouble-conversion-dev"
", libfmt-dev (>= 7.0.1)"
", libglu1-mesa"
", libgoogle-glog-dev (>= 0.3.4)"
", libiberty-dev"
", libprotobuf-dev (>= 2.6.0)"
", libprotoc-dev (>= 2.6.0)"
", libsodium-dev"
", libtool"
", libwxgtk-webview3.0-gtk3-0v5"
", ninja-build"
", openssl"
", pkg-config"
", python"
", wget"}.