diracos / DIRACOS

Project for creating bundle of DIRAC dependencies.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DIRACOS

pipeline status

DIRACOS aims at bringing in one archive all the dependencies needed by DIRAC.

Note: summary generated with

# the pages are sorted thanks to the numbers in front
for doc in $(find docs -type f | sort -n );
do grep '^#' $doc | while read title;
   do
     # The text is the title, with an indentation level depending on the depth, with square brackets
     linkText=$(echo $title | sed -E -e 's/#{4}(.*)/      + [\1]/g' -e 's/#{3}(.*)/    + [\1]/g' -e 's/#{2}(.*)/  * [\1]/g' -e 's/#{1}(.*)/- [\1]/g')
     # The anchor is the title, all lowercase, without special char, with '-' instead of space
     anchor=$(echo $title | tr '[A-Z]' '[a-z]' |   sed -E -e 's/#+ +//g' -e 's/ /-/g');
     echo "$linkText($doc#$anchor)";
   done;
done

Disclaimer

DIRACOS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. We are aiming at supporting SLC6 and CC7, whilst we test also on other platforms we do not provide support for those.

About

Project for creating bundle of DIRAC dependencies.

License:GNU General Public License v3.0


Languages

Language:Python 96.8%Language:Shell 3.2%