Most recent goaccess package added

This commit is contained in:
2020-08-28 14:11:42 +02:00
parent 353ef482e2
commit 138f3b9e12

View File

@@ -1,14 +1,10 @@
Name: goaccess Name: goaccess
Version: 1.2 Version: 1.4.1
Release: 3%{?dist} Release: 1%{?dist}
Summary: Real-time web log analyzer and interactive viewer Summary: Real-time web log analyzer and interactive viewer
License: GPLv2+ License: GPLv2+
URL: https://goaccess.io/ URL: https://goaccess.io/
Source0: http://tar.goaccess.io/%{name}-%{version}.tar.gz Source0: http://tar.goaccess.io/%{name}-%{version}.tar.gz
Source1: %{name}.service
Source2: %{name}-get-logs.pl
Source3: %{name}-sysconfig
Source4: %{name}-systemd.conf
BuildRequires: autoconf BuildRequires: autoconf
BuildRequires: automake BuildRequires: automake
BuildRequires: gcc BuildRequires: gcc
@@ -17,11 +13,10 @@ BuildRequires: ncurses-devel
BuildRequires: tokyocabinet-devel BuildRequires: tokyocabinet-devel
BuildRequires: zlib-devel BuildRequires: zlib-devel
BuildRequires: bzip2-devel BuildRequires: bzip2-devel
BuildRequires: gettext-devel
%if 0%{?using_systemd} BuildRequires: libmaxminddb-devel
Requires(post): systemd-units %if %{with openssl}
Requires(preun): systemd-units BuildRequires: openssl-devel
Requires(postun): systemd-units
%endif %endif
%description %description
@@ -72,59 +67,28 @@ sed -i '/-pthread/d' configure.ac
%build %build
autoreconf -fiv autoreconf -fiv
%configure \ %configure \
--enable-debug \ --enable-debug \
--enable-geoip=legacy \ --enable-geoip=legacy \
--enable-utf8 \ --enable-geoip=mmdb \
--enable-tcb=btree \ --enable-utf8 \
--with-getline \ --with-getline \
--with-openssl=%{_prefix} \ --with-openssl
--enable-bzip \
--enable-zlib
%make_build %make_build
%install %install
%make_install %make_install
# install additional systemd service %find_lang %{name}
install -D %{S:2} %{buildroot}%{_libexecdir}/%{name}-get-logs.pl
install -D %{S:1} %{buildroot}%{_unitdir}/%{name}.service
install -D %{S:3} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
install -D %{S:4} %{buildroot}%{_sysconfdir}/%{name}-systemd.conf
install -d %{buildroot}%{_var}/www/html/%{name}
%post %files -f %{name}.lang
%if 0%{?using_systemd}
%if 0%{?systemd_macro_scriptlet}
%systemd_post %{name}.service
%endif
%endif
%postun
%if 0%{?using_systemd}
%if 0%{?systemd_macro_scriptlet}
%systemd_preun %{name}.service
%endif
%endif
%files
%license COPYING %license COPYING
%config(noreplace) %{_sysconfdir}/%{name}.conf %config(noreplace) %{_sysconfdir}/%{name}/%{name}.conf
%config(noreplace) %{_sysconfdir}/%{name}/browsers.list
%config(noreplace) %{_sysconfdir}/%{name}/podcast.list
%{_bindir}/%{name} %{_bindir}/%{name}
%{_mandir}/man1/%{name}.1* %{_mandir}/man1/%{name}.1*
%{_pkgdocdir}
%{_unitdir}/%{name}.service
%dir %{_var}/www/html/%{name}
%attr(755,-,-) %{_libexecdir}/%{name}-get-logs.pl
%config() %{_sysconfdir}/sysconfig/%{name}
%config(noreplace) %{_sysconfdir}/%{name}-systemd.conf
%changelog %changelog
* Sun Jul 16 2017 Daniel Steiner <dsteiner@redhat.com> - 1.2-3 * Fri Aug 28 2020 Daniel Steiner <daniel.steiner@dsteiner.ch>
- Live status enable with systemd - mmdb enabled for new GeoLite2 dBs.
- First, initial version for Fedora 32 (1.4.1)
* Sun Jul 16 2017 Daniel Steiner <dsteiner@redhat.com> - 1.2-2
- Legacy GeoIP enabled.
* Sun Jul 16 2017 Daniel Steiner <dsteiner@redhat.com> - 1.2-1
- Initial release for Fedora 25.