Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Andraž Levstik (60c17a39e1f166fd50ba4b33e806d7f16af49364)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Andraž Levstik <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Andraž Levstik (60c17a39e1f166fd50ba4b33e806d7f16af49364)
  • Date: Thu, 8 Dec 2011 01:33:38 -0600

GIT changes to master grimoire by Andraž Levstik
<ruskie+2054d253 AT codemages.net>:

http/vimprobable/DETAILS | 11 +++++------
http/vimprobable/HISTORY | 5 +++++
http/vimprobable/PREPARE | 10 +++++-----
http/vimprobable/PRE_BUILD | 15 +++++++++++----
4 files changed, 26 insertions(+), 15 deletions(-)

New commits:
commit 60c17a39e1f166fd50ba4b33e806d7f16af49364
Author: Andraž Levstik <ruskie+2054d253 AT codemages.net>
Commit: Andraž Levstik <ruskie+2054d253 AT codemages.net>

vimprobable: update to 0.9.11.2, some other changes

diff --git a/http/vimprobable/DETAILS b/http/vimprobable/DETAILS
index 2d9626f..fad9f88 100755
--- a/http/vimprobable/DETAILS
+++ b/http/vimprobable/DETAILS
@@ -1,10 +1,9 @@
SPELL=vimprobable
- VERSION=0.9.9.0
- SOURCE="${SPELL}-scm.tar.bz2"
- SOURCE_URL[0]=git_http://${SPELL}.org/${SPELL}.git:${SPELL}-scm:${SPELL}2
- SOURCE_IGNORE=volatile
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-scm"
- FORCE_DOWNLOAD=ON
+ VERSION=0.9.11.2
+ SOURCE="${SPELL}2_${VERSION}.tar.bz2"
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:d01fd00cc26b32aa405a60d2973bd318ce70d7a4c90cf85fa42266fd12b954430f8b32017dd0349027af4b22e365f9017c40b02496c23f2a4ffd5d00aca609a9
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}2"
WEB_SITE="http://www.vimprobable.org/";
LICENSE[0]="BSD"
ENTERED=20110124
diff --git a/http/vimprobable/HISTORY b/http/vimprobable/HISTORY
index d0b0dd8..0d094b6 100644
--- a/http/vimprobable/HISTORY
+++ b/http/vimprobable/HISTORY
@@ -1,3 +1,8 @@
+2011-12-08 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
+ * DETAILS: update to 0.9.11.2
+ * PREPARE: modified the question a bit
+ * PRE_BUILD: now supports custom config.h and keymap.h
+
2011-06-20 Andraž "ruskie" Levstik <ruskie+f03a580f AT codemages.net>
* DETAILS, PREPARE: update to 0.9.9.0

diff --git a/http/vimprobable/PREPARE b/http/vimprobable/PREPARE
index b2fa56f..d9db346 100755
--- a/http/vimprobable/PREPARE
+++ b/http/vimprobable/PREPARE
@@ -1,6 +1,6 @@
-config_query VIMPROBABLE_OWN_CONFIGH \
- "Do you wish to use your own config.h file" n &&
-if [[ $VIMPROBABLE_OWN_CONFIGH == y ]]; then
-config_query_string VIMPROBABLE_CONFIGH \
- "Enter the full path/filename to your own vimprobable config.h
if you have one(example /home/user/vimprobable-config.h): "
+config_query VIMPROBABLE_OWN_HPATH \
+ "Do you wish to use your own config.h and similar files" n &&
+if [[ $VIMPROBABLE_OWN_HPATH == y ]]; then
+config_query_string VIMPROBABLE_HPATH \
+ "Enter the full path/ of where you have the .h files(keymap.h
and/or config.h): "
fi
diff --git a/http/vimprobable/PRE_BUILD b/http/vimprobable/PRE_BUILD
index 404f1ab..af21908 100755
--- a/http/vimprobable/PRE_BUILD
+++ b/http/vimprobable/PRE_BUILD
@@ -1,12 +1,19 @@
default_pre_build &&
cd $SOURCE_DIRECTORY &&
-if [[ $VIMPROBABLE_OWN_CONFIGH == y ]]; then
+if [[ $VIMPROBABLE_OWN_HPATH == y ]]; then
# check if the config file actually exists before attempting to copy it in
# do not break if it isn't there
-if [[ -e $VIMPROBABLE_CONFIGH ]]; then
+if [[ -e $VIMPROBABLE_HPATH/config.h ]]; then
message "File exists copying..."
-cp -v $VIMPROBABLE_CONFIGH $SOURCE_DIRECTORY/config.h
+cp -v $VIMPROBABLE_HPATH/config.h $SOURCE_DIRECTORY/config.h
else
-message "File ${QUERY_COLOR}${VIMPROBABLE_CONFIGH}${DEFAULT_COLOR} does not
exist..."
+message "File ${QUERY_COLOR}${VIMPROBABLE_HPATH/config.h}${DEFAULT_COLOR}
does not exist..."
+fi &&
+
+if [[ -e $VIMPROBABLE_HPATH/keymap.h ]]; then
+message "File exists copying..."
+cp -v $VIMPROBABLE_HPATH/keymap.h $SOURCE_DIRECTORY/keymap.h
+else
+message "File ${QUERY_COLOR}${VIMPROBABLE_HPATH/keymap.h}${DEFAULT_COLOR}
does not exist..."
fi
fi



  • [SM-Commit] GIT changes to master grimoire by Andraž Levstik (60c17a39e1f166fd50ba4b33e806d7f16af49364), Andraž Levstik, 12/08/2011

Archive powered by MHonArc 2.6.24.

Top of Page