Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (b2044c63059b684b47ed0213aa2232d2bc299f9a)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (b2044c63059b684b47ed0213aa2232d2bc299f9a)
  • Date: Sun, 23 Mar 2008 15:09:44 -0500

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

devel/git/DEPENDS | 12 +++++++++++-
devel/git/DETAILS | 2 +-
devel/git/HISTORY | 8 ++++++++
devel/git/INSTALL | 15 ++++++++++++++-
4 files changed, 34 insertions(+), 3 deletions(-)

New commits:
commit b2044c63059b684b47ed0213aa2232d2bc299f9a
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

git: Optionally depend on vim and install syntax highlighting if so

commit 72e6b10ee9a5a211a0da3f8b2299890fc6559f34
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

git: Optionally depend on bash-completion and install script if so

commit b8d839ad4972832cbe00b5463e2336d1301e779b
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

git: Updated to 1.5.5.rc1

diff --git a/devel/git/DEPENDS b/devel/git/DEPENDS
index 1f1d930..1ebb241 100755
--- a/devel/git/DEPENDS
+++ b/devel/git/DEPENDS
@@ -10,6 +10,11 @@ if [[ "$GIT_SVN" == "y" ]]; then
depends uri
fi &&

+optional_depends bash-completion \
+ '' \
+ '' \
+ 'for bash completion of Git commands' &&
+
optional_depends curl \
'--with-curl' \
'--without-curl' \
@@ -51,4 +56,9 @@ optional_depends tk
\
if is_depends_enabled $SPELL perl
then
depends perl-error
-fi
+fi &&
+
+optional_depends vim \
+ '' \
+ '' \
+ 'for Git commit message syntax highlighting'
diff --git a/devel/git/DETAILS b/devel/git/DETAILS
index 85cbe88..4c4e849 100755
--- a/devel/git/DETAILS
+++ b/devel/git/DETAILS
@@ -1,5 +1,5 @@
SPELL=git
- VERSION=1.5.4.4
+ VERSION=1.5.5.rc1
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE2=$SOURCE.sign
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/devel/git/HISTORY b/devel/git/HISTORY
index b859a02..d5feb12 100644
--- a/devel/git/HISTORY
+++ b/devel/git/HISTORY
@@ -1,3 +1,11 @@
+2008-03-23 Eric Sandall <sandalle AT sourcemage.org>
+ * DETAILS: Updated to 1.5.5.rc1
+ * DEPENDS: Optionally depend on bash-completion
+ Optionally depend on vim for syntax highlighting
+ * INSTALL: If depending on bash-completion, install bash-completion
+ script
+ If depending on vim, install git commit syntax highlighting for vim
+
2008-03-10 George Sherwood <george AT beernabeer.com>
* DETAILS: Updated to version 1.5.4.4

diff --git a/devel/git/INSTALL b/devel/git/INSTALL
index 6230496..2554243 100755
--- a/devel/git/INSTALL
+++ b/devel/git/INSTALL
@@ -24,4 +24,17 @@ case $GIT_DOC in
git_install_manpages &&
git_install_htmldocs
;;
-esac
+esac &&
+
+if is_depends_enabled $SPELL bash-completion
+then
+ cp $SOURCE_DIRECTORY/contrib/completion/git-completion.bash \
+ $INSTALL_ROOT/etc/bash_completion.d/git-completion
+fi &&
+
+if is_depends_enabled $SPELL vim
+then
+ VIM_VERSION=$(installed_version vim)
+ cp $SOURCE_DIRECTORY/contrib/vim/syntax/gitcommit.vim \
+ $INSTALL_ROOT/usr/share/vim/vim${VIM_VERSION/./}/syntax
+fi



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (b2044c63059b684b47ed0213aa2232d2bc299f9a), Eric Sandall, 03/23/2008

Archive powered by MHonArc 2.6.24.

Top of Page