forked from pool/log4cpp
- update to version 1.1.4 * fix for bug 152: use timespec and clock_settime for c++11 and higher; use stime for glibc version lower than 2.31; none for other cases * Replace obsolete auto_ptr removed in C++17 with newer unique_ptr since C++11 * Replace older Non-throwing dynamic exception specification throw() removed in C++20 with newer noexcept since C++11 * Patch #49 C99 compatibility fix for snprintf configure check * va_copy is here since c++11; fallback to simple copy if standard is not specified or less than c++11 - Replace _service with full URL in Source OBS-URL: https://build.opensuse.org/request/show/1136382 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/log4cpp?expand=0&rev=15
99 lines
2.8 KiB
RPMSpec
99 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package log4cpp
|
|
#
|
|
# Copyright (c) 2024 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 sonum 5
|
|
|
|
Name: log4cpp
|
|
Version: 1.1.4
|
|
Release: 0
|
|
Summary: C++ logging library
|
|
License: LGPL-2.1-only
|
|
Group: Development/Languages/C and C++
|
|
URL: https://log4cpp.sourceforge.net/
|
|
Source: https://downloads.sourceforge.net/project/log4cpp/log4cpp-1.1.x%20%28new%29/log4cpp-1.1/log4cpp-%{version}.tar.gz
|
|
BuildRequires: doxygen
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkg-config
|
|
|
|
%define libname lib%{name}%{sonum}
|
|
|
|
%description
|
|
Log for C++ is a library of classes for flexible logging to files,
|
|
syslog, and other destinations. It is modeled after the Log for Java
|
|
library and stays as close to its API as is reasonable.
|
|
|
|
%package -n %{libname}
|
|
Summary: Logging for C++
|
|
Group: System/Libraries
|
|
|
|
%description -n %{libname}
|
|
Logging facilities providing library.
|
|
|
|
%package devel
|
|
Summary: Development tools for Log for C++
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{libname} = %{version}
|
|
|
|
%description devel
|
|
The %{name}-devel package contains the static libraries and header files
|
|
needed for development with %{name}.
|
|
|
|
%package doc
|
|
Summary: HTML formatted API documention for Log for C++
|
|
Group: Documentation/HTML
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
The %{name}-doc package contains HTML formatted API documention generated by
|
|
the popular doxygen documentation generation tool.
|
|
|
|
%prep
|
|
%setup -q -n %{name}
|
|
|
|
%build
|
|
%configure --enable-doxygen --disable-static
|
|
%make_build
|
|
|
|
%install
|
|
%make_install mandir="%{buildroot}/%{_mandir}" docdir="%{buildroot}/%{_docdir}/%{name}"
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
%fdupes -s %{buildroot}/%{_docdir}/%{name}/api
|
|
|
|
%post -n %{libname} -p /sbin/ldconfig
|
|
%postun -n %{libname} -p /sbin/ldconfig
|
|
|
|
%files -n %{libname}
|
|
%{_libdir}/*.so.%{sonum}*
|
|
|
|
%files devel
|
|
%{_includedir}/%{name}
|
|
%{_mandir}/man3/%{name}*.3%{?ext_man}
|
|
%{_bindir}/%{name}-config
|
|
%{_libdir}/*.so
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
%dir %{_datadir}/aclocal
|
|
%attr(644,root,root) %{_datadir}/aclocal/%{name}.m4
|
|
|
|
%files doc
|
|
%doc AUTHORS ChangeLog NEWS README THANKS
|
|
%doc %{_docdir}/%{name}
|
|
%license COPYING
|
|
|
|
%changelog
|