pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/cmocka



Module Name:    pkgsrc
Committed By:   pin
Date:           Sat Jan  6 09:07:07 UTC 2024

Modified Files:
        pkgsrc/devel/cmocka: Makefile PLIST distinfo
        pkgsrc/devel/cmocka/patches: patch-CompilerChecks.cmake
            patch-include_cmocka.h

Log Message:
devel/cmocka: update to 1.1.7

1.1.7
* Update ignore list for source tarball generation

1.1.6
* Added new assert macros to compare 2 double given an epsilon
* Added meson build system
* Added header with version to TAP13 output
* Fixed issues with MSVC
* Fixed TAP output for skipped tests
* Fixed issue with fail_msg
* CMake generated configs for find_package(cmocka)
* Documentation improvements


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/cmocka/Makefile \
    pkgsrc/devel/cmocka/distinfo
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/cmocka/PLIST
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/devel/cmocka/patches/patch-CompilerChecks.cmake \
    pkgsrc/devel/cmocka/patches/patch-include_cmocka.h

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

Modified files:

Index: pkgsrc/devel/cmocka/Makefile
diff -u pkgsrc/devel/cmocka/Makefile:1.11 pkgsrc/devel/cmocka/Makefile:1.12
--- pkgsrc/devel/cmocka/Makefile:1.11   Tue Jan 24 22:20:20 2023
+++ pkgsrc/devel/cmocka/Makefile        Sat Jan  6 09:07:07 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2023/01/24 22:20:20 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2024/01/06 09:07:07 pin Exp $
 
-DISTNAME=      cmocka-1.1.5
+DISTNAME=      cmocka-1.1.7
 CATEGORIES=    devel
 MASTER_SITES=  https://cmocka.org/files/${PKGVERSION_NOREV:R}/
 EXTRACT_SUFX=  .tar.xz
Index: pkgsrc/devel/cmocka/distinfo
diff -u pkgsrc/devel/cmocka/distinfo:1.11 pkgsrc/devel/cmocka/distinfo:1.12
--- pkgsrc/devel/cmocka/distinfo:1.11   Tue Oct 26 10:14:25 2021
+++ pkgsrc/devel/cmocka/distinfo        Sat Jan  6 09:07:07 2024
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.11 2021/10/26 10:14:25 nia Exp $
+$NetBSD: distinfo,v 1.12 2024/01/06 09:07:07 pin Exp $
 
-BLAKE2s (cmocka-1.1.5.tar.xz) = 214d578323ec6e53dc62f828bbfcfabc25643d86ad80832e27b5d3da1f6425ad
-SHA512 (cmocka-1.1.5.tar.xz) = cad7f04757183d004f6eaad39036fc0e24c5e0e987f80e85bc43bc66dba22389cb02b08e25531cc28a541d0a24a86b29be134a2d6fc339128e87d66952f502bd
-Size (cmocka-1.1.5.tar.xz) = 81004 bytes
-SHA1 (patch-CompilerChecks.cmake) = 24766d60fcf9cb388058d69eb66792a4d70031f6
-SHA1 (patch-include_cmocka.h) = f34a92589ce62de6c4fdc8232fc6e0c4bb43aa3d
+BLAKE2s (cmocka-1.1.7.tar.xz) = 319b75e3a0ed138f512913cd4e130d1dc977763a5d25f7378392ca28396a2955
+SHA512 (cmocka-1.1.7.tar.xz) = fe451893474dce1270e12af707a9a8fe1f0217e1782b4e1a67d25dadf56ff4a5e7dbc9ba4431f774aedffa46a40a28a6a0488df24feefb2f93e90fd2369c2c88
+Size (cmocka-1.1.7.tar.xz) = 84064 bytes
+SHA1 (patch-CompilerChecks.cmake) = 08052e3fac8c3c850bfa9a96c2fa30fde377dd95
+SHA1 (patch-include_cmocka.h) = bfde5dbac32b37d1cd31fa1f1b452ce163b0cf53

Index: pkgsrc/devel/cmocka/PLIST
diff -u pkgsrc/devel/cmocka/PLIST:1.4 pkgsrc/devel/cmocka/PLIST:1.5
--- pkgsrc/devel/cmocka/PLIST:1.4       Sat Nov 23 07:23:57 2019
+++ pkgsrc/devel/cmocka/PLIST   Sat Jan  6 09:07:07 2024
@@ -1,9 +1,10 @@
-@comment $NetBSD: PLIST,v 1.4 2019/11/23 07:23:57 mef Exp $
+@comment $NetBSD: PLIST,v 1.5 2024/01/06 09:07:07 pin Exp $
 include/cmocka.h
 include/cmocka_pbc.h
