Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 2020 19:14:29 +0200
From:      Piotr Kubaj <pkubaj@anongoth.pl>
To:        Renato Botelho <garga@freebsd.org>
Cc:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r552136 - in head: . devel devel/git devel/git-gui devel/git-lite
Message-ID:  <20201012171429.GA9510@KGPE-D16>
In-Reply-To: <202010121603.09CG3imD069975@repo.freebsd.org>
References:  <202010121603.09CG3imD069975@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--Qxx1br4bt0+wmkIi
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Disposition: inline

This broke bulk build:
[00:04:27] Warning: (java/eclipse): Error: java/eclipse depends on
nonexistent origin 'devel/git-lite' (moved to devel/git@lite); Please
contact maintainer of the port to fix this.

On 20-10-12 16:03:44, Renato Botelho wrote:
>Author: garga
>Date: Mon Oct 12 16:03:44 2020
>New Revision: 552136
>URL: https://svnweb.freebsd.org/changeset/ports/552136
>
>Log:
>  Convert git slave ports to flavors
>
>  Create git@lite and git@gui flavors to replace slave ports
>
>  PR:		250281
>  Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>
>  Sponsored by:	Rubicon Communications, LLC (Netgate)
>
>Added:
>  head/devel/git/pkg-descr-gui
>     - copied unchanged from r552135, head/devel/git-gui/pkg-descr
>  head/devel/git/pkg-descr-lite
>     - copied unchanged from r552135, head/devel/git-lite/pkg-descr
>Deleted:
>  head/devel/git-gui/
>  head/devel/git-lite/
>Modified:
>  head/MOVED
>  head/devel/Makefile
>  head/devel/git/Makefile
>
>Modified: head/MOVED
>==============================================================================
>--- head/MOVED	Mon Oct 12 15:33:45 2020	(r552135)
>+++ head/MOVED	Mon Oct 12 16:03:44 2020	(r552136)
>@@ -15640,6 +15640,8 @@ lang/spidermonkey68|lang/spidermonkey78|2020-10-01|Rep
> audio/zinf||2020-10-02|Has expired: Does not build, no upstream
> emulators/qemu-sbruno|emulators/qemu|2020-10-02|Has expired: Port will be removed in favor of emulators/qemu
> dns/knot2-lib|dns/knot3-lib|2020-10-04|Replaced by a more recent version
>+devel/git-gui|devel/git@gui|2020-10-12|Replaced by a flavor
>+devel/git-lite|devel/git@lite|2020-10-12|Replaced by a flavor
> graphics/libxatracker|graphics/mesa-gallium-xa|2020-10-12|Rename to have all gallium driver properly named
> sysutils/gnome-mount||2020-10-12|Replaced by gio/gvfs
> sysutils/syslog-ng322|sysutils/syslog-ng|2020-10-12|Has expired: Agreed upon upstream one year deprecation policy
>
>Modified: head/devel/Makefile
>==============================================================================
>--- head/devel/Makefile	Mon Oct 12 15:33:45 2020	(r552135)
>+++ head/devel/Makefile	Mon Oct 12 16:03:44 2020	(r552136)
>@@ -784,9 +784,7 @@
>     SUBDIR += git-cola
>     SUBDIR += git-delta
>     SUBDIR += git-extras
>-    SUBDIR += git-gui
>     SUBDIR += git-lfs
>-    SUBDIR += git-lite
>     SUBDIR += git-merge-changelog
>     SUBDIR += git-modes
>     SUBDIR += git-review
>
>Modified: head/devel/git/Makefile
>==============================================================================
>--- head/devel/git/Makefile	Mon Oct 12 15:33:45 2020	(r552135)
>+++ head/devel/git/Makefile	Mon Oct 12 16:03:44 2020	(r552136)
>@@ -12,15 +12,28 @@ EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX} \
> 		${PORTNAME}-manpages-${DISTVERSION}${EXTRACT_SUFX}
>
> MAINTAINER=	garga@FreeBSD.org
>-COMMENT?=	Distributed source code management tool
>+.if ${FLAVOR:U} == default
>+COMMENT=	Distributed source code management tool
>+.elif ${FLAVOR:U} == gui
>+COMMENT=	Distributed source code management tool (GUI enabled flavor)
>+.elif ${FLAVOR:U} == lite
>+COMMENT=	Distributed source code management tool (lite flavor)
>+.endif
>
> LICENSE=	GPLv2
> LICENSE_FILE=	${WRKSRC}/COPYING
>
>+FLAVORS=	default gui lite
>+default_CONFLICTS_INSTALL=	git-gui git-lite
>+gui_CONFLICTS_INSTALL=		git git-lite
>+gui_DESCR=			${.CURDIR}/pkg-descr-gui
>+gui_PKGNAMESUFFIX=		-gui
>+lite_CONFLISTS_INSTALL=		git git-gui
>+lite_DESCR=			${.CURDIR}/pkg-descr-lite
>+lite_PKGNAMESUFFIX=		-lite
>+
> USES=		autoreconf gmake iconv shebangfix ssl tar:xz
>
>-CONFLICTS_INSTALL?=	git-gui-[0-9]* git-lite-[0-9]*
>-
> USERS=		git_daemon
> GROUPS=		git_daemon
>
>@@ -57,6 +70,12 @@ OPTIONS_DEFINE=	GUI SVN GITWEB CONTRIB P4 CVS HTMLDOCS
> 		SEND_EMAIL NLS SUBTREE
> OPTIONS_DEFAULT=	CONTRIB P4 CVS PERL GITWEB ICONV CURL SEND_EMAIL PCRE \
> 			SUBTREE SVN
>+.if ${FLAVOR:U} == gui
>+OPTIONS_DEFAULT+=	GUI
>+.elif ${FLAVOR:U} == lite
>+OPTIONS_EXCLUDE=	GUI SVN GITWEB CONTRIB P4 CVS PERL
>+.endif
>+
> OPTIONS_SUB=	yes
>
> CONTRIB_DESC=	Install contributed scripts
>
>Copied: head/devel/git/pkg-descr-gui (from r552135, head/devel/git-gui/pkg-descr)
>==============================================================================
>--- /dev/null	00:00:00 1970	(empty, because file is newly added)
>+++ head/devel/git/pkg-descr-gui	Mon Oct 12 16:03:44 2020	(r552136, copy of r552135, head/devel/git-gui/pkg-descr)
>@@ -0,0 +1,6 @@
>+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 a package with GUI option enabled.
>+
>+WWW: https://git-scm.com/
>
>Copied: head/devel/git/pkg-descr-lite (from r552135, head/devel/git-lite/pkg-descr)
>==============================================================================
>--- /dev/null	00:00:00 1970	(empty, because file is newly added)
>+++ head/devel/git/pkg-descr-lite	Mon Oct 12 16:03:44 2020	(r552136, copy of r552135, head/devel/git-lite/pkg-descr)
>@@ -0,0 +1,6 @@
>+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 bare minimum git experience without any bindings.
>+
>+WWW: https://git-scm.com/

