From owner-svn-ports-all@freebsd.org Tue Dec 8 22:14:23 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 559E14AD6AA; Tue, 8 Dec 2020 22:14:23 +0000 (UTC) (envelope-from adamw@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 4CrDxC1n2Sz3DvH; Tue, 8 Dec 2020 22:14:23 +0000 (UTC) (envelope-from adamw@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 2B9751B563; Tue, 8 Dec 2020 22:14:23 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0B8MEMRo053210; Tue, 8 Dec 2020 22:14:22 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0B8MEMoi053206; Tue, 8 Dec 2020 22:14:22 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <202012082214.0B8MEMoi053206@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Tue, 8 Dec 2020 22:14:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r557305 - head/devel/git X-SVN-Group: ports-head X-SVN-Commit-Author: adamw X-SVN-Commit-Paths: head/devel/git X-SVN-Commit-Revision: 557305 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, 08 Dec 2020 22:14:23 -0000 Author: adamw Date: Tue Dec 8 22:14:22 2020 New Revision: 557305 URL: https://svnweb.freebsd.org/changeset/ports/557305 Log: devel/git: Add a "tiny" flavor that depends only on curl This provides a minimal functioning git that depends only on curl (and expat, which comes along for the ride). PR: 251689 Approved by: maintainer (garga) Added: head/devel/git/pkg-descr-tiny (contents, props changed) Modified: head/devel/git/Makefile Modified: head/devel/git/Makefile ============================================================================== --- head/devel/git/Makefile Tue Dec 8 21:53:33 2020 (r557304) +++ head/devel/git/Makefile Tue Dec 8 22:14:22 2020 (r557305) @@ -17,19 +17,23 @@ COMMENT= Distributed source code management tool ${COM LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -FLAVORS= default gui lite -default_CONFLICTS_INSTALL= git-gui git-lite -gui_CONFLICTS_INSTALL= git git-lite +FLAVORS= default gui lite tiny +default_CONFLICTS_INSTALL= git-gui git-lite git-tiny +gui_CONFLICTS_INSTALL= git git-lite git-tiny gui_DESCR= ${.CURDIR}/pkg-descr-gui gui_PKGNAMESUFFIX= -gui -lite_CONFLICTS_INSTALL= git git-gui +lite_CONFLICTS_INSTALL= git git-gui git-tiny lite_DESCR= ${.CURDIR}/pkg-descr-lite lite_PKGNAMESUFFIX= -lite +tiny_CONFLICTS_INSTALL= git git-gui git-lite +tiny_DESCR= ${.CURDIR}/pkg-descr-tiny +tiny_PKGNAMESUFFIX= -tiny USES= autoreconf gmake iconv shebangfix ssl tar:xz COMMENT_gui= (GUI enabled flavor) COMMENT_lite= (lite flavor) +COMMENT_tiny= (tiny flavor) USERS= git_daemon GROUPS= git_daemon @@ -70,6 +74,9 @@ OPTIONS_DEFAULT= CONTRIB P4 CVS PERL GITWEB ICONV CURL OPTIONS_SLAVE+= GUI .elif ${FLAVOR:U} == lite OPTIONS_EXCLUDE= GUI SVN GITWEB CONTRIB P4 CVS PERL +.elif ${FLAVOR:U} == tiny +OPTIONS_EXCLUDE:= ${OPTIONS_DEFINE:NCURL} ${OPTIONS_RADIO_PCRE_VERSION} +OPTIONS_SLAVE= CURL .endif OPTIONS_SUB= yes Added: head/devel/git/pkg-descr-tiny ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/git/pkg-descr-tiny Tue Dec 8 22:14:22 2020 (r557305) @@ -0,0 +1,7 @@ +Git is a free and open source distributed version control system designed to +handle everything from small to very large projects with speed and efficiency. + +This version provides the tiniest usable git experience, depending only upon +ftp/curl for http(s) support. + +WWW: https://git-scm.com/