pkgsrc-Changes archive

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

CVS commit: pkgsrc/graphics/py-openexr



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Fri Oct 26 12:45:47 UTC 2018

Modified Files:
        pkgsrc/graphics/py-openexr: distinfo
Added Files:
        pkgsrc/graphics/py-openexr/patches: patch-OpenEXR.cpp

Log Message:
py-openexr: Fix build on SunOS.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/graphics/py-openexr/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/py-openexr/patches/patch-OpenEXR.cpp

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

Modified files:

Index: pkgsrc/graphics/py-openexr/distinfo
diff -u pkgsrc/graphics/py-openexr/distinfo:1.4 pkgsrc/graphics/py-openexr/distinfo:1.5
--- pkgsrc/graphics/py-openexr/distinfo:1.4     Wed Oct  3 10:42:56 2018
+++ pkgsrc/graphics/py-openexr/distinfo Fri Oct 26 12:45:47 2018
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.4 2018/10/03 10:42:56 adam Exp $
+$NetBSD: distinfo,v 1.5 2018/10/26 12:45:47 jperkin Exp $
 
 SHA1 (OpenEXR-1.3.2.tar.gz) = 46827a186976972f2cd1e30f11baaef062c98c74
 RMD160 (OpenEXR-1.3.2.tar.gz) = a4cb806ffa825c380cfa9cd50c5307ded028b725
 SHA512 (OpenEXR-1.3.2.tar.gz) = b4b85f3f8860639c4f65a3fe59c721e08573ffe9b2af5cc7e398d9ff249bac604b43fa5bda6f05f8cd248ed7346df1a2972ac7c5a3df12fe0a73b859c618e33d
 Size (OpenEXR-1.3.2.tar.gz) = 10927 bytes
+SHA1 (patch-OpenEXR.cpp) = 9d4bbbfd4e37cacc0c0d8393e65c8f8cedecf6d3

Added files:

Index: pkgsrc/graphics/py-openexr/patches/patch-OpenEXR.cpp
diff -u /dev/null pkgsrc/graphics/py-openexr/patches/patch-OpenEXR.cpp:1.1
--- /dev/null   Fri Oct 26 12:45:47 2018
+++ pkgsrc/graphics/py-openexr/patches/patch-OpenEXR.cpp        Fri Oct 26 12:45:47 2018
@@ -0,0 +1,16 @@
+$NetBSD: patch-OpenEXR.cpp,v 1.1 2018/10/26 12:45:47 jperkin Exp $
+
+Avoid CS define on SunOS.
+
+--- OpenEXR.cpp.orig   2018-08-30 14:53:51.000000000 +0000
++++ OpenEXR.cpp
+@@ -1,5 +1,9 @@
+ #include <Python.h>
+ 
++#ifdef __sun
++#undef CS
++#endif
++
+ #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
+ typedef int Py_ssize_t;
+ #define PY_SSIZE_T_MAX INT_MAX



Home | Main Index | Thread Index | Old Index