package/mstpd: new package

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
[Arnout: add RSA license for hmac_md5.c]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Francois Perrad 2021-09-20 21:24:42 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent 60add404db
commit c7feecad61
5 changed files with 28 additions and 0 deletions

View File

@ -969,6 +969,7 @@ F: package/lsqlite3/
F: package/lua*
F: package/lzlib/
F: package/moarvm/
F: package/mstpd/
F: package/netsurf/
F: package/perl*
F: package/pkg-perl.mk

View File

@ -2218,6 +2218,7 @@ menu "Networking applications"
source "package/mosquitto/Config.in"
source "package/mrouted/Config.in"
source "package/mrp/Config.in"
source "package/mstpd/Config.in"
source "package/mtr/Config.in"
source "package/nbd/Config.in"
source "package/ncftp/Config.in"

9
package/mstpd/Config.in Normal file
View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_MSTPD
bool "mstpd"
help
Multiple Spanning Tree Protocol Daemon.
This package provides a user-space daemon which replaces
the STP handling that is built into the Linux kernel Ethernet
bridge and adds support for RSTP and PVST+.
https://github.com/mstpd/mstpd

4
package/mstpd/mstpd.hash Normal file
View File

@ -0,0 +1,4 @@
# locally computed
sha256 91a1862548b5b509caa2e96e5fb9912bc98d4d58cc98e99a577824735756c14d mstpd-0.0.9.tar.gz
sha256 c38aee9e3c8c4d5d594ff548a1be05453023016d6286931f6512db215ec1fd42 LICENSE
sha256 c5cfd44652276184374adf454150d436ce958ce50acc4ef9ccb3605a5ca7a9d3 hmac_md5.c

13
package/mstpd/mstpd.mk Normal file
View File

@ -0,0 +1,13 @@
################################################################################
#
# mstpd
#
################################################################################
MSTPD_VERSION = 0.0.9
MSTPD_SITE = $(call github,mstpd,mstpd,$(MSTPD_VERSION))
MSTPD_AUTORECONF = YES
MSTPD_LICENSE = GPL-2.0, RSA Data Security (md5)
MSTPD_LICENSE_FILES = LICENSE hmac_md5.c
$(eval $(autotools-package))