From owner-svn-ports-all@freebsd.org Tue Oct 6 21:21:26 2015 Return-Path: Delivered-To: svn-ports-all@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 3D7079B6A5E; Tue, 6 Oct 2015 21:21:26 +0000 (UTC) (envelope-from mmoll@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 9C910ECE; Tue, 6 Oct 2015 21:21:25 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t96LLObG040745; Tue, 6 Oct 2015 21:21:24 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t96LLO4f040740; Tue, 6 Oct 2015 21:21:24 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510062121.t96LLO4f040740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Tue, 6 Oct 2015 21:21:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398724 - in head/devel: . rubygem-rubocop 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.20 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: Tue, 06 Oct 2015 21:21:26 -0000 Author: mmoll Date: Tue Oct 6 21:21:23 2015 New Revision: 398724 URL: https://svnweb.freebsd.org/changeset/ports/398724 Log: new port: devel/rubygem-rubocop RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of the guidelines outlined in the community Ruby Style Guide, but most aspects of its behavior can be tweaked via various configuration options. WWW: http://batsov.com/rubocop/ Added: head/devel/rubygem-rubocop/ head/devel/rubygem-rubocop/Makefile (contents, props changed) head/devel/rubygem-rubocop/distinfo (contents, props changed) head/devel/rubygem-rubocop/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Oct 6 21:19:38 2015 (r398723) +++ head/devel/Makefile Tue Oct 6 21:21:23 2015 (r398724) @@ -4902,6 +4902,7 @@ SUBDIR += rubygem-rspec-mocks SUBDIR += rubygem-rspec-support SUBDIR += rubygem-rubigen + SUBDIR += rubygem-rubocop SUBDIR += rubygem-ruby-atmos-pure SUBDIR += rubygem-ruby-bugzilla SUBDIR += rubygem-ruby-filemagic Added: head/devel/rubygem-rubocop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rubocop/Makefile Tue Oct 6 21:21:23 2015 (r398724) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= rubocop +PORTVERSION= 0.34.2 +CATEGORIES= devel ruby +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Ruby code style checking tool + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-astrolabe>=1.3:${PORTSDIR}/devel/rubygem-astrolabe \ + rubygem-parser>=2.2.2.5:${PORTSDIR}/devel/rubygem-parser \ + rubygem-powerpack>=0.1:${PORTSDIR}/devel/rubygem-powerpack \ + rubygem-rainbow>=1.99.1:${PORTSDIR}/devel/rubygem-rainbow \ + rubygem-ruby-progressbar>=1.4:${PORTSDIR}/devel/rubygem-ruby-progressbar + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/rubocop + +.include Added: head/devel/rubygem-rubocop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rubocop/distinfo Tue Oct 6 21:21:23 2015 (r398724) @@ -0,0 +1,2 @@ +SHA256 (rubygem/rubocop-0.34.2.gem) = d387d22b07c8ba54043d742ee7738dd31440808e371e86502e6d06fbf5d22b7a +SIZE (rubygem/rubocop-0.34.2.gem) = 297984 Added: head/devel/rubygem-rubocop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-rubocop/pkg-descr Tue Oct 6 21:21:23 2015 (r398724) @@ -0,0 +1,5 @@ +RuboCop is a Ruby static code analyzer. Out of the box it will enforce many of +the guidelines outlined in the community Ruby Style Guide, but most aspects of +its behavior can be tweaked via various configuration options. + +WWW: http://batsov.com/rubocop/