View | Details | Raw Unified | Return to bug 260056
Collapse All | Expand All

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

Return to bug 260056