Re: [Pkg-javascript-devel] [RFS] node-redux

2020-05-11 Thread Nilesh Patra
> Therefore I tried another approach and upgraded the package
> node-symbol-observable to 1.2.0 instead, and upgrading
> node-symbol-observable to 1.2.0 works fine with a minor change in
> d/tests/pkg-js/test
>
> Can I upgrade the salsa package node-symbol-observable to 1.2.0? [2]
>

Yes, I guess.

 [~]$ reverse-depends node-symbol-observable
No reverse dependencies found

 [~]$ reverse-depends -b node-symbol-observable
No reverse dependencies found

I think we are good to go!

Regards, Nilesh
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-icss-utils 3.0.1-2 MIGRATED to testing

2020-05-11 Thread Debian testing watch
FYI: The status of the node-icss-utils source package
in Debian's testing distribution has changed.

  Previous version: 3.0.1-1
  Current version:  3.0.1-2

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-react 16.13.1+dfsg+~cs16.9.34-1 MIGRATED to testing

2020-05-11 Thread Debian testing watch
FYI: The status of the node-react source package
in Debian's testing distribution has changed.

  Previous version: 16.13.1+dfsg-3
  Current version:  16.13.1+dfsg+~cs16.9.34-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] vue.js 2.6.11+dfsg-1 MIGRATED to testing

2020-05-11 Thread Debian testing watch
FYI: The status of the vue.js source package
in Debian's testing distribution has changed.

  Previous version: 2.5.17+dfsg-4
  Current version:  2.6.11+dfsg-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-moment 2.25.2+ds-1 MIGRATED to testing

2020-05-11 Thread Debian testing watch
FYI: The status of the node-moment source package
in Debian's testing distribution has changed.

  Previous version: 2.24.0+ds-2
  Current version:  2.25.2+ds-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See https://release.debian.org/testing-watch/ for more information.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#940704: first try with node-jest 24.9.0

2020-05-11 Thread Paolo Greppi
With node-jest now in the NEW queue, I have started working on this here:

  https://salsa.debian.org/js-team/node-yarnpkg/-/tree/jest

I have built jest from https://salsa.debian.org/js-team/node-jest assuming 
commit b9255f45c22c030b863e7d42aaf78c207db43478 will be tagged as 24.9.0+ds-2 
(although that is not in NEW queue):

  git checkout b9255f45c22c030b863e7d42aaf78c207db43478
  git switch -c debian/24.9.0+ds-2
  gbp buildpackage -uc -us --git-ignore-branch

I need to side-load these packages to /usr/share/nodejs to make jest start:

  import-local realpath-native jest-snapshot-serializer-raw sane react-is 
natural-compare p-each-series throat

Now the test suite starts, and all 91 tests fail. I need to also side-load:

  string-length fast-json-stable-stringify source-map-support

not sure if these are jest run-time dependencies or yarnpkg test-time 
dependencies.

Now all the tests fail because:

  Cannot find module 'source-map-support' from 'source-map-support.js'

To fix this, I upgrade source-map-support to 0.5.19; now I get:

  Cannot find module 'chalk' from 'Env.js'

this comes from /usr/share/nodejs/jest-jasmine2/build/jasmine/Env.js which is 
compiled from node-jest/packages/jest-jasmine2/src/jasmine/Env.ts.
But node-chalk is installed:

  nodejs
  > chalk = require('chalk');
  { [Chalk]
constructor: [Function: Chalk],
supportsColor: { level: 2, hasBasic: true, has256: true, has16m: false },
default: [Circular] }
  > ^d

Clearly the jest command is broken.
I suggest to enable the jest self-test suite in node-jest.

I tried running "jest" in node-jest source tree (after side-loading the 8 
packages above), I get:

● Validation Error:

  Test environment ./packages/jest-environment-node cannot be found. Make sure 
the testEnvironment configuration option points to an existing node module.

  Configuration Documentation:
  https://jestjs.io/docs/configuration.html

Although ./packages/jest-environment-node exists (?)

I tried to specify the testEnvironment from the command line:

  jest --env=node

and with that I get:

● Validation Error:

  Module /packages/pretty-format/build/plugins/ConvertAnsi.js in the 
snapshotSerializers option was not found.
  is: /root/node-jest

  Configuration Documentation:
  https://jestjs.io/docs/configuration.html

Also note that the command:

  jest --init

requires side-loading prompts module.

For my own record, I reset all the changes to my test machine with:

  apt remove jest
  apt autoremove
  cd /usr/share/nodejs
  rm import-local realpath-native jest-snapshot-serializer-raw sane react-is 
natural-compare p-each-series throat string-length fast-json-stable-stringify 
source-map-support prompts
  mv source-map-support.old/ source-map-support

Paolo

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processed: Bug#940704 marked as pending in node-yarnpkg

2020-05-11 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #940704 [yarnpkg] yarnpkg: enable upstream test suite during build
Added tag(s) pending.

-- 
940704: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940704
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processed: take ownership

2020-05-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> owner 940704 Paolo Greppi 
Bug #940704 [yarnpkg] yarnpkg: enable upstream test suite during build
Owner recorded as Paolo Greppi .
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
940704: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=940704
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] [RFS] node-redux

2020-05-11 Thread Nicolas Mora
Le 20-05-11 à 17 h 01, Nilesh Patra a écrit :
> 
> 
> It's still in NEW[3]. I _think_ if you really want to enable tests now,
My very bad, I forgot to check the NEW queue

> you can do the needful. Since when the packages are accepted, jest would
> (hopefully) be accepted before redux, and hence that should ideally not
> be a problem.
> 
I've ran the tests with the package node-jest in the NEW queue and I had
some issues with jest, some dependencies were not packaged, even by
packaging them I couldn't run the tests successfully. Also the package
node-jest is currently waiting for node-babel ≥ 7.8.3 [1]

Therefore I tried another approach and upgraded the package
node-symbol-observable to 1.2.0 instead, and upgrading
node-symbol-observable to 1.2.0 works fine with a minor change in
d/tests/pkg-js/test

Can I upgrade the salsa package node-symbol-observable to 1.2.0? [2]

> However do check the "distribution" that's experimental for jest.
> If you instead want to wait for jest to be accepted, and then add tests,
> that should be fine as well.
> 
I will wait for node-jest to be at least in experimental to run redux's
tests

> 
> Yep. And that's precisely why tests are a good tool to indicate such things.
> Maybe try to install redux in a chroot and test manually if things work?
> I think the better approach here is to upgrade node-symbol-observable
package to 1.2.0, it's the most reliable way to get a redux package
compatible with upstream requirements, even if I can't run the tests at
first.

> 
> I hope that helps?
> 
Very, thanks for the feedbacks!

/Nicolas

[1] -
https://salsa.debian.org/js-team/node-jest/-/blob/master/debian/changelog
[2] - https://salsa.debian.org/js-team/node-symbol-observable

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] [RFS] node-redux

2020-05-11 Thread Nilesh Patra
On Mon, 11 May 2020, 22:34 Nicolas Mora,  wrote:

> Thanks Nilesh for the help
>
> >
> > Node-jest has been packaged for Debian, you can go ahead with running
> > tests needing jest.
> >
> Not yet, the package is in salsa [1] but the package isn't in unstable [2]
>

It's still in NEW[3]. I _think_ if you really want to enable tests now, you
can do the needful. Since when the packages are accepted, jest would
(hopefully) be accepted before redux, and hence that should ideally not be
a problem.

However do check the "distribution" that's experimental for jest.
If you instead want to wait for jest to be accepted, and then add tests,
that should be fine as well.


> >
> > Skip tests if they don't look compatible due to version constraints.
> > Or try upgrading the version ensuring that you don't break anything else.
> >
> It's not he tests I'm worried about, it's packaging redux with an
> incorrect dependency...
>

Yep. And that's precisely why tests are a good tool to indicate such things.
Maybe try to install redux in a chroot and test manually if things work?

You may alternatively consider upgrading incompatible version provided this
doesn't break anything.
If you want to do things this way, there's a nice ruby/meta scripts[4] to
test reverse-depends and reverse-build-depends.

I hope that helps?

>

> [1] - https://salsa.debian.org/js-team/node-jest
> [2] - https://packages.debian.org/search?searchon=names=node-jest


[3]: https://ftp-master.debian.org/new/node-jest_24.9.0-3.html
[4]: https://salsa.debian.org/ruby-team/meta

Kind regards,
Nilesh
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Xavier


Le 11/05/2020 à 21:48, Xavier a écrit :
> Le 11/05/2020 à 14:43, Pirate Praveen a écrit :
>>
>>
>> On Mon, May 11, 2020 at 2:27 pm, Xavier  wrote:
>>> I fixed partially node-matrix-js-sdk but I failed to configure
>>> debian/webpack.config.js. So node-* is ready but not libjs-*
>>> Can someone take a look ?
>>
>> Did you include this patch?
>>
>> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933662
> 
> Yes, but the problem is to replace browserify by webpack, build needs a
> tsc loader for webpack

upstream browser-build:

mkdirp dist && browserify -d src/browser-index.js \
   -p [ tsify -p ./tsconfig.json ] \
   -t [ babelify --sourceMaps=inline \
   --presets [ @babel/preset-env @babel/preset-typescript ] ] \
 | exorcist dist/browser-matrix.js.map > dist/browser-matrix.js

I tried to reproduce this in debian/webpack.config.js but it fails.
Anyway I pushed my work to salsa

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Xavier
Le 11/05/2020 à 14:43, Pirate Praveen a écrit :
> 
> 
> On Mon, May 11, 2020 at 2:27 pm, Xavier  wrote:
>> I fixed partially node-matrix-js-sdk but I failed to configure
>> debian/webpack.config.js. So node-* is ready but not libjs-*
>> Can someone take a look ?
> 
> Did you include this patch?
> 
> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933662

Yes, but the problem is to replace browserify by webpack, build needs a
tsc loader for webpack

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-mini-css-extract-plugin_0.5.0-1_amd64.changes is NEW

