]> git.pld-linux.org Git - packages/elektra.git/blob - elektra.spec
BC: java-gnu-classpath; rel 15
[packages/elektra.git] / elektra.spec
1 # TODO:
2 # - force maven to work without network, enable java_mvn
3 # - haskell plugin (BR: ghc >= 8.0.0, cabal)
4 # - rest-backend (BR: cppcms boost >= 1.45 libjwt openssl)
5 # - rest-frontend, web (BR: npm)
6 # - use system nickel (1.1.0, in src/plugins/ni), inih (r29, src/plugins/ini)
7 #
8 # Conditonal build:
9 %bcond_with     full            # "full" variant (libelektra-full with all plugins linked in)
10 %bcond_without  gen             # gen tool packaging
11 %bcond_without  glib            # GLib/GObject/GSetttings (+ GI) bindings
12 %bcond_without  gsettings       # GSetttings module
13 %bcond_without  java            # Java support: JNA binding and JNI plugin (needs Java 8)
14 %bcond_with     java_mvn        # Java JNA binding (needs Java 8 and maven)
15 %bcond_without  lua             # Lua (5.2) support: bindings and plugin
16 %bcond_without  python2         # Python 2 support: bindings and plugin
17 %bcond_without  python3         # Python 3 support: bindings and plugin
18 %bcond_without  qt              # Qt GUI
19 %bcond_without  ruby            # Ruby binding and plugin
20
21 %if %{without glib}
22 %undefine       with_gsettings
23 %endif
24 %if %{without java}
25 %undefine       with_java_mvn
26 %endif
27 Summary:        A key/value pair database to store software configurations
28 Summary(pl.UTF-8):      Baza kluczy/wartości do przechowywania konfiguracji oprogramowania
29 Name:           elektra
30 Version:        0.8.23
31 Release:        15
32 License:        BSD
33 Group:          Applications/System
34 Source0:        https://www.libelektra.org/ftp/elektra/releases/%{name}-%{version}.tar.gz
35 # Source0-md5:  0a065ed381a59b6213bd46fd3c82ba83
36 Patch0:         %{name}-zsh.patch
37 Patch1:         %{name}-no-markdown.patch
38 Patch2:         disable-broken-tests.patch
39 Patch3:         gcc11.patch
40 URL:            https://www.libelektra.org/
41 %if %{with qt}
42 BuildRequires:  Qt5Core-devel >= 5.3
43 BuildRequires:  Qt5Gui-devel >= 5.3
44 BuildRequires:  Qt5Qml-devel >= 5.3
45 BuildRequires:  Qt5Quick-devel >= 5.3
46 BuildRequires:  Qt5Svg-devel >= 5.3
47 BuildRequires:  Qt5Test-devel >= 5.3
48 BuildRequires:  Qt5Widgets-devel >= 5.3
49 %endif
50 BuildRequires:  augeas-devel >= 1.0
51 BuildRequires:  boost-devel
52 BuildRequires:  cmake >= 3.0
53 BuildRequires:  curl-devel >= 7.28.0
54 BuildRequires:  dbus-devel
55 BuildRequires:  doxygen
56 BuildRequires:  gcc >= 6:4.8
57 BuildRequires:  gettext-tools
58 %{?with_glib:BuildRequires:     glib2-devel >= 1:2.36}
59 %{?with_gsettings:BuildRequires:        glib2-devel >= 1:2.42}
60 %{?with_glib:BuildRequires:     gobject-introspection-devel >= 1.38}
61 # for binding
62 %{?with_java_mvn:BuildRequires: java-jna >= 4.5.0}
63 %{?with_java_mvn:BuildRequires: java-junit >= 4.12}
64 %{?with_java:BuildRequires:     jdk >= 1.8}
65 # jawt for plugin
66 %{?with_java:BuildRequires:     jre-X11 >= 1.8}
67 BuildRequires:  libgcrypt-devel
68 BuildRequires:  libgit2-devel >= 0.24.1
69 %{?with_qt:BuildRequires:       libmarkdown-devel}
70 BuildRequires:  libstdc++-devel
71 BuildRequires:  libuv-devel
72 BuildRequires:  libxml2-devel >= 2.0
73 BuildRequires:  libxslt-progs
74 %{?with_lua:BuildRequires:      lua52-devel >= 5.2}
75 %{?with_java_mvn:BuildRequires: maven}
76 %{?with_java_mvn:BuildRequires: maven-plugin-compiler >= 3.6.0}
77 %{?with_java_mvn:BuildRequires: maven-plugin-surefire >= 2.19.1}
78 BuildRequires:  openssl-devel
79 BuildRequires:  pkgconfig
80 %{?with_python2:BuildRequires:  python-devel >= 1:2.7}
81 %{?with_python3:BuildRequires:  python3-devel >= 1:3.2}
82 BuildRequires:  ronn
83 BuildRequires:  rpm-pythonprov
84 BuildRequires:  rpmbuild(macros) >= 1.612
85 %{?with_ruby:BuildRequires:     ruby-devel}
86 BuildRequires:  sed >= 4.0
87 BuildRequires:  swig >= 3
88 %if %{with python2} || %{with python3}
89 BuildRequires:  swig-python >= 3
90 %endif
91 %{?with_ruby:BuildRequires:     swig-ruby >= 3.0.8}
92 BuildRequires:  systemd-devel
93 BuildRequires:  tcl-devel
94 BuildRequires:  xerces-c-devel >= 3.0.0
95 BuildRequires:  yajl-devel
96 BuildRequires:  yaml-cpp-devel >= 0.5
97 BuildConflicts: java-gnu-classpath
98 Requires:       %{name}-libs = %{version}-%{release}
99 Requires:       mktemp
100 # plugins dependencies (move to individual plugin subpackage if created)
101 Requires:       augeas-libs >= 1.0
102 Requires:       curl-libs >= 7.28.0
103 Requires:       libgit2 >= 0.24.1
104 Requires:       yaml-cpp >= 0.5
105 Obsoletes:      registry
106 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
107
108 %description
109 The Elektra Project provides a framework to store generic
110 configuration data in an hierarchical key-value pair database, instead
111 of a human-readable only text file.
112
113 This way any software can read/save his configuration using a
114 consistent API. Also, applications can be aware of other applications
115 configurations, leveraging easy application integration.
116
117 %description -l pl.UTF-8
118 Projekt Elektra dostarcza szkielet do przechowywania typowych danych
119 konfiguracyjnych w postaci klucz-wartość w hierarchicznej bazie
120 danych, zamiast w pliku tekstowym czytelnym tylko dla człowieka.
121
122 W ten sposób oprogramowanie może odczytywać/zapisywać konfigurację za
123 pomocą spójnego API. Dodatkowo aplikacje mogą być zorientowane w
124 konfiguracji innych aplikacji, ułatwiając ich integrację.
125
126 %package gen
127 Summary:        Elektra kbd-gen code generation utility
128 Summary(pl.UTF-8):      Narzędzie Elektra kbd-gen do generowania kodu
129 Group:          Development/Tools
130 Requires:       %{name} = %{version}-%{release}
131 Requires:       python-modules >= 1:2.7
132
133 %description gen
134 Elektra kbd-gen code generation utility.
135
136 %description gen -l pl.UTF-8
137 Narzędzie Elektra kbd-gen do generowania kodu.
138
139 %package gui
140 Summary:        Qt based GUI for Elektra
141 Summary(pl.UTF-8):      Oparty na Qt graficzny interfejs do Elektry
142 Group:          X11/Applications
143 Requires:       %{name} = %{version}-%{release}
144
145 %description gui
146 Qt based GUI for Elektra.
147
148 %description gui -l pl.UTF-8
149 Oparty na Qt graficzny interfejs do Elektry.
150
151 %package plugin-jni
152 Summary:        Java JNI plugin for Elektra
153 Summary(pl.UTF-8):      Wtyczka Java JNI dla Elektry
154 Group:          Libraries
155 Requires:       %{name} = %{version}-%{release}
156 # jawt
157 Requires:       jre-X11 >= 1.8
158
159 %description plugin-jni
160 Java JNI plugin for Elektra. It allows to use plugins written in Java.
161
162 %description plugin-jni -l pl.UTF-8
163 Wtyczka Java JNI dla Elektry. Pozwala na używanie wtyczek napisanych w
164 Javie.
165
166 %package plugin-lua
167 Summary:        Lua plugin for Elektra
168 Summary(pl.UTF-8):      Wtyczka Lua dla Elektry
169 Group:          Libraries
170 Requires:       %{name} = %{version}-%{release}
171 Requires:       lua52-libs >= 5.2
172
173 %description plugin-lua
174 Lua plugin for Elektra. It allows to use plugins written in Lua.
175
176 %description plugin-lua -l pl.UTF-8
177 Wtyczka Lua dla Elektry. Pozwala na używanie wtyczek napisanych w Lua.
178
179 %package plugin-python2
180 Summary:        Python 2 plugin for Elektra
181 Summary(pl.UTF-8):      Wtyczka Python 2 dla Elektry
182 Group:          Libraries
183 Requires:       %{name} = %{version}-%{release}
184 Requires:       python-libs >= 1:2.7
185
186 %description plugin-python2
187 Python 2 plugin for Elektra. It allows to use plugins written in
188 Python 2.
189
190 %description plugin-python2 -l pl.UTF-8
191 Wtyczka 2 Python dla Elektry. Pozwala na używanie wtyczek napisanych w
192 Pythonie 2.
193
194 %package plugin-python3
195 Summary:        Python 3 plugin for Elektra
196 Summary(pl.UTF-8):      Wtyczka Python 3 dla Elektry
197 Group:          Libraries
198 Requires:       %{name} = %{version}-%{release}
199 Requires:       python3-libs >= 1:3.2
200
201 %description plugin-python3
202 Python 3 plugin for Elektra. It allows to use plugins written in
203 Python 3.
204
205 %description plugin-python3 -l pl.UTF-8
206 Wtyczka Python 3 dla Elektry. Pozwala na używanie wtyczek napisanych w
207 Pythonie 3.
208
209 %package plugin-ruby
210 Summary:        Ruby plugin for Elektra
211 Summary(pl.UTF-8):      Wtyczka Ruby dla Elektry
212 Group:          Libraries
213 Requires:       %{name} = %{version}-%{release}
214 Requires:       ruby
215
216 %description plugin-ruby
217 Ruby plugin for Elektra. It allows to use plugins written in Ruby.
218
219 %description plugin-ruby -l pl.UTF-8
220 Wtyczka Ruby dla Elektry. Pozwala na używanie wtyczek napisanych w
221 języku Ruby.
222
223 %package -n bash-completion-elektra
224 Summary:        Bash completion for Elektra commands
225 Summary(pl.UTF-8):      Bashowe uzupełnianie parametrów dla poleceń z pakietu Elektra
226 Group:          Applications/Shells
227 Requires:       %{name} = %{version}-%{release}
228 Requires:       bash-completion >= 2
229 BuildArch:      noarch
230
231 %description -n bash-completion-elektra
232 Bash completion for Elektra kdb command.
233
234 %description -n bash-completion-elektra -l pl.UTF-8
235 Bashowe uzupełnianie parametrów dla polecenia kdb z pakietu Elektra.
236
237 %package -n fish-completion-elektra
238 Summary:        Fish completion for Elektra commands
239 Summary(pl.UTF-8):      Uzupełnianie parametrów w fish dla poleceń z pakietu Elektra
240 Group:          Applications/Shells
241 Requires:       %{name} = %{version}-%{release}
242 Requires:       fish
243 BuildArch:      noarch
244
245 %description -n fish-completion-elektra
246 Fish completion for Elektra kdb command.
247
248 %description -n fish-completion-elektra -l pl.UTF-8
249 Uzupełnianie parametrów w fish dla polecenia kdb z pakietu Elektra.
250
251 %package -n zsh-completion-elektra
252 Summary:        ZSH completion for Elektra commands
253 Summary(pl.UTF-8):      Uzupełnianie parametrów dla poleceń z pakietu Elektra w powłoce ZSH
254 Group:          Applications/Shells
255 Requires:       %{name} = %{version}-%{release}
256 Requires:       zsh
257 BuildArch:      noarch
258
259 %description -n zsh-completion-elektra
260 ZSH completion for Elektra kdb command.
261
262 %description -n zsh-completion-elektra -l pl.UTF-8
263 Uzupełnianie parametrów dla polecenia kdb z pakietu Elektra w powłoce
264 ZSH.
265
266 %package libs
267 Summary:        Elektra Project libraries
268 Summary(pl.UTF-8):      Biblioteki projektu Elektra
269 Group:          Libraries
270 Obsoletes:      elektra-cpp < 0.8
271 Conflicts:      elektra < 0.7
272
273 %description libs
274 The Elektra Project provides a framework to store generic
275 configuration data in an hierarchical key-value pair database, instead
276 of a human-readable only text file.
277
278 This way any software can read/save his configuration using a
279 consistent API. Also, applications can be aware of other applications
280 configurations, leveraging easy application integration.
281
282 This package contains Elektra shared libraries.
283
284 %description libs -l pl.UTF-8
285 Projekt Elektra dostarcza szkielet do przechowywania typowych danych
286 konfiguracyjnych w postaci klucz-wartość w hierarchicznej bazie
287 danych, zamiast w pliku tekstowym czytelnym tylko dla człowieka.
288
289 W ten sposób oprogramowanie może odczytywać/zapisywać konfigurację za
290 pomocą spójnego API. Dodatkowo aplikacje mogą być zorientowane w
291 konfiguracji innych aplikacji, ułatwiając ich integrację.
292
293 Ten pakiet zawiera biblioteki współdzielone Elektry.
294
295 %package devel
296 Summary:        Include files and API documentation for Elektra Project
297 Summary(pl.UTF-8):      Pliki nagłówkowe i dokumentacja API projektu Elektra
298 Group:          Development/Libraries
299 Requires:       %{name}-libs = %{version}-%{release}
300
301 %description devel
302 This package contains the include files and API manual pages to use
303 the Elektra API in C.
304
305 %description devel -l pl.UTF-8
306 Ten pakiet zawiera pliki nagłówkowe oraz strony podręcznika
307 systemowego opisującego sposób użycia API Elektry w C.
308
309 %package static
310 Summary:        Static libraries for Elektra Project
311 Summary(pl.UTF-8):      Statyczne biblioteki projektu Elektra
312 Group:          Development/Libraries
313 Requires:       %{name}-devel = %{version}-%{release}
314
315 %description static
316 This package contains static libraries for Elektra Project.
317
318 %description static -l pl.UTF-8
319 Ten pakiet zawiera statyczne biblioteki projektu Elektra.
320
321 %package cpp-devel
322 Summary:        Header files of C++ interface for Elektra library
323 Summary(pl.UTF-8):      Pliki nagłówkowe interfejsu C++ do biblioteki Elektra
324 Group:          Development/Libraries
325 Requires:       %{name}-devel = %{version}-%{release}
326 Requires:       libstdc++-devel
327 Obsoletes:      elektra-cpp-static < 0.8
328
329 %description cpp-devel
330 Header files of C++ interface for Elektra library.
331
332 %description cpp-devel -l pl.UTF-8
333 Pliki nagłówkowe interfejsu C++ do biblioteki Elektra.
334
335 %package glib
336 Summary:        GLib/GObject binding for Elektra
337 Summary(pl.UTF-8):      Wiązanie GLib/GObject do Elektry
338 Group:          Libraries
339 Requires:       %{name}-libs = %{version}-%{release}
340 %if %{with gsettings}
341 Requires:       glib2 >= 1:2.42
342 %else
343 Requires:       glib2 >= 1:2.36
344 %endif
345
346 %description glib
347 GLib/GObject binding for Elektra.
348
349 %description glib -l pl.UTF-8
350 Wiązanie GLib/GObject do Elektry.
351
352 %package glib-devel
353 Summary:        GLib/GObject binding for Elektra - development files
354 Summary(pl.UTF-8):      Wiązanie GLib/GObject do Elektry - pliki programistyczne
355 Group:          Libraries
356 Requires:       %{name}-devel = %{version}-%{release}
357 %if %{with gsettings}
358 Requires:       glib2-devel >= 1:2.42
359 %else
360 Requires:       glib2-devel >= 1:2.36
361 %endif
362
363 %description glib-devel
364 GLib/GObject binding for Elektra - development files.
365
366 %description glib-devel -l pl.UTF-8
367 Wiązanie GLib/GObject do Elektry - pliki programistyczne.
368
369 %package io-glib
370 Summary:        Elektra I/O binding using GLib
371 Summary(pl.UTF-8):      Wiązanie we/wy Elektry wykorzystujące GLib
372 Group:          Libraries
373 Requires:       %{name}-libs = %{version}-%{release}
374
375 %description io-glib
376 Elektra I/O binding using GLib.
377
378 %description io-glib -l pl.UTF-8
379 Wiązanie we/wy Elektry wykorzystujące GLib.
380
381 %package io-glib-devel
382 Summary:        Development files for Elektra I/O GLib binding
383 Summary(pl.UTF-8):      Pliki programistyczne wiązania we/wy Elektry GLib
384 Group:          Development/Libraries
385 Requires:       %{name}-devel = %{version}-%{release}
386 Requires:       %{name}-io-glib = %{version}-%{release}
387 Requires:       glib2-devel >= 2.0
388
389 %description io-glib-devel
390 Development files for Elektra I/O GLib binding.
391
392 %description io-glib-devel -l pl.UTF-8
393 Pliki programistyczne wiązania we/wy Elektry GLib.
394
395 %package io-uv
396 Summary:        Elektra I/O binding using uv
397 Summary(pl.UTF-8):      Wiązanie we/wy Elektry wykorzystujące uv
398 Group:          Libraries
399 Requires:       %{name}-libs = %{version}-%{release}
400
401 %description io-uv
402 Elektra I/O binding using uv.
403
404 %description io-uv -l pl.UTF-8
405 Wiązanie we/wy Elektry wykorzystujące uv.
406
407 %package io-uv-devel
408 Summary:        Development files for Elektra I/O uv binding
409 Summary(pl.UTF-8):      Pliki programistyczne wiązania we/wy Elektry uv
410 Group:          Development/Libraries
411 Requires:       %{name}-devel = %{version}-%{release}
412 Requires:       %{name}-io-uv = %{version}-%{release}
413 Requires:       libuv-devel
414
415 %description io-uv-devel
416 Development files for Elektra I/O uv binding.
417
418 %description io-uv-devel -l pl.UTF-8
419 Pliki programistyczne wiązania we/wy Elektry uv.
420
421 %package -n java-elektra
422 Summary:        Java binding for Elektra
423 Summary(pl.UTF-8):      Wiązanie języka Java dla Elektry
424 Group:          Libraries
425 Requires:       %{name}-libs = %{version}-%{release}
426 Requires:       java-jna >= 4.5.0
427 Requires:       jre >= 1.8
428
429 %description -n java-elektra
430 Java binding for Elektra.
431
432 %description -n java-elektra -l pl.UTF-8
433 Wiązanie języka Java dla Elektry.
434
435 %package -n lua-elektra
436 Summary:        Lua binding for Elektra
437 Summary(pl.UTF-8):      Wiązanie języka Lua dla Elektry
438 Group:          Libraries
439 Requires:       %{name}-libs = %{version}-%{release}
440 Requires:       lua52-libs >= 5.2
441
442 %description -n lua-elektra
443 Lua binding for Elektra.
444
445 %description -n lua-elektra -l pl.UTF-8
446 Wiązanie języka Lua dla Elektry.
447
448 %package -n lua-elektra-glib
449 Summary:        Lua/GI binding for Elektra
450 Summary(pl.UTF-8):      Wiązanie Lua/GI dla Elektry
451 Group:          Libraries
452 Requires:       %{name}-glib = %{version}-%{release}
453 Requires:       lua52-libs >= 5.2
454 #R: lua52-lgi ?
455
456 %description -n lua-elektra-glib
457 Lua/GI binding for Elektra. Note: this bindings is deprecated, it's
458 better to use SWIG (lua-elektra) binding.
459
460 %description -n lua-elektra-glib -l pl.UTF-8
461 Wiązanie Lua/GI dla Elektry. Uwaga: to wiązanie jest przestarzałe,
462 lepiej używać wiązania SWIG (lua-elektra).
463
464 %package -n python-elektra
465 Summary:        Python 2 binding for Elektra
466 Summary(pl.UTF-8):      Wiązanie Pythona 2 dla Elektry
467 Group:          Libraries
468 Requires:       %{name}-libs = %{version}-%{release}
469 Requires:       python-libs >= 1:2.7
470
471 %description -n python-elektra
472 Python 2 binding for Elektra.
473
474 %description -n python-elektra -l pl.UTF-8
475 Wiązanie Pythona 2 dla Elektry.
476
477 %package -n python3-elektra
478 Summary:        Python 3 binding for Elektra
479 Summary(pl.UTF-8):      Wiązanie Pythona 3 dla Elektry
480 Group:          Libraries
481 Requires:       %{name}-libs = %{version}-%{release}
482 Requires:       python3-libs >= 1:3.2
483
484 %description -n python3-elektra
485 Python 3 binding for Elektra.
486
487 %description -n python3-elektra -l pl.UTF-8
488 Wiązanie Pythona 3 dla Elektry.
489
490 %package -n python3-elektra-glib
491 Summary:        Python 3 GI binding for Elektra
492 Summary(pl.UTF-8):      Wiązanie Pythona 3 GI dla Elektry
493 Group:          Libraries
494 Requires:       %{name}-glib = %{version}-%{release}
495 Requires:       python3-pygobject3 >= 3
496
497 %description -n python3-elektra-glib
498 Python 3 GI binding for Elektra. Note: this bindings is deprecated,
499 it's better to use SWIG (python*-elektra) binding.
500
501
502 %description -n python3-elektra-glib -l pl.UTF-8
503 Wiązanie Pythona 3 GI dla Elektry. Uwaga: to wiązanie jest
504 przestarzałe, lepiej używać wiązania SWIG (python*-elektra).
505
506 %package -n ruby-elektra
507 Summary:        Ruby binding for Elektra
508 Summary(pl.UTF-8):      Wiązanie języka Ruby dla Elektry
509 Group:          Libraries
510 Requires:       %{name}-libs = %{version}-%{release}
511
512 %description -n ruby-elektra
513 Ruby binding for Elektra.
514
515 %description -n ruby-elektra -l pl.UTF-8
516 Wiązanie języka Ruby dla Elektry.
517
518 %prep
519 %setup -q
520 %patch0 -p1
521 %patch1 -p1
522 %patch2 -p1
523 %patch3 -p1
524
525 %{__sed} -i -e '1s,/usr/bin/env bash,/bin/bash,' $(grep -l '/usr/bin/env bash' -r scripts)
526 %{__sed} -i -e '1s,/usr/bin/env python,%{__python},' scripts/{find-tools,update-infos-status}
527
528 %{__rm} -r src/bindings/io/test
529 %{__rm} src/bindings/io/uv/testio_uv.c
530 %{__rm} src/bindings/io/glib/testio_glib.c
531
532 %build
533 install -d build
534 cd build
535 %cmake .. \
536         -DBINDINGS="INTERCEPT;cpp;io_uv%{?with_glib:;glib;io_glib%{?with_gsettings:;gsettings}%{?with_lua:;gi_lua}%{?with_python3:;gi_python}}%{?with_java_mvn:;jna}%{?with_lua:;swig_lua}%{?with_python2:;swig_python2}%{?with_python3:;swig_python}%{?with_ruby:;swig_ruby}" \
537         %{!?with_full:-DBUILD_FULL=OFF} \
538         -DINSTALL_TESTING=FALSE \
539         -DPLUGINS=ALL \
540         -DTARGET_CMAKE_FOLDER=%{_datadir}/cmake/Modules \
541         -DTOOLS="kdb;race%{?with_gen:;gen}%{?with_qt:;qt-gui}" \
542         -DBUILD_STATIC=ON
543
544 %{__make}
545
546 %install
547 rm -rf $RPM_BUILD_ROOT
548
549 %{__make} -C build install \
550         DESTDIR=$RPM_BUILD_ROOT
551
552 # unneeded compat symlink
553 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libelektragetenv.so.0
554
555 install -D src/plugins/xmltool/xmlschema/elektra.xsd $RPM_BUILD_ROOT%{_datadir}/sgml/elektra/elektra.xsd
556
557 %if %{with python2}
558 %py_comp $RPM_BUILD_ROOT%{py_sitedir}
559 %py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
560 %py_postclean
561 %endif
562
563 %if %{with python3}
564 %py3_comp $RPM_BUILD_ROOT%{py3_sitedir}
565 %py3_ocomp $RPM_BUILD_ROOT%{py3_sitedir}
566 %endif
567
568 # "static" variant (with libelektra-static and thus all plugins linked in);
569 # we don't need it
570 %{__rm} $RPM_BUILD_ROOT%{_bindir}/kdb-static
571
572 # prepare docs
573 %{__rm} -rf installed-doc
574 install -d installed-doc
575 %{__mv} $RPM_BUILD_ROOT%{_docdir}/%{name}-api installed-doc/elektra-api
576 # packaged as %doc
577 %{__rm} -r $RPM_BUILD_ROOT%{_docdir}/%{name}
578
579 # these don't belong to man3
580 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/{README_md,doc_*_md,md_doc_*,md_src_*,md_scripts_README,src_libs_{getenv,notification_example}_README_md}.3elektra
581 # internal or example, not part of API
582 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/{DocBindingData,DocOperationData,SomeIoLibHandle}.3elektra
583 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/doc.h.3elektra
584 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/{array,backend,dl,doc,ease_keyname,elektra_{keyname,plugin,proposal},example_notification*,exportsymbols,functional,internal,kdbenum,log,markdownlinkconverter,meta,mount,nolog,owner,plugin_plugin,proposal_proposal,split,static,testio_doc,testlib_notification,trie,try_compile_dbus}.c.3elektra
585 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/{benchmark_crypto_comparison,benchmark_plugins,examples_backend}.cpp.3elektra
586 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/std_hash_*_.3elektra
587
588 %if %{without java_mvn}
589 %{__rm} $RPM_BUILD_ROOT%{_mandir}/man3/org_libelektra_*.3elektra
590 %endif
591
592 %clean
593 rm -rf $RPM_BUILD_ROOT
594
595 %post   libs -p /sbin/ldconfig
596 %postun libs -p /sbin/ldconfig
597
598 %post   glib -p /sbin/ldconfig
599 %postun glib -p /sbin/ldconfig
600
601 %post   io-glib -p /sbin/ldconfig
602 %postun io-glib -p /sbin/ldconfig
603
604 %post   io-uv -p /sbin/ldconfig
605 %postun io-uv -p /sbin/ldconfig
606
607 %files
608 %defattr(644,root,root,755)
609 %doc LICENSE.md README.md doc/{AUTHORS,BIGPICTURE.md,DESIGN.md,GOALS.md,SECURITY.md,WHY.md,todo} build/doc/NEWS.md
610 # doc/standards installed-doc/scripts
611 %attr(755,root,root) %{_bindir}/kdb
612 %if %{with full}
613 %attr(755,root,root) %{_bindir}/kdb-full
614 %endif
615 %dir %{_libdir}/elektra
616 # R: augeas-libs >= 1.0 libxml2
617 %attr(755,root,root) %{_libdir}/elektra/libelektra-augeas.so
618 %attr(755,root,root) %{_libdir}/elektra/libelektra-base64.so
619 %attr(755,root,root) %{_libdir}/elektra/libelektra-blockresolver.so
620 %attr(755,root,root) %{_libdir}/elektra/libelektra-boolean.so
621 %attr(755,root,root) %{_libdir}/elektra/libelektra-c.so
622 %attr(755,root,root) %{_libdir}/elektra/libelektra-cachefilter.so
623 %attr(755,root,root) %{_libdir}/elektra/libelektra-camel.so
624 %attr(755,root,root) %{_libdir}/elektra/libelektra-ccode.so
625 %attr(755,root,root) %{_libdir}/elektra/libelektra-conditionals.so
626 %attr(755,root,root) %{_libdir}/elektra/libelektra-constants.so
627 %attr(755,root,root) %{_libdir}/elektra/libelektra-counter.so
628 # TODO: R: botan
629 #%attr(755,root,root) %{_libdir}/elektra/libelektra-crypto_botan.so
630 # R: libgcrypt
631 %attr(755,root,root) %{_libdir}/elektra/libelektra-crypto_gcrypt.so
632 # R: openssl
633 %attr(755,root,root) %{_libdir}/elektra/libelektra-crypto_openssl.so
634 %attr(755,root,root) %{_libdir}/elektra/libelektra-csvstorage.so
635 # R: curl-libs >= 7.28.0
636 %attr(755,root,root) %{_libdir}/elektra/libelektra-curlget.so
637 %attr(755,root,root) %{_libdir}/elektra/libelektra-date.so
638 # R: dbus
639 %attr(755,root,root) %{_libdir}/elektra/libelektra-dbus.so
640 # R: dbus
641 %attr(755,root,root) %{_libdir}/elektra/libelektra-dbusrecv.so
642 %attr(755,root,root) %{_libdir}/elektra/libelektra-desktop.so
643 %attr(755,root,root) %{_libdir}/elektra/libelektra-dini.so
644 %attr(755,root,root) %{_libdir}/elektra/libelektra-directoryvalue.so
645 %attr(755,root,root) %{_libdir}/elektra/libelektra-doc.so
646 %attr(755,root,root) %{_libdir}/elektra/libelektra-dpkg.so
647 %attr(755,root,root) %{_libdir}/elektra/libelektra-dump.so
648 %attr(755,root,root) %{_libdir}/elektra/libelektra-enum.so
649 %attr(755,root,root) %{_libdir}/elektra/libelektra-error.so
650 %attr(755,root,root) %{_libdir}/elektra/libelektra-fcrypt.so
651 %attr(755,root,root) %{_libdir}/elektra/libelektra-file.so
652 %attr(755,root,root) %{_libdir}/elektra/libelektra-filecheck.so
653 %attr(755,root,root) %{_libdir}/elektra/libelektra-fstab.so
654 # R: libgit2 >= 0.24.1
655 %attr(755,root,root) %{_libdir}/elektra/libelektra-gitresolver.so
656 %attr(755,root,root) %{_libdir}/elektra/libelektra-glob.so
657 %attr(755,root,root) %{_libdir}/elektra/libelektra-hexcode.so
658 %attr(755,root,root) %{_libdir}/elektra/libelektra-hidden.so
659 %attr(755,root,root) %{_libdir}/elektra/libelektra-hosts.so
660 %attr(755,root,root) %{_libdir}/elektra/libelektra-iconv.so
661 # uses internal inih library
662 %attr(755,root,root) %{_libdir}/elektra/libelektra-ini.so
663 %attr(755,root,root) %{_libdir}/elektra/libelektra-internalnotification.so
664 %attr(755,root,root) %{_libdir}/elektra/libelektra-ipaddr.so
665 %attr(755,root,root) %{_libdir}/elektra/libelektra-iterate.so
666 # R: systemd-libs
667 %attr(755,root,root) %{_libdir}/elektra/libelektra-journald.so
668 %attr(755,root,root) %{_libdir}/elektra/libelektra-keytometa.so
669 %attr(755,root,root) %{_libdir}/elektra/libelektra-line.so
670 %attr(755,root,root) %{_libdir}/elektra/libelektra-lineendings.so
671 %attr(755,root,root) %{_libdir}/elektra/libelektra-list.so
672 %attr(755,root,root) %{_libdir}/elektra/libelektra-logchange.so
673 %attr(755,root,root) %{_libdir}/elektra/libelektra-mathcheck.so
674 %attr(755,root,root) %{_libdir}/elektra/libelektra-mini.so
675 %attr(755,root,root) %{_libdir}/elektra/libelektra-mozprefs.so
676 %attr(755,root,root) %{_libdir}/elektra/libelektra-multifile.so
677 %attr(755,root,root) %{_libdir}/elektra/libelektra-network.so
678 %attr(755,root,root) %{_libdir}/elektra/libelektra-noresolver.so
679 # uses internal nickel library
680 %attr(755,root,root) %{_libdir}/elektra/libelektra-ni.so
681 %attr(755,root,root) %{_libdir}/elektra/libelektra-null.so
682 %attr(755,root,root) %{_libdir}/elektra/libelektra-passwd.so
683 %attr(755,root,root) %{_libdir}/elektra/libelektra-path.so
684 %attr(755,root,root) %{_libdir}/elektra/libelektra-profile.so
685 %attr(755,root,root) %{_libdir}/elektra/libelektra-range.so
686 %attr(755,root,root) %{_libdir}/elektra/libelektra-regexstore.so
687 %attr(755,root,root) %{_libdir}/elektra/libelektra-rename.so
688 %attr(755,root,root) %{_libdir}/elektra/libelektra-resolver.so
689 %attr(755,root,root) %{_libdir}/elektra/libelektra-resolver_fm_*.so
690 %attr(755,root,root) %{_libdir}/elektra/libelektra-required.so
691 %attr(755,root,root) %{_libdir}/elektra/libelektra-semlock.so
692 %attr(755,root,root) %{_libdir}/elektra/libelektra-shell.so
693 %attr(755,root,root) %{_libdir}/elektra/libelektra-simplespeclang.so
694 %attr(755,root,root) %{_libdir}/elektra/libelektra-simpleini.so
695 %attr(755,root,root) %{_libdir}/elektra/libelektra-spec.so
696 %attr(755,root,root) %{_libdir}/elektra/libelektra-storage.so
697 %attr(755,root,root) %{_libdir}/elektra/libelektra-struct.so
698 %attr(755,root,root) %{_libdir}/elektra/libelektra-sync.so
699 %attr(755,root,root) %{_libdir}/elektra/libelektra-syslog.so
700 %attr(755,root,root) %{_libdir}/elektra/libelektra-tcl.so
701 %attr(755,root,root) %{_libdir}/elektra/libelektra-template.so
702 %attr(755,root,root) %{_libdir}/elektra/libelektra-timeofday.so
703 %attr(755,root,root) %{_libdir}/elektra/libelektra-tracer.so
704 %attr(755,root,root) %{_libdir}/elektra/libelektra-type.so
705 # R: xerces-c >= 3.0.0
706 %attr(755,root,root) %{_libdir}/elektra/libelektra-xerces.so
707 %attr(755,root,root) %{_libdir}/elektra/libelektra-uname.so
708 %attr(755,root,root) %{_libdir}/elektra/libelektra-validation.so
709 %attr(755,root,root) %{_libdir}/elektra/libelektra-wresolver.so
710 # R: libxml2
711 %attr(755,root,root) %{_libdir}/elektra/libelektra-xmltool.so
712 # R: yajl
713 %attr(755,root,root) %{_libdir}/elektra/libelektra-yajl.so
714 # R: yaml-cpp >= 0.5
715 %attr(755,root,root) %{_libdir}/elektra/libelektra-yamlcpp.so
716 %dir %{_libdir}/elektra/tool_exec
717 %attr(755,root,root) %{_libdir}/elektra/tool_exec/backup
718 %attr(755,root,root) %{_libdir}/elektra/tool_exec/benchmark-createtree
719 %attr(755,root,root) %{_libdir}/elektra/tool_exec/change-resolver-symlink
720 %attr(755,root,root) %{_libdir}/elektra/tool_exec/change-storage-symlink
721 %attr(755,root,root) %{_libdir}/elektra/tool_exec/check-env-dep
722 %attr(755,root,root) %{_libdir}/elektra/tool_exec/configure-firefox
723 %attr(755,root,root) %{_libdir}/elektra/tool_exec/convert-fstab
724 %attr(755,root,root) %{_libdir}/elektra/tool_exec/convert-hosts
725 %attr(755,root,root) %{_libdir}/elektra/tool_exec/convert-inittab
726 %attr(755,root,root) %{_libdir}/elektra/tool_exec/convert-users
727 %attr(755,root,root) %{_libdir}/elektra/tool_exec/elektra-merge
728 %attr(755,root,root) %{_libdir}/elektra/tool_exec/elektra-mount
729 %attr(755,root,root) %{_libdir}/elektra/tool_exec/elektra-umount
730 %attr(755,root,root) %{_libdir}/elektra/tool_exec/elektrify-open
731 %attr(755,root,root) %{_libdir}/elektra/tool_exec/elektrify-getenv
732 %attr(755,root,root) %{_libdir}/elektra/tool_exec/example-xorg
733 %dir %{_libdir}/elektra/tool_exec/ffconfig
734 %attr(755,root,root) %{_libdir}/elektra/tool_exec/ffconfig/setupConfig
735 %attr(755,root,root) %{_libdir}/elektra/tool_exec/ffconfig/setupHomepage
736 %attr(755,root,root) %{_libdir}/elektra/tool_exec/ffconfig/setupProxy
737 %attr(755,root,root) %{_libdir}/elektra/tool_exec/ffconfig/writeConfigFiles
738 %attr(755,root,root) %{_libdir}/elektra/tool_exec/find-tools
739 %attr(755,root,root) %{_libdir}/elektra/tool_exec/getenv
740 %attr(755,root,root) %{_libdir}/elektra/tool_exec/install-sh-completion
741 %attr(755,root,root) %{_libdir}/elektra/tool_exec/list-tools
742 %attr(755,root,root) %{_libdir}/elektra/tool_exec/mount-augeas
743 %attr(755,root,root) %{_libdir}/elektra/tool_exec/mount-info
744 %attr(755,root,root) %{_libdir}/elektra/tool_exec/mount-list-all-files
745 %attr(755,root,root) %{_libdir}/elektra/tool_exec/mount-kde
746 %attr(755,root,root) %{_libdir}/elektra/tool_exec/mount-openicc
747 %attr(755,root,root) %{_libdir}/elektra/tool_exec/mountpoint-info
748 %attr(755,root,root) %{_libdir}/elektra/tool_exec/race
749 %attr(755,root,root) %{_libdir}/elektra/tool_exec/restore
750 %attr(755,root,root) %{_libdir}/elektra/tool_exec/stash
751 %attr(755,root,root) %{_libdir}/elektra/tool_exec/umount-all
752 %attr(755,root,root) %{_libdir}/elektra/tool_exec/update-snippet-repository
753 %attr(755,root,root) %{_libdir}/elektra/tool_exec/upgrade-bootstrap
754 %{_datadir}/sgml/elektra
755 %{_mandir}/man1/kdb.1*
756 %{_mandir}/man1/kdb-backup.1*
757 %{_mandir}/man1/kdb-change-resolver-symlink.1*
758 %{_mandir}/man1/kdb-change-storage-symlink.1*
759 %{_mandir}/man1/kdb-check.1*
760 %{_mandir}/man1/kdb-check-env-dep.1*
761 %{_mandir}/man1/kdb-complete.1*
762 %{_mandir}/man1/kdb-convert.1*
763 %{_mandir}/man1/kdb-cp.1*
764 %{_mandir}/man1/kdb-editor.1*
765 %{_mandir}/man1/kdb-elektrify-getenv.1*
766 %{_mandir}/man1/kdb-export.1*
767 %{_mandir}/man1/kdb-file.1*
768 %{_mandir}/man1/kdb-find-tools.1*
769 %{_mandir}/man1/kdb-fstab.1*
770 %{_mandir}/man1/kdb-get.1*
771 %{_mandir}/man1/kdb-getmeta.1*
772 %{_mandir}/man1/kdb-global-mount.1*
773 %{_mandir}/man1/kdb-global-umount.1*
774 %{_mandir}/man1/kdb-help.1*
775 %{_mandir}/man1/kdb-import.1*
776 %{_mandir}/man1/kdb-info.1*
777 %{_mandir}/man1/kdb-introduction.1*
778 %{_mandir}/man1/kdb-list.1*
779 %{_mandir}/man1/kdb-list-commands.1*
780 %{_mandir}/man1/kdb-list-tools.1*
781 %{_mandir}/man1/kdb-ls.1*
782 %{_mandir}/man1/kdb-lsmeta.1*
783 %{_mandir}/man1/kdb-merge.1*
784 %{_mandir}/man1/kdb-mount.1*
785 %{_mandir}/man1/kdb-mount-list-all-files.1*
786 %{_mandir}/man1/kdb-mountpoint-info.*
787 %{_mandir}/man1/kdb-mv.1*
788 %{_mandir}/man1/kdb-remount.1*
789 %{_mandir}/man1/kdb-restore.1*
790 %{_mandir}/man1/kdb-rm.1*
791 %{_mandir}/man1/kdb-rmmeta.1*
792 %{_mandir}/man1/kdb-set.1*
793 %{_mandir}/man1/kdb-setmeta.1*
794 %{_mandir}/man1/kdb-sget.1*
795 %{_mandir}/man1/kdb-shell.1*
796 %{_mandir}/man1/kdb-spec-mount.1*
797 %{_mandir}/man1/kdb-stash.1*
798 %{_mandir}/man1/kdb-test.1*
799 %{_mandir}/man1/kdb-umount.1*
800 %{_mandir}/man1/kdb-vset.1*
801 %{_mandir}/man7/elektra-*.7*
802
803 %if %{with gen}
804 %files gen
805 %defattr(644,root,root,755)
806 %doc src/tools/gen/README.md
807 %attr(755,root,root) %{_libdir}/elektra/tool_exec/gen
808 %{py_sitedir}/elektra_gen-%{version}-py*.egg-info
809 # FIXME: should be in elektra_gen subdir
810 %{py_sitedir}/support
811 %dir %{_datadir}/elektra
812 %{_datadir}/elektra/templates
813 %{_mandir}/man1/kdb-gen.1*
814 %endif
815
816 %files gui
817 %defattr(644,root,root,755)
818 %doc src/tools/qt-gui/README.md
819 %attr(755,root,root) %{_bindir}/elektra-qt-editor
820 %attr(755,root,root) %{_libdir}/elektra/tool_exec/qt-gui
821 %{_datadir}/appdata/org.libelektra.elektra-qt-editor.appdata.xml
822 %{_desktopdir}/org.libelektra.elektra-qt-editor.desktop
823 %{_iconsdir}/hicolor/scalable/apps/elektra-symbolic.svg
824 %{_iconsdir}/hicolor/scalable/apps/elektra.svg
825 %{_mandir}/man1/kdb-qt-gui.1*
826
827 %if %{with java}
828 %files plugin-jni
829 %defattr(644,root,root,755)
830 # R: jre with jawt
831 %attr(755,root,root) %{_libdir}/elektra/libelektra-jni.so
832 %endif
833
834 %if %{with lua}
835 %files plugin-lua
836 %defattr(644,root,root,755)
837 # R: lua52-libs
838 %attr(755,root,root) %{_libdir}/elektra/libelektra-lua.so
839 %endif
840
841 %if %{with python2}
842 %files plugin-python2
843 %defattr(644,root,root,755)
844 # R: python-libs
845 %attr(755,root,root) %{_libdir}/elektra/libelektra-python2.so
846 %endif
847
848 %if %{with python3}
849 %files plugin-python3
850 %defattr(644,root,root,755)
851 # R: python3-libs
852 %attr(755,root,root) %{_libdir}/elektra/libelektra-python.so
853 %endif
854
855 %if %{with ruby}
856 %files plugin-ruby
857 %defattr(644,root,root,755)
858 # R: ruby
859 %attr(755,root,root) %{_libdir}/elektra/libelektra-ruby.so
860 %endif
861
862 %files -n bash-completion-elektra
863 %defattr(644,root,root,755)
864 %{bash_compdir}/kdb
865
866 %files -n fish-completion-elektra
867 %defattr(644,root,root,755)
868 %{_datadir}/fish/vendor_completions.d/kdb.fish
869
870 %files -n zsh-completion-elektra
871 %defattr(644,root,root,755)
872 %{_datadir}/zsh/site-functions/_kdb
873
874 %files libs
875 %defattr(644,root,root,755)
876 %attr(755,root,root) %{_libdir}/libelektra.so.*.*.*
877 %attr(755,root,root) %ghost %{_libdir}/libelektra.so.4
878 %attr(755,root,root) %{_libdir}/libelektra-core.so.*.*.*
879 %attr(755,root,root) %ghost %{_libdir}/libelektra-core.so.4
880 %attr(755,root,root) %{_libdir}/libelektra-ease.so.*.*.*
881 %attr(755,root,root) %ghost %{_libdir}/libelektra-ease.so.4
882 %attr(755,root,root) %{_libdir}/libelektra-invoke.so.*.*.*
883 %attr(755,root,root) %ghost %{_libdir}/libelektra-invoke.so.4
884 %attr(755,root,root) %{_libdir}/libelektra-kdb.so.*.*.*
885 %attr(755,root,root) %ghost %{_libdir}/libelektra-kdb.so.4
886 %attr(755,root,root) %{_libdir}/libelektra-meta.so.*.*.*
887 %attr(755,root,root) %ghost %{_libdir}/libelektra-meta.so.4
888 %attr(755,root,root) %{_libdir}/libelektra-io.so.*.*.*
889 %attr(755,root,root) %ghost %{_libdir}/libelektra-io.so.4
890 %attr(755,root,root) %{_libdir}/libelektra-notification.so.*.*.*
891 %attr(755,root,root) %ghost %{_libdir}/libelektra-notification.so.4
892 %attr(755,root,root) %{_libdir}/libelektra-plugin.so.*.*.*
893 %attr(755,root,root) %ghost %{_libdir}/libelektra-plugin.so.4
894 %attr(755,root,root) %{_libdir}/libelektra-pluginprocess.so.*.*.*
895 %attr(755,root,root) %ghost %{_libdir}/libelektra-pluginprocess.so.4
896 %attr(755,root,root) %{_libdir}/libelektra-proposal.so.*.*.*
897 %attr(755,root,root) %ghost %{_libdir}/libelektra-proposal.so.4
898 %attr(755,root,root) %{_libdir}/libelektra-utility.so.*.*.*
899 %attr(755,root,root) %ghost %{_libdir}/libelektra-utility.so.4
900 %attr(755,root,root) %{_libdir}/libelektraintercept-env.so.*.*.*
901 %attr(755,root,root) %ghost %{_libdir}/libelektraintercept-env.so.0
902 %attr(755,root,root) %{_libdir}/libelektraintercept-fs.so
903 %attr(755,root,root) %{_libdir}/libelektratools.so.*.*.*
904 %attr(755,root,root) %ghost %{_libdir}/libelektratools.so.2
905 %if %{with full}
906 %attr(755,root,root) %{_libdir}/libelektra-full.so.*.*.*
907 %attr(755,root,root) %ghost %{_libdir}/libelektra-full.so.4
908 %endif
909
910 %files devel
911 %defattr(644,root,root,755)
912 %doc doc/API.md installed-doc/elektra-api/html
913 %attr(755,root,root) %{_libdir}/libelektra.so
914 %attr(755,root,root) %{_libdir}/libelektra-core.so
915 %attr(755,root,root) %{_libdir}/libelektra-ease.so
916 %attr(755,root,root) %{_libdir}/libelektra-kdb.so
917 %attr(755,root,root) %{_libdir}/libelektra-invoke.so
918 %attr(755,root,root) %{_libdir}/libelektra-io.so
919 %attr(755,root,root) %{_libdir}/libelektra-meta.so
920 %attr(755,root,root) %{_libdir}/libelektra-notification.so
921 %attr(755,root,root) %{_libdir}/libelektra-plugin.so
922 %attr(755,root,root) %{_libdir}/libelektra-pluginprocess.so
923 %attr(755,root,root) %{_libdir}/libelektra-proposal.so
924 %attr(755,root,root) %{_libdir}/libelektra-utility.so
925 %attr(755,root,root) %{_libdir}/libelektragetenv.so
926 %attr(755,root,root) %{_libdir}/libelektraintercept-env.so
927 %attr(755,root,root) %{_libdir}/libelektraintercept.so
928 %attr(755,root,root) %{_libdir}/libelektratools.so
929 %if %{with full}
930 %attr(755,root,root) %{_libdir}/libelektra-full.so
931 %endif
932 %dir %{_includedir}/elektra
933 %{_includedir}/elektra/kdb.h
934 %{_includedir}/elektra/kdbconfig.h
935 %{_includedir}/elektra/kdbease.h
936 %{_includedir}/elektra/kdbextension.h
937 %{_includedir}/elektra/kdbgetenv.h
938 %{_includedir}/elektra/kdbhelper.h
939 %{_includedir}/elektra/kdbinvoke.h
940 %{_includedir}/elektra/kdbio.h
941 %{_includedir}/elektra/kdbmeta.h
942 %{_includedir}/elektra/kdbmodule.h
943 %{_includedir}/elektra/kdbnotification.h
944 %{_includedir}/elektra/kdbos.h
945 %{_includedir}/elektra/kdbplugin.h
946 %{_includedir}/elektra/kdbpluginprocess.h
947 %{_includedir}/elektra/kdbprivate.h
948 %{_includedir}/elektra/kdbproposal.h
949 %{_includedir}/elektra/kdbtypes.h
950 %{_includedir}/elektra/kdbutility.h
951 %{_includedir}/elektra/kdbversion.h
952 %{_pkgconfigdir}/elektra.pc
953 %{_pkgconfigdir}/elektra-io.pc
954 %{_pkgconfigdir}/elektra-notification.pc
955 %{_datadir}/cmake/Modules/ElektraConfig*.cmake
956 %{_datadir}/cmake/Modules/ElektraTargetsLibelektra*.cmake
957 %{_mandir}/man3/Opmphm*.3elektra*
958 %{_mandir}/man3/api.3elektra*
959 %{_mandir}/man3/dbus.c.3elektra*
960 %{_mandir}/man3/deprecated.3elektra*
961 %{_mandir}/man3/global.c.3elektra*
962 %{_mandir}/man3/invoke.c.3elektra*
963 %{_mandir}/man3/io.c.3elektra*
964 %{_mandir}/man3/io_doc.c.3elektra*
965 %{_mandir}/man3/kdb.3elektra*
966 %{_mandir}/man3/kdb.c.3elektra*
967 %{_mandir}/man3/kdb_*.3elektra*
968 %{_mandir}/man3/kdb*.h.3elektra*
969 %{_mandir}/man3/kdbio.3elektra*
970 %{_mandir}/man3/kdbnotification.3elektra*
971 %{_mandir}/man3/key.3elektra*
972 %{_mandir}/man3/keymeta.3elektra*
973 %{_mandir}/man3/keyname.3elektra*
974 %{_mandir}/man3/keyset.3elektra*
975 %{_mandir}/man3/keytest.3elektra*
976 %{_mandir}/man3/keyvalue.3elektra*
977 %{_mandir}/man3/key.c.3elektra*
978 %{_mandir}/man3/keyhelpers.c.3elektra*
979 %{_mandir}/man3/keymeta.c.3elektra*
980 %{_mandir}/man3/keyset.c.3elektra*
981 %{_mandir}/man3/keytest.c.3elektra*
982 %{_mandir}/man3/keyvalue.c.3elektra*
983 %{_mandir}/man3/meta.3elektra*
984 %{_mandir}/man3/modules.3elektra*
985 %{_mandir}/man3/notification.c.3elektra*
986 %{_mandir}/man3/opmphm.c.3elektra*
987 %{_mandir}/man3/plugin.3elektra*
988 %{_mandir}/man3/pluginprocess.c.3elektra*
989 %{_mandir}/man3/proposal.3elektra*
990 %{_mandir}/man3/rand.c.3elektra*
991
992 %files static
993 %defattr(644,root,root,755)
994 %{_libdir}/libelektra-static.a
995 %{_libdir}/libelektratools-static.a
996
997 %files cpp-devel
998 %defattr(644,root,root,755)
999 %doc src/bindings/cpp/README.md
1000 %{_includedir}/elektra/*.hpp
1001 %{_includedir}/elektra/helper
1002 %{_includedir}/elektra/merging
1003 # libelektratools API man pages
1004 %{_mandir}/man3/automergeconfiguration.cpp.3elektra*
1005 %{_mandir}/man3/automergeconfiguration.hpp.3elektra*
1006 %{_mandir}/man3/automergestrategy.cpp.3elektra*
1007 %{_mandir}/man3/automergestrategy.hpp.3elektra*
1008 %{_mandir}/man3/backend.hpp.3elektra*
1009 %{_mandir}/man3/backendbuilder.cpp.3elektra*
1010 %{_mandir}/man3/backendbuilder.hpp.3elektra*
1011 %{_mandir}/man3/backendparser.cpp.3elektra*
1012 %{_mandir}/man3/backendparser.hpp.3elektra*
1013 %{_mandir}/man3/backends.cpp.3elektra*
1014 %{_mandir}/man3/backends.hpp.3elektra*
1015 %{_mandir}/man3/comparison.cpp.3elektra*
1016 %{_mandir}/man3/comparison.hpp.3elektra*
1017 %{_mandir}/man3/importmergeconfiguration.cpp.3elektra*
1018 %{_mandir}/man3/importmergeconfiguration.hpp.3elektra*
1019 %{_mandir}/man3/interactivemergestrategy.cpp.3elektra*
1020 %{_mandir}/man3/interactivemergestrategy.hpp.3elektra*
1021 %{_mandir}/man3/kdb*.hpp.3elektra*
1022 %{_mandir}/man3/key*.hpp.3elektra*
1023 %{_mandir}/man3/keyhelper.cpp.3elektra*
1024 %{_mandir}/man3/mergeconfiguration.hpp.3elektra*
1025 %{_mandir}/man3/mergeconflict.hpp.3elektra*
1026 %{_mandir}/man3/mergeconflictstrategy.cpp.3elektra*
1027 %{_mandir}/man3/mergeconflictstrategy.hpp.3elektra*
1028 %{_mandir}/man3/mergeresult.cpp.3elektra*
1029 %{_mandir}/man3/mergeresult.hpp.3elektra*
1030 %{_mandir}/man3/mergetask.hpp.3elektra*
1031 %{_mandir}/man3/mergetestutils.cpp.3elektra*
1032 %{_mandir}/man3/merging.cpp.3elektra*
1033 %{_mandir}/man3/mergingkdb.cpp.3elektra*
1034 %{_mandir}/man3/mergingkdb.hpp.3elektra*
1035 %{_mandir}/man3/metamergestrategy.cpp.3elektra*
1036 %{_mandir}/man3/metamergestrategy.hpp.3elektra*
1037 %{_mandir}/man3/newkeystrategy.cpp.3elektra*
1038 %{_mandir}/man3/newkeystrategy.hpp.3elektra*
1039 %{_mandir}/man3/onesidemergeconfiguration.cpp.3elektra*
1040 %{_mandir}/man3/onesidemergeconfiguration.hpp.3elektra*
1041 %{_mandir}/man3/onesidestrategy.cpp.3elektra*
1042 %{_mandir}/man3/onesidestrategy.hpp.3elektra*
1043 %{_mandir}/man3/onesidevaluestrategy.cpp.3elektra*
1044 %{_mandir}/man3/onesidevaluestrategy.hpp.3elektra*
1045 %{_mandir}/man3/overwritemergeconfiguration.cpp.3elektra*
1046 %{_mandir}/man3/overwritemergeconfiguration.hpp.3elektra*
1047 %{_mandir}/man3/modules.cpp.3elektra*
1048 %{_mandir}/man3/modules.hpp.3elektra*
1049 %{_mandir}/man3/plugin.cpp.3elektra*
1050 %{_mandir}/man3/plugin.hpp.3elektra*
1051 %{_mandir}/man3/plugindatabase.cpp.3elektra*
1052 %{_mandir}/man3/plugindatabase.hpp.3elektra*
1053 %{_mandir}/man3/plugins.cpp.3elektra*
1054 %{_mandir}/man3/plugins.hpp.3elektra*
1055 %{_mandir}/man3/pluginspec.cpp.3elektra*
1056 %{_mandir}/man3/pluginspec.hpp.3elektra*
1057 %{_mandir}/man3/specreader.hpp.3elektra*
1058 %{_mandir}/man3/src_backend.cpp.3elektra*
1059 %{_mandir}/man3/testtool_*.cpp.3elektra*
1060 %{_mandir}/man3/threewaymerge.cpp.3elektra*
1061 %{_mandir}/man3/threewaymerge.hpp.3elektra*
1062 %{_mandir}/man3/toolexcept.hpp.3elektra*
1063
1064 %if %{with glib}
1065 %files glib
1066 %defattr(644,root,root,755)
1067 %doc src/bindings/glib/README.md
1068 %attr(755,root,root) %{_libdir}/libgelektra-4.0.so
1069 %if %{with gsettings}
1070 %attr(755,root,root) %{_libdir}/gio/modules/libelektrasettings.so
1071 %endif
1072 %{_libdir}/girepository-1.0/GElektra-4.0.typelib
1073
1074 %files glib-devel
1075 %defattr(644,root,root,755)
1076 %{_datadir}/gir-1.0/GElektra-4.0.gir
1077 %{_includedir}/elektra/gelektra-*.h
1078 %{_pkgconfigdir}/gelektra-4.0.pc
1079 %endif
1080
1081 %files io-glib
1082 %defattr(644,root,root,755)
1083 %doc src/bindings/io/glib/README.md
1084 %attr(755,root,root) %{_libdir}/libelektra-io-glib.so
1085
1086 %files io-glib-devel
1087 %defattr(644,root,root,755)
1088 %{_includedir}/elektra/kdbio_glib.h
1089 %{_pkgconfigdir}/elektra-io-glib.pc
1090
1091 %files io-uv
1092 %defattr(644,root,root,755)
1093 %doc src/bindings/io/uv/README.md
1094 %attr(755,root,root) %{_libdir}/libelektra-io-uv.so
1095
1096 %files io-uv-devel
1097 %defattr(644,root,root,755)
1098 %{_includedir}/elektra/kdbio_uv.h
1099 %{_pkgconfigdir}/elektra-io-uv.pc
1100
1101 %if %{with java_mvn}
1102 %files -n java-elektra
1103 %defattr(644,root,root,755)
1104 %doc src/bindings/jna/README.md
1105 %{_javadir}/libelektra-1.jar
1106 %{_javadir}/libelektra.jar
1107 %{_mandir}/man3/org_libelektra_*.3elektra*
1108 %endif
1109
1110 %if %{with lua}
1111 %files -n lua-elektra
1112 %defattr(644,root,root,755)
1113 %doc src/bindings/swig/lua/README.md
1114 %attr(755,root,root) %{_libdir}/lua/5.2/kdb.so
1115
1116 %if %{with glib}
1117 %files -n lua-elektra-glib
1118 %defattr(644,root,root,755)
1119 %doc src/bindings/gi/lua/README.md
1120 %dir %{_datadir}/lua/5.2/lgi
1121 %dir %{_datadir}/lua/5.2/lgi/override
1122 %{_datadir}/lua/5.2/lgi/override/GElektra.lua
1123 %endif
1124 %endif
1125
1126 %if %{with python2}
1127 %files -n python-elektra
1128 %defattr(644,root,root,755)
1129 %doc src/bindings/swig/python2/README.md
1130 %attr(755,root,root) %{py_sitedir}/_kdb.so
1131 %{py_sitedir}/kdb.py[co]
1132 %endif
1133
1134 %if %{with python3}
1135 %files -n python3-elektra
1136 %defattr(644,root,root,755)
1137 %doc src/bindings/swig/python/README.md
1138 %attr(755,root,root) %{py3_sitedir}/_kdb.so
1139 %{py3_sitedir}/kdb.py
1140 %{py3_sitedir}/__pycache__/kdb.cpython-*.py[co]
1141
1142 %if %{with glib}
1143 %files -n python3-elektra-glib
1144 %defattr(644,root,root,755)
1145 %doc src/bindings/gi/python/README.md
1146 %{py3_sitedir}/gi/overrides/GElektra.py
1147 %{py3_sitedir}/gi/overrides/__pycache__/GElektra.cpython-*.py[co]
1148 %endif
1149 %endif
1150
1151 %if %{with ruby}
1152 %files -n ruby-elektra
1153 %defattr(644,root,root,755)
1154 %doc src/bindings/swig/ruby/README.md
1155 %attr(755,root,root) %{ruby_vendorarchdir}/_kdb.so
1156 %attr(755,root,root) %{ruby_vendorarchdir}/_kdbtools.so
1157 %{ruby_vendorlibdir}/kdb.rb
1158 %{ruby_vendorlibdir}/kdbtools.rb
1159 %endif
This page took 0.20114 seconds and 3 git commands to generate.