Your message dated Mon, 31 Aug 2026 16:06:27 +0000
with message-id <[email protected]>
and subject line Bug#1146327: fixed in node-shallow-equal 3.1.0-3
has caused the Debian Bug report #1146327,
regarding node-shallow-equal: FTBFS with node-babel 8
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 [email protected]
immediately.)


-- 
1146327: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1146327
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:node-shallow-equal
Version: 3.1.0-2
Severity: serious
Tags: ftbfs forky sid

Dear maintainer:

During a rebuild of all packages in unstable, this package failed to build.

Below you will find the last part of the build log (probably the most
relevant part, but not necessarily). If required, the full build log
is available here:

https://people.debian.org/~sanvila/build-logs/202608/

A wiki page discussing possible solutions is available here:

https://wiki.debian.org/Javascript/KnownPatches?pow_referer=#node-babel7_8

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you cannot reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:node-shallow-equal, so that this is still
visible in the BTS web page for this package.

Thanks.

--------------------------------------------------------------------------------
[...]
   dh_auto_test --buildsystem=nodejs
        ln -s ../. node_modules/shallow-equal
        /bin/sh -ex debian/tests/pkg-js/test
+ jest --no-coverage --ci
ts-jest[versions] (WARN) Version 6.0.3 of typescript installed has not been 
tested with ts-jest. If you're experiencing issues, consider using a supported 
version (>=4.3.0 <6.0.0-0). Please do not report issues in ts-jest if you are 
using unsupported versions.
FAIL src/__tests__/index.test.ts
  ● Test suite failed to run

    src/__tests__/index.test.ts:120:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    120 describe("shallowEqual on arrays", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:122:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    122     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:123:7 - 
error TS2304: Cannot find name 'expect'.

    123       expect(shallowEqual(test.arrA, 
test.arrB)).toEqual(test.result);
              ~~~~~~
    src/__tests__/index.test.ts:128:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    128 describe("shallowEqual on objects", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:130:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    130     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:131:7 - 
error TS2304: Cannot find name 'expect'.

    131       expect(shallowEqual(test.objA, 
test.objB)).toEqual(test.result);
              ~~~~~~
    src/__tests__/index.test.ts:136:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    136 describe("shallowEqual on mixed array/objects", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:137:3 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    137   it("should act correctly when types are mixed", () => {
          ~~
    src/__tests__/index.test.ts:138:5 - 
error TS2304: Cannot find name 'expect'.

    138     expect(shallowEqual(["boris", "johnson"], { boris: 
"johnson" })).toBe(
            ~~~~~~
    src/__tests__/index.test.ts:141:5 - 
error TS2304: Cannot find name 'expect'.

    141     expect(shallowEqual({ boris: "johnson" }, ["boris", 
"johnson"])).toBe(
            ~~~~~~
    src/__tests__/index.test.ts:144:5 - 
error TS2304: Cannot find name 'expect'.

    144     expect(shallowEqual(["boris", "johnson"], { liz: "truss" 
})).toBe(false);
            ~~~~~~
    src/__tests__/index.test.ts:145:5 - 
error TS2304: Cannot find name 'expect'.

    145     expect(shallowEqual({}, [])).toBe(false);
            ~~~~~~
    src/__tests__/index.test.ts:149:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    149 describe("shallowEqualObjects", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:151:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    151     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:152:7 - 
error TS2304: Cannot find name 'expect'.

    152       expect(shallowEqualObjects(test.objA, 
test.objB)).toEqual(test.result);
              ~~~~~~
    src/__tests__/index.test.ts:157:1 - 
error TS2593: Cannot find name 'describe'. Do you need to 
install type definitions for a test runner? Try `npm i --save-dev @types/jest` 
or `npm i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types 
field in your tsconfig.

    157 describe("shallowEqualArrays", () => {
        ~~~~~~~~
    src/__tests__/index.test.ts:159:5 - 
error TS2593: Cannot find name 'it'. Do you need to install 
type definitions for a test runner? Try `npm i --save-dev @types/jest` or `npm 
i --save-dev @types/mocha` and then add 'jest' or 'mocha' to the types field in 
your tsconfig.

    159     it("should " + test.should, () => {
            ~~
    src/__tests__/index.test.ts:160:7 - 
error TS2304: Cannot find name 'expect'.

    160       expect(shallowEqualArrays(test.arrA, 
test.arrB)).toEqual(test.result);
              ~~~~~~

Test Suites: 1 failed, 1 total
Tests:       0 total
Snapshots:   0 total
Time:        0.993 s
Ran all test suites.
dh_auto_test: error: /bin/sh -ex debian/tests/pkg-js/test returned exit code 1
make: *** [debian/rules:8: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess failed with exit 
status 2
--------------------------------------------------------------------------------

--- End Message ---
--- Begin Message ---
Source: node-shallow-equal
Source-Version: 3.1.0-3
Done: Xavier Guimard <[email protected]>

We believe that the bug you reported is fixed in the latest version of
node-shallow-equal, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Xavier Guimard <[email protected]> (supplier of updated node-shallow-equal 
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 [email protected])


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

Format: 1.8
Date: Mon, 31 Aug 2026 15:39:16 +0200
Source: node-shallow-equal
Architecture: source
Version: 3.1.0-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Javascript Maintainers 
<[email protected]>
Changed-By: Xavier Guimard <[email protected]>
Closes: 1146327
Changes:
 node-shallow-equal (3.1.0-3) unstable; urgency=medium
 .
   * Fix tests with typescript 6 (Closes: #1146327)
   * Declare compliance with policy 4.7.4
   * Drop "Rules-Requires-Root: no"
   * Drop "Priority: optional"
   * Apply multiarch hints from UDD
   * debian/watch version 5
Checksums-Sha1: 
 a77aab9b1cb60a5e6042adb46b690de1d5d0c01a 2164 node-shallow-equal_3.1.0-3.dsc
 c835f0fa570d3df05bd9bb23a50994847d003bec 3092 
node-shallow-equal_3.1.0-3.debian.tar.xz
Checksums-Sha256: 
 ff4eada77c2dbe71ac7aee388dbc59489967a9e55fabe1c770f9e932441e9e7b 2164 
node-shallow-equal_3.1.0-3.dsc
 336367ff23d030a3640e91c8a49503af1700cf337a7633864f8125c4e0124e81 3092 
node-shallow-equal_3.1.0-3.debian.tar.xz
Files: 
 0b2e971b5ec9c3fa76178dd41bfeea88 2164 javascript optional 
node-shallow-equal_3.1.0-3.dsc
 2c26c3724f2c7f2c65b3d82735898c28 3092 javascript optional 
node-shallow-equal_3.1.0-3.debian.tar.xz

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

iQIzBAEBCgAdFiEEAN/li4tVV3nRAF7J9tdMp8mZ7ukFAmqVougACgkQ9tdMp8mZ
7uk0AhAAnp7kBfUEWz5mPrO+H2aWjhC55DQTlOn7NiJ9szuv6XGRhR0/Hx+SEWG2
hoF5kWt+E+sZpjfumnVetEiot7cZEzZbiaxSLaA7ELWMQZLaJgUSoDqILRbq5dz2
d08mVaENzufsP97k1u2c5n8kWcLfDNaQIP2WPWuUUBvuDPlGQk9hz+bv1re75TiB
FtuW3g/3yGXcpVqUHQPcT+iF7TXAH4+u/LbrJpf0e0ASmfThfAgUyTIgg8uBp8Wu
+1vwuQ3En7qhrOVDlKKn/RpiRL81SCPVQR3r7aXDBQbHyx9NuGzhEdRdDqWXhvFL
/PEJZn6F1j/k5PDgB76eRXqoT+HjrhmG3mbZjNRDfFXhV8kJhQm6gG8XkohogkB1
oAwJ8ue8mDfvuSVND3qtU00GgzzxUAR4dd7fLT6jbLXA7WpB5AfyGDcNiUPU4BFY
cXmA31r4sNJEvesPheHNDQXIKuUUXy01YFI8+qKMMMIgl7yWJw5WlL8foCpMlB9N
xo0zxvlM3cxG+8xlXY0S2gKkA4gtO5qDOUtS26uVYav1cMiwTo5O8dd35Eu3q6g0
fviasX/+BCEB1DmEQfHSVWX2Ypfx6jELY7FE4DGu98SAMnVqL8a7J2fQlpAMmpRd
4os42p4Jq60vZPes5yeKHp5NEiwX82HwB7wNRSQNuLDNLu7GIhA=
=fPNd
-----END PGP SIGNATURE-----

Attachment: pgpnmvy2DwtuU.pgp
Description: PGP signature


--- End Message ---
-- 
Pkg-javascript-devel mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-javascript-devel

Reply via email to