mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
allow to specify repo base with EGW_REPO_BASE enviroment variable, to fix Scrutinizer does not reliably detect it
This commit is contained in:
parent
9117136108
commit
2df2beb724
30
.mrconfig
30
.mrconfig
@ -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/:")
|
||||
|
||||
[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]
|
||||
checkout = svn checkout -q https://svn.code.sf.net/p/adldap/code/trunk/src Ads
|
||||
@ -40,63 +40,63 @@ order = 20
|
||||
###
|
||||
[activesync]
|
||||
# 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
|
||||
|
||||
[tracker]
|
||||
# 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]
|
||||
# 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]
|
||||
# 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]
|
||||
# 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]
|
||||
# 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!
|
||||
###
|
||||
#[phpgwapi]
|
||||
# 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]
|
||||
# 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]
|
||||
# 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]
|
||||
# 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 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]
|
||||
# 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]
|
||||
# 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]
|
||||
# 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
|
||||
|
||||
###
|
||||
|
Loading…
Reference in New Issue
Block a user