- fix license, is GPL-3.0+
OBS-URL: https://build.opensuse.org/package/show/network:utilities/scamper?expand=0&rev=6
This commit is contained in:
parent
6083158e3d
commit
53a6ceecfb
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:78eeabed8a4161a2238d02dac4c4361c9fb78f53d52fd8dd4bdb27434b512038
|
|
||||||
size 1614514
|
|
3
scamper-cvs-20170822.tar.gz
Normal file
3
scamper-cvs-20170822.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b239f3c302a4c39b329835794b31a9c80da2b2b43baa674ad881a78f4fc5892c
|
||||||
|
size 1670353
|
@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 24 06:58:41 UTC 2017 - sebix+novell.com@sebix.at
|
||||||
|
|
||||||
|
- update to version 20170822
|
||||||
|
scamper:
|
||||||
|
* replace recursive versions of some functions with iterative versions.
|
||||||
|
* add cycle-start and cycle-stop json record implementations.
|
||||||
|
* fix traceroute json record: the hop transmit time value it reported
|
||||||
|
was junk.
|
||||||
|
* add support for sending json over the control socket. use
|
||||||
|
"attach format json" to get this mode; "attach" by itself still
|
||||||
|
returns uuencoded warts. Initial patch supplied by Young Hyun.
|
||||||
|
* fix possible memory leaks detected with static analysis.
|
||||||
|
* quality assurance on research paper cites in manual pages.
|
||||||
|
* spelling errors noticed by Iain R. Learmonth.
|
||||||
|
|
||||||
|
sc_ally:
|
||||||
|
* add feature to dump inferred aliases from the collected data.
|
||||||
|
|
||||||
|
sc_speedtrap:
|
||||||
|
* add threaded implementation of pairwise comparison to form candidate
|
||||||
|
alias sets, if pthreads are detected at compilation time and
|
||||||
|
--disable-threads configure option is not supplied.
|
||||||
|
|
||||||
|
sc_uptime:
|
||||||
|
* new scamper driver to infer IPv6 device reboot windows if the device
|
||||||
|
returns an incrementing identifier field in the IPv6 fragmentation
|
||||||
|
header. the driver is not built by default, as it expects sqlite3.
|
||||||
|
use --with-sc_uptime configure option to build.
|
||||||
|
https://www.caida.org/~mjl/pubs/spf.pdf
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 22 20:47:31 UTC 2017 - sebix+novell.com@sebix.at
|
Thu Jun 22 20:47:31 UTC 2017 - sebix+novell.com@sebix.at
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package scamper
|
# spec file for package scamper
|
||||||
#
|
#
|
||||||
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2016, Martin Hauke <mardnh@gmx.de>
|
# Copyright (c) 2016, Martin Hauke <mardnh@gmx.de>
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -17,7 +18,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: scamper
|
Name: scamper
|
||||||
Version: 20161204a
|
Version: 20170822
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Parallel Internet measurement utility
|
Summary: Parallel Internet measurement utility
|
||||||
License: GPL-2.0
|
License: GPL-2.0
|
||||||
@ -26,7 +27,6 @@ Url: https://www.caida.org/tools/measurement/scamper/
|
|||||||
Source: https://www.caida.org/tools/measurement/%{name}/code/%{name}-cvs-%{version}.tar.gz
|
Source: https://www.caida.org/tools/measurement/%{name}/code/%{name}-cvs-%{version}.tar.gz
|
||||||
BuildRequires: libopenssl-devel
|
BuildRequires: libopenssl-devel
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Scamper is a program that is able to conduct Internet measurement
|
Scamper is a program that is able to conduct Internet measurement
|
||||||
@ -79,14 +79,13 @@ libscamperfile library.
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n libscamperfile0 -p /sbin/ldconfig
|
%post -n libscamperfile0 -p /sbin/ldconfig
|
||||||
%postun -n libscamperfile0 -p /sbin/ldconfig
|
%postun -n libscamperfile0 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%{_bindir}/sc_*
|
%{_bindir}/sc_*
|
||||||
%{_bindir}/scamper
|
%{_bindir}/scamper
|
||||||
@ -94,11 +93,9 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
|
|
||||||
%files -n libscamperfile0
|
%files -n libscamperfile0
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_libdir}/libscamperfile.so.*
|
%{_libdir}/libscamperfile.so.*
|
||||||
|
|
||||||
%files -n libscamperfile-devel
|
%files -n libscamperfile-devel
|
||||||
%defattr(-,root,root)
|
|
||||||
%{_includedir}/scamper_*
|
%{_includedir}/scamper_*
|
||||||
%{_libdir}/libscamperfile.so
|
%{_libdir}/libscamperfile.so
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user