View | Details | Raw Unified | Return to bug 282504 | Differences between
and this patch

Collapse All | Expand All

(-)b/security/Makefile (+1 lines)
Lines 220-225 Link Here
220
    SUBDIR += heimdal-devel
220
    SUBDIR += heimdal-devel
221
    SUBDIR += helib
221
    SUBDIR += helib
222
    SUBDIR += hexl
222
    SUBDIR += hexl
223
    SUBDIR += hidden-lake
223
    SUBDIR += highwayhash
224
    SUBDIR += highwayhash
224
    SUBDIR += hitch
225
    SUBDIR += hitch
225
    SUBDIR += hockeypuck
226
    SUBDIR += hockeypuck
(-)b/security/hidden-lake/Makefile (+40 lines)
Added Link Here
1
PORTNAME=	hidden-lake
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	1.7.3
4
CATEGORIES=	security net-p2p
5
6
MAINTAINER=	alster@vinterdalen.se
7
COMMENT=	F2F Anonymous network based on the QB-problem
8
WWW=		https://github.com/number571/hidden-lake/
9
10
LICENSE=	MIT
11
LICENSE_FILE=	${WRKSRC}/LICENSE
12
13
USES=		go:1.23,modules
14
15
GO_MODULE=	github.com/number571/hidden-lake
16
GO_TARGET=	./cmd/hla/chatingar:hla-chatingar \
17
		./cmd/hla/common:hla-common \
18
		./cmd/hle:hlc \
19
		./cmd/hle:hle \
20
		./cmd/hlf:hlf \
21
		./cmd/hll:hll \
22
		./cmd/hlm:hlm \
23
		./cmd/hlr:hlr \
24
		./cmd/hls:hls \
25
		./cmd/hlt:hlt
26
27
PORTEXAMPLES=	*
28
29
OPTIONS_DEFINE=	DOCS EXAMPLES
30
31
post-install-DOCS-on:
32
	${MKDIR} ${STAGEDIR}${DOCSDIR}
33
	${INSTALL_DATA} ${WRKSRC}/docs/*.md  ${STAGEDIR}${DOCSDIR}
34
	${INSTALL_DATA} ${WRKSRC}/docs/*.pdf ${STAGEDIR}${DOCSDIR}
35
36
post-install-EXAMPLES-on:
37
	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
38
	(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
39
40
.include <bsd.port.mk>
(-)b/security/hidden-lake/distinfo (+5 lines)
Added Link Here
1
TIMESTAMP = 1730564222
2
SHA256 (go/security_hidden-lake/hidden-lake-v1.7.3/v1.7.3.mod) = 99bdbf9cddb05adf3b89d9ee8b0899eb072c0dd239c1b0173acdf2c69505267e
3
SIZE (go/security_hidden-lake/hidden-lake-v1.7.3/v1.7.3.mod) = 339
4
SHA256 (go/security_hidden-lake/hidden-lake-v1.7.3/v1.7.3.zip) = 3ba16d8d4e551f31e8822fd146e349dd4a3c4a7d67403157bac89acada4ccfe6
5
SIZE (go/security_hidden-lake/hidden-lake-v1.7.3/v1.7.3.zip) = 12190326
(-)b/security/hidden-lake/pkg-descr (+8 lines)
Added Link Here
1
The Hidden Lake is an anonymous network built on a micro-service
2
architecture. At the heart of HL is the core - HLS (service), which generates
3
anonymizing traffic and combines many other services (for example, HLT and
4
HLM). Thus, Hidden Lake is not a whole and monolithic solution, but a
5
composition of several combined services. The HL is a friend-to-friend (F2F)
6
network, which means building trusted communications. Due to this approach,
7
members of the HL network can avoid spam in their direction, as well as possible
8
attacks if vulnerabilities are found in the code.
(-)b/security/hidden-lake/pkg-plist (-1 / +13 lines)
Added Link Here
0
- 
1
bin/hla-chatingar
2
bin/hla-common
3
bin/hlc
4
bin/hle
5
bin/hlf
6
bin/hll
7
bin/hlm
8
bin/hlr
9
bin/hls
10
bin/hlt
11
%%PORTDOCS%%%%DOCSDIR%%/README.md
12
%%PORTDOCS%%%%DOCSDIR%%/hidden_lake_anonymous_network.pdf
13
%%PORTDOCS%%%%DOCSDIR%%/hidden_lake_anonymous_network_view.pdf

Return to bug 282504