From 17f0838c2f33e976c80f44f34a429d42989e2147 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0pl=C3=ADchal?= Date: Wed, 9 May 2018 10:39:12 +0200 Subject: [PATCH] Do not gzip the man page, fix the source link Addressing the package review feedback [BZ#1575645]. --- Makefile | 2 +- fmf.spec | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 28477e2f..cb98a41b 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ docs: man man: source cp docs/header.txt $(TMP)/man.rst tail -n+7 README.rst >> $(TMP)/man.rst - rst2man $(TMP)/man.rst | gzip > $(TMP)/$(PACKAGE)/fmf.1.gz + rst2man $(TMP)/man.rst > $(TMP)/$(PACKAGE)/fmf.1 # RPM packaging diff --git a/fmf.spec b/fmf.spec index 442c7ac7..dcdcc3e5 100644 --- a/fmf.spec +++ b/fmf.spec @@ -1,5 +1,5 @@ Name: fmf -Version: 0.3 +Version: 0.4 Release: 1%{?dist} Summary: Flexible Metadata Format @@ -7,7 +7,8 @@ License: GPLv2+ BuildArch: noarch URL: https://github.com/psss/fmf -Source: https://github.com/psss/fmf/archive/%{version}/fmf-%{version}.tar.gz +Source: https://github.com/psss/fmf/releases/download/%{version}/fmf-%{version}.tar.gz + # Depending on the distro, we set some defaults. # Note that the bcond macros are named for the CLI option they create. @@ -178,6 +179,9 @@ export LANG=en_US.utf-8 %changelog +* Wed May 09 2018 Petr Šplíchal 0.4-1 +- Do not gzip the man page, fix the source link [BZ#1575645] + * Wed Apr 25 2018 Petr Šplíchal 0.3-1 - Remove the unreliable syntactic sugar [fix #2] - Add a simple example of a BeakerLib test