Compare commits

2 Commits

Author SHA256 Message Date
348f2636bb Accepting request 1307221 from systemsmanagement
- Use manual instead of localonly in _service
- Build against CZMQ only for OpenSUSE, this lib is not avail in
  SLE
- Update to version 1.3.8.0+git.f9a23c3:
  * 1.3.8 versioning
  * Scrubbed stale copyright notices from source
  * Update LICENSE.md

OBS-URL: https://build.opensuse.org/request/show/1307221
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libredfish?expand=0&rev=5
2025-09-26 20:24:44 +00:00
17800c2ab7 - Use manual instead of localonly in _service
- Build against CZMQ only for OpenSUSE, this lib is not avail in
  SLE
- Update to version 1.3.8.0+git.f9a23c3:
  * 1.3.8 versioning
  * Scrubbed stale copyright notices from source
  * Update LICENSE.md

OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/libredfish?expand=0&rev=11
2025-09-25 20:37:01 +00:00
7 changed files with 32 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
<services>
<service mode="localonly" name="obs_scm">
<service name="obs_scm" mode="manual">
<param name="url">https://github.com/DMTF/libredfish.git</param>
<param name="scm">git</param>
<param name="revision">main</param>
@@ -11,5 +11,5 @@
<param name="compression">xz</param>
<param name="file">*.tar</param>
</service>
<service mode="localonly" name="set_version"/>
<service name="set_version" mode="manual"/>
</services>

View File

@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/DMTF/libredfish.git</param>
<param name="changesrevision">64ca9b4c37811851a48fe882748940e785f229f4</param></service></servicedata>
<param name="changesrevision">f9a23c33d46afe15f09b604160c09a320f1c769c</param></service></servicedata>

View File

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

View File

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

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Sep 15 16:05:07 UTC 2025 - Thomas Renninger <trenn@suse.de>
- Use manual instead of localonly in _service
- Build against CZMQ only for OpenSUSE, this lib is not avail in
SLE
- Update to version 1.3.8.0+git.f9a23c3:
* 1.3.8 versioning
* Scrubbed stale copyright notices from source
* Update LICENSE.md
-------------------------------------------------------------------
Wed Feb 21 10:26:45 UTC 2024 - Thomas Renninger <trenn@suse.de>

View File

@@ -1,4 +1,4 @@
name: libredfish
version: 1.3.7.2+git.64ca9b4
mtime: 1698409806
commit: 64ca9b4c37811851a48fe882748940e785f229f4
version: 1.3.8.0+git.f9a23c3
mtime: 1745265942
commit: f9a23c33d46afe15f09b604160c09a320f1c769c

View File

@@ -14,11 +14,15 @@
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define MAJOR 1
%define CZMQ 1
%if 0%{?is_opensuse}
%define CZMQ 1
%else
%define CZMQ 0
%endif
Name: libredfish
Version: 1.3.7.2+git.64ca9b4
Version: 1.3.8.0+git.f9a23c3
Release: 0%{?dist}
Summary: Redfish C Client Library
License: BSD-3-Clause
@@ -30,16 +34,18 @@ Patch2: 0002-Make-use-of-standard-variables-for-installation.patch
Patch3: 0003-Default-to-DEBUG-builds.patch
Patch4: 0004-link-with-pthread-and-crypto.patch
BuildRequires: cmake
BuildRequires: czmq
BuildRequires: czmq-devel
BuildRequires: gcc-c++
BuildRequires: libcurl-devel
BuildRequires: libczmq4
BuildRequires: libjansson-devel
BuildRequires: libopenssl-devel
BuildRequires: libopenssl3
BuildRequires: readline-devel
Requires: readline
%if 0%{CZMQ} == 1
BuildRequires: czmq
BuildRequires: czmq-devel
BuildRequires: libczmq4
%endif
%description
libRedfish is a C client library that allows for Creation of Entities (POST), Read of Entities (GET), Update of Entities (PATCH), Deletion of Entities (DELETE), running Actions (POST), receiving events, and providing some basic query abilities.