2020-05-11 Thread Debian FTP Masters
binary:node-mini-css-extract-plugin is NEW.
binary:node-mini-css-extract-plugin is NEW.
source:node-mini-css-extract-plugin is NEW.

Your package has been put into the NEW queue, which requires manual action
from the ftpteam to process. The upload was otherwise valid (it had a good
OpenPGP signature and file hashes are valid), so please be patient.

Packages are routinely processed through to the archive, and do feel
free to browse the NEW queue[1].

If there is an issue with the upload, you will receive an email from a
member of the ftpteam.

If you have any questions, you may reply to this email.

[1]: https://ftp-master.debian.org/new.html
 or https://ftp-master.debian.org/backports-new.html for *-backports

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-mini-css-extract-plugin_0.5.0-1_amd64.changes

2020-05-11 Thread Debian FTP Masters
node-mini-css-extract-plugin_0.5.0-1_amd64.changes uploaded successfully to 
localhost
along with the files:
  node-mini-css-extract-plugin_0.5.0-1.dsc
  node-mini-css-extract-plugin_0.5.0.orig.tar.gz
  node-mini-css-extract-plugin_0.5.0-1.debian.tar.xz
  node-mini-css-extract-plugin_0.5.0-1_all.deb
  node-mini-css-extract-plugin_0.5.0-1_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] [RFS] node-redux

2020-05-11 Thread Nicolas Mora
Thanks Nilesh for the help

>  
> Node-jest has been packaged for Debian, you can go ahead with running
> tests needing jest.
> 
Not yet, the package is in salsa [1] but the package isn't in unstable [2]

> 
> Skip tests if they don't look compatible due to version constraints.
> Or try upgrading the version ensuring that you don't break anything else.
> 
It's not he tests I'm worried about, it's packaging redux with an
incorrect dependency...

/Nicolas

[1] - https://salsa.debian.org/js-team/node-jest
[2] - https://packages.debian.org/search?searchon=names=node-jest

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] [RFS] node-redux

2020-05-11 Thread Nilesh Patra
On Mon, 11 May 2020, 21:30 Nicolas Mora,  wrote:

> Hello,
>
> Le 20-05-11 à 01 h 14, Xavier a écrit :
> >
> > at least you should:
> >  * remove dependency to node-babel-preset-env
> >  * update homepage to https://redux.js.org/ (reported by `duck`)
> >  * Add "Testsuite: autopkgtest-pkg-nodejs" and remove
> >debian/tests/control & debian/tests/require
> >
> All done, thanks
>
> But I've realized an issue with symbol-observable, the packages.json
> requires symbol-observable 1.2, but the version packaged in debian sid
> is 1.0.4.
>
> I can't run redux tests because they use eslint and jest but the package
> builds successfully with Debian package node-synbol-observable 1.0.4.
>

You can ignore eslint tests, as they are lint tests that upstream needs,
and it doesn't require us to run them.

Node-jest has been packaged for Debian, you can go ahead with running tests
needing jest.

_Maybe_ you can try running these, if the work OK ofcourse.


> I wanted to check if redux 4.0.5 would build and tests succeed with
> symbol-observable 1.0.4 and I have the following result.
>
> If I untar the official package redux 4.0.5, replace the
> symbol-observable version in package.json with 1.0.4, then run the build
> or the tests, they fail with the following error message:
> Error: 'default' is not exported by node_modules/symbol-observable/index.js
>

Skip tests if they don't look compatible due to version constraints.
Or try upgrading the version ensuring that you don't break anything else.


> The good new is redux will drop symbol-observable in the next version.
> The bad new is new unpackaged dependencies such as
> rollup-plugin-typescript2 are introduced...
>
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-katex_0.8.3+dfsg-2_source.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 21:13:15 +0530
Source: node-katex
Architecture: source
Version: 0.8.3+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Pirate Praveen 
Changes:
 node-katex (0.8.3+dfsg-2) unstable; urgency=medium
 .
   * Build with Babel 7
Checksums-Sha1:
 72e1540ddf23018a2a5a620154a4d7a86991260a 2186 node-katex_0.8.3+dfsg-2.dsc
 4b6c82f14825e3ea7ebc328b5496740b66b58c37 4592 
node-katex_0.8.3+dfsg-2.debian.tar.xz
 02be64bbceab1763ed943441815af9ff4a566369 11772 
node-katex_0.8.3+dfsg-2_amd64.buildinfo
Checksums-Sha256:
 cc44814f87c40faeb98f9a0e10fade1674240e433dbdaecd9cbeef5ea8713508 2186 
node-katex_0.8.3+dfsg-2.dsc
 33c7d38cf92b5fa853a1228b591af3bf0a91b0cd1ba8912397c4b3dd7b95d8b5 4592 
node-katex_0.8.3+dfsg-2.debian.tar.xz
 c55702d9c51ca853d16387871f341990c8d2daa10d8020ddc0b95f2d3a7c8fc2 11772 
node-katex_0.8.3+dfsg-2_amd64.buildinfo
Files:
 81ea1719af54ea24544e8ad45a0d6265 2186 javascript optional 
node-katex_0.8.3+dfsg-2.dsc
 18b390b4033575231fdfb9ae1b5ecea1 4592 javascript optional 
node-katex_0.8.3+dfsg-2.debian.tar.xz
 a2cfc5156871f540a8c585ab44706a28 11772 javascript optional 
node-katex_0.8.3+dfsg-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE0whj4mAg5UP0cZqDj1PgGTspS3UFAl65dGMACgkQj1PgGTsp
S3UYqA/+LCnAW81tvlCko0CMxNUOnKOYfvlJq4MfM0iCEXEnqKQYhrhN82cqinmI
wy+cfZ+Fm0jAreXIvhGPj/UyJn0JfwpR9HWHh50+TO/TlUHCocdNkjoSrbDMcros
1OF0uvwPv7r0VEe0VdJZ1Zyshiu1W+jBEr93qjOmkqsfVwGKg0MbgHWsn1EC7Sy3
xRYEirtS3cURTaIKZuNcsKxc6z1Sb7Uo+EtVm2Y4BCZg+QgIJ29M9VVltAzKTirJ
txSChz3VJ6AEwjrNFxiXf7xhR3yP8oCBTTZpx3RFkAwXSTvkoHRoKwVTWA27+npc
tNksEmbc5kF3EvgGDhCAY8X3vEOLwYM6lVoEMslqAWzwIEHLod9shx3d3Y9FPQ8K
WhT2/ARW9r6XIesZ9YMWkjQL5eZUK3OR7TOCysRxn77QXSBfLQBTjgepBsZ+uHmF
gXz5Du3yBlGgDJVR3lI68lZN83OoNXbwAU494pjypJODxl/vCN3bYtKpabSbPYHX
yA6pnXnFSROKhPRcuvEsUIVeADfrgxsdSMZ2XgIlU9zfukXHVhN9AXXJO7/PS7OB
1xh0NzGZZDzeT9qBunY13H3PrzBVb5FLa5UFcus7c1OR9IEfoxjypsEk1wfEitd+
T/y9NLpWWuAJAu3BiXQY7j2T/WAUSXf6YUuqsnaTs0idoW+ASXE=
=8h2T
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-katex_0.8.3+dfsg-2_source.changes

2020-05-11 Thread Debian FTP Masters
node-katex_0.8.3+dfsg-2_source.changes uploaded successfully to localhost
along with the files:
  node-katex_0.8.3+dfsg-2.dsc
  node-katex_0.8.3+dfsg-2.debian.tar.xz
  node-katex_0.8.3+dfsg-2_amd64.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] [RFS] node-redux

2020-05-11 Thread Nicolas Mora
Hello,

Le 20-05-11 à 01 h 14, Xavier a écrit :
> 
> at least you should:
>  * remove dependency to node-babel-preset-env
>  * update homepage to https://redux.js.org/ (reported by `duck`)
>  * Add "Testsuite: autopkgtest-pkg-nodejs" and remove
>debian/tests/control & debian/tests/require
> 
All done, thanks

But I've realized an issue with symbol-observable, the packages.json
requires symbol-observable 1.2, but the version packaged in debian sid
is 1.0.4.

I can't run redux tests because they use eslint and jest but the package
builds successfully with Debian package node-synbol-observable 1.0.4.

I wanted to check if redux 4.0.5 would build and tests succeed with
symbol-observable 1.0.4 and I have the following result.

If I untar the official package redux 4.0.5, replace the
symbol-observable version in package.json with 1.0.4, then run the build
or the tests, they fail with the following error message:
Error: 'default' is not exported by node_modules/symbol-observable/index.js

The good new is redux will drop symbol-observable in the next version.
The bad new is new unpackaged dependencies such as
rollup-plugin-typescript2 are introduced...

/Nicolas

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960289: npm: 'Permission denied' error when running as root

2020-05-11 Thread Jérémy Lal
Le lun. 11 mai 2020 à 17:41, Nikolay Shaplov  a écrit :

> В письме от понедельник, 11 мая 2020 г. 17:19:07 MSK пользователь Jérémy
> Lal
> написал:
>
> > > # cd /srv
> > > # npm install matrix-appservice-irc --global
> >
> > You are running an untrusted module as root.
> > I strongly advise against that.
> I am _installing_ untrusted module as root. Am I not?
>

npm modules can have postinstall scripts.
Well-known modules might be trustable (they might not) but the module
you're trying to install do have an issue (checksum mismatch) and might
have been tampered with.

Jérémy
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960289: npm: 'Permission denied' error when running as root

2020-05-11 Thread Nikolay Shaplov
В письме от понедельник, 11 мая 2020 г. 17:19:07 MSK пользователь Jérémy Lal 
написал:

> > # cd /srv
> > # npm install matrix-appservice-irc --global
> 
> You are running an untrusted module as root.
> I strongly advise against that.
I am _installing_ untrusted module as root. Am I not?

