Name: dlt-daemon Version: 2.18.8 Release: 2%{?dist} Summary: DLT - Diagnostic Log and Trace Group: System Environment/Base License: MPLv2.0 URL: https://github.com/COVESA/dlt-daemon Source0: https://github.com/COVESA/dlt-daemon/archive/refs/tags/v%{version}/%{name}-%{version}.tar.gz Patch0: dlt-daemon-config.patch BuildRequires: cmake BuildRequires: pandoc BuildRequires: systemd BuildRequires: systemd-devel BuildRequires: gcc-c++ %description This component provides a standardised log and trace interface, based on the standardised protocol specified in the AUTOSAR standard 4.0 DLT. This component can be used by GENIVI components and other applications as logging facility providing - the DLT shared library - the DLT daemon, including startup scripts - the DLT daemon adaptors - the DLT client console utilities - the DLT test applications %package -n dlt-libs-devel Summary: DLT - Diagnostic Log and Trace: Development files Requires: dlt-libs = %{version}-%{release} %description -n dlt-libs-devel %{summary}. %package -n dlt-libs Summary: DLT - Diagnostic Log and Trace: Libraries %description -n dlt-libs %{summary}. %package -n dlt-tools Summary: DLT - Diagnostic Log and Trace: Tools Recommends: %{name} = %{version}-%{release} %description -n dlt-tools %{summary}. %package -n dlt-examples Summary: DLT - Diagnostic Log and Trace: Examples Requires: %{name} = %{version}-%{release} %description -n dlt-examples %{summary}. %prep %setup -q %patch0 -p1 %build mkdir -p build cd build %cmake .. -Wno-dev \ -DDLT_USER=dlt-daemon \ -DCMAKE_INSTALL_PREFIX=/usr \ -DWITH_DLT_USE_IPv6=OFF \ -DDLT_IPC=UNIX_SOCKET \ -DWITH_MAN=ON \ -DWITH_SYSTEMD=ON \ -DWITH_SYSTEMD_WATCHDOG=ON \ -DWITH_SYSTEMD_JOURNAL=ON \ -DWITH_DLT_ADAPTOR=ON \ -DWITH_DLT_SYSTEM=ON \ -DDLT_USER_IPC_PATH=/run/dlt %cmake_build %install cd build mkdir -p $RPM_BUILD_ROOT%{_bindir} %cmake_install # Home directory for the 'dlt-daemon' user mkdir -p $RPM_BUILD_ROOT/var/lib/dlt-daemon %pre getent group dlt-daemon >/dev/null || groupadd -r dlt-daemon getent passwd dlt-daemon >/dev/null || \ useradd -r -g dlt-daemon -d /var/lib/dlt-daemon -s /sbin/nologin \ -c "User for dlt-daemon" dlt-daemon exit 0 %ldconfig_scriptlets -n dlt-libs %files %license LICENSE %doc AUTHORS README.md ReleaseNotes.md %attr(755,dlt-daemon,dlt-daemon) %dir /var/lib/dlt-daemon %config %{_sysconfdir}/dlt.conf %config %{_sysconfdir}/dlt_gateway.conf %{_unitdir}/dlt.service %attr(0755,root,root) %{_bindir}/dlt-daemon %{_mandir}/man1/dlt-daemon.1* %{_mandir}/man5/dlt.conf.5* %{_mandir}/man5/dlt_gateway.conf.5* %files -n dlt-examples %{_bindir}/dlt-example-filetransfer %{_bindir}/dlt-example-user %{_bindir}/dlt-example-user-common-api %{_bindir}/dlt-example-user-func %{_bindir}/dlt-test-client %{_bindir}/dlt-test-filetransfer %{_bindir}/dlt-test-fork-handler %{_bindir}/dlt-test-init-free %{_bindir}/dlt-test-multi-process %{_bindir}/dlt-test-multi-process-client %{_bindir}/dlt-test-non-verbose %{_bindir}/dlt-test-preregister-context %{_bindir}/dlt-test-stress %{_bindir}/dlt-test-stress-client %{_bindir}/dlt-test-stress-user %{_bindir}/dlt-test-user %{_datadir}/dlt-filetransfer/dlt-test-filetransfer-file %{_datadir}/dlt-filetransfer/dlt-test-filetransfer-image.png %{_unitdir}/dlt-example-user.service %files -n dlt-tools %{_bindir}/dlt-adaptor-stdin %{_bindir}/dlt-adaptor-udp %{_bindir}/dlt-control %{_bindir}/dlt-convert %{_bindir}/dlt-logstorage-ctrl %{_bindir}/dlt-passive-node-ctrl %{_bindir}/dlt-receive %{_bindir}/dlt-sortbytimestamp %{_bindir}/dlt-system %config %{_sysconfdir}/dlt-system.conf %{_unitdir}/dlt-adaptor-udp.service %{_unitdir}/dlt-receive.service %{_unitdir}/dlt-system.service %{_mandir}/man1/dlt-adaptor-stdin.1* %{_mandir}/man1/dlt-adaptor-udp.1* %{_mandir}/man1/dlt-control.1* %{_mandir}/man1/dlt-convert.1* %{_mandir}/man1/dlt-logstorage-ctrl.1* %{_mandir}/man1/dlt-passive-node-ctrl.1* %{_mandir}/man1/dlt-receive.1* %{_mandir}/man1/dlt-sortbytimestamp.1* %{_mandir}/man1/dlt-system.1* %{_mandir}/man5/dlt-system.conf.5* %files -n dlt-libs %{_libdir}/libdlt.so.* %files -n dlt-libs-devel %{_includedir}/dlt/*.h %{_libdir}/pkgconfig/automotive-dlt.pc %{_libdir}/libdlt.so %{_libdir}/cmake/automotive-dlt/*.cmake %changelog * Tue Feb 22 2022 Alexander Larsson - 2.18.8-2 - Marked config files - Change config to store data in /var/lib/dlt-daemon instead of /tmp - Store sockets in /run/dlt, not in /tmp - Tweak source url to get better named source tarballs * Tue Dec 14 2021 Stephen Smoogen - 2.18.8-1 - Upgrade to 2.18.8 from upstream - Start rpmlint clean * Wed May 12 2021 Alexander Larsson - 2.18.6-2 - Enable more features and split up subpackages * Wed May 12 2021 Mark Kirichenko - 2.18.6-1 - Initial version of the .spec file