aboutsummaryrefslogtreecommitdiff
path: root/net/spoofer/Makefile
Commit message (Collapse)AuthorAge
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* spoofer: update to 1.4.8Rosen Penev2022-07-14
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* spoofer: Update to 1.4.6Ken Keys2020-07-24
| | | | | | | Includes a new CA file for compatibility with upcoming change to spoofer server SSL cert Signed-off-by: Ken Keys <kkeys@caida.org>
* spoofer: remove host build + cleanupsRosen Penev2020-02-14
| | | | | | | | | | | | | | | 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>
* spoofer: Update to 1.4.5Rosen Penev2019-07-05
| | | | | | | | | | 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>
* spoofer: Update to 1.4.3Ken Keys2019-03-06
| | | | | Includes removal of patches that are now integrated upstream. Signed-off-by: Ken Keys <kkeys@caida.org>
* spoofer: Fix compilation without deprecated OpenSSL APIsRosen Penev2019-01-06
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* spoofer: Update to 1.4.1Rosen Penev2018-11-15
| | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* spoofer: Update to 1.4.0Rosen Penev2018-10-11
| | | | | | | | 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>
* spoofer: add packageKen Keys2018-07-17
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>