[Pkg-javascript-commits] [node-stylus] branch master updated (6548307 -> 400e2d9)

Andrew Kelley andrewrk-guest at moszumanska.debian.org
Thu Jul 31 01:28:27 UTC 2014


This is an automated email from the git hooks/post-receive script.

andrewrk-guest pushed a change to branch master
in repository node-stylus.

      from  6548307   add autopkgtest
       new  06b4767   cleanup debian/rules
       new  7425a75   simpler test control file
       new  e3c34ce   changelog: bump version number
       new  2895980   Imported Upstream version 0.47.3
       new  734c93d   Merge tag 'upstream/0.47.3'
       new  25ab846   fix copyright holder name
       new  ddce133   add rule for installing changelog
       new  ee28965   fix shebang line on binary
       new  0e01d62   manpages
       new  198fc56   dfsg to exclude some copyrighted images
       new  3615764   Imported Upstream version 0.47.3+dfsg
       new  400e2d9   Merge tag 'upstream/0.47.3+dfsg'

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 History.md                          |  41 ++++
 bin/stylus                          |   6 +-
 debian/changelog                    |   5 +-
 debian/control                      |   1 +
 debian/copyright                    |   6 +-
 debian/manpages                     |   1 +
 debian/patches/nodejs-shebang.patch |  13 ++
 debian/patches/series               |   1 +
 debian/rules                        |  10 +-
 debian/tests/control                |   4 +-
 debian/tests/require                |   3 -
 debian/watch                        |   2 +-
 docs/bifs.md                        | 118 ++++++++--
 docs/functions.md                   |  37 ++-
 docs/hashes.md                      |   2 +-
 docs/keyframes.md                   |   4 +-
 examples/images/gopher.jpg          | Bin 50615 -> 0 bytes
 examples/images/gradient.svg        |   9 -
 examples/images/jesus.gif           | Bin 40716 -> 0 bytes
 examples/images/sprite.gif          | Bin 935 -> 0 bytes
 lib/functions/index.js              | 440 ++++++++++++++++++++++++++++++++++--
 lib/functions/index.styl            |  12 +-
 lib/functions/url.js                |   2 +-
 lib/lexer.js                        |  44 +++-
 lib/middleware.js                   |   5 +-
 lib/nodes/block.js                  |   5 +-
 lib/nodes/ident.js                  |   2 +
 lib/nodes/literal.js                |   5 +-
 lib/nodes/media.js                  |   5 +-
 lib/parser.js                       | 104 ++++-----
 lib/visitor/compiler.js             |   4 +-
 lib/visitor/evaluator.js            |   2 +-
 lib/visitor/normalizer.js           |  14 +-
 package.json                        |  19 +-
 test/cases/bifs.blend.css           |  15 ++
 test/cases/bifs.blend.styl          |  14 ++
 test/cases/bifs.components.css      | 123 +++++++++-
 test/cases/bifs.components.styl     | 138 ++++++++++-
 test/cases/bifs.contrast.css        |   9 +
 test/cases/bifs.contrast.styl       |   8 +
 test/cases/bifs.hsla.css            |   7 +
 test/cases/bifs.hsla.styl           |   6 +
 test/cases/bifs.invert.css          |   1 +
 test/cases/bifs.invert.styl         |   1 +
 test/cases/bifs.list-separator.css  |   5 +
 test/cases/bifs.list-separator.styl |   7 +
 test/cases/bifs.luminosity.css      |   7 +
 test/cases/bifs.luminosity.styl     |   6 +
 test/cases/bifs.transparentify.css  |  42 ++++
 test/cases/bifs.transparentify.styl |  41 ++++
 test/cases/bifs.url.css             |   3 +-
 test/cases/bifs.url.styl            |   3 +-
 test/cases/coercion.css             |   4 +-
 test/cases/coercion.styl            |   5 +-
 test/cases/functions.anonymous.css  |   3 +
 test/cases/functions.anonymous.styl |  11 +
 test/cases/keyframes.css            |   8 +
 test/cases/keyframes.styl           |  14 ++
 test/cases/literal.css              |  16 --
 test/cases/literal.styl             |  29 +--
 test/cases/media.complex.css        |   5 +
 test/cases/media.complex.styl       |   6 +
 test/cases/multiline.css            |   5 +-
 test/cases/multiline.styl           |  26 ++-
 test/cases/parse.css                |  37 +++
 test/cases/parse.styl               |  20 ++
 test/cases/regression.1584.css      |   7 +
 test/cases/regression.1584.styl     |  15 ++
 test/cases/regression.1623.css      |  15 ++
 test/cases/regression.1623.styl     |  47 ++++
 test/cases/selectors.css            |   6 +
 test/cases/selectors.styl           |   6 +
 72 files changed, 1422 insertions(+), 225 deletions(-)
 create mode 100644 debian/manpages
 create mode 100644 debian/patches/nodejs-shebang.patch
 delete mode 100644 debian/tests/require
 delete mode 100644 examples/images/gopher.jpg
 delete mode 100644 examples/images/gradient.svg
 delete mode 100644 examples/images/jesus.gif
 delete mode 100644 examples/images/sprite.gif
 create mode 100644 test/cases/bifs.blend.css
 create mode 100644 test/cases/bifs.blend.styl
 create mode 100644 test/cases/bifs.contrast.css
 create mode 100644 test/cases/bifs.contrast.styl
 create mode 100644 test/cases/bifs.hsla.css
 create mode 100644 test/cases/bifs.hsla.styl
 create mode 100644 test/cases/bifs.list-separator.css
 create mode 100644 test/cases/bifs.list-separator.styl
 create mode 100644 test/cases/bifs.luminosity.css
 create mode 100644 test/cases/bifs.luminosity.styl
 create mode 100644 test/cases/bifs.transparentify.css
 create mode 100644 test/cases/bifs.transparentify.styl
 create mode 100644 test/cases/functions.anonymous.css
 create mode 100644 test/cases/functions.anonymous.styl
 create mode 100644 test/cases/regression.1584.css
 create mode 100644 test/cases/regression.1584.styl
 create mode 100644 test/cases/regression.1623.css
 create mode 100644 test/cases/regression.1623.styl

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-stylus.git



More information about the Pkg-javascript-commits mailing list