From owner-svn-ports-head@FreeBSD.ORG Mon May 18 19:48:49 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F93BADA; Mon, 18 May 2015 19:48:49 +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 53F781B7D; Mon, 18 May 2015 19:48:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4IJmnUY093367; Mon, 18 May 2015 19:48:49 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4IJmmlo093363; Mon, 18 May 2015 19:48:48 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201505181948.t4IJmmlo093363@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Mon, 18 May 2015 19:48:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386709 - in head/devel/libinotify: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 May 2015 19:48:49 -0000 Author: delphij Date: Mon May 18 19:48:47 2015 New Revision: 386709 URL: https://svnweb.freebsd.org/changeset/ports/386709 Log: Update to rev.20150516. PR: 200253 Submitted by: Yuri Modified: head/devel/libinotify/Makefile head/devel/libinotify/distinfo head/devel/libinotify/files/Makefile Modified: head/devel/libinotify/Makefile ============================================================================== --- head/devel/libinotify/Makefile Mon May 18 19:44:59 2015 (r386708) +++ head/devel/libinotify/Makefile Mon May 18 19:48:47 2015 (r386709) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libinotify -PORTVERSION= 20140622 +PORTVERSION= 20150516 CATEGORIES= devel MAINTAINER= delphij@FreeBSD.org @@ -13,12 +13,15 @@ LICENSE= MIT USE_GITHUB= yes GH_ACCOUNT= dmatveev GH_PROJECT= libinotify-kqueue -GH_TAGNAME= d775062 +GH_TAGNAME= f4a092a USE_LDCONFIG= yes post-patch: @${CP} ${FILESDIR}/Makefile ${WRKSRC} @${TOUCH} ${WRKSRC}/config.h + @echo "#define HAVE_PTHREAD_BARRIER 1" >> ${WRKSRC}/config.h + @echo "#define BUILD_LIBRARY 1" >> ${WRKSRC}/config.h + @echo "#include " >> ${WRKSRC}/config.h .include Modified: head/devel/libinotify/distinfo ============================================================================== --- head/devel/libinotify/distinfo Mon May 18 19:44:59 2015 (r386708) +++ head/devel/libinotify/distinfo Mon May 18 19:48:47 2015 (r386709) @@ -1,2 +1,2 @@ -SHA256 (dmatveev-libinotify-kqueue-20140622-d775062_GH0.tar.gz) = 283e995b815cf7adc169626ab3de1fc5dc6c3eba6de4b009ee3fb239f71ebcf4 -SIZE (dmatveev-libinotify-kqueue-20140622-d775062_GH0.tar.gz) = 33440 +SHA256 (dmatveev-libinotify-kqueue-20150516-f4a092a_GH0.tar.gz) = ad001b8229e83d379d41c0add348cff97b50c07ce60cf3f78aff86ddd18bdda3 +SIZE (dmatveev-libinotify-kqueue-20150516-f4a092a_GH0.tar.gz) = 42543 Modified: head/devel/libinotify/files/Makefile ============================================================================== --- head/devel/libinotify/files/Makefile Mon May 18 19:44:59 2015 (r386708) +++ head/devel/libinotify/files/Makefile Mon May 18 19:48:47 2015 (r386709) @@ -7,11 +7,12 @@ DPADD= ${LIBPTHREAD} LDADD= -lpthread SRCS= utils.c -SRCS+= barriers.c +SRCS+= compat.c SRCS+= conversions.c SRCS+= dep-list.c +SRCS+= inotify-watch.c +SRCS+= watch-set.c SRCS+= watch.c -SRCS+= worker-sets.c SRCS+= worker-thread.c SRCS+= worker.c SRCS+= controller.c