From: Chris Koeritz Date: Thu, 30 Jan 2020 20:37:13 +0000 (-0500) Subject: Merge branch 'master' into dev X-Git-Tag: 2.140.117^2~20 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=e3a57f3a794a14dc006b0c0109766aba80f0bc96;hp=d2ee06487533c604802c06c029671ce3fb98597d Merge branch 'master' into dev --- diff --git a/infobase/document_templates/google_contacts_columns.ods b/infobase/document_templates/google_contacts_columns.ods new file mode 100644 index 00000000..17e986e5 Binary files /dev/null and b/infobase/document_templates/google_contacts_columns.ods differ diff --git a/scripts/customize/fred/scripts/email/filter_grabber.sh b/scripts/customize/fred/scripts/email/filter_grabber.sh index dcb79464..8d6fe229 100644 --- a/scripts/customize/fred/scripts/email/filter_grabber.sh +++ b/scripts/customize/fred/scripts/email/filter_grabber.sh @@ -7,7 +7,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" cp $HOME/.thunderbird/oqv30zg4.default/ImapMail/zooty.koeritz.com/msgFilterRules.dat $CLOUD_BASE/magic_cabinet/mail_filters/zooty_serene_hamstertronic_$(date_stringer).filters exit_on_error "copying feistymeow.org filters" -cp $HOME/.thunderbird/oqv30zg4.default/ImapMail/mail.eservices.virginia.edu/msgFilterRules.dat $CLOUD_BASE/magic_cabinet/mail_filters/uva_email_$(date_stringer).filters -exit_on_error "copying UVa filters" +#GONE: cp $HOME/.thunderbird/oqv30zg4.default/ImapMail/mail.eservices.virginia.edu/msgFilterRules.dat $CLOUD_BASE/magic_cabinet/mail_filters/uva_email_$(date_stringer).filters +#GONE: exit_on_error "copying UVa filters" diff --git a/scripts/generator/build_variables.sh b/scripts/generator/build_variables.sh index eb3a5660..8c324acc 100644 --- a/scripts/generator/build_variables.sh +++ b/scripts/generator/build_variables.sh @@ -208,7 +208,7 @@ if [ -z "$got_bad" ]; then if [ "$OPERATING_SYSTEM" == "WIN32" ]; then source "$BUILD_SCRIPTS_PATH/vis_stu_vars.sh" else - export LD_LIBRARY_PATH="$TARGETS_STORE" + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$TARGETS_STORE" fi popd &>/dev/null # checking is over, jump back to the starting point. diff --git a/scripts/rev_control/diff_repos.sh b/scripts/rev_control/diff_repos.sh index 32a5d48c..5a6cf750 100644 --- a/scripts/rev_control/diff_repos.sh +++ b/scripts/rev_control/diff_repos.sh @@ -25,5 +25,7 @@ popd &>/dev/null perform_revctrl_action_on_file "$tempfile" do_revctrl_diff exit_on_error "performing revision control action do_revctrl_diff on: $tempfile" +rm "$tempfile" + restore_terminal_title diff --git a/scripts/rev_control/push_repo_downstream.sh b/scripts/rev_control/push_repo_downstream.sh index f12fc740..1fc6e0ba 100644 --- a/scripts/rev_control/push_repo_downstream.sh +++ b/scripts/rev_control/push_repo_downstream.sh @@ -53,6 +53,8 @@ exit_on_error "generating revision control file list" perform_revctrl_action_on_file "$tempfile" do_revctrl_careful_update exit_on_error "doing a careful update on: $tempfile" +rm "$tempfile" + # seems to be needed to cause a merge to be resolved. git pull downstream master # -m "unfortunate merge" diff --git a/scripts/rev_control/quick_git_release.sh b/scripts/rev_control/quick_git_release.sh index 02b04a59..e0c95a24 100644 --- a/scripts/rev_control/quick_git_release.sh +++ b/scripts/rev_control/quick_git_release.sh @@ -38,26 +38,32 @@ branch name and release tag name of the new release. # make up a release name based on the version number. local new_release="release-${new_version}" # make a new branch for the release based on the dev branch. -echo about to git checkout +echo about to git checkout--hit enter read line git checkout -b $new_release dev exit_on_error checking out a new branch called $new_release # bump feisty meow version. bash ./scripts/generator/next_version.sh exit_on_error bumping version for feisty meow codebase -echo about to commit -read line # check in the changes in the new release branch, which now includes a revised version. +echo about to commit--hit enter +read line git commit -a exit_on_error committing all changes -echo about to check out master + + # not sure if we really need to check in the release branch as a remote, but we like to see it in the list. +echo about to push new release branch--hit enter read line + git push --set-upstream origin "$new_release" + # grab out the master branch as the active one. +echo about to check out master--hit enter +read line git checkout master exit_on_error checking out master branch -echo about to merge -read line # merge the master branch with the new release. +echo about to merge--hit enter +read line git merge --no-ff $new_release exit_on_error merging in the new release in master # let the committer see the most recent changes. @@ -69,23 +75,23 @@ read line # and useful comments for what has changed in this release, gathered from the gitk that # we just launched. this should include all of the work on the development branch since # the last release... -echo about to TAG +echo about to TAG--hit enter read line git tag -a $new_version exit_on_error tagging new version as $new_version -echo about to commit master branch with all those changes -read line # commit the full set of changes for the master branch now, including the tags. +echo about to commit master branch with all those changes--hit enter +read line rcheckin . exit_on_error checking in the changes in master branch -echo switching to dev branch -read line # switch back to the dev branch. +echo switching to dev branch--hit enter +read line git checkout dev exit_on_error checking the dev branch out again -echo merging in from master -read line # merge in the latest changes from master, which should only be the revised version really. +echo merging in from release branch to dev--hit enter +read line git merge --no-ff $new_release exit_on_error merging the release changes into the dev branch # back to where we started. diff --git a/scripts/rev_control/rcheckin.sh b/scripts/rev_control/rcheckin.sh index dc05cf47..185de49e 100644 --- a/scripts/rev_control/rcheckin.sh +++ b/scripts/rev_control/rcheckin.sh @@ -25,4 +25,6 @@ popd &>/dev/null perform_revctrl_action_on_file "$tempfile" do_revctrl_checkin exit_on_error "doing a check-in on: $tempfile" +rm "$tempfile" + restore_terminal_title diff --git a/scripts/rev_control/report_new.sh b/scripts/rev_control/report_new.sh index 5a057b0b..8ecb8715 100644 --- a/scripts/rev_control/report_new.sh +++ b/scripts/rev_control/report_new.sh @@ -26,5 +26,7 @@ popd &>/dev/null perform_revctrl_action_on_file "$tempfile" do_revctrl_report_new exit_on_error "running revision control report" +rm "$tempfile" + restore_terminal_title diff --git a/scripts/rev_control/rgetem.sh b/scripts/rev_control/rgetem.sh index 529fae19..11b9edd4 100644 --- a/scripts/rev_control/rgetem.sh +++ b/scripts/rev_control/rgetem.sh @@ -25,5 +25,7 @@ popd &>/dev/null perform_revctrl_action_on_file "$tempfile" do_revctrl_simple_update exit_on_error "running revision control update" +rm "$tempfile" + restore_terminal_title diff --git a/scripts/rev_control/rpuffer.sh b/scripts/rev_control/rpuffer.sh index ddf16337..d67332d3 100644 --- a/scripts/rev_control/rpuffer.sh +++ b/scripts/rev_control/rpuffer.sh @@ -29,5 +29,7 @@ popd &>/dev/null perform_revctrl_action_on_file "$tempfile" do_revctrl_careful_update exit_on_error "puffing out repository at: $tempfile" +rm "$tempfile" + restore_terminal_title diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 282dd4d9..5342ef2c 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -156,7 +156,7 @@ function do_revctrl_diff svn diff . exit_on_error "subversion diff" elif [ -d ".git" ]; then - git diff + git --no-pager diff exit_on_error "git diff" elif [ -d "CVS" ]; then cvs diff .