e628fd1d19
- Update to 2017.7.2 See https://docs.saltstack.com/en/latest/topics/releases/2017.7.2.html - Added: * enable-with-salt-version-parameter-for-setup.py-scri.patch - Removed: * add-a-salt-minion-service-control-file.patch * add-clean_id-function-to-salt.utils.verify.py.patch * add-options-for-dockerng.patch * add-ssh-option-to-salt-ssh.patch * add-unit-test-for-skip-false-values-from-preferred_i.patch * add-yum-plugin.patch * add-zypp-notify-plugin.patch * adding-salt-minion-watchdog-for-sysv-systems-rhel6-a.patch * adding-support-for-installing-patches-in-yum-dnf-exe.patch * avoid-failures-on-sles-12-sp2-because-of-new-systemd.patch * bugfix-jobs-scheduled-to-run-at-a-future-time-stay-p.patch * bugfix-unable-to-use-127-as-hostname.patch * catching-error-when-pidfile-cannot-be-deleted.patch * change-travis-configuration-file-to-use-salt-toaster.patch * check-if-byte-strings-are-properly-encoded-in-utf-8.patch * clean-up-change-attribute-from-interface-dict.patch * do-not-generate-a-date-in-a-comment-to-prevent-rebui.patch * enables-salt-minion-watchdog-on-init.d-script-for-sy.patch * escape-the-os.sep.patch * fix-for-delete_deployment-in-kubernetes-module.patch * fix-format-error-bsc-1043111.patch * fix-grain-for-os_family-on-suse-series.patch * fix-os_family-case-in-unittest.patch * fix-regression-in-file.get_managed-add-unit-tests.patch * fix-salt-summary-to-count-not-responding-minions-cor.patch OBS-URL: https://build.opensuse.org/request/show/540260 OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:saltstack/salt?expand=0&rev=98
65 lines
1.2 KiB
Bash
65 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#
|
|
# Update html.tar.bz2 documentation tarball
|
|
# Author: Bo Maryniuk <bo@suse.de>
|
|
#
|
|
|
|
function check_env() {
|
|
for cmd in "sphinx-build" "make" "quilt"; do
|
|
if [ -z "$(which $cmd 2>/dev/null)" ]; then
|
|
echo "Error: '$cmd' is missing."
|
|
exit 1;
|
|
fi
|
|
done
|
|
}
|
|
|
|
function quilt_setup() {
|
|
quilt setup salt.spec
|
|
cd $1
|
|
quilt push -a
|
|
}
|
|
|
|
function build_docs() {
|
|
cd $1
|
|
make html
|
|
rm _build/html/.buildinfo
|
|
cd _build/html
|
|
chmod -R -x+X *
|
|
cd ..
|
|
tar cvf - html | bzip2 > /tmp/html.tar.bz2
|
|
}
|
|
|
|
function write_changelog() {
|
|
mv salt.changes salt.changes.previous
|
|
TIME=$(date -u +'%a %b %d %T %Z %Y')
|
|
MAIL=$1
|
|
SEP="-------------------------------------------------------------------"
|
|
cat <<EOF > salt.changes
|
|
$SEP
|
|
$TIME - $MAIL
|
|
|
|
- Updated html.tar.bz2 documentation tarball.
|
|
|
|
EOF
|
|
cat salt.changes.previous >> salt.changes
|
|
rm salt.changes.previous
|
|
}
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 <your e-mail>"
|
|
exit 1;
|
|
fi
|
|
|
|
check_env;
|
|
START=$(pwd)
|
|
SRC_DIR="salt-$(cat salt.spec | grep ^Version: | cut -d: -f2 | sed -e 's/[[:blank:]]//g')";
|
|
quilt_setup $SRC_DIR
|
|
build_docs doc
|
|
|
|
cd $START
|
|
rm -rf $SRC_DIR
|
|
mv /tmp/html.tar.bz2 $START
|
|
|
|
echo "Done"
|
|
echo "---------------"
|