New Upstream Snapshot - node-isstream

Ready changes

Summary

Merged new upstream version: 0.1.2+dfsg+~0.1.0+git20151230.1.52901ef+ds (was: 0.1.2+dfsg+~0.1.0).

Resulting package

Built on 2022-11-07T19:13 (took 11m39s)

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

apt install -t fresh-snapshots node-isstream

Lintian Result

Diff

diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index c2658d7..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-node_modules/
diff --git a/.npmignore b/.npmignore
deleted file mode 100644
index aa1ec1e..0000000
--- a/.npmignore
+++ /dev/null
@@ -1 +0,0 @@
-*.tgz
diff --git a/README.md b/README.md
index 06770e8..2515b24 100644
--- a/README.md
+++ b/README.md
@@ -63,4 +63,4 @@ isDuplex(new Stream.PassThrough()) // true
 
 ## License
 
-**isStream** is Copyright (c) 2015 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licenced under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.
+**isStream** is Copyright (c) 2015 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.
diff --git a/debian/changelog b/debian/changelog
index beb0339..fa2aa63 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+node-isstream (0.1.2+dfsg+~0.1.0+git20151230.1.52901ef+ds-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+  * Drop patch spelling.patch, present upstream.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Mon, 07 Nov 2022 19:06:50 -0000
+
 node-isstream (0.1.2+dfsg+~0.1.0-1) unstable; urgency=medium
 
   * Team upload
diff --git a/debian/patches/drop-old-tests.patch b/debian/patches/drop-old-tests.patch
index 1f4d179..2613a81 100644
--- a/debian/patches/drop-old-tests.patch
+++ b/debian/patches/drop-old-tests.patch
@@ -3,9 +3,11 @@ Author: Yadd <yadd@debian.org>
 Forwarded: not-needed
 Last-Update: 2021-11-20
 
---- a/test.js
-+++ b/test.js
-@@ -9,8 +9,6 @@
+Index: node-isstream.git/test.js
+===================================================================
+--- node-isstream.git.orig/test.js
++++ node-isstream.git/test.js
+@@ -9,8 +9,6 @@ var tape             = require('tape')
    , isDuplex         = require('./').isDuplex
  
    , CoreStreams      = require('stream')
@@ -14,7 +16,7 @@ Last-Update: 2021-11-20
  
  
  function test (pass, type, stream) {
-@@ -76,19 +74,6 @@
+@@ -76,19 +74,6 @@ test(true, 'CoreStreams.Duplex', new (Co
  test(true, 'CoreStreams.Transform', new (CoreStreams.Transform)())
  test(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
  
@@ -34,7 +36,7 @@ Last-Update: 2021-11-20
  testReadable(false, 'CoreStreams.Stream', new (CoreStreams.Stream)())
  testReadable(true, 'CoreStreams.Readable', new (CoreStreams.Readable)())
  testReadable(false, 'CoreStreams.Writable', new (CoreStreams.Writable)())
-@@ -96,19 +81,6 @@
+@@ -96,19 +81,6 @@ testReadable(true, 'CoreStreams.Duplex',
  testReadable(true, 'CoreStreams.Transform', new (CoreStreams.Transform)())
  testReadable(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
  
@@ -54,7 +56,7 @@ Last-Update: 2021-11-20
  testWritable(false, 'CoreStreams.Stream', new (CoreStreams.Stream)())
  testWritable(false, 'CoreStreams.Readable', new (CoreStreams.Readable)())
  testWritable(true, 'CoreStreams.Writable', new (CoreStreams.Writable)())
-@@ -116,19 +88,6 @@
+@@ -116,19 +88,6 @@ testWritable(true, 'CoreStreams.Duplex',
  testWritable(true, 'CoreStreams.Transform', new (CoreStreams.Transform)())
  testWritable(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
  
@@ -74,7 +76,7 @@ Last-Update: 2021-11-20
  testDuplex(false, 'CoreStreams.Stream', new (CoreStreams.Stream)())
  testDuplex(false, 'CoreStreams.Readable', new (CoreStreams.Readable)())
  testDuplex(false, 'CoreStreams.Writable', new (CoreStreams.Writable)())
-@@ -136,20 +95,7 @@
+@@ -136,20 +95,7 @@ testDuplex(true, 'CoreStreams.Duplex', n
  testDuplex(true, 'CoreStreams.Transform', new (CoreStreams.Transform)())
  testDuplex(true, 'CoreStreams.PassThrough', new (CoreStreams.PassThrough)())
  
diff --git a/debian/patches/series b/debian/patches/series
index 97b1072..30b8b39 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1 @@
-spelling.patch
 drop-old-tests.patch
diff --git a/debian/patches/spelling.patch b/debian/patches/spelling.patch
deleted file mode 100644
index 0417737..0000000
--- a/debian/patches/spelling.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Description: Fix Spelling Error
- Patched README.md to fix spelling licence/licenced > license/licensed
-Forwarded: https://github.com/rvagg/isstream/pull/5
-Author: Ross Gammon <rossgammon@mail.dk>
-Last-Update: 2015-12-30
-
---- node-isstream.orig/README.md
-+++ node-isstream/README.md
-@@ -63,4 +63,4 @@
- 
- ## License
- 
--**isStream** is Copyright (c) 2015 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licenced under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.
-+**isStream** is Copyright (c) 2015 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.
diff --git a/types-isstream/LICENSE b/types-isstream/LICENSE
deleted file mode 100644
index 4b1ad51..0000000
--- a/types-isstream/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-    MIT License
-
-    Copyright (c) Microsoft Corporation. All rights reserved.
-
-    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-isstream/README.md b/types-isstream/README.md
deleted file mode 100644
index 87c41fa..0000000
--- a/types-isstream/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# Installation
-> `npm install --save @types/isstream`
-
-# Summary
-This package contains type definitions for isstream (https://github.com/rvagg/isstream).
-
-# Details
-Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/isstream
-
-Additional Details
- * Last updated: Thu, 26 Sep 2019 23:06:55 GMT
- * Dependencies: none
- * Global values: none
-
-# Credits
-These definitions were written by Matthew Peveler <https://github.com/MasterOdin>.
diff --git a/types-isstream/index.d.ts b/types-isstream/index.d.ts
deleted file mode 100644
index 5ca966f..0000000
--- a/types-isstream/index.d.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-// Type definitions for isstream 0.1
-// Project: https://github.com/rvagg/isstream
-// Definitions by: Matthew Peveler <https://github.com/MasterOdin>
-// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
-
-declare function isStream(obj: any): boolean;
-declare namespace isStream {
-    function isReadable(obj: any): boolean;
-    function isWritable(obj: any): boolean;
-    function isDuplex(obj: any): boolean;
-}
-
-export = isStream;
diff --git a/types-isstream/package.json b/types-isstream/package.json
deleted file mode 100644
index ce7f176..0000000
--- a/types-isstream/package.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
-    "name": "@types/isstream",
-    "version": "0.1.0",
-    "description": "TypeScript definitions for isstream",
-    "license": "MIT",
-    "contributors": [
-        {
-            "name": "Matthew Peveler",
-            "url": "https://github.com/MasterOdin",
-            "githubUsername": "MasterOdin"
-        }
-    ],
-    "main": "",
-    "types": "index",
-    "repository": {
-        "type": "git",
-        "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
-        "directory": "types/isstream"
-    },
-    "scripts": {},
-    "dependencies": {},
-    "typesPublisherContentHash": "2117621cc069f51bd4f27fbdfa6d50dff45808d79c25df00ab953498fc3b5329",
-    "typeScriptVersion": "2.0"
-}
\ 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/isstream/index.d.ts
-rw-r--r--  root/root   /usr/share/nodejs/@types/isstream/package.json

Control files: lines which differ (wdiff format)

  • Provides: node-types-isstream (= 0.1.0)

More details

Full run details