From patchwork Fri May 15 19:17:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ansis Atteka X-Patchwork-Id: 1291592 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.133; helo=hemlock.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ovn.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49Nypx1lKlz9sTC for ; Sat, 16 May 2020 05:17:45 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 99B1789B98; Fri, 15 May 2020 19:17:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id O8kaqhOdUJxn; Fri, 15 May 2020 19:17:39 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by hemlock.osuosl.org (Postfix) with ESMTP id 384D189B2B; Fri, 15 May 2020 19:17:39 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 1B29AC0859; Fri, 15 May 2020 19:17:39 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by lists.linuxfoundation.org (Postfix) with ESMTP id D8C75C016F for ; Fri, 15 May 2020 19:17:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id CE51389B2B for ; Fri, 15 May 2020 19:17:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B4kgr3E-OmyP for ; Fri, 15 May 2020 19:17:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay3-d.mail.gandi.net (relay3-d.mail.gandi.net [217.70.183.195]) by hemlock.osuosl.org (Postfix) with ESMTPS id 182F089B98 for ; Fri, 15 May 2020 19:17:32 +0000 (UTC) X-Originating-IP: 98.210.209.118 Received: from localhost.localdomain (c-98-210-209-118.hsd1.ca.comcast.net [98.210.209.118]) (Authenticated sender: aatteka@ovn.org) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 20A7B60003; Fri, 15 May 2020 19:17:27 +0000 (UTC) From: Ansis Atteka To: dev@openvswitch.org Date: Fri, 15 May 2020 12:17:04 -0700 Message-Id: <20200515191704.25555-1-aatteka@ovn.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Cc: Ansis Atteka , Artem Teleshev Subject: [ovs-dev] [PATCH] debian: Add python3-sphinx to ovs build dependencies X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" python3-sphinx has become mandatory build dependency since patch 39b5e46 ("Documentation: Convert multiple manpages to ReST."), because, otherwise, packaging of OVS debian packages fails with an error that generated man pages can't be foundl. Fixes: 39b5e46312 ("Documentation: Convert multiple manpages to ReST.") CC: Ben Pfaff Signed-off-by: Ansis Atteka Reported-by: Artem Teleshev Acked-by: Greg Rose --- debian/control | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/control b/debian/control index e47767d75..0646b22a1 100644 --- a/debian/control +++ b/debian/control @@ -14,6 +14,7 @@ Build-Depends: graphviz, openssl, procps, python3-all, + python3-sphinx, python3-twisted, python3-zope.interface, libunbound-dev,