From 5b6b1c8e3048a009ea0865c018b98b69c55221e3 Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Mon, 12 Aug 2013 17:55:41 +0300 Subject: [PATCH] packaging: remove tabs and extra white-spaces Put one white-space after every keyword and do not try to align things, and also do not use tabs. I think I saw this recommendation is the Fedore guide or something, but not 100% sure. But at least this makes it easier to change the spec file. Change-Id: I6cee1b700287c9287637184978906af53862a04c Signed-off-by: Artem Bityutskiy --- packaging/bmap-tools.spec | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packaging/bmap-tools.spec b/packaging/bmap-tools.spec index 213a5bb..40c58e4 100644 --- a/packaging/bmap-tools.spec +++ b/packaging/bmap-tools.spec @@ -2,9 +2,9 @@ # like '1.0-0.rc7' for release candidate rc7 and '1.0-1' for the '1.0' release. %define rc_str %{?rc_num:0.rc%{rc_num}}%{!?rc_num:1} -Name: bmap-tools -Summary: Tools to generate block map (AKA bmap) and flash images using bmap -Version: 2.5 +Name: bmap-tools +Summary: Tools to generate block map (AKA bmap) and flash images using bmap +Version: 2.5 %if 0%{?opensuse_bs} Release: %{rc_str}.. @@ -12,28 +12,28 @@ Release: %{rc_str}.. Release: %{rc_str}.0.0 %endif -Group: Development/Tools/Other -License: GPL-2.0 -BuildArch: noarch -URL: http://www.tizen.org -Source0: %{name}_%{version}.tar.gz +Group: Development/Tools/Other +License: GPL-2.0 +BuildArch: noarch +URL: http://www.tizen.org +Source0: %{name}_%{version}.tar.gz -BuildRequires: python-distribute +BuildRequires: python-distribute # In OpenSuse the xml.etree module is provided by the python-xml package %if 0%{?suse_version} -Requires: python-xml +Requires: python-xml %endif # In Fedora the xml.etree module is provided by the python-libs package %if 0%{?fedora_version} -Requires: python-libs +Requires: python-libs %endif # Centos6 uses python 2.6, which does not have the argparse module. However, # argparse is available as a separate package there. %if 0%{?centos_version} == 600 -Requires: python-argparse +Requires: python-argparse %endif %description -- 2.7.4