From c747630f16181d71ce2d7fb5b31f164062c17d5d Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Thu, 16 Feb 2023 19:55:54 -0500 Subject: nm 32.0.0 rc1 --- newmoon/debian/_constraints | 11 +++++++++++ newmoon/debian/_service | 29 +++++++++++++++++++++++++++++ newmoon/debian/changelog | 27 +++++++++++++++++++++++++++ newmoon/debian/control | 5 ++--- newmoon/debian/mozconfig | 11 +++-------- newmoon/debian/newmoon+devuan.dsc | 14 -------------- newmoon/debian/newmoon+stackrpms.dsc | 14 ++++++++++++++ newmoon/debian/rules | 18 +++++------------- newmoon/newmoon.spec | 7 +++++-- 9 files changed, 96 insertions(+), 40 deletions(-) create mode 100644 newmoon/debian/_constraints create mode 100644 newmoon/debian/_service delete mode 100644 newmoon/debian/newmoon+devuan.dsc create mode 100644 newmoon/debian/newmoon+stackrpms.dsc (limited to 'newmoon') diff --git a/newmoon/debian/_constraints b/newmoon/debian/_constraints new file mode 100644 index 0000000..b058511 --- /dev/null +++ b/newmoon/debian/_constraints @@ -0,0 +1,11 @@ + + + + + 30 + + + 14000 + + + diff --git a/newmoon/debian/_service b/newmoon/debian/_service new file mode 100644 index 0000000..90e9233 --- /dev/null +++ b/newmoon/debian/_service @@ -0,0 +1,29 @@ + + + git + https://gitlab.com/bgstack15/stackrpms.git + newmoon/debian + debian + newmoon-bump + _none_ + + + *.tar + xz + + + git + https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git + 32.0.0_Release + _none_ + enable + + + *.tar + gz + + + *.tar.xz + */*.dsc + + diff --git a/newmoon/debian/changelog b/newmoon/debian/changelog index 1b3b7ee..c0a403a 100644 --- a/newmoon/debian/changelog +++ b/newmoon/debian/changelog @@ -1,3 +1,30 @@ +newmoon (32.0.0-1+stackrpms) obs; urgency=low + + * New milestone release: + - Implemented Regular Expression named capture groups. + - Implemented Regular Expression unicode property escapes. + - Re-implemented Regular Expression lookaround/lookbehind (without + crashing this time ;) ). + - Implemented progressive decoding for JPEG-XL. + - Implemented animation for JPEG-XL. + - Renamed CSS offset-* properties to inset-* to align with the latest spec + and the web. + - Fixed CSS inheritance and padding issues in some cases. + - Aligned parsing of incorrectly duplicated HSTS headers with expected + behavior (discard all but the first one). + - Implemented a method to avoid memory exhaustion in case of (very) large + resolution animated images. + - Updated the JPEG-XL and Highway libraries to a recent, stable version. + - Cleaned up some unused CSS prefixing code. + - Improved the ability to link on *nix operating systems with other linkers + than gcc's default. + - Stability improvements (potential crash fixes). + - Security issues addressed: CVE-2023-23598, CVE-2023-23599 and several + others that do not have a CVE number. + - UXP Mozilla security patch summary: 4 fixed, 2 DiD, 19 not applicable. + + -- B. Stack Thu, 16 Feb 2023 19:40:20 -0500 + newmoon (31.4.0-1) obs; urgency=medium * Upstream updates diff --git a/newmoon/debian/control b/newmoon/debian/control index 4e55668..0f2c8ed 100644 --- a/newmoon/debian/control +++ b/newmoon/debian/control @@ -5,8 +5,7 @@ Maintainer: B Stack Bugs: mailto: Build-Depends: debhelper (>= 12), autoconf2.13, - gcc (<< 11) | gcc-10, - g++ (<< 11) | g++-10, + g++ (>= 7), libasound2-dev, libdbus-glib-1-dev (>= 0.60), libgconf2-dev (>= 1.2.1), @@ -34,7 +33,7 @@ Homepage: http://www.palemoon.org/ Package: newmoon Architecture: any -Depends: libavcodec54 | libavcodec-extra54 | libavcodec55 | libavcodec-extra55 | libavcodec56 | libavcodec-extra56 | libavcodec57 | libavcodec-extra57 | libavcodec58 | libavcodec-extra58 | libavcodec-ffmpeg56 | libavcodec-ffmpeg-extra56, +Depends: libavcodec57 | libavcodec-extra57 | libavcodec58 | libavcodec-extra58 | libavcodec59 | libavcodec-extra59 | libavcodec-extra | libavcodec60 | libavcodec-extra60 | libavcodec61 | libavcodec-extra61, ${shlibs:Depends}, ${misc:Depends} Provides: gnome-www-browser, www-browser, x-www-browser diff --git a/newmoon/debian/mozconfig b/newmoon/debian/mozconfig index 4e7c1e5..c5b18d2 100644 --- a/newmoon/debian/mozconfig +++ b/newmoon/debian/mozconfig @@ -12,20 +12,15 @@ ac_add_options --enable-application=palemoon ac_add_options --disable-official-branding ac_add_options --enable-official-vendor -## Disable add-ons signing -## Disable checking that add-ons are signed by the trusted root -#MOZ_ADDON_SIGNING= -## Disable enforcing that add-ons are signed by the trusted root -#MOZ_REQUIRE_SIGNING= - # Standard # Enables ac_add_options --enable-av1 -ac_add_options --enable-optimize="-O2 -Wl,--no-keep-memory -Wl,--reduce-memory-overhead" +ac_add_options --enable-optimize="-O2 -w" # accepts either gtk2 or gtk3 here, but gtk2 is only officially supported option ac_add_options --enable-default-toolkit=cairo-gtk2 ac_add_options --enable-devtools ac_add_options --enable-jemalloc +ac_add_options --enable-jxl ac_add_options --with-pthreads ac_add_options --enable-strip @@ -74,6 +69,6 @@ ac_add_options --disable-personas # limit to 4 cpus to limit memory usage (approximately 0.75 GiB RAM/thread) # Debian Sid/Devuan Ceres; 2020-07 only -j1 works due to a bug. -mk_add_options MOZ_MAKE_FLAGS="-j1" +#mk_add_options MOZ_MAKE_FLAGS="-j1" export MOZ_PKG_SPECIAL=gtk2 diff --git a/newmoon/debian/newmoon+devuan.dsc b/newmoon/debian/newmoon+devuan.dsc deleted file mode 100644 index 6bee354..0000000 --- a/newmoon/debian/newmoon+devuan.dsc +++ /dev/null @@ -1,14 +0,0 @@ -Format: 3.0 (quilt) -Source: newmoon -Binary: newmoon -Architecture: any -Version: 31.4.0-1+devuan -Maintainer: B. Stack -Homepage: http://www.palemoon.org/ -Standards-Version: 4.1.4 -Build-Depends: debhelper (>= 12), gcc (<< 11) | gcc-10, g++ (<< 11) | g++-10, autoconf2.13, libasound2-dev, libdbus-glib-1-dev (>= 0.60), libgconf2-dev (>= 1.2.1), libgtk2.0-dev (>= 2.14), libx11-xcb-dev, libxt-dev, mesa-common-dev, pkg-config, python2 (>= 2.7.18-2~) | python (>= 2.7), unzip, yasm (>= 1.1), zip -Package-List: - newmoon deb web optional arch=any -Files: - 00000000000000000000000000000000 1 newmoon.orig.tar.gz - 00000000000000000000000000000000 1 newmoon+devuan.debian.tar.xz diff --git a/newmoon/debian/newmoon+stackrpms.dsc b/newmoon/debian/newmoon+stackrpms.dsc new file mode 100644 index 0000000..bda16c1 --- /dev/null +++ b/newmoon/debian/newmoon+stackrpms.dsc @@ -0,0 +1,14 @@ +Format: 3.0 (quilt) +Source: newmoon +Binary: newmoon +Architecture: any +Version: 32.0.0-1+stackrpms +Maintainer: B. Stack +Homepage: http://www.palemoon.org/ +Standards-Version: 4.1.4 +Build-Depends: debhelper (>= 12), gcc (<< 11) | gcc-10, g++ (<< 11) | g++-10, autoconf2.13, libasound2-dev, libdbus-glib-1-dev (>= 0.60), libgconf2-dev (>= 1.2.1), libgtk2.0-dev (>= 2.14), libx11-xcb-dev, libxt-dev, mesa-common-dev, pkg-config, python2 (>= 2.7.18-2~) | python (>= 2.7), unzip, yasm (>= 1.1), zip +Package-List: + newmoon deb web optional arch=any +Files: + 00000000000000000000000000000000 1 newmoon.orig.tar.gz + 00000000000000000000000000000000 1 newmoon+stackrpms.debian.tar.xz diff --git a/newmoon/debian/rules b/newmoon/debian/rules index 89ddd3f..bc24b7b 100755 --- a/newmoon/debian/rules +++ b/newmoon/debian/rules @@ -2,18 +2,10 @@ export SHELL=/bin/bash -## borrowed from stevepusser's logic -## Build with gcc-10 on releases where default gcc is 11 -## If you enable this, then d/control needs lsb-release as a build dependency. -#distrelease := $(shell lsb_release -cs) -#ifeq ($(distrelease),$(filter $(distrelease),sid beowulf/ceres)) -export CC=gcc-10 -export CXX=g++-10 -export CPP=cpp-10 -export LD=gcc-10 -#endif - -export MCFILE=debian/mozconfig +ifneq (,$(filter $(DEB_HOST_ARCH), armhf)) + export DEB_CFLAGS_MAINT_APPEND = -mfpu=neon -funsafe-math-optimizations + export DEB_CXXFLAGS_MAINT_APPEND = -mfpu=neon -funsafe-math-optimizations +endif %: dh $@ --without autoreconf @@ -28,7 +20,7 @@ override_dh_auto_clean: } || : override_dh_auto_configure: - cp ${MCFILE} mozconfig + cp debian/mozconfig mozconfig ! test -d palemoon/branding/unofficial.unbuilt && { \ cp -pr palemoon/branding/unofficial palemoon/branding/unofficial.unbuilt && \ tar -C palemoon/branding -zxf debian/bluemoon-icons.tgz ; } || : diff --git a/newmoon/newmoon.spec b/newmoon/newmoon.spec index 969cd1b..e914c46 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_20221122 +%global submodule_platform_tag RB_20230123 %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: 31.4.0 +Version: 32.0.0 Release: 1 Group: Networking/Web @@ -300,6 +300,9 @@ update-mime-database -n ${_datadir}/mime 1>/dev/null 2>&1 & : %doc AUTHORS LICENSE %changelog +* Thu Feb 16 2023 B. Stack - 32.0.0-1 +- update version + * Tue Nov 22 2022 B. Stack - 31.4.0-1 - update version -- cgit From 3d4e3da84f6f986a1cd59c13b71384ce2ea9285d Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Fri, 17 Feb 2023 09:54:32 -0500 Subject: add python2.7 build dep --- newmoon/debian/control | 2 +- newmoon/debian/newmoon+stackrpms.dsc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'newmoon') diff --git a/newmoon/debian/control b/newmoon/debian/control index 0f2c8ed..d2604b5 100644 --- a/newmoon/debian/control +++ b/newmoon/debian/control @@ -14,7 +14,7 @@ Build-Depends: debhelper (>= 12), libxt-dev, mesa-common-dev, pkg-config, - python2 (>= 2.7.18-2~) | python (>= 2.7), + python2 (>= 2.7.18-2~) | python (>= 2.7) | python2.7, unzip, yasm (>= 1.1), zip, diff --git a/newmoon/debian/newmoon+stackrpms.dsc b/newmoon/debian/newmoon+stackrpms.dsc index bda16c1..c09c713 100644 --- a/newmoon/debian/newmoon+stackrpms.dsc +++ b/newmoon/debian/newmoon+stackrpms.dsc @@ -6,7 +6,7 @@ Version: 32.0.0-1+stackrpms Maintainer: B. Stack Homepage: http://www.palemoon.org/ Standards-Version: 4.1.4 -Build-Depends: debhelper (>= 12), gcc (<< 11) | gcc-10, g++ (<< 11) | g++-10, autoconf2.13, libasound2-dev, libdbus-glib-1-dev (>= 0.60), libgconf2-dev (>= 1.2.1), libgtk2.0-dev (>= 2.14), libx11-xcb-dev, libxt-dev, mesa-common-dev, pkg-config, python2 (>= 2.7.18-2~) | python (>= 2.7), unzip, yasm (>= 1.1), zip +Build-Depends: debhelper (>= 12), gcc (<< 11) | gcc-10, g++ (<< 11) | g++-10, autoconf2.13, libasound2-dev, libdbus-glib-1-dev (>= 0.60), libgconf2-dev (>= 1.2.1), libgtk2.0-dev (>= 2.14), libx11-xcb-dev, libxt-dev, mesa-common-dev, pkg-config, python2 (>= 2.7.18-2~) | python (>= 2.7) | python2.7, unzip, yasm (>= 1.1), zip Package-List: newmoon deb web optional arch=any Files: -- cgit From cb487e2cf283d9bb857067125b7e01493e90e2ba Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 21 Feb 2023 20:36:46 -0500 Subject: nm 32.0.1 rc1 --- newmoon/_constraints | 11 ----------- newmoon/_service | 29 ----------------------------- newmoon/debian/_service | 2 +- newmoon/debian/changelog | 15 +++++++++++++++ newmoon/debian/newmoon+stackrpms.dsc | 2 +- newmoon/newmoon.spec | 4 ++-- 6 files changed, 19 insertions(+), 44 deletions(-) delete mode 100644 newmoon/_constraints delete mode 100644 newmoon/_service (limited to 'newmoon') diff --git a/newmoon/_constraints b/newmoon/_constraints deleted file mode 100644 index b058511..0000000 --- a/newmoon/_constraints +++ /dev/null @@ -1,11 +0,0 @@ - - - - - 30 - - - 14000 - - - diff --git a/newmoon/_service b/newmoon/_service deleted file mode 100644 index 325e811..0000000 --- a/newmoon/_service +++ /dev/null @@ -1,29 +0,0 @@ - - - git - https://gitlab.com/bgstack15/stackrpms.git - newmoon/debian - debian - newmoon-bump - _none_ - - - *.tar - xz - - - git - https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git - 31.4.0_Release - _none_ - enable - - - *.tar - gz - - - *.tar.xz - */*.dsc - - 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 @@ git https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git - 32.0.0_Release + 32.0.1_Release _none_ enable 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 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 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 -- cgit From b992789f4c1f9b2a47bf8fec7bf5ee34a66600d7 Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 21 Feb 2023 23:06:10 -0500 Subject: newmoon rpm mozconfig closer to dpkg mozconfig The 32-bit newmoon dpkg builds, but 32-bit rpm does not yet. Maybe this will fix it. 67:39.27 /usr/bin/ld: /tmp/ccaDPDEe.ltrans124.ltrans.o: in function `mozilla::gfx::ScaleYCbCrToRGB32_deprecated(unsigned char const*, unsigned char const*, unsigned char const*, unsigned char*, int, int, int, int, int, int, int, mozilla::gfx::YUVType, mozilla::gfx::Rotate, mozilla::gfx::ScaleFilter) [clone .constprop.0]': 67:39.27 /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:882: undefined reference to `PICLinearScaleYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:743: undefined reference to `PICScaleYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:645: undefined reference to `PICConvertYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: /tmp/ccaDPDEe.ltrans124.ltrans.o: in function `mozilla::gfx::ConvertYCbCrToRGB(mozilla::layers::PlanarYCbCrData const&, mozilla::gfx::SurfaceFormat const&, mozilla::gfx::IntSizeTyped const&, unsigned char*, int) [clone .constprop.0]': 67:39.27 /builddir/build/BUILD/pale-moon/platform/gfx/ycbcr/yuv_row_posix.cpp:645: undefined reference to `PICConvertYUVToRGB32Row_SSE' 67:39.27 /usr/bin/ld: libxul.so: hidden symbol `PICConvertYUVToRGB32Row_SSE' isn't defined 67:39.27 /usr/bin/ld: final link failed: bad value 67:39.27 collect2: error: ld returned 1 exit status --- newmoon/newmoon-mozconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'newmoon') diff --git a/newmoon/newmoon-mozconfig b/newmoon/newmoon-mozconfig index feb1e68..f993e62 100644 --- a/newmoon/newmoon-mozconfig +++ b/newmoon/newmoon-mozconfig @@ -2,7 +2,7 @@ mk_add_options AUTOCLOBBER=1 mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/pmbuild ac_add_options --enable-application=palemoon -ac_add_options --enable-optimize="-O2 -Wl,--no-keep-memory -Wl,--reduce-memory-overhead" +ac_add_options --enable-optimize="-O2 -w" ac_add_options --enable-official-branding ac_add_options --enable-official-vendor @@ -42,4 +42,5 @@ ac_add_options --disable-updater # Disable telemetry reporting export MOZ_TELEMETRY_REPORTING= +ac_add_options --prefix=/usr ac_add_options --x-libraries=/usr/lib -- cgit From 5b0f5307cd266c7a1ed469e5803132c85f63b29d Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 21 Feb 2023 23:10:32 -0500 Subject: newmoon spec handles perl in fc38 --- newmoon/newmoon.spec | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'newmoon') diff --git a/newmoon/newmoon.spec b/newmoon/newmoon.spec index 30e1d36..6a7e5e1 100644 --- a/newmoon/newmoon.spec +++ b/newmoon/newmoon.spec @@ -82,6 +82,10 @@ BuildRequires: libXt-devel BuildRequires: mesa-libGL-devel BuildRequires: notification-daemon BuildRequires: %{_libdir}/libssl.so +%if 0%{?fedora} >= 38 +# somehow fedora 38 does not include /usr/bin/perl by default in build environment +BuildRequires: perl-interpreter +%endif BuildRequires: pkgconfig BuildRequires: pkgconfig(gtk+-2.0) BuildRequires: pulseaudio-libs-devel -- cgit