> I can't help you if you don't read npm user manual.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960284: Bug#960284: npm tries to use git, but git is not listed in dependencies

2020-05-11 Thread Nikolay Shaplov
В письме от понедельник, 11 мая 2020 г. 16:40:31 MSK пользователь Jérémy Lal 
написал:
> > I am following some HOWTO guide and run
> > 
> > # npm install matrix-appservice-irc --global
> > 
> > and it fails because git is missing
> > 
> > ../..
> > 
> > I guess getting sources using git is a normal way for npm.
> 
> No, it isn't. Normal way is npm packages.
I actually know nothing about npm internals, but from what I can see from the 
outside, I would not agree with you.

I did not provided npm with any kind of git:// url. I just gave a name matrix-
appservice-irc and npm somehow came to an idea of fetching something using 
git. If it is its idea, not mine, I guess it should provide itself with all 
necessary means by itself. For me it should work like that: I install it, I 
give it a name, it fetches. That is user experience I would expect.

Thats how I see it as an experienced debian user that has no knowledge about 
npm internals.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960289: npm: 'Permission denied' error when running as root

2020-05-11 Thread Jérémy Lal
Le lun. 11 mai 2020 à 17:15, Nikolay Shaplov  a écrit :

> Package: npm
> Version: 5.8.0+ds6-4+deb10u1
> Severity: normal
>
> I am still trying to run npm. When I manually set up git, I came to the
> next problem:
>
> I run as a root
>
> # cd /srv
> # npm install matrix-appservice-irc --global
>

You are running an untrusted module as root.
I strongly advise against that.
I can't help you if you don't read npm user manual.

Jérémy
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960289: npm: 'Permission denied' error when running as root

2020-05-11 Thread Nikolay Shaplov
Package: npm
Version: 5.8.0+ds6-4+deb10u1
Severity: normal

I am still trying to run npm. When I manually set up git, I came to the
next problem:

I run as a root

# cd /srv
# npm install matrix-appservice-irc --global

and get

npm WARN npm npm does not support Node.js v10.19.0
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 
8, 9.
npm WARN npm You can find the latest version at https://nodejs.org/
npm WARN deprecated request@2.88.2: request has been deprecated, see 
https://github.com/request/request/issues/3142
npm ERR! code 128
npm ERR! Command failed: /usr/bin/git clone --depth=1 -q -b master 
git://github.com/matrix-org/node-irc.git 
/root/.npm/_cacache/tmp/git-clone-7b141b18
npm ERR! fatal: could not create leading directories of 
'/root/.npm/_cacache/tmp/git-clone-7b141b18': Permission denied
npm ERR!

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2020-05-11T14_36_48_511Z-debug.log


The cause of this problem is that, I guess it because it changes uid to
1000 at some place, and run as a user (NB there is no any user with 1000
uid on the container I am working in), and chown .npm folder lo the 1000
user.

You can see 

# ls -la /root/ | grep npm
drwxr-xr-x  4 1000 1000 4096 May 11 14:32 .npm

but /root/ itself is rwx--

# ls -la / | grep root$
drwx--   6 root root 4096 May 11 14:32 root

It will let nobody in. Even if they has some folders they have right to
read inside.

Meanwhile if I do

# cd ~
# npm install matrix-appservice-irc --global

It gives another error:

npm WARN npm npm does not support Node.js v10.19.0
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 
8, 9.
npm WARN npm You can find the latest version at https://nodejs.org/
npm WARN deprecated request@2.88.2: request has been deprecated, see 
https://github.com/request/request/issues/3142
npm ERR! Error while executing:
npm ERR! /usr/bin/git ls-remote -h -t 
ssh://g...@github.com/matrix-org/node-irc.git
npm ERR!
npm ERR! fatal: cannot come back to cwd: Permission denied
npm ERR!
npm ERR! exited with error code: 128

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2020-05-11T14_46_17_842Z-debug.log


And I guess I should really do it as a root, because when I did it as a
uesr, it finally tried to install all the stuff into /usr/local/lib that
has no write access rights for common users.

Or if it is not supposed to be run as a root, I would expect
an error message in this case.

I do not know what solution is right, but it does not work this way for
sure.



-- System Information:
Debian Release: 10.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-6-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages npm depends on:
ii  ca-certificates 20190110
ii  node-abbrev 1.1.1-1
ii  node-ansi   0.3.0-3
ii  node-ansi-regex 3.0.0-1
ii  node-ansistyles 0.1.3-1
ii  node-aproba 1.2.0-1
ii  node-archy  1.0.0-2
ii  node-bluebird   3.5.1+dfsg2-2
ii  node-boxen  1.2.2-1
ii  node-cacache11.3.2-2
ii  node-call-limit 1.1.0-1
ii  node-chownr 1.1.1-1
ii  node-config-chain   1.1.11-1
ii  node-detect-indent  5.0.0-1
ii  node-detect-newline 2.1.0-1
ii  node-editor 1.0.0-1
ii  node-encoding   0.1.12-2
ii  node-errno  0.1.4-1
ii  node-from2  2.3.0-1
ii  node-fs-vacuum  1.2.10-2
ii  node-fs-write-stream-atomic 1.0.10-4
ii  node-glob   7.1.3-2
ii  node-graceful-fs4.1.11-1
ii  node-gyp3.8.0-6
ii  node-has-unicode2.0.1-2
ii  node-hosted-git-info2.7.1-1
ii  node-iferr  1.0.2-1
ii  node-import-lazy3.0.0.REALLY.2.1.0-1
ii  node-inflight   1.0.6-1
ii  node-inherits   2.0.3-1
ii  node-ini1.3.5-1
ii  node-is-npm 1.0.0-1
ii  node-json-parse-better-errors   1.0.2-2
ii  node-jsonstream 1.3.2-1
ii  node-latest-version 3.1.0-1
ii  node-lazy-property  1.0.0-3
ii  node-libnpx 10.2.0+repack-1
ii  node-lockfile  

[Pkg-javascript-devel] Bug#960284: Bug#960284: npm tries to use git, but git is not listed in dependencies

2020-05-11 Thread Jérémy Lal
Le lun. 11 mai 2020 à 16:33, Nikolay Shaplov  a écrit :

> Package: npm
> Version: 5.8.0+ds6-4+deb10u1
> Severity: normal
>
> I am following some HOWTO guide and run
>
> # npm install matrix-appservice-irc --global
>
> and it fails because git is missing
>
> ../..
>
> I guess getting sources using git is a normal way for npm.


No, it isn't. Normal way is npm packages.


> Then I guess
> git should be listed in 'depends' section for npm.


This is on purpose.


> Or at least in
> 'suggests'. But it is not listed at all.
>

Yes, why not add it to npm's Suggests.

Jérémy
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960283: Bug#960283: npm says 'pathArray is not defined' when I try to use it from buster-backports

2020-05-11 Thread Jérémy Lal
Le lun. 11 mai 2020 à 16:21, Nikolay Shaplov  a écrit :

> Package: npm
> Version: 6.14.3+ds-1~bpo10+1
> Severity: normal
>
> Hi! I tried to use npm from buster-backports. Actually I wanted to
> report another bug, but desided to check if it is fixed in backports.
> But found a new one.
>
> So I am running a command
>
> # npm install matrix-appservice-irc --global
>

First thing i get is:

npm install matrix-appservice-irc
npm ERR! code EINTEGRITY
npm ERR!
sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
integrity checksum failed when using sha512: wanted
sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
but got
sha512-z4PhNX7vuL3xVChQ1m2AB9Yg5AULVxXcg/SpIdNs6c5H0NE8XYXysP+DGNKHfuwvY7kxvUdBeoGlODJ6+SfaPg==.
(0 bytes)

this looks like something's very wrong with that module.

Jérémy
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960284: npm tries to use git, but git is not listed in dependencies

2020-05-11 Thread Nikolay Shaplov
Package: npm
Version: 5.8.0+ds6-4+deb10u1
Severity: normal

I am following some HOWTO guide and run

# npm install matrix-appservice-irc --global

and it fails because git is missing

npm WARN npm npm does not support Node.js v10.19.0
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 
8, 9.
npm WARN npm You can find the latest version at https://nodejs.org/
npm WARN deprecated request@2.88.2: request has been deprecated, see 
https://github.com/request/request/issues/3142
npm ERR! code ENOGIT
npm ERR! Error while executing:
npm ERR! undefined ls-remote -h -t ssh://g...@github.com/matrix-org/node-irc.git
npm ERR!
npm ERR! undefined
npm ERR! No git binary found in $PATH
npm ERR!
npm ERR! Failed using git.
npm ERR! Please check if you have git installed and in your PATH.

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2020-05-11T14_18_42_261Z-debug.log

I guess getting sources using git is a normal way for npm. Then I guess
git should be listed in 'depends' section for npm. Or at least in
'suggests'. But it is not listed at all.

As debian user I expect when I am installing a package, I get all things
that is needed for it's normal work. Here I it is not like that. So, can
you please fix it.


