osc copypac from project:home:jhli package:ipmctl revision:24
OBS-URL: https://build.opensuse.org/package/show/hardware:nvdimm/ipmctl?expand=0&rev=1
This commit is contained in:
commit
31516c9beb
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
ipmctl-01.00.00.3091.tar.gz
Normal file
3
ipmctl-01.00.00.3091.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5deb0b576f2293d588b523696988e4067c4747a067745ac4ca02a511bd7fb867
|
||||
size 10606714
|
12
ipmctl.changes
Normal file
12
ipmctl.changes
Normal file
@ -0,0 +1,12 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 08 07:28:13 UTC 2018 - juston.li@intel.com
|
||||
|
||||
- Release v01.00.00.3091
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 01 05:39:07 UTC 2018 - juston.li@intel.com
|
||||
|
||||
- Release v01.00.00.3083
|
||||
-------------------------------------------------------------------
|
||||
Wed May 30 09:06:48 UTC 2018 - juston.li@intel.com
|
||||
|
||||
- Initial release v01.00.00.3072
|
133
ipmctl.spec
Normal file
133
ipmctl.spec
Normal file
@ -0,0 +1,133 @@
|
||||
%define _unpackaged_files_terminate_build 0
|
||||
|
||||
Name: ipmctl
|
||||
Version: 01.00.00.3091
|
||||
Release: 1%{?dist}
|
||||
Summary: Utility for managing Intel Optane DC persistent memory modules
|
||||
License: BSD-3-Clause
|
||||
Group: System/Management
|
||||
URL: https://github.com/intel/ipmctl
|
||||
Source: https://github.com/intel/ipmctl/releases/download/v%{version}/%{name}-%{version}.tar.gz
|
||||
ExclusiveArch: x86_64
|
||||
|
||||
Requires: libipmctl2%{?_isa} = %{version}-%{release}
|
||||
BuildRequires: pkgconfig(libndctl)
|
||||
BuildRequires: cmake
|
||||
BuildRequires: python2
|
||||
BuildRequires: gcc-c++
|
||||
Obsoletes: ixpdimm-cli < 01.00.00.3000
|
||||
|
||||
%description
|
||||
Utility for managing Intel Optane DC persistent memory modules
|
||||
Supports functionality to:
|
||||
Discover PMMs on the platform.
|
||||
Provision the platform memory configuration.
|
||||
View and update the firmware on PMMs.
|
||||
Configure data-at-rest security on PMMs.
|
||||
Monitor PMM health.
|
||||
Track performance of PMMs.
|
||||
Debug and troubleshoot PMMs.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
%package -n ipmctl-monitor
|
||||
Summary: Daemon for monitoring the status of Intel PMM
|
||||
Group: System/Monitoring
|
||||
Requires: libipmctl2%{?_isa} = %{version}-%{release}
|
||||
%{?systemd_requires}
|
||||
BuildRequires: systemd
|
||||
BuildRequires: systemd-rpm-macros
|
||||
Obsoletes: ixpdimm-monitor < 01.00.00.3000
|
||||
|
||||
%description -n ipmctl-monitor
|
||||
A monitor daemon for monitoring the health and status of Intel Optane DC persistent memory modules
|
||||
|
||||
%package -n libipmctl2
|
||||
Summary: Library for Intel PMM management
|
||||
Group: System/Libraries
|
||||
Requires: libndctl6 >= 58.2
|
||||
Obsoletes: ixpdimm_sw < 01.00.00.3000
|
||||
Obsoletes: libixpdimm-common < 01.00.00.3000
|
||||
Obsoletes: libixpdimm-core < 01.00.00.3000
|
||||
Obsoletes: libixpdimm-cli < 01.00.00.3000
|
||||
Obsoletes: libixpdimm-cim < 01.00.00.3000
|
||||
Obsoletes: libixpdimm < 01.00.00.3000
|
||||
Obsoletes: ixpdimm-data < 01.00.00.3000
|
||||
|
||||
%description -n libipmctl2
|
||||
An Application Programming Interface (API) library for managing Intel Optane DC persistent memory modules.
|
||||
|
||||
%package -n libipmctl-devel
|
||||
Summary: Development packages for libipmctl
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libipmctl2%{?_isa} = %{version}-%{release}
|
||||
Obsoletes: ixpdimm-devel < 01.00.00.3000
|
||||
Obsoletes: ixpdimm_sw-devel < 01.00.00.3000
|
||||
|
||||
%description -n libipmctl-devel
|
||||
API for development of Intel Optane DC persistent memory management utilities.
|
||||
|
||||
%build
|
||||
%cmake -DBUILDNUM=%{version} -DCMAKE_INSTALL_PREFIX=/ \
|
||||
-DLINUX_PRODUCT_NAME=%{name} \
|
||||
-DCMAKE_INSTALL_LIBDIR=%{_libdir} \
|
||||
-DCMAKE_INSTALL_INCLUDEDIR=%{_includedir} \
|
||||
-DCMAKE_INSTALL_BINDIR=%{_bindir} \
|
||||
-DCMAKE_INSTALL_DATAROOTDIR=%{_datadir} \
|
||||
-DCMAKE_INSTALL_MANDIR=%{_mandir} \
|
||||
-DCMAKE_INSTALL_LOCALSTATEDIR=%{_localstatedir} \
|
||||
-DCMAKE_INSTALL_SYSCONFDIR=%{_sysconfdir} \
|
||||
-DINSTALL_UNITDIR=%{_unitdir} \
|
||||
-DRELEASE=ON \
|
||||
-DRPM_BUILD=ON
|
||||
make -f Makefile %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%{!?_cmake_version: cd build}
|
||||
make -f Makefile install DESTDIR=%{buildroot}
|
||||
|
||||
%post -n libipmctl2 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libipmctl2 -p /sbin/ldconfig
|
||||
|
||||
%pre -n ipmctl-monitor
|
||||
%service_add_pre ipmctl-monitor.service
|
||||
|
||||
%post -n ipmctl-monitor
|
||||
%service_add_post ipmctl-monitor.service
|
||||
|
||||
%preun -n ipmctl-monitor
|
||||
%service_del_preun ipmctl-monitor.service
|
||||
|
||||
%postun -n ipmctl-monitor
|
||||
%service_del_postun ipmctl-monitor.service
|
||||
|
||||
%files -n ipmctl
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/ipmctl
|
||||
|
||||
%files -n ipmctl-monitor
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/ipmctl-monitor
|
||||
%{_unitdir}/ipmctl-monitor.service
|
||||
|
||||
%files -n libipmctl2
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libipmctl.so.*
|
||||
%dir %{_datadir}/doc/ipmctl
|
||||
%doc %{_datadir}/doc/ipmctl/ipmctl_default.conf
|
||||
%config %{_sysconfdir}/ipmctl.conf
|
||||
%dir %attr(644,root,root) %{_localstatedir}/log/ipmctl
|
||||
|
||||
%files -n libipmctl-devel
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libipmctl.so
|
||||
%attr(644,root,root) %{_includedir}/nvm_types.h
|
||||
%attr(644,root,root) %{_includedir}/nvm_management.h
|
||||
%attr(644,root,root) %{_includedir}/export_api.h
|
||||
%attr(644,root,root) %{_includedir}/NvmStatusValues.h
|
||||
|
||||
%changelog
|
||||
* Wed May 02 2018 Juston Li <juston.li@intel.com> - 01.00.00.3000
|
||||
- initial spec
|
Loading…
Reference in New Issue
Block a user