Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Jan 2017 15:42:46 +0000 (UTC)
From:      TAKATSU Tomonari <tota@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r432760 - in head/devel/silentbob: . files
Message-ID:  <201701291542.v0TFgk5I044751@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701291542.v0TFgk5I044751>