forked from pool/libredfish
- 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
97 lines
2.8 KiB
RPMSpec
97 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package libredfish
|
|
#
|
|
# 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 MAJOR 1
|
|
%define CZMQ 1
|
|
%if 0%{?is_opensuse}
|
|
%define CZMQ 1
|
|
%else
|
|
%define CZMQ 0
|
|
%endif
|
|
Name: libredfish
|
|
Version: 1.3.8.0+git.f9a23c3
|
|
Release: 0%{?dist}
|
|
Summary: Redfish C Client Library
|
|
License: BSD-3-Clause
|
|
Group: Development/Libraries/C
|
|
URL: https://github.com/DMTF/libredfish
|
|
Source0: libredfish-%{version}.tar.xz
|
|
Patch1: 0001-Add-configure_file-and-pkg-config-template.patch
|
|
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: gcc-c++
|
|
BuildRequires: libcurl-devel
|
|
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.
|
|
|
|
%package devel
|
|
Summary: Headers for building apps that use libredfish
|
|
Group: Development/Libraries/C
|
|
Requires: libredfish%{MAJOR} = %{version}
|
|
|
|
%description devel
|
|
This package contains headers required to build applications that use libredfish.
|
|
|
|
%package -n libredfish%{MAJOR}
|
|
Summary: Headers for building apps that use libredfish
|
|
Group: Development/Libraries/C
|
|
|
|
%description -n libredfish%{MAJOR}
|
|
This package contains headers required to build applications that use libredfish.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%cmake -DLIB_INSTALL_DIR=%{_libdir}
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
|
|
%check
|
|
%ctest
|
|
|
|
%post -n libredfish%{MAJOR} -p /sbin/ldconfig
|
|
|
|
%postun -n libredfish%{MAJOR} -p /sbin/ldconfig
|
|
|
|
%files
|
|
%{_bindir}/*
|
|
|
|
%files -n libredfish%{MAJOR}
|
|
%{_libdir}/libredfish.so.%{MAJOR}*
|
|
|
|
%files devel
|
|
%defattr(0644,root,root)
|
|
%{_libdir}/libredfish.so
|
|
%{_includedir}/*
|
|
|
|
%changelog
|