SHA256
1
0
forked from pool/liblogging

8 Commits

Author SHA256 Message Date
a756cf8fdd Accepting request 1277702 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1277702
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/liblogging?expand=0&rev=17
2025-05-23 12:29:22 +00:00
f044ca3fb5 use gcc 13 for code 15
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/liblogging?expand=0&rev=39
2025-05-15 10:56:13 +00:00
cc2a88cf29 use default gcc for SLFO
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/liblogging?expand=0&rev=38
2025-05-15 10:33:49 +00:00
da3a454e55 use gcc14 for SLFO
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/liblogging?expand=0&rev=37
2025-05-15 10:15:50 +00:00
73b6cfd0a7 use gcc14 for SLFO
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/liblogging?expand=0&rev=36
2025-05-15 07:58:20 +00:00
71e1794f16 fix build dependencies for SLFO
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/liblogging?expand=0&rev=35
2025-05-14 07:55:38 +00:00
2870a5fadf Accepting request 1273296 from devel:libraries:c_c++
OBS-URL: https://build.opensuse.org/request/show/1273296
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/liblogging?expand=0&rev=16
2025-04-30 17:02:34 +00:00
54b1509153 fix Leap 16 build
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/liblogging?expand=0&rev=33
2025-04-29 06:11:18 +00:00
2 changed files with 23 additions and 5 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Wed May 14 06:20:53 UTC 2025 - Thomas Blume <Thomas.Blume@suse.com>
- use gcc13 for Code 15
- Use python3-docutils for Code 16
-------------------------------------------------------------------
Fri Apr 18 11:35:35 UTC 2025 - Max Lin <mlin@suse.com>
- Compile with gcc15 instead of gcc14
* gcc14 is not availalbe in the Leap16 codestream
-------------------------------------------------------------------
Wed Jun 19 08:29:24 UTC 2024 - Thomas Blume <Thomas.Blume@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package liblogging
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -29,13 +29,16 @@ URL: http://www.liblogging.org/
Source0: http://download.rsyslog.com/liblogging/%{name}-%{version}.tar.gz
Patch0: 0001-support-build-with-gcc-14.patch
BuildRequires: dos2unix
BuildRequires: gcc14
%if 0%{?is_opensuse} && 0%{?suse_version} < 1600
%global force_gcc_version 13
%endif
BuildRequires: gcc%{?force_gcc_version}
BuildRequires: pkgconfig >= 0.9.0
%if %{with_rst2man}
%if 0%{?is_opensuse}
BuildRequires: python3-docutils
%else
%if 0%{?suse_version} < 1600
BuildRequires: python-docutils
%else
BuildRequires: python3-docutils
%endif
%endif
%if %{with_systemd_journal}
@@ -76,6 +79,9 @@ developing programs which use liblogging library.
%autopatch -p1
%build
%if 0%{?force_gcc_version}
export CC="gcc-%{?force_gcc_version}"
%endif
%configure \
--disable-static \
--enable-rfc3195 \