git: 41e016f4ffa5 - main - devel/meson: update to 0.60.2

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Mon, 29 Nov 2021 12:10:40 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=41e016f4ffa5c8a4cea36d6e0af732899aa85117

commit 41e016f4ffa5c8a4cea36d6e0af732899aa85117
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2021-11-25 21:25:44 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2021-11-29 12:08:27 +0000

    devel/meson: update to 0.60.2
    
    Changes:        https://github.com/mesonbuild/meson/compare/0.60.1...0.60.2
    PR:             260056
    Reported by:    GitHub (watch releases)
    Exp-run by:     antoine
---
 devel/meson/Makefile                           |  3 +--
 devel/meson/distinfo                           |  6 +++---
 devel/meson/files/patch-mesonbuild_minstall.py | 16 ----------------
 3 files changed, 4 insertions(+), 21 deletions(-)

diff --git a/devel/meson/Makefile b/devel/meson/Makefile
index 43b3469b333f..980505eef92c 100644
--- a/devel/meson/Makefile
+++ b/devel/meson/Makefile
@@ -1,8 +1,7 @@
 # Created by: Ting-Wei Lan <lantw44@gmail.com>
 
 PORTNAME=	meson
-PORTVERSION=	0.60.1
-PORTREVISION=	1
+PORTVERSION=	0.60.2
 CATEGORIES=	devel python
 MASTER_SITES=	https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/
 
diff --git a/devel/meson/distinfo b/devel/meson/distinfo
index 4ad11de5ebde..c63913c2fa52 100644
--- a/devel/meson/distinfo
+++ b/devel/meson/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1635886525
-SHA256 (meson-0.60.1.tar.gz) = 5add789c953d984b500858b2851ee3d7add0460cf1a6f852f0a721af17384e13
-SIZE (meson-0.60.1.tar.gz) = 1995258
+TIMESTAMP = 1637875544
+SHA256 (meson-0.60.2.tar.gz) = 64e6968565bf1b8152f4f9d6ca8154efb9e14caa9aabf7b22e71e6c5d053e921
+SIZE (meson-0.60.2.tar.gz) = 1998788
diff --git a/devel/meson/files/patch-mesonbuild_minstall.py b/devel/meson/files/patch-mesonbuild_minstall.py
deleted file mode 100644
index cca3919c2978..000000000000
--- a/devel/meson/files/patch-mesonbuild_minstall.py
+++ /dev/null
@@ -1,16 +0,0 @@
-https://github.com/mesonbuild/meson/issues/9592
-
---- mesonbuild/minstall.py.orig	2021-11-02 19:58:13 UTC
-+++ mesonbuild/minstall.py
-@@ -247,6 +247,11 @@ def apply_ldconfig(dm: DirMaker) -> None:
-     '''
-     Apply ldconfig to update the ld.so.cache.
-     '''
-+    from .mesonlib import is_linux
-+    if not is_linux():
-+        # Don't blindly assume GNU semantics on other systems
-+        return
-+
-     if not shutil.which('ldconfig'):
-         # If we don't have ldconfig, failure is ignored quietly.
-         return