summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--palemoon/debian/changelog9
-rw-r--r--palemoon/debian/watch2
-rw-r--r--palemoon/palemoon-stackrpms.spec5
-rw-r--r--palemoon/palemoon.spec5
-rw-r--r--waterfox/debian/changelog7
-rw-r--r--waterfox/debian/watch5
6 files changed, 30 insertions, 3 deletions
diff --git a/palemoon/debian/changelog b/palemoon/debian/changelog
index 67fa7cf..3f06ab1 100644
--- a/palemoon/debian/changelog
+++ b/palemoon/debian/changelog
@@ -1,3 +1,12 @@
+palemoon (28.8.2-1+devuan) obs; urgency=medium
+
+ * From releasenotes.shtml: This is a small bugfix and compatibility update.
+ - Reverted the addition of JavaScript regular expression lookarounds since the implementation caused crashes. We'll have to revisit this later.
+ - Fixed an issue where FTP servers would hang the browser if they were not sending answers according to the protocol specification.
+ - Added a workaround for GitHub trying to enforce more Google-isms (which we don't support at this time) to browsers that identify as "Firefox-alike".
+
+ -- Ben Stack <bgstack15@gmail.com> Tue, 28 Jan 2020 16:50:56 -0500
+
palemoon (28.8.1-1+devuan) obs; urgency=medium
* From releasenotes.shtml: This is an important security and stability release.
diff --git a/palemoon/debian/watch b/palemoon/debian/watch
index 1ad4d44..3f2290d 100644
--- a/palemoon/debian/watch
+++ b/palemoon/debian/watch
@@ -1,5 +1,5 @@
# Reference:
# https://wiki.debian.org/debian/watch
version=4
-opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/UXP-$1\.tar\.gz/ \
+#opts=filenamemangle=s/.+\/PMv?(\d\S+)_Release\.tar\.gz/palemoon_$1.orig\.tar\.gz/ \
https://github.com/MoonchildProductions/UXP/tags .*/PMv?(\d\S+)_Release\.tar\.gz
diff --git a/palemoon/palemoon-stackrpms.spec b/palemoon/palemoon-stackrpms.spec
index 5ab1a42..b2bee6e 100644
--- a/palemoon/palemoon-stackrpms.spec
+++ b/palemoon/palemoon-stackrpms.spec
@@ -40,7 +40,7 @@ Summary: Pale Moon web browser with stackrpms prefs
Name: palemoon
Summary: Pale Moon web browser
%endif
-Version: 28.8.1
+Version: 28.8.2
Release: 1
Group: Networking/Web
@@ -279,6 +279,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Tue Jan 28 2020 B Stack <bgstack15@gmail.com> - 28.8.2-1
+- update version
+
* Mon Jan 13 2020 B Stack <bgstack15@gmail.com> - 28.8.1-1
- update version
- place binary in /usr/bin instead of /usr/local/bin
diff --git a/palemoon/palemoon.spec b/palemoon/palemoon.spec
index 4f7f58b..aa0d06d 100644
--- a/palemoon/palemoon.spec
+++ b/palemoon/palemoon.spec
@@ -40,7 +40,7 @@ Summary: Pale Moon web browser with stackrpms prefs
Name: palemoon
Summary: Pale Moon web browser
%endif
-Version: 28.8.1
+Version: 28.8.2
Release: 1
Group: Networking/Web
@@ -279,6 +279,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & :
%doc AUTHORS LICENSE
%changelog
+* Tue Jan 28 2020 B Stack <bgstack15@gmail.com> - 28.8.2-1
+- update version
+
* Mon Jan 13 2020 B Stack <bgstack15@gmail.com> - 28.8.1-1
- update version
- place binary in /usr/bin instead of /usr/local/bin
diff --git a/waterfox/debian/changelog b/waterfox/debian/changelog
index 79eff80..b5f02a9 100644
--- a/waterfox/debian/changelog
+++ b/waterfox/debian/changelog
@@ -1,3 +1,10 @@
+waterfox (2020.01-1+devuan) obs; urgency=medium
+ - From blog release notes
+ - Classic branch
+ * Very important security patches
+
+ -- B Stack <bgstack15@gmail.com> Tue, 28 Jan 2020 07:58:33 -0500
+
waterfox (2019.12-1+devuan) obs; urgency=medium
- Classic branch
diff --git a/waterfox/debian/watch b/waterfox/debian/watch
new file mode 100644
index 0000000..00aff65
--- /dev/null
+++ b/waterfox/debian/watch
@@ -0,0 +1,5 @@
+# This can pull in the source code, but not the real xpi file. Unfortunately you need to hand-assemble a tarball with the xpi file in it. See README.debian
+version=4
+# uscan will make a nice symlink, so no name mangling is required.
+opts=filenamemangle=s/.+\/([\d\.]+-classic)\.tar\.gz/waterfox_$1.orig\.tar\.gz/ \
+ https://github.com/MrAlex94/Waterfox/tags .*/([\d\.]+)-classic\.tar\.gz
bgstack15