Hans Johnson
b25c978187
ENH: Update to latest fully passing release
...
quay.io/pypa/manylinux_2_28_x86_64:2025-02-15-d68c3fb
The release 2025-02-15-d68c3fb is the latest release
that has no security failures identified.
2025-03-04 14:45:38 -06:00
Hans Johnson
2235db7afb
BUG: Update openssl 1.1.1w building with c99 conformance
...
```
test/v3ext.c:201:24: error: implicit declaration of function 'memcmp' [-Wimplicit-function-declaration]
201 | if (!TEST_true(memcmp(ip1->data, ip2->data, ip1->length) <= 0))
| ^~~~~~
test/testutil.h:360:66: note: in definition of macro 'TEST_true'
360 | # define TEST_true(a) test_true(__FILE__, __LINE__, #a, (a) != 0)
| ^
test/v3ext.c:18:1: note: include '<string.h>' or provide a declaration of 'memcmp'
17 | #include "testutil.h"
+++ |+#include <string.h>
18 |
```
2025-03-04 14:43:18 -06:00
Hans Johnson
1678be2d0d
ENH: Update to latest fully passing release
...
The release 2025-02-23-361da4c is the latest release
that has no security failures identified.
2025-03-04 12:07:38 -06:00
Hans Johnson
16e96d1b07
BUG: Install missing library libatomic
...
```txt
411.0 /tmp/tmp.9qZYWcxd6F/rustup-init: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
411.0 /tmp/tmp.9qZYWcxd6F/rustup-init: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
------
Dockerfile:97
--------------------
96 |
97 | >>> RUN \
98 | >>> X86_FLAG=$([ "$DEFAULT_DOCKCROSS_IMAGE" = "dockcross/manylinux2014-x86" ] && echo "-32" || echo "") && \
99 | >>> /buildscripts/build-and-install-openssl.sh $X86_FLAG && \
100 | >>> /buildscripts/build-and-install-openssh.sh && \
101 | >>> /buildscripts/build-and-install-curl.sh && \
102 | >>> /buildscripts/build-and-install-git.sh && \
103 | >>> /buildscripts/build-and-install-cmake.sh $X86_FLAG && \
104 | >>> /buildscripts/build-and-install-rustup.sh && \
105 | >>> /buildscripts/install-liquidprompt-binary.sh && \
106 | >>> PYTHON=$([ -e /opt/python/cp38-cp38/bin/python ] && echo "/opt/python/cp38-cp38/bin/python" || echo "python3") && \
107 | >>> /buildscripts/install-python-packages.sh -python ${PYTHON} && \
108 | >>> /buildscripts/build-and-install-ninja.sh -python ${PYTHON} && \
109 | >>> /buildscripts/build-and-install-flatcc.sh && \
110 | >>> rm -rf /buildscripts
111 |
--------------------
ERROR: failed to solve: process "/bin/sh -c X86_FLAG=$([ \"$DEFAULT_DOCKCROSS_IMAGE\" = \"dockcross/manylinux2014-x86\" ] && echo \"-32\" || echo \"\") && /buildscripts/build-and-install-openssl.sh $X86_FLAG && /buildscripts/build-and-install-openssh.sh && /buildscripts/build-and-install-curl.sh && /buildscripts/build-and-install-git.sh && /buildscripts/build-and-install-cmake.sh $X86_FLAG && /buildscripts/build-and-install-rustup.sh && /buildscripts/install-liquidprompt-binary.sh && PYTHON=$([ -e /opt/python/cp38-cp38/bin/python ] && echo \"/opt/python/cp38-cp38/bin/python\" || echo \"python3\") && /buildscripts/install-python-packages.sh -python ${PYTHON} && /buildscripts/build-and-install-ninja.sh -python ${PYTHON} && /buildscripts/build-and-install-flatcc.sh && rm -rf /buildscripts" did not complete successfully: exit code: 1
```
2025-03-04 12:06:05 -06:00
Hans Johnson
7317e5bf2a
ENH: Adding initial manylinux_2_34-x64 support.
2025-03-04 06:36:05 -06:00
Hans Johnson
08ddf8271b
ENH: Update manylinux_2_28-x64 to latest version
...
manylinux_2_28-x64 now supports the gcc 14 toolchain.
2025-03-04 06:36:05 -06:00
Hans Johnson
49d9ab4342
COMP: Remove docker build warning
...
- LegacyKeyValueFormat: "ENV key=value" should be used
instead of legacy "ENV key value" format (line 42)
"""
The new format for declaring environment variables in Dockerfiles is ENV
key=value. This format, where the key and value are separated by an
equals sign (=), is the recommended approach. The older format, ENV key
value (with a space as a separator), is deprecated.
""" -- google search
2025-03-02 09:28:39 -06:00