3d92848684
Copy from network:utilities/fping based on submit request 24684 from user puzel OBS-URL: https://build.opensuse.org/request/show/24684 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fping?expand=0&rev=6
85 lines
2.5 KiB
RPMSpec
85 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package fping (Version 2.4b2)
|
|
#
|
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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 http://bugs.opensuse.org/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: fping
|
|
Url: http://www.fping.com
|
|
License: MIT License (or similar)
|
|
Group: Productivity/Networking/Diagnostic
|
|
AutoReqProv: on
|
|
Version: 2.4b2
|
|
Release: 139
|
|
Summary: A Program to Ping Multiple Hosts
|
|
# IPv6 support patch: http://unfix.org/projects/ipv6/
|
|
Source: %{name}-%{version}_to-ipv6.tar.bz2
|
|
Patch: fping-2.4b2-fixwarnings.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
FPing is a ping-like program that uses the Internet Control Message
|
|
Protocol (ICMP) echo request to determine if a target host is
|
|
responding. FPing differs from ping in that you can specify any number
|
|
of targets on the command line or specify a file containing a list of
|
|
targets to ping. Instead of sending pings to one target until it times
|
|
out or replies, FPing sends a ping packet and moves on to the next
|
|
target in a round-robin fashion.
|
|
|
|
In the default mode, if a target replies, it is noted and removed from
|
|
the list of targets to check. If a target does not respond within a
|
|
certain time limit or retry limit, it is designated as unreachable.
|
|
FPing also supports sending a specified number of pings to a target or
|
|
looping indefinitely (as in ping).
|
|
|
|
Unlike ping, FPing is meant to be used in scripts. Its output is
|
|
designed to be easy to parse.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Roland Schemers <schemers@stanford.edu>
|
|
RL "Bob" Morgan <morgan@stanford.edu>
|
|
|
|
%prep
|
|
%setup -n fping-2.4b2_to-ipv6
|
|
%patch
|
|
# fix the Changelog
|
|
tr -d '\r' < ChangeLog > ChangeLog.new
|
|
mv ChangeLog.new ChangeLog
|
|
chmod -x COPYING README
|
|
|
|
%build
|
|
%configure
|
|
make %{?jobs:-j%jobs}
|
|
|
|
%install
|
|
%makeinstall
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc ChangeLog COPYING README
|
|
%doc %{_mandir}/man8/fping.8.gz
|
|
%_sbindir/fping
|
|
%_sbindir/fping6
|
|
|
|
%changelog
|