Commit graph

15 commits

Author SHA1 Message Date
taca
7ce426d055 sysutils/ruby-listen: clean up RUBY_VERSIONS_ACCEPTED
Remove unnecessary RUBY_VERSIONS_ACCEPTED and including rubyversion.mk.
2017-09-19 16:34:55 +00:00
taca
c136fff011 Add 24 to RUBY_VERSIONS_ACCEPTED. 2017-06-18 13:48:53 +00:00
taca
8443eeecbc Now depends on both ruby-rb-fsevent and ruby-rb-inotify since it really
require both package's codes.

Bump PKGREVISION.
2017-01-09 15:02:31 +00:00
taca
9b95cc26a9 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
2016-10-20 14:55:53 +00:00
taca
1fe558d3f4 Update ruby-listen to 3.0.8, latest 3.0.x release.
v3.0.7

Backports

* #385 - backport #383 (allow stopping when not fully initialized)

v3.0.8

Bugfixes:

* prevent crash when stopping uninitialized listener 2c78999
* prevent crash when stopping uninitialized adapter 8b06d2c
* #392 - Change rb-fsevent dependency to work on OS X 10.6-10.8
* get JRuby to fail with ENOTDIR like MRI does c3a8cbb
* avoid unkillable thread problem on JRuby e86dccf
* explicitly require forwardable (in case of further backports) 51d7706
2016-10-17 14:19:34 +00:00
taca
a850ebdc30 Update ruby-listen to 3.0.6.
pkgsrc change:
* Depend on ruby-rb-fsevent Darwin.

Bugfixes

* #364 - fix broken dependency (rb-inotify gem version 0.9.6 was removed from
   RubyGems) - thanks, @benja83 !
2016-03-15 15:35:52 +00:00
taca
7af9189e89 Update ruby-listen to 3.0.5.
v3.0.5

Bugfixes

* #359 - implement Adapter#stop to free resources on Linux
* #358 - rescan directory to avoid crashes when files deleted during scan
* #356 - fix error in exception handling (bad arguments passed when building
  message)


v3.0.4

Bugfixes

* fix #351 - where OSX adapter couldn't listen to more than 2 given
  directories
2015-12-13 15:12:04 +00:00
agc
17886c78da Add SHA512 digests for distfiles for sysutils category
Problems found with existing digests:
	Package memconf distfile memconf-2.16/memconf.gz
	b6f4b736cac388dddc5070670351cf7262aba048 [recorded]
	95748686a5ad8144232f4d4abc9bf052721a196f [calculated]

Problems found locating distfiles:
	Package dc-tools: missing distfile dc-tools/abs0-dc-burn-netbsd-1.5-0-gae55ec9
	Package ipw-firmware: missing distfile ipw2100-fw-1.2.tgz
	Package iwi-firmware: missing distfile ipw2200-fw-2.3.tgz
	Package nvnet: missing distfile nvnet-netbsd-src-20050620.tgz
	Package syslog-ng: missing distfile syslog-ng-3.7.2.tar.gz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-04 01:32:05 +00:00
taca
1abd44dafa Update ruby-listen to 3.0.3.
pkgsrc change: add pkg_alternatives support.

v3.0.3

Improvements

* #330 - fixed warnings on JRuby


v3.0.2

Bugfixes

* fix #328 - add missing require which crashed Listen on OSX (thanks to @noahsw for reporting)


v3.0.1

Bugfixes

* #325, #327 - fix regressions (allow Listen to run correctly without other
   deps + properly handle pause())


v3.0.0

KNOWN ISSUES

* #319, #258 - TCP is no longer part of Listen, and there's currently no
   alternative except downgrading to Listen 2.x

API CHANGES

* TCP functionality removed (Listen.on, Adapter::TCP,
  Adapter::TCP::Broadcaster, etc.)
* Listener#start should be used instead of Listener#unpause
* Listener#directories is no longer available
* Listener#options is no longer available as public API

IMPROVEMENTS

* Major performance improvements (CPU), especially for Polling
* Celluloid is no longer required by Listen (which means: better performance,
  less dependencies, less threads used, less version conflicts, easier
  debugging, less potential issues/bugs)
* TCP is no longer part of Listen (which means: more maintainable codebase and
  possibility to create much better TCP implementation without the tradeoffs)

Development

* major codebase rewrite
* better logging by default
2015-10-04 13:26:10 +00:00
taca
112d99a663 Update ruby-listen to 2.10.1, latest 2.10 release.
v2.10.1

* #320 - latency option was completely ignored for both OSX and when Polling
* #302 - fix bug related to move_to/move_from breaking TCP functionality
2015-09-13 15:14:46 +00:00
taca
a711f5aa0a Update ruby-listen to 2.10.0.
v2.10.0
@e2 e2 released this on 27 Mar, 6 commits to master since this release

Major changes

* #304 - lock to Cellulloid 0.16 (if you need Celluloid 0.15, use Listen 2.9.0 and ask for backports if necessary)

Bugfixes

* #301 - avoid BSD adapter crash when watched file doesn't exist

Improvements

* #303 - allow listen tool to watch multiple directories
2015-06-10 14:53:09 +00:00
jperkin
d8b7e53959 Remove NOT_FOR_PLATFORM, builds fine on Darwin for me. 2015-04-16 10:53:14 +00:00
taca
c84c41ec46 Update ruby-listen to 2.9.0.
Changes are too many to write here, please refer:
https://github.com/guard/listen/releases.
2015-03-13 16:05:19 +00:00
dholland
eb3d5c8ffb Says it doesn't support ruby18 if you try to build it, so mark it
accordingly.

(Is there any reason there isn't there a RUBY_VERSIONS_INCOMPATIBLE
variable like we have for python and lua and in other similar
situations?)
2014-06-28 23:05:12 +00:00
bsiegert
c1d3d883be Add new package, ruby-listen-2.7.5. From DESCR:
The Listen gem listens to file modifications and notifies you about the
changes.
2014-05-31 16:42:53 +00:00