Date: Tue, 27 Jun 2017 22:13:13 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r444523 - in head/devel: . codesearch-py Message-ID: <201706272213.v5RMDDlO044274@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cpm Date: Tue Jun 27 22:13:12 2017 New Revision: 444523 URL: https://svnweb.freebsd.org/changeset/ports/444523 Log: devel/codesearch-py: Python library for accessing Chromium CodeSearch The codesearch Python library provides an interface for talking to the Chromium CodeSearch backend. The primary entry point into the library is the codesearch class. Various message classes you are likely to encounter are defined in messages.py In addition, the library also includes facilities for maintaining an ephemeral or persistent cache in order to minimize generated network traffic. WWW: https://github.com/chromium/codesearch-py Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D11336 Added: head/devel/codesearch-py/ head/devel/codesearch-py/Makefile (contents, props changed) head/devel/codesearch-py/distinfo (contents, props changed) head/devel/codesearch-py/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 27 22:08:07 2017 (r444522) +++ head/devel/Makefile Tue Jun 27 22:13:12 2017 (r444523) @@ -319,6 +319,7 @@ SUBDIR += cobf SUBDIR += coccinelle SUBDIR += codeblocks + SUBDIR += codesearch-py SUBDIR += codeville SUBDIR += codeworker SUBDIR += colorgcc Added: head/devel/codesearch-py/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/codesearch-py/Makefile Tue Jun 27 22:13:12 2017 (r444523) @@ -0,0 +1,27 @@ +# Created by: Carlos J. Puga Medina <cpm@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= codesearch-py +PORTVERSION= 0.1 +CATEGORIES= devel python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= cpm@FreeBSD.org +COMMENT= Python library for accessing Chromium CodeSearch + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +USE_GITHUB= yes +GH_ACCOUNT= chromium +GH_TAGNAME= ec3ad68 + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m unittest discover -v + +.include <bsd.port.mk> Added: head/devel/codesearch-py/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/codesearch-py/distinfo Tue Jun 27 22:13:12 2017 (r444523) @@ -0,0 +1,3 @@ +TIMESTAMP = 1498485588 +SHA256 (chromium-codesearch-py-0.1-ec3ad68_GH0.tar.gz) = 93c5c3476fafcec52d0bc1f732b31d9ddc700882e5f6755b36da7740f747ef24 +SIZE (chromium-codesearch-py-0.1-ec3ad68_GH0.tar.gz) = 335302 Added: head/devel/codesearch-py/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/codesearch-py/pkg-descr Tue Jun 27 22:13:12 2017 (r444523) @@ -0,0 +1,11 @@ +The codesearch Python library provides an interface for talking to the +Chromium CodeSearch backend. + +The primary entry point into the library is the codesearch class. Various +message classes you are likely to encounter are defined in messages.py + +In addition, the library also includes facilities for maintaining an +ephemeral or persistent cache in order to minimize generated network +traffic. + +WWW: https://github.com/chromium/codesearch-py
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706272213.v5RMDDlO044274>