Accepting request 999230 from network:utilities
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/999230 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/scamper?expand=0&rev=16
This commit is contained in:
commit
e0cb7acd72
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d986b429655dce36629d1821ea6f32d65cc418f7d22b1ea4330621bffb35c18c
|
|
||||||
size 1942657
|
|
3
scamper-cvs-20211212b.tar.gz
Normal file
3
scamper-cvs-20211212b.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fee949ff7e0312ba672944fe2084aed75a8979b778c33adba26ffc522a1346d8
|
||||||
|
size 2103576
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 18 06:36:07 UTC 2022 - Sebastian Wagner <sebix+novell.com@sebix.at>
|
||||||
|
|
||||||
|
- Update to version 20211212b:
|
||||||
|
- scamper:
|
||||||
|
* add an option (-O cafile=/path/to/file) to load CA certificates
|
||||||
|
from a specific file when starting scamper for validating a
|
||||||
|
remote controller's certificate (this was released in 20211212a)
|
||||||
|
* add options
|
||||||
|
-O client-certfile=/path/to/certfile and
|
||||||
|
-O client-privfile=/path/to/privfile
|
||||||
|
to have scamper present a client certificate during a TLS handshake
|
||||||
|
with a remote controller
|
||||||
|
* fix bugs that prevent scamper from reconnecting to a remote
|
||||||
|
controller
|
||||||
|
* fix -d debugfile when scamper is built with privilege separation
|
||||||
|
* fix bug when writing neighbordisc measurements to warts file that
|
||||||
|
prevents a neighbordisc measurement from being read
|
||||||
|
* fix bug when reading some tracelb measurements with unresponsive hops
|
||||||
|
from a warts file
|
||||||
|
* allow user to specify fractions of a second to ping timeout (-W)
|
||||||
|
* use a random source port / ICMP ID in ping if -F 0
|
||||||
|
- sc_remoted:
|
||||||
|
* add -C option to specify a CA PEM file to verify client certificates
|
||||||
|
presented by scamper instances.
|
||||||
|
* add -O skipnameverification option to tell sc_remoted to verify
|
||||||
|
scamper presents a certificate signed by the CA, but do not do
|
||||||
|
name verification
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 25 14:13:43 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
Mon Apr 25 14:13:43 UTC 2022 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
15
scamper.spec
15
scamper.spec
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: scamper
|
Name: scamper
|
||||||
Version: 20211212a
|
Version: 20211212b
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Parallel Internet measurement utility
|
Summary: Parallel Internet measurement utility
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
@ -42,12 +42,13 @@ fragmentation required message is not returned to establish the PMTU
|
|||||||
to the next point in the network, followed by a TTL limited search to
|
to the next point in the network, followed by a TTL limited search to
|
||||||
infer where the failure appears to occur.
|
infer where the failure appears to occur.
|
||||||
|
|
||||||
%package -n libscamperfile2
|
%package -n libscamperfile3
|
||||||
Summary: File access library for scamper's binary dump format
|
Summary: File access library for scamper's binary dump format
|
||||||
Group: System/Libraries]
|
Group: System/Libraries]
|
||||||
Obsoletes: libscamperfile1 < %{version}
|
Obsoletes: libscamperfile1 < %{version}
|
||||||
|
Obsoletes: libscamperfile2 < %{version}
|
||||||
|
|
||||||
%description -n libscamperfile2
|
%description -n libscamperfile3
|
||||||
Scamper is a program that is able to conduct Internet measurement
|
Scamper is a program that is able to conduct Internet measurement
|
||||||
tasks to large numbers of IPv4 and IPv6 addresses, in parallel, to
|
tasks to large numbers of IPv4 and IPv6 addresses, in parallel, to
|
||||||
fill a specified packets-per-second rate. Currently, it supports the
|
fill a specified packets-per-second rate. Currently, it supports the
|
||||||
@ -60,7 +61,7 @@ files that scamper can produce in certain modes.
|
|||||||
%package -n libscamperfile-devel
|
%package -n libscamperfile-devel
|
||||||
Summary: Development headers for scamper's binary dump file access library
|
Summary: Development headers for scamper's binary dump file access library
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
Requires: libscamperfile2 = %{version}-%{release}
|
Requires: libscamperfile3 = %{version}-%{release}
|
||||||
|
|
||||||
%description -n libscamperfile-devel
|
%description -n libscamperfile-devel
|
||||||
Scamper is a program that is able to conduct Internet measurement
|
Scamper is a program that is able to conduct Internet measurement
|
||||||
@ -83,8 +84,8 @@ make %{?_smp_mflags}
|
|||||||
%make_install
|
%make_install
|
||||||
find %{buildroot} -type f -name "*.la" -delete -print
|
find %{buildroot} -type f -name "*.la" -delete -print
|
||||||
|
|
||||||
%post -n libscamperfile2 -p /sbin/ldconfig
|
%post -n libscamperfile3 -p /sbin/ldconfig
|
||||||
%postun -n libscamperfile2 -p /sbin/ldconfig
|
%postun -n libscamperfile3 -p /sbin/ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
@ -93,7 +94,7 @@ find %{buildroot} -type f -name "*.la" -delete -print
|
|||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
|
|
||||||
%files -n libscamperfile2
|
%files -n libscamperfile3
|
||||||
%{_libdir}/libscamperfile.so.*
|
%{_libdir}/libscamperfile.so.*
|
||||||
|
|
||||||
%files -n libscamperfile-devel
|
%files -n libscamperfile-devel
|
||||||
|
Loading…
x
Reference in New Issue
Block a user