Codebase list node-keypress / 58e5978
initial packaging Mike Gabriel 10 years ago
11 changed file(s) with 108 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 node-keypress (0.1.0-1) UNRELEASED; urgency=low
1
2 * Initial release. (Closes: #707556).
3
4 -- Mike Gabriel <sunweaver@debian.org> Tue, 07 May 2013 18:25:42 +0200
0 Source: node-keypress
1 Section: web
2 Priority: extra
3 Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
4 Uploaders:
5 Mike Gabriel <sunweaver@debian.org>,
6 Build-Depends:
7 debhelper (>= 8.0.0),
8 dh-buildinfo,
9 Standards-Version: 3.9.4
10 Homepage: https://github.com/TooTallNate/keypress
11 Vcs-Git: git://git.debian.org/collab-maint/node-keypress.git
12 Vcs-Browser: http://git.debian.org/?p=collab-maint/node-keypress.git
13
14 Package: node-keypress
15 Architecture: all
16 Depends:
17 ${misc:Depends},
18 nodejs (>= 0.6.19~dfsg-1-3~),
19 Description: Make any Node ReadableStream emit "keypress" events
20 Previous to Node v0.8.x, there was an undocumented "keypress" event that
21 process.stdin would emit when it was a TTY. Some people discovered this
22 hidden gem, and started using it in their own code.
23 .
24 In Node v0.8.x (and above), this "keypress" event does not get emitted by
25 default, but rather only when it is being used in conjunction with the
26 readline (or by extension, the repl) module.
27 .
28 This module is the exact logic from the node pre-v0.8.x releases ripped out
29 into its own module.
30 .
31 Bonus: Now with mouse support!
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: keypress
2 Upstream-Contact: Nathan Rajlich <nathan@tootallnate.net>
3 Source: https://github.com/TooTallNate/keypress
4
5 Files: *
6 Copyright:
7 2012, Nathan Rajlich <nathan@tootallnate.net>
8 License: MIT
9
10 Files: debian/*
11 Copyright:
12 2013, Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
13 License: MIT
14
15 License: MIT
16 Permission is hereby granted, free of charge, to any person obtaining a
17 copy of this software and associated documentation files (the "Software"),
18 to deal in the Software without restriction, including without limitation
19 the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 and/or sell copies of the Software, and to permit persons to whom the
21 Software is furnished to do so, subject to the following conditions:
22 .
23 The above copyright notice and this permission notice shall be included in
24 all copies or substantial portions of the Software.
25 .
26 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
29 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
32 DEALINGS IN THE SOFTWARE.
0 README.md
0 keypress.js usr/lib/nodejs/
0 Description: Fix typo in README.md
1 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
2 --- a/README.md
3 +++ b/README.md
4 @@ -8,7 +8,7 @@
5 gem, and started using it in their own code.
6
7 Now in Node `v0.8.x`, this `"keypress"` event does not get emitted by default,
8 -but rather only when it is being used in conjuction with the `readline` (or by
9 +but rather only when it is being used in conjunction with the `readline` (or by
10 extension, the `repl`) module.
11
12 This module is the exact logic from the node `v0.8.x` releases ripped out into its
0 001_fix-spelling-in-README-md.patch
0 #!/usr/bin/make -f
1 # -*- makefile -*-
2
3 # Uncomment this to turn on verbose mode.
4 #export DH_VERBOSE=1
5
6 %:
7 dh $@
8
9 override_dh_auto_install:
10 cp -av index.js keypress.js
11 dh_auto_install
12
13 override_dh_auto_clean:
14 rm -f keypress.js
15 dh_auto_clean
0 3.0 (quilt)
0 version=3
1 opts=filenamemangle=s/.*\/v?([\d\.-]+)\.tar\.gz/node-keypress-$1.tar.gz/ \
2 https://github.com/TooTallNate/keypress/tags .*/archive/v?([\d\.]+).tar.gz
3