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