summaryrefslogtreecommitdiff
path: root/newmoon
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-02-21 20:36:46 -0500
committerB. Stack <bgstack15@gmail.com>2023-02-21 20:36:46 -0500
commitcb487e2cf283d9bb857067125b7e01493e90e2ba (patch)
tree39936d10346390209f920467bcb09f255a224ace /newmoon
parentadd python2.7 build dep (diff)
downloadstackrpms-cb487e2cf283d9bb857067125b7e01493e90e2ba.tar.gz
stackrpms-cb487e2cf283d9bb857067125b7e01493e90e2ba.tar.bz2
stackrpms-cb487e2cf283d9bb857067125b7e01493e90e2ba.zip
nm 32.0.1 rc1
Diffstat (limited to 'newmoon')
-rw-r--r--newmoon/_constraints11
-rw-r--r--newmoon/_service29
-rw-r--r--newmoon/debian/_service2
-rw-r--r--newmoon/debian/changelog15
-rw-r--r--newmoon/debian/newmoon+stackrpms.dsc2
-rw-r--r--newmoon/newmoon.spec4
6 files changed, 19 insertions, 44 deletions
diff --git a/newmoon/_constraints b/newmoon/_constraints
deleted file mode 100644
index b058511..0000000
--- a/newmoon/_constraints
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0"?>
-<constraints>
- <hardware>
- <disk>
- <size unit="G">30</size>
- </disk>
- <memory>
- <size unit="M">14000</size>
- </memory>
- </hardware>
-</constraints>
diff --git a/newmoon/_service b/newmoon/_service
deleted file mode 100644
index 325e811..0000000
--- a/newmoon/_service
+++ /dev/null
@@ -1,29 +0,0 @@
-<services>
- <service name="tar_scm">
- <param name="scm">git</param>
- <param name="url">https://gitlab.com/bgstack15/stackrpms.git</param>
- <param name="subdir">newmoon/debian</param>
- <param name="filename">debian</param>
- <param name="revision">newmoon-bump</param>
- <param name="version">_none_</param>
- </service>
- <service name="recompress">
- <param name="file">*.tar</param>
- <param name="compression">xz</param>
- </service>
- <service name="tar_scm">
- <param name="scm">git</param>
- <param name="url">https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git</param>
- <param name="revision">31.4.0_Release</param>
- <param name="version">_none_</param>
- <param name="submodules">enable</param>
- </service>
- <service name="recompress">
- <param name="file">*.tar</param>
- <param name="compression">gz</param>
- </service>
- <service name="extract_file">
- <param name="archive">*.tar.xz</param>
- <param name="files">*/*.dsc</param>
- </service>
-</services>
diff --git a/newmoon/debian/_service b/newmoon/debian/_service
index 90e9233..b6159f5 100644
--- a/newmoon/debian/_service
+++ b/newmoon/debian/_service
@@ -14,7 +14,7 @@
<service name="tar_scm">
<param name="scm">git</param>
<param name="url">https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git</param>
- <param name="revision">32.0.0_Release</param>
+ <param name="revision">32.0.1_Release</param>
<param name="version">_none_</param>
<param name="submodules">enable</param>
</service>
diff --git a/newmoon/debian/changelog b/newmoon/debian/changelog
index c0a403a..f130b34 100644
--- a/newmoon/debian/changelog
+++ b/newmoon/debian/changelog
@@ -1,3 +1,18 @@
+newmoon (32.0.1-1+stackrpms) obs; urgency=low
+
+ * Upstream updates
+ * Fixed a crash in the new regular expression code.
+ * Added {Extended_Pictographic} unicode property escape to regular
+ expressions.
+ * Fixed a regression in regular expressions for literal parsing of
+ invalid ranges.
+ * Updated NSS to pick up fixes.
+ * Security issues addressed: CVE-2023-25733 DiD, CVE-2023-25739 DiD and
+ CVE-2023-0767.
+ * UXP Mozilla security patch summary: 1 fixed, 2 DiD, 14 not applicable.
+
+ -- B. Stack <bgstack15@gmail.com> Tue, 21 Feb 2023 20:34:55 -0500
+
newmoon (32.0.0-1+stackrpms) obs; urgency=low
* New milestone release:
diff --git a/newmoon/debian/newmoon+stackrpms.dsc b/newmoon/debian/newmoon+stackrpms.dsc
index c09c713..89e3d28 100644
--- a/newmoon/debian/newmoon+stackrpms.dsc
+++ b/newmoon/debian/newmoon+stackrpms.dsc
@@ -2,7 +2,7 @@ Format: 3.0 (quilt)
Source: newmoon
Binary: newmoon
Architecture: any
-Version: 32.0.0-1+stackrpms
+Version: 32.0.1-1+stackrpms
Maintainer: B. Stack <bgstack15@gmail.com>
Homepage: http://www.palemoon.org/
Standards-Version: 4.1.4
diff --git a/newmoon/newmoon.spec b/newmoon/newmoon.spec
index e914c46..30e1d36 100644
--- a/newmoon/newmoon.spec
+++ b/newmoon/newmoon.spec
@@ -4,7 +4,7 @@
%global stackrpms_custom 1
# derive from inside the source tree or from https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases
# git submodule | awk -v "name=platform" '$2 == name {gsub("-","",$1); print $1}'
-%global submodule_platform_tag RB_20230123
+%global submodule_platform_tag RB_20230219
%global badname palemoon
%global git_commit db5ee3c1968212742b4ed8b9883069ea7b03f0e1
%global tarballdir pale-moon
@@ -44,7 +44,7 @@ Name: newmoon
Name: newmoon
%endif
Summary: Newmoon web browser
-Version: 32.0.0
+Version: 32.0.1
Release: 1
Group: Networking/Web
bgstack15