Use ujson version asked by OpenStack requirement 79/69979/2
authorCédric Ollivier <cedric.ollivier@orange.com>
Wed, 22 Apr 2020 18:51:50 +0000 (20:51 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Sat, 25 Apr 2020 08:58:08 +0000 (10:58 +0200)
It's newer than the former tag selected [1].

[1] https://github.com/openstack/requirements/blob/master/upper-constraints.txt

Change-Id: Ie89136da364d7e972a1d7f49c71bdfbbdd9671d8
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
(cherry picked from commit 743235f280b675cab39adb15de8bcea215a1c038)

docker/benchmarking/Dockerfile
docker/core/Dockerfile
docker/smoke/Dockerfile
docker/tempest/Dockerfile
docker/vnf/Dockerfile
upper-constraints.txt

index 1cd3ba4..06bd2b6 100644 (file)
@@ -11,6 +11,7 @@ RUN apk --no-cache add --update libxml2 libxslt && \
         openssl-dev libjpeg-turbo-dev libxml2-dev libxslt-dev && \
     wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \
     sed -i -E /#egg=tempest/d upper-constraints.txt && \
+    sed -i -E /^ujson==+.*$/d upper-constraints.txt && \
     case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt ;; esac && \
     wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt && \
     sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \
index ab58b1e..f401d55 100644 (file)
@@ -5,11 +5,13 @@ ARG OPENSTACK_TAG=stable/rocky
 
 RUN apk --no-cache add --update \
         python libffi openssl libjpeg-turbo py-pip bash \
-        grep sed wget ca-certificates git openssh-client qemu-img iputils coreutils mailcap && \
+        grep sed wget ca-certificates git openssh-client qemu-img iputils coreutils mailcap \
+        libstdc++ && \
     apk --no-cache add --virtual .build-deps --update \
         python-dev build-base linux-headers libffi-dev \
         openssl-dev libjpeg-turbo-dev && \
     wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \
+    sed -i -E /^ujson==+.*$/d upper-constraints.txt && \
     case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt && apk add --no-cache py-pynacl ;; esac && \
     wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt  && \
     sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \
index 5d769c3..1568677 100644 (file)
@@ -17,6 +17,7 @@ RUN apk --no-cache add --update libxml2 libxslt libpcre16 libpcre32 && \
         openssl-dev libjpeg-turbo-dev libxml2-dev libxslt-dev pcre-dev && \
     wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \
     sed -i -E /^tempest==+.*$/d upper-constraints.txt && \
+    sed -i -E /^ujson==+.*$/d upper-constraints.txt && \
     case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt ;; esac && \
     wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt && \
     sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \
index 134a7f1..dc81774 100644 (file)
@@ -5,7 +5,6 @@ ARG OPENSTACK_TAG=stable/rocky
 ARG TEMPEST_TAG=21.0.0
 ARG RALLY_TAG=1.5.1
 ARG RALLY_OPENSTACK_TAG=1.5.0
-ARG UJSON_TAG=d25e024f481c5571d15f3c0c406a498ca0467cfd
 
 COPY Accept-custom-registered-endpoints.patch /tmp/Accept-custom-registered-endpoints.patch
 COPY Fixes-race-condition-in-test_add_remove_fixed_ip.patch /tmp/Fixes-race-condition-in-test_add_remove_fixed_ip.patch
@@ -14,7 +13,7 @@ RUN apk --no-cache add --virtual .build-deps --update \
         openssl-dev libjpeg-turbo-dev && \
     wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \
     sed -i -E s/^tempest==+.*$/-e\ git+https:\\/\\/opendev.org\\/openstack\\/tempest@$TEMPEST_TAG#egg=tempest/ upper-constraints.txt && \
-    sed -i -E s/^ujson==+.*$/-e\ git+https:\\/\\/github.com\\/esnme\\/ultrajson@$UJSON_TAG#egg=ujson/ upper-constraints.txt && \
+    sed -i -E /^ujson==+.*$/d upper-constraints.txt && \
     case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt ;; esac && \
     wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt && \
     sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \
index 3f67508..10e77c8 100644 (file)
@@ -26,6 +26,7 @@ RUN apk --no-cache add --update \
         ruby-dev g++ make libxslt-dev libxml2-dev zlib-dev libffi-dev && \
     wget -q -O- https://opendev.org/openstack/requirements/raw/branch/$OPENSTACK_TAG/upper-constraints.txt > upper-constraints.txt && \
     sed -i -E /#egg=tempest/d upper-constraints.txt && \
+    sed -i -E /^ujson==+.*$/d upper-constraints.txt && \
     case $(uname -m) in aarch*|arm*) sed -i -E /^PyNaCl=/d upper-constraints.txt ;; esac && \
     wget -q -O- https://git.opnfv.org/functest/plain/upper-constraints.txt?h=$BRANCH > upper-constraints.opnfv.txt && \
     sed -i -E /#egg=functest/d upper-constraints.opnfv.txt && \
index 767b54a..62b4b00 100644 (file)
@@ -26,3 +26,4 @@ pylint===1.9.5;python_version=='2.7'
 pylint===2.3.1;python_version=='3.6'
 sphinxcontrib-spelling===4.2.1
 boto3===1.7.62
+ujson===2.0.3