summaryrefslogtreecommitdiff
path: root/devel/cpputest
diff options
context:
space:
mode:
authorschmonz <schmonz@pkgsrc.org>2018-06-22 15:56:56 +0000
committerschmonz <schmonz@pkgsrc.org>2018-06-22 15:56:56 +0000
commit0fe18bf296fbe754a8e7b7159d0e22bae094c20f (patch)
tree0fbeda421c7809488690cbe66f762473e30f85db /devel/cpputest
parentc5d2f96f887ce4f8f38fd6229640bce16fe38fab (diff)
downloadpkgsrc-0fe18bf296fbe754a8e7b7159d0e22bae094c20f.tar.gz
Expect pid_t from fork() and waitpid() to fix build on SmartOS. Quell pkglint.
Diffstat (limited to 'devel/cpputest')
-rw-r--r--devel/cpputest/Makefile6
-rw-r--r--devel/cpputest/distinfo4
-rw-r--r--devel/cpputest/patches/patch-include_CppUTest_PlatformSpecificFunctions.h17
-rw-r--r--devel/cpputest/patches/patch-src_Platforms_Gcc_UtestPlatform.cpp17
4 files changed, 40 insertions, 4 deletions
diff --git a/devel/cpputest/Makefile b/devel/cpputest/Makefile
index 6ba62d8911a..67f7f8545fa 100644
--- a/devel/cpputest/Makefile
+++ b/devel/cpputest/Makefile
@@ -1,11 +1,11 @@
-# $NetBSD: Makefile,v 1.4 2017/08/14 23:42:08 schmonz Exp $
+# $NetBSD: Makefile,v 1.5 2018/06/22 15:56:56 schmonz Exp $
+GITHUB_PROJECT= cpputest
+GITHUB_TAG= v${PKGVERSION_NOREV}
DISTNAME= cpputest-3.8
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=cpputest/}
-GITHUB_TAG= v${PKGVERSION_NOREV}
-GITHUB_PROJECT= cpputest
MAINTAINER= schmonz@NetBSD.org
HOMEPAGE= http://cpputest.github.io/
diff --git a/devel/cpputest/distinfo b/devel/cpputest/distinfo
index 3a8bda699b9..c2ff3a27605 100644
--- a/devel/cpputest/distinfo
+++ b/devel/cpputest/distinfo
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.2 2016/06/07 11:12:02 schmonz Exp $
+$NetBSD: distinfo,v 1.3 2018/06/22 15:56:56 schmonz Exp $
SHA1 (cpputest-3.8.tar.gz) = c68f8b59d0beb6d4e6953173ec3611f801cdb3a1
RMD160 (cpputest-3.8.tar.gz) = c1a4fad966bd8c557fbe62dde0d418b7d1b529ec
SHA512 (cpputest-3.8.tar.gz) = 42b9a98549e1296ab9dfcd40bb94e1ac634fc1e70ad6250654ca0fa254c63e0349ae9ccd0b9d72c4bde1f7baccde97e08ce3e6d1fff3e464c3d9e8ae5949185f
Size (cpputest-3.8.tar.gz) = 2333302 bytes
+SHA1 (patch-include_CppUTest_PlatformSpecificFunctions.h) = afb43662631efd428486b8759c098d9f81bb8470
+SHA1 (patch-src_Platforms_Gcc_UtestPlatform.cpp) = 436725ac8e2d6b71d2488cd1076d55082104c3bb
diff --git a/devel/cpputest/patches/patch-include_CppUTest_PlatformSpecificFunctions.h b/devel/cpputest/patches/patch-include_CppUTest_PlatformSpecificFunctions.h
new file mode 100644
index 00000000000..2ff3ed0a300
--- /dev/null
+++ b/devel/cpputest/patches/patch-include_CppUTest_PlatformSpecificFunctions.h
@@ -0,0 +1,17 @@
+$NetBSD: patch-include_CppUTest_PlatformSpecificFunctions.h,v 1.1 2018/06/22 15:56:56 schmonz Exp $
+
+Expect pid_t from fork() and waitpid().
+
+--- include/CppUTest/PlatformSpecificFunctions.h.orig 2016-05-25 05:41:47.000000000 +0000
++++ include/CppUTest/PlatformSpecificFunctions.h
+@@ -33,8 +33,8 @@ TestOutput::WorkingEnvironment PlatformS
+
+ class TestPlugin;
+ extern void (*PlatformSpecificRunTestInASeperateProcess)(UtestShell* shell, TestPlugin* plugin, TestResult* result);
+-extern int (*PlatformSpecificFork)(void);
+-extern int (*PlatformSpecificWaitPid)(int pid, int* status, int options);
++extern pid_t (*PlatformSpecificFork)(void);
++extern pid_t (*PlatformSpecificWaitPid)(int pid, int* status, int options);
+
+ /* Platform specific interface we use in order to minimize dependencies with LibC.
+ * This enables porting to different embedded platforms.
diff --git a/devel/cpputest/patches/patch-src_Platforms_Gcc_UtestPlatform.cpp b/devel/cpputest/patches/patch-src_Platforms_Gcc_UtestPlatform.cpp
new file mode 100644
index 00000000000..00541e4ab63
--- /dev/null
+++ b/devel/cpputest/patches/patch-src_Platforms_Gcc_UtestPlatform.cpp
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_Platforms_Gcc_UtestPlatform.cpp,v 1.1 2018/06/22 15:56:56 schmonz Exp $
+
+Expect pid_t from fork() and waitpid().
+
+--- src/Platforms/Gcc/UtestPlatform.cpp.orig 2018-06-22 15:45:32.759762992 +0000
++++ src/Platforms/Gcc/UtestPlatform.cpp
+@@ -132,8 +132,8 @@ TestOutput::WorkingEnvironment PlatformS
+
+ void (*PlatformSpecificRunTestInASeperateProcess)(UtestShell* shell, TestPlugin* plugin, TestResult* result) =
+ GccPlatformSpecificRunTestInASeperateProcess;
+-int (*PlatformSpecificFork)(void) = PlatformSpecificForkImplementation;
+-int (*PlatformSpecificWaitPid)(int, int*, int) = PlatformSpecificWaitPidImplementation;
++pid_t (*PlatformSpecificFork)(void) = PlatformSpecificForkImplementation;
++pid_t (*PlatformSpecificWaitPid)(int, int*, int) = PlatformSpecificWaitPidImplementation;
+
+ extern "C" {
+