From owner-svn-ports-all@freebsd.org Tue Dec 29 12:53:21 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA89F4BD734; Tue, 29 Dec 2020 12:53:21 +0000 (UTC) (envelope-from garga@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4D4vV96K1qz4WPp; Tue, 29 Dec 2020 12:53:21 +0000 (UTC) (envelope-from garga@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 CB7764600; Tue, 29 Dec 2020 12:53:21 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BTCrL4j097194; Tue, 29 Dec 2020 12:53:21 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BTCrKcB097188; Tue, 29 Dec 2020 12:53:20 GMT (envelope-from garga@FreeBSD.org) Message-Id: <202012291253.0BTCrKcB097188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Tue, 29 Dec 2020 12:53:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559576 - in head/net: . gitup X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: in head/net: . gitup X-SVN-Commit-Revision: 559576 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.34 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, 29 Dec 2020 12:53:22 -0000 Author: garga Date: Tue Dec 29 12:53:20 2020 New Revision: 559576 URL: https://svnweb.freebsd.org/changeset/ports/559576 Log: Add gitup 0.87, minimalist, dependency-free program to clone/pull git repositories. PR: 252220 Submitted by: ed.arrakis@gmail.com Sponsored by: Rubicon Communications, LLC (Netgate) Added: head/net/gitup/ head/net/gitup/Makefile (contents, props changed) head/net/gitup/distinfo (contents, props changed) head/net/gitup/pkg-descr (contents, props changed) head/net/gitup/pkg-message (contents, props changed) head/net/gitup/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Tue Dec 29 12:36:19 2020 (r559575) +++ head/net/Makefile Tue Dec 29 12:53:20 2020 (r559576) @@ -178,6 +178,7 @@ SUBDIR += gerbera SUBDIR += gfbgraph SUBDIR += gitlab-agent + SUBDIR += gitup SUBDIR += glflow SUBDIR += glib-networking SUBDIR += glusterfs Added: head/net/gitup/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/gitup/Makefile Tue Dec 29 12:53:20 2020 (r559576) @@ -0,0 +1,45 @@ +# $FreeBSD$ + +PORTNAME= gitup +DISTVERSION= 0.87 +CATEGORIES= net + +MAINTAINER= ed.arrakis@gmail.com +COMMENT= Minimalist, dependency-free program to clone/pull git repositories + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= ssl + +USE_GITHUB= yes +GH_ACCOUNT= johnmehr + +ALL_TARGET= gitup +CFLAGS+= -I${OPENSSLINC} +LDADD= -lz -L${OPENSSLLIB} -lssl -lcrypto -lprivateucl +MAKE_ARGS= CFLAGS="${CFLAGS}" \ + LDADD="${LDADD}" + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-patch: + ${REINPLACE_CMD} 's,\./gitup.conf,${PREFIX}/etc/gitup.conf,' \ + ${WRKSRC}/gitup.c + ${REINPLACE_CMD} 's,/usr/local,${PREFIX},g' \ + ${WRKSRC}/gitup.1 ${WRKSRC}/gitup.conf.5 + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/gitup.1 ${STAGEDIR}${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/gitup.conf.5 ${STAGEDIR}${MANPREFIX}/man/man5 + ${INSTALL_DATA} ${WRKSRC}/gitup.conf \ + ${STAGEDIR}${PREFIX}/etc/gitup.conf.sample + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/net/gitup/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/gitup/distinfo Tue Dec 29 12:53:20 2020 (r559576) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609199079 +SHA256 (johnmehr-gitup-0.87_GH0.tar.gz) = 7d8567714a902444fac1cb1f7d3d867ed9d4cf6e01e6e694dec0a917f35196a8 +SIZE (johnmehr-gitup-0.87_GH0.tar.gz) = 20296 Added: head/net/gitup/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/gitup/pkg-descr Tue Dec 29 12:53:20 2020 (r559576) @@ -0,0 +1,8 @@ +A minimalist, dependency-free FreeBSD program to clone/pull git +repositories. Intended for non-developers, gitup synchronizes local +copies of repositories without the additional overhead that the +official git client requires. Because gitup neither uses nor updates +the contents of .git directories, the official git client should not +be used on repositories cloned or modified with gitup. + +WWW: https://github.com/johnmehr/gitup Added: head/net/gitup/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/gitup/pkg-message Tue Dec 29 12:53:20 2020 (r559576) @@ -0,0 +1,10 @@ +[ +{ + type: install + message: <