allow to specify repo base with EGW_REPO_BASE enviroment variable, to fix Scrutinizer does not reliably detect it

This commit is contained in:
Ralf Becker 2016-06-04 13:29:24 +02:00
parent 9117136108
commit 2df2beb724

View File

@ -13,7 +13,7 @@ svn_tag = svn cp --parents -m "$2" $(svn info|grep ^URL|cut -f 2 -d ' ') $(svn i
svn_untag = svn rm -m "remove tag" $(svn info|grep ^URL|cut -f 2 -d ' '|sed -E "s:/(branches/[0-9.]+|trunk)/.*$:/tags/$1/:") svn_untag = svn rm -m "remove tag" $(svn info|grep ^URL|cut -f 2 -d ' '|sed -E "s:/(branches/[0-9.]+|trunk)/.*$:/tags/$1/:")
[api/src/Db/ADOdb] [api/src/Db/ADOdb]
checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/ADOdb.git checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/ADOdb.git
[api/src/Accounts/Ads] [api/src/Accounts/Ads]
checkout = svn checkout -q https://svn.code.sf.net/p/adldap/code/trunk/src Ads checkout = svn checkout -q https://svn.code.sf.net/p/adldap/code/trunk/src Ads
@ -40,63 +40,63 @@ order = 20
### ###
[activesync] [activesync]
# synchronise mobile phone via Z-Push and ActiveSync protocoll # synchronise mobile phone via Z-Push and ActiveSync protocoll
checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/activesync.git checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/activesync.git
chain = true chain = true
[tracker] [tracker]
# tracking or helpdesk application # tracking or helpdesk application
checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/tracker.git checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/tracker.git
[projectmanager] [projectmanager]
# projectmanagement and Ganttcharts # projectmanagement and Ganttcharts
checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/projectmanager.git checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/projectmanager.git
#[bookmarks] #[bookmarks]
# record and share bookmarks # record and share bookmarks
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/bookmarks.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/bookmarks.git
#[news_admin] #[news_admin]
# publish and agregate RSS or ATOM feeds # publish and agregate RSS or ATOM feeds
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/news_admin.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/news_admin.git
#[registration] #[registration]
# allows (after configuration!) to selfregister accounts and recover lost passwords # allows (after configuration!) to selfregister accounts and recover lost passwords
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/registration.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/registration.git
### ###
### Older apps requiring to install phpgwapi and etemplate! ### Older apps requiring to install phpgwapi and etemplate!
### ###
#[phpgwapi] #[phpgwapi]
# old api used by non 16.1 apps # old api used by non 16.1 apps
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/phpgwapi.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/phpgwapi.git
#[jdots] #[jdots]
# alternative "Stylite" template set # alternative "Stylite" template set
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/jdots.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/jdots.git
#[etemplate] #[etemplate]
# old templating system superseeded by eTemplate2 in 16.1+ api # old templating system superseeded by eTemplate2 in 16.1+ api
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/etemplate.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/etemplate.git
#[phpbrain] #[phpbrain]
# knowledge base # knowledge base
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/phpbrain.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/phpbrain.git
#[wiki] #[wiki]
# wiki application # wiki application
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/wiki.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/wiki.git
#[sambaadmin] #[sambaadmin]
# keeps passwords in sync with Samba3 using same LDAP as EGroupware (for Samba4 use Active Directory) # keeps passwords in sync with Samba3 using same LDAP as EGroupware (for Samba4 use Active Directory)
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/sambaadmin.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/sambaadmin.git
#[sitemgr] #[sitemgr]
# content managment application # content managment application
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/sitemgr.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/sitemgr.git
#[phpfreechat] #[phpfreechat]
# chat application # chat application
#checkout = git clone $(git config --get remote.origin.url|sed 's|/egroupware.git||')/phpfreechat.git #checkout = git clone ${EGW_REPO_BASE:-$(git config --get remote.origin.url|sed 's|/egroupware.git||')}/phpfreechat.git
#chain = true #chain = true
### ###