-- System Information:
Debian Release: 10.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-6-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages npm depends on:
ii  ca-certificates 20190110
ii  node-abbrev 1.1.1-1
ii  node-ansi   0.3.0-3
ii  node-ansi-regex 3.0.0-1
ii  node-ansistyles 0.1.3-1
ii  node-aproba 1.2.0-1
ii  node-archy  1.0.0-2
ii  node-bluebird   3.5.1+dfsg2-2
ii  node-boxen  1.2.2-1
ii  node-cacache11.3.2-2
ii  node-call-limit 1.1.0-1
ii  node-chownr 1.1.1-1
ii  node-config-chain   1.1.11-1
ii  node-detect-indent  5.0.0-1
ii  node-detect-newline 2.1.0-1
ii  node-editor 1.0.0-1
ii  node-encoding   0.1.12-2
ii  node-errno  0.1.4-1
ii  node-from2  2.3.0-1
ii  node-fs-vacuum  1.2.10-2
ii  node-fs-write-stream-atomic 1.0.10-4
ii  node-glob   7.1.3-2
ii  node-graceful-fs4.1.11-1
ii  node-gyp3.8.0-6
ii  node-has-unicode2.0.1-2
ii  node-hosted-git-info2.7.1-1
ii  node-iferr  1.0.2-1
ii  node-import-lazy3.0.0.REALLY.2.1.0-1
ii  node-inflight   1.0.6-1
ii  node-inherits   2.0.3-1
ii  node-ini1.3.5-1
ii  node-is-npm 1.0.0-1
ii  node-json-parse-better-errors   1.0.2-2
ii  node-jsonstream 1.3.2-1
ii  node-latest-version 3.1.0-1
ii  node-lazy-property  1.0.0-3
ii  node-libnpx 10.2.0+repack-1
ii  node-lockfile   1.0.4-1
ii  node-lru-cache  5.1.1-4
ii  node-mississippi3.0.0-1
ii  node-mkdirp 0.5.1-1
ii  node-move-concurrently  1.0.1-2
ii  node-nopt   3.0.6-3
ii  node-normalize-package-data 2.4.0-1
ii  node-npm-package-arg6.0.0-2
ii  node-npmlog 4.1.2-1
ii  node-once   1.4.0-3
ii  node-opener 1.4.3-1
ii  node-osenv  0.1.5-1
ii  node-path-is-inside 1.0.2-1
ii  node-promise-inflight   1.0.1-1
ii  node-promzard   0.3.0-1
ii  node-qw 1.0.1-1
ii  node-read   1.0.7-1
ii  node-read-package-json  2.0.13-1
ii  node-request2.88.1-2
ii  node-resolve-from   4.0.0-1
ii  node-retry  0.10.1-1
ii  node-rimraf 2.6.2-1
ii  node-safe-buffer5.1.2-1
ii  node-semver 5.5.1-1
ii  node-semver-diff2.1.0-2
ii  node-sha2.0.1-1
ii  node-slide  1.1.6-2
ii  node-sorted-object  2.0.1-1
ii  node-ssri   5.2.4-2
ii  node-stream-iterate 1.2.0-4
ii  node-strip-ansi 4.0.0-1
ii  node-tar4.4.6+ds1-3
ii  node-text-table 0.2.0-2
ii  node-uid-number 0.0.6-1
ii  

[Pkg-javascript-devel] Bug#960283: npm says 'pathArray is not defined' when I try to use it from buster-backports

2020-05-11 Thread Nikolay Shaplov
Package: npm
Version: 6.14.3+ds-1~bpo10+1
Severity: normal

Hi! I tried to use npm from buster-backports. Actually I wanted to
report another bug, but desided to check if it is fixed in backports.
But found a new one.

So I am running a command

# npm install matrix-appservice-irc --global

and get

npm ERR! pathArray is not defined

npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2020-05-11T14_11_32_344Z-debug.log


log file says:

0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/node',
1 verbose cli   '/usr/bin/npm',
1 verbose cli   'install',
1 verbose cli   'matrix-appservice-irc',
1 verbose cli   '--global' ]
2 info using npm@6.14.3
3 info using node@v10.19.0
4 verbose stack ReferenceError: pathArray is not defined
4 verbose stack at Object.get (/usr/lib/nodejs/dot-prop/index.js:40:3)
4 verbose stack at Configstore.get 
(/usr/lib/nodejs/configstore/index.js:70:18)
4 verbose stack at UpdateNotifier.check 
(/usr/share/npm/node_modules/update-notifier/index.js:78:16)
4 verbose stack at module.exports.options 
(/usr/share/npm/node_modules/update-notifier/index.js:151:17)
4 verbose stack at EventEmitter. 
(/usr/share/npm/bin/npm-cli.js:85:48)
4 verbose stack at process._tickCallback 
(internal/process/next_tick.js:61:11)
5 verbose cwd /
6 verbose Linux 4.19.0-6-amd64
7 verbose argv "/usr/bin/node" "/usr/bin/npm" "install" "matrix-appservice-irc" 
"--global"
8 verbose node v10.19.0
9 verbose npm  v6.14.3
10 error pathArray is not defined
11 verbose exit [ 1, true ]


I do not know anything conserning npm, I do not understand why it fails,
so I am just reporting this behaviour


-- System Information:
Debian Release: 10.3
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-6-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages npm depends on:
ii  ca-certificates 20190110
ii  node-abbrev 1.1.1-1
ii  node-ajv6.10.2-1~bpo10+1
ii  node-ansi   0.3.0-3
ii  node-ansi-regex 3.0.0-1
ii  node-ansi-styles3.2.1-1
ii  node-ansistyles 0.1.3-1
ii  node-aproba 1.2.0-1
ii  node-archy  1.0.0-2
ii  node-are-we-there-yet   1.1.4-1
ii  node-asap   2.0.6-1
ii  node-asn1   0.2.3-1
ii  node-assert-plus1.0.0-1
ii  node-asynckit   0.4.0-2
ii  node-aws-sign2  0.7.1-1
ii  node-aws4   1.8.0-1
ii  node-balanced-match 0.4.2-1
ii  node-bcrypt-pbkdf   1.0.1-1
ii  node-bl 1.1.2-1
ii  node-bluebird   3.5.1+dfsg2-2
ii  node-boxen  1.2.2-1
ii  node-brace-expansion1.1.8-1
ii  node-builtin-modules3.0.0-1
ii  node-builtins   1.0.3-1
ii  node-cacache11.3.2-2
ii  node-call-limit 1.1.0-1
ii  node-camelcase  5.0.0-1
ii  node-caseless   0.12.0-1
ii  node-chalk  2.4.2-1~bpo10+1
ii  node-chownr 1.1.1-1
ii  node-ci-info1.1.2-1
ii  node-cli-boxes  1.0.0-1
ii  node-cliui  4.1.0-1
ii  node-clone  2.1.2-1
ii  node-co 4.6.0-1
ii  node-color-convert  1.9.0-3
ii  node-color-name 1.1.3-1
ii  node-colors 1.1.2-1
ii  node-columnify  1.5.4-1
ii  node-combined-stream1.0.7-1
ii  node-concat-map 0.0.1-1
ii  node-concat-stream  1.6.2-1
ii  node-config-chain   1.1.11-1
ii  node-configstore3.1.1-2
ii  node-console-control-strings1.1.0-1
ii  node-copy-concurrently  1.0.5-4
ii  node-core-util-is   1.0.2-1
ii  node-cross-spawn5.1.0-2
ii  node-crypto-random-string   1.0.0-1
ii  node-cyclist1.0.1-2
ii  node-dashdash   1.14.1-2
ii  node-debug  3.1.0-2
ii  node-decamelize 1.2.0-1
ii  node-deep-extend0.4.1-2
ii  node-defaults   1.0.3-1
ii  node-define-properties  1.1.3-1~bpo10+1
ii  node-delayed-stream 0.0.5-1
ii  node-delegates  1.0.0-1
ii  node-detect-indent  5.0.0-1
ii  node-detect-newline 2.1.0-1
ii  node-dot-prop   4.1.1-1+deb10u1
ii  node-duplexer3  0.1.4-4
ii  node-duplexify  3.6.1-1
ii  node-ecc-jsbn   0.1.1-1
ii  node-editor 1.0.0-1
ii  node-encoding  

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Pirate Praveen



On Mon, May 11, 2020 at 2:27 pm, Xavier  wrote:

I fixed partially node-matrix-js-sdk but I failed to configure
debian/webpack.config.js. So node-* is ready but not libjs-*
Can someone take a look ?


Did you include this patch?

https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933662



--
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Xavier
Le 11/05/2020 à 08:25, Pirate Praveen a écrit :
> 
> 
> On 2020, മേയ് 11 2:19:01 AM IST, Xavier  wrote:
>> Le 10/05/2020 à 21:23, Pirate Praveen a écrit :
>>>
>>>
>>> On Sat, May 9, 2020 at 10:54 pm, Xavier  wrote:
 Thanks for your awesome work!
>>>
>>> Thanks to you, Jonas and Nilesh too for helping.
>>>
>>> Can somoene check babel7 branch in node-yarnpkg? It builds fine but I
>>> probably need to include some specific plugins from stage-0 preset. It
>>> builds fine, but when you try to run, it fails with this error.
>>>
>>> $ yarnpkg
>>> /usr/share/nodejs/@babel/runtime/helpers/inherits.js:5
>>>    throw new TypeError("Super expression must either be null or a
>>> function");
>>>    ^
>>
>> In `function _inherits(subClass, superClass)`, superClass is "undefined"
>> instead of "null".
>>
>> Adding (in babel7) `if(superClass===undefined) superClass=null;` fixes
>> this problem but then:
>>
>> /usr/share/nodejs/yarn/lib/util/generate-pnp-map-api.tpl.js:28
>> var ignorePattern = $$BLACKLIST ? new RegExp($$BLACKLIST) : null;
>>^
>> ReferenceError: $$BLACKLIST is not defined
>>at Object.
>> (/usr/share/nodejs/yarn/lib/util/generate-pnp-map-api.tpl.js:28:21)
>>at Module._compile (internal/modules/cjs/loader.js:778:30)
>>at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
>>at Module.load (internal/modules/cjs/loader.js:653:32)
>>at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
>>at Function.Module._load (internal/modules/cjs/loader.js:585:3)
>>at Module.require (internal/modules/cjs/loader.js:692:17)
>>at require (internal/modules/cjs/helpers.js:25:18)
>>at Object.
>> (/usr/share/nodejs/yarn/lib/util/generate-pnp-map.js:22:52)
>>at Module._compile (internal/modules/cjs/loader.js:778:30)
>>
>> So it seems that this is not an error on babel7 side but on yarn build
> 
> With babel 6, they use node-babel-preset-stage-0 which is not available in 
> babel 7, we need to specify the plugins from that preset explicitly.
> 
> For the webpack error, it does not fail the build and it was there before too.

Hi,

I fixed partially node-matrix-js-sdk but I failed to configure
debian/webpack.config.js. So node-* is ready but not libjs-*
Can someone take a look ?

Cheers,
Xavier

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Pirate Praveen



On Mon, May 11, 2020 at 5:27 pm, Pirate Praveen 
 wrote:



On Mon, May 11, 2020 at 11:55 am, Pirate Praveen 
 wrote:
With babel 6, they use node-babel-preset-stage-0 which is not 
available in babel 7, we need to specify the plugins from that 
preset explicitly.


btw this works with nodejs 12 from experimental


oops, this was using the yarnpkg from archive as I was trying in a 
different chroot, so it fails with nodejs 12 as well.




--
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Pirate Praveen



On Mon, May 11, 2020 at 11:55 am, Pirate Praveen 
 wrote:
With babel 6, they use node-babel-preset-stage-0 which is not 
available in babel 7, we need to specify the plugins from that preset 
explicitly.


btw this works with nodejs 12 from experimental



--
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] ROM-RM useless packages that depends on node-babel 6

