svn commit: r567845 - in head/security: . crowdsec

Sofian Brabez sbz at FreeBSD.org
Mon Mar 8 13:40:10 UTC 2021


Author: sbz
Date: Mon Mar  8 13:40:09 2021
New Revision: 567845
URL: https://svnweb.freebsd.org/changeset/ports/567845

Log:
  Crowdsec is an open-source, lightweight software, detecting peers with
  aggressive behaviors to prevent them from accessing your systems. Its user
  friendly design and assistance offers a low technical barrier of entry and
  nevertheless a high security gain.
  
  WWW: https://github.com/crowdsecurity/crowdsec
  
  Differential Revision:	https://reviews.freebsd.org/D29107

Added:
  head/security/crowdsec/
  head/security/crowdsec/Makefile   (contents, props changed)
  head/security/crowdsec/distinfo   (contents, props changed)
  head/security/crowdsec/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon Mar  8 12:53:36 2021	(r567844)
+++ head/security/Makefile	Mon Mar  8 13:40:09 2021	(r567845)
@@ -107,6 +107,7 @@
     SUBDIR += cracklib
     SUBDIR += crackpkcs12
     SUBDIR += create-cert
+    SUBDIR += crowdsec
     SUBDIR += cryptlib
     SUBDIR += cryptopp
     SUBDIR += ct-submit

Added: head/security/crowdsec/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/crowdsec/Makefile	Mon Mar  8 13:40:09 2021	(r567845)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	crowdsec
+PORTVERSION=	1.0.7
+DISTVERSIONPREFIX=	v
+CATEGORIES=	security
+
+MAINTAINER=	sbz at FreeBSD.org
+COMMENT=	Crowdsec lightweight and collaborative security engine
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		go:modules
+
+GO_MODULE=	github.com/crowdsecurity/crowdsec
+
+GO_BUILDFLAGS=	-ldflags "-s -w \
+		-X github.com/crowdsecurity/crowdsec/pkg/cwversion.Version=${PORTVERSION}"
+
+GO_TARGET=	./cmd/crowdsec \
+		./cmd/crowdsec-cli
+
+PLIST_FILES=	bin/crowdsec \
+		bin/crowdsec-cli
+
+.include <bsd.port.mk>

Added: head/security/crowdsec/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/crowdsec/distinfo	Mon Mar  8 13:40:09 2021	(r567845)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1615033328
+SHA256 (go/security_crowdsec/crowdsec-v1.0.7/v1.0.7.mod) = 810ca243ce2951dd7ab23d955efc8f50410c94feb8babc47a783146a4c06c798
+SIZE (go/security_crowdsec/crowdsec-v1.0.7/v1.0.7.mod) = 3310
+SHA256 (go/security_crowdsec/crowdsec-v1.0.7/v1.0.7.zip) = 1d7f5956826096405b24684db3c924476ffb7fa02f5859af5a6a2c00d8b1d753
+SIZE (go/security_crowdsec/crowdsec-v1.0.7/v1.0.7.zip) = 29305256

Added: head/security/crowdsec/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/crowdsec/pkg-descr	Mon Mar  8 13:40:09 2021	(r567845)
@@ -0,0 +1,6 @@
+Crowdsec is an open-source, lightweight software, detecting peers with
+aggressive behaviors to prevent them from accessing your systems. Its user
+friendly design and assistance offers a low technical barrier of entry and
+nevertheless a high security gain.
+
+WWW: https://github.com/crowdsecurity/crowdsec


More information about the svn-ports-all mailing list