Remove tools/glossary-sort.sh

The glossary is imported automatically from openstack-manuals, no need
to test that it is sorted as this is done in openstack-manuals already.

Change-Id: If57bda8c5f83d7c833387f0c6ee7ea570d785dac
This commit is contained in:
Andreas Jaeger 2018-11-24 18:57:03 +01:00
parent a3e1dd0672
commit d12fd3653f
2 changed files with 0 additions and 26 deletions

View File

@ -1,25 +0,0 @@
#!/bin/bash -xe
# Check that doc/common/glossary entries are alphabetized and prints
# list of entries that should be sorted.
# Cross-platform (Mac and Linux) commands to make a temporary working directory
thetmpdir=`mktemp -d 2>/dev/null || mktemp -d -t 'thetmpdir'`
trap "rm -rf $thetmpdir" EXIT
pushd $thetmpdir
GLOSSARY=$OLDPWD/doc/source/common/glossary.rst
grep '^ [a-zA-Z0-9]' $GLOSSARY > glossary_entries
LC_ALL=C sort --ignore-case glossary_entries -o glossary_entries.sorted
if ! diff glossary_entries glossary_entries.sorted > glossary_entries.diff; then
echo "The following entries should be alphabetized: "
cat glossary_entries.diff | grep -e '> '
exit 1
else
echo "Glossary alphabetized."
fi
popd

View File

@ -14,4 +14,3 @@ deps =
commands =
doc8 doc/source -e txt -e rst
sphinx-build -E -W -b html doc/source doc/build/html
{toxinidir}/tools/glossary-sort.sh