Skip to content

Commit

Permalink
Tnum-Tana version extract from ElVibRot
Browse files Browse the repository at this point in the history
  • Loading branch information
lauvergn committed Jan 31, 2023
0 parents commit acd3b2a
Show file tree
Hide file tree
Showing 113 changed files with 73,092 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store */.DS_Store */*/.DS_Store
obj/*
*.exe
*.a
*.log
res
TESTS/*log
TESTS/res*
TESTS/Xres*
TESTS/err*
TESTS/freq.xyz
6 changes: 6 additions & 0 deletions Ext_Lib/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
AD_dnSVM*
QDUtil*
FOR_EVRT*
QuantumModelLib*
ConstPhys*

Binary file added Ext_Lib/Save_AD_dnSVM_devloc.zip
Binary file not shown.
Binary file added Ext_Lib/Save_ConstPhys_devloc.zip
Binary file not shown.
Binary file added Ext_Lib/Save_FOR_EVRT_devloc.zip
Binary file not shown.
Binary file added Ext_Lib/Save_QDUtilLib_devloc.zip
Binary file not shown.
Binary file added Ext_Lib/Save_QuantumModelLib_devloc.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions Ext_Lib/cleanlib
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rm -rf QDUtilLib*
rm -rf AD_dnSVM*
rm -rf QuantumModelLib*
36 changes: 36 additions & 0 deletions Ext_Lib/get_AD_dnSVM.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/bash

EXTLIB_TYPE=$1

BaseName=AD_dnSVM

echo "In get_"$BaseName".sh"


SAVE_version="Save_"$BaseName"_devloc"
LOC_version=$BaseName


rm -rf $BaseName* #always remove the link


#latest release
#latest HEAD version (dev version)
version=https://github.com/lauvergn/AD_dnSVM/archive/refs/tags/v3.4-dev.zip


test -z $EXTLIB_TYPE && curl -LJ $version --output $LOC_version.zip
test $EXTLIB_TYPE != 'loc' && curl -LJ $version --output $LOC_version.zip

test -e $LOC_version.zip && echo $LOC_version.zip file exist || cp $SAVE_version.zip $LOC_version.zip

unzip $LOC_version.zip
rm -f $LOC_version.zip


LIBDIR=`ls -d $BaseName*`
#echo $LIBDIR

ln -s $LIBDIR $LOC_version

echo "End get_"$BaseName".sh"
32 changes: 32 additions & 0 deletions Ext_Lib/get_ConstPhys.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash

EXTLIB_TYPE=$1
BaseName=ConstPhys

echo "In get_"$BaseName".sh"


SAVE_version="Save_"$BaseName"_devloc"
LOC_version=$BaseName


rm -rf $BaseName* #always remove the link

#latest HEAD version
#tag version
version=https://github.com/lauvergn/ConstPhys/archive/refs/tags/v0.0.zip

test -z $EXTLIB_TYPE && curl -LJ $version --output $LOC_version.zip
test $EXTLIB_TYPE != 'loc' && curl -LJ $version --output $LOC_version.zip

test -e $LOC_version.zip && echo $LOC_version.zip file exist || cp $SAVE_version.zip $LOC_version.zip

unzip $LOC_version.zip
rm -f $LOC_version.zip

LIBDIR=`ls -d $BaseName*`
#echo $LIBDIR

ln -s $LIBDIR $LOC_version

echo "End get_"$BaseName".sh"
30 changes: 30 additions & 0 deletions Ext_Lib/get_FOR_EVRT.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#!/bin/bash
# modif 31/01/2023

EXTLIB_TYPE=$1
BaseName=FOR_EVRT

echo "In get_"$BaseName".sh"


SAVE_version="Save_"$BaseName"_devloc"
LOC_version=$BaseName


rm -rf $BaseName* #always remove the link


#test -z $EXTLIB_TYPE && curl -LJ $version --output $LOC_version.zip
#test $EXTLIB_TYPE != 'loc' && curl -LJ $version --output $LOC_version.zip

test -e $LOC_version.zip && echo $LOC_version.zip file exist || cp $SAVE_version.zip $LOC_version.zip

unzip $LOC_version.zip
rm -f $LOC_version.zip

LIBDIR=`ls -d $BaseName*`
#echo $LIBDIR

ln -s $LIBDIR $LOC_version

echo "End get_"$BaseName".sh"
36 changes: 36 additions & 0 deletions Ext_Lib/get_QDUtilLib.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#!/bin/bash

EXTLIB_TYPE=$1
BaseName=QDUtilLib

echo "In get_"$BaseName".sh"


SAVE_version="Save_"$BaseName"_devloc"
LOC_version=$BaseName


rm -rf $BaseName* #always remove the link


#latest release
version=https://github.com/lauvergn/QDUtilLib/archive/refs/tags/v0.10-dev.zip
#latest HEAD version
#version=https://github.com/lauvergn/QDUtilLib/archive/refs/heads/main.zip

test -z $EXTLIB_TYPE && curl -LJ $version --output $LOC_version.zip
test $EXTLIB_TYPE != 'loc' && curl -LJ $version --output $LOC_version.zip

test -e $LOC_version.zip && echo $LOC_version.zip file exist || cp $SAVE_version.zip $LOC_version.zip

unzip $LOC_version.zip
rm -f $LOC_version.zip

#LIBDIR=`ls -d QDUtilLib*`

LIBDIR=`ls -d $BaseName*`
#echo $LIBDIR

ln -s $LIBDIR $LOC_version

echo "End get_"$BaseName".sh"
38 changes: 38 additions & 0 deletions Ext_Lib/get_QML.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash

EXTLIB_TYPE=$1
BaseName=QuantumModelLib

echo "In get_"$BaseName".sh"


SAVE_version="Save_"$BaseName"_devloc"
LOC_version=$BaseName


rm -rf $BaseName* #always remove the link


#latest release
#latest HEAD version (dev version)
version=https://github.com/lauvergn/QuantumModelLib/archive/refs/tags/v20.2-dev.zip


test -z $EXTLIB_TYPE && curl -LJ $version --output $LOC_version.zip
test $EXTLIB_TYPE != 'loc' && curl -LJ $version --output $LOC_version.zip

test -e $LOC_version.zip && echo $LOC_version.zip file exist || cp $SAVE_version.zip $LOC_version.zip

unzip $LOC_version.zip
rm -f $LOC_version.zip



#LIBDIR=`ls -d QuantumModelLib*`

LIBDIR=`ls -d $BaseName*`
#echo $LIBDIR

ln -s $LIBDIR $LOC_version

echo "End get_"$BaseName".sh"
196 changes: 196 additions & 0 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit acd3b2a

Please sign in to comment.