--Qxx1br4bt0+wmkIi
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----

iQJkBAABCgBOFiEEycyIeNkkgohzsoorelmbhSCDnJ0FAl+EjvUwFIAAAAAAFQAS
cGthLWFkZHJlc3NAZ251cGcub3JncGt1YmFqQGFub25nb3RoLnBsAAoJEHpZm4Ug
g5ydhD0QAK7EIhZPIvjt/jv5FEYz/1SFA2lJEEPd+NAWYL22eRmzzKZgcikVGnQ5
LT3di0PiLwqOYE89G5UyzR/stDTHZUimJ+On3JT5ee6EIsMuS5zjutfranA5NLOQ
x+L/PWKA81dmiSANjVao1PfU71YWW6Q/09LqSx1RPLq3NcB6ne6tdP9er5c9HVlY
yPE0Cvqk/55uYHDxdDCOZi8pIIDQBHKA2LAhlONEU8rTdIayZ8CvVH6gB7Omweog
NceNHGhMKTuQ5sR9n1xZzRG2J3EC4LUWzkwaeL+9gV+SfA6S+HdP9BSurc5ofoVe
BxdxS+h9fNhBZJTKTQCsSz226qf/xZS2cUqwjV2ZsozeassL/CMfunhrplRUKZOw
d+AyybrCs2NY4FgbEayC2MEhF4df/w9Rx0UUuPDw44SJMQ3VJVHpyJJcp5+EV8dV
kWv8B0maKqVxnjKazjcJMmdkNjyPPw5qGIPpgiBJ1vxiBsh+6BnNuACJ9sX56O5M
t6rdpqz0RIyaBZ+vfvPfC6ic9rgnan6rdN997RrDxy2IMSPEToAVKaDByN+3OUbL
hDyAZ2/sTENFEOrNjHH4FO8kC2gWbr/+U92LYcfNNszd1yENT6LegdRnrXEDwVUf
E3nZ5BlFVCftD+bSz5nUjcRn4il3t4Ycy3JZP/42iJXTtFqUPM3V
=Up5B
-----END PGP SIGNATURE-----

--Qxx1br4bt0+wmkIi--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20201012171429.GA9510>