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