summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorMartin Stransky <stransky@anakreon.cz>2013-05-09 14:23:50 +0200
committerMartin Stransky <stransky@anakreon.cz>2013-05-09 14:23:50 +0200
commitc4c0150094592f0ce3c5f7a95c68075dffda0cde (patch)
tree3f9d72616ff54cdde1cf97a069c1ba03b6eb37b3 /firefox.spec
parentAdded xulrunner SDK check (diff)
downloadlibrewolf-fedora-ff-c4c0150094592f0ce3c5f7a95c68075dffda0cde.tar.gz
librewolf-fedora-ff-c4c0150094592f0ce3c5f7a95c68075dffda0cde.tar.bz2
librewolf-fedora-ff-c4c0150094592f0ce3c5f7a95c68075dffda0cde.zip
* Thu May 9 2013 Martin Stransky <stransky@redhat.com> - 20.0-5
- Removed firstrun page (rhbz#864793) - Made zip/unzip quiet in langpacks processing
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec10
1 files changed, 7 insertions, 3 deletions
diff --git a/firefox.spec b/firefox.spec
index d359b84..6bc4536 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -55,7 +55,7 @@
Summary: Mozilla Firefox Web browser
Name: firefox
Version: 20.0
-Release: 4%{?pre_tag}%{?dist}
+Release: 5%{?pre_tag}%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPLv1.1 or GPLv2+ or LGPLv2+
Group: Applications/Internet
@@ -298,14 +298,14 @@ for langpack in `ls firefox-langpacks/*.xpi`; do
language=`basename $langpack .xpi`
extensionID=langpack-$language@firefox.mozilla.org
%{__mkdir_p} $extensionID
- unzip $langpack -d $extensionID
+ unzip -qq $langpack -d $extensionID
find $extensionID -type f | xargs chmod 644
sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \
$extensionID/chrome/$language/locale/branding/browserconfig.properties
cd $extensionID
- zip -r9mX ../${extensionID}.xpi *
+ zip -qq -r9mX ../${extensionID}.xpi *
cd -
%{__install} -m 644 ${extensionID}.xpi $RPM_BUILD_ROOT%{langpackdir}
@@ -432,6 +432,10 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
#---------------------------------------------------------------------
%changelog
+* Thu May 9 2013 Martin Stransky <stransky@redhat.com> - 20.0-5
+- Removed firstrun page (rhbz#864793)
+- Made zip/unzip quiet in langpacks processing
+
* Thu Apr 18 2013 Martin Stransky <stransky@redhat.com> - 20.0-4
- Updated xulrunner check
bgstack15