open-isns/open-isns.spec
Lee Duncan 94e5fdccaa Accepting request 868451 from home:lee_duncan:branches:Base:System
- Update to version 0.101:
  * Updated ChangeLog for version v0.101
  * Preparing for version 0.101
  * Fix parsing of GetNextRsp
  * Added TODO to test "isnsd --init"
  * Add man page for isnssetup.
  * Fix broken server authentication initialization.
  * Update version string to "0.100".
  * Added a TODO: 'make depend' not worrking
  * libisns: remove sighold and sigrelse
  * fix compilation without deprecated OpenSSL APIs
  * socket.c: include poll.h instead of sys/poll.h for POSIX compatibility
  * Fix 586 compile issue and remove -Werror
  * Do not ignore write() return value.
  * Fix compiler issue when not in security mode
  * Ignore common build files
  This removed the need for open-isns-updates.diff.bz2 (for now), since
  those commits are in version v0.101.

OBS-URL: https://build.opensuse.org/request/show/868451
OBS-URL: https://build.opensuse.org/package/show/Base:System/open-isns?expand=0&rev=37
2021-02-01 18:46:20 +00:00

124 lines
3.7 KiB
RPMSpec

#
# spec file for package open-isns
#
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: open-isns
Summary: Partial Implementation of iSNS iSCSI registration
License: LGPL-2.1-or-later
Group: System/Kernel
Version: 0.101
Release: 0
Source: %{name}-%{version}.tar.xz
URL: https://github.com/open-iscsi/%{name}
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: glibc-devel
BuildRequires: make
BuildRequires: openssl-devel
BuildRequires: systemd-rpm-macros
%{?systemd_requires}
Requires: coreutils
Recommends: open-iscsi
%description
This is a partial implementation of the iSNS protocol (see below),
which supplies directory services for iSCSI initiators and targets.
The iSNS protocol is specified in
[RFC 4171](http://tools.ietf.org/html/rfc4171) and its purpose is to
make easier to discover, manage, and configure iSCSI devices. With
iSNS, iSCSI targets can be registered to a central iSNS server and
initiators can be configured to discover the targets by asking the
iSNS server.
%package -n open-isns-devel
Summary: Development files for open-isns
Group: Development/Libraries/C and C++
Requires: open-isns = %{version}
%description -n open-isns-devel
Files to develop an application using the open-isns library.
%prep
%setup -n %{name}-%{version}
%build
%global _lto_cflags %{?_lto_cflags} -ffat-lto-objects
autoconf
autoheader
%configure --prefix=%{_prefix} --with-security
make OPTFLAGS="%{optflags}"
%install
make DESTDIR="%{buildroot}" install
if [ ! -d "%{buildroot}/usr/sbin" ] ; then
mkdir -p %{buildroot}/usr/sbin
fi
ln -sf /usr/sbin/service %{buildroot}/usr/sbin/rcisnsd
make DESTDIR="%{buildroot}" install_hdrs install_lib
install -m 755 isnssetup %{buildroot}%{_sbindir}
%post
%{service_add_post isnsd.socket isnsd.service}
%postun
%{service_del_postun isnsd.socket isnsd.service}
%pre
%{service_add_pre isnsd.socket isnsd.service}
%preun
%{service_del_preun isnsd.socket isnsd.service}
%files
%defattr(-,root,root)
%{_sbindir}/isnsd
%{_sbindir}/isnsadm
%{_sbindir}/isnsdd
%{_sbindir}/isnssetup
%dir %{_sysconfdir}/isns
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/isns/isnsd.conf
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/isns/isnsadm.conf
%attr(0600,root,root) %config(noreplace) %{_sysconfdir}/isns/isnsdd.conf
%{_sbindir}/rcisnsd
%license COPYING
%doc HACKING README TODO
%doc %{_mandir}/man8/isnsd.8%{?ext_man}
%doc %{_mandir}/man8/isnsadm.8%{?ext_man}
%doc %{_mandir}/man8/isnsdd.8%{?ext_man}
%doc %{_mandir}/man8/isnssetup.8%{?ext_man}
%doc %{_mandir}/man5/isns_config.5%{?ext_man}
%{_unitdir}/isnsd.service
%{_unitdir}/isnsd.socket
%files -n open-isns-devel
%defattr(-,root,root)
%dir %{_includedir}/libisns
%{_includedir}/libisns/attrs.h
%{_includedir}/libisns/buffer.h
%{_includedir}/libisns/isns.h
%{_includedir}/libisns/isns-proto.h
%{_includedir}/libisns/message.h
%{_includedir}/libisns/paths.h
%{_includedir}/libisns/source.h
%{_includedir}/libisns/types.h
%{_includedir}/libisns/util.h
%{_libdir}/libisns.a
%changelog