summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrelease.sh2
-rw-r--r--src/patches/iceweasel-branding/enable-object-directory-paths.patch8
2 files changed, 5 insertions, 5 deletions
diff --git a/release.sh b/release.sh
index 7dfb9ef..c622039 100755
--- a/release.sh
+++ b/release.sh
@@ -3,7 +3,7 @@
set -eu
pkgname=iceweasel
-brandingver=73.0
+brandingver=75.0
brandingrel=1
srcdir=src
diff --git a/src/patches/iceweasel-branding/enable-object-directory-paths.patch b/src/patches/iceweasel-branding/enable-object-directory-paths.patch
index 74791e4..8c01e86 100644
--- a/src/patches/iceweasel-branding/enable-object-directory-paths.patch
+++ b/src/patches/iceweasel-branding/enable-object-directory-paths.patch
@@ -1,13 +1,13 @@
diff --git a/python/mozbuild/mozbuild/frontend/context.py b/python/mozbuild/mozbuild/frontend/context.py
-index 41ae8ae..dcc3263 100644
+index 07db8aa..8403e68 100644
--- a/python/mozbuild/mozbuild/frontend/context.py
+++ b/python/mozbuild/mozbuild/frontend/context.py
-@@ -640,8 +640,6 @@ class Path(ContextDerivedValue, unicode)
+@@ -742,8 +742,6 @@ class SourcePath(Path):
"""Like Path, but limited to paths in the source directory."""
- def __init__(self, context, value):
+ def __new__(cls, context, value=None):
- if value.startswith('!'):
- raise ValueError('Object directory paths are not allowed')
if value.startswith('%'):
raise ValueError('Filesystem absolute paths are not allowed')
- super(SourcePath, self).__init__(context, value)
+ self = super(SourcePath, cls).__new__(cls, context, value)