From fbb360565d5b63b83617bc77334afd6737f03837 Mon Sep 17 00:00:00 2001 From: Bogdan Pintea Date: Tue, 12 Mar 2019 20:33:02 +0100 Subject: [PATCH 1/5] add Packet licensing details --- devtools/3rd_party/licenses/packet-INFO.csv | 2 ++ .../3rd_party/licenses/packet-LICENSE.txt | 21 +++++++++++++++++++ devtools/3rd_party/licenses/packet-NOTICE.txt | 0 3 files changed, 23 insertions(+) create mode 100644 devtools/3rd_party/licenses/packet-INFO.csv create mode 100644 devtools/3rd_party/licenses/packet-LICENSE.txt create mode 100644 devtools/3rd_party/licenses/packet-NOTICE.txt diff --git a/devtools/3rd_party/licenses/packet-INFO.csv b/devtools/3rd_party/licenses/packet-INFO.csv new file mode 100644 index 00000000..0b1a38f1 --- /dev/null +++ b/devtools/3rd_party/licenses/packet-INFO.csv @@ -0,0 +1,2 @@ +name,version,revision,url,license,copyright +Packet,,,https://github.com/fsprojects/Paket,MIT,"Copyright (c) 2015 Alexander Groß, Steffen Forkmann" diff --git a/devtools/3rd_party/licenses/packet-LICENSE.txt b/devtools/3rd_party/licenses/packet-LICENSE.txt new file mode 100644 index 00000000..af7eb8ed --- /dev/null +++ b/devtools/3rd_party/licenses/packet-LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 Alexander Groß, Steffen Forkmann + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/devtools/3rd_party/licenses/packet-NOTICE.txt b/devtools/3rd_party/licenses/packet-NOTICE.txt new file mode 100644 index 00000000..e69de29b From f833927ec038d1e884703e6eb87c129267734fcd Mon Sep 17 00:00:00 2001 From: Bogdan Pintea Date: Wed, 13 Mar 2019 10:28:04 +0100 Subject: [PATCH 2/5] add version of used Packet --- devtools/3rd_party/licenses/packet-INFO.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/3rd_party/licenses/packet-INFO.csv b/devtools/3rd_party/licenses/packet-INFO.csv index 0b1a38f1..1b6f87a1 100644 --- a/devtools/3rd_party/licenses/packet-INFO.csv +++ b/devtools/3rd_party/licenses/packet-INFO.csv @@ -1,2 +1,2 @@ name,version,revision,url,license,copyright -Packet,,,https://github.com/fsprojects/Paket,MIT,"Copyright (c) 2015 Alexander Groß, Steffen Forkmann" +Packet,5.142.0,,https://github.com/fsprojects/Paket,MIT,"Copyright (c) 2015 Alexander Groß, Steffen Forkmann" From a9840c039d128a3ee2cf935a8ba0492f306ce456 Mon Sep 17 00:00:00 2001 From: Bogdan Pintea Date: Wed, 13 Mar 2019 10:33:14 +0100 Subject: [PATCH 3/5] removed the bash version of deps generation report - this is replaced by the batch version now --- devtools/3rd_party/dependency_report.sh | 64 ------------------------- 1 file changed, 64 deletions(-) delete mode 100644 devtools/3rd_party/dependency_report.sh diff --git a/devtools/3rd_party/dependency_report.sh b/devtools/3rd_party/dependency_report.sh deleted file mode 100644 index 892cdef5..00000000 --- a/devtools/3rd_party/dependency_report.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -# -# ELASTICSEARCH CONFIDENTIAL -# -# Copyright (c) 2017 Elasticsearch BV. All Rights Reserved. -# -# Notice: this software, and all information contained -# therein, is the exclusive property of Elasticsearch BV -# and its licensors, if any, and is protected under applicable -# domestic and foreign law, and international treaties. -# -# Reproduction, republication or distribution without the -# express written consent of Elasticsearch BV is -# strictly prohibited. -# - -# -# Create a CSV file listing the information about our 3rd party dependencies -# that is required for the stack-wide list. -# -# Usage: -# dependency_report.sh --csv -# -# The format is that defined in https://github.com/elastic/release-manager/issues/207, -# i.e. a CSV file with the following fields: -# -# name,version,revision,url,license,copyright -# -# The way this script works, each component must have its own CSV file with -# those fields, and this script simply combines them into a single CSV file. -# Because of this, the field order is important - in each per-component CSV -# file the fields must be in the order shown above. - -OUTPUT_FILE= -if [ "x$1" = "x--csv" ] ; then - OUTPUT_FILE="$2" -elif [[ "x$1" == x--csv=* ]] ; then - OUTPUT_FILE="${1#--csv=}" -fi - -if [ -z "$OUTPUT_FILE" ] ; then - echo "Usage: $0 --csv " - exit 1 -fi - -exec > "$OUTPUT_FILE" -SCRIPT_DIR=`dirname "$0"` -cd "$SCRIPT_DIR" - -# IMPORTANT: this assumes all the *INFO.csv files have the following header: -# -# name,version,revision,url,license,copyright - -FIRST=yes -for INFO_FILE in licenses/*INFO.csv -do - if [ "$FIRST" = yes ] ; then - cat $INFO_FILE - FIRST=no - else - grep -v '^name,' $INFO_FILE - fi -done - From 7e92ed66dc8331e6a2411e3f67ea743ac09e25ad Mon Sep 17 00:00:00 2001 From: Bogdan Pintea Date: Wed, 13 Mar 2019 11:45:23 +0100 Subject: [PATCH 4/5] correct Paket spelling in license info --- devtools/3rd_party/licenses/{packet-INFO.csv => paket-INFO.csv} | 0 .../3rd_party/licenses/{packet-LICENSE.txt => paket-LICENSE.txt} | 0 .../3rd_party/licenses/{packet-NOTICE.txt => paket-NOTICE.txt} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename devtools/3rd_party/licenses/{packet-INFO.csv => paket-INFO.csv} (100%) rename devtools/3rd_party/licenses/{packet-LICENSE.txt => paket-LICENSE.txt} (100%) rename devtools/3rd_party/licenses/{packet-NOTICE.txt => paket-NOTICE.txt} (100%) diff --git a/devtools/3rd_party/licenses/packet-INFO.csv b/devtools/3rd_party/licenses/paket-INFO.csv similarity index 100% rename from devtools/3rd_party/licenses/packet-INFO.csv rename to devtools/3rd_party/licenses/paket-INFO.csv diff --git a/devtools/3rd_party/licenses/packet-LICENSE.txt b/devtools/3rd_party/licenses/paket-LICENSE.txt similarity index 100% rename from devtools/3rd_party/licenses/packet-LICENSE.txt rename to devtools/3rd_party/licenses/paket-LICENSE.txt diff --git a/devtools/3rd_party/licenses/packet-NOTICE.txt b/devtools/3rd_party/licenses/paket-NOTICE.txt similarity index 100% rename from devtools/3rd_party/licenses/packet-NOTICE.txt rename to devtools/3rd_party/licenses/paket-NOTICE.txt From ce55dd9a1ee5d4641be715c718b886d331c8c739 Mon Sep 17 00:00:00 2001 From: Bogdan Pintea Date: Wed, 13 Mar 2019 11:47:53 +0100 Subject: [PATCH 5/5] s/Packet/Paket --- devtools/3rd_party/licenses/paket-INFO.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/3rd_party/licenses/paket-INFO.csv b/devtools/3rd_party/licenses/paket-INFO.csv index 1b6f87a1..197d3ac7 100644 --- a/devtools/3rd_party/licenses/paket-INFO.csv +++ b/devtools/3rd_party/licenses/paket-INFO.csv @@ -1,2 +1,2 @@ name,version,revision,url,license,copyright -Packet,5.142.0,,https://github.com/fsprojects/Paket,MIT,"Copyright (c) 2015 Alexander Groß, Steffen Forkmann" +Paket,5.142.0,,https://github.com/fsprojects/Paket,MIT,"Copyright (c) 2015 Alexander Groß, Steffen Forkmann"