docs-common/bin insert-changelog,NONE,1.1

Paul W. Frields (pfrields) fedora-docs-commits at redhat.com
Sun Jan 15 19:18:15 UTC 2006


Author: pfrields

Update of /cvs/docs/docs-common/bin
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20097/docs-common/bin

Added Files:
	insert-changelog 
Log Message:
Script to support Makefile "clog" target


--- NEW FILE insert-changelog ---
#!/bin/sh
#
# insert-changelog - Add a new revision to rpm-info.xml
#

XSLTPROC=${XSLTPROC:-xsltproc}
XMLFORMAT=${XMLFORMAT:-../docs-common/bin/xmlformat -f ../docs-common/bin/xmlformat-fdp.conf}

echo -n "Change to [r]pm package or [d]ocument source (q=Abort)? [r/D/q] "
while test -z "$ROLE" ; do
    read -s -n 1 R
    case "$R" in
	'r' | 'R' )
	    ROLE="rpm" ;;
	'd' | 'D' | '' )
	    ROLE="doc" ;;
	'q' | 'Q' )
	    ROLE="ABORT" ;;
    esac
done
echo $ROLE

if test $ROLE = "rpm"; then
    REVDATE=`date +"%a %b %d %Y"`
elif test $ROLE = "doc"; then
    REVDATE=`date +"%Y-%M-%d"`
else
    echo "Aborting"
    exit 1
fi

LASTREV=$(${XSLTPROC} --stringparam role "$ROLE" \
    ../docs-common/packaging/doc-version.xsl rpm-info.xml)
while test -z "$NUMBER"; do
    echo -n "Enter revision number greater than $LASTREV: "
    read NUMBER
    # Yes, it's perfectly safe to assume Python is present
    if test `python -c "from distutils import version; a=version.LooseVersion('$LASTREV') ; b=version.LooseVersion('$NUMBER'); print b>a"` = "False"; then
	NUMBER=
    fi
done

${XSLTPROC} ../docs-common/packaging/get-all-workers.xsl \
    rpm-info.xml | sed 's/^ \+//g' | grep -v '^$' | cat -n
echo -n "Enter number for responsible contributor: "
read PERSON

ID=$(${XSLTPROC} --stringparam att "id" --param pos $PERSON	\
    ../docs-common/packaging/get-worker.xsl rpm-info.xml)
echo "Enter a one-line description of the change."
echo "To add extra details, edit rpm-info.xml afterward."
read DETAILS

${XSLTPROC} --stringparam role "$ROLE" \
    --stringparam number "$NUMBER" \
    --stringparam person "$ID" \
    --stringparam date "$REVDATE" \
    --stringparam detail "$DETAILS" \
    ../docs-common/packaging/insert-changelog.xsl rpm-info.xml | \
    ${XMLFORMAT}




More information about the Fedora-docs-commits mailing list