From owner-svn-ports-all@freebsd.org Mon Mar 12 06:58:03 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 8491DF4E843; Mon, 12 Mar 2018 06:58:03 +0000 (UTC) (envelope-from tobik@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 2DFA86B11B; Mon, 12 Mar 2018 06:58:03 +0000 (UTC) (envelope-from tobik@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 07ACB3DA; Mon, 12 Mar 2018 06:58:03 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2C6w2bT087795; Mon, 12 Mar 2018 06:58:02 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2C6w2FG087791; Mon, 12 Mar 2018 06:58:02 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803120658.w2C6w2FG087791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 12 Mar 2018 06:58:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464225 - in head/devel: . mergify X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel: . mergify X-SVN-Commit-Revision: 464225 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.25 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, 12 Mar 2018 06:58:03 -0000 Author: tobik Date: Mon Mar 12 06:58:02 2018 New Revision: 464225 URL: https://svnweb.freebsd.org/changeset/ports/464225 Log: New port: devel/mergify Mergify is a tool to merge changes from a branch one commit at a time. This is most useful when merging changes to a highly diverged fork of a project. It only supports Git. WWW: https://github.com/brooksdavis/mergify PR: 215048 Submitted by: joe@thrallingpenguin.com Added: head/devel/mergify/ head/devel/mergify/Makefile (contents, props changed) head/devel/mergify/distinfo (contents, props changed) head/devel/mergify/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Mar 12 06:50:26 2018 (r464224) +++ head/devel/Makefile Mon Mar 12 06:58:02 2018 (r464225) @@ -1701,6 +1701,7 @@ SUBDIR += mercator SUBDIR += mercurial SUBDIR += mercurialeclipse + SUBDIR += mergify SUBDIR += meson SUBDIR += mico SUBDIR += mime Added: head/devel/mergify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mergify/Makefile Mon Mar 12 06:58:02 2018 (r464225) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= mergify +PORTVERSION= g20170106 +CATEGORIES= devel + +MAINTAINER= joe@thrallingpenguin.com +COMMENT= Merge changes from a branch one commit at a time + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= git:devel/git + +USE_GITHUB= yes +GH_ACCOUNT= brooksdavis +GH_PROJECT= mergify +GH_TAGNAME= 02519f69ab096797fc626487610cab9acdcba26f + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/mergify +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/mergify ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/mergify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mergify/distinfo Mon Mar 12 06:58:02 2018 (r464225) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520837648 +SHA256 (brooksdavis-mergify-g20170106-02519f69ab096797fc626487610cab9acdcba26f_GH0.tar.gz) = e9904e0d8556b30d1748ecd84ce8c209b236a5f3c2315847c6ce2f8f28477809 +SIZE (brooksdavis-mergify-g20170106-02519f69ab096797fc626487610cab9acdcba26f_GH0.tar.gz) = 3983 Added: head/devel/mergify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mergify/pkg-descr Mon Mar 12 06:58:02 2018 (r464225) @@ -0,0 +1,7 @@ +Mergify is a tool to merge changes from a branch one commit at a time. +This is most useful when merging changes to a highly diverged fork +of a project. + +It only supports Git. + +WWW: https://github.com/brooksdavis/mergify