Blame Automation/Modules/Help/Texinfo/texinfo_deleteEntryManual.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# texinfo_deleteEntryManual.sh -- This function standardized manual
Alain Reguera Delgado 8f60cb
# deletion inside the working copy.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function texinfo_deleteEntryManual {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify existence of documentation entry before deleting it. We
Alain Reguera Delgado 8f60cb
    # cannot delete an entry which doesn't exist.
Alain Reguera Delgado 8f60cb
    cli_checkFiles "$MANUAL_ENTRY" -f
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Remove locale-specific documentation manual directory from the
Alain Reguera Delgado 8f60cb
    # working copy. Using subversion to register the change. Be sure
Alain Reguera Delgado 8f60cb
    # that related output files are removed too.
Alain Reguera Delgado 8f60cb
    cli_runFnEnvironment vcs --quiet --delete ${MANUAL_BASEDIR_L10N}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify manual base directory. When the locale-specific
Alain Reguera Delgado 8f60cb
    # documentation manual is the last one inside the manual base
Alain Reguera Delgado 8f60cb
    # directory, remove the manual base directory from the working
Alain Reguera Delgado 8f60cb
    # copy.  There is no need to have an empty manual base directories
Alain Reguera Delgado 8f60cb
    # inside the working copy.
Alain Reguera Delgado 8f60cb
    if [[ $(ls -1 $MANUAL_BASEDIR | wc -l) -le 1 ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Remove manual base directory.
Alain Reguera Delgado 8f60cb
        cli_runFnEnvironment vcs --delete ${MANUAL_BASEDIR}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Redefine absolute paths to changed directory.  This is
Alain Reguera Delgado 8f60cb
        # required in order for `(git|subversion)_commitRepoChanges'
Alain Reguera Delgado 8f60cb
        # to be aware that we are deleting MANUAL_BASEDIR, not
Alain Reguera Delgado 8f60cb
        # MANUAL_BASEDIR_L10N.
Alain Reguera Delgado 8f60cb
        MANUAL_CHANGED_DIRS="${MANUAL_BASEDIR}"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}