summaryrefslogtreecommitdiffstats
path: root/pki/base/scripts
diff options
context:
space:
mode:
authormharmsen <mharmsen@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2011-07-13 22:30:41 +0000
committermharmsen <mharmsen@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2011-07-13 22:30:41 +0000
commit7db47ec57c27ea82aaff61922040007f205a06cc (patch)
treef42fdf8f1522ab9edece4f1d268a5a9247eb4ef8 /pki/base/scripts
parent6b523d3f3b48ba0ad1f32b746412719710fbd352 (diff)
downloadpki-7db47ec57c27ea82aaff61922040007f205a06cc.tar.gz
pki-7db47ec57c27ea82aaff61922040007f205a06cc.tar.xz
pki-7db47ec57c27ea82aaff61922040007f205a06cc.zip
Bugzilla Bug #669226 - Remove Legacy Build System (Ant + Autoconf --> CMake)
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@2057 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/base/scripts')
-rw-r--r--pki/base/scripts/base_svn_external_properties_db9
-rwxr-xr-xpki/base/scripts/set_base_SVN_external_properties48
2 files changed, 0 insertions, 57 deletions
diff --git a/pki/base/scripts/base_svn_external_properties_db b/pki/base/scripts/base_svn_external_properties_db
deleted file mode 100644
index 57be5376a..000000000
--- a/pki/base/scripts/base_svn_external_properties_db
+++ /dev/null
@@ -1,9 +0,0 @@
-###############################################################################
-# Since the 'svn.fedorahosted.org' repository uses a different URL prefix to #
-# distinguish between read-only (http) and read-write (svn+ssh) check-outs, #
-# ALL external SVN properties that refer to this repository MUST now be #
-# read-only, which means that ALL changes which refer to this repository #
-# that need to be saved MUST be applied to the top-level directory referred #
-# to by each external SVN property (i.e. - 'pki/base/config'). #
-###############################################################################
-config http://svn.fedorahosted.org/svn/pki/trunk/pki/base/config
diff --git a/pki/base/scripts/set_base_SVN_external_properties b/pki/base/scripts/set_base_SVN_external_properties
deleted file mode 100755
index c08adf90a..000000000
--- a/pki/base/scripts/set_base_SVN_external_properties
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/bash
-# BEGIN COPYRIGHT BLOCK
-# (C) 2008 Red Hat, Inc.
-# All rights reserved.
-# END COPYRIGHT BLOCK
-
-# Always switch into this base directory
-# prior to script execution so that all
-# of its output is written to this directory
-cd `dirname $0`
-
-# Retrieve the name of this base directory
-PKI_PWD=`pwd`
-
-# Name and location of the SVN external properties DB.
-SVN_EXTERNAL_PROPERTIES_DB_LOCATION="${PKI_PWD}"
-SVN_EXTERNAL_PROPERTIES_DB_NAME="base_svn_external_properties_db"
-SVN_EXTERNAL_PROPERTIES_DB="${SVN_EXTERNAL_PROPERTIES_DB_LOCATION}/${SVN_EXTERNAL_PROPERTIES_DB_NAME}"
-
-# Always make sure that the SVN external properties DB exists.
-if [ ! -f ${SVN_EXTERNAL_PROPERTIES_DB} ]; then
- printf "The SVN external properties DB called '${SVN_EXTERNAL_PROPERTIES_DB}' does NOT exist!\n"
- exit 255;
-fi
-
-# Specify the location and a list of the SVN components that
-# require these SVN external properties to be updated.
-SVN_COMPONENTS_LOCATION="${PKI_PWD}/.."
-SVN_COMPONENTS="ca common console java-tools kra manage migrate native-tools ocsp osutil ra setup selinux silent symkey tks tps util"
-
-# Change directory to the location of all of these components,
-# and execute the defined SVN external property changes.
-cd ${SVN_COMPONENTS_LOCATION}
-for SVN_COMPONENT in ${SVN_COMPONENTS} ; do
- if [ -d "${SVN_COMPONENTS_LOCATION}/${SVN_COMPONENT}" ]; then
- printf "Setting external SVN properties for the component called '${SVN_COMPONENT}' . . .\n"
- cd "${SVN_COMPONENT}"
- svn propset svn:externals -F "${SVN_EXTERNAL_PROPERTIES_DB}" .
- svn propget svn:externals .
- svn update
- cd ..
- else
- printf "The component called '${SVN_COMPONENTS_LOCATION}/${SVN_COMPONENT}' does NOT exist!\n"
- fi
-done
-
-exit 0;
-