pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/meson meson: Avoid thin archives on SunOS.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1d7c67d1a292
branches:  trunk
changeset: 374445:1d7c67d1a292
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Tue Feb 22 17:56:53 2022 +0000

description:
meson: Avoid thin archives on SunOS.

Fixes lots of dependencies.  Bump PKGREVISION.

diffstat:

 devel/meson/Makefile                                    |   3 ++-
 devel/meson/distinfo                                    |   3 ++-
 devel/meson/patches/patch-mesonbuild_linkers_linkers.py |  15 +++++++++++++++
 3 files changed, 19 insertions(+), 2 deletions(-)

diffs (47 lines):

diff -r e6f0c13123c4 -r 1d7c67d1a292 devel/meson/Makefile
--- a/devel/meson/Makefile      Tue Feb 22 16:39:37 2022 +0000
+++ b/devel/meson/Makefile      Tue Feb 22 17:56:53 2022 +0000
@@ -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/}
 
diff -r e6f0c13123c4 -r 1d7c67d1a292 devel/meson/distinfo
--- a/devel/meson/distinfo      Tue Feb 22 16:39:37 2022 +0000
+++ b/devel/meson/distinfo      Tue Feb 22 17:56:53 2022 +0000
@@ -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 @@
 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
diff -r e6f0c13123c4 -r 1d7c67d1a292 devel/meson/patches/patch-mesonbuild_linkers_linkers.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/meson/patches/patch-mesonbuild_linkers_linkers.py   Tue Feb 22 17:56:53 2022 +0000
@@ -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