From owner-svn-ports-head@freebsd.org Tue Oct 22 12:54:33 2019 Return-Path: Delivered-To: svn-ports-head@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 4C76A15A12B; Tue, 22 Oct 2019 12:54:33 +0000 (UTC) (envelope-from dmgk@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46yD3s1JBrz3FNB; Tue, 22 Oct 2019 12:54:33 +0000 (UTC) (envelope-from dmgk@freebsd.org) Received: from mail.syrec.org (mail.syrec.org [165.227.215.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: dmgk/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 0A51D1413A; Tue, 22 Oct 2019 12:54:33 +0000 (UTC) (envelope-from dmgk@freebsd.org) Received: from xombo.localdomain (unknown [200.55.237.8]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.syrec.org (Postfix) with ESMTPSA id 4039A5261A; Tue, 22 Oct 2019 07:54:32 -0500 (-05) Date: Tue, 22 Oct 2019 07:54:29 -0500 From: Dmitri Goutnik To: Marcelo Araujo Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r515166 - in head/sysutils/go-wtf: . files Message-ID: <20191022125429.GB77600@xombo.localdomain> Mail-Followup-To: Marcelo Araujo , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201910220304.x9M34tL1091732@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201910220304.x9M34tL1091732@repo.freebsd.org> User-Agent: Mutt/1.12.2 (2019-09-21) X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Oct 2019 12:54:33 -0000 On 19-10-22 03:04:55, Marcelo Araujo wrote: > Author: araujo > Date: Tue Oct 22 03:04:55 2019 > New Revision: 515166 > URL: https://svnweb.freebsd.org/changeset/ports/515166 > > Log: > - Update to 0.23. > - Fixes for vendor Microsoft cases sensitive names. > > Submitted by: Christopher Hall (maintainer) > Differential Revision: https://reviews.freebsd.org/D22102 > > Added: > head/sysutils/go-wtf/files/ > head/sysutils/go-wtf/files/patch-modules_azuredevops_widget.go (contents, props changed) > head/sysutils/go-wtf/files/patch-modules_devto_widget.go (contents, props changed) > Modified: > head/sysutils/go-wtf/Makefile > head/sysutils/go-wtf/distinfo > > Modified: head/sysutils/go-wtf/Makefile > ============================================================================== > --- head/sysutils/go-wtf/Makefile Tue Oct 22 02:41:00 2019 (r515165) > +++ head/sysutils/go-wtf/Makefile Tue Oct 22 03:04:55 2019 (r515166) > @@ -1,7 +1,7 @@ > # $FreeBSD$ > > PORTNAME= wtf > -PORTVERSION= 0.21.0 > +PORTVERSION= 0.23.0 > DISTVERSIONPREFIX= v > CATEGORIES= sysutils > PKGNAMEPREFIX= go- > @@ -25,6 +25,14 @@ PORTDOCS= README.md > > OPTIONS_DEFINE= DOCS EXAMPLES > OPTIONS_SUB= yes > + > +# try to deal with case insensitive github names > +WTF_VGH_DIR= ${WRKSRC}/vendor/github.com > +post-patch: > + [ -d "${WTF_VGH_DIR}/Microsoft" -a ! -d "${WTF_VGH_DIR}/microsoft" ] && \ > + ${LN} -s Microsoft "${WTF_VGH_DIR}/microsoft" || true > + [ -d "${WTF_VGH_DIR}/microsoft" -a ! -d "${WTF_VGH_DIR}/Microsoft" ] && \ > + ${LN} -s microsoft "${WTF_VGH_DIR}/Microsoft" || true It seems that upstream has outdated vendored deps (again), I raised a PR for this: https://github.com/wtfutil/wtf/issues/714 -- Dmitri Goutnik dg@syrec.org