Skip to content
Snippets Groups Projects
Verified Commit 8d2fd5a6 authored by alice's avatar alice
Browse files

community/firefox-esr: add appid migration notice

parent 87c81663
No related branches found
No related tags found
1 merge request!39304[3.16] main/expat: security upgrade to 2.4.9
...@@ -5,13 +5,14 @@ pkgname=firefox-esr ...@@ -5,13 +5,14 @@ pkgname=firefox-esr
pkgver=102.2.0 pkgver=102.2.0
# Date of release, YY-MM-DD for metainfo file (see package()) # Date of release, YY-MM-DD for metainfo file (see package())
_releasedate=2022-08-23 _releasedate=2022-08-23
pkgrel=3 pkgrel=4
pkgdesc="Firefox web browser - Extended Support Release" pkgdesc="Firefox web browser - Extended Support Release"
url="https://www.mozilla.org/en-US/firefox/organizations/" url="https://www.mozilla.org/en-US/firefox/organizations/"
# s390x and riscv64: blocked by rust and cargo # s390x and riscv64: blocked by rust and cargo
# armhf: build failure on armhf due to wasm # armhf: build failure on armhf due to wasm
arch="x86_64 armv7 aarch64 x86 ppc64le" arch="x86_64 armv7 aarch64 x86 ppc64le"
license="GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND MPL-2.0" license="GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND MPL-2.0"
install="$pkgname.post-upgrade"
depends="ffmpeg-libs" depends="ffmpeg-libs"
makedepends=" makedepends="
alsa-lib-dev alsa-lib-dev
......
#!/bin/sh
ver_old=$2
if [ "$(apk version -t "$ver_old" '102.2.0-r4')" = '<' ]; then
# renamed appid, needs profile migration
cat 1>&2 <<-EOF
*
* firefox-esr now has a different appid, so you will see a default new
* profile upon starting it. to use your old profile again, you have to
* first migrate it using 'firefox-esr --ProfileManager'. select the
* previous one (if you didn't rename it, it's probably named
* default-something) to migrate it.
*
EOF
fi
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment