Received: by mail.netbsd.org (Postfix, from userid 605) id AC2F384E71; Sat, 21 Jan 2023 13:20:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D5CC084E70 for ; Sat, 21 Jan 2023 13:20:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id OW3cLLVxb9fZ for ; Sat, 21 Jan 2023 13:20:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 421F784E6D for ; Sat, 21 Jan 2023 13:20:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3B8DBFA90; Sat, 21 Jan 2023 13:20:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674307234251790" MIME-Version: 1.0 Date: Sat, 21 Jan 2023 13:20:34 +0000 From: "Masatake Daimon" Subject: CVS commit: pkgsrc/lang/ghc94 To: pkgsrc-changes@NetBSD.org Reply-To: pho@netbsd.org X-Mailer: log_accum Message-Id: <20230121132034.3B8DBFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674307234251790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pho Date: Sat Jan 21 13:20:34 UTC 2023 Modified Files: pkgsrc/lang/ghc94: distinfo pkgsrc/lang/ghc94/patches: patch-libraries_process_cbits_posix_fork__exec.c Log Message: Add a merge request URL to a patch To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/ghc94/distinfo cvs rdiff -u -r1.1 -r1.2 \ pkgsrc/lang/ghc94/patches/patch-libraries_process_cbits_posix_fork__exec.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1674307234251790 Content-Disposition: inline Content-Length: 2414 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ghc94/distinfo diff -u pkgsrc/lang/ghc94/distinfo:1.3 pkgsrc/lang/ghc94/distinfo:1.4 --- pkgsrc/lang/ghc94/distinfo:1.3 Sat Jan 21 12:59:54 2023 +++ pkgsrc/lang/ghc94/distinfo Sat Jan 21 13:20:33 2023 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2023/01/21 12:59:54 pho Exp $ +$NetBSD: distinfo,v 1.4 2023/01/21 13:20:33 pho Exp $ BLAKE2s (ghc-9.0.1-boot-hadrian.tar.gz) = fff7259676e3d0281c7e15e684b65dc04313c9bcb4d6161962325c3fcee08c7b SHA512 (ghc-9.0.1-boot-hadrian.tar.gz) = 02047ca0718a240ce702aeac16c2194b6bf73119dacb59816c1e9a631667e420e44c6ef6d5b83f225af3bd31e3ec3fc8f28e9a3cb22e86f63089110429759878 @@ -48,7 +48,7 @@ SHA1 (patch-libraries_base_System_Enviro SHA1 (patch-libraries_base_System_Environment_ExecutablePath.hsc) = 30baa7f76f20d449feea0f634ca6b90e04d9481e SHA1 (patch-libraries_base_configure) = 4e02082cdfde8d927d12f3d2f3d98ace6d4ee116 SHA1 (patch-libraries_ghc-boot_GHC_BaseDir.hs) = 6885d0426eb4c09462b6628924a0801fe6c83a2f -SHA1 (patch-libraries_process_cbits_posix_fork__exec.c) = 9c942faf829a64a20237c788e8c8265179db55c7 +SHA1 (patch-libraries_process_cbits_posix_fork__exec.c) = 7c460239c76ee1a05ae364752f7216973597075a SHA1 (patch-libraries_terminfo_configure.ac) = c961bc2280c38b950888b9a34358738eae072abf SHA1 (patch-libraries_text_text.cabal) = 5cfa19359cbdca7c836abae60302addd5e3e4218 SHA1 (patch-libraries_time_lib_Data_Time_Clock_Internal_CTimespec.hsc) = 588270767f8a9cbde0648fc99807891fef65d721 Index: pkgsrc/lang/ghc94/patches/patch-libraries_process_cbits_posix_fork__exec.c diff -u pkgsrc/lang/ghc94/patches/patch-libraries_process_cbits_posix_fork__exec.c:1.1 pkgsrc/lang/ghc94/patches/patch-libraries_process_cbits_posix_fork__exec.c:1.2 --- pkgsrc/lang/ghc94/patches/patch-libraries_process_cbits_posix_fork__exec.c:1.1 Sat Jan 21 04:49:25 2023 +++ pkgsrc/lang/ghc94/patches/patch-libraries_process_cbits_posix_fork__exec.c Sat Jan 21 13:20:34 2023 @@ -1,7 +1,10 @@ -$NetBSD: patch-libraries_process_cbits_posix_fork__exec.c,v 1.1 2023/01/21 04:49:25 pho Exp $ +$NetBSD: patch-libraries_process_cbits_posix_fork__exec.c,v 1.2 2023/01/21 13:20:34 pho Exp $ Ensure _POSIX_PTHREAD_SEMANTICS is defined on SunOS. +Pull request: +https://github.com/haskell/process/pull/274 + --- libraries/process/cbits/posix/fork_exec.c.orig 2021-10-28 20:42:10.000000000 +0000 +++ libraries/process/cbits/posix/fork_exec.c @@ -1,3 +1,7 @@ --_----------=_1674307234251790--