svn commit: r351893 - in head/devel: . git-modes
Dmitry Marakasov
amdmi3 at FreeBSD.org
Wed Apr 23 00:57:12 UTC 2014
Author: amdmi3
Date: Wed Apr 23 00:57:10 2014
New Revision: 351893
URL: http://svnweb.freebsd.org/changeset/ports/351893
QAT: https://qat.redports.org/buildarchive/r351893/
Log:
GNU Emacs modes for Git-related files.
* git-commit-mode - A major mode for editing Git commit messages
according to the guidelines by Tim Pope.
* git-rebase-mode - A major mode for git-rebase-todo files created by
git rebase -i
* gitconfig-mode - A 'conf-mode'-derived major mode for editing
.gitconfig files.
* gitignore-mode - A 'conf-mode'-derived major mode for editing
.gitignore files.
* gitattributes-mode - A major mode for editing .gitattributes files.
WWW: https://github.com/magit/git-modes
PR: 187781
Submitted by: Yasuhiro KIMURA <yasu at utahime.org>
Added:
head/devel/git-modes/
head/devel/git-modes/Makefile (contents, props changed)
head/devel/git-modes/distinfo (contents, props changed)
head/devel/git-modes/pkg-descr (contents, props changed)
head/devel/git-modes/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Wed Apr 23 00:46:23 2014 (r351892)
+++ head/devel/Makefile Wed Apr 23 00:57:10 2014 (r351893)
@@ -548,6 +548,7 @@
SUBDIR += gio-sharp
SUBDIR += git
SUBDIR += git-merge-changelog
+ SUBDIR += git-modes
SUBDIR += git-review
SUBDIR += git-subversion
SUBDIR += gitg
Added: head/devel/git-modes/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/git-modes/Makefile Wed Apr 23 00:57:10 2014 (r351893)
@@ -0,0 +1,37 @@
+# Created by: KIMURA Yasuhiro <yasu at utahime.org>
+# $FreeBSD$
+
+PORTNAME= git-modes
+PORTVERSION= 20140314
+CATEGORIES= devel elisp
+PKGNAMESUFFIX= -${EMACS_PORT_NAME}
+
+MAINTAINER= yasu at utahime.org
+COMMENT= GNU Emacs modes for Git-related files
+
+LICENSE= GPLv3
+
+RUN_DEPENDS= git>0:${PORTSDIR}/devel/git
+
+USE_GITHUB= yes
+GH_ACCOUNT= magit
+GH_TAGNAME= ${GH_COMMIT}
+GH_COMMIT= 42e989c
+
+USES= gmake
+USE_EMACS= yes
+PORTDOCS= CONTRIBUTING.md README.md
+
+ALL_TARGET= lisp
+
+OPTIONS_DEFINE= DOCS
+
+ELISPDIR= ${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
+PLIST_SUB= ELISPDIR=${ELISPDIR}
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/${ELISPDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc ${STAGEDIR}${PREFIX}/${ELISPDIR}
+ ${INSTALL_MAN} ${WRKSRC}/CONTRIBUTING.md ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
Added: head/devel/git-modes/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/git-modes/distinfo Wed Apr 23 00:57:10 2014 (r351893)
@@ -0,0 +1,2 @@
+SHA256 (git-modes-20140314.tar.gz) = 809c31b6346f76abf74dd072cdf2e2306d2d2bcb3c687e7471e88c35bc63f774
+SIZE (git-modes-20140314.tar.gz) = 28576
Added: head/devel/git-modes/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/git-modes/pkg-descr Wed Apr 23 00:57:10 2014 (r351893)
@@ -0,0 +1,13 @@
+GNU Emacs modes for Git-related files.
+
+* git-commit-mode - A major mode for editing Git commit messages
+ according to the guidelines by Tim Pope.
+* git-rebase-mode - A major mode for git-rebase-todo files created by
+ git rebase -i
+* gitconfig-mode - A 'conf-mode'-derived major mode for editing
+ .gitconfig files.
+* gitignore-mode - A 'conf-mode'-derived major mode for editing
+ .gitignore files.
+* gitattributes-mode - A major mode for editing .gitattributes files.
+
+WWW: https://github.com/magit/git-modes
Added: head/devel/git-modes/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/git-modes/pkg-plist Wed Apr 23 00:57:10 2014 (r351893)
@@ -0,0 +1,11 @@
+%%ELISPDIR%%/git-commit-mode.el
+%%ELISPDIR%%/git-commit-mode.elc
+%%ELISPDIR%%/git-rebase-mode.el
+%%ELISPDIR%%/git-rebase-mode.elc
+%%ELISPDIR%%/gitattributes-mode.el
+%%ELISPDIR%%/gitattributes-mode.elc
+%%ELISPDIR%%/gitconfig-mode.el
+%%ELISPDIR%%/gitconfig-mode.elc
+%%ELISPDIR%%/gitignore-mode.el
+%%ELISPDIR%%/gitignore-mode.elc
+ at dirrm %%ELISPDIR%%
More information about the svn-ports-all
mailing list