2020-05-11 Thread Pirate Praveen


On 2020, മേയ് 11 2:12:08 PM IST, Xavier  wrote:
>Hi,
>
>if no one disagree, I'm going to remove:
> * node-babel-preset-es2015-loose
> * node-babel-plugin-precompile-charcodes

For these two, I have filed RM already.

node-babel-plugin-transform-define - 960177

node-babel-plugin-precompile-charcodes - 960178

> * node-babel-preset-es3
> * node-babel-preset-flow-vue
> * node-babel-preset-airbnb
>
>These modules depends on node-babel 6 and are not used anywhere
>

+1
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960269: RFP: afterwriting -- Afterwriting provides post-processing tools for Fountain screenplays

2020-05-11 Thread Nicholas D Steeves
Package: wnpp
Severity: wishlist
Control: block 960268 by -1

Package name: afterwriting
Version : 1.12.9
Upstream Author : Piotr Jamróz 
URL : https://afterwriting.com  and/or  
https://github.com/ifrost/afterwriting-labs
   specifically : 
https://github.com/ifrost/afterwriting-labs/blob/master/docs/clients.md
License : MIT
Programming Lang: JS
Description : Afterwriting provides post-processing tools for Fountain 
screenplays

Afterwriting provides post-processing tools for Fountain screenplays:
  * converts Fountain format to PDF
  * extracts basic screenplay info (number of pages, action/dialogue
time, locations, etc.)
  * gathers statistics (location distribution, page balance, dialogue, etc.)
  * experimental features (script pulse, primary/secondary characters, etc.)
--

I am interested exclusively in the CLI component.

Features provided by other parts of the source:
  * loading and syncing with Google Drive / Dropbox (online version only)
  * importing .fdx (FinalDraft)  <=NOTE= I'm not sure if this is included in 
awc.js
  * basic editor with auto-complete <=NOTE= should be skipped IMHO.
Emacs and Atom are better.  A GNOME HIG-compliant editor will
probably appear in the next two years
--

My interest in this package springs from Emacs' elpa-fountain-mode.  A
recent upstream update dropped export to PDF support, so I haven't
updated it, because without Afterwriting this would represent a
regression in functionality.

To the best of my knowledge this is the best Fountain2PDF export tool.

'hope this RFP piques someone's interest!
Nicholas
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-babel-plugin-array-includes_2.0.3-2_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 11:18:46 +0200
Source: node-babel-plugin-array-includes
Architecture: source
Version: 2.0.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 node-babel-plugin-array-includes (2.0.3-2) unstable; urgency=medium
 .
   * Team upload
 .
   [ Debian Janitor ]
   * Bump debhelper from old 11 to 12.
   * Set debhelper-compat version in Build-Depends.
   * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
 Repository-Browse.
 .
   [ Xavier Guimard ]
   * Declare compliance with policy 4.5.0
   * Bump debhelper compatibility level to 12
   * Add "Rules-Requires-Root: no"
   * Add debian/gbp.conf
   * Use pkg-js-tools auto test & install
   * Refresh patch
   * Build with babel7
Checksums-Sha1: 
 3102eb7ec7983a0acd12ad78078b2ac4ac1d7f20 2309 
node-babel-plugin-array-includes_2.0.3-2.dsc
 48bb237fd9e51568e631353e89a19116be111d35 3396 
node-babel-plugin-array-includes_2.0.3-2.debian.tar.xz
Checksums-Sha256: 
 a9921b1d53ec31fbf28e088f8a5ac1cf55c26c0f905ce60f1982629e0665bd6d 2309 
node-babel-plugin-array-includes_2.0.3-2.dsc
 a6cd9d788d1addea694a2a1a9fb87d6a3fed700a76e6692a0e2fdd34d4f1a3c7 3396 
node-babel-plugin-array-includes_2.0.3-2.debian.tar.xz
Files: 
 3e3e3a44f9bacca519820b514a43f07a 2309 javascript optional 
node-babel-plugin-array-includes_2.0.3-2.dsc
 fa33e64a6234b6f67d6953bd85d7cd24 3396 javascript optional 
node-babel-plugin-array-includes_2.0.3-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl65GLUACgkQ9tdMp8mZ
7ukhxw//b3sZ59sblsq5T5ARtV5yf/9fjGtOxmd3DkLRHVGdiGs6QiHgtaLp8m0Y
8Ue1biMFZpneYG6CsK7wpUWb/QSjke772Jvst7talr+MqH71plG0t6PbZ+vBY5/D
eWsyBqKptEyAIWX0vPKpsS/YUTzfmjngE8wHLP934cQE+zm4qHlOiFBamRnR7mJ9
BsSwv6AeFTjno5E1dC0FBTh+psEztK6XdaTFRI/jnAZkOTvJoavK/kdDJqva/6w1
ORPp91IcFCeTaCqNoPgEiisS/j4CxpU8TIl1d3ottOQDvFzm+Z2b7vFoip7DIkly
kATsBwuB8TL+D25y+5mjFKeRPuYsNZTNeCtKDMQZjkGXflyggPIcUIb07ibngvmM
lMshIdSO5WjCDfYkbkkN17Hv4YYh9ZVAjkwxgol8w6YdaJmwm9Abb6wyl88waz5c
UU05lW/Ampznzw310/DZmzf18Pwi6leq+W8qvKZbPk4YxuXOOTy5W0ug/3RZCHdT
HkzLO3v/VG/GyQg9htwnDT2zkJ8Fg8CwYeCWQInZfZ67QtKDdGokyyv29jlIbH0P
Tnn6TM6Vhmq6qLNXhdQ0AhjZhH63Ka/o51fLGRSHxe/tAKj+je2CK838E8HsJmmT
OnJTJgDWO+ZksQNZUf9mZX+pTotW/n8tqENoeVFCm0v49uhGVlc=
=69fQ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-babel-plugin-array-includes_2.0.3-2_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
node-babel-plugin-array-includes_2.0.3-2_sourceonly.changes uploaded 
successfully to localhost
along with the files:
  node-babel-plugin-array-includes_2.0.3-2.dsc
  node-babel-plugin-array-includes_2.0.3-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] autosize.js_4.0.2~dfsg1-4_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 11:01:16 +0200
Source: autosize.js
Architecture: source
Version: 4.0.2~dfsg1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 autosize.js (4.0.2~dfsg1-4) unstable; urgency=medium
 .
   * Team upload
 .
   [ Debian Janitor ]
   * Use secure URI in Homepage field.
   * Bump debhelper from old 11 to 12.
   * Set debhelper-compat version in Build-Depends.
   * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
 Repository-Browse.
   * Update standards version to 4.4.1, no changes needed.
 .
   [ Xavier Guimard ]
   * Declare compliance with policy 4.5.0
   * Add "Rules-Requires-Root: no"
   * Build with babel7
   * Use pkg-js-tools auto install
Checksums-Sha1: 
 384f5fbb4eb56cded8999d3b118846df012f3207 2177 autosize.js_4.0.2~dfsg1-4.dsc
 0f6e639d5d684ea8d09b55178ae85603d813f835 3076 
autosize.js_4.0.2~dfsg1-4.debian.tar.xz
Checksums-Sha256: 
 e546eda61e8760edbc9fc682cdcbe244c8b5daee09697fbac7f2761061076d19 2177 
autosize.js_4.0.2~dfsg1-4.dsc
 ab1e42e09921bd6186008b7920ccfbf7e81bf5f11518a64f034231a73c42dec9 3076 
autosize.js_4.0.2~dfsg1-4.debian.tar.xz
Files: 
 44f95c0092c464c1b9d5c9fa92d7b198 2177 javascript optional 
autosize.js_4.0.2~dfsg1-4.dsc
 33aa8ba465b0b00b2e98f0250a2f8afd 3076 javascript optional 
