From bc5992537af0b1009aa9c63391318e25f49e6696 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Kasal?= Date: Thu, 19 Mar 2009 13:12:31 +0000 Subject: [PATCH] - fix timestamps of the recoded text files --- perl-Sort-Versions.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/perl-Sort-Versions.spec b/perl-Sort-Versions.spec index 9914ed7..e41121b 100644 --- a/perl-Sort-Versions.spec +++ b/perl-Sort-Versions.spec @@ -1,6 +1,6 @@ Name: perl-Sort-Versions Version: 1.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Perl module for sorting of revision-like numbers License: GPL+ or Artistic Group: Development/Libraries @@ -26,7 +26,9 @@ undoubtedly be found. %prep %setup -q -n Sort-Versions-%{version} for f in Changes Versions.pm; do - iconv -f iso-8859-1 -t utf-8 <$f >${f}_ && mv ${f}_ $f + iconv -f iso-8859-1 -t utf-8 <$f >${f}_ && + touch -r $f ${f}_ && + mv ${f}_ $f done %build @@ -54,6 +56,9 @@ make test %{_mandir}/man3/* %changelog +* Thu Mar 19 2009 Stepan Kasal - 1.5-11 +- fix timestamps of the recoded text files + * Mon Mar 16 2009 Stepan Kasal - 1.5-10 - Recode as UTF-8, fix argument order find with -depth (both by Paul Howarth) - Other minor cleanups