Your message dated Wed, 09 May 2018 22:22:30 +0000
with message-id <e1fgxti-000fan...@fasolo.debian.org>
and subject line Bug#887586: fixed in node-on-finished 2.3.0-1
has caused the Debian Bug report #887586,
regarding mocha 4.0.1-3 causes build hangs in various build-rdeps
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)
--
887586: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=887586
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: node-chokidar
Version: 1.7.0-1
Severity: serious
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/node-chokidar.html
...
debian/rules override_dh_auto_test
make[1]: Entering directory '/build/1st/node-chokidar-1.7.0'
mocha -R spec
chokidar
✓ should expose public API methods
fs.watch (non-polling)
watch a directory
✓ should produce an instance of chokidar.FSWatcher
✓ should expose public API methods
✓ should emit `add` event when file was added (71ms)
✓ should emit `addDir` event when directory was added (79ms)
✓ should emit `change` event when file was changed
✓ should emit `unlink` event when file was removed (123ms)
✓ should emit `unlinkDir` event when a directory was removed (71ms)
✓ should emit `unlink` and `add` events when a file is renamed (174ms)
✓ should emit `add`, not `change`, when previously deleted file is
re-added (195ms)
✓ should not emit `unlink` for previously moved files (425ms)
✓ should survive ENOENT for missing subdirectories
✓ should notice when a file appears in a new directory
✓ should watch removed and re-added directories (1527ms)
watch individual files
✓ should detect changes
✓ should detect unlinks (156ms)
✓ should detect unlink and re-add (264ms)
✓ should ignore unwatched siblings (59ms)
renamed directory
✓ should emit `add` for a file in a renamed directory (1026ms)
watch non-existent paths
✓ should watch non-existent file and detect add (58ms)
✓ should watch non-existent dir and detect addDir/add (126ms)
watch glob patterns
✓ should correctly watch and emit based on glob input (83ms)
✓ should respect negated glob patterns (165ms)
✓ should traverse subdirs to match globstar patterns (276ms)
✓ should resolve relative paths with glob patterns (110ms)
✓ should correctly handle conflicting glob patterns (165ms)
✓ should correctly handle intersecting glob patterns (61ms)
✓ should not confuse glob-like filenames with globs (119ms)
✓ should treat glob-like directory names as literal directory names
when globbing is disabled (63ms)
✓ should treat glob-like filenames as literal filenames when globbing
is disabled (58ms)
✓ should not prematurely filter dirs against complex globstar patterns
(103ms)
✓ should emit matching dir events (38ms)
watch symlinks
✓ should watch symlinked dirs
✓ should watch symlinked files
✓ should follow symlinked files within a normal dir
✓ should watch paths with a symlinked parent
✓ should not recurse indefinitely on circular symlinks
✓ should recognize changes following symlinked dirs
✓ should follow newly created symlinks (77ms)
✓ should watch symlinks as files when followSymlinks:false
✓ should watch symlinks within a watched dir as files when
followSymlinks:false (360ms)
✓ should not reuse watcher when following a symlink to elsewhere (112ms)
✓ should properly match glob patterns that include a symlinked dir
watch arrays of paths/globs
✓ should watch all paths in an array
✓ should accommodate nested arrays in input
✓ should throw if provided any non-string paths
watch options
ignoreInitial
false
✓ should emit `add` events for preexisting files
✓ should emit `addDir` event for watched dir
✓ should emit `addDir` events for preexisting dirs
true
✓ should ignore inital add events (54ms)
✓ should ignore add events on a subsequent .add() (1007ms)
✓ should notice when a file appears in an empty directory
✓ should emit a change on a preexisting file as a change
✓ should not emit for preexisting dirs when depth is 0 (414ms)
ignored
✓ should check ignore after stating
✓ should not choke on an ignored watch path
✓ should ignore the contents of ignored dirs (361ms)
✓ should allow regex/fn ignores (70ms)
depth
✓ should not recurse if depth is 0
✓ should recurse to specified depth (79ms)
✓ should respect depth setting when following symlinks (70ms)
✓ should respect depth setting when following a new symlink
✓ should correctly handle dir events when depth is 0 (70ms)
atomic
✓ should ignore vim/emacs/Sublime swapfiles (913ms)
✓ should ignore stale tilde files (61ms)
cwd
✓ should emit relative paths based on cwd (117ms)
✓ should emit `addDir` with alwaysStat for renamed directory (1019ms)
✓ should allow separate watchers to have different cwds (181ms)
✓ should ignore files even with cwd (66ms)
ignorePermissionErrors
false
✓ should not watch files without read permissions (513ms)
true
✓ should watch unreadable files if possible
✓ should not choke on non-existent files
awaitWriteFinish
✓ should use default options if none given
✓ should not emit add event before a file is fully written (207ms)
✓ should wait for the file to be fully written before emitting the
add event (516ms)
✓ should emit with the final stats (819ms)
✓ should not emit change event while a file has not been fully
written (307ms)
✓ should not emit change event before an existing file is fully
updated (309ms)
✓ should wait for an existing file to be fully updated before
emitting the change event (512ms)
✓ should emit change event after the file is fully written (1086ms)
✓ should not raise any event for a file that was deleted before fully
written (815ms)
✓ should be compatible with the cwd option (1194ms)
✓ should still emit initial add events (59ms)
✓ should emit an unlink event when a file is updated and deleted just
after that (286ms)
getWatched
✓ should return the watched paths
✓ should set keys relative to cwd & include added paths
unwatch
✓ should stop watching unwatched paths (362ms)
✓ should ignore unwatched paths that are a subset of watched paths
(420ms)
✓ should unwatch relative paths (360ms)
✓ should watch paths that were unwatched and added again (161ms)
✓ should unwatch paths that are relative to options.cwd (372ms)
close
✓ should ignore further events on close (914ms)
✓ should not prevent the process from exiting (362ms)
env variable option override
CHOKIDAR_USEPOLLING
✓ should make options.usePolling `true` when CHOKIDAR_USEPOLLING is
set to true
✓ should make options.usePolling `true` when CHOKIDAR_USEPOLLING is
set to 1
✓ should make options.usePolling `false` when CHOKIDAR_USEPOLLING is
set to false
✓ should make options.usePolling `false` when CHOKIDAR_USEPOLLING is
set to 0
✓ should not attenuate options.usePolling when CHOKIDAR_USEPOLLING is
set to an arbitrary value
CHOKIDAR_INTERVAL
✓ should make options.interval = CHOKIDAR_INTERVAL when it is set
fs.watchFile (polling)
watch a directory
✓ should produce an instance of chokidar.FSWatcher
✓ should expose public API methods
✓ should emit `add` event when file was added (65ms)
✓ should emit `addDir` event when directory was added (70ms)
✓ should emit `change` event when file was changed
✓ should emit `unlink` event when file was removed
✓ should emit `unlinkDir` event when a directory was removed (68ms)
✓ should emit `unlink` and `add` events when a file is renamed (70ms)
✓ should emit `add`, not `change`, when previously deleted file is
re-added (79ms)
✓ should not emit `unlink` for previously moved files (318ms)
✓ should survive ENOENT for missing subdirectories
✓ should notice when a file appears in a new directory
✓ should watch removed and re-added directories (1537ms)
watch individual files
✓ should detect changes
✓ should detect unlinks (69ms)
✓ should detect unlink and re-add (166ms)
✓ should ignore unwatched siblings (58ms)
renamed directory
✓ should emit `add` for a file in a renamed directory (1016ms)
watch non-existent paths
✓ should watch non-existent file and detect add (72ms)
✓ should watch non-existent dir and detect addDir/add (122ms)
watch glob patterns
✓ should correctly watch and emit based on glob input (83ms)
✓ should respect negated glob patterns (75ms)
✓ should traverse subdirs to match globstar patterns (148ms)
✓ should resolve relative paths with glob patterns (101ms)
✓ should correctly handle conflicting glob patterns (74ms)
✓ should correctly handle intersecting glob patterns (73ms)
✓ should not confuse glob-like filenames with globs (116ms)
✓ should treat glob-like directory names as literal directory names
when globbing is disabled (73ms)
✓ should treat glob-like filenames as literal filenames when globbing
is disabled (55ms)
✓ should not prematurely filter dirs against complex globstar patterns
(88ms)
✓ should emit matching dir events
watch symlinks
✓ should watch symlinked dirs
✓ should watch symlinked files
✓ should follow symlinked files within a normal dir
✓ should watch paths with a symlinked parent
✓ should not recurse indefinitely on circular symlinks
✓ should recognize changes following symlinked dirs
✓ should follow newly created symlinks (73ms)
✓ should watch symlinks as files when followSymlinks:false
✓ should watch symlinks within a watched dir as files when
followSymlinks:false (1226ms)
✓ should not reuse watcher when following a symlink to elsewhere (983ms)
✓ should properly match glob patterns that include a symlinked dir
watch arrays of paths/globs
✓ should watch all paths in an array
✓ should accommodate nested arrays in input
✓ should throw if provided any non-string paths
watch options
ignoreInitial
false
✓ should emit `add` events for preexisting files
✓ should emit `addDir` event for watched dir
✓ should emit `addDir` events for preexisting dirs (57ms)
true
✓ should ignore inital add events (58ms)
✓ should ignore add events on a subsequent .add() (1002ms)
✓ should notice when a file appears in an empty directory
✓ should emit a change on a preexisting file as a change
✓ should not emit for preexisting dirs when depth is 0 (424ms)
ignored
✓ should check ignore after stating
✓ should not choke on an ignored watch path
✓ should ignore the contents of ignored dirs (370ms)
✓ should allow regex/fn ignores (62ms)
depth
✓ should not recurse if depth is 0
✓ should recurse to specified depth (76ms)
✓ should respect depth setting when following symlinks (78ms)
✓ should respect depth setting when following a new symlink
✓ should correctly handle dir events when depth is 0 (90ms)
atomic
✓ should ignore vim/emacs/Sublime swapfiles (907ms)
✓ should ignore stale tilde files (58ms)
cwd
✓ should emit relative paths based on cwd
✓ should emit `addDir` with alwaysStat for renamed directory (1091ms)
✓ should allow separate watchers to have different cwds (165ms)
✓ should ignore files even with cwd (161ms)
ignorePermissionErrors
false
✓ should not watch files without read permissions (653ms)
true
✓ should watch unreadable files if possible (138ms)
✓ should not choke on non-existent files
awaitWriteFinish
✓ should use default options if none given
✓ should not emit add event before a file is fully written (231ms)
✓ should wait for the file to be fully written before emitting the
add event (757ms)
✓ should emit with the final stats (895ms)
✓ should not emit change event while a file has not been fully
written (313ms)
✓ should not emit change event before an existing file is fully
updated (381ms)
✓ should wait for an existing file to be fully updated before
emitting the change event (579ms)
✓ should emit change event after the file is fully written (1115ms)
✓ should not raise any event for a file that was deleted before fully
written (825ms)
✓ should be compatible with the cwd option (1179ms)
✓ should still emit initial add events
✓ should emit an unlink event when a file is updated and deleted just
after that (220ms)
getWatched
✓ should return the watched paths
✓ should set keys relative to cwd & include added paths
unwatch
✓ should stop watching unwatched paths (380ms)
✓ should ignore unwatched paths that are a subset of watched paths
(441ms)
✓ should unwatch relative paths (388ms)
✓ should watch paths that were unwatched and added again (185ms)
✓ should unwatch paths that are relative to options.cwd (429ms)
close
✓ should ignore further events on close (926ms)
✓ should not prevent the process from exiting (880ms)
env variable option override
CHOKIDAR_USEPOLLING
✓ should make options.usePolling `true` when CHOKIDAR_USEPOLLING is
set to true (126ms)
✓ should make options.usePolling `true` when CHOKIDAR_USEPOLLING is
set to 1
✓ should make options.usePolling `false` when CHOKIDAR_USEPOLLING is
set to false
✓ should make options.usePolling `false` when CHOKIDAR_USEPOLLING is
set to 0
✓ should not attenuate options.usePolling when CHOKIDAR_USEPOLLING is
set to an arbitrary value (39ms)
CHOKIDAR_INTERVAL
✓ should make options.interval = CHOKIDAR_INTERVAL when it is set
197 passing (46s)
Wed Jan 3 16:30:12 UTC 2018 - pbuilder was killed by timeout after 18h.
Wed Jan 3 16:30:14 UTC 2018 I:
https://tests.reproducible-builds.org/debian/unstable/amd64/node-chokidar :
reproducible ➤ FTBFS
Wed Jan 3 16:30:16 UTC 2018 - total duration: 18h 0m 31s.
--- End Message ---
--- Begin Message ---
Source: node-on-finished
Source-Version: 2.3.0-1
We believe that the bug you reported is fixed in the latest version of
node-on-finished, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 887...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Bastien Roucariès <ro...@debian.org> (supplier of updated node-on-finished
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Wed, 09 May 2018 23:48:43 +0200
Source: node-on-finished
Binary: node-on-finished
Architecture: source
Version: 2.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers
<pkg-javascript-de...@lists.alioth.debian.org>
Changed-By: Bastien Roucariès <ro...@debian.org>
Description:
node-on-finished - calls back on request close, finish or error - Node.js
module
Closes: 878776 887586 894948
Changes:
node-on-finished (2.3.0-1) unstable; urgency=medium
.
* Team upload
* Use dpkg module for ee-first (do not patch)
* Move to git dpm
* New upstream release
* Bug fix: "please drop transitional package node-finished", thanks to
Holger Levsen (Closes: #878776).
* Bump compat and policy (no changes)
* Bug fix: "mocha 4.0.1-3 causes build hangs in various build-rdeps",
thanks to Adrian Bunk (Closes: #887586).
* Bug fix: "Quoting fixed in autopkgtest 5.2", thanks to Graham Inggs
(Closes: #894948).
Checksums-Sha1:
0fd0ec620921bd8cea7a78614cdfa7c5d6a22747 2505 node-on-finished_2.3.0-1.dsc
ab938b3740a20939184d654916361256a41b4ed7 3580
node-on-finished_2.3.0.orig-module-ee-first.tar.gz
f0d703466fb4f732d67ada7dfefeb07308f9b180 7234
node-on-finished_2.3.0.orig.tar.gz
f002dc2a9f8fe87176df279bf24d0aa242d2e020 4076
node-on-finished_2.3.0-1.debian.tar.xz
664e9166edfd2f6113cc6ec9146040ea7b5ecad9 8856
node-on-finished_2.3.0-1_source.buildinfo
Checksums-Sha256:
6cb35cd90dd2d87fe8660138b4e9151ad6499da7cac9c24b8ce2158dcfc27a22 2505
node-on-finished_2.3.0-1.dsc
e8be585be27a8accc56955c813df4bfdfc265d2bbcf07702ad51142ca5949be0 3580
node-on-finished_2.3.0.orig-module-ee-first.tar.gz
7ad1ec24b6f814e370cd0f2b89368d8d32375f69fa7e1c3a642b97422c780d8f 7234
node-on-finished_2.3.0.orig.tar.gz
60efb934d0bf01fa651b2e99c1191cdf6f8bca5c1656f07ba6f247b70dda8366 4076
node-on-finished_2.3.0-1.debian.tar.xz
71d644370b3f8d9859848e29b39798f2914b0cd1fb8fae65bda89328f42fb693 8856
node-on-finished_2.3.0-1_source.buildinfo
Files:
92afc7f133de30f79f9e57d71ac89b7d 2505 javascript optional
node-on-finished_2.3.0-1.dsc
5fa52345b9afe6321f89aa1e12a842c8 3580 javascript optional
node-on-finished_2.3.0.orig-module-ee-first.tar.gz
884f45278df9165fc23b3804b4d4778c 7234 javascript optional
node-on-finished_2.3.0.orig.tar.gz
cabdcc594c40ef3ef904bc45b7baf075 4076 javascript optional
node-on-finished_2.3.0-1.debian.tar.xz
1b768d9dad052d0848abb57a3f2cceca 8856 javascript optional
node-on-finished_2.3.0-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCgAdFiEEXQGHuUCiRbrXsPVqADoaLapBCF8FAlrzctUACgkQADoaLapB
CF8Brg//X8t+4MqPN2ekHr4mWfurWODIlTB+g/C+is8TTCMF6n//BdaCDjohj50J
ue1KFBtAXTKQY/5+pPM1k6+B6nRU9wQKycRDjSFAWygxYBx3FUP8AQYWauvu23Z3
/q8/PFqnjDiWJdAdlF1/2Wzs7n6D0jjoyaGMiAcklo4hU+FhxSU3wOqYxwWxpe7p
Nobq9lsbXjIyLMM1az4+TJT/0ou6Tn4OBJ3N560VFluBDdi2aQzhPsdX/9vvTpjX
ZqYABVLdIi8s9F3vq3ZL2WcFV91GBumRCqI2jzfNf5DeQ5V379a/eLY1qfkIh8C1
+q5871dj65qGud74QEerCgOP1XsYvsHRcmi15lfRSZQL9AvGm6UaEbLb2GcgLpCQ
qfa5l2wuzo8LuYEeMjMhJHfLjjAjgV8cXgUU0SgKvGgctEjuZN6WQQ0NUnqqvARo
YCbKb/LCeJKgsDpEZZdUmSXzZe7au1cZEyQ+JKa861SPXHDy+8A1O100hldOStls
8ns1YkMBuqb+6ERNgBmgjRV3x9+a9m7X9FeB949ht+/pCaiySNFVxb7OqWWTAnG0
hcczujpLJinqfyjV8LME5t/KEJgLMogbudO8MFasP56Ieo2GN4OPXBu11LmtBdeX
YafMvHQT471uILfchqRT+MpNztN/CLv5G252IuUmvYtnVKauVa0=
=2C81
-----END PGP SIGNATURE-----
--- End Message ---