From owner-svn-ports-all@FreeBSD.ORG Sat Mar 14 14:57:47 2015 Return-Path: Delivered-To: svn-ports-all@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 579EA9B0; Sat, 14 Mar 2015 14:57:47 +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 38558BA2; Sat, 14 Mar 2015 14:57:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2EEvlRv013027; Sat, 14 Mar 2015 14:57:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2EEvkF5013024; Sat, 14 Mar 2015 14:57:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201503141457.t2EEvkF5013024@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 14 Mar 2015 14:57:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381278 - in head/net-im/rubygem-lita: . 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-all@freebsd.org X-Mailman-Version: 2.1.18-1 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, 14 Mar 2015 14:57:47 -0000 Author: sunpoet Date: Sat Mar 14 14:57:45 2015 New Revision: 381278 URL: https://svnweb.freebsd.org/changeset/ports/381278 QAT: https://qat.redports.org/buildarchive/r381278/ Log: - Update to 4.3.0 - Add LICENSE - Remove outdated RUBY_VER check Changes: https://github.com/jimmycuadra/lita/releases Modified: head/net-im/rubygem-lita/Makefile head/net-im/rubygem-lita/distinfo head/net-im/rubygem-lita/files/patch-gemspec Modified: head/net-im/rubygem-lita/Makefile ============================================================================== --- head/net-im/rubygem-lita/Makefile Sat Mar 14 14:57:36 2015 (r381277) +++ head/net-im/rubygem-lita/Makefile Sat Mar 14 14:57:45 2015 (r381278) @@ -2,35 +2,31 @@ # $FreeBSD$ PORTNAME= lita -PORTVERSION= 3.3.1 +PORTVERSION= 4.3.0 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Multi-service chat bot with extendable behavior -RUN_DEPENDS= rubygem-bundler>=1.3:${PORTSDIR}/sysutils/rubygem-bundler \ +LICENSE= MIT + +RUN_DEPENDS= redis>=0:${PORTSDIR}/databases/redis \ + rubygem-bundler>=1.3:${PORTSDIR}/sysutils/rubygem-bundler \ rubygem-faraday>=0.8.7:${PORTSDIR}/www/rubygem-faraday \ rubygem-http_router>=0.11.1:${PORTSDIR}/www/rubygem-http_router \ - rubygem-ice_nine>=0.11.0:${PORTSDIR}/devel/rubygem-ice_nine \ rubygem-i18n>=0.6.9:${PORTSDIR}/devel/rubygem-i18n \ + rubygem-ice_nine>=0.11.0:${PORTSDIR}/devel/rubygem-ice_nine \ rubygem-multi_json>=1.7.7:${PORTSDIR}/devel/rubygem-multi_json \ rubygem-puma>=2.7.1:${PORTSDIR}/www/rubygem-puma \ rubygem-rack15>=1.5.2:${PORTSDIR}/www/rubygem-rack15 \ rubygem-redis-namespace>=1.3.0:${PORTSDIR}/databases/rubygem-redis-namespace \ - rubygem-thor>=0.18.1:${PORTSDIR}/devel/rubygem-thor \ - redis>=0:${PORTSDIR}/databases/redis + rubygem-thor>=0.18.1:${PORTSDIR}/devel/rubygem-thor USE_RUBY= yes USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST=yes +RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/lita -.include - -.if ${RUBY_VER} == 1.9 -IGNORE= Requires Ruby 2.0 or newer -.endif - -.include +.include Modified: head/net-im/rubygem-lita/distinfo ============================================================================== --- head/net-im/rubygem-lita/distinfo Sat Mar 14 14:57:36 2015 (r381277) +++ head/net-im/rubygem-lita/distinfo Sat Mar 14 14:57:45 2015 (r381278) @@ -1,2 +1,2 @@ -SHA256 (rubygem/lita-3.3.1.gem) = 65b2a4780d44d7d80e191ef77fe6cda24b1d140bcb26cb18a319479c967cf097 -SIZE (rubygem/lita-3.3.1.gem) = 43520 +SHA256 (rubygem/lita-4.3.0.gem) = 8028771a88dbb36f76957574f94d49e24c3e0144f7a8b4e8c77fc833c97013f0 +SIZE (rubygem/lita-4.3.0.gem) = 60928 Modified: head/net-im/rubygem-lita/files/patch-gemspec ============================================================================== --- head/net-im/rubygem-lita/files/patch-gemspec Sat Mar 14 14:57:36 2015 (r381277) +++ head/net-im/rubygem-lita/files/patch-gemspec Sat Mar 14 14:57:45 2015 (r381278) @@ -1,5 +1,5 @@ ---- lita-3.3.1.gemspec.orig 2014-09-08 22:00:06 UTC -+++ lita-3.3.1.gemspec +--- lita-4.3.0.gemspec.orig 2014-09-08 22:00:06 UTC ++++ lita-4.3.0.gemspec @@ -123,20 +123,6 @@ - !ruby/object:Gem::Version version: 1.5.2