diff options
author | Jim Hahn <jrh3@att.com> | 2021-08-17 10:40:25 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2021-08-17 18:24:07 +0000 |
commit | dcab4fdb0a455fde9e9f9ec37a4d55ce8122e034 (patch) | |
tree | ecc719b6d79085bb34d919b6e5115ffb7517364c | |
parent | b54e3b029fe3ae9632b3abee4a6de1181a93af14 (diff) |
Remove EPL-1.0 license
ONAP does not allow code containing an EPL-1.0 license. To address
this, the offending file was re-cloned, this time from ci-management,
which does not contain the EPL-1.0 license.
Issue-ID: POLICY-3431
Change-Id: Idd973e71beb57d55b7086f52abefd3bc5c5de65d
Signed-off-by: Jim Hahn <jrh3@att.com>
(cherry picked from commit a179ce9586bdbd52edba9bb794473bd34f8dd02d)
-rw-r--r-- | csit/include-raw-integration-install-robotframework.sh | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/csit/include-raw-integration-install-robotframework.sh b/csit/include-raw-integration-install-robotframework.sh index ca589b45..1fb107b6 100644 --- a/csit/include-raw-integration-install-robotframework.sh +++ b/csit/include-raw-integration-install-robotframework.sh @@ -1,27 +1,30 @@ #!/bin/bash -# SPDX-License-Identifier: EPL-1.0 -############################################################################## -# Copyright (c) 2015 The Linux Foundation and others. +# +# ============LICENSE_START=================================================== +# Copyright (c) 2016 The Linux Foundation and others. # Modification Copyright 2021. Nordix Foundation. # Modification Copyright 2021 AT&T Intellectual Property. All rights reserved. +# ============================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END===================================================== # -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Eclipse Public License v1.0 -# which accompanies this distribution, and is available at -# http://www.eclipse.org/legal/epl-v10.html -############################################################################## -# vim: sw=4 ts=4 sts=4 et ft=sh : -ROBOT_VENV="/tmp/v/robot" -echo ROBOT_VENV="${ROBOT_VENV}" >> "${WORKSPACE}/env.properties" +ROBOT_VENV=$(mktemp -d --suffix=robot_venv) +echo "ROBOT_VENV=${ROBOT_VENV}" >> "${WORKSPACE}/env.properties" echo "Python version is: $(python3 --version)" -# The --system-site-packages parameter allows us to pick up system level -# installed packages. This allows us to bake matplotlib which takes very long -# to install into the image. python3 -m venv "${ROBOT_VENV}" - source "${ROBOT_VENV}/bin/activate" set -exu @@ -31,5 +34,4 @@ python3 -m pip install --upgrade pip echo "Installing Python Requirements" python3 -m pip install -r pylibs.txt -odltools -V python3 -m pip freeze |