From owner-svn-ports-all@freebsd.org Fri Apr 14 15:07:31 2017 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 6BB10D3DDA1; Fri, 14 Apr 2017 15:07:31 +0000 (UTC) (envelope-from jrm@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 3099937D; Fri, 14 Apr 2017 15:07:31 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3EF7URi083642; Fri, 14 Apr 2017 15:07:30 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3EF7UbS083637; Fri, 14 Apr 2017 15:07:30 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201704141507.v3EF7UbS083637@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 14 Apr 2017 15:07:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438520 - in head/devel: . rubygem-will_paginate 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.23 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: Fri, 14 Apr 2017 15:07:31 -0000 Author: jrm Date: Fri Apr 14 15:07:29 2017 New Revision: 438520 URL: https://svnweb.freebsd.org/changeset/ports/438520 Log: New port, devel/rubygem-will_paginate: Pagination plugin for web frameworks and other apps Adding devel/rubygem-will_paginate, because it is a dependency of the upcoming www/mastodon port. WWW: https://github.com/mislav/will_paginate/wiki/ Approved by: swills (mentor, implicit) Added: head/devel/rubygem-will_paginate/ head/devel/rubygem-will_paginate/Makefile (contents, props changed) head/devel/rubygem-will_paginate/distinfo (contents, props changed) head/devel/rubygem-will_paginate/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Apr 14 14:54:56 2017 (r438519) +++ head/devel/Makefile Fri Apr 14 15:07:29 2017 (r438520) @@ -5608,6 +5608,7 @@ SUBDIR += rubygem-web-console SUBDIR += rubygem-web-console2 SUBDIR += rubygem-webby + SUBDIR += rubygem-will_paginate SUBDIR += rubygem-windows_error SUBDIR += rubygem-wmi-lite SUBDIR += rubygem-xpath Added: head/devel/rubygem-will_paginate/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-will_paginate/Makefile Fri Apr 14 15:07:29 2017 (r438520) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= will_paginate +PORTVERSION= 3.1.5 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= jrm@FreeBSD.org +COMMENT= Pagination plugin for web frameworks and other apps + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_RUBY= yes +USES= gem + +NO_ARCH= yes + +.include Added: head/devel/rubygem-will_paginate/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-will_paginate/distinfo Fri Apr 14 15:07:29 2017 (r438520) @@ -0,0 +1,3 @@ +TIMESTAMP = 1492182001 +SHA256 (rubygem/will_paginate-3.1.5.gem) = d204bac6b85c34e6c13f176583ccef1fdfdbd802658271d1b84791d7ca0b2f06 +SIZE (rubygem/will_paginate-3.1.5.gem) = 36864 Added: head/devel/rubygem-will_paginate/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-will_paginate/pkg-descr Fri Apr 14 15:07:29 2017 (r438520) @@ -0,0 +1,5 @@ +will_paginate provides a simple API for performing paginated queries with Active +Record, DataMapper and Sequel, and includes helpers for rendering pagination +links in Rails, Sinatra and Merb web apps. + +WWW: https://github.com/mislav/will_paginate/wiki/