Remove EPL-1.0 license 28/123328/1
authorJim Hahn <jrh3@att.com>
Tue, 17 Aug 2021 14:40:25 +0000 (10:40 -0400)
committerJim Hahn <jrh3@att.com>
Tue, 17 Aug 2021 14:42:35 +0000 (10:42 -0400)
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>
csit/include-raw-integration-install-robotframework.sh

index ca589b4..1fb107b 100644 (file)
@@ -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