From patchwork Sun Sep 2 17:53:58 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yoni Bettan X-Patchwork-Id: 10585285 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8845C13AC for ; Sun, 2 Sep 2018 17:56:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 7CFE929293 for ; Sun, 2 Sep 2018 17:56:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 711FD29584; Sun, 2 Sep 2018 17:56:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id A443729293 for ; Sun, 2 Sep 2018 17:56:11 +0000 (UTC) Received: from localhost ([::1]:41935 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwWba-00067v-Ch for patchwork-qemu-devel@patchwork.kernel.org; Sun, 02 Sep 2018 13:56:10 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwWZs-0005ph-RZ for qemu-devel@nongnu.org; Sun, 02 Sep 2018 13:54:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwWZm-0002gL-2d for qemu-devel@nongnu.org; Sun, 02 Sep 2018 13:54:22 -0400 Received: from mx3-rdu2.redhat.com ([66.187.233.73]:34414 helo=mx1.redhat.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fwWZj-0002cT-4P for qemu-devel@nongnu.org; Sun, 02 Sep 2018 13:54:16 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9F0D88011309 for ; Sun, 2 Sep 2018 17:54:12 +0000 (UTC) Received: from localhost.localdomain (unknown [10.35.206.21]) by smtp.corp.redhat.com (Postfix) with ESMTP id AA0132027047; Sun, 2 Sep 2018 17:54:09 +0000 (UTC) From: Yoni Bettan To: qemu-devel@nongnu.org Date: Sun, 2 Sep 2018 20:53:58 +0300 Message-Id: <20180902175401.8195-1-ybettan@redhat.com> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.4 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.8]); Sun, 02 Sep 2018 17:54:12 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.8]); Sun, 02 Sep 2018 17:54:12 +0000 (UTC) for IP:'10.11.54.4' DOMAIN:'int-mx04.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'ybettan@redhat.com' RCPT:'' X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 66.187.233.73 Subject: [Qemu-devel] [PATCH V2 0/3] Formatted INFO files to fit Markdown (.md) format. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Yoni Bettan , ehabkost@redhat.com, stefanha@redhat.com Errors-To: qemu-devel-bounces+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP This patch make INFO files (e.g. README, CODING_STYLE and HACKING) much more readable when watched from GitHub GUI. ./VERSION, ./MAINTAINERS were leave untouched otherwise ./scripts/get_maintainer.pl breaks. ./COPYING, ./LICENSE ./COPYING.LIB were leave untouched because it look likes they come from GNU and not QEMU. Visualization of the change can be found at https://github.com/ybettan/qemu/tree/md. NOTE: This last part of the message should be removed from the commit message since I will remove the 'md' branch from my fork if the patch is accepted. Yoni Bettan (3): README.md : Formatted to fit Markdown (.md) format. CODING_STYLE.md : Formatted to fit Markdown (.md) format. HACKING.md : Formatted to fit Markdown (.md) format. CODING_STYLE => CODING_STYLE.md | 151 ++++++++++++++------------ HACKING => HACKING.md | 186 +++++++++++++++++--------------- README => README.md | 89 +++++++-------- scripts/checkpatch.pl | 2 +- 4 files changed, 223 insertions(+), 205 deletions(-) rename CODING_STYLE => CODING_STYLE.md (50%) rename HACKING => HACKING.md (53%) rename README => README.md (67%) V2: - Undone the changes on ./LICENSE - Updated scripts/get_maintainer.pl to reference to README.md instead of README - Repaired broken link to ./LICENSE in ./README.md