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 (+24 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	delve
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.3.2
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
USES=		go
15
16
USE_GITHUB=	yes
17
GH_ACCOUNT=	go-delve
18
19
GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
20
GO_TARGET=	./cmd/dlv
21
22
PLIST_FILES=	bin/dlv
23
24
.include <bsd.port.mk>
(-)devel/delve/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1581098159
2
SHA256 (go-delve-delve-v1.3.2_GH0.tar.gz) = a1879caba7caee970e38b57aa81575b9b3e5a17f0ceef05e1f3d09d94f296e5c
3
SIZE (go-delve-delve-v1.3.2_GH0.tar.gz) = 7732880
(-)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