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

Collapse All | Expand All

(-)devel/govendor/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	govendor
3
PORTNAME=	govendor
4
PORTVERSION=	1.0.8
4
PORTVERSION=	1.0.9
5
DISTVERSIONPREFIX=	v
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel
6
CATEGORIES=	devel
7
7
(-)devel/govendor/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1475035246
1
TIMESTAMP = 1517491278
2
SHA256 (kardianos-govendor-v1.0.8_GH0.tar.gz) = 7e887b84c7a9278473f39ae8a74440ffc17b329aa193e9304d170d458f8785c7
2
SHA256 (kardianos-govendor-v1.0.9_GH0.tar.gz) = d303abf194838792234a1451c3a1e87885d1b2cd21774867b592c1f7db00551e
3
SIZE (kardianos-govendor-v1.0.8_GH0.tar.gz) = 114321
3
SIZE (kardianos-govendor-v1.0.9_GH0.tar.gz) = 778108
(-)devel/govendor/files/patch-vendor_github.com_Bowery_prompt_ioctl__unix.go (+16 lines)
Line 0 Link Here
1
Upstream fix: https://github.com/Bowery/prompt/commit/eb8f7a6a197ce971ed0e9d4a739c628381d5f124
2
Remove after updated Bowery/prompt gets vendored by govendor
3
--- vendor/github.com/Bowery/prompt/ioctl_unix.go.orig	2018-02-08 22:28:09 UTC
4
+++ vendor/github.com/Bowery/prompt/ioctl_unix.go
5
@@ -47,9 +47,9 @@ func getTermios(fd uintptr) (*unix.Termi
6
 // setTermios sets the termios settings for the terminal descriptor,
7
 // optionally flushing the buffer before setting.
8
 func setTermios(fd uintptr, flush bool, mode *unix.Termios) error {
9
-	req := tcsets
10
+	req := int64(tcsets)
11
 	if flush {
12
-		req = tcsetsf
13
+		req = int64(tcsetsf)
14
 	}
15
 
16
 	_, _, err := unix.Syscall(unix.SYS_IOCTL, fd, uintptr(req),

Return to bug 225602