Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 14 Sep 2020 18:35:38 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r548668 - in head: devel/meson x11/gnome-shell
Message-ID:  <202009141835.08EIZcSa041606@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Sep 14 18:35:38 2020
New Revision: 548668
URL: https://svnweb.freebsd.org/changeset/ports/548668

Log:
  devel/meson: update to 0.55.3
  
  - Fix "/usr/bin/env python3" in one more file [1]
  
  Changes:	https://mesonbuild.com/Release-notes-for-0-55-0.html
  Changes:	https://github.com/mesonbuild/meson/compare/0.54.3...0.55.3
  Reported by:	GitHub (watch releases)
  PR:		247935
  With help of:	yuri
  Exp-run by:	antoine
  Submitted by:	tcberner [1]
  Approved by:	tcberner

Modified:
  head/devel/meson/Makefile   (contents, props changed)
  head/devel/meson/distinfo   (contents, props changed)
  head/x11/gnome-shell/Makefile   (contents, props changed)

Modified: head/devel/meson/Makefile
==============================================================================
--- head/devel/meson/Makefile	Mon Sep 14 18:34:22 2020	(r548667)
+++ head/devel/meson/Makefile	Mon Sep 14 18:35:38 2020	(r548668)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	meson
-PORTVERSION=	0.54.3
+PORTVERSION=	0.55.3
 CATEGORIES=	devel python
 MASTER_SITES=	https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/
 
@@ -17,7 +17,8 @@ TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest-xdist>0:de
 
 USES=		python:3.5+ shebangfix
 USE_PYTHON=	autoplist distutils noflavors
-SHEBANG_FILES=	mesonbuild/cmake/data/run_ctgt.py
+SHEBANG_FILES=	mesonbuild/rewriter.py \
+		mesonbuild/scripts/cmake_run_ctgt.py
 NO_ARCH=	yes
 
 # https://github.com/mesonbuild/meson/issues/6016

Modified: head/devel/meson/distinfo
==============================================================================
--- head/devel/meson/distinfo	Mon Sep 14 18:34:22 2020	(r548667)
+++ head/devel/meson/distinfo	Mon Sep 14 18:35:38 2020	(r548668)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1453575159
-SHA256 (meson-0.54.3.tar.gz) = f2bdf4cf0694e696b48261cdd14380fb1d0fe33d24744d8b2df0c12f33ebb662
-SIZE (meson-0.54.3.tar.gz) = 1690919
+TIMESTAMP = 1597508825
+SHA256 (meson-0.55.3.tar.gz) = 6bed2a25a128bbabe97cf40f63165ebe800e4fcb46db8ab7ef5c2b5789f092a5
+SIZE (meson-0.55.3.tar.gz) = 1740465

Modified: head/x11/gnome-shell/Makefile
==============================================================================
--- head/x11/gnome-shell/Makefile	Mon Sep 14 18:34:22 2020	(r548667)
+++ head/x11/gnome-shell/Makefile	Mon Sep 14 18:35:38 2020	(r548668)
@@ -62,6 +62,11 @@ CPE_VENDOR=	gnome
 
 GLIB_SCHEMAS=	org.gnome.shell.gschema.xml
 
+.if exists(/usr/bin/ld.lld) && ${/usr/bin/ld:L:tA} != /usr/bin/ld.lld
+# Work around "New rpath must not be longer than the old one."
+LDFLAGS+=	-fuse-ld=lld
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|python3|${PYTHON_VERSION}|g' \
 		${WRKSRC}/meson.build



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