Skip to content
Snippets Groups Projects
Commit 45ab1034 authored by Atlas-Software Librarian's avatar Atlas-Software Librarian Committed by Graeme Stewart
Browse files

'CMakeLists.txt' (Scripts-00-01-92)

	* Tagging Scripts-00-01-92.
	* cmt/completion/setup_completion.bash,
	share/lookup_local_joboptions.sh: Fix completion for references to
	files not in the current directory.

2016-02-26  scott snyder  <snyder@bnl.gov>

	* Tagging Scripts-00-01-91.
	* share/checkDbgSymbols.sh (filter): Ignore gtest libraries.

2016-01-28  Stewart Martin-Haugh  <smh@cern.ch>

	* Tagging Scripts-00-01-90.
	* cmt/requirements: remove unparsed comment for cmt2cmake

2015-10-20  scott snyder  <snyder@bnl.gov>

	* Tagging Scripts-00-01-89.
	ignore.
...
(Long ChangeLog diff - truncated)
parent 3930b2cc
No related branches found
No related tags found
No related merge requests found
################################################################################
# Package: Scripts
################################################################################
# Declare the package name:
atlas_subdir( Scripts )
# this line failed automatic conversion in cmt2cmake :
# setup_script $(SETUPCOMPLETIONROOT)/cmt/completion/setup_completion_main
# Install files from the package:
atlas_install_scripts( share/get_joboptions share/get_files share/lookup_local_joboptions.sh share/lookup_joboptions.sh share/lookup_scripts.sh share/lookup_xmls.sh share/lookup_data.sh share/checkDbgSymbols.sh )
athena_env( SET DO_EXT_ATHENA_TAB_COMPLETION 0
SET SETUPCOMPLETIONROOT \\\${SCRIPTSROOT} )
...@@ -94,7 +94,7 @@ if [ "${DO_EXT_ATHENA_TAB_COMPLETION:-}" = 1 ]; then ...@@ -94,7 +94,7 @@ if [ "${DO_EXT_ATHENA_TAB_COMPLETION:-}" = 1 ]; then
complete -C lookup_joboptions.sh -X '!&*' athena athena.py complete -C lookup_joboptions.sh -X '!&*' athena athena.py
else else
# echo "do only local completion for athena" # echo "do only local completion for athena"
complete -C lookup_local_joboptions.sh -X '!&*' athena athena.py complete -C lookup_local_joboptions.sh -X '!&*' -o dirnames athena athena.py
fi fi
complete -F f_get_txtjoboptions check_joboptions complete -F f_get_txtjoboptions check_joboptions
#complete -F f_get_pyjoboptions athena.py #complete -F f_get_pyjoboptions athena.py
......
...@@ -22,7 +22,6 @@ use AtlasPolicy AtlasPolicy-* ...@@ -22,7 +22,6 @@ use AtlasPolicy AtlasPolicy-*
apply_pattern declare_scripts files="get_joboptions get_files \ apply_pattern declare_scripts files="get_joboptions get_files \
lookup_local_joboptions.sh \ lookup_local_joboptions.sh \
lookup_joboptions.sh lookup_scripts.sh lookup_xmls.sh lookup_data.sh \ lookup_joboptions.sh lookup_scripts.sh lookup_xmls.sh lookup_data.sh \
# setup_completion.zsh setup_completion.tcsh setup_completion.bash \
checkDbgSymbols.sh" checkDbgSymbols.sh"
# Source the tab completion script for jobOptions and other files # Source the tab completion script for jobOptions and other files
......
...@@ -13,7 +13,7 @@ fi ...@@ -13,7 +13,7 @@ fi
# Ignore these libraries (regexp) # Ignore these libraries (regexp)
filter='HepMC|libfastjet|libCDFConesPlugin|libSISConePlugin|libsiscone|libulxmlrpcpp|libG4processes|libModelInteractions|libCascade_i|libMCTester_i| filter='HepMC|libfastjet|libCDFConesPlugin|libSISConePlugin|libsiscone|libulxmlrpcpp|libG4processes|libModelInteractions|libCascade_i|libMCTester_i|
|libColMan|libATLASConePlugin|libCMSIterativeConePlugin|libD0RunIIConePlugin|libEECambridgePlugin|libJadePlugin|libNestedDefsPlugin|libPxConePlugin|libTrackJetPlugin|libtbb' |libColMan|libATLASConePlugin|libCMSIterativeConePlugin|libD0RunIIConePlugin|libEECambridgePlugin|libJadePlugin|libNestedDefsPlugin|libPxConePlugin|libTrackJetPlugin|libtbb|libtcmalloc|libfftw3f|libprofiler|libgmock|libgtest'
ignored='' ignored=''
dbglibs='' dbglibs=''
......
find ${2}* -maxdepth 0 -name "*.py" -o -name "*.pyc" 2>/dev/null
f=`pwd`
if test -d ${f} ; then find ${f} -name '*.py' -o -name '*.pyc' | sed -e 's#'"${f}"'/##'; fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment