-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove svn dependencies: change variables, different tool for changel…
…og, load external extensions repository, use fifferent version numbering #3
- Loading branch information
1 parent
e082823
commit 804dd57
Showing
7 changed files
with
48 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
extensions | ||
local_www |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# Root dir of the SVN checkout. All dirs are derived from this one | ||
if [ -z "$SVN_DIR" ]; then | ||
SVN_DIR=$(dirname $(dirname $(dirname $(readlink -fen $0)))) | ||
if [ -z "$GIT_DIR" ]; then | ||
GIT_DIR=$(dirname $(dirname $(readlink -fen $0))) | ||
fi | ||
|
||
|
||
# Installation prefix -- documentation goes to $INSTALL_BASE/doc, | ||
# binaries go to $INSTALL_BASE/exec, | ||
# libraries go to $INSTALL_BASE/lib, | ||
# extensions to $INSTALL_BASE/share | ||
INSTALL_BASE=${SVN_DIR}/local_install | ||
INSTALL_BASE=${GIT_DIR}/local_install | ||
|
||
# Local (source) web tree | ||
WWW=${SVN_DIR}/local_www | ||
WWW=${GIT_DIR}/local_www | ||
export TREDWWW=$WWW | ||
|
||
# Remote web tree (of the testbed) | ||
|
@@ -24,12 +24,13 @@ REMOTE_WWW=${TESTING_SERVER}:/var/www/tred/testbed | |
# The selected user should log there without password (by certificate) | ||
LOGIN_NAME=tred | ||
|
||
PYTHON_ENV=${GIT_DIR}/virtualenv | ||
|
||
# TrEd project direcotry (from which Makefile is executed) | ||
PROJECT_DIR=${SVN_DIR}/trunk | ||
PROJECT_DIR=${GIT_DIR} | ||
|
||
# Log for svn checkouts and exports during make | ||
LOG=$SVN_DIR/trunk/make_log | ||
LOG=$GIT_DIR/make_log | ||
|
||
TRED_HOME_URL="http://ufallab.ms.mff.cuni.cz:24080/tred/testbed" | ||
TRED_EXTENSIONS_URL="" | ||
|
@@ -68,6 +69,10 @@ TRED_SVN_EXT=${TRED_SVN}/extensions | |
TREEX_PML_REPO=https://svn.ms.mff.cuni.cz/svn/perl_libs/trunk/distribution/Treex-PML | ||
WIN32_DIST_REPO=https://svn.ms.mff.cuni.cz/svn/perl_libs/trunk/distribution/win32_build_script | ||
|
||
[email protected]:ufal/TrEd-extensions.git | ||
# https://github.com/ufal/TrEd-extensions.git | ||
|
||
|
||
# PROJECT_DIR=/net/work/projects/tred | ||
ADMIN_DIR=${PROJECT_DIR}/admin | ||
DIST_DIR=${PROJECT_DIR}/dist | ||
|
@@ -91,6 +96,8 @@ LRC_CMD=${ADMIN_DIR}/run_on_lrc | |
|
||
# SVN to ChangeLog conversion | ||
SVN_TO_CHANGELOG=${ADMIN_DIR}/svn2cl/svn2cl.sh | ||
# GIT to ChangeLog conversion | ||
GIT_TO_CHANGELOG=${PYTHON_ENV}/bin/git-changelog | ||
# ChangeLog to RSS conversion | ||
CHANGELOG_TO_RSS=${ADMIN_DIR}/changelog2rss.pl | ||
|
||
|
@@ -104,4 +111,4 @@ CHANGELOG_TO_RSS=${ADMIN_DIR}/changelog2rss.pl | |
[email protected] | ||
MAC_TRED_INSTALLATION='~/tred_installation' | ||
MAC_TRED_INSTALLATION_OLD='~/tred_installation_old' | ||
MAC_SVN_DIR='~/TrEd' | ||
MAC_GIT_DIR='~/TrEd' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters