[Pkg-javascript-devel] Bug#1001632: rainloop: FTBFS with webpack5: Invalid webpack options

Ayoyimika Ajibade ayoyimikaajibade at gmail.com
Mon Dec 13 13:28:00 GMT 2021


Source: rainloop
Version: 1.16.0+dfsg-1
Severity: important
Justification: ftbfs
Tags: ftbfs
User: pkg-javascript-devel at alioth-lists.debian.net
Usertags: webpack5


Hi,

We are starting to build against webpack5 in experimental and the 
package needed for local build is webpack and node-webpack-source from 
experimental.
During a test rebuild, rainloop was found to fail to build in that 
situation.

Relevant part (hopefully):

debian/rules build
make: 'build' is up to date.
  fakeroot debian/rules binary
dh binary
    dh_update_autotools_config
    dh_autoreconf
    dh_auto_configure
         install -d 
/<<BUILDDIR>>/rainloop-1.16.0\+dfsg/debian/.debhelper/generated/_source/home
    debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
gulp rainloop
[12:41:42] Local modules not found in /<<PKGBUILDDIR>>
[12:41:42] Try running: npm install
[12:41:42] Using globally installed gulp
[12:41:44] Using gulpfile /<<PKGBUILDDIR>>/gulpfile.js
[12:41:44] Starting 'rainloop'...
[12:41:44] Starting '<anonymous>'...
[12:41:44] Finished '<anonymous>' after 9.16 ms
[12:41:44] Starting 'assetsCopy'...
[12:41:44] Finished 'assetsCopy' after 256 ms
[12:41:44] Starting 'jsClean'...
[12:41:44] Starting 'cssClean'...
[12:41:44] Starting 'momentLocalesClear'...
[12:41:44] Starting 'ckeditorClear'...
[12:41:44] Starting 'fontasticFontsClear'...
[12:41:44] Starting 'lightgalleryFontsClear'...
[12:41:44] Finished 'ckeditorClear' after 9.79 ms
[12:41:44] Starting 'ckeditorCopyPlugins'...
[12:41:44] Finished 'jsClean' after 26 ms
[12:41:44] Starting '<anonymous>'...
[12:41:45] '<anonymous>' errored after 1.05 s
[12:41:45] ValidationError in plugin 'webpack'
Message:
     Invalid configuration object. Webpack has been initialized using a 
configuration object that does not match the API schema.
  - configuration.module.rules[2] has an unknown property 'loaders'. 
These properties are valid:
object { assert?, compiler?, dependency?, descriptionData?, enforce?, 
exclude?, generator?, include?, issuer?, issuerLayer?, layer?, loader?, 
mimetype?, oneOf?, options?, parser?, realResource?, resolve?, 
resource?, resourceFragment?, resourceQuery?, rules?, scheme?, 
sideEffects?, test?, type?, use? }
    -> A rule description with conditions and effects for modules.
Details:
     errors: [object Object]
     schema: [object Object]
     headerName: Webpack
     baseDataPath: configuration
     postFormatter: (formattedError, error) => {
                                 const children = error.children;
                                 if (
                                         children &&
                                         children.some(
                                                 child =>
                                                         child.keyword 
=== "absolutePath" &&
                                                         child.dataPath 
=== ".output.filename"
                                         )
                                 ) {
                                         return 
`${formattedError}\nPlease use output.path to specify absolute path and 
output.filename for the file name.`;
                                 }

                                 if (
                                         children &&
                                         children.some(
                                                 child =>
                                                         child.keyword 
=== "pattern" && child.dataPath === ".devtool"
                                         )
                                 ) {
                                         return (
                                                 `${formattedError}\n` +
                                                 "BREAKING CHANGE since 
webpack 5: The devtool option is more strict.\n" +
                                                 "Please strictly follow 
the order of the keywords in the pattern."
                                         );
                                 }

                                 if (error.keyword === 
"additionalProperties") {
                                         const params =
                                                 /** @type 
{import("ajv").AdditionalPropertiesParams} */ (
                                                         error.params
                                                 );
                                         if (
 
Object.prototype.hasOwnProperty.call(
                                                         DID_YOU_MEAN,
 
params.additionalProperty
                                                 )
                                         ) {
                                                 return 
`${formattedError}\nDid you mean ${
 
DID_YOU_MEAN[params.additionalProperty]
                                                 }?`;
                                         }

                                         if (
 
Object.prototype.hasOwnProperty.call(
                                                         REMOVED,
 
params.additionalProperty
                                                 )
                                         ) {
                                                 return 
`${formattedError}\n${REMOVED[params.additionalProperty]}?`;
                                         }

                                         if (!error.dataPath) {
                                                 if 
(params.additionalProperty === "debug") {
                                                         return (
 
`${formattedError}\n` +
                                                                 "The 
'debug' property was removed in webpack 2.0.0.\n" +
 
"Loaders should be updated to allow passing this option via loader 
options in module.rules.\n" +
                                                                 "Until 
loaders are updated one can use the LoaderOptionsPlugin to switch 
loaders into debug mode:\n" +
 
"plugins: [\n" +
                                                                 "  new 
webpack.LoaderOptionsPlugin({\n" +
                                                                 " 
debug: true\n" +
                                                                 "  })\n" +
                                                                 "]"
                                                         );
                                                 }

                                                 if 
(params.additionalProperty) {
                                                         return (
 
`${formattedError}\n` +
                                                                 "For 
typos: please correct them.\n" +
                                                                 "For 
loader options: webpack >= v2.0.0 no longer allows custom properties in 
configuration.\n" +
                                                                 " 
Loaders should be updated to allow passing options via loader options in 
module.rules.\n" +
                                                                 " 
Until loaders are updated one can use the LoaderOptionsPlugin to pass 
these options to the loader:\n" +
                                                                 " 
plugins: [\n" +
                                                                 " 
new webpack.LoaderOptionsPlugin({\n" +
"      // test: /\\.xxx$/, // may apply this only for some modules\n" +
                                                                 " 
options: {\n" +
                                                                 ` 
  ${params.additionalProperty}: …\n` +
                                                                 " 
}\n" +
                                                                 " 
})\n" +
                                                                 "  ]"
                                                         );
                                                 }
                                         }
                                 }

                                 return formattedError;
                         }
     domainThrown: true
[12:41:45] 'rainloop' errored after 1.35 s
[12:41:45] The following tasks did not complete: <series>, <parallel>, 
cssClean, <series>, <series>, <series>, <series>, momentLocalesClear, 
fontasticFontsClear, lightgalleryFontsClear, ckeditorCopyPlugins
[12:41:45] Did you forget to signal async completion?
make[1]: *** [debian/rules:10: override_dh_auto_build] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:7: binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess 
returned exit status 2

The full log is attached to this mail
-------------- next part --------------
sbuild (Debian sbuild) 0.81.2 (31 January 2021) on Ayoyimika-PC.localdomain

+==============================================================================+
| rainloop 1.16.0+dfsg-1 (amd64)               Mon, 13 Dec 2021 12:40:40 +0000 |
+==============================================================================+

Package: rainloop
Version: 1.16.0+dfsg-1
Source Version: 1.16.0+dfsg-1
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
Build Type: binary

I: NOTICE: Log filtering will replace 'var/run/schroot/mount/unstable-amd64-sbuild-2405b0c6-f6be-41ef-805d-cad2ca465911' with '<<CHROOT>>'
I: NOTICE: Log filtering will replace 'build/rainloop-xTDkj3/resolver-UGPeD3' with '<<RESOLVERDIR>>'

+------------------------------------------------------------------------------+
| Update chroot                                                                |
+------------------------------------------------------------------------------+

Get:1 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ InRelease
Ign:1 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ InRelease
Get:2 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Release [951 B]
Get:2 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Release [951 B]
Get:3 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Release.gpg
Ign:3 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Release.gpg
Get:4 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Packages [799 B]
Err:4 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Packages
  Could not open file /build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive/./Packages - open (13: Permission denied)
Get:4 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ Packages [1381 B]
Get:5 http://deb.debian.org/debian unstable InRelease [165 kB]
Get:6 http://deb.debian.org/debian experimental InRelease [75.4 kB]
Get:7 http://deb.debian.org/debian unstable/main Sources.diff/Index [63.6 kB]
Get:8 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [63.6 kB]
Get:9 http://deb.debian.org/debian experimental/main Sources.diff/Index [63.3 kB]
Get:10 http://deb.debian.org/debian experimental/main amd64 Packages.diff/Index [63.3 kB]
Get:11 http://deb.debian.org/debian unstable/main Sources T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [164 kB]
Get:12 http://deb.debian.org/debian unstable/main amd64 Packages T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [193 kB]
Get:11 http://deb.debian.org/debian unstable/main Sources T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [164 kB]
Get:13 http://deb.debian.org/debian experimental/main Sources T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [23.3 kB]
Get:12 http://deb.debian.org/debian unstable/main amd64 Packages T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [193 kB]
Get:13 http://deb.debian.org/debian experimental/main Sources T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [23.3 kB]
Get:14 http://deb.debian.org/debian experimental/main amd64 Packages T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [58.2 kB]
Get:14 http://deb.debian.org/debian experimental/main amd64 Packages T-2021-12-13-0801.56-F-2021-12-09-1402.45.pdiff [58.2 kB]
Fetched 933 kB in 12s (80.8 kB/s)
Reading package lists...
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list.d/sbuild-extra-repositories.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list.d/sbuild-extra-repositories.list:1
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list.d/sbuild-extra-repositories.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list.d/sbuild-extra-repositories.list:1
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages were automatically installed and are no longer required:
  adwaita-icon-theme at-spi2-core ca-certificates dbus dbus-bin dbus-daemon
  dbus-session-bus-common dbus-system-bus-common dbus-user-session
  dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config
  fonts-dejavu-core gtk-update-icon-cache hicolor-icon-theme javascript-common
  libapparmor1 libargon2-1 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data
  libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libbsd0
  libcairo-gobject2 libcairo2 libcolord2 libcryptsetup12 libcups2 libdatrie1
  libdbus-1-3 libdconf1 libdeflate0 libdevmapper1.02.1 libepoxy0 libexpat1
  libfontconfig1 libfreetype6 libfribidi0 libgdk-pixbuf-2.0-0
  libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libglib2.0-0 libglib2.0-data
  libgraphite2-3 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b
  libip4tc2 libjbig0 libjpeg62-turbo libjs-highlight.js libjs-sprintf-js
  libjson-c5 libkmod2 liblcms2-2 libmd0 libnotify-bin libnotify4
  libnss-systemd libpam-systemd libpango-1.0-0 libpangocairo-1.0-0
  libpangoft2-1.0-0 libpixman-1-0 libpng16-16 librsvg2-2 librsvg2-common
  libthai-data libthai0 libtiff5 libwayland-client0 libwayland-cursor0
  libwayland-egl1 libwebp6 libx11-6 libx11-data libxau6 libxcb-render0
  libxcb-shm0 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6
  libxext6 libxfixes3 libxi6 libxinerama1 libxkbcommon0 libxml2 libxrandr2
  libxrender1 libxtst6 mocha node-ansi-colors node-ansi-escapes
  node-ansi-regex node-ansi-styles node-argparse node-bl node-browser-stdout
  node-camelcase node-chalk node-ci-info node-cli-cursor node-cli-spinners
  node-cli-width node-cliui node-clone node-color-convert node-color-name
  node-decamelize node-defaults node-diff node-end-of-stream
  node-escape-string-regexp node-esprima node-execa node-exit-hook
  node-external-editor node-find-up node-get-caller-file node-get-stream
  node-growl node-he node-iconv-lite node-inquirer node-invert-kv
  node-is-plain-obj node-is-stream node-isexe node-js-yaml node-jschardet
  node-lcid node-locate-path node-mem node-mimic-fn node-mute-stream
  node-npm-run-path node-os-locale node-p-locate node-path-exists node-pump
  node-require-directory node-require-main-filename node-restore-cursor
  node-run-async node-set-blocking node-shebang-command node-shebang-regex
  node-signal-exit node-slice-ansi node-source-map-support node-sprintf-js
  node-string-width node-strip-ansi node-strip-eof node-text-table
  node-through node-tmp node-wcwidth.js node-which node-which-module
  node-wide-align node-wrap-ansi node-y18n node-yargs node-yargs-parser
  nodejs-doc notification-daemon openssl sensible-utils shared-mime-info
  systemd systemd-sysv systemd-timesyncd ucf x11-common xdg-user-dirs xkb-data
Use 'apt autoremove' to remove them.
The following packages will be upgraded:
  gcc-9-base libatk1.0-0 libatk1.0-data libc-bin libc-dev-bin libc6 libc6-dev
  node-color-name node-escape-string-regexp node-inflight node-jest-worker
  node-js-yaml node-lodash node-lodash-packages node-mute-stream
  node-npm-run-path node-shebang-command webpack
18 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B/7984 kB of archives.
After this operation, 517 kB of additional disk space will be used.
Get:1 file:/build/rainloop-xTDkj3/resolver-O4gtCl/apt_archive ./ webpack 5.65.0+dfsg+~cs9.20.9-1 [621 kB]
debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 40893 files and directories currently installed.)
Preparing to unpack .../libc6-dev_2.33-1_amd64.deb ...
Unpacking libc6-dev:amd64 (2.33-1) over (2.32-5) ...
Preparing to unpack .../libc-dev-bin_2.33-1_amd64.deb ...
Unpacking libc-dev-bin (2.33-1) over (2.32-5) ...
Preparing to unpack .../libc6_2.33-1_amd64.deb ...
Unpacking libc6:amd64 (2.33-1) over (2.32-5) ...
Setting up libc6:amd64 (2.33-1) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 40898 files and directories currently installed.)
Preparing to unpack .../libc-bin_2.33-1_amd64.deb ...
Unpacking libc-bin (2.33-1) over (2.32-5) ...
Setting up libc-bin (2.33-1) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 40898 files and directories currently installed.)
Preparing to unpack .../00-gcc-9-base_9.4.0-4+b1_amd64.deb ...
Unpacking gcc-9-base:amd64 (9.4.0-4+b1) over (9.4.0-4) ...
Preparing to unpack .../01-libatk1.0-data_2.36.0-3_all.deb ...
Unpacking libatk1.0-data (2.36.0-3) over (2.36.0-2) ...
Preparing to unpack .../02-libatk1.0-0_2.36.0-3_amd64.deb ...
Unpacking libatk1.0-0:amd64 (2.36.0-3) over (2.36.0-2) ...
Preparing to unpack .../03-node-color-name_1.1.4+~1.1.1-2_all.deb ...
Unpacking node-color-name (1.1.4+~1.1.1-2) over (1.1.4+~1.1.1-1) ...
Preparing to unpack .../04-node-escape-string-regexp_4.0.0-2_all.deb ...
Unpacking node-escape-string-regexp (4.0.0-2) over (4.0.0-1) ...
Preparing to unpack .../05-node-inflight_1.0.6-2_all.deb ...
Unpacking node-inflight (1.0.6-2) over (1.0.6-1.1) ...
Preparing to unpack .../06-node-jest-worker_27.4.4~ds+~cs68.44.26-1_all.deb ...
Unpacking node-jest-worker (27.4.4~ds+~cs68.44.26-1) over (27.4.3~ds+~cs68.44.26-1) ...
Preparing to unpack .../07-node-js-yaml_4.1.0+dfsg+~4.0.5-5_all.deb ...
Unpacking node-js-yaml (4.1.0+dfsg+~4.0.5-5) over (4.1.0+dfsg+~4.0.5-4) ...
Preparing to unpack .../08-node-lodash_4.17.21+dfsg+~cs8.31.198.20210220-5_all.deb ...
Unpacking node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-5) over (4.17.21+dfsg+~cs8.31.198.20210220-4) ...
Preparing to unpack .../09-node-lodash-packages_4.17.21+dfsg+~cs8.31.198.20210220-5_all.deb ...
Unpacking node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-5) over (4.17.21+dfsg+~cs8.31.198.20210220-4) ...
Preparing to unpack .../10-node-mute-stream_0.0.8+~0.0.1-1_all.deb ...
Unpacking node-mute-stream (0.0.8+~0.0.1-1) over (0.0.8-2) ...
Preparing to unpack .../11-node-npm-run-path_4.0.1-1_all.deb ...
Unpacking node-npm-run-path (4.0.1-1) over (2.0.2-3) ...
Preparing to unpack .../12-node-shebang-command_2.0.0-1_all.deb ...
Unpacking node-shebang-command (2.0.0-1) over (1.2.0-1.1) ...
Preparing to unpack .../13-webpack_5.65.0+dfsg+~cs9.20.9-1_all.deb ...
Unpacking webpack (5.65.0+dfsg+~cs9.20.9-1) over (5.58.2+~cs5.11.7-1) ...
Setting up node-escape-string-regexp (4.0.0-2) ...
Setting up node-color-name (1.1.4+~1.1.1-2) ...
Setting up node-lodash-packages (4.17.21+dfsg+~cs8.31.198.20210220-5) ...
Setting up libatk1.0-data (2.36.0-3) ...
Setting up node-mute-stream (0.0.8+~0.0.1-1) ...
Setting up node-inflight (1.0.6-2) ...
Setting up libatk1.0-0:amd64 (2.36.0-3) ...
Setting up node-jest-worker (27.4.4~ds+~cs68.44.26-1) ...
Setting up libc-dev-bin (2.33-1) ...
Setting up node-js-yaml (4.1.0+dfsg+~4.0.5-5) ...
Setting up node-npm-run-path (4.0.1-1) ...
Setting up node-lodash (4.17.21+dfsg+~cs8.31.198.20210220-5) ...
Setting up node-shebang-command (2.0.0-1) ...
Setting up gcc-9-base:amd64 (9.4.0-4+b1) ...
Setting up webpack (5.65.0+dfsg+~cs9.20.9-1) ...
Setting up libc6-dev:amd64 (2.33-1) ...
Processing triggers for libc-bin (2.33-1) ...

+------------------------------------------------------------------------------+
| Fetch source files                                                           |
+------------------------------------------------------------------------------+


Local sources
-------------

