Description: Support for OpenRISC/or1k architecture This patch adds support for the OpenRISC/or1k architecture. Forwarded: https://github.com/numpy/numpy/issues/4743 Bug-Debian: http://bugs.debian.org/749195 Author: Manuel A. Fernandez Montecelo Last-Update: 2014-05-25 diff -Nru python-numpy-1.8.1/debian/changelog python-numpy-1.8.1/debian/changelog --- python-numpy-1.8.1/debian/changelog 2014-03-27 19:25:19.000000000 +0000 +++ python-numpy-1.8.1/debian/changelog 2014-04-19 10:26:17.000000000 +0100 @@ -1,3 +1,10 @@ +python-numpy (1:1.8.1-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * or1k port + + -- Manuel A. Fernandez Montecelo Sat, 19 Apr 2014 10:25:58 +0100 + python-numpy (1:1.8.1-1) unstable; urgency=medium * New upstream bugfix release diff -Nru python-numpy-1.8.1/debian/patches/or1k-port.patch python-numpy-1.8.1/debian/patches/or1k-port.patch --- python-numpy-1.8.1/debian/patches/or1k-port.patch 1970-01-01 01:00:00.000000000 +0100 +++ python-numpy-1.8.1/debian/patches/or1k-port.patch 2014-04-19 10:31:14.000000000 +0100 @@ -0,0 +1,21 @@ +--- a/numpy/core/include/numpy/npy_cpu.h ++++ b/numpy/core/include/numpy/npy_cpu.h +@@ -66,6 +66,8 @@ + #define NPY_CPU_MIPSEL + #elif defined(__MIPSEB__) + #define NPY_CPU_MIPSEB ++#elif defined(__or1k__) ++ #define NPY_CPU_OR1K + #elif defined(__aarch64__) + #define NPY_CPU_AARCH64 + #elif defined(__mc68000__) +--- a/numpy/core/include/numpy/npy_endian.h ++++ b/numpy/core/include/numpy/npy_endian.h +@@ -37,6 +37,7 @@ + || defined(NPY_CPU_ARMEB) \ + || defined(NPY_CPU_SH_BE) \ + || defined(NPY_CPU_MIPSEB) \ ++ || defined(NPY_CPU_OR1K) \ + || defined(NPY_CPU_M68K) + #define NPY_BYTE_ORDER NPY_BIG_ENDIAN + #else diff -Nru python-numpy-1.8.1/debian/patches/series python-numpy-1.8.1/debian/patches/series --- python-numpy-1.8.1/debian/patches/series 2014-03-27 19:25:19.000000000 +0000 +++ python-numpy-1.8.1/debian/patches/series 2014-04-19 10:27:01.000000000 +0100 @@ -4,3 +4,4 @@ #05_fix_endianness_detection.patch 10_use_local_python.org_object.inv_sphinx.diff python3-soabi.patch +or1k-port.patch