forked from cea-hpc/coordinatool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coordinatool.spec
71 lines (52 loc) · 1.57 KB
/
coordinatool.spec
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
Name: coordinatool
Version: 0.3
Release: 1%{?dist}
Summary: lustre userspace coordinator implemented as a copytool
License: LGPLv3+
Source0: %{name}-%{version}.tar.xz
BuildRequires: meson
BuildRequires: gcc
BuildRequires: pkgconfig(jansson)
BuildRequires: pkgconfig(liburcu)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: hiredis
%description
coordinatool is a lustre copytool that takes all requests off lustre's
cooridnator, then hand the requests back to normal copytools through a
LD_PRELOAD lib
%package lib
Summary: coordinatool LD_PRELOAD lib
%description lib
LD_PRELOAD library for coordinatool
%package client
Summary: coordinatool standalone client
%description client
standalone coordinatool client to interact with the server
%prep
%autosetup
%build
%meson -Dwerror=false
%meson_build
%install
%meson_install
%check
%meson_test
%files
%{_bindir}/lhsmd_coordinatool
%{_unitdir}/[email protected]
%config(noreplace) /etc/sysconfig/coordinatool
%files client
%{_bindir}/coordinatool-client
%files lib
%{_libdir}/libcoordinatool_client.so
%post lib -p /sbin/ldconfig
%postun lib -p /sbin/ldconfig
%changelog
* Fri Oct 20 2023 Patrice Lucas <[email protected]> - 0.3-1
- Update to new Phobos 1.95 API (phobos_init and phobos_locate)
* Tue Oct 25 2022 Guillaume Courrier <[email protected]> - 0.2-1
- Clients will try to reconnect the server when down
- Use a REDIS database to store requests and recover from crash
- Add compile time switch to use Phobos features
* Sun Jun 27 2021 Dominique Martinet <[email protected]> - 0.1-1
- initial version