From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mogw0224.ocn.ad.jp (mogw0224.ocn.ad.jp [114.147.58.30]) by dpdk.org (Postfix) with ESMTP id DE35625A1 for ; Mon, 23 Apr 2018 08:29:08 +0200 (CEST) Received: from mf-smf-ucb028c3 (mf-smf-ucb028c3.ocn.ad.jp [153.153.66.174]) by mogw0224.ocn.ad.jp (Postfix) with ESMTP id 4681A1A4258; Mon, 23 Apr 2018 15:29:07 +0900 (JST) Received: from ntt.pod01.mv-mta-ucb024 ([153.149.142.98]) by mf-smf-ucb028c3 with ESMTP id AUy0fUMzSXhLXAUyJfJwgy; Mon, 23 Apr 2018 15:29:07 +0900 Received: from smtp.ocn.ne.jp ([153.149.227.134]) by ntt.pod01.mv-mta-ucb024 with id diV71x0012ud8JZ01iV7in; Mon, 23 Apr 2018 06:29:07 +0000 Received: from localhost.localdomain (sp1-72-1-217.msc.spmode.ne.jp [1.72.1.217]) by smtp.ocn.ne.jp (Postfix) with ESMTPA; Mon, 23 Apr 2018 15:29:06 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, geminoa@juno.ocn.ne.jp Cc: spp@dpdk.org, ogawa.yasufumi@lab.ntt.co.jp Date: Mon, 23 Apr 2018 15:28:45 +0900 Message-Id: <20180423055414.7049-5-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.13.1 In-Reply-To: <20180423055414.7049-1-ogawa.yasufumi@lab.ntt.co.jp> References: <20180423055414.7049-1-ogawa.yasufumi@lab.ntt.co.jp> X-Account-Key: account3 X-UIDL: 10336.3WRZQ+xV+,dVbXIFBQavClU0TY8= X-Mozilla-Status: 0000 Received: from mzcmta008.ocn.ad.jp (LHLO mzcmta008.ocn.ad.jp) (118.23.178.74) by mzcstore251.ocn.ad.jp with LMTP; Mon, 23 Apr 2018 14:54:18 +0900 (JST) Received: from mfgw701.ocn.ad.jp (mfgw701.ocn.ad.jp [153.153.63.99]) by mzcmta008.ocn.ad.jp (Postfix) with ESMTP id B68B2414649 for ; Mon, 23 Apr 2018 14:54:18 +0900 (JST) Received-SPF: softfail (mf-ofc-ucb070: domain of transitioning dose not designate client-ip as permitted sender) client-ip=153.149.232.10; envelope-from=; helo=mogw0709.ocn.ad.jp; Authentication-Results: mf-ofc-ucb070; spf=softfail smtp.mailfrom=ogawa.yasufumi@lab.ntt.co.jp Received: from mogw0709.ocn.ad.jp (mogw0709.ocn.ad.jp [153.149.232.10]) by mfgw701.ocn.ad.jp (Postfix) with ESMTP id 43E0FD402B9 for ; Mon, 23 Apr 2018 14:54:18 +0900 (JST) Received: from mf-smf-ucb027c2 (mf-smf-ucb027c2.ocn.ad.jp [153.153.66.170]) by mogw0709.ocn.ad.jp (Postfix) with ESMTP id 21197800B1; Mon, 23 Apr 2018 14:54:18 +0900 (JST) Received: from ntt.pod01.mv-mta-ucb022 ([153.149.142.85]) by mf-smf-ucb027c2 with ESMTP id AUQcfCYGQNS5xAUQcfEz4o; Mon, 23 Apr 2018 14:54:18 +0900 Received: from smtp.ocn.ne.jp ([153.149.227.133]) by ntt.pod01.mv-mta-ucb022 with id dhuH1x0072tKTyH01huHML; Mon, 23 Apr 2018 05:54:18 +0000 Received: from localhost.localdomain (sp1-72-1-217.msc.spmode.ne.jp [1.72.1.217]) by smtp.ocn.ne.jp (Postfix) with ESMTPA; Mon, 23 Apr 2018 14:54:17 +0900 (JST) X-Mailer: git-send-email 2.13.1 In-Reply-To: <20180423055414.7049-1-ogawa.yasufumi@lab.ntt.co.jp> References: <20180423055414.7049-1-ogawa.yasufumi@lab.ntt.co.jp> Subject: [spp] [PATCH 4/7] controller: convert license to SPDX tag X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Apr 2018 06:29:09 -0000 From: ogawa.yasufumi@lab.ntt.co.jp From: Yasufumi Ogawa Signed-off-by: Yasufumi Ogawa --- src/controller/command/hello.py | 3 ++- src/controller/conn_thread.py | 5 +++++ src/controller/shell.py | 5 +++++ src/controller/shell_lib/common.py | 4 ++++ src/controller/spp.py | 4 +++- src/controller/spp_common.py | 5 +++++ src/controller/topo.py | 3 ++- src/spp.py | 4 +++- 8 files changed, 29 insertions(+), 4 deletions(-) diff --git a/src/controller/command/hello.py b/src/controller/command/hello.py index e3d974b..418bc16 100644 --- a/src/controller/command/hello.py +++ b/src/controller/command/hello.py @@ -1,5 +1,6 @@ #!/usr/bin/env python -# coding: utf-8 +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation class Hello(object): diff --git a/src/controller/conn_thread.py b/src/controller/conn_thread.py index 039a3ad..6325843 100644 --- a/src/controller/conn_thread.py +++ b/src/controller/conn_thread.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation + from Queue import Queue import select import socket diff --git a/src/controller/shell.py b/src/controller/shell.py index 1cf712c..e0d13ca 100644 --- a/src/controller/shell.py +++ b/src/controller/shell.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation + import cmd import json import os diff --git a/src/controller/shell_lib/common.py b/src/controller/shell_lib/common.py index b4e8fb9..360d601 100644 --- a/src/controller/shell_lib/common.py +++ b/src/controller/shell_lib/common.py @@ -1,3 +1,7 @@ +#!/usr/bin/env python +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation + import os diff --git a/src/controller/spp.py b/src/controller/spp.py index d5cbf46..757a1d4 100644 --- a/src/controller/spp.py +++ b/src/controller/spp.py @@ -1,5 +1,7 @@ #!/usr/bin/env python -"""Soft Patch Panel""" +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation from __future__ import print_function diff --git a/src/controller/spp_common.py b/src/controller/spp_common.py index b1ab60f..c507d55 100644 --- a/src/controller/spp_common.py +++ b/src/controller/spp_common.py @@ -1,3 +1,8 @@ +#!/usr/bin/env python +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation + import logging import os from Queue import Queue diff --git a/src/controller/topo.py b/src/controller/topo.py index ff1349c..a09a873 100644 --- a/src/controller/topo.py +++ b/src/controller/topo.py @@ -1,5 +1,6 @@ #!/usr/bin/env python -# coding: utf-8 +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation import os import re diff --git a/src/spp.py b/src/spp.py index c494327..f52e063 100755 --- a/src/spp.py +++ b/src/spp.py @@ -1,5 +1,7 @@ #!/usr/bin/env python -# coding: utf-8 +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2015-2016 Intel Corporation +# Copyright(c) 2017-2018 Nippon Telegraph and Telephone Corporation from controller import spp import sys -- 2.13.1