You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
#!/bin/bash
|
|
|
|
# Delete symlinks in the pEpPythonAdapter (to allow "project search")
|
|
function pEpPythonAdapterRmSymlinks() {
|
|
for i in $(find . -type l | grep -i lib); do { rm -v $i; }; done
|
|
}
|
|
|
|
# pEp Fresh Repo Clones
|
|
export PEP_LOCAL_CONF_DIR=$HOME/src/adapter/conf/
|
|
|
|
function clone_pEpEngine() {
|
|
git clone https://gitea.pep.foundation/pEp.foundation/pEpEngine.git .
|
|
cp $PEP_LOCAL_CONF_DIR/local.conf.pEpEngine local.conf
|
|
cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.pEpEngine .idea
|
|
}
|
|
|
|
function clone_pEpEngineHeck() {
|
|
git clone https://gitea.pep.foundation/heck/pEpEngine .
|
|
cp $PEP_LOCAL_CONF_DIR/local.conf.pEpEngine local.conf
|
|
cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.pEpEngine .idea
|
|
}
|
|
|
|
function clone_pEpPythonAdapter() {
|
|
git clone https://gitea.pep.foundation/pEp.foundation/pEpPythonAdapter.git .
|
|
cp $PEP_LOCAL_CONF_DIR/local.conf.pEpPythonAdapter local.conf
|
|
cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.pEpPythonAdapter .idea
|
|
}
|
|
|
|
function clone_pEpJNIAdapter() {
|
|
git clone https://gitea.pep.foundation/pEp.foundation/pEpJNIAdapter.git .
|
|
cp $PEP_LOCAL_CONF_DIR/local.conf.pEpJNIAdapter local.conf
|
|
cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.pEpJNIAdapter .idea
|
|
cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.pEpJNIAdapter .idea
|
|
}
|
|
|
|
function clone_libpEpAdapter() {
|
|
git clone https://gitea.pep.foundation/pEp.foundation/libpEpAdapter.git .
|
|
cp $PEP_LOCAL_CONF_DIR/local.conf.libpEpAdapter local.conf
|
|
cp -r $PEP_LOCAL_CONF_DIR/intellij/.idea.libpEpAdapter .idea
|
|
}
|
|
|
|
function clone_devWiki() {
|
|
git clone ssh://wiki/var/lib/gitit/wikidata .
|
|
}
|
|
|
|
alias test_pEpPythonAdapter='python3 -c "import pEp;"'
|
|
|