pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/exempi



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.

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 <memory>
+ typedef CFBundleRef OS_ModuleRef;
+ #elif XMP_UNIXBuild
+-#include <tr1/memory>
++#include <memory>
+ 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<OS_ModuleRef, std::stri
+ static ResourceFileToPathMap                                          sMapResourceFileToPath;
+ static XMP_ReadWriteLock                                                      sMapModuleRWLock;
+ 
+-typedef std::tr1::shared_ptr<int>                                     FilePtr;
++typedef std::shared_ptr<int>                                  FilePtr;
+ 
+ static std::string GetModulePath( OS_ModuleRef inOSModule );
+ /** ************************************************************************************************************************



Home | Main Index | Thread Index | Old Index