firefox: 116.0.2 -> 116.0.3

deleted pkg-config wrapper
This commit is contained in:
John McQuah 2023-08-17 09:20:26 -04:00
parent f1866dc692
commit 726be2f962
3 changed files with 4 additions and 19 deletions

View File

@ -1,8 +1,7 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zGCQ9BldHEOYtOQRKpuG+vDfWFSuPXNVwL2j/Hc1rAb4S/elss1R9jdhChECh7cvadIqW2wcIl1r6U2y5P/nAY=
SHA256 (Pkgfile) = 6d93fcf8cc7ce7f2546e3c76c0ab7184f4cb8a89f31830316b887084641b1a6a
RWSagIOpLGJF36K2Dk7f2Fx38CGOtLH3e0x6Z+JmyyeYCIYps4w5d28WFbbMTZIv62JBowgWINcGEfSpSCgb59ESSReCd5cHrwo=
SHA256 (Pkgfile) = 70c7c333ff84d8b36d977d50f4b61c92128711858182c7af99adc7b230fad342
SHA256 (.footprint) = d932c0f2d873abbf10fe3fd1a0d1dd95bf413717d06238eae7d85e86637aae53
SHA256 (firefox-116.0.2.source.tar.xz) = 6708ab24a748de336aff4789f97f248452a46117e86bb6b4b9746768e52fb114
SHA256 (firefox-116.0.3.source.tar.xz) = 575a0d11b487a03527cc90c5e6d556c09669201cbb584b73442b202ee1d3e2e6
SHA256 (firefox.desktop) = 05bd1a4e283bc68f525f87cabf35ad0a59e5e63e107ce3901a4ac73e3d16ef33
SHA256 (pkg-config-wrapper) = 2531e5dcceb9464d0425935a7fac23d6d4cf6cdedafe8c44cf322371944fb3f4
SHA256 (node-stdout-nonblocking-wrapper) = bb8c503015e49ed1b152225bdc56cf502cd831f35962d113dcbb9121967f3523

View File

@ -5,11 +5,10 @@
# Optional: apulse jack pulseaudio pipewire sndio sccache lld wasi-libc++ wayland
name=firefox
version=116.0.2
version=116.0.3
release=1
source=(https://ftp.mozilla.org/pub/firefox/releases/${version}/source/$name-${version}.source.tar.xz
firefox.desktop
pkg-config-wrapper
node-stdout-nonblocking-wrapper)
build() {
@ -30,7 +29,6 @@ build() {
cat <<- EOF > .mozconfig
export NODEJS="$SRC/node-stdout-nonblocking-wrapper"
export PKG_CONFIG="$SRC/pkg-config-wrapper"
mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-shared
unset MOZ_TELEMETRY_REPORTING
ac_add_options --prefix=/usr

View File

@ -1,12 +0,0 @@
#!/bin/bash
#
# pkgconf complains when given multiple arguments to a modversion query.
# https://github.com/pkgconf/pkgconf/issues/310
# At least in this source tree, the expected (pkg-config-compatible) result
# can be reproduced by ignoring all but the first argument.
if [ "$1" = "--modversion" ] && [ "$#" -gt 2 ]; then
/usr/bin/pkgconf --modversion "$2"
else
/usr/bin/pkgconf "$@"
fi