libnfs package creation
Signed-off-by: basebuilder_pel7ppc64bebuilder0 <basebuilder@powerel.org>master
parent
d21479942e
commit
8d8e273b67
|
@ -0,0 +1,107 @@
|
|||
Name: libnfs
|
||||
Version: 1.11.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Client library for accessing NFS shares over a network
|
||||
# The library is licensed as LGPLv2+, the protocol definition is BSD
|
||||
License: LGPLv2+ and BSD
|
||||
URL: https://github.com/sahlberg/libnfs
|
||||
Source0: https://sites.google.com/site/libnfstarballs/li/libnfs-%{version}.tar.gz
|
||||
|
||||
BuildRequires: pkgconfig
|
||||
|
||||
%description
|
||||
The libnfs package contains a library of functions for accessing NFSv2
|
||||
and NFSv3 servers from user space. It provides a low-level, asynchronous
|
||||
RPC library for accessing NFS protocols, an asynchronous library with
|
||||
POSIX-like VFS functions, and a synchronous library with POSIX-like VFS
|
||||
functions.
|
||||
|
||||
|
||||
%package devel
|
||||
Summary: Development files for libnfs
|
||||
# The library is licensed as LGPLv2+, the protocol definition is BSD
|
||||
# and the example source code is GPLv3+.
|
||||
License: LGPLv2+ and BSD and GPLv3+
|
||||
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The libnfs-devel package contains libraries and header files for
|
||||
developing applications that use libnfs.
|
||||
|
||||
|
||||
%package utils
|
||||
Summary: Utilities for accessing NFS servers
|
||||
License: GPLv3+
|
||||
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description utils
|
||||
The libnfs-utils package contains simple client programs for accessing
|
||||
NFS servers using libnfs.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure --disable-static --disable-examples --disable-werror
|
||||
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
||||
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||
make %{?_smp_mflags} V=1
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
rm -f %{buildroot}%{_libdir}/*.la
|
||||
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%files
|
||||
%{_libdir}/libnfs.so.*
|
||||
%doc README
|
||||
%license COPYING
|
||||
%license LICENCE-*.txt
|
||||
|
||||
%files devel
|
||||
%{_libdir}/libnfs.so
|
||||
%{_includedir}/nfsc/
|
||||
%{_libdir}/pkgconfig/libnfs.pc
|
||||
%doc examples/*.c
|
||||
|
||||
%files utils
|
||||
%{_bindir}/nfs-*
|
||||
%{_mandir}/man1/nfs-*.1*
|
||||
|
||||
%changelog
|
||||
* Sat Mar 17 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.11.0-1
|
||||
- Update to 1.11.0 (version 2.0.0 is also available)
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.8-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.9.8-6
|
||||
- Switch to %%ldconfig_scriptlets
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.8-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.8-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Thu Aug 06 2015 Ross Lagerwall <rosslagerwall@gmail.com> 1.9.8-1
|
||||
- Bump to 1.9.8.
|
||||
- Include examples and licence terms.
|
||||
|
||||
* Sun Mar 29 2015 Ross Lagerwall <rosslagerwall@gmail.com> 1.9.7-2
|
||||
- Update packaging after review.
|
||||
|
||||
* Sun Mar 01 2015 Ross Lagerwall <rosslagerwall@gmail.com> 1.9.7-1
|
||||
- Initial packaging
|
Loading…
Reference in New Issue