Received: by mail.netbsd.org (Postfix, from userid 605) id C967984DB6; Fri, 10 Jan 2020 21:11:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5267984D57 for ; Fri, 10 Jan 2020 21:11:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id atObRqJn3yGA for ; Fri, 10 Jan 2020 21:11:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id C1A2E84D4E for ; Fri, 10 Jan 2020 21:11:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BB6A2FBF4; Fri, 10 Jan 2020 21:11:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578690674288170" MIME-Version: 1.0 Date: Fri, 10 Jan 2020 21:11:14 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/devel/exempi To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20200110211114.BB6A2FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1578690674288170 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Fri Jan 10 21:11:14 UTC 2020 Modified Files: pkgsrc/devel/exempi: distinfo Added Files: pkgsrc/devel/exempi/patches: patch-XMPFiles_source_PluginHandler_ModuleUtils.h patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp Log Message: Always use C++11 STL and not TR1 on Unix. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/exempi/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h \ pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578690674288170 Content-Disposition: inline Content-Length: 2879 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/exempi/distinfo diff -u pkgsrc/devel/exempi/distinfo:1.11 pkgsrc/devel/exempi/distinfo:1.12 --- pkgsrc/devel/exempi/distinfo:1.11 Wed Jun 5 06:57:04 2019 +++ pkgsrc/devel/exempi/distinfo Fri Jan 10 21:11:14 2020 @@ -1,6 +1,8 @@ -$NetBSD: distinfo,v 1.11 2019/06/05 06:57:04 nia Exp $ +$NetBSD: distinfo,v 1.12 2020/01/10 21:11:14 joerg Exp $ SHA1 (exempi-2.5.0.tar.bz2) = 2461c1149187350c1b174e23b188e7884a32ec66 RMD160 (exempi-2.5.0.tar.bz2) = e4e1fd4e12f6b1ced36e085f524884be45575aa6 SHA512 (exempi-2.5.0.tar.bz2) = 1d042ffe3c3daadf937c4938e7892d52c4835275065e159f7991ddc9f533424fb6cd7d607600c3381440020db9dfa06af5ae15168d7a8012358fa5c8ac453bba Size (exempi-2.5.0.tar.bz2) = 3658187 bytes +SHA1 (patch-XMPFiles_source_PluginHandler_ModuleUtils.h) = 5147d13838836e0a604bea525a5c0e6b036b3547 +SHA1 (patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp) = e78f1360c1619b7a595eeefcb87255556e6f036a Added files: Index: pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h diff -u /dev/null pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h:1.1 --- /dev/null Fri Jan 10 21:11:14 2020 +++ pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_ModuleUtils.h Fri Jan 10 21:11:14 2020 @@ -0,0 +1,13 @@ +$NetBSD: patch-XMPFiles_source_PluginHandler_ModuleUtils.h,v 1.1 2020/01/10 21:11:14 joerg Exp $ + +--- XMPFiles/source/PluginHandler/ModuleUtils.h.orig 2020-01-09 00:04:52.760646486 +0000 ++++ XMPFiles/source/PluginHandler/ModuleUtils.h +@@ -19,7 +19,7 @@ typedef HMODULE OS_ModuleRef; + #include + typedef CFBundleRef OS_ModuleRef; + #elif XMP_UNIXBuild +-#include ++#include + typedef void* OS_ModuleRef; + #else + #error Unsupported operating system Index: pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp diff -u /dev/null pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp:1.1 --- /dev/null Fri Jan 10 21:11:14 2020 +++ pkgsrc/devel/exempi/patches/patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp Fri Jan 10 21:11:14 2020 @@ -0,0 +1,13 @@ +$NetBSD: patch-XMPFiles_source_PluginHandler_OS__Utils__Linux.cpp,v 1.1 2020/01/10 21:11:14 joerg Exp $ + +--- XMPFiles/source/PluginHandler/OS_Utils_Linux.cpp.orig 2020-01-09 00:06:19.570733059 +0000 ++++ XMPFiles/source/PluginHandler/OS_Utils_Linux.cpp +@@ -28,7 +28,7 @@ typedef std::map FilePtr; ++typedef std::shared_ptr FilePtr; + + static std::string GetModulePath( OS_ModuleRef inOSModule ); + /** ************************************************************************************************************************ --_----------=_1578690674288170--