import qclib-2.3.0-2.el9
This commit is contained in:
commit
b156395dfd
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
SOURCES/qclib-2.3.0.tar.gz
|
1
.qclib.metadata
Normal file
1
.qclib.metadata
Normal file
@ -0,0 +1 @@
|
||||
38deeebe399c920165241c5835b4308d052bcf20 SOURCES/qclib-2.3.0.tar.gz
|
26
SOURCES/qclib-2.3.0-install.patch
Normal file
26
SOURCES/qclib-2.3.0-install.patch
Normal file
@ -0,0 +1,26 @@
|
||||
From 9519834a61906dafa55a332c537d68af6a9e4bec Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz>
|
||||
Date: Fri, 30 Apr 2021 09:39:39 +0200
|
||||
Subject: [PATCH] doc: fix installing README
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Dan Horák <dan@danny.cz>
|
||||
---
|
||||
Makefile | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index ec5d6df3..25a83d49 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -88,7 +88,7 @@ install: libqc.a libqc.so.$(VERSION) zhypinfo zname
|
||||
install $(INSTFLAGS) -Dm 644 zname.8 $(DESTDIR)$(MANDIR)/man8/zname.8
|
||||
install $(INSTFLAGS) -Dm 644 zhypinfo.8 $(DESTDIR)$(MANDIR)/man8/zhypinfo.8
|
||||
install $(INSTFLAGS) -Dm 644 query_capacity.h $(DESTDIR)$(INCDIR)/query_capacity.h
|
||||
- install $(INSTFLAGS) -Dm 644 README $(DESTDIR)$(DOCDIR)/qclib/README
|
||||
+ install $(INSTFLAGS) -Dm 644 README.md $(DESTDIR)$(DOCDIR)/qclib/README.md
|
||||
install $(INSTFLAGS) -Dm 644 LICENSE $(DESTDIR)$(DOCDIR)/qclib/LICENSE
|
||||
|
||||
installdoc: doc
|
161
SPECS/qclib.spec
Normal file
161
SPECS/qclib.spec
Normal file
@ -0,0 +1,161 @@
|
||||
Name: qclib
|
||||
Version: 2.3.0
|
||||
Release: 2%{?dist}
|
||||
Summary: Library for extraction of system information for Linux on z Systems
|
||||
License: BSD
|
||||
URL: https://github.com/ibm-s390-linux/qclib
|
||||
Source0: https://github.com/ibm-s390-linux/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
|
||||
# https://github.com/ibm-s390-linux/qclib/commit/52d9af246c1ba6e107e7bb202b4e109c3ad58470
|
||||
Patch0: qclib-2.3.0-install.patch
|
||||
ExclusiveArch: s390 s390x
|
||||
BuildRequires: make
|
||||
BuildRequires: gcc
|
||||
BuildRequires: glibc-static
|
||||
BuildRequires: doxygen
|
||||
|
||||
%description
|
||||
%{summary}.
|
||||
|
||||
%package devel
|
||||
Summary: Development library and headers for qclib
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
qclib provides a C API for extraction of system information for Linux on z
|
||||
Systems.
|
||||
For instance, it will provide the number of CPUs
|
||||
* on the machine (CEC, Central Electronic Complex) layer
|
||||
* on the PR/SM (Processor Resource/Systems Manager) layer, i.e. visible to
|
||||
LPARs, including LPAR groups in z/VM hosts, guests and CPU pools
|
||||
* in KVM hosts and guests
|
||||
|
||||
This allows calculating the upper limit of CPU resources a highest level guest
|
||||
can use. For example: If an LPAR on a z13 provides 4 CPUs to a z/VM hyper-visor,
|
||||
and the hyper-visor provides 8 virtual CPUs to a guest, qclib can be used to
|
||||
retrieve all of these numbers, and it can be concluded that not more capacity
|
||||
than 4 CPUs can be used by the software running in the guest.
|
||||
|
||||
This package provides the development libraries and headers for qclib.
|
||||
|
||||
%package static
|
||||
Summary: Static library for qclib
|
||||
Requires: %{name}-devel = %{version}-%{release}
|
||||
Provides: %{name}-static = %{version}-%{release}
|
||||
|
||||
%description static
|
||||
%{summary}. This package provides static libraries for qclib.
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup
|
||||
|
||||
|
||||
%build
|
||||
make V=1 CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}" %{?_smp_mflags} all doc
|
||||
|
||||
|
||||
%install
|
||||
%make_install V=1 DOCDIR=%{_docdir}
|
||||
make DESTDIR=%{buildroot} DOCDIR=%{_docdir} installdoc
|
||||
|
||||
|
||||
%check
|
||||
make test-sh test
|
||||
|
||||
|
||||
%files
|
||||
%dir %{_docdir}/%{name}
|
||||
%license %{_docdir}/%{name}/LICENSE
|
||||
%doc %{_docdir}/%{name}/README.md
|
||||
%{_bindir}/zhypinfo
|
||||
%{_bindir}/zname
|
||||
%{_libdir}/libqc.so.*
|
||||
%{_mandir}/man8/zhypinfo.8*
|
||||
%{_mandir}/man8/zname.8*
|
||||
|
||||
%files devel
|
||||
%doc %{_docdir}/%{name}/html/
|
||||
%{_libdir}/libqc*.so
|
||||
%{_includedir}/query_capacity.h
|
||||
|
||||
%files static
|
||||
%{_libdir}/libqc*.a
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.3.0-2
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Thu Jun 03 2021 Dan Horák <dan[at]danny.cz> - 2.3.0-1
|
||||
- updated to 2.3.0 (#1869549)
|
||||
- Resolves: #1869549
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.2.1-3
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.2.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Oct 16 2020 Dan Horák <dan[at]danny.cz> - 2.2.1-1
|
||||
- updated to 2.2.1
|
||||
|
||||
* Thu Sep 24 2020 Dan Horák <dan[at]danny.cz> - 2.2.0-2
|
||||
- fix linking
|
||||
|
||||
* Wed Sep 23 2020 Dan Horák <dan[at]danny.cz> - 2.2.0-1
|
||||
- updated to 2.2.0
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Apr 22 2020 Dan Horák <dan[at]danny.cz> - 2.1.0-1
|
||||
- updated to 2.1.0
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Mon Jan 13 2020 Dan Horák <dan[at]danny.cz> - 2.0.1-1
|
||||
- updated to 2.0.1
|
||||
|
||||
* Tue Nov 19 2019 Dan Horák <dan[at]danny.cz> - 2.0.0-1
|
||||
- updated to 2.0.0
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Jul 25 2018 Dan Horák <dan[at]danny.cz> - 1.4.1-1
|
||||
- updated to 1.4.1
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Apr 19 2018 Dan Horák <dan[at]danny.cz> - 1.4.0-1
|
||||
- updated to 1.4.0
|
||||
|
||||
* Mon Mar 12 2018 Dan Horák <dan[at]danny.cz> - 1.3.1-3
|
||||
- fix LDFLAGS injection (#1552658)
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jan 31 2018 Dan Horák <dan[at]danny.cz> - 1.3.1-1
|
||||
- updated to 1.3.1
|
||||
|
||||
* Mon Dec 04 2017 Dan Horák <dan[at]danny.cz> - 1.3.0-1
|
||||
- updated to 1.3.0
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Mon Oct 31 2016 Rafael dos Santos <rdossant@redhat.com> 1.2.0-1
|
||||
- Initial packaging
|
Loading…
Reference in New Issue
Block a user