From owner-svn-ports-head@freebsd.org Sun Sep 18 21:43:49 2016 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 1A551BE0F53; Sun, 18 Sep 2016 21:43:49 +0000 (UTC) (envelope-from swills@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 C71421C9; Sun, 18 Sep 2016 21:43:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8ILhm44018792; Sun, 18 Sep 2016 21:43:48 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8ILhlK7018790; Sun, 18 Sep 2016 21:43:47 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201609182143.u8ILhlK7018790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 18 Sep 2016 21:43:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422410 - in head/databases/ruby-bdb: . 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, 18 Sep 2016 21:43:49 -0000 Author: swills Date: Sun Sep 18 21:43:47 2016 New Revision: 422410 URL: https://svnweb.freebsd.org/changeset/ports/422410 Log: databases/ruby-bdb: fix rdoc parse issue While here, fix a stage permission issue with the docs Added: head/databases/ruby-bdb/files/patch-docs_hashlike.rd (contents, props changed) Modified: head/databases/ruby-bdb/Makefile Modified: head/databases/ruby-bdb/Makefile ============================================================================== --- head/databases/ruby-bdb/Makefile Sun Sep 18 20:36:31 2016 (r422409) +++ head/databases/ruby-bdb/Makefile Sun Sep 18 21:43:47 2016 (r422410) @@ -3,7 +3,7 @@ PORTNAME= bdb PORTVERSION= 0.6.6 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= databases ruby MASTER_SITES= ftp://ftp.idaemons.org/pub/distfiles/ruby/ \ http://idaemons.org/distfiles/ruby/ \ @@ -30,6 +30,7 @@ INSTALL_TARGET= site-install DOCS= Changes README.en bdb.rd docs/*.rd DOCSDIR= ${RUBY_MODDOCDIR} EXAMPLESDIR= ${RUBY_MODEXAMPLESDIR} +SHAREMODE= 0644 PLIST_FILES= %%RUBY_SITEARCHLIBDIR%%/bdb.so PORTDOCS= * PORTEXAMPLES= * @@ -69,6 +70,9 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch ${FILESDIR}/extra-patch-src-cursor.c-22 .endif +post-patch: + @${RM} ${WRKSRC}/docs/*.orig + post-build: (cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} \ ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} rdoc) Added: head/databases/ruby-bdb/files/patch-docs_hashlike.rd ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/ruby-bdb/files/patch-docs_hashlike.rd Sun Sep 18 21:43:47 2016 (r422410) @@ -0,0 +1,26 @@ +--- docs/hashlike.rd.orig 2011-04-06 19:35:39 UTC ++++ docs/hashlike.rd +@@ -342,7 +342,6 @@ These are the common methods for ((|BDB: + --- each(set = nil, bulk = 0, "flags" => 0) { |key, value| ... } + --- each_pair(set = nil, bulk = 0) { |key, value| ... } + Iterates over associations. +- + (()) (()) + + --- each_by_prefix(prefix) {|key, value| ... } +@@ -360,7 +359,6 @@ These are the common methods for ((|BDB: + + --- each_key(set = nil, bulk = 0) { |key| ... } + Iterates over keys. +- + (()) (()) + + --- each_primary(set = nil) { |skey, pkey, pvalue| ... } +@@ -369,7 +367,6 @@ These are the common methods for ((|BDB: + + --- each_value(set = nil, bulk = 0) { |value| ... } + Iterates over values. +- + (()) (()) + + --- empty?()