rpms/hyphen-is/devel hyphen-is.spec,1.2,1.3

Caolan McNamara caolanm at fedoraproject.org
Sat Jul 11 16:06:04 UTC 2009


Author: caolanm

Update of /cvs/pkgs/rpms/hyphen-is/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv22313

Modified Files:
	hyphen-is.spec 
Log Message:
tidy spec


Index: hyphen-is.spec
===================================================================
RCS file: /cvs/pkgs/rpms/hyphen-is/devel/hyphen-is.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- hyphen-is.spec	25 Feb 2009 06:09:32 -0000	1.2
+++ hyphen-is.spec	11 Jul 2009 16:05:34 -0000	1.3
@@ -2,7 +2,7 @@ Name: hyphen-is
 Summary: Icelandic hyphenation rules
 %define upstreamid 20030920
 Version: 0.%{upstreamid}
-Release: 2%{?dist}
+Release: 3%{?dist}
 Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/hyph_is_IS.zip
 Group: Applications/Text
 URL: http://wiki.services.openoffice.org/wiki/Dictionaries
@@ -20,8 +20,16 @@ Icelandic hyphenation rules.
 
 %build
 chmod -x *
-iconv -f ISO-8859-1 -t UTF-8 README_hyph_is_IS.txt > README_hyph_is_IS.txt.new
-mv -f README_hyph_is_IS.txt.new README_hyph_is_IS.txt
+for i in README_hyph_is_IS.txt; do
+  if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then
+    iconv -f ISO-8859-1 -t UTF-8 $i > $i.new
+    touch -r $i $i.new
+    mv -f $i.new $i
+  fi
+  tr -d '\r' < $i > $i.new
+  touch -r $i $i.new
+  mv -f $i.new $i
+done
 
 %install
 rm -rf $RPM_BUILD_ROOT
@@ -37,6 +45,9 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/hyphen/*
 
 %changelog
+* Sat Jul 11 2009 Caolan McNamara <caolanm at redhat.com> - 0.20030920-3
+- tidy spec
+
 * Tue Feb 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.20030920-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 




More information about the fedora-extras-commits mailing list