From owner-svn-ports-all@FreeBSD.ORG Mon Apr 13 11:06:29 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9CC11228; Mon, 13 Apr 2015 11:06:29 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 7E63E7FB; Mon, 13 Apr 2015 11:06:29 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3DB6T46026016; Mon, 13 Apr 2015 11:06:29 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3DB6Ska026009; Mon, 13 Apr 2015 11:06:28 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201504131106.t3DB6Ska026009@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 13 Apr 2015 11:06:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383908 - in head/sysutils: . watchman 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.18-1 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: Mon, 13 Apr 2015 11:06:29 -0000 Author: danfe Date: Mon Apr 13 11:06:27 2015 New Revision: 383908 URL: https://svnweb.freebsd.org/changeset/ports/383908 Log: Add a port of watchman, file alteration monitor from Facebook. WWW: https://facebook.github.io/watchman/ PR: 199061 Added: head/sysutils/watchman/ head/sysutils/watchman/Makefile (contents, props changed) head/sysutils/watchman/distinfo (contents, props changed) head/sysutils/watchman/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Apr 13 10:35:14 2015 (r383907) +++ head/sysutils/Makefile Mon Apr 13 11:06:27 2015 (r383908) @@ -1030,10 +1030,11 @@ SUBDIR += vpnc-scripts SUBDIR += vstrip SUBDIR += vttest - SUBDIR += warden SUBDIR += wait_on + SUBDIR += warden SUBDIR += watchdog SUBDIR += watchfolder + SUBDIR += watchman SUBDIR += watchmen SUBDIR += webjob SUBDIR += webmin Added: head/sysutils/watchman/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/watchman/Makefile Mon Apr 13 11:06:27 2015 (r383908) @@ -0,0 +1,36 @@ +# Created by: Jin-Sih, Lin +# $FreeBSD$ + +PORTNAME= watchman +PORTVERSION= 3.0.0 +CATEGORIES= sysutils + +MAINTAINER= linpct@gmail.com +COMMENT= File alteration monitoring service + +LICENSE= APACHE20 + +LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre + +USE_GITHUB= yes +GH_ACCOUNT= facebook +GH_TAGNAME= v${PORTVERSION} + +USES= autoreconf gmake pkgconfig +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-pcre + +.if defined(BATCH) || defined(PACKAGE_BUILDING) +CONFIGURE_ARGS+= --disable-silent-rules +.endif + +CPPFLAGS+= -I${LOCALBASE}/include + +PLIST_FILES= bin/watchman +PORTDOCS= README.markdown + +post-patch: + @${REINPLACE_CMD} -e '/^docdir = /d' ${WRKSRC}/Makefile.am + @${REINPLACE_CMD} -e '/timestamp=/s,%ld,%d,' ${WRKSRC}/root.c + +.include Added: head/sysutils/watchman/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/watchman/distinfo Mon Apr 13 11:06:27 2015 (r383908) @@ -0,0 +1,2 @@ +SHA256 (facebook-watchman-3.0.0-v3.0.0_GH0.tar.gz) = 9481c801b848acaa2783e511faaeae8d276e624e2703bd53f4e33cc9d0c0f12f +SIZE (facebook-watchman-3.0.0-v3.0.0_GH0.tar.gz) = 199034 Added: head/sysutils/watchman/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/watchman/pkg-descr Mon Apr 13 11:06:27 2015 (r383908) @@ -0,0 +1,4 @@ +Watchman exists to watch files and record when they change. It can also +trigger actions (such as rebuilding assets) when matching files change. + +WWW: https://facebook.github.io/watchman/