summaryrefslogtreecommitdiff
path: root/libre
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-02-26 01:55:02 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-02-26 01:55:02 -0200
commit72136c3fcebb86707830eeced7efc903ac30c2a1 (patch)
tree723aa68e1c0f05ac649ba4f574390fba852b4612 /libre
parent9e27b0d0eb8bcff8e08e50b2c37bd03b13bfea18 (diff)
iceweasel-1:36.0.deb1-1: updating version
Diffstat (limited to 'libre')
-rw-r--r--libre/iceweasel/PKGBUILD10
-rw-r--r--libre/iceweasel/libre.patch34
2 files changed, 23 insertions, 21 deletions
diff --git a/libre/iceweasel/PKGBUILD b/libre/iceweasel/PKGBUILD
index d4ce362e2..32b5a97ea 100644
--- a/libre/iceweasel/PKGBUILD
+++ b/libre/iceweasel/PKGBUILD
@@ -16,7 +16,7 @@ _pgo=true
# We're getting this from Debian Experimental
_debname=iceweasel
-_debver=35.0.1
+_debver=36.0
_debrel=deb1
_debrepo=http://ftp.debian.org/debian/pool/main/
debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; }
@@ -24,7 +24,7 @@ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; }
pkgname=iceweasel
epoch=1
pkgver=$_debver.$_debrel
-pkgrel=2
+pkgrel=1
pkgdesc="A libre version of Debian Iceweasel, the standalone web browser based on Mozilla Firefox."
arch=(i686 x86_64 mips64el)
@@ -53,10 +53,10 @@ source=("$_debrepo/`debfile $_debname`_$_debver.orig.tar.bz2"
vendor.js
rhbz-966424.patch
$pkgname-fixed-loading-icon.png)
-sha256sums=('44646270b68b7ec5ee73516ea5bada0f32d1c2c01d4afdb7102ba7f98c93a7a8'
- '8ca7c37f040f0f3ebe7aeb3d57e13c4aa1d4e53ce8f3622d600b6e9f61f832a1'
+sha256sums=('8ba1385b450555cca0b4e00a3cea6d8cf6a2c8814b1fce0560f031096f508094'
+ '20432ce5d50d981317ebedaf5de7fd61ff58a24475421a43944583ae0fdb81a6'
'831720c1efd6e67d54e70cf4e2b02f9554aa6c914315be6dd2ca837adbbdcabd'
- '1fd1383f87473671370e89f33c4d8ffdc89dbe6ae4b7d8ad23e15d83bb17740f'
+ '5a88d0cf1234802a8d016449c5a5f25a24a4ea25090969a7b39441f743741d7e'
'93e3001ce152e1d142619e215a9ef07dd429943b99d21726c25da9ceb31e31cd'
'84895ff873a89770c62c4568fd111ac92d540b4499b2b77258c6c88a929ef049'
'3aea6676f1e53a09673b6ae219d281fc28054beb6002b09973611c02f827651d'
diff --git a/libre/iceweasel/libre.patch b/libre/iceweasel/libre.patch
index 7025151ad..ef6c885bb 100644
--- a/libre/iceweasel/libre.patch
+++ b/libre/iceweasel/libre.patch
@@ -1,7 +1,7 @@
diff -Nur mozilla-release.orig/browser/app/profile/firefox.js mozilla-release/browser/app/profile/firefox.js
---- mozilla-release.orig/browser/app/profile/firefox.js 2015-01-16 15:01:27.964161422 -0200
-+++ mozilla-release/browser/app/profile/firefox.js 2015-01-16 15:03:50.325327243 -0200
-@@ -290,11 +290,6 @@
+--- mozilla-release.orig/browser/app/profile/firefox.js 2015-02-25 21:30:45.311891359 -0200
++++ mozilla-release/browser/app/profile/firefox.js 2015-02-25 21:33:17.983024576 -0200
+@@ -277,11 +277,6 @@
pref("browser.slowStartup.timeThreshold", 40000);
pref("browser.slowStartup.maxSamples", 5);
@@ -158,9 +158,9 @@ diff -Nur mozilla-release.orig/browser/base/content/abouthome/aboutHome.css mozi
}
diff -Nur mozilla-release.orig/browser/base/content/abouthome/aboutHome.js mozilla-release/browser/base/content/abouthome/aboutHome.js
---- mozilla-release.orig/browser/base/content/abouthome/aboutHome.js 2015-01-09 02:38:12.000000000 -0200
-+++ mozilla-release/browser/base/content/abouthome/aboutHome.js 2015-01-16 15:03:01.408257268 -0200
-@@ -5,154 +5,44 @@
+--- mozilla-release.orig/browser/base/content/abouthome/aboutHome.js 2015-02-23 05:39:29.000000000 -0200
++++ mozilla-release/browser/base/content/abouthome/aboutHome.js 2015-02-25 21:37:40.631672767 -0200
+@@ -5,155 +5,44 @@
"use strict";
const SEARCH_ENGINES = {
@@ -345,12 +345,13 @@ diff -Nur mozilla-release.orig/browser/base/content/abouthome/aboutHome.js mozil
-// IndexedDB storage constants.
-const DATABASE_NAME = "abouthome";
-const DATABASE_VERSION = 1;
+-const DATABASE_STORAGE = "persistent";
-const SNIPPETS_OBJECTSTORE_NAME = "snippets";
-
// This global tracks if the page has been set up before, to prevent double inits
let gInitialized = false;
let gObserver = new MutationObserver(function (mutations) {
-@@ -160,7 +50,6 @@
+@@ -161,7 +50,6 @@
if (mutation.attributeName == "searchEngineName") {
setupSearchEngine();
if (!gInitialized) {
@@ -358,7 +359,7 @@ diff -Nur mozilla-release.orig/browser/base/content/abouthome/aboutHome.js mozil
gInitialized = true;
}
return;
-@@ -185,117 +74,6 @@
+@@ -186,118 +74,6 @@
window.removeEventListener("resize", fitToWidth);
});
@@ -401,7 +402,8 @@ diff -Nur mozilla-release.orig/browser/base/content/abouthome/aboutHome.js mozil
- gSnippetsMapCallbacks.length = 0;
- }
-
-- let openRequest = indexedDB.open(DATABASE_NAME, DATABASE_VERSION);
+- let openRequest = indexedDB.open(DATABASE_NAME, {version: DATABASE_VERSION,
+- storage: DATABASE_STORAGE});
-
- openRequest.onerror = function (event) {
- // Try to delete the old database so that we can start this process over
@@ -476,7 +478,7 @@ diff -Nur mozilla-release.orig/browser/base/content/abouthome/aboutHome.js mozil
function onSearchSubmit(aEvent)
{
let searchText = document.getElementById("searchText");
-@@ -378,144 +156,6 @@
+@@ -380,144 +156,6 @@
document.dispatchEvent(event);
}
@@ -735,8 +737,8 @@ diff -Nur mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/too
<!-- LOCALIZATION NOTE (options.selectAdditionalTools.label): This is the label for
- the heading of group of checkboxes corresponding to the developer tools
diff -Nur mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/webide.dtd mozilla-release/browser/locales/en-US/chrome/browser/devtools/webide.dtd
---- mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/webide.dtd 2015-01-09 02:38:16.000000000 -0200
-+++ mozilla-release/browser/locales/en-US/chrome/browser/devtools/webide.dtd 2015-01-31 12:34:39.361629855 -0200
+--- mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/webide.dtd 2015-02-23 05:39:34.000000000 -0200
++++ mozilla-release/browser/locales/en-US/chrome/browser/devtools/webide.dtd 2015-02-25 21:33:17.993024651 -0200
@@ -2,7 +2,7 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
@@ -746,7 +748,7 @@ diff -Nur mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/web
<!ENTITY projectMenu_label "Project">
<!ENTITY projectMenu_accesskey "P">
-@@ -48,7 +48,7 @@
+@@ -56,7 +56,7 @@
<!ENTITY projectButton_label "Open App">
<!ENTITY runtimeButton_label "Select Runtime">
@@ -756,8 +758,8 @@ diff -Nur mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/web
<!ENTITY key_quit "W">
<!-- open menu -->
diff -Nur mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/webide.properties mozilla-release/browser/locales/en-US/chrome/browser/devtools/webide.properties
---- mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/webide.properties 2015-01-09 02:38:16.000000000 -0200
-+++ mozilla-release/browser/locales/en-US/chrome/browser/devtools/webide.properties 2015-01-31 12:35:03.848498325 -0200
+--- mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/webide.properties 2015-02-23 05:39:34.000000000 -0200
++++ mozilla-release/browser/locales/en-US/chrome/browser/devtools/webide.properties 2015-02-25 21:33:17.993024651 -0200
@@ -2,8 +2,8 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
@@ -769,7 +771,7 @@ diff -Nur mozilla-release.orig/browser/locales/en-US/chrome/browser/devtools/web
runtimeButton_label=Select Runtime
projectButton_label=Open App
-@@ -45,10 +45,10 @@
+@@ -47,10 +47,10 @@
addons_stable=stable
addons_unstable=unstable
# LOCALIZATION NOTE (addons_simulator_label): This label is shown as the name of