Accepting request 42078 from home:lmuelle:branches:network:utilities
Copy from home:lmuelle:branches:network:utilities/netcat-openbsd via accept of submit request 42078 revision 2. Request was accepted with message: reviewed ok. OBS-URL: https://build.opensuse.org/request/show/42078 OBS-URL: https://build.opensuse.org/package/show/network:utilities/netcat-openbsd?expand=0&rev=6
This commit is contained in:
parent
055cfd5a71
commit
c3997f44b9
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 25 16:55:06 UTC 2010 - lmuelle@suse.de
|
||||||
|
|
||||||
|
- Use update-alternatives to set netcat symbolic links for compatibility.
|
||||||
|
- Provides and obsoltes netcat.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 28 16:27:34 UTC 2010 - cristian.rodriguez@opensuse.org
|
Fri May 28 16:27:34 UTC 2010 - cristian.rodriguez@opensuse.org
|
||||||
|
|
||||||
|
@ -25,13 +25,14 @@ Release: 67
|
|||||||
License: BSD3c
|
License: BSD3c
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: cmake glib2-devel quilt
|
BuildRequires: cmake glib2-devel quilt
|
||||||
|
PreReq: update-alternatives
|
||||||
Group: Productivity/Networking/Other
|
Group: Productivity/Networking/Other
|
||||||
Summary: TCP/IP swiss army knife
|
Summary: TCP/IP swiss army knife
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
Source1: CMakeLists.txt
|
Source1: CMakeLists.txt
|
||||||
Patch0: netcat-openbsd_1.89-3ubuntu2.diff.gz
|
Patch0: netcat-openbsd_1.89-3ubuntu2.diff.gz
|
||||||
Provides: nc6 = %{version}
|
Provides: nc6 = %{version} netcat
|
||||||
Obsoletes: nc6 <= 1.0
|
Obsoletes: nc6 <= 1.0 netcat <= 1.10
|
||||||
|
|
||||||
%description
|
%description
|
||||||
A simple Unix utility which reads and writes data across network
|
A simple Unix utility which reads and writes data across network
|
||||||
@ -65,6 +66,13 @@ cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} .
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
mkdir -p \
|
||||||
|
${RPM_BUILD_ROOT}/etc/alternatives
|
||||||
|
touch \
|
||||||
|
${RPM_BUILD_ROOT}/etc/alternatives/netcat \
|
||||||
|
${RPM_BUILD_ROOT}/etc/alternatives/netcat.1.gz
|
||||||
|
%{__ln_s} -f %{_bindir}/nc ${RPM_BUILD_ROOT}/%{_bindir}/netcat
|
||||||
|
%{__ln_s} -f nc.1.gz ${RPM_BUILD_ROOT}/%{_mandir}/man1/netcat.1.gz
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf "$RPM_BUILD_ROOT"
|
rm -rf "$RPM_BUILD_ROOT"
|
||||||
@ -72,6 +80,21 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/nc
|
%{_bindir}/nc
|
||||||
|
%{_bindir}/netcat
|
||||||
%{_mandir}/man1/nc.1.gz
|
%{_mandir}/man1/nc.1.gz
|
||||||
|
%{_mandir}/man1/netcat.1.gz
|
||||||
|
%ghost /etc/alternatives/netcat
|
||||||
|
%ghost /etc/alternatives/netcat.1.gz
|
||||||
|
|
||||||
|
%post
|
||||||
|
/usr/sbin/update-alternatives --install \
|
||||||
|
%{_bindir}/netcat netcat %{_bindir}/nc 10 \
|
||||||
|
--slave %{_mandir}/man1/netcat.1.gz netcat.1.gz %{_mandir}/man1/nc.1.gz
|
||||||
|
|
||||||
|
%preun
|
||||||
|
if [ "$1" = 0 ] ; then
|
||||||
|
/usr/sbin/update-alternatives --remove \
|
||||||
|
netcat %{_bindir}/nc
|
||||||
|
fi
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user