summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-rpm.conf
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2021-05-25 19:34:23 -0400
committerB Stack <bgstack15@gmail.com>2021-05-25 19:34:23 -0400
commit7833d3e10c9e508dd67550ad547b4df5da196bf5 (patch)
treee514fb54251f6f0e8bdbb24e6eb777c5ca13f9db /scripts/prep-librewolf-rpm.conf
parentproduce stable rpm (diff)
downloadlibrewolf-fedora-7833d3e10c9e508dd67550ad547b4df5da196bf5.tar.gz
librewolf-fedora-7833d3e10c9e508dd67550ad547b4df5da196bf5.tar.bz2
librewolf-fedora-7833d3e10c9e508dd67550ad547b4df5da196bf5.zip
v88.0.1-1
Diffstat (limited to 'scripts/prep-librewolf-rpm.conf')
-rw-r--r--scripts/prep-librewolf-rpm.conf8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-rpm.conf b/scripts/prep-librewolf-rpm.conf
index c4b42e4..f327058 100644
--- a/scripts/prep-librewolf-rpm.conf
+++ b/scripts/prep-librewolf-rpm.conf
@@ -3,10 +3,12 @@
# Available options for DISTRO: fedora
DISTRO=${DISTRO:-'fedora'}
-# current version of Firefox package in target distro
-distro_firefox_release=${distro_firefox_release:-'6'}
+# current release of Firefox package in target distro; just Release and not EVR
+distro_firefox_release=${distro_firefox_release:-'1'}
# current version of Firefox, as defined by name of the orig tarball.
-firefox_version=${firefox_version:-'88.0'}
+firefox_version=${firefox_version:-'88.0.1'}
settings_commit=${settings_commit:-'master'}
CI_PROJECT_DIR=${CI_PROJECT_DIR:-$(realpath $(dirname $0)/../)}
output_dir=${CI_PROJECT_DIR}/out
+
+fedora_ff_repo=https://gitlab.com/bgstack15/librewolf-fedora-ff.git
bgstack15