|
@@ -1,27 +1,36 @@
|
|
|
+%bcond_with systemd
|
|
|
+
|
|
|
%define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
|
|
|
|
|
|
%define _unpackaged_files_terminate_build 1
|
|
|
-%bcond_with systemd
|
|
|
|
|
|
%define gettext_package dbus
|
|
|
%define expat_version 2.0.1
|
|
|
%define dbus_user_uid 81
|
|
|
|
|
|
+%global _localstatedir %{_var}
|
|
|
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
-%define _localstatedir %{_var}
|
|
|
+%{!?_unitdir:%global _unitdir /lib/systemd/system}
|
|
|
+%{!?_userunitdir:%global _userunitdir /usr/lib/systemd/user}
|
|
|
|
|
|
Summary: D-BUS message bus
|
|
|
Summary(ja): D-BUS メッセージバスシステム
|
|
|
Name: dbus
|
|
|
-Version: 1.12.12
|
|
|
-Release: 1%{?_dist_release}
|
|
|
-URL: http://www.freedesktop.org/software/dbus/
|
|
|
-License: AFL/GPLv2
|
|
|
-Group: System Environment/Libraries
|
|
|
+Version: 1.14.4
|
|
|
+Release: 1%{?_dist_release}%{?with_systemd:.systemd}
|
|
|
+Group: system
|
|
|
+Vendor: Project Vine
|
|
|
+Distribution: Vine Linux
|
|
|
|
|
|
-Source0: %{name}-%{version}.tar.gz
|
|
|
+License: AFL/GPLv2
|
|
|
+URL: https://www.freedesktop.org/software/dbus/
|
|
|
+Source0: https://dbus.freedesktop.org/releases/dbus/%{name}-%{version}.tar.xz
|
|
|
Source1: 00-start-message-bus.sh
|
|
|
Source2: dbus.init
|
|
|
+Source3: dbus.service
|
|
|
+Source4: dbus.user.service
|
|
|
+Source5: dbus.socket
|
|
|
+Source6: dbus.user.socket
|
|
|
|
|
|
# from fedora package
|
|
|
|
|
@@ -29,9 +38,10 @@ Source2: dbus.init
|
|
|
Patch1000: dbus-enable-elogind.patch
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
-Requires(post): chkconfig >= 1.3.34
|
|
|
-Requires(preun): chkconfig >= 1.3.34
|
|
|
-Requires(pre): shadow-utils
|
|
|
+
|
|
|
+# default daemon
|
|
|
+Requires: %{name}-daemon = %{version}-%{release}
|
|
|
+
|
|
|
BuildRequires: autoconf-archive
|
|
|
BuildRequires: libtool
|
|
|
BuildRequires: expat-devel >= %{expat_version}
|
|
@@ -43,9 +53,11 @@ BuildRequires: libxslt
|
|
|
BuildRequires: gettext
|
|
|
BuildRequires: libX11-devel
|
|
|
BuildRequires: libSM-devel
|
|
|
-
|
|
|
-Vendor: Project Vine
|
|
|
-Distribution: Vine Linux
|
|
|
+%if %{with systemd}
|
|
|
+BuildRequires: systemd-devel
|
|
|
+%else
|
|
|
+BuildRequires: elogind-devel
|
|
|
+%endif
|
|
|
|
|
|
%description
|
|
|
D-BUS is a system for sending messages between applications. It is
|
|
@@ -57,29 +69,86 @@ D-BUS はアプリケーション間でメッセージを送受信するため
|
|
|
システム全体のメッセージバスサービスとしても利用されますが、同様に
|
|
|
ユーザ毎のログインセッションにおけるメッセージ基盤としても利用されます。
|
|
|
|
|
|
+
|
|
|
+%package common
|
|
|
+Summary: D-BUS message bus configuration
|
|
|
+Group: system
|
|
|
+BuildArch: noarch
|
|
|
+%if %{with systemd}
|
|
|
+%{?systemd_requires}
|
|
|
+Requires: systemd
|
|
|
+%endif
|
|
|
+
|
|
|
+%description common
|
|
|
+The %{name}-common package provides the configuration and setup files for D-Bus
|
|
|
+implementations to provide a System and User Message Bus.
|
|
|
+
|
|
|
+
|
|
|
+%package daemon
|
|
|
+Summary: D-BUS message bus
|
|
|
+Group: system
|
|
|
+%{?systemd_requires}
|
|
|
+Requires: dbus-common = %{version}-%{release}
|
|
|
+Requires: dbus-libs%{?_isa} = %{version}-%{release}
|
|
|
+Requires: dbus-tools = %{version}-%{release}
|
|
|
+Requires(pre): shadow-utils
|
|
|
+%if %{with systemd}
|
|
|
+%{?systemd_requires}
|
|
|
+Requires: systemd
|
|
|
+%else
|
|
|
+Requires(post): chkconfig >= 1.3.34
|
|
|
+Requires(preun): chkconfig >= 1.3.34
|
|
|
+%endif
|
|
|
+
|
|
|
+%description daemon
|
|
|
+D-BUS is a system for sending messages between applications. It is
|
|
|
+used both for the system-wide message bus service, and as a
|
|
|
+per-user-login-session messaging facility.
|
|
|
+
|
|
|
+
|
|
|
+%package libs
|
|
|
+Summary: Libraries for accessing D-BUS
|
|
|
+Group: system
|
|
|
+
|
|
|
+%description libs
|
|
|
+This package contains lowlevel libraries for accessing D-BUS.
|
|
|
+
|
|
|
+
|
|
|
+%package tools
|
|
|
+Summary: D-BUS Tools and Utilities
|
|
|
+Group: admin-tools
|
|
|
+Requires: dbus-libs%{?_isa} = %{version}-%{release}
|
|
|
+
|
|
|
+%description tools
|
|
|
+Tools and utilities to interact with a running D-Bus Message Bus, provided by
|
|
|
+the reference implementation.
|
|
|
+
|
|
|
+
|
|
|
%package devel
|
|
|
Summary: Libraries and headers for D-BUS
|
|
|
Summary(ja): D-BUS 用のライブラリとヘッダファイル
|
|
|
-Group: Development/Libraries
|
|
|
-Requires: %{name} = %{version}-%{release}
|
|
|
+Group: programming
|
|
|
+Requires: %{name}-libs = %{version}-%{release}
|
|
|
Requires: xml-common
|
|
|
|
|
|
%description devel
|
|
|
Headers and static libraries for D-BUS.
|
|
|
|
|
|
+
|
|
|
%package x11
|
|
|
Summary: X11-requiring add-ons for D-BUS
|
|
|
Summary(ja): X11 を利用する D-BUS 用ツール
|
|
|
-Group: Applications/System
|
|
|
+Group: admin-tools
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
%description x11
|
|
|
D-BUS contains some tools that require Xlib to be installed, those are
|
|
|
in this separate package so server systems need not install X.
|
|
|
|
|
|
+
|
|
|
%package doc
|
|
|
Summary: Developer documentation for D-BUS
|
|
|
-Group: Documentation
|
|
|
+Group: documentation
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
BuildArch: noarch
|
|
|
|
|
@@ -87,11 +156,12 @@ BuildArch: noarch
|
|
|
This package contains developer documentation for D-Bus along with
|
|
|
other supporting documentation such as the introspect dtd file.
|
|
|
|
|
|
+
|
|
|
# compat32
|
|
|
%package -n compat32-%{name}
|
|
|
Summary: D-BUS message bus
|
|
|
Summary(ja): D-BUS メッセージバスシステム
|
|
|
-Group: System Environment/Libraries
|
|
|
+Group: system,legacy
|
|
|
|
|
|
%description -n compat32-%{name}
|
|
|
D-BUS is a system for sending messages between applications. It is
|
|
@@ -103,18 +173,27 @@ D-BUS はアプリケーション間でメッセージを送受信するため
|
|
|
システム全体のメッセージバスサービスとしても利用されますが、同様に
|
|
|
ユーザ毎のログインセッションにおけるメッセージ基盤としても利用されます。
|
|
|
|
|
|
+
|
|
|
%package -n compat32-%{name}-devel
|
|
|
Summary: Libraries and headers for D-BUS
|
|
|
Summary(ja): D-BUS 用のライブラリとヘッダファイル
|
|
|
-Group: Development/Libraries
|
|
|
+Group: programming,legacy
|
|
|
Requires: compat32-%{name} = %{version}-%{release}
|
|
|
Requires: %{name}-devel = %{version}-%{release}
|
|
|
|
|
|
%description -n compat32-%{name}-devel
|
|
|
Headers and static libraries for D-BUS.
|
|
|
|
|
|
+
|
|
|
+%debug_package
|
|
|
+
|
|
|
+
|
|
|
%prep
|
|
|
-%autosetup -p1
|
|
|
+%setup
|
|
|
+%if ! %{with systemd}
|
|
|
+%patch1000 -p1 -b .elogind
|
|
|
+%endif
|
|
|
+
|
|
|
|
|
|
%build
|
|
|
# Avoid rpath.
|
|
@@ -122,18 +201,30 @@ if test -f autogen.sh; then env NOCONFIGURE=1 ./autogen.sh; else autoreconf --ve
|
|
|
rbose --force --install; fi
|
|
|
|
|
|
COMMON_ARGS="--enable-selinux=no \
|
|
|
+%if %{with systemd}
|
|
|
+ SYSTEMCTL=/bin/systemctl \
|
|
|
+ --enable-systemd \
|
|
|
+ --with-init-scripts=redhat \
|
|
|
+ --with-systemdsystemunitdir=%{_unitdir} \
|
|
|
+ --with-systemduserunitdir=%{_userunitdir} \
|
|
|
+ --enable-user-session \
|
|
|
+ --with-system-pid-file=/run/messagebus.pid \
|
|
|
+ --with-system-socket=/run/dbus/system_bus_socket
|
|
|
+%else
|
|
|
--enable-elogind \
|
|
|
- --disable-libaudit \
|
|
|
--with-system-pid-file=%{_localstatedir}/run/messagebus.pid \
|
|
|
+%endif
|
|
|
+ --disable-libaudit \
|
|
|
--with-dbus-user=dbus \
|
|
|
--libdir=/%{_lib} --bindir=/bin \
|
|
|
- --libexecdir=/%{_lib}/dbus-1 \
|
|
|
+ --libexecdir=/lib/dbus-1 \
|
|
|
--docdir=%{_pkgdocdir} \
|
|
|
--sysconfdir=%{_sysconfdir} --exec-prefix=/"
|
|
|
|
|
|
%configure $COMMON_ARGS --disable-tests --disable-verbose-mode --disable-asserts --enable-doxygen-docs --enable-xml-docs
|
|
|
make V=1 %{?_smp_mflags}
|
|
|
|
|
|
+
|
|
|
%install
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
@@ -151,6 +242,8 @@ install --directory %{buildroot}%{_sysconfdir}/dbus-1/system.d
|
|
|
install --directory %{buildroot}%{_datadir}/dbus-1/interfaces
|
|
|
|
|
|
%if %{with systemd}
|
|
|
+%__make install-data DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
|
|
+
|
|
|
# Make sure that when somebody asks for D-Bus under the name of the
|
|
|
# old SysV script, that he ends up with the standard dbus.service name
|
|
|
# now.
|
|
@@ -158,9 +251,13 @@ ln -s dbus.service %{buildroot}%{_unitdir}/messagebus.service
|
|
|
|
|
|
## %find_lang %{gettext_package}
|
|
|
# Delete the old legacy sysv init script
|
|
|
-rm -rf %{buildroot}%{_initrddir}
|
|
|
+#rm -rf %{buildroot}%{_initrddir}
|
|
|
%else
|
|
|
rm -rf %{buildroot}%{_sysconfdir}/systemd
|
|
|
+rm -rf %{buildroot}/lib/systemd
|
|
|
+rm -rf %{buildroot}%{_prefix}/lib/systemd
|
|
|
+rm -rf %{buildroot}%{_prefix}/lib/sysuserd.d
|
|
|
+rm -rf %{buildroot}%{_prefix}/lib/tmpfiles.d
|
|
|
install -Dm755 %{SOURCE2} %{buildroot}%{_initrddir}/messagebus
|
|
|
%endif
|
|
|
|
|
@@ -186,7 +283,7 @@ ret=0
|
|
|
i=0
|
|
|
tmpdir=\$(mktemp --directory --tmpdir dbus-run-installed-tests.XXXXXX)
|
|
|
|
|
|
-for t in /%{_lib}/dbus-1/installed-tests/dbus/test-*; do
|
|
|
+for t in /lib/dbus-1/installed-tests/dbus/test-*; do
|
|
|
i=\$(( \$i + 1 ))
|
|
|
echo "# \$i - \$t ..."
|
|
|
echo "x" > "\$tmpdir/result"
|
|
@@ -211,7 +308,7 @@ echo "1..\$i"
|
|
|
exit \$ret
|
|
|
EOF
|
|
|
|
|
|
-install -pm 755 -t %{buildroot}/%{_lib}/dbus-1 dbus-run-installed-tests
|
|
|
+install -pm 755 -t %{buildroot}/lib/dbus-1 dbus-run-installed-tests
|
|
|
|
|
|
## vine stuff
|
|
|
|
|
@@ -221,83 +318,156 @@ mv -f \
|
|
|
%{buildroot}/%{_lib}/cmake/DBus1/DBus1ConfigVersion.cmake \
|
|
|
%{buildroot}%{_libdir}/cmake/DBus1/
|
|
|
|
|
|
-mkdir -p $RPM_BUILD_ROOT/%{_bindir}
|
|
|
-mv -f $RPM_BUILD_ROOT/bin/dbus-launch $RPM_BUILD_ROOT/%{_bindir}/
|
|
|
+mkdir -p %{buildroot}/%{_bindir}
|
|
|
+mv -f %{buildroot}/bin/dbus-launch %{buildroot}/%{_bindir}/
|
|
|
|
|
|
mkdir -p %{buildroot}/%{_libdir}/dbus-1.0
|
|
|
mv %{buildroot}/%{_lib}/dbus-1.0/include %{buildroot}/%{_libdir}/dbus-1.0/
|
|
|
|
|
|
-mkdir -p $RPM_BUILD_ROOT/%{_libdir}/pkgconfig
|
|
|
+mkdir -p %{buildroot}/%{_libdir}/pkgconfig
|
|
|
#change the arch-deps.h include directory to /usr/lib[64] instead of /lib[64]
|
|
|
-sed -e 's@-I${libdir}@-I${prefix}/%{_lib}@' $RPM_BUILD_ROOT/%{_lib}/pkgconfig/dbus-1.pc > $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/dbus-1.pc
|
|
|
-rm -f $RPM_BUILD_ROOT/%{_lib}/pkgconfig/dbus-1.pc
|
|
|
+sed -e 's@-I${libdir}@-I${prefix}/%{_lib}@' %{buildroot}/%{_lib}/pkgconfig/dbus-1.pc > %{buildroot}/%{_libdir}/pkgconfig/dbus-1.pc
|
|
|
+rm -f %{buildroot}/%{_lib}/pkgconfig/dbus-1.pc
|
|
|
+
|
|
|
+rm -f %{buildroot}/lib/dbus-1/dbus-run-installed-tests
|
|
|
+
|
|
|
+%if %{with systemd}
|
|
|
+rm -rf %{buildroot}/var/run/dbus
|
|
|
+install -m644 %{SOURCE3} %{buildroot}%{_unitdir}/dbus.service
|
|
|
+install -m644 %{SOURCE4} %{buildroot}%{_userunitdir}/dbus.service
|
|
|
+install -m644 %{SOURCE5} %{buildroot}%{_unitdir}/dbus.socket
|
|
|
+install -m644 %{SOURCE6} %{buildroot}%{_userunitdir}/dbus.socket
|
|
|
+%endif
|
|
|
|
|
|
-rm -f $RPM_BUILD_ROOT/%{_lib}/dbus-1/dbus-run-installed-tests
|
|
|
|
|
|
%clean
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
-%pre
|
|
|
+
|
|
|
+%pre daemon
|
|
|
# Add the "dbus" user
|
|
|
/usr/sbin/useradd -c 'System message bus' -u %{dbus_user_uid} \
|
|
|
-s /sbin/nologin -r -d '/' dbus 2> /dev/null || :
|
|
|
|
|
|
-%post
|
|
|
-/sbin/ldconfig
|
|
|
+%post daemon
|
|
|
+%if %{with systemd}
|
|
|
+%systemd_post dbus.service
|
|
|
+%systemd_user_post dbus.service
|
|
|
+%else
|
|
|
/sbin/chkconfig --add messagebus
|
|
|
/sbin/chkconfig messagebus resetpriorities
|
|
|
+%endif
|
|
|
|
|
|
-%preun
|
|
|
+%preun daemon
|
|
|
+%if %{with systemd}
|
|
|
+%systemd_preun dbus.service
|
|
|
+%systemd_user_preun dbus.service
|
|
|
+%else
|
|
|
if [ $1 = 0 ]; then
|
|
|
service messagebus stop > /dev/null 2>&1
|
|
|
/sbin/chkconfig --del messagebus
|
|
|
fi
|
|
|
+if [ -x /sbin/systemctl ]; then
|
|
|
+ /sbin/chkconfig --del messagebus
|
|
|
+fi
|
|
|
+%endif
|
|
|
|
|
|
-%postun
|
|
|
-/sbin/ldconfig
|
|
|
+%postun daemon
|
|
|
+%if %{with systemd}
|
|
|
+%systemd_postun dbus.service
|
|
|
+%systemd_user_postun dbus.service
|
|
|
+%endif
|
|
|
+
|
|
|
+%if !%{with systemd}
|
|
|
+%triggerpostun daemon -- dbus-daemon < 1.12.16-2
|
|
|
+/sbin/chkconfig --add messagebus
|
|
|
+/sbin/chkconfig messagebus resetpriorities
|
|
|
+%endif
|
|
|
|
|
|
-%post -n compat32-%{name} -p /sbin/ldconfig
|
|
|
+%if %{with systemd}
|
|
|
+%post common
|
|
|
+%systemd_post dbus.socket
|
|
|
+%systemd_user_post dbus.socket
|
|
|
+
|
|
|
+%preun common
|
|
|
+%systemd_preun dbus.socket
|
|
|
+%systemd_user_preun dbus.socket
|
|
|
+
|
|
|
+%postun common
|
|
|
+%systemd_postun dbus.socket
|
|
|
+%systemd_user_postun dbus.socket
|
|
|
+%endif
|
|
|
|
|
|
-%postun -n compat32-%{name} -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
|
+# dummy package
|
|
|
+
|
|
|
+%files common
|
|
|
+%dir %{_sysconfdir}/dbus-1
|
|
|
+%dir %{_sysconfdir}/dbus-1/session.d
|
|
|
+%dir %{_sysconfdir}/dbus-1/system.d
|
|
|
+%config %{_sysconfdir}/dbus-1/session.conf
|
|
|
+%config %{_sysconfdir}/dbus-1/system.conf
|
|
|
+%dir %{_datadir}/dbus-1
|
|
|
+%dir %{_datadir}/dbus-1/session.d
|
|
|
+%dir %{_datadir}/dbus-1/system.d
|
|
|
+%{_datadir}/dbus-1/session.conf
|
|
|
+%{_datadir}/dbus-1/system.conf
|
|
|
+%{_datadir}/dbus-1/services
|
|
|
+%{_datadir}/dbus-1/system-services
|
|
|
+%{_datadir}/dbus-1/interfaces
|
|
|
+%if %{with systemd}
|
|
|
+%{_sysusersdir}/dbus.conf
|
|
|
+%{_unitdir}/dbus.socket
|
|
|
+%{_userunitdir}/dbus.socket
|
|
|
+%endif
|
|
|
+
|
|
|
+%files daemon
|
|
|
%defattr(-,root,root)
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
%license COPYING
|
|
|
%doc AUTHORS ChangeLog NEWS README
|
|
|
-%dir %{_sysconfdir}/dbus-1
|
|
|
%config %{_sysconfdir}/dbus-1/*.conf
|
|
|
%ghost %dir /run/%{name}
|
|
|
-%{_sysconfdir}/rc.d/init.d/*
|
|
|
-%dir %{_sysconfdir}/dbus-1/system.d
|
|
|
-%dir %{_sysconfdir}/dbus-1/session.d
|
|
|
-%dir %{_localstatedir}/run/dbus
|
|
|
%dir %{_localstatedir}/lib/dbus/
|
|
|
/bin/dbus-daemon
|
|
|
-/bin/dbus-send
|
|
|
/bin/dbus-cleanup-sockets
|
|
|
-/bin/dbus-monitor
|
|
|
/bin/dbus-run-session
|
|
|
/bin/dbus-test-tool
|
|
|
-/bin/dbus-update-activation-environment
|
|
|
-/bin/dbus-uuidgen
|
|
|
-/%{_lib}/*dbus-1*.so.*
|
|
|
-%{_mandir}/man*/dbus-cleanup-sockets.1.gz
|
|
|
%{_mandir}/man*/dbus-daemon.1.gz
|
|
|
-%{_mandir}/man*/dbus-monitor.1.gz
|
|
|
+%{_mandir}/man*/dbus-cleanup-sockets.1.gz
|
|
|
%{_mandir}/man*/dbus-run-session.1.gz
|
|
|
-%{_mandir}/man*/dbus-send.1.gz
|
|
|
%{_mandir}/man1/dbus-test-tool.1.gz
|
|
|
+%dir /lib/dbus-1
|
|
|
+%attr(4750,root,dbus) /lib/dbus-1/dbus-daemon-launch-helper
|
|
|
+%if %{with systemd}
|
|
|
+%{_tmpfilesdir}/dbus.conf
|
|
|
+%{_unitdir}/dbus.service
|
|
|
+%{_unitdir}/messagebus.service
|
|
|
+%{_unitdir}/multi-user.target.wants/dbus.service
|
|
|
+%{_unitdir}/sockets.target.wants/dbus.socket
|
|
|
+%{_userunitdir}/dbus.service
|
|
|
+%{_userunitdir}/sockets.target.wants/dbus.socket
|
|
|
+%else
|
|
|
+%dir %{_localstatedir}/run/dbus
|
|
|
+%{_sysconfdir}/rc.d/init.d/*
|
|
|
+%endif
|
|
|
+
|
|
|
+%files tools
|
|
|
+%license COPYING
|
|
|
+/bin/dbus-send
|
|
|
+/bin/dbus-monitor
|
|
|
+/bin/dbus-update-activation-environment
|
|
|
+/bin/dbus-uuidgen
|
|
|
+%{_mandir}/man*/dbus-send.1.gz
|
|
|
+%{_mandir}/man*/dbus-monitor.1.gz
|
|
|
%{_mandir}/man1/dbus-update-activation-environment.1.gz
|
|
|
%{_mandir}/man*/dbus-uuidgen.1.gz
|
|
|
-%dir %{_datadir}/dbus-1
|
|
|
-%{_datadir}/dbus-1/session.conf
|
|
|
-%{_datadir}/dbus-1/system.conf
|
|
|
-%{_datadir}/dbus-1/services
|
|
|
-%{_datadir}/dbus-1/system-services
|
|
|
-%{_datadir}/dbus-1/interfaces
|
|
|
-%dir /%{_lib}/dbus-1
|
|
|
-%attr(4750,root,dbus) /%{_lib}/dbus-1/dbus-daemon-launch-helper
|
|
|
+
|
|
|
+%files libs
|
|
|
+%{!?_licensedir:%global license %%doc}
|
|
|
+%license COPYING
|
|
|
+/%{_lib}/*dbus-1*.so.*
|
|
|
|
|
|
%files devel
|
|
|
%defattr(-,root,root)
|
|
@@ -321,10 +491,6 @@ fi
|
|
|
%defattr(-,root,root)
|
|
|
%{_pkgdocdir}/*
|
|
|
%{_datadir}/gtk-doc
|
|
|
-%exclude %{_pkgdocdir}/AUTHORS
|
|
|
-%exclude %{_pkgdocdir}/ChangeLog
|
|
|
-%exclude %{_pkgdocdir}/NEWS
|
|
|
-%exclude %{_pkgdocdir}/README
|
|
|
|
|
|
# compat32
|
|
|
%if %{build_compat32}
|
|
@@ -337,7 +503,26 @@ fi
|
|
|
%{_libdir}/dbus-1.0/include
|
|
|
%endif
|
|
|
|
|
|
+
|
|
|
%changelog
|
|
|
+* Thu Oct 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.14.4-1
|
|
|
+- new upstream release.
|
|
|
+- dropped ldconfig scriptlets.
|
|
|
+
|
|
|
+* Wed Jul 22 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.20-1
|
|
|
+- new upstream release.
|
|
|
+- moved dbus-daemon-launch-helper from /lib64/dbus-1 to /lib/dbus-1.
|
|
|
+
|
|
|
+* Fri Jun 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.18-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
+* Wed Apr 15 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.16-2
|
|
|
+- added subpackages: common, daemon, libs and tools.
|
|
|
+
|
|
|
+* Wed Sep 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.16-1
|
|
|
+- new upstream release.
|
|
|
+- built for systemd.
|
|
|
+
|
|
|
* Sun Dec 16 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.12.12-1
|
|
|
- new upstream release.
|
|
|
- added elogind support.
|