New Upstream Snapshot - node-node-dir

Ready changes

Summary

Merged new upstream version: 0.1.17+~0.0.34+git20170210.1.a57c3b1 (was: 0.1.17+~0.0.34).

Resulting package

Built on 2022-11-03T07:33 (took 6m4s)

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

apt install -t fresh-snapshots node-node-dir

Lintian Result

Diff

diff --git a/.npmignore b/.npmignore
deleted file mode 100644
index e82ae25..0000000
--- a/.npmignore
+++ /dev/null
@@ -1,3 +0,0 @@
-.git*
-.travis.yml
-test
\ No newline at end of file
diff --git a/debian/changelog b/debian/changelog
index da58114..1408572 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+node-node-dir (0.1.17+~0.0.34+git20170210.1.a57c3b1-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Thu, 03 Nov 2022 07:31:23 -0000
+
 node-node-dir (0.1.17+~0.0.34-1) unstable; urgency=medium
 
   * Team upload
diff --git a/types-node-dir/LICENSE b/types-node-dir/LICENSE
deleted file mode 100755
index 9e841e7..0000000
--- a/types-node-dir/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-node-dir/README.md b/types-node-dir/README.md
deleted file mode 100755
index fee1b75..0000000
--- a/types-node-dir/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Installation
-> `npm install --save @types/node-dir`
-
-# Summary
-This package contains type definitions for node-dir (https://github.com/fshost/node-dir).
-
-# Details
-Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-dir.
-
-### Additional Details
- * Last updated: Wed, 07 Jul 2021 00:01:48 GMT
- * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
- * Global values: none
-
-# Credits
-These definitions were written by [Panu Horsmalahti](https://github.com/panuhorsmalahti), and [James Lismore](https://github.com/jlismore).
diff --git a/types-node-dir/index.d.ts b/types-node-dir/index.d.ts
deleted file mode 100755
index baa5b8e..0000000
--- a/types-node-dir/index.d.ts
+++ /dev/null
@@ -1,74 +0,0 @@
-// Type definitions for node-dir
-// Project: https://github.com/fshost/node-dir
-// Definitions by: Panu Horsmalahti <https://github.com/panuhorsmalahti>
-//                 James Lismore <https://github.com/jlismore>
-// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-
-///<reference types="node"/>
-
-import { ReadStream } from "fs";
-
-export interface Options {
-    // file encoding (defaults to 'utf8')
-    encoding?: string | undefined;
-
-    // a regex pattern or array to specify filenames to ignore
-    exclude?: RegExp | string[] | undefined;
-
-    // a regex pattern or array to specify directories to ignore
-    excludeDir?: RegExp | string[] | undefined;
-
-    // a regex pattern or array to specify filenames to operate on
-    match?: RegExp | string[] | undefined;
-
-    // a regex pattern or array to specify directories to recurse
-    matchDir?: RegExp | string[] | undefined;
-
-    // whether to recurse subdirectories when reading files (defaults to true)
-    recursive?: boolean | undefined;
-
-    // sort files in each directory in descending order
-    reverse?: boolean | undefined;
-
-    // whether to aggregate only the base filename rather than the full filepath
-    shortName?: boolean | undefined;
-
-    // sort files in each directory in ascending order (defaults to true)
-    sort?: boolean | undefined;
-
-    // control if done function called on error (defaults to true)
-    doneOnErr?: boolean | undefined;
-}
-
-export interface FileCallback {
-    (error: any, content: string | Buffer, next: () => void): void;
-}
-
-export interface FileNamedCallback {
-    (error: any, content: string | Buffer, filename: string, next: () => void): void;
-}
-
-export interface StreamCallback {
-    (error: any, stream: ReadStream, next: () => void): void;
-}
-
-export interface FinishedCallback {
-    (error: any, files: string[]): void;
-}
-export interface PathsResult {
-    files: string[];
-    dirs: string[];
-}
-
-export function readFiles(dir: string, fileCallback: FileCallback, finishedCallback?: FinishedCallback): void;
-export function readFiles(dir: string, fileCallback: FileNamedCallback, finishedCallback?: FinishedCallback): void;
-export function readFiles(dir: string, options: Options, fileCallback: FileCallback, finishedCallback?: FinishedCallback): void;
-export function readFiles(dir: string, options: Options, fileCallback: FileNamedCallback, finishedCallback?: FinishedCallback): void;
-export function readFilesStream(dir: string, streamCallback: StreamCallback, finishedCallback?: FinishedCallback): void;
-export function readFilesStream(dir: string, options: Options, streamCallback: StreamCallback, finishedCallback?: FinishedCallback): void;
-export function files(dir: string, callback: (error: any, files: string[]) => void): void;
-export function files(dir: string, syncOption: { sync: true }): string[];
-export function promiseFiles(dir: string): Promise<string[]>;
-export function subdirs(dir: string, callback: (error: any, subdirs: string[]) => void): void;
-export function paths(dir: string, callback: (error: any, paths: PathsResult) => void): void;
-export function paths(dir: string, combine: boolean, callback: (error: any, paths: string[] | PathsResult) => void): void;
diff --git a/types-node-dir/package.json b/types-node-dir/package.json
deleted file mode 100755
index 0c8b17a..0000000
--- a/types-node-dir/package.json
+++ /dev/null
@@ -1,32 +0,0 @@
-{
-    "name": "@types/node-dir",
-    "version": "0.0.34",
-    "description": "TypeScript definitions for node-dir",
-    "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node-dir",
-    "license": "MIT",
-    "contributors": [
-        {
-            "name": "Panu Horsmalahti",
-            "url": "https://github.com/panuhorsmalahti",
-            "githubUsername": "panuhorsmalahti"
-        },
-        {
-            "name": "James Lismore",
-            "url": "https://github.com/jlismore",
-            "githubUsername": "jlismore"
-        }
-    ],
-    "main": "",
-    "types": "index.d.ts",
-    "repository": {
-        "type": "git",
-        "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
-        "directory": "types/node-dir"
-    },
-    "scripts": {},
-    "dependencies": {
-        "@types/node": "*"
-    },
-    "typesPublisherContentHash": "594a3cae522c54aeee2924c527956f4da3830bc1d9a0d2d93541251ec018b605",
-    "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/node-dir/index.d.ts
-rw-r--r--  root/root   /usr/share/nodejs/@types/node-dir/package.json

Control files: lines which differ (wdiff format)

  • Provides: node-types-node-dir (= 0.0.34)

More details

Full run details