1
0

3 Commits

Author SHA256 Message Date
4a69a0ec36 Accepting request 1277175 from devel:languages:misc
OBS-URL: https://build.opensuse.org/request/show/1277175
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/qore-xml-module?expand=0&rev=12
2025-05-13 18:07:19 +00:00
Sarah Kriesch
82005a7173 Tag COPYING files as %license instead of %doc
OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/qore-xml-module?expand=0&rev=40
2025-05-13 14:25:54 +00:00
Sarah Kriesch
110afdf099 - Update to version 2.0.0 with compatibility to qore 2.1.1
* support for the application catalog in Qore 2+
  * fixed serializing data with SQL NULL values
  * fixed I/O callback handling (ex: XSD callbacks)
- export CMAKE_POLICY_VERSION_MINIMUM="3.5" to ignore cmakes
  minimum version warnings (boo#1241902)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/qore-xml-module?expand=0&rev=39
2025-05-13 08:21:07 +00:00
4 changed files with 31 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:629664da68e600d6155539427afffe0cfbcb9a7ed0f914ba9c3998c91d830256
size 2909482

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a2d5203d0651c7d83d04109ecfba18452525f47e496e232ab81a03a945abc86d
size 5744232

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Tue May 13 11:38:40 UTC 2025 - Bernhard Wiedemann <bwiedemann@suse.com>
- Tag COPYING files as %license instead of %doc
-------------------------------------------------------------------
Tue May 13 10:12:03 UTC 2025 - Sarah Kriesch <sarah.kriesch@opensuse.org>
- Update to version 2.0.0 with compatibility to qore 2.1.1
* support for the application catalog in Qore 2+
* fixed serializing data with SQL NULL values
* fixed I/O callback handling (ex: XSD callbacks)
- export CMAKE_POLICY_VERSION_MINIMUM="3.5" to ignore cmakes
minimum version warnings (boo#1241902)
-------------------------------------------------------------------
Sun May 26 13:14:31 UTC 2024 - Sarah Kriesch <sarah.kriesch@opensuse.org>

View File

@@ -1,7 +1,7 @@
#
# spec file for package qore-xml-module
#
# Copyright (c) 2023 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
@@ -16,7 +16,7 @@
#
%global mod_ver 1.8.1
%global mod_ver 2.0.0
%{?_datarootdir: %global mydatarootdir %_datarootdir}
%{!?_datarootdir: %global mydatarootdir /usr/share}
@@ -65,14 +65,16 @@ Source: https://github.com/qorelanguage/module-xml/releases/download/v%{
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: /usr/bin/env
Requires: qore-module(abi)%{?_isa} = %{module_api}
BuildRequires: cmake
BuildRequires: cmake >= 3.5
BuildRequires: doxygen
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: libxml2-devel
BuildRequires: openssl-devel
BuildRequires: qore >= 1.12.4
BuildRequires: qore-devel >= 1.12.4
BuildRequires: qore >= 2.0
BuildRequires: qore-devel >= 2.0
BuildRequires: (qore-stdlib if qore >= 2.0)
%if 0%{?suse_version} || 0%{?sles_version}
BuildRequires: timezone
%else
@@ -101,9 +103,12 @@ xml module.
%doc docs/xml docs/XmlRpcHandler docs/SalesforceSoapClient docs/SaxDataProvider docs/SoapClient docs/SoapDataProvider docs/SoapHandler docs/WSDL docs/XmlRpcConnection test examples
%prep
%setup -q
%autosetup -p1
%build
# Remove cmake4 error due to not setting
# min cmake version - sflees.de
export CMAKE_POLICY_VERSION_MINIMUM=3.5
export CXXFLAGS="%{?optflags}"
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -DCMAKE_BUILD_TYPE=RELWITHDEBINFO -DCMAKE_SKIP_RPATH=1 -DCMAKE_SKIP_INSTALL_RPATH=1 -DCMAKE_SKIP_BUILD_RPATH=1 -DCMAKE_PREFIX_PATH=${_prefix}/lib64/cmake/Qore .
make %{?_smp_mflags}
@@ -121,6 +126,7 @@ make DESTDIR=%{buildroot} install %{?_smp_mflags}
%{user_module_dir}
%{_bindir}/soaputil
%{_bindir}/webdav-server
%doc COPYING.LGPL COPYING.MIT README RELEASE-NOTES AUTHORS
%license COPYING.LGPL COPYING.MIT
%doc README RELEASE-NOTES AUTHORS
%changelog