c5ab59eac2
- Update to version 0.4.0 - libwtmpdb: Use project version for library version - libwtmpdb: Always use _PATH_WTMPDB as fallback - Skip pam_wtmpdb for sshd - Update to version 0.3.0 - pam_wtmpdb: Add skip_if option - Add manual pages - wtmpdb last: fix wtmp begins timestamp if no matching entry was found - wtmpdb last: Add --since and --until options - Add compat symlink for "last" - wtmpdb last: add --present option - wtmpdb last: implement -n/--limit - pam_wtmpdb: Try XDG_VTNR if PAM_TTY is not a tty OBS-URL: https://build.opensuse.org/request/show/1080126 OBS-URL: https://build.opensuse.org/package/show/Linux-PAM/wtmpdb?expand=0&rev=3
105 lines
2.8 KiB
RPMSpec
105 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package wtmpdb
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lname libwtmpdb0
|
|
Name: wtmpdb
|
|
Version: 0.4.0
|
|
Release: 0
|
|
Summary: Reports last logged in users and system reboots
|
|
License: BSD-2-Clause
|
|
URL: https://github.com/thkukuk/wtmpdb
|
|
Source: %{name}-%{version}.tar.xz
|
|
BuildRequires: docbook5-xsl-stylesheets
|
|
BuildRequires: meson
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(audit)
|
|
BuildRequires: pkgconfig(pam)
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
PreReq: pam-config
|
|
|
|
%description
|
|
pam_wtmpdb and wtmpdb are Y2038 safe versions of wtmp and the last utility. pam_wtmpdb collects all data in a sqlite3 database and wtmpdb creates boot and shutdown entries or formats and prints the contents of the wtmp database.
|
|
|
|
%package -n %{lname}
|
|
Summary: PAM module to store login and logout of users
|
|
|
|
%description -n %{lname}
|
|
The libwtmpdb provides various interfaces to read, write or modify the wtmpdb database.
|
|
|
|
%package devel
|
|
Summary: Development files for libwtmpdb
|
|
Requires: %{lname} = %{version}
|
|
|
|
%description devel
|
|
This package contains all necessary include files and libraries needed
|
|
to develop applications that needs to read, write or modify the wtmpdb database.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%meson -Dman=true
|
|
%meson_build
|
|
|
|
%install
|
|
%meson_install
|
|
|
|
%check
|
|
%meson_test
|
|
|
|
%pre
|
|
%service_add_pre wtmpdb-update-boot.service
|
|
|
|
%preun
|
|
%service_del_preun wtmpdb-update-boot.service
|
|
|
|
%post
|
|
%tmpfiles_create wtmpdb.conf
|
|
%service_add_post wtmpdb-update-boot.service
|
|
pam-config -a --wtmpdb --wtmpdb-skip_if=sshd
|
|
|
|
%postun
|
|
if [ "$1" -eq 0 ]; then
|
|
pam-config -d --wtmpdb
|
|
fi
|
|
%service_del_postun_without_restart wtmpdb-update-boot.service
|
|
|
|
%post -n %{lname} -p /sbin/ldconfig
|
|
%postun -n %{lname} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%license LICENSE
|
|
%{_bindir}/wtmpdb
|
|
%{_unitdir}/wtmpdb-update-boot.service
|
|
%{_tmpfilesdir}/wtmpdb.conf
|
|
%{_pam_moduledir}/pam_wtmpdb.so
|
|
%ghost %{_localstatedir}/lib/wtmpdb
|
|
%{_mandir}/man8/wtmpdb.8%{?ext_man}
|
|
%{_mandir}/man8/pam_wtmpdb.8%{?ext_man}
|
|
|
|
%files -n %{lname}
|
|
%license LICENSE
|
|
%{_libdir}/libwtmpdb.so.*
|
|
|
|
%files devel
|
|
%{_libdir}/libwtmpdb.so
|
|
%{_includedir}/wtmpdb.h
|
|
%{_libdir}/pkgconfig/libwtmpdb.pc
|
|
|
|
%changelog
|