Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a678d83f7f | |||
| 525e219ffa | |||
| 1b7be18cfc | |||
| 6fb74e9031 | |||
| 9ddfd08678 | |||
| 471fb55ba4 | |||
| 080220ff44 | |||
| 3cd9af2945 |
7
_service
7
_service
@@ -5,7 +5,7 @@
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="filename">ripcalc</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="revision">v0.1.12</param>
|
||||
<param name="revision">v0.3.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
</service>
|
||||
@@ -16,11 +16,8 @@
|
||||
<param name="compression">xz</param>
|
||||
</service>
|
||||
<service name="cargo_vendor" mode="manual">
|
||||
<param name="src">ripcalc</param>
|
||||
<param name="srcdir">ripcalc</param>
|
||||
<param name="compression">zst</param>
|
||||
<param name="update">true</param>
|
||||
</service>
|
||||
<service name="cargo_audit" mode="manual">
|
||||
<param name="srcdir">projectname</param>
|
||||
</service>
|
||||
</services>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://gitlab.com/edneville/ripcalc.git</param>
|
||||
<param name="changesrevision">5aca7acaf7fc5e6d53eb737e620fe418cf76bfdb</param>
|
||||
<param name="changesrevision">ca9f34e2696999173ca495068c80474bb53d8547</param>
|
||||
</service>
|
||||
</servicedata>
|
||||
</servicedata>
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbf98d4d0bbb199b81e09939665b1f14f37b555e7ca813f483d0873598d1f737
|
||||
size 141323
|
||||
3
ripcalc-0.3.0.obscpio
Normal file
3
ripcalc-0.3.0.obscpio
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9214127357fcd20ad3856f69d797b85b72d37d7dce5a8a66e7f0d3389cb28aef
|
||||
size 308235
|
||||
3
ripcalc-0.3.0.tar.xz
Normal file
3
ripcalc-0.3.0.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:16e667c4a795bcebf180530814d4978406bab39916c7316e5b4523a651bf1ff3
|
||||
size 52792
|
||||
@@ -1,3 +1,61 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 22:36:10 UTC 2026 - Heitor Moreira da Silva <heitor@opensuse.org>
|
||||
|
||||
- Update to version 0.3.0:
|
||||
* filter arguments to filter STDIN for address lines only
|
||||
* read and make cdb files
|
||||
* example cdb maker
|
||||
* countseen adds occurrence count of IP when in encapsulating and group mode, this option automatically sets encapsulating and group to 128
|
||||
* abuseipdb support
|
||||
* add cdb pairs to output when no format is specified
|
||||
* when cdb or abuseipdb are present, without a format, all key pairs will be shown
|
||||
* option makethymecdb to download IP information from thyme.apnic.net, options --data-raw-table, --ipv6-raw-table, --data-used-autnums can be used with a file or URL if format is specified filter should output that style
|
||||
* add a useragent string to http client
|
||||
* basic top-like function with --delay, --noclear and --iterations arguments --group4 and --group6 to override --group respectively
|
||||
* experimental geoip2 lite support
|
||||
* adding network match iter
|
||||
* bump nix -> 0.30
|
||||
* making Ip functions pub
|
||||
* quiet option
|
||||
* use a /32 mask for encapsulation if --mask is not present and addresses are from command line arguments
|
||||
* assume v4/32 and v6/128 in csv if not specified
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 27 05:42:32 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Update to version 0.2.5:
|
||||
* performance improvements
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Apr 12 20:38:50 UTC 2025 - Heitor Moreira da Silva <heitor@opensuse.org>
|
||||
|
||||
- Update to version 0.2.4:
|
||||
* bump 0.2.4
|
||||
* improve group'd encapsulating network
|
||||
* bumping 0.2.3
|
||||
* deprecate ipv6 option
|
||||
* handle input integers as signed too
|
||||
* Documentation for network grouping
|
||||
* version bump
|
||||
* use inside and outside with encapsulating
|
||||
* bump
|
||||
* used address count
|
||||
* bumping 0.2.0
|
||||
* ptr_lookup hash map
|
||||
* simple hostname check
|
||||
* Refactor config
|
||||
* Use a cache
|
||||
* allow ptr lookups in format string
|
||||
* Allow empty rows
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 2 20:08:16 UTC 2025 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Update to version 0.1.13
|
||||
* don't require input to be one IP per line
|
||||
* show subnets within network in format
|
||||
* limit how much an encapsulating network can grow with --group
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 31 20:08:41 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
name: ripcalc
|
||||
version: 0.1.12
|
||||
mtime: 1720730102
|
||||
commit: 5aca7acaf7fc5e6d53eb737e620fe418cf76bfdb
|
||||
version: 0.3.0
|
||||
mtime: 1766961921
|
||||
commit: ca9f34e2696999173ca495068c80474bb53d8547
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#
|
||||
# spec file for package ripcalc
|
||||
#
|
||||
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
# Copyright (c) 2025 Andreas Stieger <Andreas.Stieger@gmx.de>
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,7 +18,7 @@
|
||||
|
||||
|
||||
Name: ripcalc
|
||||
Version: 0.1.12
|
||||
Version: 0.3.0
|
||||
Release: 0
|
||||
Summary: Tool for network addresses
|
||||
License: GPL-3.0-or-later
|
||||
@@ -26,7 +27,8 @@ URL: https://www.usenix.org.uk/content/ripcalc.html
|
||||
Source0: %{name}-%{version}.tar.xz
|
||||
Source1: vendor.tar.zst
|
||||
BuildRequires: cargo-packaging
|
||||
BuildRequires: rust >= 1.69
|
||||
BuildRequires: rust >= 1.88
|
||||
BuildRequires: pkgconfig(openssl)
|
||||
ExclusiveArch: %{rust_tier1_arches}
|
||||
|
||||
%description
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8a7e10de48a604453c8b434cb115fc1aed4b0477d5c0b6115b5a50354efef23
|
||||
size 2193502
|
||||
oid sha256:b10ce5ed0df75e89fd7b395d08bc9993c3f94492cb0c75852f1d37afb6bf302b
|
||||
size 27124802
|
||||
|
||||
Reference in New Issue
Block a user