2017-01-06 13:43:18 +00:00
|
|
|
Name: qclib
|
2020-10-16 08:59:29 +00:00
|
|
|
Version: 2.2.1
|
|
|
|
Release: 1%{?dist}
|
2017-01-06 13:43:18 +00:00
|
|
|
Summary: Library for extraction of system information for Linux on z Systems
|
|
|
|
License: BSD
|
|
|
|
URL: http://www.ibm.com/developerworks/linux/linux390/qclib.html
|
2020-10-16 08:59:29 +00:00
|
|
|
Source0: http://public.dhe.ibm.com/software/dw/linux390/ht_src/%{name}-%{version}.tar.gz
|
2017-01-06 13:43:18 +00:00
|
|
|
ExclusiveArch: s390 s390x
|
2018-07-19 14:16:32 +00:00
|
|
|
BuildRequires: gcc
|
2017-01-06 13:43:18 +00:00
|
|
|
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
|
2018-03-12 09:39:24 +00:00
|
|
|
make V=1 CFLAGS="%{build_cflags}" LDFLAGS="%{build_ldflags}" %{?_smp_mflags} all doc
|
2017-01-06 13:43:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2020-10-16 08:59:29 +00:00
|
|
|
%make_install DOCDIR=%{_docdir}
|
2017-01-06 13:43:18 +00:00
|
|
|
make DESTDIR=%{buildroot} DOCDIR=%{_docdir} installdoc
|
|
|
|
|
2018-07-25 09:56:05 +00:00
|
|
|
|
2017-01-06 13:43:18 +00:00
|
|
|
%check
|
|
|
|
make test-sh test
|
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%dir %{_docdir}/%{name}
|
|
|
|
%license %{_docdir}/%{name}/LICENSE
|
|
|
|
%doc %{_docdir}/%{name}/README
|
2020-09-23 10:27:40 +00:00
|
|
|
%{_bindir}/zhypinfo
|
|
|
|
%{_bindir}/zname
|
2017-01-06 13:43:18 +00:00
|
|
|
%{_libdir}/libqc.so.*
|
2020-09-23 10:27:40 +00:00
|
|
|
%{_mandir}/man8/zhypinfo.8*
|
|
|
|
%{_mandir}/man8/zname.8*
|
2017-01-06 13:43:18 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc %{_docdir}/%{name}/html/
|
|
|
|
%{_libdir}/libqc*.so
|
|
|
|
%{_includedir}/query_capacity.h
|
|
|
|
|
|
|
|
%files static
|
|
|
|
%{_libdir}/libqc*.a
|
|
|
|
|
2018-07-25 09:56:05 +00:00
|
|
|
|
2017-01-06 13:43:18 +00:00
|
|
|
%changelog
|
2020-10-16 08:59:29 +00:00
|
|
|
* Fri Oct 16 2020 Dan Horák <dan[at]danny.cz> - 2.2.1-1
|
|
|
|
- updated to 2.2.1
|
|
|
|
|
2020-09-24 12:17:20 +00:00
|
|
|
* Thu Sep 24 2020 Dan Horák <dan[at]danny.cz> - 2.2.0-2
|
|
|
|
- fix linking
|
|
|
|
|
2020-09-23 10:27:40 +00:00
|
|
|
* Wed Sep 23 2020 Dan Horák <dan[at]danny.cz> - 2.2.0-1
|
|
|
|
- updated to 2.2.0
|
|
|
|
|
2020-07-29 04:58:57 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-04-22 08:12:25 +00:00
|
|
|
* Wed Apr 22 2020 Dan Horák <dan[at]danny.cz> - 2.1.0-1
|
|
|
|
- updated to 2.1.0
|
|
|
|
|
2020-01-30 16:39:08 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-13 14:04:49 +00:00
|
|
|
* Mon Jan 13 2020 Dan Horák <dan[at]danny.cz> - 2.0.1-1
|
|
|
|
- updated to 2.0.1
|
|
|
|
|
2019-11-19 09:55:35 +00:00
|
|
|
* Tue Nov 19 2019 Dan Horák <dan[at]danny.cz> - 2.0.0-1
|
|
|
|
- updated to 2.0.0
|
|
|
|
|
2019-07-26 17:33:00 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-02 10:28:08 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-25 09:56:05 +00:00
|
|
|
* Wed Jul 25 2018 Dan Horák <dan[at]danny.cz> - 1.4.1-1
|
|
|
|
- updated to 1.4.1
|
|
|
|
|
2018-07-14 02:58:02 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-04-19 12:13:26 +00:00
|
|
|
* Thu Apr 19 2018 Dan Horák <dan[at]danny.cz> - 1.4.0-1
|
2018-04-19 12:11:58 +00:00
|
|
|
- updated to 1.4.0
|
|
|
|
|
2018-03-12 09:39:24 +00:00
|
|
|
* Mon Mar 12 2018 Dan Horák <dan[at]danny.cz> - 1.3.1-3
|
|
|
|
- fix LDFLAGS injection (#1552658)
|
|
|
|
|
2018-02-09 12:08:09 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-01-31 09:08:22 +00:00
|
|
|
* Wed Jan 31 2018 Dan Horák <dan[at]danny.cz> - 1.3.1-1
|
|
|
|
- updated to 1.3.1
|
|
|
|
|
2017-12-04 13:53:25 +00:00
|
|
|
* Mon Dec 04 2017 Dan Horák <dan[at]danny.cz> - 1.3.0-1
|
|
|
|
- updated to 1.3.0
|
|
|
|
|
2017-08-03 07:09:18 +00:00
|
|
|
* 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
|
|
|
|
|
2017-07-27 12:33:13 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 11:10:33 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-06 13:43:18 +00:00
|
|
|
* Mon Oct 31 2016 Rafael dos Santos <rdossant@redhat.com> 1.2.0-1
|
|
|
|
- Initial packaging
|