pkgsrc-Changes archive

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

CVS commit: pkgsrc/parallel/mpi-ch



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Aug 22 14:48:14 UTC 2025

Modified Files:
        pkgsrc/parallel/mpi-ch: Makefile

Log Message:
mpi-ch: disable shlib checking for some libraries on NetBSD

this triggers a bug in the library dependency resolution code -
the installed gcc10 package is wrongly identified as dependency even
though the base system libraries would be enough


To generate a diff of this commit:
cvs rdiff -u -r1.101 -r1.102 pkgsrc/parallel/mpi-ch/Makefile

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

Modified files:

Index: pkgsrc/parallel/mpi-ch/Makefile
diff -u pkgsrc/parallel/mpi-ch/Makefile:1.101 pkgsrc/parallel/mpi-ch/Makefile:1.102
--- pkgsrc/parallel/mpi-ch/Makefile:1.101       Tue Apr 25 13:51:49 2023
+++ pkgsrc/parallel/mpi-ch/Makefile     Fri Aug 22 14:48:13 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.101 2023/04/25 13:51:49 jperkin Exp $
+# $NetBSD: Makefile,v 1.102 2025/08/22 14:48:13 wiz Exp $
 
 DISTNAME=      mpich-3.4.3
 CATEGORIES=    parallel
@@ -56,6 +56,10 @@ TEST_TARGET= check
 # Needed for <ISO_Fortran_binding.h>
 USE_PKGSRC_GCC=                yes
 GCC_REQD+=             10
+# TODO: false positive in library dependency resolution like:
+# ERROR: lib/libmpicxx.so.12.1.12: /usr/pkg/gcc10/lib/./libstdc++.so.7: gcc10-10.5.0nb4 is not a runtime dependency
+CHECK_SHLIBS_SKIP+=    lib/libmpicxx.so*
+CHECK_SHLIBS_SKIP+=    lib/libmpifort.so*
 .endif
 
 # Re-enable when at version 2.x.



Home | Main Index | Thread Index | Old Index