From owner-svn-ports-all@freebsd.org Tue Aug 28 00:30:43 2018 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 AF495109A5AF; Tue, 28 Aug 2018 00:30:43 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 658DC8A151; Tue, 28 Aug 2018 00:30:43 +0000 (UTC) (envelope-from meta@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 47B3A250F4; Tue, 28 Aug 2018 00:30:43 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7S0UhRq037941; Tue, 28 Aug 2018 00:30:43 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7S0Ug8I037938; Tue, 28 Aug 2018 00:30:42 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201808280030.w7S0Ug8I037938@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Tue, 28 Aug 2018 00:30:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r478270 - in head/devel: . lazygit X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: in head/devel: . lazygit X-SVN-Commit-Revision: 478270 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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: Tue, 28 Aug 2018 00:30:44 -0000 Author: meta Date: Tue Aug 28 00:30:42 2018 New Revision: 478270 URL: https://svnweb.freebsd.org/changeset/ports/478270 Log: New port: devel/lazygit: Simple terminal UI for git commands lazygit is a CLI tool to handle git repository, written in Go wigh the gocui library. You can add files easily, resolve merge conflicts, checkout recent branches easily, scroll through logs/diffs of branches/commits.stash, push/pull quickly, squash down and rename commits in CLI. WWW: https://github.com/jesseduffield/lazygit Approved by: pi (mentor) Differential Revision: https://reviews.freebsd.org/D16862 Added: head/devel/lazygit/ head/devel/lazygit/Makefile (contents, props changed) head/devel/lazygit/distinfo (contents, props changed) head/devel/lazygit/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Aug 28 00:01:28 2018 (r478269) +++ head/devel/Makefile Tue Aug 28 00:30:42 2018 (r478270) @@ -1342,6 +1342,7 @@ SUBDIR += lattice-ice40-examples-hx1k SUBDIR += lattice-ice40-examples-hx8k SUBDIR += lattice-ice40-tools + SUBDIR += lazygit SUBDIR += lcov SUBDIR += leaktracer SUBDIR += leatherman Added: head/devel/lazygit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/lazygit/Makefile Tue Aug 28 00:30:42 2018 (r478270) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= lazygit +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.80 +CATEGORIES= devel + +MAINTAINER= meta@FreeBSD.org +COMMENT= Simple terminal UI for git commands + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= jesseduffield + +PLIST_FILES= bin/${PORTNAME} + +post-extract: + ${MKDIR} ${GO_WRKSRC:H} + ${LN} -sf ${WRKSRC} ${GO_WRKSRC:H}/${PORTNAME} + ${MKDIR} ${GO_WRKSRC}/vendor/github.com/${GH_ACCOUNT}/${PORTNAME}/ + ${MV} ${GO_WRKSRC}/pkg ${GO_WRKSRC}/vendor/github.com/${GH_ACCOUNT}/${PORTNAME}/ + +.include Added: head/devel/lazygit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/lazygit/distinfo Tue Aug 28 00:30:42 2018 (r478270) @@ -0,0 +1,3 @@ +TIMESTAMP = 1535414967 +SHA256 (jesseduffield-lazygit-v0.1.80_GH0.tar.gz) = a076d4fac93cfd41afcc1c4a5c3b3c55a1315aec452573686b97a47e8885c45f +SIZE (jesseduffield-lazygit-v0.1.80_GH0.tar.gz) = 6083776 Added: head/devel/lazygit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/lazygit/pkg-descr Tue Aug 28 00:30:42 2018 (r478270) @@ -0,0 +1,6 @@ +lazygit is a CLI tool to handle git repository, written in Go wigh the gocui +library. You can add files easily, resolve merge conflicts, checkout recent +branches easily, scroll through logs/diffs of branches/commits.stash, +push/pull quickly, squash down and rename commits in CLI. + +WWW: https://github.com/jesseduffield/lazygit