Skip to content

Commit

Permalink
Update ruby-listen to 3.1.5.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
taca committed Oct 20, 2016
1 parent 06a45a9 commit 3d1447a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
13 changes: 7 additions & 6 deletions sysutils/ruby-listen/Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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"
10 changes: 5 additions & 5 deletions sysutils/ruby-listen/distinfo
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3d1447a

Please sign in to comment.