user/zotero: drop due to in aports
All checks were successful
All checks were successful
This commit is contained in:
parent
d24323205e
commit
15d01121ba
30 changed files with 0 additions and 5334 deletions
|
@ -1,398 +0,0 @@
|
|||
# Contributor: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
# Maintainer: Antoine Martin (ayakael) <dev@ayakael.net>
|
||||
pkgname=zotero
|
||||
pkgver=7.0.7
|
||||
pkgrel=0
|
||||
_fxver=115.14.0
|
||||
_gittag=$pkgver
|
||||
# Date of release, YY-MM-DD for metainfo file (see package())
|
||||
# https://www.mozilla.org/firefox/organizations/notes/
|
||||
_releasedate=2024-08-09
|
||||
pkgdesc="A free, easy-to-use tool to help you collect, organize, cite, and share your research sources."
|
||||
url="https://www.mozilla.org/en-US/firefox/organizations/"
|
||||
# s390x and riscv64: blocked by rust and cargo
|
||||
# armhf: build failure on armhf due to wasm
|
||||
# ppc64le: test suite stalls
|
||||
arch="x86_64 armv7 aarch64 x86"
|
||||
license="GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND MPL-2.0"
|
||||
depends="
|
||||
ffmpeg-libavcodec
|
||||
"
|
||||
makedepends="
|
||||
alsa-lib-dev
|
||||
automake
|
||||
bash
|
||||
bsd-compat-headers
|
||||
cargo
|
||||
cbindgen
|
||||
clang
|
||||
clang-libclang
|
||||
curl
|
||||
dbus-glib-dev
|
||||
gettext
|
||||
grep
|
||||
gtk+3.0-dev
|
||||
hunspell-dev
|
||||
icu-dev>=69.1
|
||||
libevent-dev
|
||||
libffi-dev
|
||||
libjpeg-turbo-dev
|
||||
libnotify-dev
|
||||
libogg-dev
|
||||
libtheora-dev
|
||||
libtool
|
||||
libvorbis-dev
|
||||
libvpx-dev
|
||||
libwebp-dev
|
||||
libxcomposite-dev
|
||||
libxt-dev
|
||||
lld
|
||||
llvm-dev
|
||||
m4
|
||||
mesa-dev
|
||||
nasm
|
||||
nodejs
|
||||
npm
|
||||
nspr-dev
|
||||
nss-dev
|
||||
perl
|
||||
pipewire-dev
|
||||
pulseaudio-dev
|
||||
python3
|
||||
rsync
|
||||
sed
|
||||
unzip
|
||||
wasi-sdk
|
||||
wireless-tools-dev
|
||||
xvfb-run
|
||||
zip
|
||||
"
|
||||
source="https://ftp.mozilla.org/pub/firefox/releases/${_fxver}esr/source/firefox-${_fxver}esr.source.tar.xz
|
||||
audio-lfs64.patch
|
||||
disable-moz-stackwalk.patch
|
||||
fix-fortify-system-wrappers.patch
|
||||
fix-rust-target.patch
|
||||
fix-webrtc-glibcisms.patch
|
||||
icu74.patch
|
||||
lfs64.patch
|
||||
llvm18-bindgen.patch
|
||||
llvm18.patch
|
||||
moz-system-jpeg.patch
|
||||
no-ccache-stats.patch
|
||||
nrappkit-qsort.patch
|
||||
ppc-musttail.patch
|
||||
ppc-webrtc.patch
|
||||
python-deps.patch
|
||||
rust-lto-thin.patch
|
||||
rust1.78-packed-to-portable_simd.patch
|
||||
sandbox-fork.patch
|
||||
sandbox-largefile.patch
|
||||
sandbox-sched_setscheduler.patch
|
||||
|
||||
stab.h
|
||||
|
||||
mozilla-location.keys
|
||||
vendor-prefs.js
|
||||
|
||||
zotero.desktop
|
||||
https://ayakael.net/api/packages/mirrors/generic/zotero/$pkgver/zotero-$pkgver.tar.gz
|
||||
zotero_build-modifications.patch
|
||||
zotero_test-drop-build.patch
|
||||
zotero_test-fix-chars.patch
|
||||
zotero_test-push-timeout-to-30sec.patch
|
||||
zotero_drop-jazzer.patch
|
||||
"
|
||||
|
||||
builddir="$srcdir"/firefox-$_fxver
|
||||
_zoterodir="$srcdir"/zotero-$_gittag
|
||||
_mozappdir=/usr/lib/zotero
|
||||
|
||||
# help our shared-object scanner to find the libs
|
||||
ldpath="$_mozappdir"
|
||||
|
||||
# we need this because cargo verifies checksums of all files in vendor
|
||||
# crates when it builds and gives us no way to override or update the
|
||||
# file sanely... so just clear out the file list
|
||||
_clear_vendor_checksums() {
|
||||
sed -i 's/\("files":{\)[^}]*/\1/' third_party/rust/$1/.cargo-checksum.json
|
||||
}
|
||||
|
||||
export SHELL=/bin/sh
|
||||
export BUILD_OFFICIAL=1
|
||||
export MOZILLA_OFFICIAL=1
|
||||
export USE_SHORT_LIBNAME=1
|
||||
export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=system
|
||||
export MOZ_APP_PROFILE="mozilla/firefox"
|
||||
export MOZ_APP_REMOTINGNAME=firefox-esr
|
||||
export MOZBUILD_STATE_PATH="$srcdir"/mozbuild
|
||||
# disable desktop notifications
|
||||
export MOZ_NOSPAM=1
|
||||
# Find our triplet JSON
|
||||
export RUST_TARGET="$CTARGET"
|
||||
|
||||
# Build with Clang, takes less RAM
|
||||
export CC="clang"
|
||||
export CXX="clang++"
|
||||
|
||||
# set rpath so linker finds the libs
|
||||
export LDFLAGS="$LDFLAGS -Wl,-rpath,$_mozappdir"
|
||||
|
||||
# let firefox do this itself.
|
||||
unset CARGO_PROFILE_RELEASE_OPT_LEVEL
|
||||
unset CARGO_PROFILE_RELEASE_LTO
|
||||
|
||||
export CFLAGS="${CFLAGS/-fstack-clash-protection/} -g0 -O2"
|
||||
export CXXFLAGS="${CXXFLAGS/-fstack-clash-protection/} -g0 -O2 -Wno-deprecated-builtins -Wno-deprecated-declarations"
|
||||
|
||||
prepare() {
|
||||
# zotero prepare
|
||||
mv "$_zoterodir" "$builddir"/zotero
|
||||
(
|
||||
cd "$builddir"/zotero
|
||||
|
||||
# checks that we're using expected fx version
|
||||
local _exp_fxver=$(grep GECKO_VERSION_LINUX "$builddir"/zotero/app/config.sh | sed 's|.*=||' | tr -d '"' | sed 's|esr||')
|
||||
if [ "$_fxver" != "$_exp_fxver" ]; then
|
||||
msg "Expected firefox version $_exp_fxver, got $_fxver"
|
||||
return 1
|
||||
fi
|
||||
|
||||
# zotero build expects to be in a git repo
|
||||
git init
|
||||
git config user.name info
|
||||
git config user.email info@example.org
|
||||
git commit --allow-empty -m 'Initial'
|
||||
|
||||
npm i --legacy-peer-deps
|
||||
)
|
||||
default_prepare
|
||||
|
||||
rm -rf third_party/rust/packed_simd/
|
||||
cp "$srcdir"/stab.h toolkit/crashreporter/google-breakpad/src/
|
||||
|
||||
_clear_vendor_checksums audio_thread_priority
|
||||
_clear_vendor_checksums bindgen
|
||||
|
||||
base64 -d "$srcdir"/mozilla-location.keys > "$builddir"/mozilla-api-key
|
||||
|
||||
# webrtc does not build on these
|
||||
case "$CARCH" in
|
||||
ppc64le)
|
||||
local webrtc_config="ac_add_options --disable-webrtc"
|
||||
;;
|
||||
esac
|
||||
case "$CARCH" in
|
||||
armv7)
|
||||
# broken here
|
||||
local rust_simd="ac_add_options --disable-rust-simd"
|
||||
;;
|
||||
*)
|
||||
local rust_simd="ac_add_options --enable-rust-simd"
|
||||
;;
|
||||
esac
|
||||
|
||||
case "$CARCH" in
|
||||
aarch64|arm*|x86*)
|
||||
# disable-elf-hack: exists only on aarch64, arm*, x86, x86_64
|
||||
local arch_config="ac_add_options --disable-elf-hack"
|
||||
;;
|
||||
esac
|
||||
|
||||
# sandbox only supported here
|
||||
case "$CARCH" in
|
||||
x86*|armv7|aarch64)
|
||||
local sandbox="ac_add_options --enable-sandbox"
|
||||
;;
|
||||
*)
|
||||
local sandbox="ac_add_options --disable-sandbox"
|
||||
;;
|
||||
esac
|
||||
|
||||
cat > base-mozconfig <<-EOF
|
||||
# disable unwanted things
|
||||
ac_add_options --disable-bootstrap
|
||||
ac_add_options --disable-cargo-incremental
|
||||
ac_add_options --disable-crashreporter
|
||||
ac_add_options --disable-debug
|
||||
ac_add_options --disable-debug-symbols
|
||||
ac_add_options --disable-install-strip
|
||||
ac_add_options --disable-jemalloc
|
||||
ac_add_options --disable-strip
|
||||
ac_add_options --disable-tests
|
||||
ac_add_options --disable-updater
|
||||
|
||||
# features
|
||||
ac_add_options --enable-alsa
|
||||
ac_add_options --enable-dbus
|
||||
ac_add_options --enable-default-toolkit=cairo-gtk3-wayland
|
||||
ac_add_options --enable-ffmpeg
|
||||
ac_add_options --enable-hardening
|
||||
ac_add_options --enable-linker=lld
|
||||
ac_add_options --enable-necko-wifi
|
||||
ac_add_options --enable-official-branding
|
||||
ac_add_options --enable-optimize="$CFLAGS"
|
||||
ac_add_options --enable-pulseaudio
|
||||
ac_add_options --enable-release
|
||||
ac_add_options --enable-update-channel=release
|
||||
|
||||
# system libs
|
||||
ac_add_options --enable-system-pixman
|
||||
ac_add_options --with-system-ffi
|
||||
ac_add_options --with-system-icu
|
||||
ac_add_options --with-system-jpeg
|
||||
ac_add_options --with-system-libevent
|
||||
ac_add_options --with-system-libvpx
|
||||
ac_add_options --with-system-nspr
|
||||
ac_add_options --with-system-nss
|
||||
ac_add_options --with-system-png
|
||||
ac_add_options --with-system-webp
|
||||
ac_add_options --with-system-zlib
|
||||
|
||||
# misc
|
||||
ac_add_options --allow-addon-sideload
|
||||
ac_add_options --prefix=/usr
|
||||
ac_add_options --with-app-name=firefox-esr
|
||||
ac_add_options --with-distribution-id=org.alpinelinux
|
||||
ac_add_options --with-libclang-path=/usr/lib
|
||||
ac_add_options --with-unsigned-addon-scopes=app,system
|
||||
ac_add_options --with-wasi-sysroot=/usr/share/wasi-sysroot
|
||||
ac_add_options --host=$CHOST
|
||||
ac_add_options --target=$CTARGET
|
||||
|
||||
# objdir
|
||||
mk_add_options MOZ_OBJDIR="$builddir/obj"
|
||||
|
||||
mk_add_options RUSTFLAGS="$RUSTFLAGS"
|
||||
|
||||
# keys
|
||||
# these are for alpine linux use only
|
||||
ac_add_options --with-mozilla-api-keyfile="$builddir/mozilla-api-key"
|
||||
|
||||
$arch_config
|
||||
$rust_simd
|
||||
$sandbox
|
||||
$webrtc_config
|
||||
EOF
|
||||
}
|
||||
|
||||
build() {
|
||||
cat > .mozconfig base-mozconfig
|
||||
|
||||
export MOZ_BUILD_DATE=$(date ${SOURCE_DATE_EPOCH:+ -d@${SOURCE_DATE_EPOCH}} "+%Y%m%d%H%M%S")
|
||||
|
||||
# for lto
|
||||
ulimit -n 4096
|
||||
|
||||
# can't be set here and fail
|
||||
unset RUSTFLAGS
|
||||
|
||||
local thinlto_jobs=${JOBS:-1}
|
||||
|
||||
case "$CARCH" in
|
||||
# on this platforms, lld seems to not utilise >1 threads for thinlto for some reason.
|
||||
# at the same time, having more than 8 also crashes lld for firefox buildsystems (why?).
|
||||
aarch64)
|
||||
if [ $thinlto_jobs -gt 8 ]; then
|
||||
thinlto_jobs=8
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
export LDFLAGS="$LDFLAGS -Wl,--thinlto-jobs=$thinlto_jobs"
|
||||
|
||||
case "$CARCH" in
|
||||
# lto for 64-bit systems only
|
||||
aarch64|x86_64|ppc64le)
|
||||
cat > .mozconfig base-mozconfig <<-EOF
|
||||
ac_add_options --enable-lto=cross
|
||||
EOF
|
||||
esac
|
||||
|
||||
./mach build
|
||||
|
||||
# install to where zotero expects it
|
||||
DESTDIR="$builddir"/zotero/app/xulrunner/firefox ./mach install
|
||||
mv "$builddir"/zotero/app/xulrunner/firefox/usr/lib/firefox-esr/* "$builddir"/zotero/app/xulrunner/firefox/.
|
||||
rm -R "$builddir"/zotero/app/xulrunner/firefox/usr
|
||||
|
||||
# zotero build
|
||||
(
|
||||
cd "$builddir"/zotero
|
||||
NODE_OPTIONS=--openssl-legacy-provider npm run build
|
||||
|
||||
SKIP_32=1 app/scripts/dir_build -p l
|
||||
# move to seperate folder as check will rebuild with test files added
|
||||
mv "$builddir"/zotero/app/staging "$builddir"/zotero/app/package
|
||||
)
|
||||
|
||||
rm -R "$builddir"/zotero/app/xulrunner/firefox # clean-up unused firefox install
|
||||
}
|
||||
|
||||
check() {
|
||||
# install to where zotero expects it
|
||||
DESTDIR="$builddir"/zotero/app/xulrunner/firefox ./mach install
|
||||
mv "$builddir"/zotero/app/xulrunner/firefox/usr/lib/firefox-esr/* "$builddir"/zotero/app/xulrunner/firefox/.
|
||||
rm -R "$builddir"/zotero/app/xulrunner/firefox/usr
|
||||
|
||||
# zotero test build
|
||||
(
|
||||
cd "$builddir"/zotero
|
||||
ZOTERO_TEST=1 SKIP_32=1 app/scripts/dir_build -p l
|
||||
|
||||
)
|
||||
|
||||
# test-suite is not very stable, false failure occur from time to time, thus never fails
|
||||
CI=true LD_LIBRARY_PATH="$builddir"/zotero/app/staging/Zotero_linux xvfb-run "$builddir"/zotero/test/runtests.sh -x "$builddir"/zotero/app/staging/Zotero_linux/zotero || true
|
||||
|
||||
rm -R "$builddir"/zotero/app/xulrunner/firefox # clean-up unused firefox install
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dDm755 "$pkgdir"/usr/bin
|
||||
install -dDm755 "$pkgdir"/usr/lib/zotero
|
||||
cp -r "$builddir"/zotero/app/package/Zotero_linux/* "$pkgdir/usr/lib/zotero"
|
||||
ln -s /usr/lib/zotero/zotero "$pkgdir/usr/bin/zotero"
|
||||
install -Dm644 "$srcdir/zotero.desktop" "$pkgdir/usr/share/applications/zotero.desktop"
|
||||
|
||||
# Copy zotero icons to a standard location
|
||||
install -Dm644 "$pkgdir/usr/lib/zotero/icons/icon32.png" "$pkgdir/usr/share/icons/hicolor/32x32/apps/zotero.png"
|
||||
install -Dm644 "$pkgdir/usr/lib/zotero/icons/icon64.png" "$pkgdir/usr/share/icons/hicolor/64x64/apps/zotero.png"
|
||||
install -Dm644 "$pkgdir/usr/lib/zotero/icons/icon128.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/zotero.png"
|
||||
|
||||
# Close shell when launching
|
||||
sed -i -r 's:^("\$CALLDIR/zotero-bin" -app "\$CALLDIR/application.ini" "\$@"):exec \1:' "$pkgdir/usr/lib/zotero/zotero"
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
dd40c1fd3cf454dbf33a85d38e47bb0e736ed89b829643653e239f43232441f4e9f3c7876f058ff2e6f19daf2b50a8f2d13274e9a107d8a258a6067d1fc43f54 firefox-115.14.0esr.source.tar.xz
|
||||
3e0501ae7a650346c667dfdc0ae0ca286084f22e89ab2ac671cc0d7315673dc5b6dcb9f9882f6f39d26e9a31e57f7a0fd53d6b805e520224e22b8976850e2eb8 audio-lfs64.patch
|
||||
454ea3263cabce099accbdc47aaf83be26a19f8b5a4568c01a7ef0384601cf8315efd86cd917f9c8bf419c2c845db89a905f3ff9a8eb0c8e41042e93aa96a85c disable-moz-stackwalk.patch
|
||||
2f4f15974d52de4bb273b62a332d13620945d284bbc6fe6bd0a1f58ff7388443bc1d3bf9c82cc31a8527aad92b0cd3a1bc41d0af5e1800e0dcbd7033e58ffd71 fix-fortify-system-wrappers.patch
|
||||
cd68b89e29e5f6379fbd5679db27b9a5ef70ea65e51c0d0a8137e1f1fd210e35a8cfb047798e9549bc7275606d7ec5c8d8af1335d29da4699db7acd8bc7ff556 fix-rust-target.patch
|
||||
305c874fdea3096e9c4c6aa6520ac64bb1c347c4b59db8360096646593fe684c3b5377874d91cecd33d56d1410b4714fbdea2b514923723ecbeff79d51265d9b fix-webrtc-glibcisms.patch
|
||||
afabea91b328c5a68eaa20f9099ac7b2d0e7f2423e816b05ed168bdd326a5684fa02de08bf05c6033e9b888f02775d1b0443a00329b7a632ee399122a391c13a icu74.patch
|
||||
5fa9382c692e4bd6a2634308f24a6526fd12a60a2563d2090056d43a60505df3ec9881bbf54562e69394467529b3b0dc45955afca46ed329af03cea074fff070 lfs64.patch
|
||||
d7a9443cd81d3ef4a6baa1b5d05f2497bc07c1de815a4d85b613b734989e7c589019dd860ea2eb9e32067973efbfd1c913790c6c238778da23d76fbd904128d1 llvm18-bindgen.patch
|
||||
8c4de34188f634833d99d17bc389c43ab9576b3f0581387407ae77f636a890779cd02786b632fbdfd8b0305575517d51b04f76b9aa3f1a94c3d822578286fc6f llvm18.patch
|
||||
e28b1fe2967d46c888b41a0a03ee1b6de763124a0281b68aebac04ec3b76cb6fdb56a376d419a003fd87f79e9d086aafd4aaa24efa3345f9857352d3d489356f moz-system-jpeg.patch
|
||||
c0437a6753f3f350968fa12d250efdfe1bea77baf0e4c06b072b5cc9e78c774dbf4506bc536337030d349fb3ba4460097b75b0c7c5b8fb2d39d8b0a392948936 no-ccache-stats.patch
|
||||
b586ddb21b50fa8fba798c3a269518049c38cc52fd91ad00e96a3f1144e6b2879d9df1a182a2fb181898042043ae98381a70d0e4acbf8aa705d2b4f62c17a5a1 nrappkit-qsort.patch
|
||||
2d8dff86212d6d2a904cbb5a5a1d6c17b89adc929fc6a3f4c6cb669f5e83ecddff5a799225319ba445a187b04d111251af75dd3ce8a039164bc14d2a432a2a04 ppc-musttail.patch
|
||||
6f60e83599041db1b707c21784197ea9816b2c936b89a274bfc24554a600981e6f28448fe41fab0942bd31acd49b1c00beb2eb0961149f2ffa6a4154be123ea7 ppc-webrtc.patch
|
||||
4e40b34c5f77a1a21fe971a6fcd8a21b1a63423a3a7932a5a6e1c7a2779f9f06a561c806614a01931679a4b1c6afdfd8ae1f3cc6b673f259ccd368e8e54f6e90 python-deps.patch
|
||||
1c6918dd6655d3a1251bfd4af2e1c561cbb00d540a883b4c1ebf7f5de530d754d9ac07b4b5f56cdab6c511d25c8910ec94043f5733e97501a67abffe1bafaeb1 rust-lto-thin.patch
|
||||
e4795b88e572bb3b6f009dbacc7872b59db2f8facbe2b07f14dd4f45a77c22049783581869f18c6bb3f04d6edb3da59347278321cce2bfa629a4d35e136cda5c rust1.78-packed-to-portable_simd.patch
|
||||
2518f2fc75b5db30058e0735f47d60fdf1e7adfaeee4b33fb2afb1bd9a616ce943fd88f4404d0802d4083703f4acf1d5ad42377218d025bc768807fbaf7e1609 sandbox-fork.patch
|
||||
b7d0a6126bdf6c0569f80aabf5b37ed2c7a35712eb8a0404a2d85381552f5555d4f97d213ea26cec6a45dc2785f22439376ed5f8e78b4fd664ef0223307b333e sandbox-largefile.patch
|
||||
f8c3555ef6207933cbffbf4fc101a9b4c0d2990c0063162f0f0bde70ef0b46f86bfac42e7110695183424a87948de593f3927b2d8509ede3e4fc7bd8a1fad1ce sandbox-sched_setscheduler.patch
|
||||
0b3f1e4b9fdc868e4738b5c81fd6c6128ce8885b260affcb9a65ff9d164d7232626ce1291aaea70132b3e3124f5e13fef4d39326b8e7173e362a823722a85127 stab.h
|
||||
382510375b1a2fa79be0ab79e3391a021ae2c022429ffbaa7e7a69166f99bb56d01e59a1b10688592a29238f21c9d6977672bd77f9fae439b66bdfe0c55ddb15 mozilla-location.keys
|
||||
fc45bc3ffb9404e5338ea26a9f04807b40f6f516324972cddd48bedb91b8bd7c6b8d4e03a0209020f5e67b703bc4ff89389985791b9bd544a0fc3951e2dc338e vendor-prefs.js
|
||||
e1a0a4ff5cc1b53f13776ca11927d671426b0691e78e74a4adf2166d57bb2ae8ac409cc11a37ce5e2f680fdf05d5bc3849c33a9717aca1bb62d03ae5231a67fb zotero.desktop
|
||||
ba04ec60afd2e9f9500046128b60f1c68b0ac7e47f5fbbc4f4fbfde01df982eb1561d65fb0aef9bee4ee098c4babc5e9caa4c9e791ad616bb55d7a0523349f34 zotero-7.0.7.tar.gz
|
||||
746dbabbb3ea9199d17891e2079b9256d04843f548132178862117d2334694d98e2cc981945d72f31d0e5b2c42904d371633f6905996bb580aa0b5ae95c64ddc zotero_build-modifications.patch
|
||||
337070ee4c44ccb35c6b6290c18327740bb9fccfd1a6ad1045782e83daa290b6ced7d53955d3a889f661d588738a64f2e7f383639f4c46be9fdf891168abc9ff zotero_test-drop-build.patch
|
||||
f0e4f09496531222e8400959f9ef12852bca269eb3bf4c3b87ccaf92f28a12b9374461a1c79ad294a4393dbe30800aa1c85497033d0bc304fa8c198dfab3efd2 zotero_test-fix-chars.patch
|
||||
9dc390d8bae42e645cae45fe5551751d8f38d5c1b8b2cc0eec1c2191f4bde293ffb2c67cfc4de765f2d48b1da4d5fcd4f1c03711e5da3180cd1b63710ccf5599 zotero_test-push-timeout-to-30sec.patch
|
||||
7fb791a386d30594a11ae3856295d5081000de7525036eb0b5836505bd4f0b13a4fe706400ad7efe00b75c2112cf3d59ea3542b6179ccd80f7ee1889349f441d zotero_drop-jazzer.patch
|
||||
"
|
|
@ -1,61 +0,0 @@
|
|||
--- a/third_party/rust/audio_thread_priority/src/rt_linux.rs
|
||||
+++ b/third_party/rust/audio_thread_priority/src/rt_linux.rs
|
||||
@@ -112,7 +112,7 @@
|
||||
|
||||
/// Returns the maximum priority, maximum real-time time slice, and the current real-time time
|
||||
/// slice for this process.
|
||||
-fn get_limits() -> Result<(i64, u64, libc::rlimit64), AudioThreadPriorityError> {
|
||||
+fn get_limits() -> Result<(i64, u64, libc::rlimit), AudioThreadPriorityError> {
|
||||
let c = Connection::get_private(BusType::System)?;
|
||||
|
||||
let p = Props::new(
|
||||
@@ -122,7 +122,7 @@
|
||||
"org.freedesktop.RealtimeKit1",
|
||||
DBUS_SOCKET_TIMEOUT,
|
||||
);
|
||||
- let mut current_limit = libc::rlimit64 {
|
||||
+ let mut current_limit = libc::rlimit {
|
||||
rlim_cur: 0,
|
||||
rlim_max: 0,
|
||||
};
|
||||
@@ -141,9 +141,9 @@
|
||||
));
|
||||
}
|
||||
|
||||
- if unsafe { libc::getrlimit64(libc::RLIMIT_RTTIME, &mut current_limit) } < 0 {
|
||||
+ if unsafe { libc::getrlimit(libc::RLIMIT_RTTIME, &mut current_limit) } < 0 {
|
||||
return Err(AudioThreadPriorityError::new_with_inner(
|
||||
- "getrlimit64",
|
||||
+ "getrlimit",
|
||||
Box::new(OSError::last_os_error()),
|
||||
));
|
||||
}
|
||||
@@ -154,13 +154,13 @@
|
||||
fn set_limits(request: u64, max: u64) -> Result<(), AudioThreadPriorityError> {
|
||||
// Set a soft limit to the limit requested, to be able to handle going over the limit using
|
||||
// SIGXCPU. Set the hard limit to the maxium slice to prevent getting SIGKILL.
|
||||
- let new_limit = libc::rlimit64 {
|
||||
+ let new_limit = libc::rlimit {
|
||||
rlim_cur: request,
|
||||
rlim_max: max,
|
||||
};
|
||||
- if unsafe { libc::setrlimit64(libc::RLIMIT_RTTIME, &new_limit) } < 0 {
|
||||
+ if unsafe { libc::setrlimit(libc::RLIMIT_RTTIME, &new_limit) } < 0 {
|
||||
return Err(AudioThreadPriorityError::new_with_inner(
|
||||
- "setrlimit64",
|
||||
+ "setrlimit",
|
||||
Box::new(OSError::last_os_error()),
|
||||
));
|
||||
}
|
||||
@@ -296,9 +296,9 @@
|
||||
match r {
|
||||
Ok(_) => Ok(handle),
|
||||
Err(e) => {
|
||||
- if unsafe { libc::setrlimit64(libc::RLIMIT_RTTIME, &limits) } < 0 {
|
||||
+ if unsafe { libc::setrlimit(libc::RLIMIT_RTTIME, &limits) } < 0 {
|
||||
return Err(AudioThreadPriorityError::new_with_inner(
|
||||
- "setrlimit64",
|
||||
+ "setrlimit",
|
||||
Box::new(OSError::last_os_error()),
|
||||
));
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
diff --git a/mozglue/misc/StackWalk.cpp b/mozglue/misc/StackWalk.cpp
|
||||
index 7d62921..adcfa44 100644
|
||||
--- a/mozglue/misc/StackWalk.cpp
|
||||
+++ b/mozglue/misc/StackWalk.cpp
|
||||
@@ -33,13 +33,7 @@ using namespace mozilla;
|
||||
# define MOZ_STACKWALK_SUPPORTS_MACOSX 0
|
||||
#endif
|
||||
|
||||
-#if (defined(linux) && \
|
||||
- ((defined(__GNUC__) && (defined(__i386) || defined(PPC))) || \
|
||||
- defined(HAVE__UNWIND_BACKTRACE)))
|
||||
-# define MOZ_STACKWALK_SUPPORTS_LINUX 1
|
||||
-#else
|
||||
# define MOZ_STACKWALK_SUPPORTS_LINUX 0
|
||||
-#endif
|
||||
|
||||
#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1)
|
||||
# define HAVE___LIBC_STACK_END 1
|
|
@ -1,13 +0,0 @@
|
|||
The wrapper features.h gets pulled in by system headers causing thigns to
|
||||
break. We work around it by simply not wrap features.h
|
||||
|
||||
--- ./config/system-headers.mozbuild.orig
|
||||
+++ ./config/system-headers.mozbuild
|
||||
@@ -229,7 +229,6 @@
|
||||
'execinfo.h',
|
||||
'extras.h',
|
||||
'fcntl.h',
|
||||
- 'features.h',
|
||||
'fenv.h',
|
||||
'ffi.h',
|
||||
'fibdef.h',
|
|
@ -1,31 +0,0 @@
|
|||
Allow us to just set RUST_TARGEt ourselves instead of hacking around in mozilla's
|
||||
weird custom build system...
|
||||
|
||||
--- a/build/moz.configure/rust.configure
|
||||
+++ b/build/moz.configure/rust.configure
|
||||
@@ -225,7 +225,9 @@
|
||||
data.setdefault(key, []).append(namespace(rust_target=t, target=info))
|
||||
return data
|
||||
|
||||
-
|
||||
+@imports('os')
|
||||
+@imports(_from='mozbuild.util', _import='ensure_unicode')
|
||||
+@imports(_from='mozbuild.util', _import='system_encoding')
|
||||
def detect_rustc_target(
|
||||
host_or_target, compiler_info, arm_target, rust_supported_targets
|
||||
):
|
||||
@@ -340,13 +342,13 @@
|
||||
|
||||
return None
|
||||
|
||||
- rustc_target = find_candidate(candidates)
|
||||
+ rustc_target = os.environ['RUST_TARGET']
|
||||
|
||||
if rustc_target is None:
|
||||
die("Don't know how to translate {} for rustc".format(host_or_target.alias))
|
||||
|
||||
- return rustc_target
|
||||
+ return ensure_unicode(rustc_target, system_encoding)
|
||||
|
||||
|
||||
@imports('os')
|
|
@ -1,20 +0,0 @@
|
|||
--- a/third_party/libwebrtc/system_wrappers/source/cpu_features_linux.cc
|
||||
+++ b/third_party/libwebrtc/system_wrappers/source/cpu_features_linux.cc
|
||||
@@ -18,7 +18,7 @@
|
||||
#define WEBRTC_GLIBC_PREREQ(a, b) 0
|
||||
#endif
|
||||
|
||||
-#if WEBRTC_GLIBC_PREREQ(2, 16)
|
||||
+#if !__GLIBC__ || WEBRTC_GLIBC_PREREQ(2, 16)
|
||||
#include <sys/auxv.h>
|
||||
#else
|
||||
#include <errno.h>
|
||||
@@ -40,7 +40,7 @@
|
||||
int architecture = 0;
|
||||
uint64_t hwcap = 0;
|
||||
const char* platform = NULL;
|
||||
-#if WEBRTC_GLIBC_PREREQ(2, 16)
|
||||
+#if !__GLIBC__ || WEBRTC_GLIBC_PREREQ(2, 16)
|
||||
hwcap = getauxval(AT_HWCAP);
|
||||
platform = (const char*)getauxval(AT_PLATFORM);
|
||||
#else
|
|
@ -1,38 +0,0 @@
|
|||
https://bugzilla.mozilla.org/show_bug.cgi?id=1862601
|
||||
|
||||
# HG changeset patch
|
||||
# User André Bargull <andre.bargull@gmail.com>
|
||||
# Date 1697435923 -7200
|
||||
# Node ID d5f3b0c4f08a426ce00a153c04e177eecb6820e2
|
||||
# Parent c63994f8259efdf6e745c960aa9e1409d5477049
|
||||
Bug xxx - Part 12: Add new line break classes. r?
|
||||
|
||||
diff --git a/intl/lwbrk/LineBreaker.cpp b/intl/lwbrk/LineBreaker.cpp
|
||||
--- a/intl/lwbrk/LineBreaker.cpp
|
||||
+++ b/intl/lwbrk/LineBreaker.cpp
|
||||
@@ -443,17 +443,23 @@ static int8_t GetClass(uint32_t u, LineB
|
||||
/* JT = 34, [JT] */ CLASS_CHARACTER,
|
||||
/* JV = 35, [JV] */ CLASS_CHARACTER,
|
||||
/* CLOSE_PARENTHESIS = 36, [CP] */ CLASS_CLOSE_LIKE_CHARACTER,
|
||||
/* CONDITIONAL_JAPANESE_STARTER = 37, [CJ] */ CLASS_CLOSE,
|
||||
/* HEBREW_LETTER = 38, [HL] */ CLASS_CHARACTER,
|
||||
/* REGIONAL_INDICATOR = 39, [RI] */ CLASS_CHARACTER,
|
||||
/* E_BASE = 40, [EB] */ CLASS_BREAKABLE,
|
||||
/* E_MODIFIER = 41, [EM] */ CLASS_CHARACTER,
|
||||
- /* ZWJ = 42, [ZWJ]*/ CLASS_CHARACTER};
|
||||
+ /* ZWJ = 42, [ZWJ]*/ CLASS_CHARACTER,
|
||||
+ /* AKSARA = 43, [AK] */ CLASS_CHARACTER,
|
||||
+ /* AKSARA_PREBASE = 44, [AP] */ CLASS_CHARACTER,
|
||||
+ /* AKSARA_START = 45, [AS] */ CLASS_CHARACTER,
|
||||
+ /* VIRAMA_FINAL = 46, [VF] */ CLASS_CHARACTER,
|
||||
+ /* VIRAMA = 47, [VI] */ CLASS_CHARACTER,
|
||||
+ };
|
||||
|
||||
static_assert(U_LB_COUNT == mozilla::ArrayLength(sUnicodeLineBreakToClass),
|
||||
"Gecko vs ICU LineBreak class mismatch");
|
||||
|
||||
auto cls = GetLineBreakClass(u);
|
||||
MOZ_ASSERT(cls < mozilla::ArrayLength(sUnicodeLineBreakToClass));
|
||||
|
||||
// Overrides based on rules for the different line-break values given in
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
force stat() instead of stat64() on 32-bit
|
||||
--
|
||||
--- a/xpcom/io/nsLocalFileUnix.h
|
||||
+++ b/xpcom/io/nsLocalFileUnix.h
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
// stat64 and lstat64 are deprecated on OS X. Normal stat and lstat are
|
||||
// 64-bit by default on OS X 10.6+.
|
||||
-#if defined(HAVE_STAT64) && defined(HAVE_LSTAT64) && !defined(XP_DARWIN)
|
||||
+#if 0 && defined(HAVE_STAT64) && defined(HAVE_LSTAT64) && !defined(XP_DARWIN)
|
||||
# if defined(AIX)
|
||||
# if defined STAT
|
||||
# undef STAT
|
||||
--- a/mozglue/baseprofiler/core/shared-libraries-linux.cc
|
||||
+++ b/mozglue/baseprofiler/core/shared-libraries-linux.cc
|
||||
@@ -178,7 +178,7 @@
|
||||
return false;
|
||||
}
|
||||
|
||||
-#if defined(__x86_64__) || defined(__aarch64__) || \
|
||||
+#if 1 || defined(__x86_64__) || defined(__aarch64__) || \
|
||||
(defined(__mips__) && _MIPS_SIM == _ABI64) || \
|
||||
!(defined(GP_OS_linux) || defined(GP_OS_android))
|
||||
|
||||
--- a/security/sandbox/linux/broker/SandboxBrokerUtils.h
|
||||
+++ b/security/sandbox/linux/broker/SandboxBrokerUtils.h
|
||||
@@ -15,7 +15,7 @@
|
||||
// calls. We'll intercept those and handle them in the stat functions
|
||||
// but must be sure to use the right structure layout.
|
||||
|
||||
-#if defined(__NR_stat64) || defined(__NR_fstatat64)
|
||||
+#if 0 && (defined(__NR_stat64) || defined(__NR_fstatat64) )
|
||||
typedef struct stat64 statstruct;
|
||||
# define statsyscall stat64
|
||||
# define lstatsyscall lstat64
|
|
@ -1,619 +0,0 @@
|
|||
Patch-Source: https://github.com/chimera-linux/cports/blob/899c997/contrib/thunderbird/patches/llvm18-bindgen.patch
|
||||
https://github.com/rust-lang/rust-bindgen/pull/2689
|
||||
--
|
||||
diff --git a/ir/item.rs b/ir/item.rs
|
||||
index 40f6f7d..87d09da 100644
|
||||
--- a/third_party/rust/bindgen/ir/item.rs
|
||||
+++ b/third_party/rust/bindgen/ir/item.rs
|
||||
@@ -6,8 +6,8 @@ use super::annotations::Annotations;
|
||||
use super::comp::{CompKind, MethodKind};
|
||||
use super::context::{BindgenContext, ItemId, PartialType, TypeId};
|
||||
use super::derive::{
|
||||
- CanDeriveCopy, CanDeriveDebug, CanDeriveDefault, CanDeriveEq,
|
||||
- CanDeriveHash, CanDeriveOrd, CanDerivePartialEq, CanDerivePartialOrd,
|
||||
+ CanDeriveCopy, CanDeriveDebug, CanDeriveDefault, CanDeriveEq, CanDeriveHash, CanDeriveOrd,
|
||||
+ CanDerivePartialEq, CanDerivePartialOrd,
|
||||
};
|
||||
use super::dot::DotAttributes;
|
||||
use super::function::{Function, FunctionKind};
|
||||
@@ -59,10 +59,7 @@ pub trait ItemCanonicalPath {
|
||||
/// Get the namespace-aware canonical path for this item. This means that if
|
||||
/// namespaces are disabled, you'll get a single item, and otherwise you get
|
||||
/// the whole path.
|
||||
- fn namespace_aware_canonical_path(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- ) -> Vec<String>;
|
||||
+ fn namespace_aware_canonical_path(&self, ctx: &BindgenContext) -> Vec<String>;
|
||||
|
||||
/// Get the canonical path for this item.
|
||||
fn canonical_path(&self, ctx: &BindgenContext) -> Vec<String>;
|
||||
@@ -159,11 +156,7 @@ where
|
||||
{
|
||||
type Extra = ();
|
||||
|
||||
- fn as_template_param(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- _: &(),
|
||||
- ) -> Option<TypeId> {
|
||||
+ fn as_template_param(&self, ctx: &BindgenContext, _: &()) -> Option<TypeId> {
|
||||
ctx.resolve_item((*self).into()).as_template_param(ctx, &())
|
||||
}
|
||||
}
|
||||
@@ -171,11 +164,7 @@ where
|
||||
impl AsTemplateParam for Item {
|
||||
type Extra = ();
|
||||
|
||||
- fn as_template_param(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- _: &(),
|
||||
- ) -> Option<TypeId> {
|
||||
+ fn as_template_param(&self, ctx: &BindgenContext, _: &()) -> Option<TypeId> {
|
||||
self.kind.as_template_param(ctx, self)
|
||||
}
|
||||
}
|
||||
@@ -183,16 +172,10 @@ impl AsTemplateParam for Item {
|
||||
impl AsTemplateParam for ItemKind {
|
||||
type Extra = Item;
|
||||
|
||||
- fn as_template_param(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- item: &Item,
|
||||
- ) -> Option<TypeId> {
|
||||
+ fn as_template_param(&self, ctx: &BindgenContext, item: &Item) -> Option<TypeId> {
|
||||
match *self {
|
||||
ItemKind::Type(ref ty) => ty.as_template_param(ctx, item),
|
||||
- ItemKind::Module(..) |
|
||||
- ItemKind::Function(..) |
|
||||
- ItemKind::Var(..) => None,
|
||||
+ ItemKind::Module(..) | ItemKind::Function(..) | ItemKind::Var(..) => None,
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -214,10 +197,7 @@ impl<T> ItemCanonicalPath for T
|
||||
where
|
||||
T: Copy + Into<ItemId>,
|
||||
{
|
||||
- fn namespace_aware_canonical_path(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- ) -> Vec<String> {
|
||||
+ fn namespace_aware_canonical_path(&self, ctx: &BindgenContext) -> Vec<String> {
|
||||
debug_assert!(
|
||||
ctx.in_codegen_phase(),
|
||||
"You're not supposed to call this yet"
|
||||
@@ -282,9 +262,7 @@ impl Trace for Item {
|
||||
// There are some types, like resolved type references, where we
|
||||
// don't want to stop collecting types even though they may be
|
||||
// opaque.
|
||||
- if ty.should_be_traced_unconditionally() ||
|
||||
- !self.is_opaque(ctx, &())
|
||||
- {
|
||||
+ if ty.should_be_traced_unconditionally() || !self.is_opaque(ctx, &()) {
|
||||
ty.trace(ctx, tracer, self);
|
||||
}
|
||||
}
|
||||
@@ -450,11 +428,7 @@ impl Item {
|
||||
}
|
||||
|
||||
/// Construct a new opaque item type.
|
||||
- pub fn new_opaque_type(
|
||||
- with_id: ItemId,
|
||||
- ty: &clang::Type,
|
||||
- ctx: &mut BindgenContext,
|
||||
- ) -> TypeId {
|
||||
+ pub fn new_opaque_type(with_id: ItemId, ty: &clang::Type, ctx: &mut BindgenContext) -> TypeId {
|
||||
let location = ty.declaration().location();
|
||||
let ty = Opaque::from_clang_ty(ty, ctx);
|
||||
let kind = ItemKind::Type(ty);
|
||||
@@ -497,12 +471,11 @@ impl Item {
|
||||
self.ancestors(ctx)
|
||||
.filter(|id| {
|
||||
ctx.resolve_item(*id).as_module().map_or(false, |module| {
|
||||
- !module.is_inline() ||
|
||||
- ctx.options().conservative_inline_namespaces
|
||||
+ !module.is_inline() || ctx.options().conservative_inline_namespaces
|
||||
})
|
||||
})
|
||||
- .count() +
|
||||
- 1
|
||||
+ .count()
|
||||
+ + 1
|
||||
}
|
||||
|
||||
/// Get this `Item`'s comment, if it has any, already preprocessed and with
|
||||
@@ -577,9 +550,9 @@ impl Item {
|
||||
pub fn is_toplevel(&self, ctx: &BindgenContext) -> bool {
|
||||
// FIXME: Workaround for some types falling behind when parsing weird
|
||||
// stl classes, for example.
|
||||
- if ctx.options().enable_cxx_namespaces &&
|
||||
- self.kind().is_module() &&
|
||||
- self.id() != ctx.root_module()
|
||||
+ if ctx.options().enable_cxx_namespaces
|
||||
+ && self.kind().is_module()
|
||||
+ && self.id() != ctx.root_module()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
@@ -593,9 +566,7 @@ impl Item {
|
||||
|
||||
if parent_item.id() == ctx.root_module() {
|
||||
return true;
|
||||
- } else if ctx.options().enable_cxx_namespaces ||
|
||||
- !parent_item.kind().is_module()
|
||||
- {
|
||||
+ } else if ctx.options().enable_cxx_namespaces || !parent_item.kind().is_module() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -656,15 +627,13 @@ impl Item {
|
||||
|
||||
let path = self.path_for_allowlisting(ctx);
|
||||
let name = path[1..].join("::");
|
||||
- ctx.options().blocklisted_items.matches(&name) ||
|
||||
- match self.kind {
|
||||
+ ctx.options().blocklisted_items.matches(&name)
|
||||
+ || match self.kind {
|
||||
ItemKind::Type(..) => {
|
||||
- ctx.options().blocklisted_types.matches(&name) ||
|
||||
- ctx.is_replaced_type(path, self.id)
|
||||
- }
|
||||
- ItemKind::Function(..) => {
|
||||
- ctx.options().blocklisted_functions.matches(&name)
|
||||
+ ctx.options().blocklisted_types.matches(&name)
|
||||
+ || ctx.is_replaced_type(path, self.id)
|
||||
}
|
||||
+ ItemKind::Function(..) => ctx.options().blocklisted_functions.matches(&name),
|
||||
// TODO: Add constant / namespace blocklisting?
|
||||
ItemKind::Var(..) | ItemKind::Module(..) => false,
|
||||
}
|
||||
@@ -723,12 +692,7 @@ impl Item {
|
||||
}
|
||||
|
||||
/// Helper function for full_disambiguated_name
|
||||
- fn push_disambiguated_name(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- to: &mut String,
|
||||
- level: u8,
|
||||
- ) {
|
||||
+ fn push_disambiguated_name(&self, ctx: &BindgenContext, to: &mut String, level: u8) {
|
||||
to.push_str(&self.canonical_name(ctx));
|
||||
if let ItemKind::Type(ref ty) = *self.kind() {
|
||||
if let TypeKind::TemplateInstantiation(ref inst) = *ty.kind() {
|
||||
@@ -791,16 +755,14 @@ impl Item {
|
||||
|
||||
match *self.kind() {
|
||||
ItemKind::Var(ref var) => var.name().to_owned(),
|
||||
- ItemKind::Module(ref module) => {
|
||||
- module.name().map(ToOwned::to_owned).unwrap_or_else(|| {
|
||||
- format!("_bindgen_mod_{}", self.exposed_id(ctx))
|
||||
- })
|
||||
- }
|
||||
- ItemKind::Type(ref ty) => {
|
||||
- ty.sanitized_name(ctx).map(Into::into).unwrap_or_else(|| {
|
||||
- format!("_bindgen_ty_{}", self.exposed_id(ctx))
|
||||
- })
|
||||
- }
|
||||
+ ItemKind::Module(ref module) => module
|
||||
+ .name()
|
||||
+ .map(ToOwned::to_owned)
|
||||
+ .unwrap_or_else(|| format!("_bindgen_mod_{}", self.exposed_id(ctx))),
|
||||
+ ItemKind::Type(ref ty) => ty
|
||||
+ .sanitized_name(ctx)
|
||||
+ .map(Into::into)
|
||||
+ .unwrap_or_else(|| format!("_bindgen_ty_{}", self.exposed_id(ctx))),
|
||||
ItemKind::Function(ref fun) => {
|
||||
let mut name = fun.name().to_owned();
|
||||
|
||||
@@ -839,11 +801,7 @@ impl Item {
|
||||
/// If `BindgenOptions::disable_nested_struct_naming` is true then returned
|
||||
/// name is the inner most non-anonymous name plus all the anonymous base names
|
||||
/// that follows.
|
||||
- pub fn real_canonical_name(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- opt: &NameOptions,
|
||||
- ) -> String {
|
||||
+ pub fn real_canonical_name(&self, ctx: &BindgenContext, opt: &NameOptions) -> String {
|
||||
let target = ctx.resolve_item(self.name_target(ctx));
|
||||
|
||||
// Short-circuit if the target has an override, and just use that.
|
||||
@@ -874,9 +832,7 @@ impl Item {
|
||||
})
|
||||
.filter(|id| {
|
||||
if !ctx.options().conservative_inline_namespaces {
|
||||
- if let ItemKind::Module(ref module) =
|
||||
- *ctx.resolve_item(*id).kind()
|
||||
- {
|
||||
+ if let ItemKind::Module(ref module) = *ctx.resolve_item(*id).kind() {
|
||||
return !module.is_inline();
|
||||
}
|
||||
}
|
||||
@@ -947,9 +903,9 @@ impl Item {
|
||||
let ty_kind = self.kind().as_type().map(|t| t.kind());
|
||||
if let Some(ty_kind) = ty_kind {
|
||||
match *ty_kind {
|
||||
- TypeKind::Comp(..) |
|
||||
- TypeKind::TemplateInstantiation(..) |
|
||||
- TypeKind::Enum(..) => return self.local_id(ctx).to_string(),
|
||||
+ TypeKind::Comp(..) | TypeKind::TemplateInstantiation(..) | TypeKind::Enum(..) => {
|
||||
+ return self.local_id(ctx).to_string()
|
||||
+ }
|
||||
_ => {}
|
||||
}
|
||||
}
|
||||
@@ -990,8 +946,7 @@ impl Item {
|
||||
|
||||
match *type_.kind() {
|
||||
TypeKind::Enum(ref enum_) => {
|
||||
- enum_.computed_enum_variation(ctx, self) ==
|
||||
- EnumVariation::ModuleConsts
|
||||
+ enum_.computed_enum_variation(ctx, self) == EnumVariation::ModuleConsts
|
||||
}
|
||||
TypeKind::Alias(inner_id) => {
|
||||
// TODO(emilio): Make this "hop through type aliases that aren't
|
||||
@@ -1018,18 +973,12 @@ impl Item {
|
||||
ItemKind::Type(_) => cc.types(),
|
||||
ItemKind::Function(ref f) => match f.kind() {
|
||||
FunctionKind::Function => cc.functions(),
|
||||
- FunctionKind::Method(MethodKind::Constructor) => {
|
||||
- cc.constructors()
|
||||
- }
|
||||
- FunctionKind::Method(MethodKind::Destructor) |
|
||||
- FunctionKind::Method(MethodKind::VirtualDestructor {
|
||||
- ..
|
||||
- }) => cc.destructors(),
|
||||
- FunctionKind::Method(MethodKind::Static) |
|
||||
- FunctionKind::Method(MethodKind::Normal) |
|
||||
- FunctionKind::Method(MethodKind::Virtual { .. }) => {
|
||||
- cc.methods()
|
||||
- }
|
||||
+ FunctionKind::Method(MethodKind::Constructor) => cc.constructors(),
|
||||
+ FunctionKind::Method(MethodKind::Destructor)
|
||||
+ | FunctionKind::Method(MethodKind::VirtualDestructor { .. }) => cc.destructors(),
|
||||
+ FunctionKind::Method(MethodKind::Static)
|
||||
+ | FunctionKind::Method(MethodKind::Normal)
|
||||
+ | FunctionKind::Method(MethodKind::Virtual { .. }) => cc.methods(),
|
||||
},
|
||||
}
|
||||
}
|
||||
@@ -1041,14 +990,9 @@ impl Item {
|
||||
.borrow_with(|| self.compute_path(ctx, UserMangled::No))
|
||||
}
|
||||
|
||||
- fn compute_path(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- mangled: UserMangled,
|
||||
- ) -> Vec<String> {
|
||||
+ fn compute_path(&self, ctx: &BindgenContext, mangled: UserMangled) -> Vec<String> {
|
||||
if let Some(path) = self.annotations().use_instead_of() {
|
||||
- let mut ret =
|
||||
- vec![ctx.resolve_item(ctx.root_module()).name(ctx).get()];
|
||||
+ let mut ret = vec![ctx.resolve_item(ctx.root_module()).name(ctx).get()];
|
||||
ret.extend_from_slice(path);
|
||||
return ret;
|
||||
}
|
||||
@@ -1059,10 +1003,9 @@ impl Item {
|
||||
.chain(iter::once(ctx.root_module().into()))
|
||||
.map(|id| ctx.resolve_item(id))
|
||||
.filter(|item| {
|
||||
- item.id() == target.id() ||
|
||||
- item.as_module().map_or(false, |module| {
|
||||
- !module.is_inline() ||
|
||||
- ctx.options().conservative_inline_namespaces
|
||||
+ item.id() == target.id()
|
||||
+ || item.as_module().map_or(false, |module| {
|
||||
+ !module.is_inline() || ctx.options().conservative_inline_namespaces
|
||||
})
|
||||
})
|
||||
.map(|item| {
|
||||
@@ -1123,9 +1066,9 @@ impl IsOpaque for Item {
|
||||
ctx.in_codegen_phase(),
|
||||
"You're not supposed to call this yet"
|
||||
);
|
||||
- self.annotations.opaque() ||
|
||||
- self.as_type().map_or(false, |ty| ty.is_opaque(ctx, self)) ||
|
||||
- ctx.opaque_by_name(self.path_for_allowlisting(ctx))
|
||||
+ self.annotations.opaque()
|
||||
+ || self.as_type().map_or(false, |ty| ty.is_opaque(ctx, self))
|
||||
+ || ctx.opaque_by_name(self.path_for_allowlisting(ctx))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1225,11 +1168,7 @@ impl HasFloat for Item {
|
||||
pub type ItemSet = BTreeSet<ItemId>;
|
||||
|
||||
impl DotAttributes for Item {
|
||||
- fn dot_attributes<W>(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- out: &mut W,
|
||||
- ) -> io::Result<()>
|
||||
+ fn dot_attributes<W>(&self, ctx: &BindgenContext, out: &mut W) -> io::Result<()>
|
||||
where
|
||||
W: io::Write,
|
||||
{
|
||||
@@ -1306,17 +1245,10 @@ fn visit_child(
|
||||
}
|
||||
|
||||
impl Item {
|
||||
- pub(crate) fn builtin_type(
|
||||
- kind: TypeKind,
|
||||
- is_const: bool,
|
||||
- ctx: &mut BindgenContext,
|
||||
- ) -> TypeId {
|
||||
+ pub(crate) fn builtin_type(kind: TypeKind, is_const: bool, ctx: &mut BindgenContext) -> TypeId {
|
||||
// Feel free to add more here, I'm just lazy.
|
||||
match kind {
|
||||
- TypeKind::Void |
|
||||
- TypeKind::Int(..) |
|
||||
- TypeKind::Pointer(..) |
|
||||
- TypeKind::Float(..) => {}
|
||||
+ TypeKind::Void | TypeKind::Int(..) | TypeKind::Pointer(..) | TypeKind::Float(..) => {}
|
||||
_ => panic!("Unsupported builtin type"),
|
||||
}
|
||||
|
||||
@@ -1428,52 +1360,44 @@ impl Item {
|
||||
}
|
||||
|
||||
// Guess how does clang treat extern "C" blocks?
|
||||
- if cursor.kind() == CXCursor_UnexposedDecl {
|
||||
- Err(ParseError::Recurse)
|
||||
- } else {
|
||||
+ match cursor.kind() {
|
||||
+ // On Clang 18+, extern "C" is reported accurately as a LinkageSpec.
|
||||
+ // Older LLVM treat it as UnexposedDecl.
|
||||
+ CXCursor_LinkageSpec | CXCursor_UnexposedDecl => Err(ParseError::Recurse),
|
||||
// We allowlist cursors here known to be unhandled, to prevent being
|
||||
// too noisy about this.
|
||||
- match cursor.kind() {
|
||||
- CXCursor_MacroDefinition |
|
||||
- CXCursor_MacroExpansion |
|
||||
- CXCursor_UsingDeclaration |
|
||||
- CXCursor_UsingDirective |
|
||||
- CXCursor_StaticAssert |
|
||||
- CXCursor_FunctionTemplate => {
|
||||
- debug!(
|
||||
- "Unhandled cursor kind {:?}: {:?}",
|
||||
- cursor.kind(),
|
||||
- cursor
|
||||
- );
|
||||
- }
|
||||
- CXCursor_InclusionDirective => {
|
||||
- let file = cursor.get_included_file_name();
|
||||
- match file {
|
||||
- None => {
|
||||
- warn!(
|
||||
- "Inclusion of a nameless file in {:?}",
|
||||
- cursor
|
||||
- );
|
||||
- }
|
||||
- Some(filename) => {
|
||||
- ctx.include_file(filename);
|
||||
- }
|
||||
- }
|
||||
- }
|
||||
- _ => {
|
||||
- // ignore toplevel operator overloads
|
||||
- let spelling = cursor.spelling();
|
||||
- if !spelling.starts_with("operator") {
|
||||
- warn!(
|
||||
- "Unhandled cursor kind {:?}: {:?}",
|
||||
- cursor.kind(),
|
||||
- cursor
|
||||
- );
|
||||
- }
|
||||
- }
|
||||
+ CXCursor_MacroDefinition
|
||||
+ | CXCursor_MacroExpansion
|
||||
+ | CXCursor_UsingDeclaration
|
||||
+ | CXCursor_UsingDirective
|
||||
+ | CXCursor_StaticAssert
|
||||
+ | CXCursor_FunctionTemplate => {
|
||||
+ debug!("Unhandled cursor kind {:?}: {:?}", cursor.kind(), cursor);
|
||||
+ Err(ParseError::Continue)
|
||||
}
|
||||
|
||||
- Err(ParseError::Continue)
|
||||
+ CXCursor_InclusionDirective => {
|
||||
+ let file = cursor.get_included_file_name();
|
||||
+ match file {
|
||||
+ None => {
|
||||
+ warn!("Inclusion of a nameless file in {:?}", cursor);
|
||||
+ }
|
||||
+ Some(included_file) => {
|
||||
+ for cb in &ctx.options().parse_callbacks {
|
||||
+ cb.include_file(&included_file);
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ Err(ParseError::Continue)
|
||||
+ }
|
||||
+ _ => {
|
||||
+ // ignore toplevel operator overloads
|
||||
+ let spelling = cursor.spelling();
|
||||
+ if !spelling.starts_with("operator") {
|
||||
+ warn!("Unhandled cursor kind {:?}: {:?}", cursor.kind(), cursor);
|
||||
+ }
|
||||
+ Err(ParseError::Continue)
|
||||
+ }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1511,22 +1435,11 @@ impl Item {
|
||||
|
||||
if ctx.collected_typerefs() {
|
||||
debug!("refs already collected, resolving directly");
|
||||
- return Item::from_ty_with_id(
|
||||
- potential_id,
|
||||
- &ty,
|
||||
- location,
|
||||
- parent_id,
|
||||
- ctx,
|
||||
- )
|
||||
- .unwrap_or_else(|_| Item::new_opaque_type(potential_id, &ty, ctx));
|
||||
+ return Item::from_ty_with_id(potential_id, &ty, location, parent_id, ctx)
|
||||
+ .unwrap_or_else(|_| Item::new_opaque_type(potential_id, &ty, ctx));
|
||||
}
|
||||
|
||||
- if let Some(ty) = ctx.builtin_or_resolved_ty(
|
||||
- potential_id,
|
||||
- parent_id,
|
||||
- &ty,
|
||||
- Some(location),
|
||||
- ) {
|
||||
+ if let Some(ty) = ctx.builtin_or_resolved_ty(potential_id, parent_id, &ty, Some(location)) {
|
||||
debug!("{:?} already resolved: {:?}", ty, location);
|
||||
return ty;
|
||||
}
|
||||
@@ -1586,12 +1499,10 @@ impl Item {
|
||||
id, ty, location
|
||||
);
|
||||
|
||||
- if ty.kind() == clang_sys::CXType_Unexposed ||
|
||||
- location.cur_type().kind() == clang_sys::CXType_Unexposed
|
||||
+ if ty.kind() == clang_sys::CXType_Unexposed
|
||||
+ || location.cur_type().kind() == clang_sys::CXType_Unexposed
|
||||
{
|
||||
- if ty.is_associated_type() ||
|
||||
- location.cur_type().is_associated_type()
|
||||
- {
|
||||
+ if ty.is_associated_type() || location.cur_type().is_associated_type() {
|
||||
return Ok(Item::new_opaque_type(id, ty, ctx));
|
||||
}
|
||||
|
||||
@@ -1618,8 +1529,7 @@ impl Item {
|
||||
};
|
||||
|
||||
let comment = decl.raw_comment().or_else(|| location.raw_comment());
|
||||
- let annotations =
|
||||
- Annotations::new(&decl).or_else(|| Annotations::new(&location));
|
||||
+ let annotations = Annotations::new(&decl).or_else(|| Annotations::new(&location));
|
||||
|
||||
if let Some(ref annotations) = annotations {
|
||||
if let Some(replaced) = annotations.use_instead_of() {
|
||||
@@ -1627,9 +1537,7 @@ impl Item {
|
||||
}
|
||||
}
|
||||
|
||||
- if let Some(ty) =
|
||||
- ctx.builtin_or_resolved_ty(id, parent_id, ty, Some(location))
|
||||
- {
|
||||
+ if let Some(ty) = ctx.builtin_or_resolved_ty(id, parent_id, ty, Some(location)) {
|
||||
return Ok(ty);
|
||||
}
|
||||
|
||||
@@ -1665,9 +1573,7 @@ impl Item {
|
||||
let result = Type::from_clang_ty(id, ty, location, parent_id, ctx);
|
||||
let relevant_parent_id = parent_id.unwrap_or(current_module);
|
||||
let ret = match result {
|
||||
- Ok(ParseResult::AlreadyResolved(ty)) => {
|
||||
- Ok(ty.as_type_id_unchecked())
|
||||
- }
|
||||
+ Ok(ParseResult::AlreadyResolved(ty)) => Ok(ty.as_type_id_unchecked()),
|
||||
Ok(ParseResult::New(item, declaration)) => {
|
||||
ctx.add_item(
|
||||
Item::new(
|
||||
@@ -1698,13 +1604,10 @@ impl Item {
|
||||
assert_eq!(*finished.decl(), declaration_to_look_for);
|
||||
}
|
||||
|
||||
- location.visit(|cur| {
|
||||
- visit_child(cur, id, ty, parent_id, ctx, &mut result)
|
||||
- });
|
||||
+ location.visit(|cur| visit_child(cur, id, ty, parent_id, ctx, &mut result));
|
||||
|
||||
if valid_decl {
|
||||
- let partial_ty =
|
||||
- PartialType::new(declaration_to_look_for, id);
|
||||
+ let partial_ty = PartialType::new(declaration_to_look_for, id);
|
||||
ctx.begin_parsing(partial_ty);
|
||||
}
|
||||
|
||||
@@ -1813,10 +1716,7 @@ impl Item {
|
||||
// but maintaining these scopes properly would require more changes to
|
||||
// the whole libclang -> IR parsing code.
|
||||
|
||||
- fn is_template_with_spelling(
|
||||
- refd: &clang::Cursor,
|
||||
- spelling: &str,
|
||||
- ) -> bool {
|
||||
+ fn is_template_with_spelling(refd: &clang::Cursor, spelling: &str) -> bool {
|
||||
lazy_static! {
|
||||
static ref ANON_TYPE_PARAM_RE: regex::Regex =
|
||||
regex::Regex::new(r"^type\-parameter\-\d+\-\d+$").unwrap();
|
||||
@@ -1838,11 +1738,7 @@ impl Item {
|
||||
} else if location.kind() == clang_sys::CXCursor_TypeRef {
|
||||
// Situation (2)
|
||||
match location.referenced() {
|
||||
- Some(refd)
|
||||
- if is_template_with_spelling(&refd, &ty_spelling) =>
|
||||
- {
|
||||
- refd
|
||||
- }
|
||||
+ Some(refd) if is_template_with_spelling(&refd, &ty_spelling) => refd,
|
||||
_ => return None,
|
||||
}
|
||||
} else {
|
||||
@@ -1851,16 +1747,11 @@ impl Item {
|
||||
|
||||
location.visit(|child| {
|
||||
let child_ty = child.cur_type();
|
||||
- if child_ty.kind() == clang_sys::CXCursor_TypeRef &&
|
||||
- child_ty.spelling() == ty_spelling
|
||||
+ if child_ty.kind() == clang_sys::CXCursor_TypeRef
|
||||
+ && child_ty.spelling() == ty_spelling
|
||||
{
|
||||
match child.referenced() {
|
||||
- Some(refd)
|
||||
- if is_template_with_spelling(
|
||||
- &refd,
|
||||
- &ty_spelling,
|
||||
- ) =>
|
||||
- {
|
||||
+ Some(refd) if is_template_with_spelling(&refd, &ty_spelling) => {
|
||||
definition = Some(refd);
|
||||
return clang_sys::CXChildVisit_Break;
|
||||
}
|
||||
@@ -1883,12 +1774,7 @@ impl Item {
|
||||
|
||||
if let Some(id) = ctx.get_type_param(&definition) {
|
||||
if let Some(with_id) = with_id {
|
||||
- return Some(ctx.build_ty_wrapper(
|
||||
- with_id,
|
||||
- id,
|
||||
- Some(parent),
|
||||
- &ty,
|
||||
- ));
|
||||
+ return Some(ctx.build_ty_wrapper(with_id, id, Some(parent), &ty));
|
||||
} else {
|
||||
return Some(id);
|
||||
}
|
||||
@@ -1920,8 +1806,8 @@ impl ItemCanonicalName for Item {
|
||||
);
|
||||
self.canonical_name
|
||||
.borrow_with(|| {
|
||||
- let in_namespace = ctx.options().enable_cxx_namespaces ||
|
||||
- ctx.options().disable_name_namespacing;
|
||||
+ let in_namespace =
|
||||
+ ctx.options().enable_cxx_namespaces || ctx.options().disable_name_namespacing;
|
||||
|
||||
if in_namespace {
|
||||
self.name(ctx).within_namespaces().get()
|
||||
@@ -1934,10 +1820,7 @@ impl ItemCanonicalName for Item {
|
||||
}
|
||||
|
||||
impl ItemCanonicalPath for Item {
|
||||
- fn namespace_aware_canonical_path(
|
||||
- &self,
|
||||
- ctx: &BindgenContext,
|
||||
- ) -> Vec<String> {
|
||||
+ fn namespace_aware_canonical_path(&self, ctx: &BindgenContext) -> Vec<String> {
|
||||
let mut path = self.canonical_path(ctx);
|
||||
|
||||
// ASSUMPTION: (disable_name_namespacing && cxx_namespaces)
|
|
@ -1,23 +0,0 @@
|
|||
Patch-Source: https://github.com/chimera-linux/cports/blob/899c997/contrib/thunderbird/patches/llvm18.patch
|
||||
--- a/dom/media/webrtc/libwebrtcglue/WebrtcGmpVideoCodec.cpp
|
||||
+++ b/dom/media/webrtc/libwebrtcglue/WebrtcGmpVideoCodec.cpp
|
||||
@@ -540,7 +540,7 @@
|
||||
|
||||
webrtc::VideoFrameType ft;
|
||||
GmpFrameTypeToWebrtcFrameType(aEncodedFrame->FrameType(), &ft);
|
||||
- uint32_t timestamp = (aEncodedFrame->TimeStamp() * 90ll + 999) / 1000;
|
||||
+ uint64_t timestamp = (aEncodedFrame->TimeStamp() * 90ll + 999) / 1000;
|
||||
|
||||
GMP_LOG_DEBUG("GMP Encoded: %" PRIu64 ", type %d, len %d",
|
||||
aEncodedFrame->TimeStamp(), aEncodedFrame->BufferType(),
|
||||
--- a/dom/media/webrtc/libwebrtcglue/WebrtcGmpVideoCodec.h
|
||||
+++ b/dom/media/webrtc/libwebrtcglue/WebrtcGmpVideoCodec.h
|
||||
@@ -302,7 +302,7 @@
|
||||
int64_t timestamp_us;
|
||||
};
|
||||
// Map rtp time -> input image data
|
||||
- DataMutex<std::map<uint32_t, InputImageData>> mInputImageMap;
|
||||
+ DataMutex<std::map<uint64_t, InputImageData>> mInputImageMap;
|
||||
|
||||
MediaEventProducer<uint64_t> mInitPluginEvent;
|
||||
MediaEventProducer<uint64_t> mReleasePluginEvent;
|
|
@ -1,15 +0,0 @@
|
|||
Patch-Source: https://phabricator.services.mozilla.com/D212612
|
||||
|
||||
diff --git a/toolkit/moz.configure b/toolkit/moz.configure
|
||||
index 6d5485325c..c5dcc65dd5 100644
|
||||
--- a/toolkit/moz.configure
|
||||
+++ b/toolkit/moz.configure
|
||||
@@ -2426,6 +2426,8 @@ with only_when(compile_environment):
|
||||
& jpeg_arm_neon_vld1q_u8_x4,
|
||||
)
|
||||
|
||||
+ set_config("MOZ_SYSTEM_JPEG", True, when="--with-system-jpeg")
|
||||
+
|
||||
|
||||
# PNG
|
||||
# ===
|
|
@ -1 +0,0 @@
|
|||
NjhhZGJjMDEtMDM3OC00Zjc0LTk0N2UtMzBiYzA5NjlhMDc3Cg==
|
|
@ -1,13 +0,0 @@
|
|||
prevents a call to ccache
|
||||
diff --git a/python/mozbuild/mozbuild/controller/building.py b/python/mozbuild/mozbuild/controller/building.py
|
||||
index bf7009a..011c012 100644
|
||||
--- a/python/mozbuild/mozbuild/controller/building.py
|
||||
+++ b/python/mozbuild/mozbuild/controller/building.py
|
||||
@@ -570,6 +570,7 @@ class BuildMonitor(MozbuildObject):
|
||||
)
|
||||
|
||||
def ccache_stats(self, ccache=None):
|
||||
+ return None
|
||||
ccache_stats = None
|
||||
|
||||
if ccache is None:
|
|
@ -1,34 +0,0 @@
|
|||
missing include to use qsort()
|
||||
|
||||
https://bugzil.la/1906955
|
||||
|
||||
--- a/dom/media/webrtc/transport/third_party/nrappkit/src/registry/registry_local.c 2024-07-09 18:11:39.207125821 +0200
|
||||
+++ b/dom/media/webrtc/transport/third_party/nrappkit/src/registry/registry_local.c 2024-07-09 18:12:07.657013364 +0200
|
||||
@@ -53,6 +53,7 @@
|
||||
#include <openssl/ssl.h>
|
||||
#endif
|
||||
#include <ctype.h>
|
||||
+#include <stdlib.h>
|
||||
#include "registry.h"
|
||||
#include "registry_int.h"
|
||||
#include "registry_vtbl.h"
|
||||
@@ -62,6 +63,10 @@
|
||||
#include "r_errors.h"
|
||||
#include "r_macros.h"
|
||||
|
||||
+static int nr_compare_string(const void *arg1, const void *arg2) {
|
||||
+ return strcasecmp(*(const char **)arg1, *(const char **)arg2);
|
||||
+}
|
||||
+
|
||||
/* if C were an object-oriented language, nr_scalar_registry_node and
|
||||
* nr_array_registry_node would subclass nr_registry_node, but it isn't
|
||||
* object-oriented language, so this is used in cases where the pointer
|
||||
@@ -1067,7 +1072,7 @@
|
||||
}
|
||||
|
||||
assert(sizeof(*arg.children) == sizeof(NR_registry));
|
||||
- qsort(arg.children, arg.length, sizeof(*arg.children), (void*)strcasecmp);
|
||||
+ qsort(arg.children, arg.length, sizeof(*arg.children), nr_compare_string);
|
||||
|
||||
*length = arg.length;
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
Patch-Source: https://github.com/chimera-linux/cports/blob/506127954653ccebf9b82df1452cce4ed0dae3b1/contrib/thunderbird/patches/ppc-musttail.patch
|
||||
--
|
||||
commit 5e66655e1456c9d26637ceaed3f4533b537322c4
|
||||
Author: Daniel Kolesa <daniel@octaforge.org>
|
||||
Date: Sat May 13 23:00:04 2023 +0200
|
||||
|
||||
disable musttail on ppc
|
||||
|
||||
41:38.04 LLVM ERROR: failed to perform tail call elimination on a call site marked musttail
|
||||
41:38.04 PLEASE submit a bug report to https://github.com/llvm/llvm-project/issues/ and include the crash backtrace.
|
||||
41:38.04 Stack dump:
|
||||
41:38.04 0. Running pass 'Function Pass Manager' on module '/builddir/thunderbird-114.0_beta1/obj-powerpc64le-unknown-linux-musl/toolkit/library/build/../../../gfx/skia/SkOpts.o'.
|
||||
41:38.04 1. Running pass 'PowerPC DAG->DAG Pattern Instruction Selection' on function '@_ZN8portableL15init_lane_masksEPNS_6ParamsEP21SkRasterPipelineStageffff'
|
||||
41:38.95 clang-16: error: unable to execute command: Aborted
|
||||
|
||||
To be investigated later.
|
||||
|
||||
diff --git a/gfx/skia/skia/src/core/SkRasterPipeline.h b/gfx/skia/skia/src/core/SkRasterPipeline.h
|
||||
index 766bb0c..88c6cb2 100644
|
||||
--- a/gfx/skia/skia/src/core/SkRasterPipeline.h
|
||||
+++ b/gfx/skia/skia/src/core/SkRasterPipeline.h
|
||||
@@ -24,7 +24,7 @@ enum SkColorType : int;
|
||||
struct SkImageInfo;
|
||||
struct skcms_TransferFunction;
|
||||
|
||||
-#if __has_cpp_attribute(clang::musttail) && !defined(__EMSCRIPTEN__) && !defined(SK_CPU_ARM32)
|
||||
+#if __has_cpp_attribute(clang::musttail) && !defined(__EMSCRIPTEN__) && !defined(SK_CPU_ARM32) && !defined(__powerpc__)
|
||||
#define SK_HAS_MUSTTAIL 1
|
||||
#else
|
||||
#define SK_HAS_MUSTTAIL 0
|
|
@ -1,23 +0,0 @@
|
|||
Patch-Source: https://github.com/chimera-linux/cports/blob/506127954653ccebf9b82df1452cce4ed0dae3b1/contrib/thunderbird/patches/ppc64-webrtc.patch
|
||||
--
|
||||
commit 010bfb0441168d51e0fffe98d1f50e0602e7947f
|
||||
Author: Daniel Kolesa <daniel@octaforge.org>
|
||||
Date: Sat May 13 23:40:41 2023 +0200
|
||||
|
||||
fix webrtc on ppc64
|
||||
|
||||
diff --git a/third_party/libwebrtc/moz.build b/third_party/libwebrtc/moz.build
|
||||
index 976cf37..d35d447 100644
|
||||
--- a/third_party/libwebrtc/moz.build
|
||||
+++ b/third_party/libwebrtc/moz.build
|
||||
@@ -643,3 +643,10 @@ if CONFIG["CPU_ARCH"] == "x86_64" and CONFIG["OS_TARGET"] == "WINNT":
|
||||
"/third_party/libwebrtc/modules/audio_processing/agc2/rnn_vad/vector_math_avx2_gn",
|
||||
"/third_party/libwebrtc/modules/desktop_capture/desktop_capture_differ_sse2_gn"
|
||||
]
|
||||
+
|
||||
+if CONFIG["CPU_ARCH"] == "ppc64" and CONFIG["OS_TARGET"] == "Linux":
|
||||
+
|
||||
+ DIRS += [
|
||||
+ "/third_party/libwebrtc/modules/desktop_capture/desktop_capture_gn",
|
||||
+ "/third_party/libwebrtc/modules/desktop_capture/primitives_gn"
|
||||
+ ]
|
|
@ -1,12 +0,0 @@
|
|||
diff --git a/python/sites/mach.txt b/python/sites/mach.txt
|
||||
index 55cc6fb..51bf67d 100644
|
||||
--- a/python/sites/mach.txt
|
||||
+++ b/python/sites/mach.txt
|
||||
@@ -141,5 +141,5 @@ pypi-optional:glean-sdk==52.7.0:telemetry will not be collected
|
||||
# Mach gracefully handles the case where `psutil` is unavailable.
|
||||
# We aren't (yet) able to pin packages in automation, so we have to
|
||||
# support down to the oldest locally-installed version (5.4.2).
|
||||
-pypi-optional:psutil>=5.4.2,<=5.9.4:telemetry will be missing some data
|
||||
-pypi-optional:zstandard>=0.11.1,<=0.22.0:zstd archives will not be possible to extract
|
||||
+pypi-optional:psutil>=5.4.2,<=5.10.0:telemetry will be missing some data
|
||||
+pypi-optional:zstandard>=0.11.1,<=0.24.0:zstd archives will not be possible to extract
|
|
@ -1,12 +0,0 @@
|
|||
set rust crate lto to thin to not use fatlto for gkrust which fails sometimes
|
||||
--- a/config/makefiles/rust.mk
|
||||
+++ b/config/makefiles/rust.mk
|
||||
@@ -92,7 +92,7 @@
|
||||
# Never enable when coverage is enabled to work around https://github.com/rust-lang/rust/issues/90045.
|
||||
ifndef MOZ_CODE_COVERAGE
|
||||
ifeq (,$(findstring gkrust_gtest,$(RUST_LIBRARY_FILE)))
|
||||
-cargo_rustc_flags += -Clto$(if $(filter full,$(MOZ_LTO_RUST_CROSS)),=fat)
|
||||
+cargo_rustc_flags += -Clto=thin
|
||||
endif
|
||||
# We need -Cembed-bitcode=yes for all crates when using -Clto.
|
||||
RUSTFLAGS += -Cembed-bitcode=yes
|
File diff suppressed because one or more lines are too long
|
@ -1,15 +0,0 @@
|
|||
make SYS_fork non-fatal, musl uses it for fork(2)
|
||||
|
||||
--- a/security/sandbox/linux/SandboxFilter.cpp
|
||||
+++ b/security/sandbox/linux/SandboxFilter.cpp
|
||||
@@ -1253,6 +1253,10 @@
|
||||
// usually do something reasonable on error.
|
||||
case __NR_clone:
|
||||
return ClonePolicy(Error(EPERM));
|
||||
+#ifdef __NR_fork
|
||||
+ case __NR_fork:
|
||||
+ return Error(ENOSYS);
|
||||
+#endif
|
||||
|
||||
# ifdef __NR_fadvise64
|
||||
case __NR_fadvise64:
|
|
@ -1,17 +0,0 @@
|
|||
--- a/security/sandbox/linux/SandboxFilter.cpp 2020-11-23 22:41:14.556378950 +0100
|
||||
+++ b/security/sandbox/linux/SandboxFilter.cpp 2020-11-23 22:40:23.595806444 +0100
|
||||
@@ -68,7 +68,13 @@
|
||||
|
||||
// The headers define O_LARGEFILE as 0 on x86_64, but we need the
|
||||
// actual value because it shows up in file flags.
|
||||
-#define O_LARGEFILE_REAL 00100000
|
||||
+#if defined(__x86_64__) || defined(__i386__) || defined(__mips__)
|
||||
+#define O_LARGEFILE_REAL 0100000
|
||||
+#elif defined(__powerpc__)
|
||||
+#define O_LARGEFILE_REAL 0200000
|
||||
+#else
|
||||
+#define O_LARGEFILE_REAL O_LARGEFILE
|
||||
+#endif
|
||||
|
||||
// Not part of UAPI, but userspace sees it in F_GETFL; see bug 1650751.
|
||||
#define FMODE_NONOTIFY 0x4000000
|
|
@ -1,24 +0,0 @@
|
|||
upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1657849
|
||||
diff --git a/security/sandbox/linux/SandboxFilter.cpp b/security/sandbox/linux/SandboxFilter.cpp
|
||||
index ed958bc..9824433 100644
|
||||
--- a/security/sandbox/linux/SandboxFilter.cpp
|
||||
+++ b/security/sandbox/linux/SandboxFilter.cpp
|
||||
@@ -1751,6 +1751,6 @@ class GMPSandboxPolicy : public SandboxPolicyCommon {
|
||||
case __NR_sched_get_priority_max:
|
||||
+ case __NR_sched_setscheduler:
|
||||
return Allow();
|
||||
case __NR_sched_getparam:
|
||||
- case __NR_sched_getscheduler:
|
||||
- case __NR_sched_setscheduler: {
|
||||
+ case __NR_sched_getscheduler: {
|
||||
Arg<pid_t> pid(0);
|
||||
@@ -1926,3 +1926,2 @@ class RDDSandboxPolicy final : public SandboxPolicyCommon {
|
||||
case __NR_sched_getscheduler:
|
||||
- case __NR_sched_setscheduler:
|
||||
case __NR_sched_getattr:
|
||||
@@ -1932,2 +1931,5 @@ class RDDSandboxPolicy final : public SandboxPolicyCommon {
|
||||
}
|
||||
+ // sched_setscheduler gets special treatment here (bug 1657849):
|
||||
+ case __NR_sched_setscheduler:
|
||||
+ return Allow();
|
||||
|
|
@ -1,71 +0,0 @@
|
|||
/* $OpenBSD: stab.h,v 1.3 2003/06/02 19:34:12 millert Exp $ */
|
||||
/* $NetBSD: stab.h,v 1.4 1994/10/26 00:56:25 cgd Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1991 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. Neither the name of the University nor the names of its contributors
|
||||
* may be used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)stab.h 5.2 (Berkeley) 4/4/91
|
||||
*/
|
||||
|
||||
#ifndef _STAB_H_
|
||||
#define _STAB_H_
|
||||
|
||||
/*
|
||||
* The following are symbols used by various debuggers and by the Pascal
|
||||
* compiler. Each of them must have one (or more) of the bits defined by
|
||||
* the N_STAB mask set.
|
||||
*/
|
||||
|
||||
#define N_GSYM 0x20 /* global symbol */
|
||||
#define N_FNAME 0x22 /* F77 function name */
|
||||
#define N_FUN 0x24 /* procedure name */
|
||||
#define N_STSYM 0x26 /* data segment variable */
|
||||
#define N_LCSYM 0x28 /* bss segment variable */
|
||||
#define N_MAIN 0x2a /* main function name */
|
||||
#define N_PC 0x30 /* global Pascal symbol */
|
||||
#define N_RSYM 0x40 /* register variable */
|
||||
#define N_SLINE 0x44 /* text segment line number */
|
||||
#define N_DSLINE 0x46 /* data segment line number */
|
||||
#define N_BSLINE 0x48 /* bss segment line number */
|
||||
#define N_SSYM 0x60 /* structure/union element */
|
||||
#define N_SO 0x64 /* main source file name */
|
||||
#define N_LSYM 0x80 /* stack variable */
|
||||
#define N_BINCL 0x82 /* include file beginning */
|
||||
#define N_SOL 0x84 /* included source file name */
|
||||
#define N_PSYM 0xa0 /* parameter variable */
|
||||
#define N_EINCL 0xa2 /* include file end */
|
||||
#define N_ENTRY 0xa4 /* alternate entry point */
|
||||
#define N_LBRAC 0xc0 /* left bracket */
|
||||
#define N_EXCL 0xc2 /* deleted include file */
|
||||
#define N_RBRAC 0xe0 /* right bracket */
|
||||
#define N_BCOMM 0xe2 /* begin common */
|
||||
#define N_ECOMM 0xe4 /* end common */
|
||||
#define N_ECOML 0xe8 /* end common (local name) */
|
||||
#define N_LENG 0xfe /* length of preceding entry */
|
||||
|
||||
#endif /* !_STAB_H_ */
|
|
@ -1,12 +0,0 @@
|
|||
// Use LANG environment variable to choose locale
|
||||
pref("intl.locale.requested", "");
|
||||
|
||||
// Use system-provided dictionaries
|
||||
pref("spellchecker.dictionary_path", "/usr/share/hunspell");
|
||||
|
||||
// Disable default browser checking.
|
||||
pref("browser.shell.checkDefaultBrowser", false);
|
||||
|
||||
// Don't disable our bundled extensions in the application directory
|
||||
pref("extensions.autoDisableScopes", 11);
|
||||
pref("extensions.shownSelectionUI", true);
|
|
@ -1,9 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Zotero
|
||||
GenericName=Zotero Standalone. Is a free, easy-to-use tool to help you collect, organize, cite, and share your research sources.
|
||||
Icon=zotero
|
||||
Exec=/usr/bin/zotero -url %U
|
||||
Categories=Office
|
||||
Terminal=false
|
||||
MimeType=x-scheme-handler/zotero
|
|
@ -1,144 +0,0 @@
|
|||
diff --git a/zotero/app/build.sh b/zotero/app/build.sh
|
||||
index 649d629..7d078b8 100755
|
||||
--- a/zotero/app/build.sh
|
||||
+++ b/zotero/app/build.sh
|
||||
@@ -59,10 +59,7 @@ function abspath {
|
||||
}
|
||||
|
||||
function check_lfs_file {
|
||||
- if [ "$(head --bytes 5 "$1")" = "versi" ]; then
|
||||
- echo "$1 not checked out -- install Git LFS and run 'git lfs pull'" >&2
|
||||
- exit 1
|
||||
- fi
|
||||
+ return 0
|
||||
}
|
||||
|
||||
SOURCE_DIR=""
|
||||
@@ -840,18 +837,13 @@ if [ $BUILD_LINUX == 1 ]; then
|
||||
cp -r "$runtime_path/"!(application.ini|browser|defaults|devtools-files|crashreporter|crashreporter.ini|firefox|pingsender|precomplete|removed-files|run-mozilla.sh|update-settings.ini|updater|updater.ini) "$APPDIR"
|
||||
|
||||
# Use our own launcher that calls the original Firefox executable with -app
|
||||
- mv "$APPDIR"/firefox-bin "$APPDIR"/zotero-bin
|
||||
+ mv "$APPDIR"/firefox-esr "$APPDIR"/zotero-bin
|
||||
cp "$CALLDIR/linux/zotero" "$APPDIR"/zotero
|
||||
|
||||
# Copy Ubuntu launcher files
|
||||
cp "$CALLDIR/linux/zotero.desktop" "$APPDIR"
|
||||
cp "$CALLDIR/linux/set_launcher_icon" "$APPDIR"
|
||||
|
||||
- # Use our own updater, because Mozilla's requires updates signed by Mozilla
|
||||
- check_lfs_file "$CALLDIR/linux/updater.tar.xz"
|
||||
- tar xf "$CALLDIR/linux/updater.tar.xz" --to-stdout updater-$arch > "$APPDIR/updater"
|
||||
- chmod 755 "$APPDIR/updater"
|
||||
-
|
||||
# Copy app files
|
||||
rsync -a "$base_dir/" "$APPDIR/"
|
||||
|
||||
@@ -860,6 +852,7 @@ if [ $BUILD_LINUX == 1 ]; then
|
||||
cp -RH "$CALLDIR/modules/zotero-libreoffice-integration/install" "$APPDIR/integration/libreoffice"
|
||||
|
||||
# Copy icons
|
||||
+ mkdir -p "$APPDIR"/icons
|
||||
cp "$CALLDIR/linux/icons/icon32.png" "$APPDIR/icons/"
|
||||
cp "$CALLDIR/linux/icons/icon64.png" "$APPDIR/icons/"
|
||||
cp "$CALLDIR/linux/icons/icon128.png" "$APPDIR/icons/"
|
||||
|
||||
diff --git a/zotero/app/build.sh.orig b/zotero/app/build.sh
|
||||
index 702f499..3ee7e34 100755
|
||||
--- a/zotero/app/build.sh.orig
|
||||
+++ b/zotero/app/build.sh
|
||||
@@ -189,7 +189,7 @@ BUILD_ID=`date +%Y%m%d%H%M%S`
|
||||
# Paths to Gecko runtimes
|
||||
MAC_RUNTIME_PATH="$CALLDIR/xulrunner/Firefox.app"
|
||||
WIN_RUNTIME_PATH_PREFIX="$CALLDIR/xulrunner/firefox-"
|
||||
-LINUX_RUNTIME_PATH_PREFIX="$CALLDIR/xulrunner/firefox-"
|
||||
+LINUX_RUNTIME_PATH_PREFIX="$CALLDIR/xulrunner/firefox"
|
||||
|
||||
base_dir="$BUILD_DIR/base"
|
||||
app_dir="$BUILD_DIR/base/app"
|
||||
@@ -223,8 +223,8 @@ elif [ $BUILD_WIN == 1 ]; then
|
||||
unzip -qj "${WIN_RUNTIME_PATH_PREFIX}win-x64"/omni.ja "hyphenation/*" -d "$app_dir"/hyphenation/
|
||||
elif [ $BUILD_LINUX == 1 ]; then
|
||||
# Non-arch-specific files, so just use 64-bit version
|
||||
- cp -Rp "${LINUX_RUNTIME_PATH_PREFIX}x86_64"/browser/omni "$app_dir"
|
||||
- unzip -qj "${LINUX_RUNTIME_PATH_PREFIX}x86_64"/omni.ja "hyphenation/*" -d "$app_dir"/hyphenation/
|
||||
+ cp -Rp "${LINUX_RUNTIME_PATH_PREFIX}"/browser/omni "$app_dir"
|
||||
+ unzip -qj "${LINUX_RUNTIME_PATH_PREFIX}"/omni.ja "hyphenation/*" -d "$app_dir"/hyphenation/
|
||||
fi
|
||||
set -e
|
||||
cd $omni_dir
|
||||
@@ -825,11 +825,11 @@ if [ $BUILD_LINUX == 1 ]; then
|
||||
fi
|
||||
|
||||
for arch in $archs; do
|
||||
- runtime_path="${LINUX_RUNTIME_PATH_PREFIX}${arch}"
|
||||
+ runtime_path="${LINUX_RUNTIME_PATH_PREFIX}"
|
||||
|
||||
# Set up directory
|
||||
- echo 'Building Zotero_linux-'$arch
|
||||
- APPDIR="$STAGE_DIR/Zotero_linux-$arch"
|
||||
+ echo 'Building Zotero_linux'
|
||||
+ APPDIR="$STAGE_DIR/Zotero_linux"
|
||||
rm -rf "$APPDIR"
|
||||
mkdir "$APPDIR"
|
||||
|
||||
diff --git a/zotero/app/scripts/fetch_xulrunner.orig b/zotero/app/scripts/fetch_xulrunner
|
||||
index 2b57bfb..2bbc110 100755
|
||||
--- a/zotero/app/scripts/fetch_xulrunner.orig
|
||||
+++ b/zotero/app/scripts/fetch_xulrunner
|
||||
@@ -134,15 +134,6 @@ function modify_omni {
|
||||
# Continue using app.update.auto in prefs.js on Windows
|
||||
replace_line 'PER_INSTALLATION_PREFS_PLATFORMS = \["win"\]' 'PER_INSTALLATION_PREFS_PLATFORMS = []' modules/UpdateUtils.sys.mjs
|
||||
|
||||
- # Prompt if major update is available instead of installing automatically on restart
|
||||
- replace_line 'if \(!updateAuto\) \{' 'if (update.type == "major") {
|
||||
- LOG("UpdateService:_selectAndInstallUpdate - prompting because it is a major update");
|
||||
- AUSTLMY.pingCheckCode(this._pingSuffix, AUSTLMY.CHK_SHOWPROMPT_PREF);
|
||||
- Services.obs.notifyObservers(update, "update-available", "show-prompt");
|
||||
- return;
|
||||
- }
|
||||
- if (!updateAuto) {' modules/UpdateService.sys.mjs
|
||||
-
|
||||
# Avoid console warning about resource://gre/modules/FxAccountsCommon.js
|
||||
replace_line 'const logins = this._data.logins;' 'const logins = this._data.logins; if (this._data.logins.length != -1) return;' modules/LoginStore.sys.mjs
|
||||
|
||||
@@ -516,36 +507,10 @@ fi
|
||||
|
||||
if [ $BUILD_LINUX == 1 ]; then
|
||||
GECKO_VERSION="$GECKO_VERSION_LINUX"
|
||||
- DOWNLOAD_URL="https://ftp.mozilla.org/pub/firefox/releases/$GECKO_VERSION"
|
||||
|
||||
-
|
||||
- # Include 32-bit build if not in CI
|
||||
- if [[ "${CI:-}" = "1" ]] || [[ "${SKIP_32:-}" = "1" ]]; then
|
||||
- arches="x86_64"
|
||||
- else
|
||||
- arches="i686 x86_64"
|
||||
- fi
|
||||
- for arch in $arches; do
|
||||
- xdir="firefox-$arch"
|
||||
- rm -rf $xdir
|
||||
-
|
||||
- archived_file="firefox-$GECKO_VERSION-$arch.tar.bz2"
|
||||
- if [ -e "$archived_file" ]; then
|
||||
- echo "Using $archived_file"
|
||||
- cp "$archived_file" "firefox-$GECKO_VERSION.tar.bz2"
|
||||
- else
|
||||
- curl -O "$DOWNLOAD_URL/linux-$arch/en-US/firefox-$GECKO_VERSION.tar.bz2"
|
||||
- fi
|
||||
-
|
||||
- tar xvf firefox-$GECKO_VERSION.tar.bz2
|
||||
- mv firefox firefox-$arch
|
||||
-
|
||||
- pushd firefox-$arch
|
||||
- modify_omni $arch
|
||||
- popd
|
||||
- echo $($SCRIPT_DIR/xulrunner_hash -p l) > hash-linux
|
||||
- rm "firefox-$GECKO_VERSION.tar.bz2"
|
||||
- done
|
||||
+ pushd firefox
|
||||
+ modify_omni linux64
|
||||
+ popd
|
||||
fi
|
||||
|
||||
echo Done
|
|
@ -1,12 +0,0 @@
|
|||
diff --git a/zotero/pdf-worker/pdf.js/package.json.orig b/zotero/pdf-worker/pdf.js/package.json
|
||||
index 3025926..13f8b7a 100644
|
||||
--- a/zotero/pdf-worker/pdf.js/package.json.orig
|
||||
+++ b/zotero/pdf-worker/pdf.js/package.json
|
||||
@@ -7,7 +7,6 @@
|
||||
"@babel/runtime": "^7.24.8",
|
||||
"@fluent/bundle": "^0.18.0",
|
||||
"@fluent/dom": "^0.10.0",
|
||||
- "@jazzer.js/core": "^2.1.0",
|
||||
"@metalsmith/layouts": "^2.7.0",
|
||||
"@metalsmith/markdown": "^1.10.0",
|
||||
"autoprefixer": "^10.4.19",
|
|
@ -1,23 +0,0 @@
|
|||
diff --git a/zotero/test/runtests.sh.orig b/zotero/test/runtests.sh
|
||||
index d83914a..ec91848 100755
|
||||
--- a/zotero/test/runtests.sh.orig
|
||||
+++ b/zotero/test/runtests.sh
|
||||
@@ -154,18 +154,6 @@ fi
|
||||
# Clean up on exit
|
||||
trap "{ rm -rf \"$TEMPDIR\"; }" EXIT
|
||||
|
||||
-# Check if build watch process is running
|
||||
-# If not, run now
|
||||
-if [[ -z "$CI" ]] && ! ps | grep js-build/build.js | grep -v grep > /dev/null; then
|
||||
- echo
|
||||
- echo "Running JS build process"
|
||||
- cd "$ROOT_DIR"
|
||||
- NODE_OPTIONS=--openssl-legacy-provider npm run build || exit $?
|
||||
- echo
|
||||
-fi
|
||||
-
|
||||
-ZOTERO_TEST=1 "$ROOT_DIR/app/scripts/dir_build" -q
|
||||
-
|
||||
makePath FX_PROFILE "$PROFILE"
|
||||
MOZ_NO_REMOTE=1 NO_EM_RESTART=1 "$Z_EXECUTABLE" -profile "$FX_PROFILE" \
|
||||
-test "$TESTS" -grep "$GREP" -ZoteroTest $Z_ARGS
|
|
@ -1,16 +0,0 @@
|
|||
diff --git a/zotero/node_modules/mocha/mocha.js.orig b/zotero/node_modules/mocha/mocha.js
|
||||
index c3e0c12..95fff4d 100644
|
||||
--- a/zotero/node_modules/mocha/mocha.js.orig
|
||||
+++ b/zotero/node_modules/mocha/mocha.js
|
||||
@@ -11473,9 +11473,9 @@
|
||||
|
||||
var browser$1 = {
|
||||
info: 'ℹ️',
|
||||
- success: '✅',
|
||||
+ success: '✔',
|
||||
warning: '⚠️',
|
||||
- error: '❌️'
|
||||
+ error: 'x'
|
||||
};
|
||||
|
||||
var require$$0 = /*@__PURE__*/getAugmentedNamespace(_polyfillNode_events)
|
|
@ -1,13 +0,0 @@
|
|||
diff --git a/zotero/test/runtests.sh.orig b/zotero/test/runtests.sh
|
||||
index d83914a3baa..e00efdb6506 100755
|
||||
--- a/zotero/test/runtests.sh.orig
|
||||
+++ b/zotero/test/runtests.sh
|
||||
@@ -146,7 +146,7 @@ user_pref("extensions.zoteroOpenOfficeIntegration.skipInstallation", true);
|
||||
EOF
|
||||
|
||||
if [ -n "$CI" ]; then
|
||||
- Z_ARGS="$Z_ARGS -ZoteroAutomatedTest -ZoteroTestTimeout 15000"
|
||||
+ Z_ARGS="$Z_ARGS -ZoteroAutomatedTest -ZoteroTestTimeout 30000"
|
||||
else
|
||||
Z_ARGS="$Z_ARGS -jsconsole"
|
||||
fi
|
Loading…
Reference in a new issue