autosize.js_4.0.2~dfsg1-4.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl65FeMACgkQ9tdMp8mZ
7ulb8Q/8Cm+Tve0h/EJ8jeVv923kyEdAH7cXr1o55N6KAEQjiPB8RyBkyvfUnt8H
7Z5+x18no7wZFVw45WrskLEJ6iMdV2F17uWB3vBYu6kA5Z/1C7bV8w9EV8mqZxIb
sjB3tY8KrX2rmnCJRHrJaGHUeVUrTfBOUAmHuLolBBK6dABXD5QHAkk2vDHbE3Ln
PwpmfLYvXP2agu3mvTCfGMSp5M4KHimDpRELLi28HiCJYPajubGTVphvZugY1/wd
egcJvri4aVD6ilUkkofeq2ne2C1Inq52PKaMbDoShwc9IcDJBfIunJuHct0GuNJC
dHUdKNdjGoR+FdfnWSuMzI7sbtDcABHMGtbrxQcNUf7nAg2eZ3cGkZYrRKFT1q3B
fGanPEXP6CSDOs7ZfRoWLNx64cQmgG8JbGTaULCh0U4a/9FywqDNwMBIYNwMYfd7
57FbdYUPMUvDHJuUpZRdAO3XHcJy9DzmfsXE1dEX0+W5nVRYKm2+9p98J23HlK+F
IZx+hQ50Oc7aILp9zANEfk4N05BvuZr2dWe7Mmzt/6Am5dIRsSO7fMWoJA6eknFb
xHQIFDUjjO3adruHD0cVya0Qd/rrL9vXprqrVdyVhfoRhElBA1ycqJAxBbP4rOkN
Qtc824JNrw9FaG9Q+PeVPpUh62D6qepdRJ1rq0MygDqDve2TbQM=
=2Zvb
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of autosize.js_4.0.2~dfsg1-4_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
autosize.js_4.0.2~dfsg1-4_sourceonly.changes uploaded successfully to localhost
along with the files:
  autosize.js_4.0.2~dfsg1-4.dsc
  autosize.js_4.0.2~dfsg1-4.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960264: libjs-webrtc-adapter: Please remove dependency to node-babel-preset-env

2020-05-11 Thread Xavier Guimard
Source: libjs-webrtc-adapter
Severity: important

Hi,

please remove dependency to node-babel-preset-env: this package seems
useless with node-babel7 and is going to be removed with node-babel 6.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960261: marked as done (node-babel7: @babel/polyfill depends on old core-js)

2020-05-11 Thread Debian Bug Tracking System
Your message dated Mon, 11 May 2020 08:48:43 +
with message-id 
and subject line Bug#960261: fixed in node-babel7 7.4.5+~cs6.2.2-2
has caused the Debian Bug report #960261,
regarding node-babel7: @babel/polyfill depends on old core-js
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
960261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960261
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: node-babel7
Version: 7.4.5-8
Severity: important
Control: affects -1 node-string-decoder

@babel/polyfill requires core-js/es6 and some other core-js files that
are not available with node-core-js ≥ 3
--- End Message ---
--- Begin Message ---
Source: node-babel7
Source-Version: 7.4.5+~cs6.2.2-2
Done: Xavier Guimard 