/tmp/tmp.3Jg9rTd5Rk/rainloop_1.16.0+dfsg-1.dsc exists in /tmp/tmp.3Jg9rTd5Rk; copying to chroot
I: NOTICE: Log filtering will replace 'build/rainloop-xTDkj3/rainloop-1.16.0+dfsg' with '<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/rainloop-xTDkj3' with '<<BUILDDIR>>'

+------------------------------------------------------------------------------+
| Install package build dependencies                                           |
+------------------------------------------------------------------------------+


Setup apt archive
-----------------

Merged Build-Depends: debhelper-compat (= 13), nodejs, gulp, node-gulp-concat, node-gulp-rename, node-gulp-util, node-autoprefixer, node-clean-css, node-less, node-postcss, node-uglify-js, node-escape-string-regexp, node-multimatch, node-plugin-error, node-readable-stream, node-through2, webpack, node-babel7, node-babel-loader, node-css-loader, node-json-loader, node-raw-loader, node-style-loader, node-addressparser, node-autolinker, node-js-cookie, node-knockout, node-knockout-sortable (>= 1.2.0~), node-lightgallery, node-normalize.css, node-opentip (>= 2.4.6-3~), node-pikaday, libjs-jquery, libjs-jquery-ui, libjs-jquery-backstretch, libjs-jquery-mousewheel, libjs-jquery-lazyload, libjs-moment, libjs-underscore, build-essential, fakeroot
Filtered Build-Depends: debhelper-compat (= 13), nodejs, gulp, node-gulp-concat, node-gulp-rename, node-gulp-util, node-autoprefixer, node-clean-css, node-less, node-postcss, node-uglify-js, node-escape-string-regexp, node-multimatch, node-plugin-error, node-readable-stream, node-through2, webpack, node-babel7, node-babel-loader, node-css-loader, node-json-loader, node-raw-loader, node-style-loader, node-addressparser, node-autolinker, node-js-cookie, node-knockout, node-knockout-sortable (>= 1.2.0~), node-lightgallery, node-normalize.css, node-opentip (>= 2.4.6-3~), node-pikaday, libjs-jquery, libjs-jquery-ui, libjs-jquery-backstretch, libjs-jquery-mousewheel, libjs-jquery-lazyload, libjs-moment, libjs-underscore, build-essential, fakeroot
dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-main-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [963 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [654 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [743 B]
Fetched 2360 B in 0s (88.7 kB/s)
Reading package lists...
Get:1 file:/<<BUILDDIR>>/resolver-O4gtCl/apt_archive ./ InRelease
Ign:1 file:/<<BUILDDIR>>/resolver-O4gtCl/apt_archive ./ InRelease
Get:2 file:/<<BUILDDIR>>/resolver-O4gtCl/apt_archive ./ Release [951 B]
Get:2 file:/<<BUILDDIR>>/resolver-O4gtCl/apt_archive ./ Release [951 B]
Get:3 file:/<<BUILDDIR>>/resolver-O4gtCl/apt_archive ./ Release.gpg
Ign:3 file:/<<BUILDDIR>>/resolver-O4gtCl/apt_archive ./ Release.gpg
Reading package lists...
Hit:1 http://deb.debian.org/debian experimental InRelease
Reading package lists...
Reading package lists...
W: Target Packages (main/binary-amd64/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list.d/sbuild-extra-repositories.list:1
W: Target Packages (main/binary-all/Packages) is configured multiple times in /etc/apt/sources.list:4 and /etc/apt/sources.list.d/sbuild-extra-repositories.list:1

Install main build dependencies (apt-based resolver)
----------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following packages were automatically installed and are no longer required:
  adwaita-icon-theme at-spi2-core ca-certificates dbus dbus-bin dbus-daemon
  dbus-session-bus-common dbus-system-bus-common dbus-user-session
  dconf-gsettings-backend dconf-service dmsetup fontconfig fontconfig-config
  fonts-dejavu-core gtk-update-icon-cache hicolor-icon-theme libapparmor1
  libargon2-1 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0
  libavahi-client3 libavahi-common-data libavahi-common3 libbsd0
  libcairo-gobject2 libcairo2 libcolord2 libcryptsetup12 libcups2 libdatrie1
  libdbus-1-3 libdconf1 libdeflate0 libdevmapper1.02.1 libepoxy0 libexpat1
  libfontconfig1 libfreetype6 libfribidi0 libgdk-pixbuf-2.0-0
  libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libglib2.0-0 libglib2.0-data
  libgraphite2-3 libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz0b
  libip4tc2 libjbig0 libjpeg62-turbo libjs-highlight.js libjs-sprintf-js
  libjson-c5 libkmod2 liblcms2-2 libmd0 libnotify-bin libnotify4
  libnss-systemd libpam-systemd libpango-1.0-0 libpangocairo-1.0-0
  libpangoft2-1.0-0 libpixman-1-0 libpng16-16 librsvg2-2 librsvg2-common
  libthai-data libthai0 libtiff5 libwayland-client0 libwayland-cursor0
  libwayland-egl1 libwebp6 libx11-6 libx11-data libxau6 libxcb-render0
  libxcb-shm0 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxdmcp6
  libxext6 libxfixes3 libxi6 libxinerama1 libxkbcommon0 libxrandr2 libxrender1
  libxtst6 mocha node-ansi-colors node-ansi-escapes node-argparse node-bl
  node-browser-stdout node-ci-info node-cli-cursor node-cli-spinners
  node-cli-width node-cliui node-diff node-esprima node-execa node-exit-hook
  node-external-editor node-get-caller-file node-get-stream node-growl node-he
  node-iconv-lite node-inquirer node-invert-kv node-js-yaml node-jschardet
  node-lcid node-mem node-mimic-fn node-mute-stream node-npm-run-path
  node-os-locale node-require-directory node-require-main-filename
  node-restore-cursor node-run-async node-shebang-command node-shebang-regex
  node-signal-exit node-sprintf-js node-strip-eof node-text-table node-through
  node-tmp node-which-module node-wide-align node-wrap-ansi node-yargs
  nodejs-doc notification-daemon openssl shared-mime-info systemd systemd-sysv
  systemd-timesyncd ucf x11-common xdg-user-dirs xkb-data
Use 'apt autoremove' to remove them.
The following additional packages will be installed:
  autoconf automake autopoint autotools-dev bsdextrautils debhelper
  dh-autoreconf dh-strip-nondeterminism dwz file gettext gettext-base
  groff-base gulp intltool-debian libarchive-zip-perl libdebhelper-perl
  libelf1 libfile-stripnondeterminism-perl libjs-jquery
  libjs-jquery-backstretch libjs-jquery-lazyload libjs-jquery-mousewheel
  libjs-jquery-ui libjs-moment libjs-underscore libjs-util libmagic-mgc
  libmagic1 libpipeline1 libsigsegv2 libsub-override-perl libtool libuchardet0
  m4 man-db node-addressparser node-archy node-arr-diff node-arr-flatten
  node-arr-union node-array-differ node-array-union node-array-uniq
  node-arrify node-assert node-autolinker node-autoprefixer node-babel-loader
  node-babel7 node-babel7-runtime node-beeper node-big.js node-bluebird
  node-clean-css node-clone-buffer node-clone-stats node-cloneable-readable
  node-commondir node-concat-with-sourcemaps node-consolidate
  node-convert-source-map node-core-js node-css-loader
  node-css-selector-tokenizer node-d node-dateformat node-del node-deprecated
  node-detect-file node-duplexer3 node-duplexify node-emojis-list
  node-error-ex node-es5-ext node-es6-iterator node-es6-symbol
  node-es6-weak-map node-expand-tilde node-extend node-extend-shallow
  node-fancy-log node-find-cache-dir node-findup-sync node-fined
  node-flagged-respawn node-flush-write-stream node-for-in node-for-own
  node-fs-exists-sync node-fs-readdir-recursive node-get-value
  node-glob-stream node-global-modules node-global-prefix node-globby
  node-globule node-glogg node-gulp-concat node-gulp-rename node-gulp-util
  node-gulplog node-has-gulplog node-hosted-git-info node-icss-utils
  node-indent-string node-ini node-interpret node-is-arrayish
  node-is-extendable node-is-negated-glob node-is-path-cwd node-is-path-inside
  node-is-plain-object node-is-unc-path node-is-valid-glob node-isobject
  node-jquery node-jquery-ui node-js-cookie node-js-tokens node-jsesc
  node-json-loader node-json5 node-knockout node-knockout-sortable
  node-lazystream node-less node-liftoff node-lightgallery node-loader-utils
  node-lodash-reescape node-lodash-reevaluate node-make-dir node-map-cache
  node-micromatch node-minimist node-multimatch node-multipipe
  node-normalize-package-data node-normalize-range node-normalize.css
  node-opentip node-orchestrator node-ordered-read-streams node-p-map
  node-parse-filepath node-parse-json node-path-root node-path-root-regex
  node-path-type node-pify node-pikaday node-pinkie node-pinkie-promise
  node-pkg-dir node-plugin-error node-postcss
  node-postcss-modules-extract-imports node-postcss-modules-values
  node-postcss-value-parser node-pretty-hrtime node-pumpify node-quick-lru
  node-raw-loader node-rechoir node-regenerator-runtime
  node-regenerator-transform node-regexpu-core node-regjsgen node-regjsparser
  node-remove-trailing-separator node-replace-ext node-resolve-dir
  node-sequencify node-slash node-sparkles node-spdx-correct
  node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids
  node-stream-consume node-stream-shift node-style-loader node-through2
  node-through2-filter node-tildify node-time-stamp node-to-absolute-glob
  node-to-fast-properties node-uglify-js node-unc-path-regex
  node-unicode-canonical-property-names-ecmascript
  node-unicode-match-property-ecmascript
  node-unicode-match-property-value-ecmascript
  node-unicode-property-aliases-ecmascript node-uniq node-unique-stream
  node-util node-v8flags node-validate-npm-package-license node-vinyl
  node-vinyl-fs po-debconf
Suggested packages:
  autoconf-archive gnu-standards autoconf-doc dh-make gettext-doc
  libasprintf-dev libgettextpo-dev groff libjs-jquery-ui-docs libtool-doc
  gfortran | fortran95-compiler gcj-jdk m4-doc apparmor less www-browser
  libjs-html5shiv node-requirejs node-moment libmail-box-perl
Recommended packages:
  curl | wget | lynx libarchive-cpio-perl libltdl-dev libjs-sizzle
  libmail-sendmail-perl
The following NEW packages will be installed:
  autoconf automake autopoint autotools-dev bsdextrautils debhelper
  dh-autoreconf dh-strip-nondeterminism dwz file gettext gettext-base
  groff-base gulp intltool-debian libarchive-zip-perl libdebhelper-perl
  libelf1 libfile-stripnondeterminism-perl libjs-jquery
  libjs-jquery-backstretch libjs-jquery-lazyload libjs-jquery-mousewheel
  libjs-jquery-ui libjs-moment libjs-underscore libjs-util libmagic-mgc
  libmagic1 libpipeline1 libsigsegv2 libsub-override-perl libtool libuchardet0
  m4 man-db node-addressparser node-archy node-arr-diff node-arr-flatten
  node-arr-union node-array-differ node-array-union node-array-uniq
  node-arrify node-assert node-autolinker node-autoprefixer node-babel-loader
  node-babel7 node-babel7-runtime node-beeper node-big.js node-bluebird
  node-clean-css node-clone-buffer node-clone-stats node-cloneable-readable
  node-commondir node-concat-with-sourcemaps node-consolidate
  node-convert-source-map node-core-js node-css-loader
  node-css-selector-tokenizer node-d node-dateformat node-del node-deprecated
  node-detect-file node-duplexer3 node-duplexify node-emojis-list
  node-error-ex node-es5-ext node-es6-iterator node-es6-symbol
  node-es6-weak-map node-expand-tilde node-extend node-extend-shallow
  node-fancy-log node-find-cache-dir node-findup-sync node-fined
  node-flagged-respawn node-flush-write-stream node-for-in node-for-own
  node-fs-exists-sync node-fs-readdir-recursive node-get-value
  node-glob-stream node-global-modules node-global-prefix node-globby
  node-globule node-glogg node-gulp-concat node-gulp-rename node-gulp-util
  node-gulplog node-has-gulplog node-hosted-git-info node-icss-utils
  node-indent-string node-ini node-interpret node-is-arrayish
  node-is-extendable node-is-negated-glob node-is-path-cwd node-is-path-inside
  node-is-plain-object node-is-unc-path node-is-valid-glob node-isobject
  node-jquery node-jquery-ui node-js-cookie node-js-tokens node-jsesc
  node-json-loader node-json5 node-knockout node-knockout-sortable
  node-lazystream node-less node-liftoff node-lightgallery node-loader-utils
  node-lodash-reescape node-lodash-reevaluate node-make-dir node-map-cache
  node-micromatch node-minimist node-multimatch node-multipipe
  node-normalize-package-data node-normalize-range node-normalize.css
  node-opentip node-orchestrator node-ordered-read-streams node-p-map
  node-parse-filepath node-parse-json node-path-root node-path-root-regex
  node-path-type node-pify node-pikaday node-pinkie node-pinkie-promise
  node-pkg-dir node-plugin-error node-postcss
  node-postcss-modules-extract-imports node-postcss-modules-values
  node-postcss-value-parser node-pretty-hrtime node-pumpify node-quick-lru
  node-raw-loader node-rechoir node-regenerator-runtime
  node-regenerator-transform node-regexpu-core node-regjsgen node-regjsparser
  node-remove-trailing-separator node-replace-ext node-resolve-dir
  node-sequencify node-slash node-sparkles node-spdx-correct
  node-spdx-exceptions node-spdx-expression-parse node-spdx-license-ids
  node-stream-consume node-stream-shift node-style-loader node-through2
  node-through2-filter node-tildify node-time-stamp node-to-absolute-glob
  node-to-fast-properties node-uglify-js node-unc-path-regex
  node-unicode-canonical-property-names-ecmascript
  node-unicode-match-property-ecmascript
  node-unicode-match-property-value-ecmascript
  node-unicode-property-aliases-ecmascript node-uniq node-unique-stream
  node-util node-v8flags node-validate-npm-package-license node-vinyl
  node-vinyl-fs po-debconf sbuild-build-depends-main-dummy
0 upgraded, 205 newly installed, 0 to remove and 0 not upgraded.
Need to get 12.4 MB/22.9 MB of archives.
After this operation, 75.9 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [1172 B]
Get:2 http://deb.debian.org/debian unstable/main amd64 node-arr-flatten all 1.1.0-3 [4936 B]
Get:3 http://deb.debian.org/debian unstable/main amd64 node-deprecated all 0.0.2-2 [4180 B]
Get:4 http://deb.debian.org/debian unstable/main amd64 node-es6-weak-map all 2.0.3-2 [6600 B]
Get:5 http://deb.debian.org/debian unstable/main amd64 node-for-in all 1.0.2-4 [4840 B]
Get:6 http://deb.debian.org/debian unstable/main amd64 node-for-own all 1.0.0-2 [4700 B]
Get:7 http://deb.debian.org/debian unstable/main amd64 node-isobject all 4.0.0-2 [5332 B]
Get:8 http://deb.debian.org/debian unstable/main amd64 node-get-value all 1:3.0.1-4 [5248 B]
Get:9 http://deb.debian.org/debian unstable/main amd64 node-globule all 1.3.2-1 [7708 B]
Get:10 http://deb.debian.org/debian unstable/main amd64 node-array-differ all 3.0.0-3 [3672 B]
Get:11 http://deb.debian.org/debian unstable/main amd64 node-beeper all 2.1.0+~1.2.0-1 [4848 B]
Get:12 http://deb.debian.org/debian unstable/main amd64 node-dateformat all 3.0.0-2 [5888 B]
Get:13 http://deb.debian.org/debian unstable/main amd64 node-time-stamp all 2.2.0-1 [5948 B]
Get:14 http://deb.debian.org/debian unstable/main amd64 node-fancy-log all 1.3.3+~cs1.3.1-2 [7940 B]
Get:15 http://deb.debian.org/debian unstable/main amd64 node-sparkles all 1.0.1-2 [4340 B]
Get:16 http://deb.debian.org/debian unstable/main amd64 node-glogg all 1.0.2-3 [4944 B]
Get:17 http://deb.debian.org/debian unstable/main amd64 node-gulplog all 1.0.0-1.1 [3696 B]
Get:18 http://deb.debian.org/debian unstable/main amd64 node-has-gulplog all 0.1.0-2 [3176 B]
Get:19 http://deb.debian.org/debian unstable/main amd64 node-lodash-reescape all 3.0.0-1.1 [3352 B]
Get:20 http://deb.debian.org/debian unstable/main amd64 node-lodash-reevaluate all 3.0.0-2 [3468 B]
Get:21 http://deb.debian.org/debian unstable/main amd64 node-duplexer3 all 0.1.4-6 [5200 B]
Get:22 http://deb.debian.org/debian unstable/main amd64 node-multipipe all 4.0.0-2 [5480 B]
Get:23 http://deb.debian.org/debian unstable/main amd64 node-replace-ext all 2.0.0-1 [4916 B]
Get:24 http://deb.debian.org/debian unstable/main amd64 node-through2 all 4.0.2-2 [6932 B]
Get:25 http://deb.debian.org/debian unstable/main amd64 node-clone-buffer all 1.0.0-4 [4328 B]
Get:26 http://deb.debian.org/debian unstable/main amd64 node-clone-stats all 1.0.0-3 [3552 B]
Get:27 http://deb.debian.org/debian unstable/main amd64 node-cloneable-readable all 2.1.0+~2.0.0-1 [5720 B]
Get:28 http://deb.debian.org/debian unstable/main amd64 node-remove-trailing-separator all 1.1.0-2 [4400 B]
Get:29 http://deb.debian.org/debian unstable/main amd64 node-vinyl all 2.2.1+~cs3.0.7-1 [13.9 kB]
Get:30 http://deb.debian.org/debian unstable/main amd64 node-gulp-util all 3.0.8-2 [8096 B]
Get:31 http://deb.debian.org/debian unstable/main amd64 node-interpret all 2.2.0-1 [7460 B]
Get:32 http://deb.debian.org/debian unstable/main amd64 node-is-plain-object all 5.0.0-4 [6004 B]
Get:33 http://deb.debian.org/debian unstable/main amd64 node-unc-path-regex all 0.1.2+~0.1.0-1 [4696 B]
Get:34 http://deb.debian.org/debian unstable/main amd64 node-is-unc-path all 1.0.0-4 [4892 B]
Get:35 http://deb.debian.org/debian unstable/main amd64 node-extend all 3.0.2+~3.0.1-1 [7752 B]
Get:36 http://deb.debian.org/debian unstable/main amd64 node-fs-exists-sync all 0.1.0-1.1 [4168 B]
Get:37 http://deb.debian.org/debian unstable/main amd64 node-detect-file all 1.0.0-3 [5416 B]
Get:38 http://deb.debian.org/debian unstable/main amd64 node-expand-tilde all 2.0.2+~cs2.0.3-2 [6444 B]
Get:39 http://deb.debian.org/debian unstable/main amd64 node-ini all 2.0.1-1 [6456 B]
Get:40 http://deb.debian.org/debian unstable/main amd64 node-global-prefix all 3.0.0-1 [5288 B]
Get:41 http://deb.debian.org/debian unstable/main amd64 node-global-modules all 2.0.0-2 [4808 B]
Get:42 http://deb.debian.org/debian unstable/main amd64 node-resolve-dir all 1.0.1-3 [4556 B]
Get:43 http://deb.debian.org/debian unstable/main amd64 node-findup-sync all 4.0.0-4 [5956 B]
Get:44 http://deb.debian.org/debian unstable/main amd64 node-map-cache all 0.2.2-6 [4992 B]
Get:45 http://deb.debian.org/debian unstable/main amd64 node-path-root-regex all 0.1.2-1.1 [3760 B]
Get:46 http://deb.debian.org/debian unstable/main amd64 node-path-root all 0.1.1-2 [4540 B]
Get:47 http://deb.debian.org/debian unstable/main amd64 node-parse-filepath all 1.0.2+~1.0.0-1 [6032 B]
Get:48 http://deb.debian.org/debian unstable/main amd64 node-fined all 1.2.0+~cs4.5.1-3 [8336 B]
Get:49 http://deb.debian.org/debian unstable/main amd64 node-flagged-respawn all 1.0.1-4 [7196 B]
Get:50 http://deb.debian.org/debian unstable/main amd64 node-rechoir all 0.8.0-1 [6040 B]
Get:51 http://deb.debian.org/debian unstable/main amd64 node-liftoff all 3.1.0-6 [15.6 kB]
Get:52 http://deb.debian.org/debian unstable/main amd64 node-sequencify all 0.0.7-1.1 [3476 B]
Get:53 http://deb.debian.org/debian unstable/main amd64 node-stream-consume all 0.1.1-1 [3744 B]
Get:54 http://deb.debian.org/debian unstable/main amd64 node-orchestrator all 0.3.8-2 [9564 B]
Get:55 http://deb.debian.org/debian unstable/main amd64 node-pinkie all 2.0.4-2 [5964 B]
Get:56 http://deb.debian.org/debian unstable/main amd64 node-pinkie-promise all 2.0.1-2 [3424 B]
Get:57 http://deb.debian.org/debian unstable/main amd64 node-pretty-hrtime all 1.0.3+~1.0.1-1 [5076 B]
Get:58 http://deb.debian.org/debian unstable/main amd64 node-tildify all 2.0.0-3 [3636 B]
Get:59 http://deb.debian.org/debian unstable/main amd64 node-is-negated-glob all 1.0.0+~1.0.0-1 [5000 B]
Get:60 http://deb.debian.org/debian unstable/main amd64 node-ordered-read-streams all 1.0.1-2 [4032 B]
Get:61 http://deb.debian.org/debian unstable/main amd64 node-stream-shift all 1.0.1-1 [3420 B]
Get:62 http://deb.debian.org/debian unstable/main amd64 node-duplexify all 4.1.2-1 [5896 B]
Get:63 http://deb.debian.org/debian unstable/main amd64 node-pumpify all 2.0.1-2 [4796 B]
Get:64 http://deb.debian.org/debian unstable/main amd64 node-to-absolute-glob all 2.0.2-2 [5616 B]
Get:65 http://deb.debian.org/debian unstable/main amd64 node-through2-filter all 3.0.0-2 [4540 B]
Get:66 http://deb.debian.org/debian unstable/main amd64 node-unique-stream all 2.3.1-1 [6000 B]
Get:67 http://deb.debian.org/debian unstable/main amd64 node-glob-stream all 6.1.0+~6.1.0-2 [8472 B]
Get:68 http://deb.debian.org/debian unstable/main amd64 node-is-valid-glob all 1.0.0-3 [4800 B]
Get:69 http://deb.debian.org/debian unstable/main amd64 node-lazystream all 1.0.1-1 [5656 B]
Get:70 http://deb.debian.org/debian unstable/main amd64 node-flush-write-stream all 2.0.0-5 [4516 B]
Get:71 http://deb.debian.org/debian unstable/main amd64 node-vinyl-fs all 3.0.3-5 [32.5 kB]
Get:72 http://deb.debian.org/debian unstable/main amd64 gulp all 4.0.2-9 [116 kB]
Get:73 http://deb.debian.org/debian unstable/main amd64 libjs-jquery all 3.5.1+dfsg+~3.5.5-8 [315 kB]
Get:74 http://deb.debian.org/debian unstable/main amd64 libjs-jquery-backstretch all 2.1.17-3.1 [8541 kB]
Get:75 http://deb.debian.org/debian unstable/main amd64 libjs-jquery-lazyload all 1.9.7-1 [21.0 kB]
Get:76 http://deb.debian.org/debian unstable/main amd64 libjs-jquery-mousewheel all 1:3.1.13-3.1 [7620 B]
Get:77 http://deb.debian.org/debian unstable/main amd64 libjs-jquery-ui all 1.13.0+dfsg-1 [250 kB]
Get:78 http://deb.debian.org/debian unstable/main amd64 libjs-moment all 2.29.1+ds-3 [154 kB]
Get:79 http://deb.debian.org/debian unstable/main amd64 libjs-underscore all 1.9.1~dfsg-4 [100 kB]
Get:80 http://deb.debian.org/debian unstable/main amd64 node-addressparser all 1.0.1+repack-2 [6328 B]
Get:81 http://deb.debian.org/debian unstable/main amd64 node-arr-diff all 4.0.0-2 [5376 B]
Get:82 http://deb.debian.org/debian unstable/main amd64 node-arr-union all 3.1.0+~3.1.0-1 [5172 B]
Get:83 http://deb.debian.org/debian unstable/main amd64 node-autolinker all 1.8.3+dfsg-5 [49.8 kB]
Get:84 http://deb.debian.org/debian unstable/main amd64 node-postcss all 8.2.1+~cs5.3.23-8 [99.2 kB]
Get:85 http://deb.debian.org/debian unstable/main amd64 node-normalize-range all 0.1.2-3 [5196 B]
Get:86 http://deb.debian.org/debian unstable/main amd64 node-postcss-value-parser all 4.1.0-3 [10.2 kB]
Get:87 http://deb.debian.org/debian unstable/main amd64 node-autoprefixer all 10.3.1.0+dfsg1+~cs14.6.19-2 [307 kB]
Get:88 http://deb.debian.org/debian unstable/main amd64 node-big.js all 6.0.3+ds-1 [22.8 kB]
Get:89 http://deb.debian.org/debian unstable/main amd64 node-emojis-list all 3.0.0-2 [8244 B]
Get:90 http://deb.debian.org/debian unstable/main amd64 node-loader-utils all 2.0.0-1 [11.9 kB]
Get:91 http://deb.debian.org/debian unstable/main amd64 node-babel-loader all 8.2.3-1 [17.3 kB]
Get:92 http://deb.debian.org/debian unstable/main amd64 node-bluebird all 3.7.2+dfsg1-5 [37.9 kB]
Get:93 http://deb.debian.org/debian unstable/main amd64 node-clean-css all 4.2.3+~4.3.0-1 [86.0 kB]
Get:94 http://deb.debian.org/debian unstable/main amd64 node-concat-with-sourcemaps all 1.0.7-2 [4736 B]
Get:95 http://deb.debian.org/debian unstable/main amd64 node-consolidate all 0.16.0-2 [17.7 kB]
Get:96 http://deb.debian.org/debian unstable/main amd64 node-css-selector-tokenizer all 0.7.3+~cs4.1.2-1 [11.9 kB]
Get:97 http://deb.debian.org/debian unstable/main amd64 node-icss-utils all 5.1.0-3 [6344 B]
Get:98 http://deb.debian.org/debian unstable/main amd64 node-postcss-modules-extract-imports all 3.0.0-2 [6584 B]
Get:99 http://deb.debian.org/debian unstable/main amd64 node-postcss-modules-values all 4.0.0+~4.0.0-1 [7180 B]
Get:100 http://deb.debian.org/debian unstable/main amd64 node-uniq all 1.0.1-2 [3956 B]
Get:101 http://deb.debian.org/debian unstable/main amd64 node-css-loader all 5.0.1+~cs14.0.5-1 [77.4 kB]
Get:102 http://deb.debian.org/debian unstable/main amd64 node-is-extendable all 1.0.1-3 [5228 B]
Get:103 http://deb.debian.org/debian unstable/main amd64 node-extend-shallow all 3.0.2-3 [5724 B]
Get:104 http://deb.debian.org/debian unstable/main amd64 node-gulp-concat all 2.6.1+~0.0.15+git20190329.179bb8c+~1.0.3-4 [6908 B]
Get:105 http://deb.debian.org/debian unstable/main amd64 node-gulp-rename all 1.2.2-4 [4548 B]
Get:106 http://deb.debian.org/debian unstable/main amd64 node-jquery all 3.5.1+dfsg+~3.5.5-8 [159 kB]
Get:107 http://deb.debian.org/debian unstable/main amd64 node-jquery-ui all 1.13.0+dfsg-1 [242 kB]
Get:108 http://deb.debian.org/debian unstable/main amd64 node-js-cookie all 3.0.1+~3.0.0-2 [16.4 kB]
Get:109 http://deb.debian.org/debian unstable/main amd64 node-json-loader all 0.5.7-5 [4936 B]
Get:110 http://deb.debian.org/debian unstable/main amd64 node-knockout all 3.5.1-2 [99.3 kB]
Get:111 http://deb.debian.org/debian unstable/main amd64 node-knockout-sortable all 1.2.0+dfsg-3 [15.6 kB]
Get:112 http://deb.debian.org/debian unstable/main amd64 node-less all 3.13.0+dfsg-7 [506 kB]
Get:113 http://deb.debian.org/debian unstable/main amd64 node-lightgallery all 1.9.0+dfsg-1 [73.6 kB]
Get:114 http://deb.debian.org/debian unstable/main amd64 node-multimatch all 5.0.0-1 [4600 B]
Get:115 http://deb.debian.org/debian unstable/main amd64 node-normalize.css all 8.0.1-5 [12.7 kB]
Get:116 http://deb.debian.org/debian unstable/main amd64 node-opentip all 2.4.6-3 [240 kB]
Get:117 http://deb.debian.org/debian unstable/main amd64 node-pikaday all 1.8.0-2 [27.0 kB]
Get:118 http://deb.debian.org/debian unstable/main amd64 node-plugin-error all 1.0.1+repack-1 [10.4 kB]
Get:119 http://deb.debian.org/debian unstable/main amd64 node-raw-loader all 4.0.2-2 [6588 B]
Get:120 http://deb.debian.org/debian unstable/main amd64 node-style-loader all 2.0.0-3 [16.6 kB]
Get:121 http://deb.debian.org/debian unstable/main amd64 node-uglify-js all 3.14.4-2 [199 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 12.4 MB in 15s (838 kB/s)
Selecting previously unselected package bsdextrautils.
(Reading database ... 40920 files and directories currently installed.)
Preparing to unpack .../000-bsdextrautils_2.37.2-4_amd64.deb ...
Unpacking bsdextrautils (2.37.2-4) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../001-libuchardet0_0.0.7-1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.7-1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../002-groff-base_1.22.4-7_amd64.deb ...
Unpacking groff-base (1.22.4-7) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../003-libpipeline1_1.5.4-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.4-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../004-man-db_2.9.4-2_amd64.deb ...
Unpacking man-db (2.9.4-2) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../005-libmagic-mgc_1%3a5.41-2_amd64.deb ...
Unpacking libmagic-mgc (1:5.41-2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../006-libmagic1_1%3a5.41-2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.41-2) ...
Selecting previously unselected package file.
Preparing to unpack .../007-file_1%3a5.41-2_amd64.deb ...
Unpacking file (1:5.41-2) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../008-gettext-base_0.21-4_amd64.deb ...
Unpacking gettext-base (0.21-4) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../009-libsigsegv2_2.13-1_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.13-1) ...
Selecting previously unselected package m4.
Preparing to unpack .../010-m4_1.4.18-5_amd64.deb ...
Unpacking m4 (1.4.18-5) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../011-autoconf_2.71-2_all.deb ...
Unpacking autoconf (2.71-2) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../012-autotools-dev_20180224.1+nmu1_all.deb ...
Unpacking autotools-dev (20180224.1+nmu1) ...
Selecting previously unselected package automake.
Preparing to unpack .../013-automake_1%3a1.16.5-1.1_all.deb ...
Unpacking automake (1:1.16.5-1.1) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../014-autopoint_0.21-4_all.deb ...
Unpacking autopoint (0.21-4) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../015-libdebhelper-perl_13.5.2_all.deb ...
Unpacking libdebhelper-perl (13.5.2) ...
Selecting previously unselected package libtool.
Preparing to unpack .../016-libtool_2.4.6-15_all.deb ...
Unpacking libtool (2.4.6-15) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../017-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../018-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libsub-override-perl.
Preparing to unpack .../019-libsub-override-perl_0.09-2_all.deb ...
Unpacking libsub-override-perl (0.09-2) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../020-libfile-stripnondeterminism-perl_1.12.1-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.12.1-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../021-dh-strip-nondeterminism_1.12.1-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.12.1-1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../022-libelf1_0.186-1_amd64.deb ...
Unpacking libelf1:amd64 (0.186-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../023-dwz_0.14-1_amd64.deb ...
Unpacking dwz (0.14-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../024-gettext_0.21-4_amd64.deb ...
Unpacking gettext (0.21-4) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../025-intltool-debian_0.35.0+20060710.5_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.5) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../026-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../027-debhelper_13.5.2_all.deb ...
Unpacking debhelper (13.5.2) ...
Selecting previously unselected package node-archy.
Preparing to unpack .../028-node-archy_1.0.0-4_all.deb ...
Unpacking node-archy (1.0.0-4) ...
Selecting previously unselected package node-arr-flatten.
Preparing to unpack .../029-node-arr-flatten_1.1.0-3_all.deb ...
Unpacking node-arr-flatten (1.1.0-3) ...
Selecting previously unselected package node-deprecated.
Preparing to unpack .../030-node-deprecated_0.0.2-2_all.deb ...
Unpacking node-deprecated (0.0.2-2) ...
Selecting previously unselected package node-es6-symbol.
Preparing to unpack .../031-node-es6-symbol_3.1.3+~cs3.5.0-1_all.deb ...
Unpacking node-es6-symbol (3.1.3+~cs3.5.0-1) ...
Selecting previously unselected package node-es6-iterator.
Preparing to unpack .../032-node-es6-iterator_2.0.3-3_all.deb ...
Unpacking node-es6-iterator (2.0.3-3) ...
Selecting previously unselected package node-es5-ext.
Preparing to unpack .../033-node-es5-ext_0.10.53+~1.1.0-2_all.deb ...
Unpacking node-es5-ext (0.10.53+~1.1.0-2) ...
Selecting previously unselected package node-d.
Preparing to unpack .../034-node-d_1.0.1-1_all.deb ...
Unpacking node-d (1.0.1-1) ...
Selecting previously unselected package node-es6-weak-map.
Preparing to unpack .../035-node-es6-weak-map_2.0.3-2_all.deb ...
Unpacking node-es6-weak-map (2.0.3-2) ...
Selecting previously unselected package node-for-in.
Preparing to unpack .../036-node-for-in_1.0.2-4_all.deb ...
Unpacking node-for-in (1.0.2-4) ...
Selecting previously unselected package node-for-own.
Preparing to unpack .../037-node-for-own_1.0.0-2_all.deb ...
Unpacking node-for-own (1.0.0-2) ...
Selecting previously unselected package node-isobject.
Preparing to unpack .../038-node-isobject_4.0.0-2_all.deb ...
Unpacking node-isobject (4.0.0-2) ...
Selecting previously unselected package node-get-value.
Preparing to unpack .../039-node-get-value_1%3a3.0.1-4_all.deb ...
Unpacking node-get-value (1:3.0.1-4) ...
Selecting previously unselected package node-globule.
Preparing to unpack .../040-node-globule_1.3.2-1_all.deb ...
Unpacking node-globule (1.3.2-1) ...
Selecting previously unselected package node-array-differ.
Preparing to unpack .../041-node-array-differ_3.0.0-3_all.deb ...
Unpacking node-array-differ (3.0.0-3) ...
Selecting previously unselected package node-array-uniq.
Preparing to unpack .../042-node-array-uniq_2.1.0-2_all.deb ...
Unpacking node-array-uniq (2.1.0-2) ...
Selecting previously unselected package node-beeper.
Preparing to unpack .../043-node-beeper_2.1.0+~1.2.0-1_all.deb ...
Unpacking node-beeper (2.1.0+~1.2.0-1) ...
Selecting previously unselected package node-dateformat.
Preparing to unpack .../044-node-dateformat_3.0.0-2_all.deb ...
Unpacking node-dateformat (3.0.0-2) ...
Selecting previously unselected package node-time-stamp.
Preparing to unpack .../045-node-time-stamp_2.2.0-1_all.deb ...
Unpacking node-time-stamp (2.2.0-1) ...
Selecting previously unselected package node-fancy-log.
Preparing to unpack .../046-node-fancy-log_1.3.3+~cs1.3.1-2_all.deb ...
Unpacking node-fancy-log (1.3.3+~cs1.3.1-2) ...
Selecting previously unselected package node-sparkles.
Preparing to unpack .../047-node-sparkles_1.0.1-2_all.deb ...
Unpacking node-sparkles (1.0.1-2) ...
Selecting previously unselected package node-glogg.
Preparing to unpack .../048-node-glogg_1.0.2-3_all.deb ...
Unpacking node-glogg (1.0.2-3) ...
Selecting previously unselected package node-gulplog.
Preparing to unpack .../049-node-gulplog_1.0.0-1.1_all.deb ...
Unpacking node-gulplog (1.0.0-1.1) ...
Selecting previously unselected package node-has-gulplog.
Preparing to unpack .../050-node-has-gulplog_0.1.0-2_all.deb ...
Unpacking node-has-gulplog (0.1.0-2) ...
Selecting previously unselected package node-lodash-reescape.
Preparing to unpack .../051-node-lodash-reescape_3.0.0-1.1_all.deb ...
Unpacking node-lodash-reescape (3.0.0-1.1) ...
Selecting previously unselected package node-lodash-reevaluate.
Preparing to unpack .../052-node-lodash-reevaluate_3.0.0-2_all.deb ...
Unpacking node-lodash-reevaluate (3.0.0-2) ...
Selecting previously unselected package node-arrify.
Preparing to unpack .../053-node-arrify_2.0.1-2_all.deb ...
Unpacking node-arrify (2.0.1-2) ...
Selecting previously unselected package node-minimist.
Preparing to unpack .../054-node-minimist_1.2.5+~cs5.3.2-1_all.deb ...
Unpacking node-minimist (1.2.5+~cs5.3.2-1) ...
Selecting previously unselected package node-duplexer3.
Preparing to unpack .../055-node-duplexer3_0.1.4-6_all.deb ...
Unpacking node-duplexer3 (0.1.4-6) ...
Selecting previously unselected package node-multipipe.
Preparing to unpack .../056-node-multipipe_4.0.0-2_all.deb ...
Unpacking node-multipipe (4.0.0-2) ...
Selecting previously unselected package node-replace-ext.
Preparing to unpack .../057-node-replace-ext_2.0.0-1_all.deb ...
Unpacking node-replace-ext (2.0.0-1) ...
Selecting previously unselected package node-through2.
Preparing to unpack .../058-node-through2_4.0.2-2_all.deb ...
Unpacking node-through2 (4.0.2-2) ...
Selecting previously unselected package node-clone-buffer.
Preparing to unpack .../059-node-clone-buffer_1.0.0-4_all.deb ...
Unpacking node-clone-buffer (1.0.0-4) ...
Selecting previously unselected package node-clone-stats.
Preparing to unpack .../060-node-clone-stats_1.0.0-3_all.deb ...
Unpacking node-clone-stats (1.0.0-3) ...
Selecting previously unselected package node-cloneable-readable.
Preparing to unpack .../061-node-cloneable-readable_2.1.0+~2.0.0-1_all.deb ...
Unpacking node-cloneable-readable (2.1.0+~2.0.0-1) ...
Selecting previously unselected package node-remove-trailing-separator.
Preparing to unpack .../062-node-remove-trailing-separator_1.1.0-2_all.deb ...
Unpacking node-remove-trailing-separator (1.1.0-2) ...
Selecting previously unselected package node-vinyl.
Preparing to unpack .../063-node-vinyl_2.2.1+~cs3.0.7-1_all.deb ...
Unpacking node-vinyl (2.2.1+~cs3.0.7-1) ...
Selecting previously unselected package node-gulp-util.
Preparing to unpack .../064-node-gulp-util_3.0.8-2_all.deb ...
Unpacking node-gulp-util (3.0.8-2) ...
Selecting previously unselected package node-interpret.
Preparing to unpack .../065-node-interpret_2.2.0-1_all.deb ...
Unpacking node-interpret (2.2.0-1) ...
Selecting previously unselected package node-is-plain-object.
Preparing to unpack .../066-node-is-plain-object_5.0.0-4_all.deb ...
Unpacking node-is-plain-object (5.0.0-4) ...
Selecting previously unselected package node-unc-path-regex.
Preparing to unpack .../067-node-unc-path-regex_0.1.2+~0.1.0-1_all.deb ...
Unpacking node-unc-path-regex (0.1.2+~0.1.0-1) ...
Selecting previously unselected package node-is-unc-path.
Preparing to unpack .../068-node-is-unc-path_1.0.0-4_all.deb ...
Unpacking node-is-unc-path (1.0.0-4) ...
Selecting previously unselected package node-extend.
Preparing to unpack .../069-node-extend_3.0.2+~3.0.1-1_all.deb ...
Unpacking node-extend (3.0.2+~3.0.1-1) ...
Selecting previously unselected package node-fs-exists-sync.
Preparing to unpack .../070-node-fs-exists-sync_0.1.0-1.1_all.deb ...
Unpacking node-fs-exists-sync (0.1.0-1.1) ...
Selecting previously unselected package node-detect-file.
Preparing to unpack .../071-node-detect-file_1.0.0-3_all.deb ...
Unpacking node-detect-file (1.0.0-3) ...
Selecting previously unselected package node-micromatch.
Preparing to unpack .../072-node-micromatch_4.0.4+~4.0.2-1_all.deb ...
Unpacking node-micromatch (4.0.4+~4.0.2-1) ...
Selecting previously unselected package node-expand-tilde.
Preparing to unpack .../073-node-expand-tilde_2.0.2+~cs2.0.3-2_all.deb ...
Unpacking node-expand-tilde (2.0.2+~cs2.0.3-2) ...
Selecting previously unselected package node-ini.
Preparing to unpack .../074-node-ini_2.0.1-1_all.deb ...
Unpacking node-ini (2.0.1-1) ...
Selecting previously unselected package node-global-prefix.
Preparing to unpack .../075-node-global-prefix_3.0.0-1_all.deb ...
Unpacking node-global-prefix (3.0.0-1) ...
Selecting previously unselected package node-global-modules.
Preparing to unpack .../076-node-global-modules_2.0.0-2_all.deb ...
Unpacking node-global-modules (2.0.0-2) ...
Selecting previously unselected package node-resolve-dir.
Preparing to unpack .../077-node-resolve-dir_1.0.1-3_all.deb ...
Unpacking node-resolve-dir (1.0.1-3) ...
Selecting previously unselected package node-findup-sync.
Preparing to unpack .../078-node-findup-sync_4.0.0-4_all.deb ...
Unpacking node-findup-sync (4.0.0-4) ...
Selecting previously unselected package node-map-cache.
Preparing to unpack .../079-node-map-cache_0.2.2-6_all.deb ...
Unpacking node-map-cache (0.2.2-6) ...
Selecting previously unselected package node-path-root-regex.
Preparing to unpack .../080-node-path-root-regex_0.1.2-1.1_all.deb ...
Unpacking node-path-root-regex (0.1.2-1.1) ...
Selecting previously unselected package node-path-root.
Preparing to unpack .../081-node-path-root_0.1.1-2_all.deb ...
Unpacking node-path-root (0.1.1-2) ...
Selecting previously unselected package node-parse-filepath.
Preparing to unpack .../082-node-parse-filepath_1.0.2+~1.0.0-1_all.deb ...
Unpacking node-parse-filepath (1.0.2+~1.0.0-1) ...
Selecting previously unselected package node-fined.
Preparing to unpack .../083-node-fined_1.2.0+~cs4.5.1-3_all.deb ...
Unpacking node-fined (1.2.0+~cs4.5.1-3) ...
Selecting previously unselected package node-flagged-respawn.
Preparing to unpack .../084-node-flagged-respawn_1.0.1-4_all.deb ...
Unpacking node-flagged-respawn (1.0.1-4) ...
Selecting previously unselected package node-rechoir.
Preparing to unpack .../085-node-rechoir_0.8.0-1_all.deb ...
Unpacking node-rechoir (0.8.0-1) ...
Selecting previously unselected package node-liftoff.
Preparing to unpack .../086-node-liftoff_3.1.0-6_all.deb ...
Unpacking node-liftoff (3.1.0-6) ...
Selecting previously unselected package node-hosted-git-info.
Preparing to unpack .../087-node-hosted-git-info_4.0.2-1_all.deb ...
Unpacking node-hosted-git-info (4.0.2-1) ...
Selecting previously unselected package node-spdx-license-ids.
Preparing to unpack .../088-node-spdx-license-ids_3.0.11-1_all.deb ...
Unpacking node-spdx-license-ids (3.0.11-1) ...
Selecting previously unselected package node-spdx-exceptions.
Preparing to unpack .../089-node-spdx-exceptions_2.3.0-2_all.deb ...
Unpacking node-spdx-exceptions (2.3.0-2) ...
Selecting previously unselected package node-spdx-expression-parse.
Preparing to unpack .../090-node-spdx-expression-parse_3.0.1+~3.0.1-1_all.deb ...
Unpacking node-spdx-expression-parse (3.0.1+~3.0.1-1) ...
Selecting previously unselected package node-spdx-correct.
Preparing to unpack .../091-node-spdx-correct_3.1.1-2_all.deb ...
Unpacking node-spdx-correct (3.1.1-2) ...
Selecting previously unselected package node-validate-npm-package-license.
Preparing to unpack .../092-node-validate-npm-package-license_3.0.4-1_all.deb ...
Unpacking node-validate-npm-package-license (3.0.4-1) ...
Selecting previously unselected package node-normalize-package-data.
Preparing to unpack .../093-node-normalize-package-data_3.0.3+~2.4.1-1_all.deb ...
Unpacking node-normalize-package-data (3.0.3+~2.4.1-1) ...
Selecting previously unselected package node-sequencify.
Preparing to unpack .../094-node-sequencify_0.0.7-1.1_all.deb ...
Unpacking node-sequencify (0.0.7-1.1) ...
Selecting previously unselected package node-stream-consume.
Preparing to unpack .../095-node-stream-consume_0.1.1-1_all.deb ...
Unpacking node-stream-consume (0.1.1-1) ...
Selecting previously unselected package node-orchestrator.
Preparing to unpack .../096-node-orchestrator_0.3.8-2_all.deb ...
Unpacking node-orchestrator (0.3.8-2) ...
Selecting previously unselected package libjs-util.
Preparing to unpack .../097-libjs-util_0.12.4+~1.0.10-1_all.deb ...
Unpacking libjs-util (0.12.4+~1.0.10-1) ...
Selecting previously unselected package node-util.
Preparing to unpack .../098-node-util_0.12.4+~1.0.10-1_all.deb ...
Unpacking node-util (0.12.4+~1.0.10-1) ...
Selecting previously unselected package node-assert.
Preparing to unpack .../099-node-assert_2.0.0-1_all.deb ...
Unpacking node-assert (2.0.0-1) ...
Selecting previously unselected package node-regenerator-runtime.
Preparing to unpack .../100-node-regenerator-runtime_0.13.7-1_all.deb ...
Unpacking node-regenerator-runtime (0.13.7-1) ...
Selecting previously unselected package node-babel7-runtime.
Preparing to unpack .../101-node-babel7-runtime_7.12.12+~cs150.141.84-8_all.deb ...
Unpacking node-babel7-runtime (7.12.12+~cs150.141.84-8) ...
Selecting previously unselected package node-convert-source-map.
Preparing to unpack .../102-node-convert-source-map_1.8.0+~1.5.2-1_all.deb ...
Unpacking node-convert-source-map (1.8.0+~1.5.2-1) ...
Selecting previously unselected package node-core-js.
Preparing to unpack .../103-node-core-js_3.8.2-3_all.deb ...
Unpacking node-core-js (3.8.2-3) ...
Selecting previously unselected package node-commondir.
Preparing to unpack .../104-node-commondir_1.0.1-2_all.deb ...
Unpacking node-commondir (1.0.1-2) ...
Selecting previously unselected package node-array-union.
Preparing to unpack .../105-node-array-union_2.1.0-2_all.deb ...
Unpacking node-array-union (2.1.0-2) ...
Selecting previously unselected package node-pify.
Preparing to unpack .../106-node-pify_5.0.0+~cs5.0.0-1_all.deb ...
Unpacking node-pify (5.0.0+~cs5.0.0-1) ...
Selecting previously unselected package node-path-type.
Preparing to unpack .../107-node-path-type_4.0.0-2_all.deb ...
Unpacking node-path-type (4.0.0-2) ...
Selecting previously unselected package node-slash.
Preparing to unpack .../108-node-slash_3.0.0-2_all.deb ...
Unpacking node-slash (3.0.0-2) ...
Selecting previously unselected package node-globby.
Preparing to unpack .../109-node-globby_11.0.2+~cs16.20.37-2_all.deb ...
Unpacking node-globby (11.0.2+~cs16.20.37-2) ...
Selecting previously unselected package node-is-path-cwd.
Preparing to unpack .../110-node-is-path-cwd_2.2.0-2_all.deb ...
Unpacking node-is-path-cwd (2.2.0-2) ...
Selecting previously unselected package node-is-path-inside.
Preparing to unpack .../111-node-is-path-inside_3.0.3-1_all.deb ...
Unpacking node-is-path-inside (3.0.3-1) ...
Selecting previously unselected package node-indent-string.
Preparing to unpack .../112-node-indent-string_4.0.0-2_all.deb ...
Unpacking node-indent-string (4.0.0-2) ...
Selecting previously unselected package node-p-map.
Preparing to unpack .../113-node-p-map_4.0.0+~3.1.0+~3.0.1-1_all.deb ...
Unpacking node-p-map (4.0.0+~3.1.0+~3.0.1-1) ...
Selecting previously unselected package node-del.
Preparing to unpack .../114-node-del_5.1.0-3_all.deb ...
Unpacking node-del (5.1.0-3) ...
Selecting previously unselected package node-make-dir.
Preparing to unpack .../115-node-make-dir_3.1.0-2_all.deb ...
Unpacking node-make-dir (3.1.0-2) ...
Selecting previously unselected package node-pkg-dir.
Preparing to unpack .../116-node-pkg-dir_5.0.0-1_all.deb ...
Unpacking node-pkg-dir (5.0.0-1) ...
Selecting previously unselected package node-find-cache-dir.
Preparing to unpack .../117-node-find-cache-dir_3.3.2+~3.2.1-1_all.deb ...
Unpacking node-find-cache-dir (3.3.2+~3.2.1-1) ...
Selecting previously unselected package node-fs-readdir-recursive.
Preparing to unpack .../118-node-fs-readdir-recursive_1.1.0-2_all.deb ...
Unpacking node-fs-readdir-recursive (1.1.0-2) ...
Selecting previously unselected package node-js-tokens.
Preparing to unpack .../119-node-js-tokens_6.0.0-2_all.deb ...
Unpacking node-js-tokens (6.0.0-2) ...
Selecting previously unselected package node-jsesc.
Preparing to unpack .../120-node-jsesc_3.0.2-3_all.deb ...
Unpacking node-jsesc (3.0.2-3) ...
Selecting previously unselected package node-json5.
Preparing to unpack .../121-node-json5_2.2.0+dfsg-1_all.deb ...
Unpacking node-json5 (2.2.0+dfsg-1) ...
Selecting previously unselected package node-quick-lru.
Preparing to unpack .../122-node-quick-lru_5.1.1-1_all.deb ...
Unpacking node-quick-lru (5.1.1-1) ...
Selecting previously unselected package node-regenerator-transform.
Preparing to unpack .../123-node-regenerator-transform_0.14.5-4_all.deb ...
Unpacking node-regenerator-transform (0.14.5-4) ...
Selecting previously unselected package node-regjsgen.
Preparing to unpack .../124-node-regjsgen_0.6.0+ds-1_all.deb ...
Unpacking node-regjsgen (0.6.0+ds-1) ...
Selecting previously unselected package node-regjsparser.
Preparing to unpack .../125-node-regjsparser_0.8.1+ds-1_all.deb ...
Unpacking node-regjsparser (0.8.1+ds-1) ...
Selecting previously unselected package node-unicode-canonical-property-names-ecmascript.
Preparing to unpack .../126-node-unicode-canonical-property-names-ecmascript_2.0.0-2_all.deb ...
Unpacking node-unicode-canonical-property-names-ecmascript (2.0.0-2) ...
Selecting previously unselected package node-unicode-property-aliases-ecmascript.
Preparing to unpack .../127-node-unicode-property-aliases-ecmascript_2.0.0+ds-2_all.deb ...
Unpacking node-unicode-property-aliases-ecmascript (2.0.0+ds-2) ...
Selecting previously unselected package node-unicode-match-property-ecmascript.
Preparing to unpack .../128-node-unicode-match-property-ecmascript_2.0.0-1_all.deb ...
Unpacking node-unicode-match-property-ecmascript (2.0.0-1) ...
Selecting previously unselected package node-unicode-match-property-value-ecmascript.
Preparing to unpack .../129-node-unicode-match-property-value-ecmascript_2.0.0+ds-2_all.deb ...
Unpacking node-unicode-match-property-value-ecmascript (2.0.0+ds-2) ...
Selecting previously unselected package node-regexpu-core.
Preparing to unpack .../130-node-regexpu-core_4.8.0-1_all.deb ...
Unpacking node-regexpu-core (4.8.0-1) ...
Selecting previously unselected package node-to-fast-properties.
Preparing to unpack .../131-node-to-fast-properties_3.0.1-2_all.deb ...
Unpacking node-to-fast-properties (3.0.1-2) ...
Selecting previously unselected package node-v8flags.
Preparing to unpack .../132-node-v8flags_3.2.0-3_all.deb ...
Unpacking node-v8flags (3.2.0-3) ...
Selecting previously unselected package node-babel7.
Preparing to unpack .../133-node-babel7_7.12.12+~cs150.141.84-8_all.deb ...
Unpacking node-babel7 (7.12.12+~cs150.141.84-8) ...
Selecting previously unselected package node-is-arrayish.
Preparing to unpack .../134-node-is-arrayish_0.3.2-2_all.deb ...
Unpacking node-is-arrayish (0.3.2-2) ...
Selecting previously unselected package node-error-ex.
Preparing to unpack .../135-node-error-ex_1.3.2-3_all.deb ...
Unpacking node-error-ex (1.3.2-3) ...
Selecting previously unselected package node-parse-json.
Preparing to unpack .../136-node-parse-json_5.1.0+~cs5.1.6-3_all.deb ...
Unpacking node-parse-json (5.1.0+~cs5.1.6-3) ...
Selecting previously unselected package node-pinkie.
Preparing to unpack .../137-node-pinkie_2.0.4-2_all.deb ...
Unpacking node-pinkie (2.0.4-2) ...
Selecting previously unselected package node-pinkie-promise.
Preparing to unpack .../138-node-pinkie-promise_2.0.1-2_all.deb ...
Unpacking node-pinkie-promise (2.0.1-2) ...
Selecting previously unselected package node-pretty-hrtime.
Preparing to unpack .../139-node-pretty-hrtime_1.0.3+~1.0.1-1_all.deb ...
Unpacking node-pretty-hrtime (1.0.3+~1.0.1-1) ...
Selecting previously unselected package node-tildify.
Preparing to unpack .../140-node-tildify_2.0.0-3_all.deb ...
Unpacking node-tildify (2.0.0-3) ...
Selecting previously unselected package node-is-negated-glob.
Preparing to unpack .../141-node-is-negated-glob_1.0.0+~1.0.0-1_all.deb ...
Unpacking node-is-negated-glob (1.0.0+~1.0.0-1) ...
Selecting previously unselected package node-ordered-read-streams.
Preparing to unpack .../142-node-ordered-read-streams_1.0.1-2_all.deb ...
Unpacking node-ordered-read-streams (1.0.1-2) ...
Selecting previously unselected package node-stream-shift.
Preparing to unpack .../143-node-stream-shift_1.0.1-1_all.deb ...
Unpacking node-stream-shift (1.0.1-1) ...
Selecting previously unselected package node-duplexify.
Preparing to unpack .../144-node-duplexify_4.1.2-1_all.deb ...
Unpacking node-duplexify (4.1.2-1) ...
Selecting previously unselected package node-pumpify.
Preparing to unpack .../145-node-pumpify_2.0.1-2_all.deb ...
Unpacking node-pumpify (2.0.1-2) ...
Selecting previously unselected package node-to-absolute-glob.
Preparing to unpack .../146-node-to-absolute-glob_2.0.2-2_all.deb ...
Unpacking node-to-absolute-glob (2.0.2-2) ...
Selecting previously unselected package node-through2-filter.
Preparing to unpack .../147-node-through2-filter_3.0.0-2_all.deb ...
Unpacking node-through2-filter (3.0.0-2) ...
Selecting previously unselected package node-unique-stream.
Preparing to unpack .../148-node-unique-stream_2.3.1-1_all.deb ...
Unpacking node-unique-stream (2.3.1-1) ...
Selecting previously unselected package node-glob-stream.
Preparing to unpack .../149-node-glob-stream_6.1.0+~6.1.0-2_all.deb ...
Unpacking node-glob-stream (6.1.0+~6.1.0-2) ...
Selecting previously unselected package node-is-valid-glob.
Preparing to unpack .../150-node-is-valid-glob_1.0.0-3_all.deb ...
Unpacking node-is-valid-glob (1.0.0-3) ...
Selecting previously unselected package node-lazystream.
Preparing to unpack .../151-node-lazystream_1.0.1-1_all.deb ...
Unpacking node-lazystream (1.0.1-1) ...
Selecting previously unselected package node-flush-write-stream.
Preparing to unpack .../152-node-flush-write-stream_2.0.0-5_all.deb ...
Unpacking node-flush-write-stream (2.0.0-5) ...
Selecting previously unselected package node-vinyl-fs.
Preparing to unpack .../153-node-vinyl-fs_3.0.3-5_all.deb ...
Unpacking node-vinyl-fs (3.0.3-5) ...
Selecting previously unselected package gulp.
Preparing to unpack .../154-gulp_4.0.2-9_all.deb ...
Unpacking gulp (4.0.2-9) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../155-libjs-jquery_3.5.1+dfsg+~3.5.5-8_all.deb ...
Unpacking libjs-jquery (3.5.1+dfsg+~3.5.5-8) ...
Selecting previously unselected package libjs-jquery-backstretch.
Preparing to unpack .../156-libjs-jquery-backstretch_2.1.17-3.1_all.deb ...
Unpacking libjs-jquery-backstretch (2.1.17-3.1) ...
Selecting previously unselected package libjs-jquery-lazyload.
Preparing to unpack .../157-libjs-jquery-lazyload_1.9.7-1_all.deb ...
Unpacking libjs-jquery-lazyload (1.9.7-1) ...
Selecting previously unselected package libjs-jquery-mousewheel.
Preparing to unpack .../158-libjs-jquery-mousewheel_1%3a3.1.13-3.1_all.deb ...
Unpacking libjs-jquery-mousewheel (1:3.1.13-3.1) ...
Selecting previously unselected package libjs-jquery-ui.
Preparing to unpack .../159-libjs-jquery-ui_1.13.0+dfsg-1_all.deb ...
Unpacking libjs-jquery-ui (1.13.0+dfsg-1) ...
Selecting previously unselected package libjs-moment.
Preparing to unpack .../160-libjs-moment_2.29.1+ds-3_all.deb ...
Unpacking libjs-moment (2.29.1+ds-3) ...
Selecting previously unselected package libjs-underscore.
Preparing to unpack .../161-libjs-underscore_1.9.1~dfsg-4_all.deb ...
Unpacking libjs-underscore (1.9.1~dfsg-4) ...
Selecting previously unselected package node-addressparser.
Preparing to unpack .../162-node-addressparser_1.0.1+repack-2_all.deb ...
Unpacking node-addressparser (1.0.1+repack-2) ...
Selecting previously unselected package node-arr-diff.
Preparing to unpack .../163-node-arr-diff_4.0.0-2_all.deb ...
Unpacking node-arr-diff (4.0.0-2) ...
Selecting previously unselected package node-arr-union.
Preparing to unpack .../164-node-arr-union_3.1.0+~3.1.0-1_all.deb ...
Unpacking node-arr-union (3.1.0+~3.1.0-1) ...
Selecting previously unselected package node-autolinker.
Preparing to unpack .../165-node-autolinker_1.8.3+dfsg-5_all.deb ...
Unpacking node-autolinker (1.8.3+dfsg-5) ...
Selecting previously unselected package node-postcss.
Preparing to unpack .../166-node-postcss_8.2.1+~cs5.3.23-8_all.deb ...
Unpacking node-postcss (8.2.1+~cs5.3.23-8) ...
Selecting previously unselected package node-normalize-range.
Preparing to unpack .../167-node-normalize-range_0.1.2-3_all.deb ...
Unpacking node-normalize-range (0.1.2-3) ...
Selecting previously unselected package node-postcss-value-parser.
Preparing to unpack .../168-node-postcss-value-parser_4.1.0-3_all.deb ...
Unpacking node-postcss-value-parser (4.1.0-3) ...
Selecting previously unselected package node-autoprefixer.
Preparing to unpack .../169-node-autoprefixer_10.3.1.0+dfsg1+~cs14.6.19-2_all.deb ...
Unpacking node-autoprefixer (10.3.1.0+dfsg1+~cs14.6.19-2) ...
Selecting previously unselected package node-big.js.
Preparing to unpack .../170-node-big.js_6.0.3+ds-1_all.deb ...
Unpacking node-big.js (6.0.3+ds-1) ...
Selecting previously unselected package node-emojis-list.
Preparing to unpack .../171-node-emojis-list_3.0.0-2_all.deb ...
Unpacking node-emojis-list (3.0.0-2) ...
Selecting previously unselected package node-loader-utils.
Preparing to unpack .../172-node-loader-utils_2.0.0-1_all.deb ...
Unpacking node-loader-utils (2.0.0-1) ...
Selecting previously unselected package node-babel-loader.
Preparing to unpack .../173-node-babel-loader_8.2.3-1_all.deb ...
Unpacking node-babel-loader (8.2.3-1) ...
Selecting previously unselected package node-bluebird.
Preparing to unpack .../174-node-bluebird_3.7.2+dfsg1-5_all.deb ...
Unpacking node-bluebird (3.7.2+dfsg1-5) ...
Selecting previously unselected package node-clean-css.
Preparing to unpack .../175-node-clean-css_4.2.3+~4.3.0-1_all.deb ...
Unpacking node-clean-css (4.2.3+~4.3.0-1) ...
Selecting previously unselected package node-concat-with-sourcemaps.
Preparing to unpack .../176-node-concat-with-sourcemaps_1.0.7-2_all.deb ...
Unpacking node-concat-with-sourcemaps (1.0.7-2) ...
Selecting previously unselected package node-consolidate.
Preparing to unpack .../177-node-consolidate_0.16.0-2_all.deb ...
Unpacking node-consolidate (0.16.0-2) ...
Selecting previously unselected package node-css-selector-tokenizer.
Preparing to unpack .../178-node-css-selector-tokenizer_0.7.3+~cs4.1.2-1_all.deb ...
Unpacking node-css-selector-tokenizer (0.7.3+~cs4.1.2-1) ...
Selecting previously unselected package node-icss-utils.
Preparing to unpack .../179-node-icss-utils_5.1.0-3_all.deb ...
Unpacking node-icss-utils (5.1.0-3) ...
Selecting previously unselected package node-postcss-modules-extract-imports.
Preparing to unpack .../180-node-postcss-modules-extract-imports_3.0.0-2_all.deb ...
Unpacking node-postcss-modules-extract-imports (3.0.0-2) ...
Selecting previously unselected package node-postcss-modules-values.
Preparing to unpack .../181-node-postcss-modules-values_4.0.0+~4.0.0-1_all.deb ...
Unpacking node-postcss-modules-values (4.0.0+~4.0.0-1) ...
Selecting previously unselected package node-uniq.
Preparing to unpack .../182-node-uniq_1.0.1-2_all.deb ...
Unpacking node-uniq (1.0.1-2) ...
Selecting previously unselected package node-css-loader.
Preparing to unpack .../183-node-css-loader_5.0.1+~cs14.0.5-1_all.deb ...
Unpacking node-css-loader (5.0.1+~cs14.0.5-1) ...
Selecting previously unselected package node-is-extendable.
Preparing to unpack .../184-node-is-extendable_1.0.1-3_all.deb ...
Unpacking node-is-extendable (1.0.1-3) ...
Selecting previously unselected package node-extend-shallow.
Preparing to unpack .../185-node-extend-shallow_3.0.2-3_all.deb ...
Unpacking node-extend-shallow (3.0.2-3) ...
Selecting previously unselected package node-gulp-concat.
Preparing to unpack .../186-node-gulp-concat_2.6.1+~0.0.15+git20190329.179bb8c+~1.0.3-4_all.deb ...
Unpacking node-gulp-concat (2.6.1+~0.0.15+git20190329.179bb8c+~1.0.3-4) ...
Selecting previously unselected package node-gulp-rename.
Preparing to unpack .../187-node-gulp-rename_1.2.2-4_all.deb ...
Unpacking node-gulp-rename (1.2.2-4) ...
Selecting previously unselected package node-jquery.
Preparing to unpack .../188-node-jquery_3.5.1+dfsg+~3.5.5-8_all.deb ...
Unpacking node-jquery (3.5.1+dfsg+~3.5.5-8) ...
Selecting previously unselected package node-jquery-ui.
Preparing to unpack .../189-node-jquery-ui_1.13.0+dfsg-1_all.deb ...
Unpacking node-jquery-ui (1.13.0+dfsg-1) ...
Selecting previously unselected package node-js-cookie.
Preparing to unpack .../190-node-js-cookie_3.0.1+~3.0.0-2_all.deb ...
Unpacking node-js-cookie (3.0.1+~3.0.0-2) ...
Selecting previously unselected package node-json-loader.
Preparing to unpack .../191-node-json-loader_0.5.7-5_all.deb ...
Unpacking node-json-loader (0.5.7-5) ...
Selecting previously unselected package node-knockout.
Preparing to unpack .../192-node-knockout_3.5.1-2_all.deb ...
Unpacking node-knockout (3.5.1-2) ...
Selecting previously unselected package node-knockout-sortable.
Preparing to unpack .../193-node-knockout-sortable_1.2.0+dfsg-3_all.deb ...
Unpacking node-knockout-sortable (1.2.0+dfsg-3) ...
Selecting previously unselected package node-less.
Preparing to unpack .../194-node-less_3.13.0+dfsg-7_all.deb ...
Unpacking node-less (3.13.0+dfsg-7) ...
Selecting previously unselected package node-lightgallery.
Preparing to unpack .../195-node-lightgallery_1.9.0+dfsg-1_all.deb ...
Unpacking node-lightgallery (1.9.0+dfsg-1) ...
Selecting previously unselected package node-multimatch.
Preparing to unpack .../196-node-multimatch_5.0.0-1_all.deb ...
Unpacking node-multimatch (5.0.0-1) ...
Selecting previously unselected package node-normalize.css.
Preparing to unpack .../197-node-normalize.css_8.0.1-5_all.deb ...
Unpacking node-normalize.css (8.0.1-5) ...
Selecting previously unselected package node-opentip.
Preparing to unpack .../198-node-opentip_2.4.6-3_all.deb ...
Unpacking node-opentip (2.4.6-3) ...
Selecting previously unselected package node-pikaday.
Preparing to unpack .../199-node-pikaday_1.8.0-2_all.deb ...
Unpacking node-pikaday (1.8.0-2) ...
Selecting previously unselected package node-plugin-error.
Preparing to unpack .../200-node-plugin-error_1.0.1+repack-1_all.deb ...
Unpacking node-plugin-error (1.0.1+repack-1) ...
Selecting previously unselected package node-raw-loader.
Preparing to unpack .../201-node-raw-loader_4.0.2-2_all.deb ...
Unpacking node-raw-loader (4.0.2-2) ...
Selecting previously unselected package node-style-loader.
Preparing to unpack .../202-node-style-loader_2.0.0-3_all.deb ...
Unpacking node-style-loader (2.0.0-3) ...
Selecting previously unselected package node-uglify-js.
Preparing to unpack .../203-node-uglify-js_3.14.4-2_all.deb ...
Unpacking node-uglify-js (3.14.4-2) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack .../204-sbuild-build-depends-main-dummy_0.invalid.0_amd64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up libpipeline1:amd64 (1.5.4-1) ...
Setting up node-uglify-js (3.14.4-2) ...
Setting up node-stream-shift (1.0.1-1) ...
Setting up node-clean-css (4.2.3+~4.3.0-1) ...
Setting up node-array-differ (3.0.0-3) ...
Setting up node-json-loader (0.5.7-5) ...
Setting up node-tildify (2.0.0-3) ...
Setting up node-through2 (4.0.2-2) ...
Setting up node-for-in (1.0.2-4) ...
Setting up node-pify (5.0.0+~cs5.0.0-1) ...
Setting up node-unc-path-regex (0.1.2+~0.1.0-1) ...
Setting up bsdextrautils (2.37.2-4) ...
update-alternatives: using /usr/bin/write.ul to provide /usr/bin/write (write) in auto mode
Setting up node-lodash-reescape (3.0.0-1.1) ...
Setting up node-lazystream (1.0.1-1) ...
Setting up node-slash (3.0.0-2) ...
Setting up libmagic-mgc (1:5.41-2) ...
Setting up node-fs-readdir-recursive (1.1.0-2) ...
Setting up node-v8flags (3.2.0-3) ...
Setting up node-arrify (2.0.1-2) ...
Setting up node-pinkie (2.0.4-2) ...
Setting up node-sequencify (0.0.7-1.1) ...
Setting up node-opentip (2.4.6-3) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up node-isobject (4.0.0-2) ...
Setting up node-path-root-regex (0.1.2-1.1) ...
Setting up node-get-value (1:3.0.1-4) ...
Setting up node-jquery-ui (1.13.0+dfsg-1) ...
Setting up node-js-cookie (3.0.1+~3.0.0-2) ...
Setting up node-flush-write-stream (2.0.0-5) ...
Setting up node-lodash-reevaluate (3.0.0-2) ...
Setting up libdebhelper-perl (13.5.2) ...
Setting up node-gulp-rename (1.2.2-4) ...
Setting up node-unicode-match-property-value-ecmascript (2.0.0+ds-2) ...
Setting up libjs-jquery-mousewheel (1:3.1.13-3.1) ...
Setting up node-jsesc (3.0.2-3) ...
Setting up node-regjsparser (0.8.1+ds-1) ...
Setting up libmagic1:amd64 (1:5.41-2) ...
Setting up gettext-base (0.21-4) ...
Setting up node-pinkie-promise (2.0.1-2) ...
Setting up node-emojis-list (3.0.0-2) ...
Setting up node-bluebird (3.7.2+dfsg1-5) ...
Setting up node-through2-filter (3.0.0-2) ...
Setting up libjs-moment (2.29.1+ds-3) ...
Setting up node-pikaday (1.8.0-2) ...
Setting up libjs-util (0.12.4+~1.0.10-1) ...
Setting up file (1:5.41-2) ...
Setting up node-extend (3.0.2+~3.0.1-1) ...
Setting up node-lightgallery (1.9.0+dfsg-1) ...
Setting up node-less (3.13.0+dfsg-7) ...
Setting up node-remove-trailing-separator (1.1.0-2) ...
Setting up node-cloneable-readable (2.1.0+~2.0.0-1) ...
Setting up node-minimist (1.2.5+~cs5.3.2-1) ...
Setting up node-path-type (4.0.0-2) ...
Setting up node-indent-string (4.0.0-2) ...
Setting up node-is-unc-path (1.0.0-4) ...
Setting up node-p-map (4.0.0+~3.1.0+~3.0.1-1) ...
Setting up node-flagged-respawn (1.0.1-4) ...
Setting up node-make-dir (3.1.0-2) ...
Setting up node-regjsgen (0.6.0+ds-1) ...
Setting up node-fs-exists-sync (0.1.0-1.1) ...
Setting up node-duplexify (4.1.2-1) ...
Setting up node-micromatch (4.0.4+~4.0.2-1) ...
Setting up node-ini (2.0.1-1) ...
Setting up node-postcss-value-parser (4.1.0-3) ...
Setting up autotools-dev (20180224.1+nmu1) ...
Setting up node-arr-flatten (1.1.0-3) ...
Setting up node-rechoir (0.8.0-1) ...
Setting up node-unicode-canonical-property-names-ecmascript (2.0.0-2) ...
Setting up node-beeper (2.1.0+~1.2.0-1) ...
Setting up node-for-own (1.0.0-2) ...
Setting up node-big.js (6.0.3+ds-1) ...
Setting up node-path-root (0.1.1-2) ...
Setting up node-pkg-dir (5.0.0-1) ...
Setting up node-convert-source-map (1.8.0+~1.5.2-1) ...
Setting up node-spdx-exceptions (2.3.0-2) ...
Setting up libsigsegv2:amd64 (2.13-1) ...
Setting up node-pumpify (2.0.1-2) ...
Setting up node-js-tokens (6.0.0-2) ...
Setting up node-deprecated (0.0.2-2) ...
Setting up node-core-js (3.8.2-3) ...
Setting up node-interpret (2.2.0-1) ...
Setting up node-pretty-hrtime (1.0.3+~1.0.1-1) ...
Setting up node-unique-stream (2.3.1-1) ...
Setting up node-clone-buffer (1.0.0-4) ...
Setting up node-addressparser (1.0.1+repack-2) ...
Setting up autopoint (0.21-4) ...
Setting up node-normalize-range (0.1.2-3) ...
Setting up node-is-valid-glob (1.0.0-3) ...
Setting up node-replace-ext (2.0.0-1) ...
Setting up node-concat-with-sourcemaps (1.0.7-2) ...
Setting up node-quick-lru (5.1.1-1) ...
Setting up node-regenerator-runtime (0.13.7-1) ...
Setting up node-css-selector-tokenizer (0.7.3+~cs4.1.2-1) ...
Setting up node-to-fast-properties (3.0.1-2) ...
Setting up node-autolinker (1.8.3+dfsg-5) ...
Setting up node-sparkles (1.0.1-2) ...
Setting up node-duplexer3 (0.1.4-6) ...
Setting up node-array-uniq (2.1.0-2) ...
Setting up node-dateformat (3.0.0-2) ...
Setting up node-is-path-cwd (2.2.0-2) ...
Setting up node-stream-consume (0.1.1-1) ...
Setting up libuchardet0:amd64 (0.0.7-1) ...
Setting up node-hosted-git-info (4.0.2-1) ...
Setting up node-unicode-property-aliases-ecmascript (2.0.0+ds-2) ...
Setting up node-is-plain-object (5.0.0-4) ...
Setting up node-uniq (1.0.1-2) ...
Setting up node-expand-tilde (2.0.2+~cs2.0.3-2) ...
Setting up libsub-override-perl (0.09-2) ...
Setting up node-knockout (3.5.1-2) ...
Setting up node-spdx-license-ids (3.0.11-1) ...
Setting up node-is-path-inside (3.0.3-1) ...
Setting up node-postcss (8.2.1+~cs5.3.23-8) ...
Setting up node-time-stamp (2.2.0-1) ...
Setting up node-commondir (1.0.1-2) ...
Setting up node-clone-stats (1.0.0-3) ...
Setting up node-arr-union (3.1.0+~3.1.0-1) ...
Setting up node-map-cache (0.2.2-6) ...
Setting up libjs-jquery (3.5.1+dfsg+~3.5.5-8) ...
Setting up node-archy (1.0.0-4) ...
Setting up node-glogg (1.0.2-3) ...
Setting up node-postcss-modules-extract-imports (3.0.0-2) ...
Setting up node-ordered-read-streams (1.0.1-2) ...
Setting up node-is-arrayish (0.3.2-2) ...
Setting up libjs-jquery-backstretch (2.1.17-3.1) ...
Setting up node-normalize.css (8.0.1-5) ...
Setting up libelf1:amd64 (0.186-1) ...
Setting up node-globule (1.3.2-1) ...
Setting up node-json5 (2.2.0+dfsg-1) ...
Setting up node-multipipe (4.0.0-2) ...
Setting up node-is-negated-glob (1.0.0+~1.0.0-1) ...
Setting up node-jquery (3.5.1+dfsg+~3.5.5-8) ...
Setting up libjs-underscore (1.9.1~dfsg-4) ...
Setting up node-array-union (2.1.0-2) ...
Setting up libfile-stripnondeterminism-perl (1.12.1-1) ...
Setting up node-parse-filepath (1.0.2+~1.0.0-1) ...
Setting up node-arr-diff (4.0.0-2) ...
Setting up gettext (0.21-4) ...
Setting up node-error-ex (1.3.2-3) ...
Setting up node-is-extendable (1.0.1-3) ...
Setting up libtool (2.4.6-15) ...
Setting up node-has-gulplog (0.1.0-2) ...
Setting up libjs-jquery-lazyload (1.9.7-1) ...
Setting up node-gulplog (1.0.0-1.1) ...
Setting up m4 (1.4.18-5) ...
Setting up node-util (0.12.4+~1.0.10-1) ...
Setting up node-fancy-log (1.3.3+~cs1.3.1-2) ...
Setting up node-global-prefix (3.0.0-1) ...
Setting up intltool-debian (0.35.0+20060710.5) ...
Setting up node-detect-file (1.0.0-3) ...
Setting up node-babel7-runtime (7.12.12+~cs150.141.84-8) ...
Setting up node-globby (11.0.2+~cs16.20.37-2) ...
Setting up libjs-jquery-ui (1.13.0+dfsg-1) ...
Setting up node-unicode-match-property-ecmascript (2.0.0-1) ...
Setting up node-fined (1.2.0+~cs4.5.1-3) ...
Setting up node-orchestrator (0.3.8-2) ...
Setting up node-icss-utils (5.1.0-3) ...
Setting up node-spdx-expression-parse (3.0.1+~3.0.1-1) ...
Setting up node-autoprefixer (10.3.1.0+dfsg1+~cs14.6.19-2) ...
Setting up autoconf (2.71-2) ...
Setting up node-assert (2.0.0-1) ...
Setting up dh-strip-nondeterminism (1.12.1-1) ...
Setting up node-multimatch (5.0.0-1) ...
Setting up dwz (0.14-1) ...
Setting up node-loader-utils (2.0.0-1) ...
Setting up groff-base (1.22.4-7) ...
Setting up node-raw-loader (4.0.2-2) ...
Setting up node-global-modules (2.0.0-2) ...
Setting up node-knockout-sortable (1.2.0+dfsg-3) ...
Setting up node-resolve-dir (1.0.1-3) ...
Setting up node-vinyl (2.2.1+~cs3.0.7-1) ...
Setting up node-style-loader (2.0.0-3) ...
Setting up node-del (5.1.0-3) ...
Setting up node-to-absolute-glob (2.0.2-2) ...
Setting up automake (1:1.16.5-1.1) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up node-postcss-modules-values (4.0.0+~4.0.0-1) ...
Setting up node-find-cache-dir (3.3.2+~3.2.1-1) ...
Setting up node-extend-shallow (3.0.2-3) ...
Setting up node-regexpu-core (4.8.0-1) ...
Setting up node-gulp-util (3.0.8-2) ...
Setting up node-regenerator-transform (0.14.5-4) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up node-glob-stream (6.1.0+~6.1.0-2) ...
Setting up node-plugin-error (1.0.1+repack-1) ...
Setting up man-db (2.9.4-2) ...
Not building database; man-db/auto-update is not 'true'.
Created symlink /etc/systemd/system/timers.target.wants/man-db.timer → /lib/systemd/system/man-db.timer.
Setting up node-css-loader (5.0.1+~cs14.0.5-1) ...
Setting up dh-autoreconf (20) ...
Setting up node-spdx-correct (3.1.1-2) ...
Setting up node-findup-sync (4.0.0-4) ...
Setting up node-vinyl-fs (3.0.3-5) ...
Setting up node-babel7 (7.12.12+~cs150.141.84-8) ...
update-alternatives: using /usr/bin/babeljs-7 to provide /usr/bin/babeljs (babeljs) in auto mode
update-alternatives: using /usr/bin/babeljs-7-external-helpers to provide /usr/bin/babeljs-external-helpers (babeljs-external-helpers) in auto mode
update-alternatives: using /usr/bin/babeljs-7-node to provide /usr/bin/babeljs-node (babeljs-node) in auto mode
update-alternatives: using /usr/bin/babeljs-7-parser to provide /usr/bin/babeljs-parser (babeljs-parser) in auto mode
Setting up node-validate-npm-package-license (3.0.4-1) ...
Setting up node-liftoff (3.1.0-6) ...
Setting up node-consolidate (0.16.0-2) ...
Setting up debhelper (13.5.2) ...
Setting up node-gulp-concat (2.6.1+~0.0.15+git20190329.179bb8c+~1.0.3-4) ...
Setting up node-normalize-package-data (3.0.3+~2.4.1-1) ...
Setting up node-parse-json (5.1.0+~cs5.1.6-3) ...
Setting up node-babel-loader (8.2.3-1) ...
Setting up node-es6-symbol (3.1.3+~cs3.5.0-1) ...
Setting up node-es6-iterator (2.0.3-3) ...
Setting up node-es5-ext (0.10.53+~1.1.0-2) ...
Setting up node-d (1.0.1-1) ...
Setting up node-es6-weak-map (2.0.3-2) ...
Setting up gulp (4.0.2-9) ...
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.33-1) ...

+------------------------------------------------------------------------------+
| Check architectures                                                          |
+------------------------------------------------------------------------------+

Arch check ok (amd64 included in all)

+------------------------------------------------------------------------------+
| Build environment                                                            |
+------------------------------------------------------------------------------+

Kernel: Linux 5.4.72-microsoft-standard-WSL2 #1 SMP Wed Oct 28 23:40:43 UTC 2020 amd64 (x86_64)
Toolchain package versions: binutils_2.37-10 dpkg-dev_1.21.1 g++-10_10.3.0-13 g++-11_11.2.0-12 gcc-10_10.3.0-13 gcc-11_11.2.0-12 libc6-dev_2.33-1 libstdc++-10-dev_10.3.0-13 libstdc++-11-dev_11.2.0-12 libstdc++6_11.2.0-12 linux-libc-dev_5.15.5-1
Package versions: adduser_3.118 adwaita-icon-theme_41.0-1 apt_2.3.13 at-spi2-core_2.42.0-2 auto-apt-proxy_13.4 autoconf_2.71-2 automake_1:1.16.5-1.1 autopoint_0.21-4 autotools-dev_20180224.1+nmu1 base-files_12 base-passwd_3.5.52 bash_5.1-5 binutils_2.37-10 binutils-common_2.37-10 binutils-x86-64-linux-gnu_2.37-10 bsdextrautils_2.37.2-4 bsdutils_1:2.37.2-4 build-essential_12.9 bzip2_1.0.8-5 ca-certificates_20211016 ccache_4.5.1-1 coreutils_8.32-4.1 cpp_4:11.2.0-2 cpp-10_10.3.0-13 cpp-11_11.2.0-12 dash_0.5.11+git20210903+057cd650a4ed-3 dbus_1.12.20-3 dbus-bin_1.12.20-3 dbus-daemon_1.12.20-3 dbus-session-bus-common_1.12.20-3 dbus-system-bus-common_1.12.20-3 dbus-user-session_1.12.20-3 dconf-gsettings-backend_0.40.0-2 dconf-service_0.40.0-2 debconf_1.5.79 debhelper_13.5.2 debian-archive-keyring_2021.1.1 debianutils_5.5-1 dh-autoreconf_20 dh-strip-nondeterminism_1.12.1-1 diffutils_1:3.7-5 dirmngr_2.2.27-2 dmsetup_2:1.02.175-2.1 dpkg_1.21.1 dpkg-dev_1.21.1 dwz_0.14-1 e2fsprogs_1.46.4-1 eatmydata_130-2 eslint_5.16.0~dfsg+~4.16.8-9 fakeroot_1.26-1 file_1:5.41-2 findutils_4.8.0-1 fontconfig_2.13.1-4.2 fontconfig-config_2.13.1-4.2 fonts-dejavu-core_2.37-2 g++_4:11.2.0-2 g++-10_10.3.0-13 g++-11_11.2.0-12 gcc_4:11.2.0-2 gcc-10_10.3.0-13 gcc-10-base_10.3.0-13 gcc-11_11.2.0-12 gcc-11-base_11.2.0-12 gcc-9-base_9.4.0-4+b1 gettext_0.21-4 gettext-base_0.21-4 gnupg_2.2.27-2 gnupg-l10n_2.2.27-2 gnupg-utils_2.2.27-2 gpg_2.2.27-2 gpg-agent_2.2.27-2 gpg-wks-client_2.2.27-2 gpg-wks-server_2.2.27-2 gpgconf_2.2.27-2 gpgsm_2.2.27-2 gpgv_2.2.27-2 grep_3.7-1 groff-base_1.22.4-7 gtk-update-icon-cache_3.24.30-4 gulp_4.0.2-9 gzip_1.10-4 hicolor-icon-theme_0.17-2 hostname_3.23 init-system-helpers_1.61 intltool-debian_0.35.0+20060710.5 javascript-common_11+nmu1 libacl1_2.3.1-1 libapparmor1_3.0.3-6 libapt-pkg6.0_2.3.13 libarchive-zip-perl_1.68-1 libargon2-1_0~20171227-0.2 libasan6_11.2.0-12 libassuan0_2.5.5-1 libatk-bridge2.0-0_2.38.0-2 libatk1.0-0_2.36.0-3 libatk1.0-data_2.36.0-3 libatomic1_11.2.0-12 libatspi2.0-0_2.42.0-2 libattr1_1:2.5.1-1 libaudit-common_1:3.0.6-1 libaudit1_1:3.0.6-1+b1 libavahi-client3_0.8-5 libavahi-common-data_0.8-5 libavahi-common3_0.8-5 libbinutils_2.37-10 libblkid1_2.37.2-4 libbrotli1_1.0.9-2+b3 libbsd0_0.11.3-1 libbz2-1.0_1.0.8-5 libc-ares2_1.18.1-1+b1 libc-bin_2.33-1 libc-dev-bin_2.33-1 libc6_2.33-1 libc6-dev_2.33-1 libcairo-gobject2_1.16.0-5 libcairo2_1.16.0-5 libcap-ng0_0.7.9-2.2+b1 libcap2_1:2.44-1 libcc1-0_11.2.0-12 libcolord2_1.4.5-3 libcom-err2_1.46.4-1 libcrypt-dev_1:4.4.26-1 libcrypt1_1:4.4.26-1 libcryptsetup12_2:2.4.2-1 libctf-nobfd0_2.37-10 libctf0_2.37-10 libcups2_2.3.3op2-7 libdatrie1_0.2.13-2 libdb5.3_5.3.28+dfsg1-0.8 libdbus-1-3_1.12.20-3 libdconf1_0.40.0-2 libdebconfclient0_0.261 libdebhelper-perl_13.5.2 libdeflate0_1.8-1 libdevmapper1.02.1_2:1.02.175-2.1 libdpkg-perl_1.21.1 libeatmydata1_130-2 libelf1_0.186-1 libepoxy0_1.5.9-2 libexpat1_2.4.1-3 libext2fs2_1.46.4-1 libfakeroot_1.26-1 libffi7_3.3-6 libffi8_3.4.2-3 libfile-stripnondeterminism-perl_1.12.1-1 libfontconfig1_2.13.1-4.2 libfreetype6_2.11.0+dfsg-1 libfribidi0_1.0.8-2 libgcc-10-dev_10.3.0-13 libgcc-11-dev_11.2.0-12 libgcc-s1_11.2.0-12 libgcrypt20_1.9.4-4 libgdbm-compat4_1.22-1 libgdbm6_1.22-1 libgdk-pixbuf-2.0-0_2.42.6+dfsg-2 libgdk-pixbuf2.0-bin_2.42.6+dfsg-2 libgdk-pixbuf2.0-common_2.42.6+dfsg-2 libglib2.0-0_2.70.2-1 libglib2.0-data_2.70.2-1 libgmp10_2:6.2.1+dfsg-3 libgnutls30_3.7.2-2 libgomp1_11.2.0-12 libgpg-error0_1.42-3 libgraphite2-3_1.3.14-1 libgssapi-krb5-2_1.18.3-7 libgtk-3-0_3.24.30-4 libgtk-3-bin_3.24.30-4 libgtk-3-common_3.24.30-4 libharfbuzz0b_2.7.4-1 libhiredis0.14_0.14.1-2 libhogweed6_3.7.3-1 libicu67_67.1-7 libidn2-0_2.3.2-2 libip4tc2_1.8.7-1 libisl23_0.24-2 libitm1_11.2.0-12 libjbig0_2.1-3.1+b2 libjpeg62-turbo_1:2.1.2-1 libjs-events_3.3.0+~3.0.0-2 libjs-highlight.js_9.18.5+dfsg1-1 libjs-inherits_2.0.4-4 libjs-jquery_3.5.1+dfsg+~3.5.5-8 libjs-jquery-backstretch_2.1.17-3.1 libjs-jquery-lazyload_1.9.7-1 libjs-jquery-mousewheel_1:3.1.13-3.1 libjs-jquery-ui_1.13.0+dfsg-1 libjs-moment_2.29.1+ds-3 libjs-regenerate_1.4.2-3 libjs-source-map_0.7.0++dfsg2+really.0.6.1-9 libjs-sprintf-js_1.1.2+ds1+~1.1.2-1 libjs-terser_4.1.2-9 libjs-underscore_1.9.1~dfsg-4 libjs-util_0.12.4+~1.0.10-1 libjson-c5_0.15-2 libk5crypto3_1.18.3-7 libkeyutils1_1.6.1-2 libkmod2_29-1 libkrb5-3_1.18.3-7 libkrb5support0_1.18.3-7 libksba8_1.6.0-2 liblcms2-2_2.12~rc1-2 libldap-2.4-2_2.4.59+dfsg-1 liblsan0_11.2.0-12 liblz4-1_1.9.3-2 liblzma5_5.2.5-2 libmagic-mgc_1:5.41-2 libmagic1_1:5.41-2 libmd0_1.0.4-1 libmount1_2.37.2-4 libmpc3_1.2.1-1 libmpfr6_4.1.0-3 libncursesw6_6.3-1 libnettle8_3.7.3-1 libnghttp2-14_1.43.0-1 libnode72_12.22.7~dfsg-2 libnotify-bin_0.7.9-3 libnotify4_0.7.9-3 libnpth0_1.6-3 libnsl-dev_1.3.0-2 libnsl2_1.3.0-2 libnss-systemd_249.7-1 libp11-kit0_0.24.0-6 libpam-modules_1.4.0-11 libpam-modules-bin_1.4.0-11 libpam-runtime_1.4.0-11 libpam-systemd_249.7-1 libpam0g_1.4.0-11 libpango-1.0-0_1.48.10+ds1-1 libpangocairo-1.0-0_1.48.10+ds1-1 libpangoft2-1.0-0_1.48.10+ds1-1 libpcre2-8-0_10.39-3 libpcre3_2:8.39-13 libperl5.32_5.32.1-6 libpipeline1_1.5.4-1 libpixman-1-0_0.40.0-1 libpng16-16_1.6.37-3 libquadmath0_11.2.0-12 libreadline8_8.1-2 librsvg2-2_2.50.7+dfsg-2 librsvg2-common_2.50.7+dfsg-2 libsasl2-2_2.1.27+dfsg2-2 libsasl2-modules-db_2.1.27+dfsg2-2 libseccomp2_2.5.3-2 libselinux1_3.3-1+b1 libsemanage-common_3.3-1 libsemanage2_3.3-1+b1 libsepol1_3.1-1 libsepol2_3.3-1 libsigsegv2_2.13-1 libsmartcols1_2.37.2-4 libsqlite3-0_3.36.0-2 libss2_1.46.4-1 libssl1.1_1.1.1l-1 libstdc++-10-dev_10.3.0-13 libstdc++-11-dev_11.2.0-12 libstdc++6_11.2.0-12 libsub-override-perl_0.09-2 libsystemd0_249.7-1 libtasn1-6_4.18.0-4 libthai-data_0.1.28-4.1 libthai0_0.1.28-4.1 libtiff5_4.3.0-2 libtinfo6_6.3-1 libtirpc-common_1.3.2-2 libtirpc-dev_1.3.2-2 libtirpc3_1.3.2-2 libtool_2.4.6-15 libtsan0_11.2.0-12 libubsan1_11.2.0-12 libuchardet0_0.0.7-1 libudev1_249.7-1 libunistring2_0.9.10-6 libuuid1_2.37.2-4 libuv1_1.42.0-1 libwayland-client0_1.19.0-2+b1 libwayland-cursor0_1.19.0-2+b1 libwayland-egl1_1.19.0-2+b1 libwebp6_0.6.1-2.1 libx11-6_2:1.7.2-2+b1 libx11-data_2:1.7.2-2 libxau6_1:1.0.9-1 libxcb-render0_1.14-3 libxcb-shm0_1.14-3 libxcb1_1.14-3 libxcomposite1_1:0.4.5-1 libxcursor1_1:1.2.0-2 libxdamage1_1:1.1.5-2 libxdmcp6_1:1.1.2-3 libxext6_2:1.3.4-1 libxfixes3_1:5.0.3-2 libxi6_2:1.8-1 libxinerama1_2:1.1.4-2 libxkbcommon0_1.3.1-1 libxml2_2.9.12+dfsg-5+b1 libxrandr2_2:1.5.2-1 libxrender1_1:0.9.10-1 libxtst6_2:1.2.3-1 libxxhash0_0.8.0-2 libzstd1_1.4.8+dfsg-3 linux-libc-dev_5.15.5-1 login_1:4.8.1-2 logsave_1.46.4-1 lsb-base_11.1.0 m4_1.4.18-5 make_4.3-4.1 man-db_2.9.4-2 mawk_1.3.4.20200120-2 mocha_9.1.3+ds1+~cs31.2.38-1 mount_2.37.2-4 ncurses-base_6.3-1 ncurses-bin_6.3-1 node-acorn_8.6.0+ds+~cs24.17.6-1 node-addressparser_1.0.1+repack-2 node-ajv_6.12.6-3 node-ajv-keywords_3.5.2-2 node-ansi-colors_4.1.1-3 node-ansi-escapes_5.0.0+really.4.3.1-1 node-ansi-regex_5.0.1-1 node-ansi-styles_4.3.0+~4.2.0-1 node-anymatch_3.1.2+~cs4.5.6-1 node-archy_1.0.0-4 node-argparse_2.0.1-2 node-arr-diff_4.0.0-2 node-arr-flatten_1.1.0-3 node-arr-union_3.1.0+~3.1.0-1 node-array-differ_3.0.0-3 node-array-union_2.1.0-2 node-array-uniq_2.1.0-2 node-arrify_2.0.1-2 node-assert_2.0.0-1 node-async-each_1.0.3-1 node-autolinker_1.8.3+dfsg-5 node-autoprefixer_10.3.1.0+dfsg1+~cs14.6.19-2 node-babel-loader_8.2.3-1 node-babel7_7.12.12+~cs150.141.84-8 node-babel7-runtime_7.12.12+~cs150.141.84-8 node-balanced-match_2.0.0-1 node-beeper_2.1.0+~1.2.0-1 node-big.js_6.0.3+ds-1 node-binary-extensions_2.2.0-2 node-bl_4.0.3-1 node-bluebird_3.7.2+dfsg1-5 node-brace-expansion_2.0.0-1 node-braces_3.0.2+~3.0.1-1 node-browser-stdout_1.3.1-5 node-browserslist_4.18.1+~cs5.1.2-1 node-camelcase_6.2.0-2 node-caniuse-lite_1.0.30001283+dfsg+~1.0.1-1 node-chalk_4.1.2-1 node-chokidar_3.4.3-3 node-chrome-trace-event_1.0.3-1 node-ci-info_3.2.0+~cs4.2.0-4 node-clean-css_4.2.3+~4.3.0-1 node-cli-cursor_3.1.0-2 node-cli-spinners_2.5.0-1 node-cli-width_3.0.0-2 node-cliui_7.0.4+repack+~cs3.1.0-2 node-clone_2.1.2-3 node-clone-buffer_1.0.0-4 node-clone-stats_1.0.0-3 node-cloneable-readable_2.1.0+~2.0.0-1 node-color-convert_2.0.1-1 node-color-name_1.1.4+~1.1.1-2 node-commander_6.2.1-2 node-commondir_1.0.1-2 node-concat-stream_2.0.0-2 node-concat-with-sourcemaps_1.0.7-2 node-consolidate_0.16.0-2 node-convert-source-map_1.8.0+~1.5.2-1 node-core-js_3.8.2-3 node-core-util-is_1.0.3-1 node-css-loader_5.0.1+~cs14.0.5-1 node-css-selector-tokenizer_0.7.3+~cs4.1.2-1 node-d_1.0.1-1 node-dateformat_3.0.0-2 node-debbundle-es-to-primitive_1.2.1+~cs9.7.15-2 node-debug_4.3.2+~cs4.1.7-1 node-decamelize_4.0.0-1 node-deep-equal_2.0.5+~cs32.11.68-2 node-deep-is_0.1.4-1 node-defaults_1.0.3+~1.0.3-1 node-define-properties_1.1.3-3 node-del_5.1.0-3 node-deprecated_0.0.2-2 node-detect-file_1.0.0-3 node-diff_5.0.0~dfsg+~5.0.1-2 node-doctrine_3.0.0-3 node-duplexer3_0.1.4-6 node-duplexify_4.1.2-1 node-electron-to-chromium_1.4.4-1 node-emojis-list_3.0.0-2 node-end-of-stream_1.4.4+~1.4.1-1 node-enhanced-resolve_4.1.0-4 node-errno_1.0.0-1 node-error-ex_1.3.2-3 node-es-abstract_1.19.1+~cs16.20.21-1 node-es5-ext_0.10.53+~1.1.0-2 node-es6-iterator_2.0.3-3 node-es6-symbol_3.1.3+~cs3.5.0-1 node-es6-weak-map_2.0.3-2 node-escape-string-regexp_4.0.0-2 node-eslint-scope_5.1.1-1 node-eslint-utils_2.1.0-3 node-eslint-visitor-keys_2.0.0+~0.0.45-1 node-espree_7.3.1~dfsg1-3 node-esprima_4.0.1+ds+~4.0.3-2 node-esquery_1.4.0~ds-1 node-esrecurse_4.3.0-2 node-estraverse_5.2.0+ds-1 node-esutils_2.0.3-3 node-events_3.3.0+~3.0.0-2 node-execa_5.1.1+repack+~cs17.3.6-1 node-exit-hook_2.2.0-1 node-expand-tilde_2.0.2+~cs2.0.3-2 node-extend_3.0.2+~3.0.1-1 node-extend-shallow_3.0.2-3 node-external-editor_3.1.0+dfsg-1 node-fancy-log_1.3.3+~cs1.3.1-2 node-fast-deep-equal_3.1.3-1 node-fast-levenshtein_2.0.6+ds-3 node-file-entry-cache_6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-3 node-fill-range_7.0.1-4 node-find-cache-dir_3.3.2+~3.2.1-1 node-find-up_5.0.0-2 node-findup-sync_4.0.0-4 node-fined_1.2.0+~cs4.5.1-3 node-flagged-respawn_1.0.1-4 node-flat-cache_3.0.4~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-3 node-flatted_3.2.4~ds-1 node-flush-write-stream_2.0.0-5 node-for-in_1.0.2-4 node-for-own_1.0.0-2 node-fs-exists-sync_0.1.0-1.1 node-fs-readdir-recursive_1.1.0-2 node-fs.realpath_1.0.0-2 node-function-bind_1.1.1+repacked+~1.0.3-1 node-functional-red-black-tree_1.0.1+20181105-5 node-get-caller-file_2.0.5+~cs1.1.1-2 node-get-stream_6.0.1-1 node-get-value_1:3.0.1-4 node-glob_7.1.7+~cs7.5.19-2 node-glob-parent_6.0.2+~5.1.1-1 node-glob-stream_6.1.0+~6.1.0-2 node-global-modules_2.0.0-2 node-global-prefix_3.0.0-1 node-globals_13.5.0-1 node-globby_11.0.2+~cs16.20.37-2 node-globule_1.3.2-1 node-glogg_1.0.2-3 node-graceful-fs_4.2.4+repack-1 node-growl_1.10.5-3 node-gulp-concat_2.6.1+~0.0.15+git20190329.179bb8c+~1.0.3-4 node-gulp-rename_1.2.2-4 node-gulp-util_3.0.8-2 node-gulplog_1.0.0-1.1 node-has-flag_4.0.0-2 node-has-gulplog_0.1.0-2 node-he_1.2.0-2.1 node-hosted-git-info_4.0.2-1 node-iconv-lite_0.6.3-2 node-icss-utils_5.1.0-3 node-ignore_5.1.9-1 node-imurmurhash_0.1.4+dfsg+~0.1.1-1 node-indent-string_4.0.0-2 node-inflight_1.0.6-2 node-inherits_2.0.4-4 node-ini_2.0.1-1 node-inquirer_8.2.0+~cs26.5.5-1 node-interpret_2.2.0-1 node-invert-kv_3.0.1-2 node-is-arrayish_0.3.2-2 node-is-binary-path_2.1.0-3.1 node-is-buffer_2.0.5-2 node-is-extendable_1.0.1-3 node-is-extglob_2.1.1-4 node-is-glob_4.0.3-1 node-is-negated-glob_1.0.0+~1.0.0-1 node-is-number_7.0.0-3 node-is-path-cwd_2.2.0-2 node-is-path-inside_3.0.3-1 node-is-plain-obj_3.0.0-2 node-is-plain-object_5.0.0-4 node-is-stream_2.0.1-1 node-is-unc-path_1.0.0-4 node-is-valid-glob_1.0.0-3 node-isarray_2.0.5-3 node-isexe_2.0.0+~2.0.1-4 node-isobject_4.0.0-2 node-jest-worker_27.4.4~ds+~cs68.44.26-1 node-jquery_3.5.1+dfsg+~3.5.5-8 node-jquery-ui_1.13.0+dfsg-1 node-js-cookie_3.0.1+~3.0.0-2 node-js-tokens_6.0.0-2 node-js-yaml_4.1.0+dfsg+~4.0.5-5 node-jschardet_2.2.1+dfsg+~1.3.0-3 node-jsesc_3.0.2-3 node-json-loader_0.5.7-5 node-json-parse-better-errors_1.0.2+~cs3.3.1-1 node-json-schema_0.4.0+~7.0.9-1 node-json-schema-traverse_1.0.0-3 node-json-stable-stringify_1.0.1+~cs5.2.33-1 node-json5_2.2.0+dfsg-1 node-jsonify_0.0.0-1.1 node-kind-of_6.0.3+dfsg-2 node-knockout_3.5.1-2 node-knockout-sortable_1.2.0+dfsg-3 node-lazystream_1.0.1-1 node-lcid_3.1.1-2 node-less_3.13.0+dfsg-7 node-levn_0.4.1+dfsg-2 node-liftoff_3.1.0-6 node-lightgallery_1.9.0+dfsg-1 node-loader-runner_4.2.0-1 node-loader-utils_2.0.0-1 node-locate-path_6.0.0-2 node-lodash_4.17.21+dfsg+~cs8.31.198.20210220-5 node-lodash-packages_4.17.21+dfsg+~cs8.31.198.20210220-5 node-lodash-reescape_3.0.0-1.1 node-lodash-reevaluate_3.0.0-2 node-lru-cache_6.0.0+~5.1.1-1 node-make-dir_3.1.0-2 node-map-cache_0.2.2-6 node-mem_1.1.0-1.1 node-memory-fs_0.5.0-1 node-merge-stream_2.0.0+~1.1.2-2 node-micromatch_4.0.4+~4.0.2-1 node-mime_2.5.0+dfsg+~cs3.90.0-1 node-mime-types_2.1.33-1 node-mimic-fn_3.1.0-2 node-minimatch_3.0.4+~3.0.3-1 node-minimist_1.2.5+~cs5.3.2-1 node-mkdirp_1.0.4+~1.0.2-1 node-ms_2.1.3+~cs0.7.31-2 node-multimatch_5.0.0-1 node-multipipe_4.0.0-2 node-mute-stream_0.0.8+~0.0.1-1 node-neo-async_2.6.2+~cs3.0.0-2 node-normalize-package-data_3.0.3+~2.4.1-1 node-normalize-path_3.0.0-3 node-normalize-range_0.1.2-3 node-normalize.css_8.0.1-5 node-npm-run-path_4.0.1-1 node-object-assign_4.1.1-6 node-object-inspect_1.11.0+~cs1.8.1-2 node-once_1.4.0-4 node-opentip_2.4.6-3 node-optionator_0.9.1+dfsg+~cs1.2.3-1 node-orchestrator_0.3.8-2 node-ordered-read-streams_1.0.1-2 node-os-locale_5.0.0-2 node-p-limit_3.1.0+~cs2.3.0-1 node-p-locate_5.0.0-2 node-p-map_4.0.0+~3.1.0+~3.0.1-1 node-parse-filepath_1.0.2+~1.0.0-1 node-parse-json_5.1.0+~cs5.1.6-3 node-path-dirname_1.0.2-2 node-path-exists_4.0.0-3 node-path-is-absolute_2.0.0-2 node-path-is-inside_1.0.2+~1.0.0-1 node-path-root_0.1.1-2 node-path-root-regex_0.1.2-1.1 node-path-type_4.0.0-2 node-pify_5.0.0+~cs5.0.0-1 node-pikaday_1.8.0-2 node-pinkie_2.0.4-2 node-pinkie-promise_2.0.1-2 node-pkg-dir_5.0.0-1 node-plugin-error_1.0.1+repack-1 node-postcss_8.2.1+~cs5.3.23-8 node-postcss-modules-extract-imports_3.0.0-2 node-postcss-modules-values_4.0.0+~4.0.0-1 node-postcss-value-parser_4.1.0-3 node-prelude-ls_1.2.1+dfsg-3 node-pretty-hrtime_1.0.3+~1.0.1-1 node-process-nextick-args_2.0.1-1 node-progress_2.0.3-1 node-prr_1.0.1-2 node-pump_3.0.0-5 node-pumpify_2.0.1-2 node-punycode_2.1.1-5 node-quick-lru_5.1.1-1 node-randombytes_2.1.0-1 node-raw-loader_4.0.2-2 node-readable-stream_3.6.0+~cs3.0.0-1 node-readdirp_3.6.0-1 node-rechoir_0.8.0-1 node-regenerate_1.4.2-3 node-regenerate-unicode-properties_9.0.0+ds-1 node-regenerator-runtime_0.13.7-1 node-regenerator-transform_0.14.5-4 node-regexpp_3.2.0-2 node-regexpu-core_4.8.0-1 node-regjsgen_0.6.0+ds-1 node-regjsparser_0.8.1+ds-1 node-remove-trailing-separator_1.1.0-2 node-repeat-string_1.6.1+repack-1 node-replace-ext_2.0.0-1 node-require-directory_2.1.1-1.1 node-require-main-filename_2.0.0-2 node-resolve_1.20.0+~cs5.27.9-1 node-resolve-dir_1.0.1-3 node-resolve-from_5.0.0+~3.1.0+~3.3.0+~2.0.0-1 node-restore-cursor_3.1.0-2 node-rimraf_3.0.2-1 node-run-async_2.4.1-2 node-safe-buffer_5.2.1+~cs2.1.2-2 node-schema-utils_3.1.1~ds-1 node-semver_7.3.5+~7.3.8-1 node-sequencify_0.0.7-1.1 node-serialize-javascript_6.0.0-1 node-set-blocking_2.0.0-2 node-set-immediate-shim_2.0.0-2 node-shebang-command_2.0.0-1 node-shebang-regex_3.0.0-2 node-signal-exit_3.0.3-1 node-slash_3.0.0-2 node-slice-ansi_5.0.0+~4.0.0-4 node-source-list-map_2.0.1+dfsg-2 node-source-map_0.7.0++dfsg2+really.0.6.1-9 node-source-map-support_0.5.21+ds+~0.5.4-1 node-sparkles_1.0.1-2 node-spdx-correct_3.1.1-2 node-spdx-exceptions_2.3.0-2 node-spdx-expression-parse_3.0.1+~3.0.1-1 node-spdx-license-ids_3.0.11-1 node-sprintf-js_1.1.2+ds1+~1.1.2-1 node-stream-consume_0.1.1-1 node-stream-shift_1.0.1-1 node-string-decoder_1.3.0-5 node-string-width_4.2.3+~9.2.2-1 node-strip-ansi_6.0.1-1 node-strip-eof_2.0.0-1 node-strip-json-comments_4.0.0-4 node-style-loader_2.0.0-3 node-supports-color_8.1.1+~8.1.1-1 node-tapable_1.0.0-6 node-terser_4.1.2-9 node-text-table_0.2.0-4 node-through_2.3.8+~cs0.0.30-1 node-through2_4.0.2-2 node-through2-filter_3.0.0-2 node-tildify_2.0.0-3 node-time-stamp_2.2.0-1 node-tmp_0.2.1+dfsg+~0.2.2-1 node-to-absolute-glob_2.0.2-2 node-to-fast-properties_3.0.1-2 node-to-regex-range_5.0.1-4 node-tslib_2.3.1-2 node-type-check_0.4.0+dfsg-3 node-typedarray_0.0.6-2 node-uglify-js_3.14.4-2 node-unc-path-regex_0.1.2+~0.1.0-1 node-unicode-canonical-property-names-ecmascript_2.0.0-2 node-unicode-match-property-ecmascript_2.0.0-1 node-unicode-match-property-value-ecmascript_2.0.0+ds-2 node-unicode-property-aliases-ecmascript_2.0.0+ds-2 node-uniq_1.0.1-2 node-unique-stream_2.3.1-1 node-uri-js_4.4.0+dfsg-7 node-util_0.12.4+~1.0.10-1 node-util-deprecate_1.0.2-3 node-v8flags_3.2.0-3 node-validate-npm-package-license_3.0.4-1 node-vinyl_2.2.1+~cs3.0.7-1 node-vinyl-fs_3.0.3-5 node-watchpack_2.2.0-1 node-wcwidth.js_1.0.2-1 node-webassemblyjs_1.11.1+dfsg+~cs10.10.21-1 node-webpack-sources_3.2.1-1 node-which_2.0.2+~cs1.3.2-2 node-which-module_2.0.0-2 node-wide-align_1.1.3-3 node-wrap-ansi_4.0.0-5 node-wrappy_1.0.2-2 node-write_2.0.0~6.0.0+~3.0.4+~2.0.0+~1.0.0+~2.0.1-3 node-xtend_4.0.2-3 node-y18n_5.0.8-2 node-yallist_4.0.0+~4.0.1-1 node-yargs_15.3.1+repack-3 node-yargs-parser_18.1.3+~15.0.0-2 nodejs_12.22.7~dfsg-2 nodejs-doc_12.22.7~dfsg-2 notification-daemon_3.20.0-4+b1 openssl_1.1.1l-1 passwd_1:4.8.1-2 patch_2.7.6-7 perl_5.32.1-6 perl-base_5.32.1-6 perl-modules-5.32_5.32.1-6 pinentry-curses_1.1.0-4 po-debconf_1.0.21+nmu1 readline-common_8.1-2 rpcsvc-proto_1.4.2-4 sbuild-build-depends-main-dummy_0.invalid.0 sed_4.8-1 sensible-utils_0.0.17 shared-mime-info_2.0-1 systemd_249.7-1 systemd-sysv_249.7-1 systemd-timesyncd_249.7-1 sysvinit-utils_3.00-1 tar_1.34+dfsg-1 tzdata_2021e-1 ucf_3.0043 uglifyjs.terser_4.1.2-9 util-linux_2.37.2-4 webpack_5.65.0+dfsg+~cs9.20.9-1 x11-common_1:7.7+23 xdg-user-dirs_0.17-2 xkb-data_2.33-1 xz-utils_5.2.5-2 zlib1g_1:1.2.11.dfsg-2

+------------------------------------------------------------------------------+
| Build                                                                        |
+------------------------------------------------------------------------------+


Unpack source
-------------

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 3.0 (quilt)
Source: rainloop
Binary: rainloop
Architecture: all
Version: 1.16.0+dfsg-1
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
Uploaders: Daniel Ring <dring at wolfishly.me>
Homepage: https://rainloop.net/
Standards-Version: 4.6.0
Vcs-Browser: https://salsa.debian.org/js-team/rainloop
Vcs-Git: https://salsa.debian.org/js-team/rainloop.git
Build-Depends: debhelper-compat (= 13), nodejs, gulp, node-gulp-concat, node-gulp-rename, node-gulp-util, node-autoprefixer, node-clean-css, node-less, node-postcss, node-uglify-js, node-escape-string-regexp, node-multimatch, node-plugin-error, node-readable-stream, node-through2, webpack, node-babel7, node-babel-loader, node-css-loader, node-json-loader, node-raw-loader, node-style-loader, node-addressparser, node-autolinker, node-js-cookie, node-knockout, node-knockout-sortable (>= 1.2.0~), node-lightgallery, node-normalize.css, node-opentip (>= 2.4.6-3~), node-pikaday, libjs-jquery, libjs-jquery-ui, libjs-jquery-backstretch, libjs-jquery-mousewheel, libjs-jquery-lazyload, libjs-moment, libjs-underscore
Package-List:
 rainloop deb javascript optional arch=all
Checksums-Sha1:
 9e329e3e26c8cfb21de79e36db61accd180d9a33 2560408 rainloop_1.16.0+dfsg.orig.tar.xz
 39f6b07d984d4558b9630d6bddc8bb1c6ab3b368 45864 rainloop_1.16.0+dfsg-1.debian.tar.xz
Checksums-Sha256:
 d9d7da97f708f4ab96ce38778194389c106ff8170754196d4d1d3b13662b3b59 2560408 rainloop_1.16.0+dfsg.orig.tar.xz
 2c67ff8c17094918db85ae7abfa1c4a680b6eb5ac9fe3fd07deee1193af52dfc 45864 rainloop_1.16.0+dfsg-1.debian.tar.xz
Files:
 77d77d0e238ce36112750a9497fe6f37 2560408 rainloop_1.16.0+dfsg.orig.tar.xz
 b2f3c262082684a89a68b57abd7889fb 45864 rainloop_1.16.0+dfsg-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAmGxlDkACgkQ9tdMp8mZ
7umwDA//SIKeCpYsdiZjSaNPgMJ5h0/gJie7sBV9/cT8LEh+CjCN8nEhyOMMhDbA
kExQKioO82f2X8MppKHy17gjFfV2g30XAc7FPbrW7R1fYrE+laiadxLcEdLyiGXF
bpbTLj9aypGWmc2ClZEq+f+cVR9rdr8i3PwJbkNw4O+EfIaShCJn9HTyRwCrw0fH
Zq6u5aazgdiBQaztO/VdwY+Br9S2qTpaYxeVJPMST+rcGkX2yZHNTCGscBbNvisI
u8iyXlrmWuFluF5HhE+E6MtneJ/DWGpJO8//KmtAfqwhF0VBHFDjD+ySh5KIUB7Y
M4dQ5Jzttbec7yXlFQ7qV7keLDJaK+GQOFHJLL2QwgXaV2CY3uqxZmuFEXy3jItu
7/sMngfcnUiMZaA4mNAehnbvp+h1FstLDOKPM6/Z+25afVH5o+5Vw9d1h0GZMJxh
aQilHePnGWqoXGccn9QRXEErZ+B8DcNiclTVEFyFGYXX+iajzk6K1lENf188DPQS
wFtY1K0g/rx4+RZoA0nTE9+H5lmEO+M4uw7kdah5mWv9fHFZEuPwA/PVphV7swWs
qZjLVf6wydHufndjfMcsTBI1JFVPZDdlSiyqawdxjnbB1JdNgOEQGpAuLEwIgej0
VdHZsOdS721X1j69UnTPS2moIND8sY8a5Ul+EHlzSUmNe/rp4rM=
=70sx
-----END PGP SIGNATURE-----

gpgv: unknown type of key resource 'trustedkeys.kbx'
gpgv: keyblock resource '/tmp/dpkg-verify-sig.XxBC8veZ/trustedkeys.kbx': General error
gpgv: Signature made Thu Dec  9 05:29:29 2021 UTC
gpgv:                using RSA key 00DFE58B8B555779D1005EC9F6D74CA7C999EEE9
gpgv: Can't check signature: No public key
dpkg-source: warning: cannot verify signature ./rainloop_1.16.0+dfsg-1.dsc
dpkg-source: info: extracting rainloop in /<<PKGBUILDDIR>>
dpkg-source: info: unpacking rainloop_1.16.0+dfsg.orig.tar.xz
dpkg-source: info: unpacking rainloop_1.16.0+dfsg-1.debian.tar.xz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: applying debian-lazyload.patch
dpkg-source: info: applying ifvisible.patch
dpkg-source: info: applying progressjs.patch
dpkg-source: info: applying ssm.patch
dpkg-source: info: applying classnames.patch
dpkg-source: info: applying jquery-ui-1.13.patch
dpkg-source: info: applying jquery-3.patch
dpkg-source: info: applying debian-ckeditor.patch
dpkg-source: info: applying debian-libraries.patch
dpkg-source: info: applying disable-version-path.patch
dpkg-source: info: applying set-custom-data-path.patch
dpkg-source: info: applying debian-build.patch

Check disk space
----------------

Sufficient free space for build

User Environment
----------------

APT_CONFIG=/var/lib/sbuild/apt.conf
HOME=/sbuild-nonexistent
LANG=en_US.UTF-8
LC_ALL=C.UTF-8
LOGNAME=ayoyimika
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=ayoyimika
SCHROOT_SESSION_ID=unstable-amd64-sbuild-2405b0c6-f6be-41ef-805d-cad2ca465911
SCHROOT_UID=1000
SCHROOT_USER=ayoyimika
SHELL=/bin/sh
USER=ayoyimika

dpkg-buildpackage
-----------------

Command: dpkg-buildpackage --sanitize-env -us -uc -b -rfakeroot
dpkg-buildpackage: info: source package rainloop
dpkg-buildpackage: info: source version 1.16.0+dfsg-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Daniel Ring <dring at wolfishly.me>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
dpkg-source: info: using options from rainloop-1.16.0+dfsg/debian/source/options: --extend-diff-ignore=\.git|node_modules
 fakeroot debian/rules clean
dh clean
   debian/rules override_dh_auto_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
gulp clean
[12:41:39] Local modules not found in /<<PKGBUILDDIR>>
[12:41:39] Try running: npm install
[12:41:39] Using globally installed gulp
[12:41:40] Using gulpfile /<<PKGBUILDDIR>>/gulpfile.js
[12:41:40] Starting 'clean'...
[12:41:40] Starting 'rainloopClean'...
[12:41:40] Starting '<anonymous>'...
[12:41:40] Finished 'rainloopClean' after 13 ms
[12:41:40] Finished '<anonymous>' after 13 ms
[12:41:40] Finished 'clean' after 19 ms
dh_auto_clean
	install -d /<<BUILDDIR>>/rainloop-1.16.0\+dfsg/debian/.debhelper/generated/_source/home
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_clean
	rm -f debian/debhelper-build-stamp
	rm -rf debian/.debhelper/
	rm -f -- debian/rainloop.substvars debian/files
	rm -fr -- debian/rainloop/ debian/tmp/
	find .  \( \( \
		\( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \
	        \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \
		 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \
		 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \
		 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \
		\) -exec rm -f {} + \) -o \
		\( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \)
 debian/rules build
make: 'build' is up to date.
 fakeroot debian/rules binary
dh binary
   dh_update_autotools_config
   dh_autoreconf
   dh_auto_configure
	install -d /<<BUILDDIR>>/rainloop-1.16.0\+dfsg/debian/.debhelper/generated/_source/home
   debian/rules override_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
gulp rainloop
[12:41:42] Local modules not found in /<<PKGBUILDDIR>>
[12:41:42] Try running: npm install
[12:41:42] Using globally installed gulp
[12:41:44] Using gulpfile /<<PKGBUILDDIR>>/gulpfile.js
[12:41:44] Starting 'rainloop'...
[12:41:44] Starting '<anonymous>'...
[12:41:44] Finished '<anonymous>' after 9.16 ms
[12:41:44] Starting 'assetsCopy'...
[12:41:44] Finished 'assetsCopy' after 256 ms
[12:41:44] Starting 'jsClean'...
[12:41:44] Starting 'cssClean'...
[12:41:44] Starting 'momentLocalesClear'...
[12:41:44] Starting 'ckeditorClear'...
[12:41:44] Starting 'fontasticFontsClear'...
[12:41:44] Starting 'lightgalleryFontsClear'...
[12:41:44] Finished 'ckeditorClear' after 9.79 ms
[12:41:44] Starting 'ckeditorCopyPlugins'...
[12:41:44] Finished 'jsClean' after 26 ms
[12:41:44] Starting '<anonymous>'...
[12:41:45] '<anonymous>' errored after 1.05 s
[12:41:45] ValidationError in plugin 'webpack'
Message:
    Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema.
 - configuration.module.rules[2] has an unknown property 'loaders'. These properties are valid:
   object { assert?, compiler?, dependency?, descriptionData?, enforce?, exclude?, generator?, include?, issuer?, issuerLayer?, layer?, loader?, mimetype?, oneOf?, options?, parser?, realResource?, resolve?, resource?, resourceFragment?, resourceQuery?, rules?, scheme?, sideEffects?, test?, type?, use? }
   -> A rule description with conditions and effects for modules.
Details:
    errors: [object Object]
    schema: [object Object]
    headerName: Webpack
    baseDataPath: configuration
    postFormatter: (formattedError, error) => {
				const children = error.children;
				if (
					children &&
					children.some(
						child =>
							child.keyword === "absolutePath" &&
							child.dataPath === ".output.filename"
					)
				) {
					return `${formattedError}\nPlease use output.path to specify absolute path and output.filename for the file name.`;
				}

				if (
					children &&
					children.some(
						child =>
							child.keyword === "pattern" && child.dataPath === ".devtool"
					)
				) {
					return (
						`${formattedError}\n` +
						"BREAKING CHANGE since webpack 5: The devtool option is more strict.\n" +
						"Please strictly follow the order of the keywords in the pattern."
					);
				}

				if (error.keyword === "additionalProperties") {
					const params =
						/** @type {import("ajv").AdditionalPropertiesParams} */ (
							error.params
						);
					if (
						Object.prototype.hasOwnProperty.call(
							DID_YOU_MEAN,
							params.additionalProperty
						)
					) {
						return `${formattedError}\nDid you mean ${
							DID_YOU_MEAN[params.additionalProperty]
						}?`;
					}

					if (
						Object.prototype.hasOwnProperty.call(
							REMOVED,
							params.additionalProperty
						)
					) {
						return `${formattedError}\n${REMOVED[params.additionalProperty]}?`;
					}

					if (!error.dataPath) {
						if (params.additionalProperty === "debug") {
							return (
								`${formattedError}\n` +
								"The 'debug' property was removed in webpack 2.0.0.\n" +
								"Loaders should be updated to allow passing this option via loader options in module.rules.\n" +
								"Until loaders are updated one can use the LoaderOptionsPlugin to switch loaders into debug mode:\n" +
								"plugins: [\n" +
								"  new webpack.LoaderOptionsPlugin({\n" +
								"    debug: true\n" +
								"  })\n" +
								"]"
							);
						}

						if (params.additionalProperty) {
							return (
								`${formattedError}\n` +
								"For typos: please correct them.\n" +
								"For loader options: webpack >= v2.0.0 no longer allows custom properties in configuration.\n" +
								"  Loaders should be updated to allow passing options via loader options in module.rules.\n" +
								"  Until loaders are updated one can use the LoaderOptionsPlugin to pass these options to the loader:\n" +
								"  plugins: [\n" +
								"    new webpack.LoaderOptionsPlugin({\n" +
								"      // test: /\\.xxx$/, // may apply this only for some modules\n" +
								"      options: {\n" +
								`        ${params.additionalProperty}: …\n` +
								"      }\n" +
								"    })\n" +
								"  ]"
							);
						}
					}
				}

				return formattedError;
			}
    domainThrown: true
[12:41:45] 'rainloop' errored after 1.35 s
[12:41:45] The following tasks did not complete: <series>, <parallel>, cssClean, <series>, <series>, <series>, <series>, momentLocalesClear, fontasticFontsClear, lightgalleryFontsClear, ckeditorCopyPlugins
[12:41:45] Did you forget to signal async completion?
make[1]: *** [debian/rules:10: override_dh_auto_build] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:7: binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------
Build finished at 2021-12-13T12:41:45Z

Finished
--------


+------------------------------------------------------------------------------+
| Cleanup                                                                      |
+------------------------------------------------------------------------------+

Purging /<<BUILDDIR>>
Not cleaning session: cloned chroot in use
E: Build failure (dpkg-buildpackage died)

+------------------------------------------------------------------------------+
| Summary                                                                      |
+------------------------------------------------------------------------------+

Build Architecture: amd64
Build Type: binary
Build-Space: 15784
Build-Time: 9
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 32
Job: /tmp/tmp.3Jg9rTd5Rk/rainloop_1.16.0+dfsg-1.dsc
Machine Architecture: amd64
Package: rainloop
Package-Time: 65
Source-Version: 1.16.0+dfsg-1
Space: 15784
Status: attempted
Version: 1.16.0+dfsg-1
--------------------------------------------------------------------------------
Finished at 2021-12-13T12:41:45Z
Build needed 00:01:05, 15784k disk space
-------------- next part --------------
A non-text attachment was scrubbed...
Name: OpenPGP_0x1FF1115A4CAC464D.asc
Type: application/pgp-keys
Size: 3150 bytes
Desc: OpenPGP public key
URL: <http://alioth-lists.debian.net/pipermail/pkg-javascript-devel/attachments/20211213/f2786144/attachment.key>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: OpenPGP_signature
Type: application/pgp-signature
Size: 840 bytes
Desc: OpenPGP digital signature
URL: <http://alioth-lists.debian.net/pipermail/pkg-javascript-devel/attachments/20211213/f2786144/attachment.sig>


More information about the Pkg-javascript-devel mailing list