From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.codeaurora.org by pdx-caf-mail.web.codeaurora.org (Dovecot) with LMTP id YW9CLXMBGFswbwAAmS7hNA ; Wed, 06 Jun 2018 15:45:08 +0000 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 3B54D60764; Wed, 6 Jun 2018 15:45:08 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on pdx-caf-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by smtp.codeaurora.org (Postfix) with ESMTP id B3816607E1; Wed, 6 Jun 2018 15:45:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org B3816607E1 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=s-opensource.com Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932137AbeFFPpF (ORCPT + 25 others); Wed, 6 Jun 2018 11:45:05 -0400 Received: from osg.samsung.com ([64.30.133.232]:53420 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752975AbeFFPpD (ORCPT ); Wed, 6 Jun 2018 11:45:03 -0400 Received: from localhost (localhost [127.0.0.1]) by osg.samsung.com (Postfix) with ESMTP id 7B7C23B804; Wed, 6 Jun 2018 08:45:02 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at dev.s-opensource.com X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from osg.samsung.com ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iu59dCkwZ-Wc; Wed, 6 Jun 2018 08:45:01 -0700 (PDT) Received: from smtp.s-opensource.com (177.43.29.180.dynamic.adsl.gvt.net.br [177.43.29.180]) by osg.samsung.com (Postfix) with ESMTPSA id 4BBED3B7FB; Wed, 6 Jun 2018 08:45:01 -0700 (PDT) Received: from mchehab by smtp.s-opensource.com with local (Exim 4.87) (envelope-from ) id 1dAbPD-0000yb-5f; Tue, 16 May 2017 09:16:47 -0300 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , David Woodhouse , Brian Norris , Boris Brezillon , Marek Vasut , Richard Weinberger , Cyrille Pitchen , linux-mtd@lists.infradead.org, Jani Nikula Subject: [PATCH v2 52/53] docs-rst: get rid of Documentation/sphinx/tmplcvt script Date: Tue, 16 May 2017 09:16:44 -0300 Message-Id: X-Mailer: git-send-email 2.9.3 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Message-ID: <20170516121644.i9AZOJ2rSZJ0cQ03lA2oxdvtVIz0yf_mYph-qEzC8ss@z> As everything was converted to ReST, we don't need this script anymore. Signed-off-by: Mauro Carvalho Chehab --- Documentation/sphinx/tmplcvt | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100755 Documentation/sphinx/tmplcvt diff --git a/Documentation/sphinx/tmplcvt b/Documentation/sphinx/tmplcvt deleted file mode 100755 index 6848f0a26fa5..000000000000 --- a/Documentation/sphinx/tmplcvt +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -# -# Convert a template file into something like RST -# -# fix -# feed to pandoc -# fix \_ -# title line? -# -set -eu - -if [ "$#" != "2" ]; then - echo "$0 " - exit -fi - -DIR=$(dirname $0) - -in=$1 -rst=$2 -tmp=$rst.tmp - -cp $in $tmp -sed --in-place -f $DIR/convert_template.sed $tmp -pandoc -s -S -f docbook -t rst -o $rst $tmp -sed --in-place -f $DIR/post_convert.sed $rst -rm $tmp -echo "book writen to $rst" -- 2.9.3