From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 73C1BA04E0; Thu, 28 Nov 2019 14:47:10 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0D0F12B88; Thu, 28 Nov 2019 14:47:09 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 02F4228EE for ; Thu, 28 Nov 2019 14:47:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1574948827; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=FknQSzIvnEfkOVa1hqTufi1X0l0ejOslHP70SVVDDnc=; b=bGZbezJ9kDc6OgkHFd5wQQw4dToCK4NDhwCCznXDrY12wOzp+y+SB0kvDIjurox/POvakR byfnwkYG+ocf9SAfotbLsxQRgU1NHTyX+oom2w2QEVvqJWe5axewASlkIFIRietPbnPjQf +bfnEcV/W/BHhoW1LA70QADwpjMPBtM= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-350-cAKskOkTOUeIyJM_nm2Tzw-1; Thu, 28 Nov 2019 08:47:04 -0500 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 2308C18543A2; Thu, 28 Nov 2019 13:47:02 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-58.brq.redhat.com [10.40.204.58]) by smtp.corp.redhat.com (Postfix) with ESMTP id 25B6B5D6D0; Thu, 28 Nov 2019 13:46:59 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: Thomas Monjalon , Neil Horman Date: Thu, 28 Nov 2019 14:46:29 +0100 Message-Id: <20191128134630.21869-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-MC-Unique: cAKskOkTOUeIyJM_nm2Tzw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH] devtools: move ABI scripts from buildtools X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Those scripts are only used by developers and not part of the build process. Signed-off-by: David Marchand --- MAINTAINERS | 8 ++++---- {buildtools =3D> devtools}/check-abi-version.sh | 0 {buildtools =3D> devtools}/update-abi.sh | 2 +- {buildtools =3D> devtools}/update_version_map_abi.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename {buildtools =3D> devtools}/check-abi-version.sh (100%) rename {buildtools =3D> devtools}/update-abi.sh (95%) rename {buildtools =3D> devtools}/update_version_map_abi.py (99%) diff --git a/MAINTAINERS b/MAINTAINERS index b51059bc2..4395d8df1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -143,13 +143,13 @@ M: Neil Horman F: lib/librte_eal/common/include/rte_compat.h F: lib/librte_eal/common/include/rte_function_versioning.h F: doc/guides/rel_notes/deprecation.rst -F: devtools/validate-abi.sh +F: devtools/check-abi-version.sh F: devtools/check-symbol-change.sh -F: buildtools/check-abi-version.sh +F: devtools/update-abi.sh +F: devtools/update_version_map_abi.py +F: devtools/validate-abi.sh F: buildtools/check-experimental-syms.sh F: buildtools/map-list-symbol.sh -F: buildtools/update-abi.sh -F: buildtools/update_version_map_abi.py =20 Driver information M: Neil Horman diff --git a/buildtools/check-abi-version.sh b/devtools/check-abi-version.s= h similarity index 100% rename from buildtools/check-abi-version.sh rename to devtools/check-abi-version.sh diff --git a/buildtools/update-abi.sh b/devtools/update-abi.sh similarity index 95% rename from buildtools/update-abi.sh rename to devtools/update-abi.sh index 15bc6feab..b9b859a3e 100755 --- a/buildtools/update-abi.sh +++ b/devtools/update-abi.sh @@ -42,5 +42,5 @@ echo "Path to update:" $update_path echo $abi_version > $abi_version_file =20 find $update_path -name \*version.map -exec \ - ./buildtools/update_version_map_abi.py {} \ + devtools/update_version_map_abi.py {} \ $abi_version \; -print diff --git a/buildtools/update_version_map_abi.py b/devtools/update_version= _map_abi.py similarity index 99% rename from buildtools/update_version_map_abi.py rename to devtools/update_version_map_abi.py index 6b9aff7a4..616412a1c 100755 --- a/buildtools/update_version_map_abi.py +++ b/devtools/update_version_map_abi.py @@ -6,7 +6,7 @@ A Python program that updates and merges all available stable ABI versions= into one ABI version, while leaving experimental ABI exactly as it is. The inte= nded ABI version is supplied via command-line parameter. This script is to be c= alled -from the buildtools/update-abi.sh utility. +from the devtools/update-abi.sh utility. """ =20 from __future__ import print_function --=20 2.23.0