Comment 5 for bug 1877704

Revision history for this message
Sergio Durigan Junior (sergiodj) wrote :

Verification for Groovy:

First, verifying that the bug manifests itself:

# apt policy node-uid-number
node-uid-number:
  Installed: 0.0.6-1
  Candidate: 0.0.6-1
  Version table:
 *** 0.0.6-1 500
        500 http://archive.ubuntu.com/ubuntu groovy/universe amd64 Packages
        100 /var/lib/dpkg/status
# npm install yarn -g
# grep get-uid-gid .npm/_logs/*-debug.log
57 verbose stack Error: Cannot find module './get-uid-gid.js'
64 error Cannot find module './get-uid-gid.js'

Now, installing the updated package from -proposed and verifying that the bug is fixed:

# apt policy node-uid-number
node-uid-number:
  Installed: 0.0.6-1ubuntu0.20.10.1
  Candidate: 0.0.6-1ubuntu0.20.10.1
  Version table:
 *** 0.0.6-1ubuntu0.20.10.1 500
        500 http://archive.ubuntu.com/ubuntu groovy-proposed/universe amd64 Packages
        100 /var/lib/dpkg/status
     0.0.6-1 500
        500 http://archive.ubuntu.com/ubuntu groovy/universe amd64 Packages
# npm install yarn -g

> yarn@1.22.10 preinstall /usr/local/lib/node_modules/yarn
> :; (node ./preinstall.js > /dev/null 2>&1 || true)

/usr/local/bin/yarn -> /usr/local/lib/node_modules/yarn/bin/yarn.js
/usr/local/bin/yarnpkg -> /usr/local/lib/node_modules/yarn/bin/yarn.js
+ yarn@1.22.10
updated 1 package in 1.731s
# ls .npm/_logs/
# ls /usr/lib/nodejs/uid-number/get-uid-gid.js
/usr/lib/nodejs/uid-number/get-uid-gid.js

The bug has been fixed with the package from -proposed.

This concludes the verification for Groovy.