From 1fa0ab92c936331a8a064bf19c379925cd5c81e7 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 07:34:20 +0100 Subject: [PATCH] package created using the webbuild interface [release 64.1-1mamba;Thu Feb 28 2019] --- README.md | 2 + ndctl.spec | 110 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 ndctl.spec diff --git a/README.md b/README.md index a56791d..cd0e5a1 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ndctl +Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel. + diff --git a/ndctl.spec b/ndctl.spec new file mode 100644 index 0000000..f7ef5ab --- /dev/null +++ b/ndctl.spec @@ -0,0 +1,110 @@ +Name: ndctl +Version: 64.1 +Release: 1mamba +Summary: Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel +Group: System/Kernel and Hardware +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/pmem/ndctl.git +## GITSOURCE https://github.com/pmem/ndctl.git v64.1 +Source: https://github.com/pmem/ndctl.git/v%{version}/ndctl-%{version}.tar.bz2 +License: LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libjson-c-devel +BuildRequires: libkeyutils-devel +BuildRequires: libkmod-devel +BuildRequires: libudev-devel +BuildRequires: libuuid-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Utility library for managing the libnvdimm (non-volatile memory device) sub-system in the Linux kernel. + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q + +%build +./autogen.sh +%configure \ + --disable-docs + +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post +%systemd_post ndctl-monitor +: + +%postun +%systemd_postun ndctl-monitor +: + +%preun +%systemd_preun ndctl-monitor +: + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_sysconfdir}/modprobe.d/nvdimm-security.conf +%{_sysconfdir}/ndctl/keys/keys.readme +%{_sysconfdir}/ndctl/monitor.conf +%{_unitdir}/ndctl-monitor.service +%{_bindir}/daxctl +%{_bindir}/ndctl +%{_datadir}/bash-completion/completions/ndctl +%{_datadir}/daxctl/daxctl.conf + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libdaxctl.so.* +%{_libdir}/libndctl.so.* +%doc COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/daxctl/libdaxctl.h +%{_includedir}/ndctl/libdaxctl.h +%{_includedir}/ndctl/libndctl.h +%{_includedir}/ndctl/ndctl.h +%{_libdir}/libdaxctl.la +%{_libdir}/libdaxctl.so +%{_libdir}/libndctl.la +%{_libdir}/libndctl.so +%{_libdir}/pkgconfig/libdaxctl.pc +%{_libdir}/pkgconfig/libndctl.pc +%doc README.md + +%changelog +* Thu Feb 28 2019 Silvan Calarco 64.1-1mamba +- package created using the webbuild interface