From b38d4642baccb5913bfd780d9915354c7c2a7358 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Tue, 2 Feb 2021 22:43:39 -0800 Subject: [PATCH] netifyd: add reproducibility patch Signed-off-by: Rosen Penev --- net/netifyd/Makefile | 2 +- net/netifyd/patches/010-reproducible.patch | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 net/netifyd/patches/010-reproducible.patch diff --git a/net/netifyd/Makefile b/net/netifyd/Makefile index b8d3aad0d3..025bf26fc8 100644 --- a/net/netifyd/Makefile +++ b/net/netifyd/Makefile @@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=netifyd -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MAINTAINER:=Darryl Sokoloski PKG_LICENSE:=GPL-3.0-or-later diff --git a/net/netifyd/patches/010-reproducible.patch b/net/netifyd/patches/010-reproducible.patch new file mode 100644 index 0000000000..60486adf97 --- /dev/null +++ b/net/netifyd/patches/010-reproducible.patch @@ -0,0 +1,11 @@ +--- a/src/netifyd.cpp ++++ b/src/netifyd.cpp +@@ -144,7 +144,7 @@ static void nd_usage(int rc = 0, bool ve + { + fprintf(stderr, "%s\n", nd_get_version_and_features().c_str()); + fprintf(stderr, "Copyright (C) 2015-2020 eGloo Incorporated\n" +- "[%s %s]\n", GIT_RELEASE, GIT_DATE); ++ "[%s]\n", PACKAGE_VERSION); + if (version) { + fprintf(stderr, "\nThis application uses nDPI v%s\n" + "http://www.ntop.org/products/deep-packet-inspection/ndpi/\n", ndpi_revision());