Compare commits
No commits in common. "c8" and "imports/c9-beta/tlog-12.1-2.el9" have entirely different histories.
c8
...
imports/c9
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/tlog-14.tar.gz
|
SOURCES/tlog-12.1.tar.gz
|
||||||
|
1
.tlog.metadata
Normal file
1
.tlog.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
556c0c33d07c4191f6e14ab28b322c2300edef68 SOURCES/tlog-12.1.tar.gz
|
188
SPECS/tlog.spec
188
SPECS/tlog.spec
@ -1,25 +1,78 @@
|
|||||||
|
%global _hardened_build 1
|
||||||
|
|
||||||
|
%if 0%{?rhel} && 0%{?rhel} < 7
|
||||||
|
# If it's RHEL6 and older
|
||||||
|
%bcond_with systemd
|
||||||
|
%else
|
||||||
|
%bcond_without systemd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if "%{_vendor}" == "debbuild"
|
||||||
|
# Set values to make debian builds work well
|
||||||
|
%global _defaultdocdir /usr/share/doc/%{name}
|
||||||
|
%global _buildshell /bin/bash
|
||||||
|
%global _lib lib/%(%{__dpkg_architecture} -qDEB_HOST_MULTIARCH)
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Compatibility macros
|
||||||
|
%{!?_tmpfilesdir:%global _tmpfilesdir %{_prefix}/lib/tmpfiles.d}
|
||||||
|
%{!?make_build:%global make_build %{__make} %{?_smp_mflags}}
|
||||||
|
|
||||||
Name: tlog
|
Name: tlog
|
||||||
Version: 14
|
Version: 12.1
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Terminal I/O logger
|
Summary: Terminal I/O logger
|
||||||
|
|
||||||
|
%if "%{_vendor}" == "debbuild"
|
||||||
|
# Required for Debian
|
||||||
|
Packager: Justin Stephenson <jstephen@redhat.com>
|
||||||
|
Group: admin
|
||||||
|
License: GPL-2.0+
|
||||||
|
%else
|
||||||
|
Group: Applications/System
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: https://github.com/Scribery/%{name}
|
|
||||||
Source: https://github.com/Scribery/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
|
||||||
|
|
||||||
BuildRequires: gcc
|
|
||||||
BuildRequires: json-c-devel
|
|
||||||
BuildRequires: curl-devel
|
|
||||||
BuildRequires: m4
|
|
||||||
BuildRequires: libutempter-devel
|
|
||||||
# If it's not RHEL6 and older
|
|
||||||
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
|
|
||||||
BuildRequires: systemd-devel
|
|
||||||
BuildRequires: systemd-units
|
|
||||||
%endif
|
%endif
|
||||||
Requires(post): sed
|
|
||||||
Requires(postun): sed
|
|
||||||
|
|
||||||
|
URL: https://github.com/Scribery/%{name}
|
||||||
|
Source: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: libtool
|
||||||
|
BuildRequires: m4
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
|
%if "%{_vendor}" == "debbuild"
|
||||||
|
BuildRequires: libjson-c-dev
|
||||||
|
BuildRequires: libcurl4-gnutls-dev
|
||||||
|
BuildRequires: libutempter-dev
|
||||||
|
# Debian/Ubuntu doesn't automatically pull this in...
|
||||||
|
BuildRequires: pkg-config
|
||||||
|
|
||||||
|
%if %{with systemd}
|
||||||
|
BuildRequires: libsystemd-dev
|
||||||
|
# Expanded form of systemd_requires macro
|
||||||
|
Requires: systemd-sysv
|
||||||
|
Requires(preun): systemd
|
||||||
|
Requires(post): systemd
|
||||||
|
Requires(postun): systemd
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%else
|
||||||
|
BuildRequires: pkgconfig(json-c)
|
||||||
|
BuildRequires: pkgconfig(libcurl)
|
||||||
|
%if %{defined suse_version}
|
||||||
|
BuildRequires: utempter-devel
|
||||||
|
%else
|
||||||
|
BuildRequires: libutempter-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with systemd}
|
||||||
|
BuildRequires: pkgconfig(libsystemd)
|
||||||
|
%{?systemd_requires}
|
||||||
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Tlog is a terminal I/O recording program similar to "script", but used in
|
Tlog is a terminal I/O recording program similar to "script", but used in
|
||||||
@ -27,49 +80,31 @@ place of a user's shell, starting the recording and executing the real user's
|
|||||||
shell afterwards. The recorded I/O can then be forwarded to a logging server
|
shell afterwards. The recorded I/O can then be forwarded to a logging server
|
||||||
in JSON format.
|
in JSON format.
|
||||||
|
|
||||||
%global _hardened_build 1
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# If it's not RHEL6 and older
|
%configure --disable-rpath --disable-static --enable-utempter %{!?with_systemd:--disable-journal} --docdir=%{_defaultdocdir}/%{name}
|
||||||
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
|
%make_build
|
||||||
%configure --disable-rpath --disable-static --enable-utempter
|
|
||||||
# Else, if it's RHEL6 or older
|
|
||||||
%else
|
|
||||||
%configure --disable-rpath --disable-static --disable-journal
|
|
||||||
%endif
|
|
||||||
make %{?_smp_mflags}
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make %{?_smp_mflags} check
|
%make_build check
|
||||||
|
|
||||||
%pre
|
|
||||||
getent group %{name} >/dev/null ||
|
|
||||||
groupadd -r %{name}
|
|
||||||
getent passwd %{name} >/dev/null ||
|
|
||||||
useradd -r -g %{name} -d %{_localstatedir}/run/%{name} -s /sbin/nologin \
|
|
||||||
-c "Tlog terminal I/O logger" %{name}
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=%{buildroot}
|
%make_install
|
||||||
rm %{buildroot}/%{_libdir}/*.la
|
rm %{buildroot}/%{_libdir}/*.la
|
||||||
|
|
||||||
# Remove development files as we're not doing a devel package yet
|
# Remove development files as we're not doing a devel package yet
|
||||||
rm %{buildroot}/%{_libdir}/*.so
|
rm %{buildroot}/%{_libdir}/*.so
|
||||||
rm -r %{buildroot}/usr/include/%{name}
|
rm -r %{buildroot}/usr/include/%{name}
|
||||||
|
|
||||||
# If it's not RHEL6 and older
|
%if %{with systemd}
|
||||||
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
|
|
||||||
# Create tmpfiles.d configuration for the lock dir
|
# Create tmpfiles.d configuration for the lock dir
|
||||||
mkdir -p %{buildroot}%{_tmpfilesdir}
|
mkdir -p %{buildroot}%{_tmpfilesdir}
|
||||||
{
|
{
|
||||||
echo "# Type Path Mode UID GID Age Argument"
|
echo "# Type Path Mode UID GID Age Argument"
|
||||||
echo "d /run/%{name} 0755 %{name} %{name}"
|
echo "d /run/%{name} 0755 %{name} %{name}"
|
||||||
} > %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
} > %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
||||||
# Create the lock dir
|
|
||||||
mkdir -p %{buildroot}/run
|
|
||||||
install -d -m 0755 %{buildroot}/run/%{name}
|
|
||||||
# Else, if it's RHEL6 or older
|
# Else, if it's RHEL6 or older
|
||||||
%else
|
%else
|
||||||
# Create the lock dir
|
# Create the lock dir
|
||||||
@ -88,12 +123,10 @@ rm -r %{buildroot}/usr/include/%{name}
|
|||||||
%{_datadir}/%{name}
|
%{_datadir}/%{name}
|
||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
%{_mandir}/man8/*
|
%{_mandir}/man8/*
|
||||||
# If it's not RHEL6 and older
|
%if %{with systemd}
|
||||||
%if 0%{?rhel} == 0 || 0%{?rhel} >= 7
|
%{_tmpfilesdir}/%{name}.conf
|
||||||
%config(noreplace) %{_tmpfilesdir}/%{name}.conf
|
|
||||||
%dir %attr(-,%{name},%{name}) /run/%{name}
|
|
||||||
# Else if it's RHEL6 or older
|
|
||||||
%else
|
%else
|
||||||
|
# If it's RHEL6 and older
|
||||||
%dir %attr(-,%{name},%{name}) %{_localstatedir}/run/%{name}
|
%dir %attr(-,%{name},%{name}) %{_localstatedir}/run/%{name}
|
||||||
%endif
|
%endif
|
||||||
%dir %{_sysconfdir}/%{name}
|
%dir %{_sysconfdir}/%{name}
|
||||||
@ -101,22 +134,29 @@ rm -r %{buildroot}/usr/include/%{name}
|
|||||||
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-rec-session.conf
|
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-rec-session.conf
|
||||||
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-play.conf
|
%config(noreplace) %{_sysconfdir}/%{name}/%{name}-play.conf
|
||||||
|
|
||||||
|
%pre
|
||||||
|
getent group %{name} >/dev/null ||
|
||||||
|
groupadd -r %{name}
|
||||||
|
getent passwd %{name} >/dev/null ||
|
||||||
|
useradd -r -g %{name} -d %{_localstatedir}/run/%{name} -s /sbin/nologin \
|
||||||
|
-c "Tlog terminal I/O logger" %{name}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
%if 0%{?el7} || 0%{?suse_version} >= 1315
|
||||||
|
# For RHEL7 and SUSE Linux distributions, creation doesn't happen automatically
|
||||||
|
%tmpfiles_create %{name}.conf
|
||||||
|
%endif
|
||||||
|
%if 0%{?ubuntu} || 0%{?debian}
|
||||||
|
# For Debian/Ubuntu, creation doesn't happen automatically
|
||||||
|
systemd-tmpfiles --create %{name}.conf >/dev/null 2>&1 || :
|
||||||
|
%endif
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Feb 07 2024 Justin Stephenson <jstephen@redhat.com> - 14-1
|
* Thu Apr 21 2022 Justin Stephenson <jstephen@redhat.com> - 12.1
|
||||||
- Release v14
|
|
||||||
- configure: correctly handle systemd versions before 245
|
|
||||||
|
|
||||||
* Mon Apr 17 2023 Justin Stephenson <jstephen@redhat.com> - 13-1
|
|
||||||
- Update the Fedora license
|
|
||||||
- MAN: Add missing comma in tlog-rec-session.conf
|
|
||||||
|
|
||||||
* Mon May 23 2022 Justin Stephenson <jstephen@redhat.com> - 12.1
|
|
||||||
- Exit transfer loop when output fd is closed
|
- Exit transfer loop when output fd is closed
|
||||||
- Revert "Prevent infinite transfer loop on GDM login"
|
- Revert "Prevent infinite transfer loop on GDM login"
|
||||||
|
|
||||||
@ -126,15 +166,26 @@ rm -r %{buildroot}/usr/include/%{name}
|
|||||||
- tlog-play: add journal namespace support.
|
- tlog-play: add journal namespace support.
|
||||||
- tlitest: extend delay for limit-action delay test.
|
- tlitest: extend delay for limit-action delay test.
|
||||||
|
|
||||||
* Tue Apr 27 2021 Justin Stephenson <jstephen@redhat.com> - 11-1
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 11-5
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com>
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 11-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 19 2021 Justin Stephenson <jstephen@redhat.com> - 11-1
|
||||||
|
- Release v11
|
||||||
- Fire SIGCHLD after utempter_add_record since it probably eats it.
|
- Fire SIGCHLD after utempter_add_record since it probably eats it.
|
||||||
|
|
||||||
|
* Tue Jan 8 2021 Justin Stephenson <jstephen@redhat.com> - 10-1
|
||||||
|
- Release v10
|
||||||
- Correct suse rpmbuild
|
- Correct suse rpmbuild
|
||||||
- Update debbuild for travis CI
|
- Update debbuild for travis CI
|
||||||
|
|
||||||
* Thu Oct 15 2020 Justin Stephenson <jstephen@redhat.com> - 9-2
|
* Tue Oct 13 2020 Justin Stephenson <jstephen@redhat.com> - 9-1
|
||||||
- Skip utmp removal with piped IO on stdin
|
|
||||||
|
|
||||||
* Thu Oct 15 2020 Justin Stephenson <jstephen@redhat.com> - 9-1
|
|
||||||
- Release v9
|
- Release v9
|
||||||
- Add libutempter support
|
- Add libutempter support
|
||||||
- Require journal match filter
|
- Require journal match filter
|
||||||
@ -143,18 +194,27 @@ rm -r %{buildroot}/usr/include/%{name}
|
|||||||
- Add "time" real clock timestamp message field
|
- Add "time" real clock timestamp message field
|
||||||
- Various upstream CI improvements
|
- Various upstream CI improvements
|
||||||
|
|
||||||
* Tue May 26 2020 Justin Stephenson <jstephen@redhat.com> - 8-2
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 8-3
|
||||||
- Test fixups from v8
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
* Thu May 21 2020 Justin Stephenson <jstephen@redhat.com> - 8-1
|
* Fri May 22 2020 Justin Stephenson <jstephen@redhat.com> - 8-2
|
||||||
|
- Minor test fixups
|
||||||
|
|
||||||
|
* Tue May 19 2020 Justin Stephenson <jstephen@redhat.com> - 8-1
|
||||||
- Release v8
|
- Release v8
|
||||||
- Spec file fixes for EL6
|
- Spec file fixes for EL6
|
||||||
- Spec file improvements for Debian/Ubuntu pkg-config
|
- Spec file improvements for Debian/Ubuntu pkg-config
|
||||||
- Tlog-play improve authentication options
|
- Tlog-play improve authentication options
|
||||||
- Handle piped in I/O from stdin and improve the main recording transfer exit
|
- Handle piped in I/O from stdin and improve the main recording
|
||||||
condition.
|
transfer exit condition.
|
||||||
- Use empty string on hostname resolution failure
|
- Use empty string on hostname resolution failure
|
||||||
|
|
||||||
|
* Tue Apr 21 2020 Björn Esser <besser82@fedoraproject.org> - 7-3
|
||||||
|
- Rebuild (json-c)
|
||||||
|
|
||||||
|
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 7-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Tue Nov 12 2019 Justin Stephenson <jstephen@redhat.com> - 7-1
|
* Tue Nov 12 2019 Justin Stephenson <jstephen@redhat.com> - 7-1
|
||||||
- Release v7
|
- Release v7
|
||||||
- Allow tlog-play redirection of stdout
|
- Allow tlog-play redirection of stdout
|
||||||
|
Loading…
Reference in New Issue
Block a user