pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/ruby-listen sysutils/ruby-listen: update to 3...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f5c66f279bd0
branches:  trunk
changeset: 444906:f5c66f279bd0
user:      taca <taca%pkgsrc.org@localhost>
date:      Thu Jan 14 14:28:27 2021 +0000

description:
sysutils/ruby-listen: update to 3.4.0

pkgsrc changes: add "USE_LANGUAGES=     # none".


3.4.0 (2020-12-31)

* Issue #510: use monotonic tick count (#512) @ColinDKelley

3.3.4 (2020-12-31)

* Don't return incorrect files when there's a file whose name matches a
  dir (#526) @ghiculescu
* added correct link to help debug inotify workers error on linux (#527)
  @williamkennedy
* issue #473: use sudo sh -c so redirection works (#525) @ColinDKelley
* issue #473: update README for setting fs.inotify.max_user_watches (#522)
  @ColinDKelley
* issue #451: change windows install instructions to suggest platforms:
  instead of Gem.win_platform? (#523) @ColinDKelley
* put missing wiki content into README (#521) @ColinDKelley

3.3.3 (2020-11-30)

* Add project metadata to the gemspec (#519) @orien

3.3.2 (2020-11-28)

* Issue #504: tune .rubocop.yml and source code to make it pass all cops
  (#508) @ColinDKelley
* Fix description typo (#515) @ccouzens

3.3.1 (2020-11-13)

* issue #513: allow stop when not started (#514) @ColinDKelley

3.3.0 (2020-11-10)

New Features

* Use file size to check for modifications (#336) @marawan31
* Ignore mutagen sync temporary files (#469) @nilbus
* Add GitHub Actions for development workflow. (#485) @ioquatix
* Allow Ruby 3 (#490) @yahonda
* Add Truffleruby head to CI (#493, #507) @gogainda
* Add magic # frozen_string_literal: true comment (#494) @ColinDKelley

Bug Fixes

* Fix: Linux driver listens for :modify events again (#450) @ColinDKelley
* Fix: Track removed subdirectories (#460) @bryanlira
* Use one fsevent_watch process per listener instead of one per dir (#471)
  @ioquatix
* Wrap Listener instances in WeakRef (#477) @jonathanhefner
* Include macOS Big Sur in Adapter::Darwin#usable? (#479) @christiankn
* Fix hanging race condition (#481, #500) @ColinDKelley
* Remove Listen::Internals::ThreadPool (#483) @jonathanhefner
* Tidy up thread killing. Remove JRuby workaround. (#484) @ioquatix
* Move thread caller stack and rescue+log to a common place (#487)
  @ColinDKelley
* Unify logging through Listen.logger; add missing logger_spec (#497)
  @ColinDKelley
* Rescue and log application exceptions raised from the Listen.to callback
  so listening doesn't break in process (#505) @ColinDKelley

diffstat:

 sysutils/ruby-listen/Makefile |   7 ++++---
 sysutils/ruby-listen/PLIST    |   5 +++--
 sysutils/ruby-listen/distinfo |  10 +++++-----
 3 files changed, 12 insertions(+), 10 deletions(-)

diffs (65 lines):

diff -r 28f13896c6fb -r f5c66f279bd0 sysutils/ruby-listen/Makefile
--- a/sysutils/ruby-listen/Makefile     Thu Jan 14 14:23:34 2021 +0000
+++ b/sysutils/ruby-listen/Makefile     Thu Jan 14 14:28:27 2021 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2020/03/24 16:40:19 taca Exp $
+# $NetBSD: Makefile,v 1.17 2021/01/14 14:28:27 taca Exp $
 
-DISTNAME=      listen-3.2.1
-PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME}
+DISTNAME=      listen-3.4.0
 CATEGORIES=    sysutils
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -12,6 +11,8 @@
 DEPENDS+=      ${RUBY_PKGPREFIX}-rb-fsevent>=0.10.3:../../devel/ruby-rb-fsevent
 DEPENDS+=      ${RUBY_PKGPREFIX}-rb-inotify>=0.9.10:../../devel/ruby-rb-inotify
 
+USE_LANGUAGES= # none
+
 RUBYGEM_OPTIONS+=      --format-executable
 
 .include "../../lang/ruby/gem.mk"
diff -r 28f13896c6fb -r f5c66f279bd0 sysutils/ruby-listen/PLIST
--- a/sysutils/ruby-listen/PLIST        Thu Jan 14 14:23:34 2021 +0000
+++ b/sysutils/ruby-listen/PLIST        Thu Jan 14 14:28:27 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2015/10/04 13:26:10 taca Exp $
+@comment $NetBSD: PLIST,v 1.4 2021/01/14 14:28:27 taca Exp $
 bin/listen${RUBY_SUFFIX}
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/CHANGELOG.md
@@ -25,10 +25,10 @@
 ${GEM_LIBDIR}/lib/listen/event/queue.rb
 ${GEM_LIBDIR}/lib/listen/file.rb
 ${GEM_LIBDIR}/lib/listen/fsm.rb
-${GEM_LIBDIR}/lib/listen/internals/thread_pool.rb
 ${GEM_LIBDIR}/lib/listen/listener.rb
 ${GEM_LIBDIR}/lib/listen/listener/config.rb
 ${GEM_LIBDIR}/lib/listen/logger.rb
+${GEM_LIBDIR}/lib/listen/monotonic_time.rb
 ${GEM_LIBDIR}/lib/listen/options.rb
 ${GEM_LIBDIR}/lib/listen/queue_optimizer.rb
 ${GEM_LIBDIR}/lib/listen/record.rb
@@ -36,5 +36,6 @@
 ${GEM_LIBDIR}/lib/listen/record/symlink_detector.rb
 ${GEM_LIBDIR}/lib/listen/silencer.rb
 ${GEM_LIBDIR}/lib/listen/silencer/controller.rb
+${GEM_LIBDIR}/lib/listen/thread.rb
 ${GEM_LIBDIR}/lib/listen/version.rb
 ${GEM_HOME}/specifications/${GEM_NAME}.gemspec
diff -r 28f13896c6fb -r f5c66f279bd0 sysutils/ruby-listen/distinfo
--- a/sysutils/ruby-listen/distinfo     Thu Jan 14 14:23:34 2021 +0000
+++ b/sysutils/ruby-listen/distinfo     Thu Jan 14 14:28:27 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.11 2020/03/24 16:40:19 taca Exp $
+$NetBSD: distinfo,v 1.12 2021/01/14 14:28:27 taca Exp $
 
-SHA1 (listen-3.2.1.gem) = 089b7d1ad1d502c0db94ac37776d5713d8b53dce
-RMD160 (listen-3.2.1.gem) = 1b2cdb16f511cd89f88c0cb86345a4c4a2ca6b65
-SHA512 (listen-3.2.1.gem) = b15ddcf9783f8c22e79bfe2615b8d2ecaa4ed0410000a0ba8e790a400ba3e7744b58c264cbc36e0235dbc60546d94d9d9548719370f9d5e1e959ea28b241d661
-Size (listen-3.2.1.gem) = 28160 bytes
+SHA1 (listen-3.4.0.gem) = ac9fdcc751b51608d67a3729758cd2c1057444ef
+RMD160 (listen-3.4.0.gem) = 50ff7d32777c287354d350af6f809ed2e711b78b
+SHA512 (listen-3.4.0.gem) = 71ee97d956f57be4e5ae61ce946fc9c436fd1b098d17e626bb23f8fc00ef14792a24ea3e1e5c2e020c590b06f16d4291e62c0353778defc0168d15ded2891650
+Size (listen-3.4.0.gem) = 30208 bytes



Home | Main Index | Thread Index | Old Index