From owner-svn-ports-all@freebsd.org Thu Feb 4 19:10:59 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1AA86A9C4ED; Thu, 4 Feb 2016 19:10:59 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E9BCE18AA; Thu, 4 Feb 2016 19:10:58 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u14JAvRR087782; Thu, 4 Feb 2016 19:10:57 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u14JAvXR087778; Thu, 4 Feb 2016 19:10:57 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201602041910.u14JAvXR087778@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 4 Feb 2016 19:10:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408080 - in head/editors: . with-editor X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Feb 2016 19:10:59 -0000 Author: pi Date: Thu Feb 4 19:10:57 2016 New Revision: 408080 URL: https://svnweb.freebsd.org/changeset/ports/408080 Log: New port: editors/with-editor The library with-editor makes it easy to use the Emacsclient as the $EDITOR of child processes, making sure they know how to call home. For remote processes a substitute is provided, which communicates with Emacs on standard output instead of using a socket as the Emacsclient does. WWW: https://github.com/magit/with-editor PR: 206767 Submitted by: Yasuhiro KIMURA Added: head/editors/with-editor/ head/editors/with-editor/Makefile (contents, props changed) head/editors/with-editor/distinfo (contents, props changed) head/editors/with-editor/pkg-descr (contents, props changed) Modified: head/editors/Makefile Modified: head/editors/Makefile ============================================================================== --- head/editors/Makefile Thu Feb 4 18:56:27 2016 (r408079) +++ head/editors/Makefile Thu Feb 4 19:10:57 2016 (r408080) @@ -255,6 +255,7 @@ SUBDIR += vim SUBDIR += vim-lite SUBDIR += winefish + SUBDIR += with-editor SUBDIR += wordgrinder SUBDIR += xcoral SUBDIR += xed Added: head/editors/with-editor/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/with-editor/Makefile Thu Feb 4 19:10:57 2016 (r408080) @@ -0,0 +1,40 @@ +# Created by: KIMURA Yasuhiro +# $FreeBSD$ + +PORTNAME= with-editor +PORTVERSION= 2.5.0 +DISTVERSIONPREFIX= v +CATEGORIES= editors elisp +PKGNAMESUFFIX= -${EMACS_PORT_NAME} + +MAINTAINER= yasu@utahime.org +COMMENT= Use the Emacsclient as the $EDITOR of child processes + +LICENSE= GPLv3 + +BUILD_DEPENDS= dash.el>0:${PORTSDIR}/devel/dash.el +RUN_DEPENDS= dash.el>0:${PORTSDIR}/devel/dash.el + +USE_GITHUB= yes +GH_ACCOUNT= magit + +USES= gmake makeinfo +USE_EMACS= yes +NO_ARCH= yes +INFO= with-editor +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +MAKE_ENV+= EFLAGS="-L ${PREFIX}/${EMACS_SITE_LISPDIR}" + +PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/with-editor.el \ + ${EMACS_VERSION_SITE_LISPDIR}/with-editor.elc + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/*.el ${WRKSRC}/*.elc ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} + ${INSTALL_MAN} ${WRKSRC}/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} + ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include Added: head/editors/with-editor/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/with-editor/distinfo Thu Feb 4 19:10:57 2016 (r408080) @@ -0,0 +1,2 @@ +SHA256 (magit-with-editor-v2.5.0_GH0.tar.gz) = 8091465eefee4057a4a0daab72db1f2f0415e2abfe965d1e8b8206f3031aeba5 +SIZE (magit-with-editor-v2.5.0_GH0.tar.gz) = 14940 Added: head/editors/with-editor/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/with-editor/pkg-descr Thu Feb 4 19:10:57 2016 (r408080) @@ -0,0 +1,7 @@ +The library with-editor makes it easy to use the Emacsclient as the +$EDITOR of child processes, making sure they know how to call +home. For remote processes a substitute is provided, which +communicates with Emacs on standard output instead of using a socket +as the Emacsclient does. + +WWW: https://github.com/magit/with-editor