From owner-svn-ports-all@freebsd.org Mon Jul 1 15:49:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA32A15DE02E; Mon, 1 Jul 2019 15:49:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6AA2984B53; Mon, 1 Jul 2019 15:49:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 459C3F10D; Mon, 1 Jul 2019 15:49:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x61FnOAc036788; Mon, 1 Jul 2019 15:49:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x61FnO0N036787; Mon, 1 Jul 2019 15:49:24 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201907011549.x61FnO0N036787@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 1 Jul 2019 15:49:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505607 - head/net-im/ssh-chat X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net-im/ssh-chat X-SVN-Commit-Revision: 505607 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6AA2984B53 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Jul 2019 15:49:25 -0000 Author: yuri Date: Mon Jul 1 15:49:23 2019 New Revision: 505607 URL: https://svnweb.freebsd.org/changeset/ports/505607 Log: net-im/ssh-chat: Switch to USES=go:modules, fix build with go1.13beta1 PR: 238926 Submitted by: Dmitri Goutnik Modified: head/net-im/ssh-chat/Makefile Modified: head/net-im/ssh-chat/Makefile ============================================================================== --- head/net-im/ssh-chat/Makefile Mon Jul 1 15:45:58 2019 (r505606) +++ head/net-im/ssh-chat/Makefile Mon Jul 1 15:49:23 2019 (r505607) @@ -10,28 +10,21 @@ MAINTAINER= yuri@FreeBSD.org COMMENT= Chat over SSH LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME}/LICENSE +LICENSE_FILE= ${WRKSRC}/LICENSE -USES= go +USES= go:modules -USE_GITHUB= nodefault # the main code is in GH_TUPLE +USE_GITHUB= yes GH_ACCOUNT= shazow -GH_TUPLE= shazow:ssh-chat:${DISTVERSIONFULL}:main/src/github.com/shazow/ssh-chat \ - shazow:rateio:e8e0088:rateio/src/github.com/shazow/rateio \ - alexcesaro:log:61e6862:log/src/github.com/alexcesaro/log \ - howeyc:gopass:bf9dde6:gopass/src/github.com/howeyc/gopass \ - jessevdk:go-flags:c6ca198:flags/src/github.com/jessevdk/go-flags \ - golang:crypto:c126467:crypto/src/golang.org/x/crypto \ - golang:sys:ac767d6:sys/src/golang.org/x/sys -GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} +GH_TUPLE= shazow:rateio:e8e0088:rateio/vendor/github.com/shazow/rateio \ + alexcesaro:log:61e6862:log/vendor/github.com/alexcesaro/log \ + howeyc:gopass:bf9dde6:gopass/vendor/github.com/howeyc/gopass \ + jessevdk:go-flags:c6ca198:flags/vendor/github.com/jessevdk/go-flags \ + golang:crypto:c126467:crypto/vendor/golang.org/x/crypto \ + golang:sys:ac767d6:sys/vendor/golang.org/x/sys -PLIST_FILES= bin/${PORTNAME} +GO_TARGET= ./cmd/${PORTNAME} -do-build: - @cd ${WRKSRC}/src/github.com/${GH_ACCOUNT}/${PORTNAME} && \ - ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go install ./... - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin +PLIST_FILES= bin/${PORTNAME} .include