From owner-svn-ports-head@FreeBSD.ORG Wed Nov 12 02:17:00 2014 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 C99006D9; Wed, 12 Nov 2014 02:17:00 +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 B54AD1AE; Wed, 12 Nov 2014 02:17:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAC2H0HE060104; Wed, 12 Nov 2014 02:17:00 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAC2GxNa060093; Wed, 12 Nov 2014 02:16:59 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201411120216.sAC2GxNa060093@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 12 Nov 2014 02:16:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372476 - in head: archivers/ruby-lha archivers/ruby-zip devel/ruby-langscan graphics/ruby-gd security/ruby-camellia 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.18-1 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: Wed, 12 Nov 2014 02:17:01 -0000 Author: swills Date: Wed Nov 12 02:16:58 2014 New Revision: 372476 URL: https://svnweb.freebsd.org/changeset/ports/372476 QAT: https://qat.redports.org/buildarchive/r372476/ Log: Mark broken with Ruby 2.1 With hat: ruby@ Modified: head/archivers/ruby-lha/Makefile head/archivers/ruby-zip/Makefile head/devel/ruby-langscan/Makefile head/graphics/ruby-gd/Makefile head/security/ruby-camellia/Makefile Modified: head/archivers/ruby-lha/Makefile ============================================================================== --- head/archivers/ruby-lha/Makefile Wed Nov 12 02:02:59 2014 (r372475) +++ head/archivers/ruby-lha/Makefile Wed Nov 12 02:16:58 2014 (r372476) @@ -30,7 +30,9 @@ post-install: ${INSTALL_SCRIPT} ${EXAMPLES:S,^,${WRKSRC}/,} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .include -.if ${RUBY_VER} == 2.0 -BROKEN= Does not build with Ruby 2.0 + +.if ${RUBY_VER} >= 1.9 +BROKEN= Does not build with Ruby 2.0 or Ruby 2.1 .endif + .include Modified: head/archivers/ruby-zip/Makefile ============================================================================== --- head/archivers/ruby-zip/Makefile Wed Nov 12 02:02:59 2014 (r372475) +++ head/archivers/ruby-zip/Makefile Wed Nov 12 02:16:58 2014 (r372476) @@ -36,4 +36,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor -.include +.include + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include Modified: head/devel/ruby-langscan/Makefile ============================================================================== --- head/devel/ruby-langscan/Makefile Wed Nov 12 02:02:59 2014 (r372475) +++ head/devel/ruby-langscan/Makefile Wed Nov 12 02:16:58 2014 (r372476) @@ -64,4 +64,10 @@ x-generate-plist: ${FIND} ${RUBY_SITELIBDIR}/${PORTNAME} -type d -depth | ${SORT} -r | ${SED} -e 's,${RUBY_SITELIBDIR},@dirrm %%RUBY_SITELIBDIR%%,' >> pkg-plist.new ${FIND} ${RUBY_SITEARCHLIBDIR}/${PORTNAME} -type d -depth | ${SORT} -r | ${SED} -e 's,${RUBY_SITEARCHLIBDIR},@dirrm %%RUBY_SITEARCHLIBDIR%%,' >> pkg-plist.new -.include +.include + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include Modified: head/graphics/ruby-gd/Makefile ============================================================================== --- head/graphics/ruby-gd/Makefile Wed Nov 12 02:02:59 2014 (r372475) +++ head/graphics/ruby-gd/Makefile Wed Nov 12 02:16:58 2014 (r372476) @@ -87,4 +87,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include Modified: head/security/ruby-camellia/Makefile ============================================================================== --- head/security/ruby-camellia/Makefile Wed Nov 12 02:02:59 2014 (r372475) +++ head/security/ruby-camellia/Makefile Wed Nov 12 02:16:58 2014 (r372476) @@ -32,4 +32,10 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor -.include +.include + +.if ${RUBY_VER} == 2.1 +BROKEN= Does not build with Ruby 2.1 +.endif + +.include