From owner-dev-commits-ports-all@freebsd.org Mon Aug 16 15:33:23 2021 Return-Path: Delivered-To: dev-commits-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 1C64B676C87; Mon, 16 Aug 2021 15:33:23 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GpJ8g0Fsjz4hjY; Mon, 16 Aug 2021 15:33:23 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E56624112; Mon, 16 Aug 2021 15:33:22 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 17GFXMmg094229; Mon, 16 Aug 2021 15:33:22 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 17GFXMcd094228; Mon, 16 Aug 2021 15:33:22 GMT (envelope-from git) Date: Mon, 16 Aug 2021 15:33:22 GMT Message-Id: <202108161533.17GFXMcd094228@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Gleb Popov Subject: git: 8c7557982d43 - main - devel/gitlab-shell: Remove ?= assignments. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: arrowd X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 8c7557982d43860d2ee9e703c5a5d4faaf70884c Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2021 15:33:23 -0000 The branch main has been updated by arrowd: URL: https://cgit.FreeBSD.org/ports/commit/?id=8c7557982d43860d2ee9e703c5a5d4faaf70884c commit 8c7557982d43860d2ee9e703c5a5d4faaf70884c Author: Gleb Popov AuthorDate: 2021-08-16 15:26:51 +0000 Commit: Gleb Popov CommitDate: 2021-08-16 15:33:18 +0000 devel/gitlab-shell: Remove ?= assignments. There was a slave port planned in https://reviews.freebsd.org/D25763 , but I gave up on it. --- devel/gitlab-shell/Makefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/devel/gitlab-shell/Makefile b/devel/gitlab-shell/Makefile index 0e0cfe702c1c..9572b7e7e548 100644 --- a/devel/gitlab-shell/Makefile +++ b/devel/gitlab-shell/Makefile @@ -1,12 +1,12 @@ # Created by: Torsten Zuehlsdorff -PORTNAME?= gitlab-shell -PORTVERSION?= 13.19.1 -PORTREVISION?= 0 +PORTNAME= gitlab-shell +PORTVERSION= 13.19.1 +PORTREVISION= 0 CATEGORIES= devel -MAINTAINER?= mfechner@FreeBSD.org -COMMENT?= GitLab Shell handles git commands for GitLab +MAINTAINER= mfechner@FreeBSD.org +COMMENT= GitLab Shell handles git commands for GitLab LICENSE= MIT @@ -15,9 +15,9 @@ MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}" ALL_TARGET= build USE_GITLAB= yes -GL_ACCOUNT?= gitlab-org +GL_ACCOUNT= gitlab-org # Find the commit hash here: https://gitlab.com/gitlab-org/gitlab-shell/tags -GL_COMMIT?= 757aa7c0e0b8733c75c744f188b0136c1fe1830f +GL_COMMIT= 757aa7c0e0b8733c75c744f188b0136c1fe1830f USERS= git GROUPS= git @@ -95,7 +95,7 @@ GH_TUPLE= \ GL_TUPLE= gitlab-org:gitaly:e078d5bd7c5eb37caa222faa15010ce6decc6aa6:gitlab_org_gitaly_v14/vendor/gitlab.com/gitlab-org/gitaly/v14 \ gitlab-org:labkit:b36f912635e66d2d043f57d0d2618fdc51002b87:gitlab_org_labkit/vendor/gitlab.com/gitlab-org/labkit -VARLOGDIR?= /var/log/gitlab-shell +VARLOGDIR= /var/log/gitlab-shell PLIST_FILES+= "@dir(git,,755) ${VARLOGDIR}"