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

Collapse All | Expand All

(-)devel/Makefile (+1 lines)
Lines 463-468 Link Here
463
    SUBDIR += deforaos-libsystem
463
    SUBDIR += deforaos-libsystem
464
    SUBDIR += deheader
464
    SUBDIR += deheader
465
    SUBDIR += delta
465
    SUBDIR += delta
466
    SUBDIR += delve
466
    SUBDIR += dep
467
    SUBDIR += dep
467
    SUBDIR += deployer
468
    SUBDIR += deployer
468
    SUBDIR += derelict-sdl2
469
    SUBDIR += derelict-sdl2
(-)devel/delve/Makefile (+28 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	delve
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.4.0
6
CATEGORIES=	devel
7
8
MAINTAINER=	dmitry.wagin@ya.ru
9
COMMENT=	Delve is a debugger for the Go programming language. 
10
11
LICENSE=	MIT
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
CONFLICTS_INSTALL=	dlv # bin/dlv
15
16
ONLY_FOR_ARCHS=	amd64
17
18
USES=		go:modules
19
20
USE_GITHUB=	yes
21
GH_ACCOUNT=	go-delve
22
23
GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
24
GO_TARGET=	./cmd/dlv
25
26
PLIST_FILES=	bin/dlv
27
28
.include <bsd.port.mk>
(-)devel/delve/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1581672137
2
SHA256 (go-delve-delve-v1.4.0_GH0.tar.gz) = 56f5e208a6d72e3fb00ba65fbd4255c41904c37169892478011ed24df034667c
3
SIZE (go-delve-delve-v1.4.0_GH0.tar.gz) = 7784835
(-)devel/delve/pkg-descr (+7 lines)
Line 0 Link Here
1
Delve is a debugger for the Go programming language. The goal of the project is
2
to provide a simple, full featured debugging tool for Go. Delve should be easy to
3
invoke and easy to use. Chances are if you're using a debugger, things aren't
4
going your way. With that in mind, Delve should stay out of your way as much as
5
possible.
6
7
WWW: https://github.com/go-delve/delve
(-)devel/delve/pkg-message (+15 lines)
Line 0 Link Here
1
[
2
{ type: install
3
  message: <<EOM
4
Please execute the following commands to prep this system to run delve:
5
6
echo "# required for delve">>/etc/sysctl.conf.local
7
echo "security.bsd.unprivileged_proc_debug=1">>/etc/sysctl.conf.local
8
9
Then, either reboot or run the following commands to implement the above
10
changes:
11
12
service sysctl reload
13
EOM
14
}
15
]

Return to bug 243962