From owner-svn-ports-all@FreeBSD.ORG Sat Feb 22 23:19:32 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A4F29698; Sat, 22 Feb 2014 23:19:32 +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 81FFD173A; Sat, 22 Feb 2014 23:19:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1MNJWM7099895; Sat, 22 Feb 2014 23:19:32 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1MNJT63099874; Sat, 22 Feb 2014 23:19:29 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201402222319.s1MNJT63099874@svn.freebsd.org> From: Steve Wills Date: Sat, 22 Feb 2014 23:19:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345679 - in head: accessibility/ruby-atk devel/ruby-gio2 devel/ruby-glib2 graphics/ruby-cairo graphics/ruby-gdk_pixbuf2 graphics/ruby-rsvg2 x11-toolkits/ruby-goocanvas x11-toolkits/rub... 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: Sat, 22 Feb 2014 23:19:32 -0000 Author: swills Date: Sat Feb 22 23:19:29 2014 New Revision: 345679 URL: http://svnweb.freebsd.org/changeset/ports/345679 QAT: https://qat.redports.org/buildarchive/r345679/ Log: - Mark as broken with Ruby 2.0 and 2.1 - Mark deprecated in favor of rubygem- versions Modified: head/accessibility/ruby-atk/Makefile head/devel/ruby-gio2/Makefile head/devel/ruby-glib2/Makefile head/graphics/ruby-cairo/Makefile head/graphics/ruby-gdk_pixbuf2/Makefile head/graphics/ruby-rsvg2/Makefile head/x11-toolkits/ruby-goocanvas/Makefile head/x11-toolkits/ruby-gstreamer/Makefile head/x11-toolkits/ruby-gtk2/Makefile head/x11-toolkits/ruby-gtksourceview2/Makefile head/x11-toolkits/ruby-pango/Makefile head/x11-toolkits/ruby-poppler/Makefile head/x11-toolkits/ruby-vte/Makefile head/x11/ruby-gnome2/Makefile Modified: head/accessibility/ruby-atk/Makefile ============================================================================== --- head/accessibility/ruby-atk/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/accessibility/ruby-atk/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -26,6 +26,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-atk instead +EXPIRATION_DATE=2014-03-23 + .include "${MASTERDIR}/Makefile.common" WRKSRC= ${RUBY_GNOME_WRKSRC}/atk @@ -41,4 +44,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/devel/ruby-gio2/Makefile ============================================================================== --- head/devel/ruby-gio2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/devel/ruby-gio2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -25,6 +25,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-gio2 instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -42,4 +45,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/devel/ruby-glib2/Makefile ============================================================================== --- head/devel/ruby-glib2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/devel/ruby-glib2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -25,6 +25,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-glib2 instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -49,4 +52,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/graphics/ruby-cairo/Makefile ============================================================================== --- head/graphics/ruby-cairo/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/graphics/ruby-cairo/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -21,6 +21,9 @@ CONFIGURE_ARGS+=--ruby=${RUBY} DOCS= AUTHORS COPYING GPL NEWS +DEPRECATED= Use rubygem-cairo instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes post-install: .if !defined(NOPORTEXAMPLES) @@ -35,4 +38,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/graphics/ruby-gdk_pixbuf2/Makefile ============================================================================== --- head/graphics/ruby-gdk_pixbuf2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/graphics/ruby-gdk_pixbuf2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -26,6 +26,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-gdk_pixbuf2 instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -46,4 +49,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/graphics/ruby-rsvg2/Makefile ============================================================================== --- head/graphics/ruby-rsvg2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/graphics/ruby-rsvg2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -25,6 +25,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-rsvg2 instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -45,4 +48,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-goocanvas/Makefile ============================================================================== --- head/x11-toolkits/ruby-goocanvas/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-goocanvas/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -26,6 +26,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= No longer included upstream +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -46,4 +49,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-gstreamer/Makefile ============================================================================== --- head/x11-toolkits/ruby-gstreamer/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-gstreamer/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -26,6 +26,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-gstreamer instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -49,4 +52,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-gtk2/Makefile ============================================================================== --- head/x11-toolkits/ruby-gtk2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-gtk2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -28,6 +28,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-gtk2 instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -67,4 +70,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-gtksourceview2/Makefile ============================================================================== --- head/x11-toolkits/ruby-gtksourceview2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-gtksourceview2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -24,6 +24,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-gtksourceview2 instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -44,4 +47,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-pango/Makefile ============================================================================== --- head/x11-toolkits/ruby-pango/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-pango/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -28,6 +28,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-pango instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -53,4 +56,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-poppler/Makefile ============================================================================== --- head/x11-toolkits/ruby-poppler/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-poppler/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -25,6 +25,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-poppler instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -48,4 +51,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11-toolkits/ruby-vte/Makefile ============================================================================== --- head/x11-toolkits/ruby-vte/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11-toolkits/ruby-vte/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -24,6 +24,9 @@ CONFIGURE_ARGS= --with-pkg-config-dir=${ MASTERDIR= ${.CURDIR}/../../x11/ruby-gnome2 PKGDIR= ${.CURDIR} +DEPRECATED= Use rubygem-vte instead +EXPIRATION_DATE=2014-03-23 + NO_STAGE= yes .include "${MASTERDIR}/Makefile.common" @@ -47,4 +50,10 @@ post-install: .endfor .endif -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include Modified: head/x11/ruby-gnome2/Makefile ============================================================================== --- head/x11/ruby-gnome2/Makefile Sat Feb 22 22:25:51 2014 (r345678) +++ head/x11/ruby-gnome2/Makefile Sat Feb 22 23:19:29 2014 (r345679) @@ -28,7 +28,16 @@ NO_STAGE= yes NO_BUILD= yes +DEPRECATED= Use rubygem-gnome2 instead +EXPIRATION_DATE=2014-03-23 + do-install: @${DO_NADA} -.include +.include + +.if ${RUBY_VER} != 1.9 +BROKEN= Does not work with Ruby 2.x +.endif + +.include