~ubuntu-branches/ubuntu/utopic/node-inherits/utopic

« back to all changes in this revision

Viewing changes to debian/control

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2013-08-15 14:57:25 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20130815145725-npt0afls2okmnli4
Tags: 2.0.0-1
* Change of upstream source.
* New upstream release.
* control:
  + bump Standards-Version to 3.9.4
  + canonicalize Vcs fields
  + add libjs-inherits package
  + update description to match new features
* copyright: license WTFPL2

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
Build-Depends:
7
7
 debhelper (>= 8.0.0)
8
8
 , dh-buildinfo
9
 
Standards-Version: 3.9.3
10
 
Homepage: https://github.com/kapouer/node-inherits
11
 
Vcs-Git: git://git.debian.org/collab-maint/node-inherits.git
12
 
Vcs-Browser: http://git.debian.org/?p=collab-maint/node-inherits.git;a=summary
 
9
Standards-Version: 3.9.4
 
10
Homepage: https://github.com/isaacs/inherits
 
11
Vcs-Git: git://anonscm.debian.org/collab-maint/node-inherits.git
 
12
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/node-inherits.git
13
13
 
14
14
Package: node-inherits
15
15
Architecture: all
16
16
Depends:
17
17
 ${misc:Depends}
18
18
 , nodejs
19
 
Description: Helper function to do classic inheritance in Node.js
20
 
 node-inherits is an implementation of trivial, obvious code
21
 
 that is nonetheless required by several Node.js modules.
22
 
 Those modules use 'inherits', the license of which is not clear
23
 
 enough to be called a free software license.
24
 
 This original rewrite allows node-inherits to propose an alternative
25
 
 with a free software license.
26
 
 .
27
 
 Node.js is  an event-based server-side javascript engine.
 
19
Description: Exposes inherits function from Node.js environment
 
20
 node-inherits exposes standard inherits implementation of Node.js util
 
21
 module, and allows bundlers such as browserify to not include full util
 
22
 package in client code.
 
23
 .
 
24
 It is recommended to use this module for all code that requires only
 
25
 the inherits function and that has a chance to run in a browser too.
 
26
 .
 
27
 This is the Node.js module.
 
28
 .
 
29
 Node.js is an event-based server-side javascript engine.
 
30
 
 
31
Package: libjs-inherits
 
32
Architecture: all
 
33
Depends: ${misc:Depends}
 
34
Description: Exposes inherits function from Node.js environment
 
35
 node-inherits exposes standard inherits implementation of Node.js util
 
36
 module, and allows bundlers such as browserify to not include full util
 
37
 package in client code.
 
38
 .
 
39
 It is recommended to use this module for all code that requires only
 
40
 the inherits function and that has a chance to run in a browser too.
 
41
 .
 
42
 This is the browser module.
 
43
 .
 
44
 Node.js is an event-based server-side javascript engine.