Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 22 Oct 2019 07:54:29 -0500
From:      Dmitri Goutnik <dmgk@freebsd.org>
To:        Marcelo Araujo <araujo@freebsd.org>
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>
In-Reply-To: <201910220304.x9M34tL1091732@repo.freebsd.org>
References:  <201910220304.x9M34tL1091732@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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 <hsw_bitmark.com> (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



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