From owner-svn-ports-head@freebsd.org Sun Jan 29 15:42:48 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74800CC78EC; Sun, 29 Jan 2017 15:42:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 4C32394; Sun, 29 Jan 2017 15:42:48 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0TFglgA044756; Sun, 29 Jan 2017 15:42:47 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0TFgk5I044751; Sun, 29 Jan 2017 15:42:46 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201701291542.v0TFgk5I044751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sun, 29 Jan 2017 15:42:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432760 - in head/devel/silentbob: . 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.23 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: Sun, 29 Jan 2017 15:42:48 -0000 Author: tota Date: Sun Jan 29 15:42:46 2017 New Revision: 432760 URL: https://svnweb.freebsd.org/changeset/ports/432760 Log: - Add patch-include_darray.h to fix typo - Rename patch-src-Sblib.cxx to patch-src_Sblib.cxx and regenerate with 'make makepatch' - Add patch-src_fs.cxx to enable Dposix_fadvise - Add patch-src_wit.cxx to fix fails to build with clang 4.0 [1] PR: 216235 [1] Submitted by: jbeich@ [1] MFH: 2017Q1 Added: head/devel/silentbob/files/patch-include_darray.h (contents, props changed) head/devel/silentbob/files/patch-src_Sblib.cxx (contents, props changed) - copied, changed from r432759, head/devel/silentbob/files/patch-src-Sblib.cxx head/devel/silentbob/files/patch-src_fs.cxx (contents, props changed) head/devel/silentbob/files/patch-src_wit.cxx (contents, props changed) Deleted: head/devel/silentbob/files/patch-src-Sblib.cxx Modified: head/devel/silentbob/Makefile (contents, props changed) Modified: head/devel/silentbob/Makefile ============================================================================== --- head/devel/silentbob/Makefile Sun Jan 29 15:38:41 2017 (r432759) +++ head/devel/silentbob/Makefile Sun Jan 29 15:42:46 2017 (r432760) @@ -3,6 +3,7 @@ PORTNAME= silentbob PORTVERSION= 3.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF/${PORTNAME}/${PORTNAME}2/${PORTNAME}-${PORTVERSION:C@\.[0-9]+$@@}/ Added: head/devel/silentbob/files/patch-include_darray.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/silentbob/files/patch-include_darray.h Sun Jan 29 15:42:46 2017 (r432760) @@ -0,0 +1,11 @@ +--- include/darray.h.orig 2013-11-27 15:00:46 UTC ++++ include/darray.h +@@ -6,7 +6,7 @@ + */ + + #ifndef DEFINE_DARRAY_H +-#define DEFINE_DARRAy_H ++#define DEFINE_DARRAY_H + + class DArray + { Copied and modified: head/devel/silentbob/files/patch-src_Sblib.cxx (from r432759, head/devel/silentbob/files/patch-src-Sblib.cxx) ============================================================================== --- head/devel/silentbob/files/patch-src-Sblib.cxx Sun Jan 29 15:38:41 2017 (r432759, copy source) +++ head/devel/silentbob/files/patch-src_Sblib.cxx Sun Jan 29 15:42:46 2017 (r432760) @@ -1,6 +1,6 @@ ---- src/Sblib.cxx.orig 2013-11-28 00:00:47.000000000 +0900 -+++ src/Sblib.cxx 2013-12-03 11:42:09.000000000 +0900 -@@ -125,7 +125,7 @@ +--- src/Sblib.cxx.orig 2013-11-27 15:00:47 UTC ++++ src/Sblib.cxx +@@ -125,7 +125,7 @@ int sblib_find (const char * path, const lseek (fd, 0, SEEK_END); dup2 (devnull, 2); dup2 (fd, 1); Added: head/devel/silentbob/files/patch-src_fs.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/silentbob/files/patch-src_fs.cxx Sun Jan 29 15:42:46 2017 (r432760) @@ -0,0 +1,11 @@ +--- src/fs.cxx.orig 2013-11-27 15:00:47 UTC ++++ src/fs.cxx +@@ -110,7 +110,7 @@ __export int logToFile (char * fileName, + return 0; + } + +-#ifdef __linux ++#if defined(__linux__) || defined(__FreeBSD__) + int Dposix_fadvise (int fd, int offset, int len, int advice) + { + return posix_fadvise (fd, offset, len, advice); Added: head/devel/silentbob/files/patch-src_wit.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/silentbob/files/patch-src_wit.cxx Sun Jan 29 15:42:46 2017 (r432760) @@ -0,0 +1,11 @@ +--- src/wit.cxx.orig 2013-11-27 15:00:47 UTC ++++ src/wit.cxx +@@ -18,7 +18,7 @@ int what_is_this (char * d_op, char ch) + + d_words_count = words_count (d_op); + +- if (words_count <= 0) ++ if (d_words_count <= 0) + return OT::Other; + + if (d_words_count == 1) {