svn commit: r484636 - in head/devel: . treepy.el

Joseph Mingrone jrm at FreeBSD.org
Sat Nov 10 19:54:17 UTC 2018


Author: jrm
Date: Sat Nov 10 19:54:15 2018
New Revision: 484636
URL: https://svnweb.freebsd.org/changeset/ports/484636

Log:
  New port, devel/treepy.el: Generic tree traversing tools for Elisp
  
  treepy.el provides a set of generic Emacs lisp functions for traversing
  tree-like data structures recursively and/or iteratively.
  
  PR:		232889
  Submitted by:	Yasuhiro KIMURA <yasu at utahime.org>, maintainer

Added:
  head/devel/treepy.el/
  head/devel/treepy.el/Makefile   (contents, props changed)
  head/devel/treepy.el/distinfo   (contents, props changed)
  head/devel/treepy.el/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile   (contents, props changed)

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Nov 10 19:45:34 2018	(r484635)
+++ head/devel/Makefile	Sat Nov 10 19:54:15 2018	(r484636)
@@ -6299,6 +6299,7 @@
     SUBDIR += tortoisehg
     SUBDIR += tpasm
     SUBDIR += trac-bitten
+    SUBDIR += treepy.el
     SUBDIR += tradcpp
     SUBDIR += trio
     SUBDIR += truc

Added: head/devel/treepy.el/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/treepy.el/Makefile	Sat Nov 10 19:54:15 2018	(r484636)
@@ -0,0 +1,39 @@
+# $FreeBSD$
+
+PORTNAME=	treepy.el
+DISTVERSION=	0.1.1
+CATEGORIES=	devel elisp
+PKGNAMESUFFIX=	${EMACS_PKGNAMESUFFIX}
+
+MAINTAINER=	yasu at utahime.org
+COMMENT=	Generic tree traversing tools for Emacs Lisp
+
+LICENSE=	GPLv3+
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		emacs
+USE_GITHUB=	yes
+GH_ACCOUNT=	volrath
+
+NO_ARCH=	yes
+
+PLIST_FILES=	${EMACS_VERSION_SITE_LISPDIR}/treepy.el \
+		${EMACS_VERSION_SITE_LISPDIR}/treepy.elc
+
+OPTIONS_DEFINE=	DOCS
+
+PORTDOCS=	README.md
+
+do-build:
+	(cd ${WRKSRC} ; ${EMACS_CMD} -batch -q -f batch-byte-compile treepy.el)
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
+	${INSTALL_DATA} ${WRKSRC}/treepy.el* \
+		${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}
+
+do-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/devel/treepy.el/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/treepy.el/distinfo	Sat Nov 10 19:54:15 2018	(r484636)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1541056577
+SHA256 (volrath-treepy.el-0.1.1_GH0.tar.gz) = 9d91ef748e3f103101145cb3752a73d36d99c336c6634a7bdfaa3d78f0c9f747
+SIZE (volrath-treepy.el-0.1.1_GH0.tar.gz) = 125004

Added: head/devel/treepy.el/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/treepy.el/pkg-descr	Sat Nov 10 19:54:15 2018	(r484636)
@@ -0,0 +1,4 @@
+A set of generic functions for traversing tree-like data structures
+recursively and/or iteratively,
+
+WWW: https://github.com/volrath/treepy.el


More information about the svn-ports-all mailing list