Fennec F-Droid: Prepare for 58.0
This commit is contained in:
parent
0cfb0d555a
commit
186af4f1eb
|
@ -4112,6 +4112,74 @@ Build:57.0.4,570410
|
||||||
./mach package
|
./mach package
|
||||||
ndk=r12b
|
ndk=r12b
|
||||||
|
|
||||||
|
Build:58.0,580000
|
||||||
|
commit=FENNEC_58_0_RELEASE
|
||||||
|
sudo=apt-get install -y g++ proguard-cli/testing libproguard-java/testing
|
||||||
|
output=obj-arm-linux-androideabi/dist/fennec-$$VERSION$$.en-US.android-arm-unsigned-unaligned.apk
|
||||||
|
srclibs=MozLocales@f39951ae735980571966856e13110c23377bee50
|
||||||
|
prebuild=mkdir fdroid && \
|
||||||
|
l10ndir=`readlink -f $$MozLocales$$` && \
|
||||||
|
bash $$MozLocales$$/prebuild.sh && \
|
||||||
|
echo "ac_add_options --target=arm-linux-androideabi" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-android-min-sdk=16" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-android-ndk=\"$$NDK$$\"" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-android-sdk=\"$$SDK$$\"" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --enable-application=mobile/android" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-branding=mobile/android/branding/unofficial" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-l10n-base=${l10ndir}" >> .mozconfig && \
|
||||||
|
echo "mk_add_options 'export L10NBASEDIR=${l10ndir}'" >> .mozconfig && \
|
||||||
|
echo "mk_add_options 'export MOZ_CHROME_MULTILOCALE=$(tr '\n' ' ' < mobile/android/locales/maemo-locales)'" >> .mozconfig && \
|
||||||
|
echo "mk_add_options 'export PROGUARD_JAR=/usr/share/java/proguard.jar'" >> .mozconfig && \
|
||||||
|
pushd mobile/android/branding/unofficial/ && \
|
||||||
|
sed -i -e '/ANDROID_PACKAGE_NAME/d' -e '/MOZ_APP_DISPLAYNAME/d' configure.sh && \
|
||||||
|
echo 'ANDROID_PACKAGE_NAME=org.mozilla.fennec_fdroid' >> configure.sh && \
|
||||||
|
echo 'MOZ_APP_DISPLAYNAME="Fennec F-Droid"' >> configure.sh && \
|
||||||
|
echo 'MOZ_APP_ANDROID_VERSION_CODE=$$VERCODE$$' >> configure.sh && \
|
||||||
|
popd
|
||||||
|
build=export I_PREFER_A_SUBOPTIMAL_MERCURIAL_EXPERIENCE=1 && \
|
||||||
|
mkdir rust && \
|
||||||
|
curl https://static.rust-lang.org/dist/rust-1.21.0-`uname -m`-unknown-linux-gnu.tar.xz | tar -x -J -C rust --strip-components 2 && \
|
||||||
|
curl https://static.rust-lang.org/dist/rust-std-1.21.0-armv7-linux-androideabi.tar.xz | tar -x -J -C rust --strip-components 2 && \
|
||||||
|
PATH=$PATH:$PWD/rust/bin ./mach build && \
|
||||||
|
cat mobile/android/locales/maemo-locales | xargs -I % make -C obj-arm-linux-androideabi/mobile/android/locales LOCALE_MERGEDIR=merge-% merge-% chrome-% && \
|
||||||
|
./mach package && \
|
||||||
|
zip -d obj-arm-linux-androideabi/dist/fennec-$$VERSION$$.en-US.android-arm-unsigned-unaligned.apk 'META-INF/*.*'
|
||||||
|
ndk=r15c
|
||||||
|
|
||||||
|
Build:58.0,580010
|
||||||
|
commit=FENNEC_58_0_RELEASE
|
||||||
|
sudo=apt-get install -y g++ proguard-cli/testing libproguard-java/testing
|
||||||
|
output=obj-i386-linux-androideabi/dist/fennec-$$VERSION$$.en-US.android-i386-unsigned-unaligned.apk
|
||||||
|
srclibs=MozLocales@f39951ae735980571966856e13110c23377bee50
|
||||||
|
prebuild=mkdir fdroid && \
|
||||||
|
l10ndir=`readlink -f $$MozLocales$$` && \
|
||||||
|
bash $$MozLocales$$/prebuild.sh && \
|
||||||
|
echo "ac_add_options --target=i386-linux-androideabi" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-android-min-sdk=16" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-android-ndk=\"$$NDK$$\"" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-android-sdk=\"$$SDK$$\"" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --enable-application=mobile/android" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-branding=mobile/android/branding/unofficial" >> .mozconfig && \
|
||||||
|
echo "ac_add_options --with-l10n-base=${l10ndir}" >> .mozconfig && \
|
||||||
|
echo "mk_add_options 'export L10NBASEDIR=${l10ndir}'" >> .mozconfig && \
|
||||||
|
echo "mk_add_options 'export MOZ_CHROME_MULTILOCALE=$(tr '\n' ' ' < mobile/android/locales/maemo-locales)'" >> .mozconfig && \
|
||||||
|
echo "mk_add_options 'export PROGUARD_JAR=/usr/share/java/proguard.jar'" >> .mozconfig && \
|
||||||
|
pushd mobile/android/branding/unofficial/ && \
|
||||||
|
sed -i -e '/ANDROID_PACKAGE_NAME/d' -e '/MOZ_APP_DISPLAYNAME/d' configure.sh && \
|
||||||
|
echo 'ANDROID_PACKAGE_NAME=org.mozilla.fennec_fdroid' >> configure.sh && \
|
||||||
|
echo 'MOZ_APP_DISPLAYNAME="Fennec F-Droid"' >> configure.sh && \
|
||||||
|
echo 'MOZ_APP_ANDROID_VERSION_CODE=$$VERCODE$$' >> configure.sh && \
|
||||||
|
popd
|
||||||
|
build=export I_PREFER_A_SUBOPTIMAL_MERCURIAL_EXPERIENCE=1 && \
|
||||||
|
mkdir rust && \
|
||||||
|
curl https://static.rust-lang.org/dist/rust-1.21.0-`uname -m`-unknown-linux-gnu.tar.xz | tar -x -J -C rust --strip-components 2 && \
|
||||||
|
curl https://static.rust-lang.org/dist/rust-std-1.21.0-i686-linux-android.tar.xz | tar -x -J -C rust --strip-components 2 && \
|
||||||
|
PATH=$PATH:$PWD/rust/bin ./mach build && \
|
||||||
|
cat mobile/android/locales/maemo-locales | xargs -I % make -C obj-i386-linux-androideabi/mobile/android/locales LOCALE_MERGEDIR=merge-% merge-% chrome-% && \
|
||||||
|
./mach package && \
|
||||||
|
zip -d obj-i386-linux-androideabi/dist/fennec-$$VERSION$$.en-US.android-i386-unsigned-unaligned.apk 'META-INF/*.*'
|
||||||
|
ndk=r15c
|
||||||
|
|
||||||
Maintainer Notes:
|
Maintainer Notes:
|
||||||
|
|
||||||
Updating/Versioning:
|
Updating/Versioning:
|
||||||
|
@ -4122,6 +4190,7 @@ Updating/Versioning:
|
||||||
** Example: 530210 = Firefox 53.0.2 for x86, initial revision
|
** Example: 530210 = Firefox 53.0.2 for x86, initial revision
|
||||||
** Example: 550021 = Firefox 55.0 for ARMv8, second revision
|
** Example: 550021 = Firefox 55.0 for ARMv8, second revision
|
||||||
* Builds for different architectures target different Android API levels: 16 for 32-bit (ARMv7 and x86) and 21 for 64-bit (ARMv8).
|
* Builds for different architectures target different Android API levels: 16 for 32-bit (ARMv7 and x86) and 21 for 64-bit (ARMv8).
|
||||||
|
* Required SDK and NDK versions: https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Simple_Firefox_for_Android_build#Required_Android_SDK_and_NDK_versions
|
||||||
* Required Rust versions: https://wiki.mozilla.org/Oxidation#Supported_Rust_versions_for_Firefox_builds
|
* Required Rust versions: https://wiki.mozilla.org/Oxidation#Supported_Rust_versions_for_Firefox_builds
|
||||||
|
|
||||||
Reroute Feedback:
|
Reroute Feedback:
|
||||||
|
|
Loading…
Reference in a new issue