pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/meson



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Tue Feb 22 17:56:53 UTC 2022

Modified Files:
        pkgsrc/devel/meson: Makefile distinfo
Added Files:
        pkgsrc/devel/meson/patches: patch-mesonbuild_linkers_linkers.py

Log Message:
meson: Avoid thin archives on SunOS.

Fixes lots of dependencies.  Bump PKGREVISION.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 pkgsrc/devel/meson/Makefile
cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/meson/distinfo
cvs rdiff -u -r0 -r1.1 \
    pkgsrc/devel/meson/patches/patch-mesonbuild_linkers_linkers.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/meson/Makefile
diff -u pkgsrc/devel/meson/Makefile:1.36 pkgsrc/devel/meson/Makefile:1.37
--- pkgsrc/devel/meson/Makefile:1.36    Tue Feb 15 10:00:05 2022
+++ pkgsrc/devel/meson/Makefile Tue Feb 22 17:56:53 2022
@@ -1,6 +1,7 @@
-# $NetBSD: Makefile,v 1.36 2022/02/15 10:00:05 adam Exp $
+# $NetBSD: Makefile,v 1.37 2022/02/22 17:56:53 jperkin Exp $
 
 DISTNAME=      meson-0.61.2
+PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=m/meson/}
 

Index: pkgsrc/devel/meson/distinfo
diff -u pkgsrc/devel/meson/distinfo:1.33 pkgsrc/devel/meson/distinfo:1.34
--- pkgsrc/devel/meson/distinfo:1.33    Tue Feb 15 10:00:05 2022
+++ pkgsrc/devel/meson/distinfo Tue Feb 22 17:56:53 2022
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.33 2022/02/15 10:00:05 adam Exp $
+$NetBSD: distinfo,v 1.34 2022/02/22 17:56:53 jperkin Exp $
 
 BLAKE2s (meson-0.61.2.tar.gz) = ebf7effb8133bf78c4c3d60841d466baf283b6a78fe89d6ccae7b7f1fd1abe84
 SHA512 (meson-0.61.2.tar.gz) = 0cbc686b23a4d0b74e723a97869898c1e44977ee354ed9186ccac3e527c00b7407f62a15435cb9588e9d63f4e87de54da0a7fac5b251079d1a13851f17d61529
@@ -6,5 +6,6 @@ Size (meson-0.61.2.tar.gz) = 2014220 byt
 SHA1 (patch-mesonbuild_compilers_detect.py) = 6379aaae55a7175291133335f15307b53aee4384
 SHA1 (patch-mesonbuild_compilers_mixins_gnu.py) = cc9fe3204c7cf003d288ef5635fa7853a44a2e34
 SHA1 (patch-mesonbuild_dependencies_dev.py) = 44a3bdb96a1afad1f1a9110b6187c9daad0d449f
+SHA1 (patch-mesonbuild_linkers_linkers.py) = 4ca793f71aac2119f94464bb2beb83ed3da3e9a0
 SHA1 (patch-mesonbuild_modules_pkgconfig.py) = 8962056c6966cb38e98661226128b4c9c65ecea7
 SHA1 (patch-mesonbuild_scripts_depfixer.py) = b8673de86f49f7a9876afcd05536766e0555d217

Added files:

Index: pkgsrc/devel/meson/patches/patch-mesonbuild_linkers_linkers.py
diff -u /dev/null pkgsrc/devel/meson/patches/patch-mesonbuild_linkers_linkers.py:1.1
--- /dev/null   Tue Feb 22 17:56:53 2022
+++ pkgsrc/devel/meson/patches/patch-mesonbuild_linkers_linkers.py      Tue Feb 22 17:56:53 2022
@@ -0,0 +1,15 @@
+$NetBSD: patch-mesonbuild_linkers_linkers.py,v 1.1 2022/02/22 17:56:53 jperkin Exp $
+
+Avoid thin archives on SunOS.
+
+--- mesonbuild/linkers/linkers.py.orig 2022-01-02 20:12:32.000000000 +0000
++++ mesonbuild/linkers/linkers.py
+@@ -197,7 +197,7 @@ class ArLinker(ArLikeLinker):
+         thinargs = ''
+         if '[D]' in stdo:
+             stdargs += 'D'
+-        if '[T]' in stdo:
++        if '[T]' in stdo and not mesonlib.is_sunos():
+             thinargs = 'T'
+         self.std_args = [stdargs]
+         self.std_thin_args = [stdargs + thinargs]



Home | Main Index | Thread Index | Old Index