We believe that the bug you reported is fixed in the latest version of
node-babel7, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 960...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Xavier Guimard  (supplier of updated node-babel7 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 10:30:57 +0200
Source: node-babel7
Architecture: source
Version: 7.4.5+~cs6.2.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Closes: 960261
Changes:
 node-babel7 (7.4.5+~cs6.2.2-2) unstable; urgency=medium
 .
   * Team upload
   * Add patch for node-core-js ≥ 3 (Closes: #960261)
Checksums-Sha1: 
 55473092a9a5c9145957e578873c1bcb8cf9d753 4194 node-babel7_7.4.5+~cs6.2.2-2.dsc
 46bfc229e4628c9aa67402f9263c56fffd94b187 258892 
node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz
Checksums-Sha256: 
 8470c1b4dd905dfd1d706460aafa3be9cdcc63fe4604bf4e2a889358b9f35dee 4194 
node-babel7_7.4.5+~cs6.2.2-2.dsc
 ec8d199759e03c5beba31953705c1848418b0cf5071aeb5c24b99f6055f96f31 258892 
node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz
Files: 
 a61201e3982b9840bb0dc06cb5316fac 4194 javascript optional 
node-babel7_7.4.5+~cs6.2.2-2.dsc
 02f6af2c3740f30ee39cf04a569bd5db 258892 javascript optional 
node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl65DkIACgkQ9tdMp8mZ
7ulgRA//V6y2Nqxjuomxm6lOggMYd2neSxj4Plmju2kvy4UVKLzRe43iet3hbAN/
IRFR/KrZ7OuR+gIM+x25zx/Zi4kycjKRdBfp6uvMhNSlt/lwmFdG4/T4p38d+aHf
zko46CfcMnG0Nie783hAF5xEYYZ1Q3HlK43+XOlKaT3PVNXyQxU9ZOVnV9j+9njs
hcNbhQJokLdEkOaYmHowh1zUHedLztu4zFZFKV80WxjYJhMkWUPGuU90t6FBNdRO
r0Gq9JaWIxblFsBye49P7OH22OptobYAitcYba9LItsaIdRp+qbQjPQh3Plgba9d
TUMoq+EHXIhzeZfCngI1HqhpPf6JJ6SyG/WCeVvm0jqZLgwZjfU2quMMzjVo4i7F
rn3EBbmyvpD20JwY/Tr7agmtwFBy7rBVwp7zhF8US+CKPQII5jR/DeHOztEQCzF8
vB9RyV6KBb5VPg33FVrPyYTKTLRl9y1hTCGYDQbI2b0Z0w+fE8mAIFOPKbaK3ZMr
H0OuiwsupNRjwR2HmfznB4AK4GktY7JzaURmDg34eVuqAP+0lm26TrhYAaUnyS4V
QoM+RIZ1x/ZDkcNYSLtQQ1QzLoW9JrcrcoEyyZU2xwyG4DaGFOAqCEWTIpBnnviT
Fxxk0FY5AdZrDwi47+o41J5CCLD/uDwq3RFmTRyxzZPuumkYusE=
=0grS
-END PGP SIGNATURE End Message ---
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-babel7_7.4.5+~cs6.2.2-2_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 10:30:57 +0200
Source: node-babel7
Architecture: source
Version: 7.4.5+~cs6.2.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Closes: 960261
Changes:
 node-babel7 (7.4.5+~cs6.2.2-2) unstable; urgency=medium
 .
   * Team upload
   * Add patch for node-core-js ≥ 3 (Closes: #960261)
Checksums-Sha1: 
 55473092a9a5c9145957e578873c1bcb8cf9d753 4194 node-babel7_7.4.5+~cs6.2.2-2.dsc
 46bfc229e4628c9aa67402f9263c56fffd94b187 258892 
node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz
Checksums-Sha256: 
 8470c1b4dd905dfd1d706460aafa3be9cdcc63fe4604bf4e2a889358b9f35dee 4194 
node-babel7_7.4.5+~cs6.2.2-2.dsc
 ec8d199759e03c5beba31953705c1848418b0cf5071aeb5c24b99f6055f96f31 258892 
node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz
Files: 
 a61201e3982b9840bb0dc06cb5316fac 4194 javascript optional 
node-babel7_7.4.5+~cs6.2.2-2.dsc
 02f6af2c3740f30ee39cf04a569bd5db 258892 javascript optional 
node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl65DkIACgkQ9tdMp8mZ
7ulgRA//V6y2Nqxjuomxm6lOggMYd2neSxj4Plmju2kvy4UVKLzRe43iet3hbAN/
IRFR/KrZ7OuR+gIM+x25zx/Zi4kycjKRdBfp6uvMhNSlt/lwmFdG4/T4p38d+aHf
zko46CfcMnG0Nie783hAF5xEYYZ1Q3HlK43+XOlKaT3PVNXyQxU9ZOVnV9j+9njs
hcNbhQJokLdEkOaYmHowh1zUHedLztu4zFZFKV80WxjYJhMkWUPGuU90t6FBNdRO
r0Gq9JaWIxblFsBye49P7OH22OptobYAitcYba9LItsaIdRp+qbQjPQh3Plgba9d
TUMoq+EHXIhzeZfCngI1HqhpPf6JJ6SyG/WCeVvm0jqZLgwZjfU2quMMzjVo4i7F
rn3EBbmyvpD20JwY/Tr7agmtwFBy7rBVwp7zhF8US+CKPQII5jR/DeHOztEQCzF8
vB9RyV6KBb5VPg33FVrPyYTKTLRl9y1hTCGYDQbI2b0Z0w+fE8mAIFOPKbaK3ZMr
H0OuiwsupNRjwR2HmfznB4AK4GktY7JzaURmDg34eVuqAP+0lm26TrhYAaUnyS4V
QoM+RIZ1x/ZDkcNYSLtQQ1QzLoW9JrcrcoEyyZU2xwyG4DaGFOAqCEWTIpBnnviT
Fxxk0FY5AdZrDwi47+o41J5CCLD/uDwq3RFmTRyxzZPuumkYusE=
=0grS
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-string-decoder_1.3.0-1_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 10:33:19 +0200
Source: node-string-decoder
Architecture: source
Version: 1.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 node-string-decoder (1.3.0-1) unstable; urgency=medium
 .
   * Team upload
   * New upstream version 1.3.0
   * Remove useless override_dh_auto_test
   * Build with babel7
Checksums-Sha1: 
 e41674758b8b99ed24ea3a474572b72f02a76ead 2317 node-string-decoder_1.3.0-1.dsc
 d2b9061780cb3e1cc3cc2f2f99c15312fbe654aa 35409 
node-string-decoder_1.3.0.orig.tar.gz
 f1134768495c0f33c95545cb02af1648ef061149 4756 
node-string-decoder_1.3.0-1.debian.tar.xz
Checksums-Sha256: 
 3ddbc7d8de2367be2e2a54bdb5348ed2027a11700cfb8d534e9f20e57f3bbde5 2317 
node-string-decoder_1.3.0-1.dsc
 05f9c09bf0cf5d107d84dbc6eab0b3f4fdb00fbb97ec6ea6c1239900ad5eab70 35409 
node-string-decoder_1.3.0.orig.tar.gz
 c9acbc62df38a68933f208e64627d84f28d5d4b2f2515eaddd5faeb29ee014a4 4756 
node-string-decoder_1.3.0-1.debian.tar.xz
Files: 
 f1ee888cb191f0ca9bb7d35e79195b53 2317 javascript optional 
node-string-decoder_1.3.0-1.dsc
 3c00af44f9ff02839976008743fe43d7 35409 javascript optional 
node-string-decoder_1.3.0.orig.tar.gz
 8a7d838b2f55eb234b55716fca8aaf62 4756 javascript optional 
node-string-decoder_1.3.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl65DpQACgkQ9tdMp8mZ
7un5yg/9ExXA29CBkNmyP0Bl5n2/tSL/OgPgzz2SCXl1h++LXGEYmCqbxs59wjV9
aRVmDZWmL4hjOJIV4U8ds360TXO6DPqb6Tiu7IJGYQVlflC+VvDIQlVE7mE5wKT/
LbLqbbFtwfFwdC23rxCTbjsr1aCXPOsTuQLpOjpWWsSNovHtBR54cWhKfEtu1jS4
P/tnvd2fJFLJ5oEMxxVXJ3m3LQgxv8RNzcOyOJoCK0WTVx1ibJOU4Lr3tohx+ZHa
uWwvtpJBIq0Q7793kj8G1V2joO9GeFfPC/nu7uM2gQbQ6Bdn/tQ39J6K8udNDqpM
E9TQt6NJXIM7xtpEc5NvNMBjhvecFA3ZqM6fq3VWHkDm96MJ8HFuxUPNGWd0WdAa
7P1c47/MarzOzYmUvs7UCFOLvt0qQYLdkpuCQ8tk/JmOOIaR/LEfABsnfLQ64vZy
QcDQpCQuOzliI+XDkQQq+dfsZm/vRAMI+cGBBqzC8Amiu1yx5FI/4X4gMozU3yuk
7A5aFxwm6WsFnLzD54kBfL+kR49eJSaO0zrgb5Ov4OwehiPYujYGEQS+0danSfho
WGxm5wqet54NhYfE0Cx2S/rN0pa315YGaofYZ1CscbKJnk13buxXzDMxRoaaeRwE
uwfWihf3vOu54OKjFHl0qcbF/Ae7A2s4SDEzeg4On+tWNx4AY10=
=3uf9
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-babel7_7.4.5+~cs6.2.2-2_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
node-babel7_7.4.5+~cs6.2.2-2_sourceonly.changes uploaded successfully to 
localhost
along with the files:
  node-babel7_7.4.5+~cs6.2.2-2.dsc
  node-babel7_7.4.5+~cs6.2.2-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-string-decoder_1.3.0-1_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
node-string-decoder_1.3.0-1_sourceonly.changes uploaded successfully to 
localhost
along with the files:
  node-string-decoder_1.3.0-1.dsc
  node-string-decoder_1.3.0.orig.tar.gz
  node-string-decoder_1.3.0-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] ROM-RM useless packages that depends on node-babel 6

2020-05-11 Thread Xavier
Hi,

if no one disagree, I'm going to remove:
 * node-babel-preset-es2015-loose
 * node-babel-plugin-precompile-charcodes
 * node-babel-preset-es3
 * node-babel-preset-flow-vue
 * node-babel-preset-airbnb

These modules depends on node-babel 6 and are not used anywhere

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processed: Bug#960261 marked as pending in node-babel

2020-05-11 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #960261 [node-babel7] node-babel7: @babel/polyfill depends on old core-js
Added tag(s) pending.

-- 
960261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960261
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-fbjs_1.0.0-7_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 09:47:04 +0200
Source: node-fbjs
Architecture: source
Version: 1.0.0-7
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 node-fbjs (1.0.0-7) unstable; urgency=medium
 .
   * Team upload
   * Remove useless dependency to
 node-babel-plugin-syntax-trailing-function-commas
Checksums-Sha1: 
 6c6b72e1f5c58a9cc39ec218baeebfd46ced6f9b 2113 node-fbjs_1.0.0-7.dsc
 4ca64c57be7e2cdf62f49e672c6fb66821f03b8b 5612 node-fbjs_1.0.0-7.debian.tar.xz
Checksums-Sha256: 
 24a3bc75f8fe64f56d9f525bf9fb0883c2e3c7b22c99880b18a10fe76a2d4469 2113 
node-fbjs_1.0.0-7.dsc
 fd7c5ef292108823f63b02d26297ff373c5b79e1d205c96a899bc835b971a7b1 5612 
node-fbjs_1.0.0-7.debian.tar.xz
Files: 
 29f9d414466fcc01c2c9355cfc8b6b50 2113 javascript optional node-fbjs_1.0.0-7.dsc
 39ce3fee6a0b1cd3c7d2b55d52308006 5612 javascript optional 
node-fbjs_1.0.0-7.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl65A6cACgkQ9tdMp8mZ
7umdCg/7BcG67Switu97cZ7W9HvKc8qGhyB91Ob4sApPuaAgjwymGK9aSUELTX//
YwYxzC4T0Xvfz4QeyrnTtJZJQCipi1qL8SDadtjvaLJOefy9PgH6Wv/6RmxchJpR
m7IwjzUGgKoOgv6WTadAjxO7kQimW9Ac75zO+vcIMpZqkudv2U5t0QlYT4XLaiDr
7EhuMevn40oYUZ+XGduvlEriYCHkOk4i5HsiTsbdNEDUolCL/nlZhlzFjY14rnuq
BV+bBAPzhiD3ulGAMzy/RileTTj9QrAOGWfzIH5P2WUwNtOmZw3OVX214MBoKfQH
O/MnoE/r49NhtBNljf5hMsfi9zEdXSyqj1QMmctXC7M8NANcBH5g0Gbc4UpG47Xe
cNX3R1ffG2r4BnNdUnwHZLy3LSK1D3oe5tE/baei+sz0UmzK/nz2vvPKAzelsvDz
JFYJshNyhzGXwLJWglfTDU9+56LUf5+Lvvgb6kHfExmGVYRT0lZ1PDEwAf2Wv2YE
HnD6U44GIWb7M9r51I8zSp9oG3eQDN0OETC1VeSQxeXsJgqDCdl3ueJsPCszcTQ2
tvV/XU3uLwZjKy1kolOsFB5zD0BDY+ocnRHu6K8l6sFL2jNYMTVM4svRyHLesJsz
GOxyaM27ast1Iqv3N9r5b/0lzG9rmteYz1lS7YqDuZFaz607Kog=
=9yHK
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Bug#960261: node-babel7: @babel/polyfill depends on old core-js

2020-05-11 Thread Xavier Guimard
Package: node-babel7
Version: 7.4.5-8
Severity: important
Control: affects -1 node-string-decoder

@babel/polyfill requires core-js/es6 and some other core-js files that
are not available with node-core-js ≥ 3
-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processed: node-babel7: @babel/polyfill depends on old core-js

2020-05-11 Thread Debian Bug Tracking System
Processing control commands:

> affects -1 node-string-decoder
Bug #960261 [node-babel7] node-babel7: @babel/polyfill depends on old core-js
Added indication that 960261 affects node-string-decoder

-- 
960261: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=960261
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-fbjs_1.0.0-7_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
node-fbjs_1.0.0-7_sourceonly.changes uploaded successfully to localhost
along with the files:
  node-fbjs_1.0.0-7.dsc
  node-fbjs_1.0.0-7.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-columnify_1.5.4-3_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 08:29:34 +0200
Source: node-columnify
Architecture: source
Version: 1.5.4-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 node-columnify (1.5.4-3) unstable; urgency=medium
 .
   * Team upload
   * Update debian/watch
   * Build with babel7
Checksums-Sha1: 
 873a6816920f8c432efdfbe5b40d79d5459f247b 2143 node-columnify_1.5.4-3.dsc
 e68f74fb233e875a6dc204c88b47360f5bd482ba 3312 
node-columnify_1.5.4-3.debian.tar.xz
Checksums-Sha256: 
 52f78ec29f908c4ffea51df685717c33eae7ec6e84c4d87ce76024b96d5ef158 2143 
node-columnify_1.5.4-3.dsc
 ce22889ea555f05329dc5b7fec7f2b7e8474889c007be03c4060c670c19f7c64 3312 
node-columnify_1.5.4-3.debian.tar.xz
Files: 
 8f5231213a81ee361d2d92466f335aec 2143 javascript optional 
node-columnify_1.5.4-3.dsc
 557bc312ce8cc9e67e4526db2866298c 3312 javascript optional 
node-columnify_1.5.4-3.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl649HgACgkQ9tdMp8mZ
7uledhAAjmmuhSaIevNMxIdGi3PJbGoy7yUbSsZlaoDyKmr2YDk2CWH68y5vM84B
oMONstxRHQJI9P6lap2fjnu8dr+c2gRKRlJFzTlESxiSx14IaFZB6WY+6oZcOer5
W5xzyc1g4YiLntYbnkFcmZO3dKNtcnXsK1yVUQK0PtheErS1ujKVIEq6wgxuDFeR
nP5ADRdwelk5MRdupl6hitttASh9SegLpP8P3Zc4oARYlCRL332U1FQQf7OEf7kM
PpRHFeKPzzH12Mdesef0wxpdup0AJ13YmrE0K0iGEUybr3OJ8IPH3Jh6EfRjps6O
lntVfka+1eDweVKPNfEJSCu6fUlathEZscD7/Wx3skjQ1pZVa7wSLTeAgEIBTYxE
YYfMTo9+1+PO1TfL+ME6rzPnzdhl27VKyO4o5tP+gO+ZzuE2H0IKMexqh6Fz1TtV
PB8wUxRnEOdvIE9gXEJqu3iS4rrM2jDkG75AyS09BPLL728m59IaCefqVzqsHTNH
FzqjQLtX9EMcy80A549a1nLJe6A+jVDz1rWoRj+zzSE9rd+08p3e68hoPZqgcdzq
Nvhff6sD5cKm73BRGmNdx5mPVSrIV9+93wXMbWgWnu+ZUd/N/25BznD/upk8sWn8
f4xK64BFndie7jjrq2z9Zcd0Mn3PyilOjKwpD9OPdgNoO663xS4=
=0CWV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-columnify_1.5.4-3_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
node-columnify_1.5.4-3_sourceonly.changes uploaded successfully to localhost
along with the files:
  node-columnify_1.5.4-3.dsc
  node-columnify_1.5.4-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] node-babylon_6.18.0-4_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 08:11:02 +0200
Source: node-babylon
Architecture: source
Version: 6.18.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 node-babylon (6.18.0-4) unstable; urgency=medium
 .
   * Team upload
   * Build with babel7
Checksums-Sha1: 
 7cc33a4c6f0ed0338e19df91780fc73dcda3c3d2 2100 node-babylon_6.18.0-4.dsc
 2a40be850de96709bd9282ff621e5cc3183d86b7 7416 
node-babylon_6.18.0-4.debian.tar.xz
Checksums-Sha256: 
 d2a0430bdb96ef95b6ae0ba37ccb96aafef3280334028bfe30416974796a29c1 2100 
node-babylon_6.18.0-4.dsc
 6a7cd4da711f551a714bb34e9768fa38fa9af470975b126ff72f529104d1bcbe 7416 
node-babylon_6.18.0-4.debian.tar.xz
Files: 
 ad82a9c10c26ff12795125c42743130d 2100 javascript optional 
node-babylon_6.18.0-4.dsc
 df7039eb5abac990cfde4e9da906108d 7416 javascript optional 
node-babylon_6.18.0-4.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl647S0ACgkQ9tdMp8mZ
7ukyJA//RD0xALu9eJoJRTsP34JRwf28SN/wr0iUQDwRFFTbC/pl5WcYyRBeUXbL
etgA8T0Ag4/qHG5Gh8oIbdyJdoF2zMw/+d/Himup0pdemjBywBKSLCfRIx43ZMpG
UBE3+ZlSQdjKOiHnQEpM0wXskmDwfG4Lf9Hf5E/mjoBHvhOQln94AjdySVNH1ejJ
1rVXmdjLYNzbGCFwXgbxR7Gn27ajY8bxOHSQjJZVZpThtrUZMeMME5D0tufb/Prz
rVgLJIDDsNTdomo1LjryyNPfaWjyb0B8Xa6zOYJ3difqwWjXuzOu9l1sw6f/Ex6S
UAowRIMaPIL3Qd9duyRfPXshVMSfl9pFDgmql+4YmAPyj0eIPomz5vTjk+Auc7z6
c7FZ13KzSqxeFFin5lyJSJ2oRf/rHVf8TdnOZsLyayMJNebYvTY3AF4OMITyTwLW
4rObvE8W4HXqbNq+pvMSIpKKevRtt/ZG35PZdjdCFwAb2WzWpdrn1vEOKcNNUh1C
36lN9fFTYcVU5yI/BS3NI79jgRW/WRi0DNPZfQOuUTp7At+mw8BDh0ztJxu96kf4
pMsNN/RgtzoeZTWcS4qvyy8CBW8WMY5aq0YJZ2bJZKikTAsHojrvM3AdARm/7tN5
Wg/Qn0w0oxmNUDN7fkwyUwrOrPb3XpCAMjZkCCgmhm1tZaz+qII=
=EjsV
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] vue-router.js_3.1.6+ds-1_sourceonly.changes ACCEPTED into unstable