+lib/cmake/cmocka/cmocka-config-noconfig.cmake
 lib/cmake/cmocka/cmocka-config-version.cmake
 lib/cmake/cmocka/cmocka-config.cmake
 lib/libcmocka.so
 lib/libcmocka.so.0
-lib/libcmocka.so.0.7.0
+lib/libcmocka.so.0.8.0
 lib/pkgconfig/cmocka.pc

Index: pkgsrc/devel/cmocka/patches/patch-CompilerChecks.cmake
diff -u pkgsrc/devel/cmocka/patches/patch-CompilerChecks.cmake:1.1 pkgsrc/devel/cmocka/patches/patch-CompilerChecks.cmake:1.2
--- pkgsrc/devel/cmocka/patches/patch-CompilerChecks.cmake:1.1  Mon Dec  3 15:16:33 2018
+++ pkgsrc/devel/cmocka/patches/patch-CompilerChecks.cmake      Sat Jan  6 09:07:07 2024
@@ -1,10 +1,10 @@
-$NetBSD: patch-CompilerChecks.cmake,v 1.1 2018/12/03 15:16:33 adam Exp $
+$NetBSD: patch-CompilerChecks.cmake,v 1.2 2024/01/06 09:07:07 pin Exp $
 
 Let PkgSrc handle security features.
 
---- CompilerChecks.cmake.orig  2018-12-03 09:42:07.000000000 +0000
+--- CompilerChecks.cmake.orig  2024-01-05 09:27:46.665856486 +0000
 +++ CompilerChecks.cmake
-@@ -62,28 +62,6 @@ if (UNIX)
+@@ -66,29 +66,6 @@ if (UNIX)
          endif()
      endif()
  
@@ -30,6 +30,7 @@ Let PkgSrc handle security features.
 -    if (WITH_STACK_CLASH_PROTECTION)
 -        list(APPEND SUPPORTED_COMPILER_FLAGS "-fstack-clash-protection")
 -    endif()
- 
+-
      if (PICKY_DEVELOPER)
          add_c_compiler_flag("-Wno-error=deprecated-declarations" SUPPORTED_COMPILER_FLAGS)
+         add_c_compiler_flag("-Wno-error=tautological-compare" SUPPORTED_COMPILER_FLAGS)
Index: pkgsrc/devel/cmocka/patches/patch-include_cmocka.h
diff -u pkgsrc/devel/cmocka/patches/patch-include_cmocka.h:1.1 pkgsrc/devel/cmocka/patches/patch-include_cmocka.h:1.2
--- pkgsrc/devel/cmocka/patches/patch-include_cmocka.h:1.1      Fri Feb  2 10:31:07 2018
+++ pkgsrc/devel/cmocka/patches/patch-include_cmocka.h  Sat Jan  6 09:07:07 2024
@@ -1,10 +1,10 @@
-$NetBSD: patch-include_cmocka.h,v 1.1 2018/02/02 10:31:07 jperkin Exp $
+$NetBSD: patch-include_cmocka.h,v 1.2 2024/01/06 09:07:07 pin Exp $
 
 C99 fix.
 
---- include/cmocka.h.orig      2015-03-25 16:04:39.000000000 +0000
+--- include/cmocka.h.orig      2024-01-05 09:30:00.219203105 +0000
 +++ include/cmocka.h
-@@ -100,6 +100,11 @@ typedef uintmax_t LargestIntegralType;
+@@ -121,6 +121,11 @@ typedef uintmax_t LargestIntegralType;
      ((LargestIntegralType)(value))
  
  /* Smallest integral type capable of holding a pointer. */
@@ -13,6 +13,6 @@ C99 fix.
 +# define _UINTPTR_T
 +# define _UINTPTR_T_DEFINED
 +#endif
- #if !defined(_UINTPTR_T) && !defined(_UINTPTR_T_DEFINED)
+ #if !defined(_UINTPTR_T) && !defined(_UINTPTR_T_DEFINED) && !defined(HAVE_UINTPTR_T)
  # if defined(_WIN32)
      /* WIN32 is an ILP32 platform */



Home | Main Index | Thread Index | Old Index