Commit graph

10 commits

Author SHA1 Message Date
Paul Fertser
0c10c224be treewide: remove AUTORELEASE
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser <fercerpav@gmail.com>
2023-04-21 22:46:58 +02:00
Rosen Penev
83fe727ff1 spoofer: update to 1.4.8
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2022-07-14 15:00:27 -07:00
Ken Keys
4171636692 spoofer: Update to 1.4.6
Includes a new CA file for compatibility with upcoming change to spoofer
server SSL cert

Signed-off-by: Ken Keys <kkeys@caida.org>
2020-07-24 15:42:36 -07:00
Rosen Penev
63107fa8c0
spoofer: remove host build + cleanups
The host build is not used by anything.

Added PKG_INSTALL for consistency between packages.

Added PKG_BUILD_PARALLEL for faster compilation.

Added missing protobuf/host build dependency. This was previously
specified as a host dependency, which is wrong.

Removed pointless std parameter.  It's only useful for old G++ versions.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-02-14 15:16:35 -08:00
Rosen Penev
4c42eb0b45 spoofer: Update to 1.4.5
Needed for the new protobuf update.

Cleaned up Makefile.

Got rid of HOST_BUILD_DEPENDS. This package does not have a host build.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-07-05 16:12:30 -07:00
Ken Keys
12320f054a spoofer: Update to 1.4.3
Includes removal of patches that are now integrated upstream.
Signed-off-by: Ken Keys <kkeys@caida.org>
2019-03-06 12:02:56 -08:00
Rosen Penev
3718caa64d spoofer: Fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-01-06 21:06:30 -08:00
Rosen Penev
9eeea73257
spoofer: Update to 1.4.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-15 18:56:19 -08:00
Rosen Penev
6c4b4ccfa7 spoofer: Update to 1.4.0
Added PKG_USE_MIPS16 as it seems not to build under mipsel.

Error: opcode not supported on this processor: mips32r2 (mips32r2) `sync'

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-10-11 11:27:38 -07:00
Ken Keys
de5dcb6b03 spoofer: add package
The spoofer client is part of a system to measure the Internet's resistance
to packets with a spoofed (forged) source IP address.

Signed-off-by: Ken Keys <kkeys@caida.org>
2018-07-17 10:18:46 -07:00