Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id D0FAA7A28E for ; Thu, 20 Oct 2016 14:55:54 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 4907F85E79; Thu, 20 Oct 2016 14:55:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CCF9D85E6F for ; Thu, 20 Oct 2016 14:55:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PMGnrVIWLMB9 for ; Thu, 20 Oct 2016 14:55:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3E65F84CEF for ; Thu, 20 Oct 2016 14:55:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3994EFBD2; Thu, 20 Oct 2016 14:55:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1476975353118200" MIME-Version: 1.0 Date: Thu, 20 Oct 2016 14:55:53 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/sysutils/ruby-listen To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20161020145553.3994EFBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1476975353118200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Thu Oct 20 14:55:53 UTC 2016 Modified Files: pkgsrc/sysutils/ruby-listen: Makefile distinfo Log Message: Update ruby-listen to 3.1.5. Restrict to ruby22 and ruby23. v3.1.5 Bugfixes * #394 prevent crashes when Listen is stopped too soon (e.g. before being started or initialized) v3.1.4 Bugfixes * #393 - relaxed rb-fsevent dependency to allow install on older OSX releases (thanks to @robmckinnon) v3.1.3 Bug fixes * #387 - fix JRuby support both in dependencies (by allowing Ruby 2.2.3) and behavior (JRuby Dir.entries workaround) * #387 - prevent JRuby from hanging when stopping on Linux (and Travis) * #387 - activate JRuby-9.0.5.0 on Travis to declare support for JRuby (tests are flaky, but that's due to timing issues) v3.1.2 Security enhancements * #377 require at least Ruby 2.2.4 to avoid CVE-2015-7551 (see https://www.ruby-lang.org/en/news/2015/12/16/ruby-2-2-4-released/) Bugfixes * #383 allow stopping when not fully initialized (fixes guard/guard#822 (comment)) Improvements * #378 warn users if their Ruby is buggy or vulnerable (controversial to some, but very extensively justified) Development * #377 use ruby_dep for managing ruby requirements * #379 make RuboCop pass (thanks to @jvanbaarsen) * #384 avoid rubygems duplicate dependency error (gem given in both runtime and development dependencies) v3.1.1 Bugfixes * #373 explicitly require forwardable for delegation (fixes #372) v3.1.0 Bugfixes * #370 - gracefully fallback to polling on old older unsupported OSX versions (thanks to @vaz) Improvements * #371 - update dependency to Ruby 2.2.x since 2.1 and earlier are EOL (minor version bumped to 3.1 in case backporting is needed) Development * #371 - fix all RuboCop offenses to avoid noise during development To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/sysutils/ruby-listen/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/sysutils/ruby-listen/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1476975353118200 Content-Disposition: inline Content-Length: 2440 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/ruby-listen/Makefile diff -u pkgsrc/sysutils/ruby-listen/Makefile:1.10 pkgsrc/sysutils/ruby-listen/Makefile:1.11 --- pkgsrc/sysutils/ruby-listen/Makefile:1.10 Mon Oct 17 14:19:34 2016 +++ pkgsrc/sysutils/ruby-listen/Makefile Thu Oct 20 14:55:53 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2016/10/17 14:19:34 taca Exp $ +# $NetBSD: Makefile,v 1.11 2016/10/20 14:55:53 taca Exp $ -DISTNAME= listen-3.0.8 +DISTNAME= listen-3.1.5 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME} CATEGORIES= sysutils @@ -11,17 +11,18 @@ LICENSE= mit RUBYGEM_OPTIONS+= --format-executable +RUBY_VERSIONS_ACCEPTED= 22 23 + .include "../../lang/ruby/rubyversion.mk" .if ${OPSYS} == "Darwin" -DEPENDS+= ${RUBY_PKGPREFIX}-rb-fsevent>=0.9.7:../../devel/ruby-rb-fsevent +DEPENDS+= ${RUBY_PKGPREFIX}-rb-fsevent>=0.9.4:../../devel/ruby-rb-fsevent OVERRIDE_GEMSPEC+= rb-inotify: .else -DEPENDS+= ${RUBY_PKGPREFIX}-rb-inotify>=0.9:../../sysutils/ruby-rb-inotify +DEPENDS+= ${RUBY_PKGPREFIX}-rb-inotify>=0.9.7:../../sysutils/ruby-rb-inotify OVERRIDE_GEMSPEC+= rb-fsevent: .endif -# ruby-listen 3.1.5 require ruby-dep but www/ruby-jekyll-watch require <3.1 -#DEPENDS+= ${RUBY_PKGPREFIX}-dep>=1.2:../../devel/ruby-dep +DEPENDS+= ${RUBY_PKGPREFIX}-dep>=1.2:../../devel/ruby-dep .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/sysutils/ruby-listen/distinfo diff -u pkgsrc/sysutils/ruby-listen/distinfo:1.9 pkgsrc/sysutils/ruby-listen/distinfo:1.10 --- pkgsrc/sysutils/ruby-listen/distinfo:1.9 Mon Oct 17 14:19:34 2016 +++ pkgsrc/sysutils/ruby-listen/distinfo Thu Oct 20 14:55:53 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2016/10/17 14:19:34 taca Exp $ +$NetBSD: distinfo,v 1.10 2016/10/20 14:55:53 taca Exp $ -SHA1 (listen-3.0.8.gem) = 8770bbc190e9818dc7b8282bf0ededfe12daaa38 -RMD160 (listen-3.0.8.gem) = 3ef89860e69a385a6d3f3e60c1c37996255baa3f -SHA512 (listen-3.0.8.gem) = f87505b870e65638847b901736168f859b92b7ce7adca438880e81dd373d80dd311059eaed9d836ff77519a275560492c70811f3b386696a9e302936c5b8f0cf -Size (listen-3.0.8.gem) = 27648 bytes +SHA1 (listen-3.1.5.gem) = 2d7009cc609271ada6f2844528b9d2255c9d8e9e +RMD160 (listen-3.1.5.gem) = ea948aa7292c80ecb05ad1e2dd30d5daf684d67a +SHA512 (listen-3.1.5.gem) = 4571fbc713bee26b1ee392e9eba496f51c2445d4bd830a432bf225671332c6d3ba610639354d2e8856585a257e078e8e8e17f97c23b9ccf4054c4f1227e16a9f +Size (listen-3.1.5.gem) = 27648 bytes --_----------=_1476975353118200--