svn commit: r515166 - in head/sysutils/go-wtf: . files

Dmitri Goutnik dmgk at freebsd.org
Tue Oct 22 12:54:33 UTC 2019


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 at syrec.org


More information about the svn-ports-head mailing list