diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/git-helper.sh | 36 | ||||
-rwxr-xr-x | scripts/prep-librewolf-rpm.sh | 9 |
2 files changed, 41 insertions, 4 deletions
diff --git a/scripts/git-helper.sh b/scripts/git-helper.sh new file mode 100755 index 0000000..20c3aad --- /dev/null +++ b/scripts/git-helper.sh @@ -0,0 +1,36 @@ +#!/bin/sh +# Purpose: help librewolf-fedora-ff modified git repo by adding its readme and useful git config +# Startdate: 2021-04-29 +# Dependencies: +# git + +##################################### +# Load settings +# basically, dot-source the conf file. +test -z "${librewolf_rpm_conf}" && export librewolf_rpm_conf="$( find "$( dirname "${0}" )" -maxdepth 2 -name "prep-librewolf-rpm.conf" -print 2>/dev/null | head -n1 )" +test ! -r "${librewolf_rpm_conf}" && { echo "Unable to load config file, which should be named prep-librewolf-rpm.conf. Aborted." 1>&2 ; exit 1 ; } +. "${librewolf_rpm_conf}" +script_dir="$( dirname "$( readlink -f "${0}" )" )" + +# switch to target directory +src_rpm_dir=${CI_PROJECT_DIR}/${firefox_version}/git +cd "${src_rpm_dir}" +if test "$( git remote -v | awk '$1=="origin" && $3~/fetch/{print $2}' )" != "https://src.fedoraproject.org/rpms/firefox/" ; then + echo "Cannot find git repo that cloned https://src.fedoraproject.org/rpms/firefox/. Aborted." 1>&2 + exit 1 +fi +if ! test -f librewolf.spec ; then + echo "Cannot determine that prep-librewolf-rpm.sh has run yet! Where is librewolf.spec?" 1>&2 + exit 1 +fi +# So if we get here, we're in the right spot + +# Make file changes +cp -p "${script_dir}/../for-repo/README.md" . +sed -i -r .gitignore \ + -e '/cbindgen-vendor/d' +grep -qE '\*\.spec\?' .gitignore || echo '*.spec?' >> .gitignore + +# Add git remote +git remote add gitlab https://gitlab.com/bgstack15/librewolf-fedora-ff.git +git pull --all diff --git a/scripts/prep-librewolf-rpm.sh b/scripts/prep-librewolf-rpm.sh index 1d6ddb2..7462109 100755 --- a/scripts/prep-librewolf-rpm.sh +++ b/scripts/prep-librewolf-rpm.sh @@ -178,10 +178,11 @@ sed -i -r librewolf.spec \ -e '- Fork to librewolf release.\' -e '' # upstream fedora firefox src.rpm lists some sources which are only used inside if-endif blocks -# Also, fix %files list +# Also, fix %files list, and make langpacks disabled by default sed -i -r librewolf.spec \ -e '/^Source[0-9]+:.*mochitest-python\.tar/{i%if 0' -e 'a%endif' -e '}' \ - -e '/^%files -f/,/^%change/{' -e '/_bindir|mozappdir|\/icons/{/browser/!{s/firefox/librewolf/g;}}}' + -e '/^%files -f/,/^%change/{' -e '/_bindir|mozappdir|\/icons/{/browser/!{s/firefox/librewolf/g;}}}' \ + -e '/%bcond_with(out)? langpacks/s/_without/_with/;' if test -z "${SKIP_SRC_RPM}" ; then if test -f "firefox-${firefox_version}.source.tar.xz" || test -z "${SKIP_SPECTOOL}" ; then @@ -191,8 +192,8 @@ if test -z "${SKIP_SRC_RPM}" ; then # Unfortunately the version available may not be identical to what is in src.fedoraproject.org cd "${work_dir}" ; dnf download --source firefox this_srcrpm="$( find . -iname 'firefox-*.src.rpm' -printf '%f\n' | sort | tail -n1 )" - # find the tarballs closest to these expressions: firefox-langpacks cbindgen-vendor - cd "${src_rpm_dir}" ; rpm2cpio "${work_dir}/${this_srcrpm}" | cpio -idm $( spectool -l --sources "${src_rpm_dir}/librewolf.spec" | awk '$NF ~/z$/ && $NF ~ /cbindgen|langpacks/{print $NF}' ) + # find the tarballs closest to these expressions: cbindgen-vendor + cd "${src_rpm_dir}" ; rpm2cpio "${work_dir}/${this_srcrpm}" | cpio -idm $( spectool -l --sources "${src_rpm_dir}/librewolf.spec" | awk '$NF ~/z$/ && $NF ~ /cbindgen/{print $NF}' ) # I only know how to get rpmbuild to pull sources from ~/rpmbuild/SOURCES mkdir -p ~/rpmbuild/SOURCES cd "${src_rpm_dir}" ; cp -pf * ~/rpmbuild/SOURCES ; |