forked from pool/arping2
Accepting request 76498 from home:jengelh:dev
Improved arping with RARP and bcast-ping support OBS-URL: https://build.opensuse.org/request/show/76498 OBS-URL: https://build.opensuse.org/package/show/network:utilities/arping2?expand=0&rev=1
This commit is contained in:
commit
9b78bbe1e2
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
3
arping-2.09.tar.xz
Normal file
3
arping-2.09.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:871aff21b21577f1e214252a168fb4be9481e18129ea1a0f3332187311972f44
|
||||
size 100256
|
9
arping2.changes
Normal file
9
arping2.changes
Normal file
@ -0,0 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 19 20:38:02 UTC 2011 - jengelh@medozas.de
|
||||
|
||||
- Package imported to build.opensuse.org
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 27 23:10:07 UTC 2011 - jengelh@medozas.de
|
||||
|
||||
- Adjust BuildRequires for openSUSE_11.4
|
48
arping2.spec
Normal file
48
arping2.spec
Normal file
@ -0,0 +1,48 @@
|
||||
Name: arping2
|
||||
Version: 2.09
|
||||
Release: 0
|
||||
Group: Productivity/Networking/Diagnostic
|
||||
Summary: Layer-2 Ethernet pinger
|
||||
License: GPL
|
||||
URL: http://freshmeat.net/projects/arping/
|
||||
|
||||
#Git-Clone: git://github.com/ThomasHabets/arping
|
||||
Source: arping-%version.tar.xz
|
||||
BuildRoot: %_tmppath/%name-%version-build
|
||||
%if 0%{?suse_version} <= 1130
|
||||
BuildRequires: libnet, libpcap-devel
|
||||
%else
|
||||
BuildRequires: libnet-devel, libpcap-devel
|
||||
%endif
|
||||
BuildRequires: xz
|
||||
|
||||
%description
|
||||
Arping is a util to find out it a specific IP address on the LAN is
|
||||
"taken" and what MAC address owns it. It is designed to work on
|
||||
unrouted networks and with ICMP-blocking hosts.
|
||||
|
||||
Author(s):
|
||||
----------
|
||||
Thomas Habets
|
||||
|
||||
%prep
|
||||
%setup -n arping-%version
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
b="%buildroot";
|
||||
make install DESTDIR="$b";
|
||||
# Avoid collision with iputils's inferior arping.
|
||||
mv "$b/%_sbindir"/{arping,%name};
|
||||
mv "$b/%_mandir/man8"/{arping.8,%name.8};
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%_sbindir/*
|
||||
%_mandir/*/*
|
||||
%doc README
|
||||
|
||||
%changelog
|
Loading…
Reference in New Issue
Block a user