From owner-svn-ports-all@FreeBSD.ORG Fri Jan 17 17:06:17 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 658A27CE; Fri, 17 Jan 2014 17:06:17 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 375F516A9; Fri, 17 Jan 2014 17:06:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0HH6HPb081758; Fri, 17 Jan 2014 17:06:17 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0HH6GE8081755; Fri, 17 Jan 2014 17:06:16 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201401171706.s0HH6GE8081755@svn.freebsd.org> From: Baptiste Daroussin Date: Fri, 17 Jan 2014 17:06:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r340078 - in head/devel/lua-posix: . 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-all@freebsd.org X-Mailman-Version: 2.1.17 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: Fri, 17 Jan 2014 17:06:17 -0000 Author: bapt Date: Fri Jan 17 17:06:16 2014 New Revision: 340078 URL: http://svnweb.freebsd.org/changeset/ports/340078 QAT: https://qat.redports.org/buildarchive/r340078/ Log: Remove unsupported function 'fdatasync.' Pass maintainership to lua@ PR: ports/185791 Submitted by: Kan Sasaki Modified: head/devel/lua-posix/Makefile head/devel/lua-posix/files/patch-ext__posix__posix.c Modified: head/devel/lua-posix/Makefile ============================================================================== --- head/devel/lua-posix/Makefile Fri Jan 17 17:04:18 2014 (r340077) +++ head/devel/lua-posix/Makefile Fri Jan 17 17:06:16 2014 (r340078) @@ -3,10 +3,11 @@ PORTNAME= posix PORTVERSION= 31 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= lua@FreeBSD.org COMMENT= POSIX layer for Lua LICENSE= MIT Modified: head/devel/lua-posix/files/patch-ext__posix__posix.c ============================================================================== --- head/devel/lua-posix/files/patch-ext__posix__posix.c Fri Jan 17 17:04:18 2014 (r340077) +++ head/devel/lua-posix/files/patch-ext__posix__posix.c Fri Jan 17 17:06:16 2014 (r340078) @@ -1,5 +1,5 @@ --- ./ext/posix/posix.c.orig 2013-09-09 09:15:14.000000000 +0200 -+++ ./ext/posix/posix.c 2014-01-10 15:21:47.831554392 +0100 ++++ ./ext/posix/posix.c 2014-01-17 18:05:10.399556496 +0100 @@ -68,6 +68,10 @@ #include "lauxlib.h" #include "lua52compat.h" @@ -11,3 +11,31 @@ #ifndef STREQ # define STREQ(a, b) (strcmp (a, b) == 0) #endif +@@ -3697,6 +3701,7 @@ + return pushresult(L, fsync(fd), NULL); + } + ++#if 0 + #if _POSIX_VERSION >= 200112L + /*** + synchronize a file's in-core state with storage device without metadata +@@ -3712,6 +3717,7 @@ + return pushresult(L, fdatasync(fd), NULL); + } + #endif ++#endif + + /*** + reposition read/write file offset +@@ -3771,9 +3777,11 @@ + MENTRY( Perrno ), + MENTRY( Pexec ), + MENTRY( Pexecp ), ++#if 0 + #if _POSIX_VERSION >= 200112L + MENTRY( Pfdatasync ), + #endif ++#endif + MENTRY( Pfcntl ), + MENTRY( Pfileno ), + MENTRY( Pfiles ),