From patchwork Wed Nov 15 18:53:18 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Pfaff X-Patchwork-Id: 838305 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=openvswitch.org (client-ip=140.211.169.12; helo=mail.linuxfoundation.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3ycYYY2H5Yz9s74 for ; Thu, 16 Nov 2017 05:58:25 +1100 (AEDT) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id 16879C8B; Wed, 15 Nov 2017 18:53:45 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 6D07BC7C for ; Wed, 15 Nov 2017 18:53:42 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id B11591AE for ; Wed, 15 Nov 2017 18:53:41 +0000 (UTC) X-Originating-IP: 208.91.3.26 Received: from sigabrt.benpfaff.org (unknown [208.91.3.26]) (Authenticated sender: blp@ovn.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 7665D41C07C; Wed, 15 Nov 2017 19:53:39 +0100 (CET) From: Ben Pfaff To: dev@openvswitch.org Date: Wed, 15 Nov 2017 10:53:18 -0800 Message-Id: <20171115185318.26841-9-blp@ovn.org> X-Mailer: git-send-email 2.10.2 In-Reply-To: <20171115185318.26841-1-blp@ovn.org> References: <20171115185318.26841-1-blp@ovn.org> X-Spam-Status: No, score=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW autolearn=disabled version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org Cc: Ben Pfaff Subject: [ovs-dev] [PATCH 9/9] Remove Perl dependency. X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: ovs-dev-bounces@openvswitch.org Errors-To: ovs-dev-bounces@openvswitch.org Nothing in the OVS tree uses Perl any longer, so remove the dependency. Signed-off-by: Ben Pfaff --- Documentation/intro/install/general.rst | 8 -------- Makefile.am | 2 -- configure.ac | 6 ------ tests/atlocal.in | 1 - tests/ovs-macros.at | 1 - 5 files changed, 18 deletions(-) diff --git a/Documentation/intro/install/general.rst b/Documentation/intro/install/general.rst index e5ec155b94af..1485bdc19980 100644 --- a/Documentation/intro/install/general.rst +++ b/Documentation/intro/install/general.rst @@ -138,11 +138,6 @@ schema, you will also need the following software: - libtool version 2.4 or later. (Older versions might work too.) -To run the unit tests, you also need: - -- Perl. Version 5.10.1 is known to work. Earlier versions should also - work. - The datapath tests for userspace and Linux datapaths also rely upon: - pyftpdlib. Version 1.2.0 is known to work. Earlier versions should @@ -162,9 +157,6 @@ other than plain text, only if you have the following: - dot from graphviz (http://www.graphviz.org/). -- Perl. Version 5.10.1 is known to work. Earlier versions should also - work. - If you are going to extensively modify Open vSwitch, consider installing the following to obtain better warnings: diff --git a/Makefile.am b/Makefile.am index 5bcd2919c1b4..ba62e781ffdb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -150,7 +150,6 @@ SUFFIXES += .in -e 's,[@]PKIDIR[@],$(PKIDIR),g' \ -e 's,[@]LOGDIR[@],$(LOGDIR),g' \ -e 's,[@]DBDIR[@],$(DBDIR),g' \ - -e 's,[@]PERL[@],$(PERL),g' \ -e 's,[@]PYTHON[@],$(PYTHON),g' \ -e 's,[@]RUNDIR[@],$(RUNDIR),g' \ -e 's,[@]VERSION[@],$(VERSION),g' \ @@ -175,7 +174,6 @@ SUFFIXES += .xml PKIDIR='$(PKIDIR)' \ LOGDIR='$(LOGDIR)' \ DBDIR='$(DBDIR)' \ - PERL='$(PERL)' \ PYTHON='$(PYTHON)' \ RUNDIR='$(RUNDIR)' \ VERSION='$(VERSION)' \ diff --git a/configure.ac b/configure.ac index 9e00818327a9..6a8113a5c58c 100644 --- a/configure.ac +++ b/configure.ac @@ -30,12 +30,6 @@ AC_PROG_FGREP AC_PROG_EGREP PKG_PROG_PKG_CONFIG -AC_ARG_VAR([PERL], [path to Perl interpreter]) -AC_PATH_PROG([PERL], perl, no) -if test "$PERL" = no; then - AC_MSG_ERROR([Perl interpreter not found in $PATH or $PERL.]) -fi - AM_MISSING_PROG([AUTOM4TE], [autom4te]) AC_USE_SYSTEM_EXTENSIONS diff --git a/tests/atlocal.in b/tests/atlocal.in index 1ecabf03a261..55f9333eee08 100644 --- a/tests/atlocal.in +++ b/tests/atlocal.in @@ -3,7 +3,6 @@ HAVE_OPENSSL='@HAVE_OPENSSL@' HAVE_PYTHON='@HAVE_PYTHON@' HAVE_PYTHON3='@HAVE_PYTHON3@' EGREP='@EGREP@' -PERL='@PERL@' if test x"$PYTHON" = x; then PYTHON='@PYTHON@' diff --git a/tests/ovs-macros.at b/tests/ovs-macros.at index 08d3d5a020f5..56d0a3bca86d 100644 --- a/tests/ovs-macros.at +++ b/tests/ovs-macros.at @@ -1,6 +1,5 @@ AT_TESTED([ovs-vswitchd]) AT_TESTED([ovs-vsctl]) -AT_TESTED([perl]) m4_include([m4/compat.m4])