New Upstream Snapshot - node-isexe

Ready changes

Summary

Merged new upstream version: 2.0.0+~2.0.1+git20220226.1.06853f6 (was: 2.0.0+~2.0.1).

Resulting package

Built on 2023-01-20T01:59 (took 6m25s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots node-isexe

Lintian Result

Diff

diff --git a/LICENSE b/LICENSE
index 19129e3..c925dbe 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 The ISC License
 
-Copyright (c) Isaac Z. Schlueter and Contributors
+Copyright (c) 2016-2022 Isaac Z. Schlueter and Contributors
 
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
diff --git a/debian/changelog b/debian/changelog
index d0c902e..dffb443 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,9 @@
-node-isexe (2.0.0+~2.0.1-6) UNRELEASED; urgency=medium
+node-isexe (2.0.0+~2.0.1+git20220226.1.06853f6-1) UNRELEASED; urgency=medium
 
   * Update standards version to 4.6.1, no changes needed.
+  * New upstream snapshot.
 
- -- Debian Janitor <janitor@jelmer.uk>  Wed, 30 Nov 2022 14:01:35 -0000
+ -- Debian Janitor <janitor@jelmer.uk>  Fri, 20 Jan 2023 01:55:56 -0000
 
 node-isexe (2.0.0+~2.0.1-5) unstable; urgency=medium
 
diff --git a/debian/patches/disable-failing-tests.patch b/debian/patches/disable-failing-tests.patch
index 7afd48e..7f9538c 100644
--- a/debian/patches/disable-failing-tests.patch
+++ b/debian/patches/disable-failing-tests.patch
@@ -1,9 +1,9 @@
 may need updating node-tap
 
-Index: node-isexe/test/basic.js
+Index: node-isexe.git/test/basic.js
 ===================================================================
---- node-isexe.orig/test/basic.js
-+++ node-isexe/test/basic.js
+--- node-isexe.git.orig/test/basic.js
++++ node-isexe.git/test/basic.js
 @@ -65,6 +65,7 @@ t.test('promise', { skip: promiseSkip },
    t.end()
  })
diff --git a/package.json b/package.json
index e452689..df397a4 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
   "devDependencies": {
     "mkdirp": "^0.5.1",
     "rimraf": "^2.5.0",
-    "tap": "^10.3.0"
+    "tap": "^15.1.6"
   },
   "scripts": {
     "test": "tap test/*.js --100",
diff --git a/types-isexe/LICENSE b/types-isexe/LICENSE
deleted file mode 100755
index 9e841e7..0000000
--- a/types-isexe/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-    MIT License
-
-    Copyright (c) Microsoft Corporation.
-
-    Permission is hereby granted, free of charge, to any person obtaining a copy
-    of this software and associated documentation files (the "Software"), to deal
-    in the Software without restriction, including without limitation the rights
-    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-    copies of the Software, and to permit persons to whom the Software is
-    furnished to do so, subject to the following conditions:
-
-    The above copyright notice and this permission notice shall be included in all
-    copies or substantial portions of the Software.
-
-    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-    SOFTWARE
diff --git a/types-isexe/README.md b/types-isexe/README.md
deleted file mode 100755
index d5f208c..0000000
--- a/types-isexe/README.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# Installation
-> `npm install --save @types/isexe`
-
-# Summary
-This package contains type definitions for isexe (https://github.com/isaacs/isexe#readme).
-
-# Details
-Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/isexe.
-## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/isexe/index.d.ts)
-````ts
-// Type definitions for isexe 2.0
-// Project: https://github.com/isaacs/isexe#readme
-// Definitions by: BendingBender <https://github.com/BendingBender>
-// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-
-/// <reference types="node" />
-
-export = isExe;
-
-declare function isExe(path: string, options?: isExe.Options): Promise<boolean>;
-declare function isExe(
-    path: string,
-    callback: (error: NodeJS.ErrnoException | undefined, isExe: boolean) => void
-): void;
-declare function isExe(
-    path: string,
-    options: isExe.Options,
-    callback: (error: NodeJS.ErrnoException | undefined, isExe: boolean) => void
-): void;
-
-declare namespace isExe {
-    function sync(path: string, options?: Options): boolean;
-
-    interface Options {
-        ignoreErrors?: boolean | undefined;
-        uid?: number | undefined;
-        gid?: number | undefined;
-        pathExt?: string | undefined;
-    }
-}
-
-````
-
-### Additional Details
- * Last updated: Tue, 06 Jul 2021 21:33:42 GMT
- * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
- * Global values: none
-
-# Credits
-These definitions were written by [BendingBender](https://github.com/BendingBender).
diff --git a/types-isexe/index.d.ts b/types-isexe/index.d.ts
deleted file mode 100755
index 389274f..0000000
--- a/types-isexe/index.d.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-// Type definitions for isexe 2.0
-// Project: https://github.com/isaacs/isexe#readme
-// Definitions by: BendingBender <https://github.com/BendingBender>
-// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-
-/// <reference types="node" />
-
-export = isExe;
-
-declare function isExe(path: string, options?: isExe.Options): Promise<boolean>;
-declare function isExe(
-    path: string,
-    callback: (error: NodeJS.ErrnoException | undefined, isExe: boolean) => void
-): void;
-declare function isExe(
-    path: string,
-    options: isExe.Options,
-    callback: (error: NodeJS.ErrnoException | undefined, isExe: boolean) => void
-): void;
-
-declare namespace isExe {
-    function sync(path: string, options?: Options): boolean;
-
-    interface Options {
-        ignoreErrors?: boolean | undefined;
-        uid?: number | undefined;
-        gid?: number | undefined;
-        pathExt?: string | undefined;
-    }
-}
diff --git a/types-isexe/package.json b/types-isexe/package.json
deleted file mode 100755
index fc25300..0000000
--- a/types-isexe/package.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
-    "name": "@types/isexe",
-    "version": "2.0.1",
-    "description": "TypeScript definitions for isexe",
-    "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/isexe",
-    "license": "MIT",
-    "contributors": [
-        {
-            "name": "BendingBender",
-            "url": "https://github.com/BendingBender",
-            "githubUsername": "BendingBender"
-        }
-    ],
-    "main": "",
-    "types": "index.d.ts",
-    "repository": {
-        "type": "git",
-        "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
-        "directory": "types/isexe"
-    },
-    "scripts": {},
-    "dependencies": {
-        "@types/node": "*"
-    },
-    "typesPublisherContentHash": "4b855fac42404bc72ac87ca3aaeea8750d9538261374c4ed7554de7f7818aa3f",
-    "typeScriptVersion": "3.6"
-}
\ No newline at end of file

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/share/nodejs/@types/isexe/index.d.ts
-rw-r--r--  root/root   /usr/share/nodejs/@types/isexe/package.json

Control files: lines which differ (wdiff format)

  • Provides: node-types-isexe (= 2.0.1)

More details

Full run details