2020-05-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 11 May 2020 08:14:47 +0200
Source: vue-router.js
Architecture: source
Version: 3.1.6+ds-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 

Changed-By: Xavier Guimard 
Changes:
 vue-router.js (3.1.6+ds-1) unstable; urgency=medium
 .
   * Tem upload
 .
   [ Paolo Greppi ]
   * Fix vue-router installed in /usr/share/javascript
   * Update Standards-version
   * Embed path-to-regexp with custom config to rollup-plugin-node-resolve
   * New upstream version 3.1.6+ds
 .
   [ Pirate Praveen ]
   * Add patch to adapt to path-to-regexp 6
 .
   [ Xavier Guimard ]
   * Add "Rules-Requires-Root: no"
Checksums-Sha1: 
 c338cc57c13a30e6d22e304807787bf203bd155d 2293 vue-router.js_3.1.6+ds-1.dsc
 0f486cb9cf6d31ed2eac61ef98521809c48713e2 382084 
vue-router.js_3.1.6+ds.orig.tar.xz
 1e054a940bd3b00ea9dea5129bef2ceb34dc0e51 10936 
vue-router.js_3.1.6+ds-1.debian.tar.xz
Checksums-Sha256: 
 e99f44191922a5e6bd7f2e6d990e1cb85bc2b70c23a02bbd128e5e57b91e894d 2293 
vue-router.js_3.1.6+ds-1.dsc
 38aad6ec2c8308aca20820f6bee219804aa17a7ce598ec3bdf6ca9dfe33b4f5d 382084 
vue-router.js_3.1.6+ds.orig.tar.xz
 6874a9f4902f743aa964637d7acdd349841375d18b01790a29fe97f4732716e8 10936 
vue-router.js_3.1.6+ds-1.debian.tar.xz
Files: 
 1b741fff3c302c43b22d86ce0cceff5f 2293 javascript optional 
vue-router.js_3.1.6+ds-1.dsc
 12e886653a5c52e61f9cb42a0fd8bd5d 382084 javascript optional 
vue-router.js_3.1.6+ds.orig.tar.xz
 6183962ba3e45d031d0f95ad49d44f6a 10936 javascript optional 
vue-router.js_3.1.6+ds-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAl647pUACgkQ9tdMp8mZ
7um06w/5AQF+mS63mQsK/SRZTMDO3UkC84+26wTiiAJnsamygsrC10l5QV/50HtT
PHoYP1l5dX9jIxDXTXdE84/DqOdcVZPxpoZFlqo7bVEmab215k2NYDGgEyzvuqsG
60Cyc4h4Gs0FjnbB1qBFEWCOBYgZEvAk4wPIhrsXHnLqXVcnRJOcxo8ie471vjZ7
sM4nspZhGwnTGo5fBUCzego6/Fp5qxH+Sm5G/4wZl2FyiaHtMm1TDcDGxDXPCRYO
JzEdgkZhgo8EYk66NH6prDkq4l/2xPDqxSfnCO0beAbUeVvtE9wopOBfsjmEl29F
+0MkNRZO0Weq6emm8nw35/ATQv5Kxbx8r7UnyNmUDVHB+lAjQBDDn0dPu8L8/m02
W6UHvptJjiBWKgrscNIt8TFaxlltTtsBbU7vaXSFxaiahjI0sPhrclhS/dQBw+gC
kfeTghSDZUySRXlpfezc22kwBjYATW6txmj4Go2dwQtspVU5/Q3JGmjRKKFo+QU/
xHWObhCxft1GAxbP8/1OTiCgYxZAC50sDuPo/DCxsr3YoL/xZn1fC6LiSfQXDnWU
8Aka4vZ0KkvEmn2l0mg1YDsKcyRiQrBFatOocVxku+FaAk9ODSyRR3YEDXQxiWpn
l/bEk99eLDQphZcOv86fTcScEfdh1/3rVibpcj12t0uW3JdLUCI=
=AiNm
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of vue-router.js_3.1.6+ds-1_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
vue-router.js_3.1.6+ds-1_sourceonly.changes uploaded successfully to localhost
along with the files:
  vue-router.js_3.1.6+ds-1.dsc
  vue-router.js_3.1.6+ds.orig.tar.xz
  vue-router.js_3.1.6+ds-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Re: [Pkg-javascript-devel] Removing babel 6: Call for help

2020-05-11 Thread Pirate Praveen


On 2020, മേയ് 11 2:19:01 AM IST, Xavier  wrote:
>Le 10/05/2020 à 21:23, Pirate Praveen a écrit :
>> 
>> 
>> On Sat, May 9, 2020 at 10:54 pm, Xavier  wrote:
>>> Thanks for your awesome work!
>> 
>> Thanks to you, Jonas and Nilesh too for helping.
>> 
>> Can somoene check babel7 branch in node-yarnpkg? It builds fine but I
>> probably need to include some specific plugins from stage-0 preset. It
>> builds fine, but when you try to run, it fails with this error.
>> 
>> $ yarnpkg
>> /usr/share/nodejs/@babel/runtime/helpers/inherits.js:5
>>    throw new TypeError("Super expression must either be null or a
>> function");
>>    ^
>
>In `function _inherits(subClass, superClass)`, superClass is "undefined"
>instead of "null".
>
>Adding (in babel7) `if(superClass===undefined) superClass=null;` fixes
>this problem but then:
>
>/usr/share/nodejs/yarn/lib/util/generate-pnp-map-api.tpl.js:28
>var ignorePattern = $$BLACKLIST ? new RegExp($$BLACKLIST) : null;
>^
>ReferenceError: $$BLACKLIST is not defined
>at Object.
>(/usr/share/nodejs/yarn/lib/util/generate-pnp-map-api.tpl.js:28:21)
>at Module._compile (internal/modules/cjs/loader.js:778:30)
>at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
>at Module.load (internal/modules/cjs/loader.js:653:32)
>at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
>at Function.Module._load (internal/modules/cjs/loader.js:585:3)
>at Module.require (internal/modules/cjs/loader.js:692:17)
>at require (internal/modules/cjs/helpers.js:25:18)
>at Object.
>(/usr/share/nodejs/yarn/lib/util/generate-pnp-map.js:22:52)
>at Module._compile (internal/modules/cjs/loader.js:778:30)
>
>So it seems that this is not an error on babel7 side but on yarn build

With babel 6, they use node-babel-preset-stage-0 which is not available in 
babel 7, we need to specify the plugins from that preset explicitly.

For the webpack error, it does not fail the build and it was there before too.
-- 
Sent from my Android device with K-9 Mail. Please excuse my brevity.

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

[Pkg-javascript-devel] Processing of node-babylon_6.18.0-4_sourceonly.changes

2020-05-11 Thread Debian FTP Masters
node-babylon_6.18.0-4_sourceonly.changes uploaded successfully to localhost
along with the files:
  node-babylon_6.18.0-4.dsc
  node-babylon_6.18.0-4.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)

-- 
Pkg-javascript-devel mailing list
Pkg-javascript-devel@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel