[DRE-commits] [ctioga2] branch master updated (9f63c7c -> 704a6f6)

Vincent Fourmond fourmond at moszumanska.debian.org
Tue Jan 6 20:31:10 UTC 2015


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

fourmond pushed a change to branch master
in repository ctioga2.

      from  9f63c7c   New upstream release
      adds  cb6d638   Imported Upstream version 0.11
       new  73fe27d   Merge tag 'upstream/0.11'
       new  704a6f6   New upstream release

The 2 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:
 Changelog                                          |  25 ++
 bin/ct2-make-movie                                 |  17 +
 bin/ctioga2                                        |  28 ++
 ctioga2.gemspec                                    |   2 +-
 debian/changelog                                   |   6 +
 elisp/ctioga2-mode.el                              |   9 +-
 lib/ctioga2/commands/commands.rb                   |   1 +
 lib/ctioga2/commands/doc/documentation-commands.rb |  13 +
 lib/ctioga2/commands/doc/help.rb                   |   5 +-
 lib/ctioga2/commands/doc/html.rb                   |  48 +++
 lib/ctioga2/commands/doc/introspection.rb          |   4 +-
 lib/ctioga2/commands/general-types.rb              |  10 +
 lib/ctioga2/commands/parsers/file.rb               |  25 +-
 lib/ctioga2/data/backends/backends.rb              |   3 +-
 .../data/backends/backends/{math.rb => smath.rb}   |  92 +++---
 lib/ctioga2/data/backends/backends/text.rb         |   1 +
 lib/ctioga2/data/dataset.rb                        |   2 +-
 lib/ctioga2/data/stack.rb                          |  16 +-
 lib/ctioga2/graphics/elements.rb                   |   2 +
 lib/ctioga2/graphics/elements/containers.rb        |   4 +-
 lib/ctioga2/graphics/elements/element.rb           | 199 +++++++++++-
 lib/ctioga2/graphics/elements/gradient-region.rb   |   7 +-
 lib/ctioga2/graphics/elements/histogram.rb         |   9 +-
 lib/ctioga2/graphics/elements/plot-elements.rb     |  88 +++++
 lib/ctioga2/graphics/elements/primitive.rb         |  44 ++-
 .../graphics/elements/redirecting-container.rb     |  25 +-
 lib/ctioga2/graphics/elements/region.rb            |  10 +-
 lib/ctioga2/graphics/elements/style-lists.rb       |   4 +-
 lib/ctioga2/graphics/elements/subplot.rb           |   6 +-
 lib/ctioga2/graphics/elements/tangent.rb           |  16 +-
 lib/ctioga2/graphics/generator.rb                  |  10 +
 lib/ctioga2/graphics/geometry.rb                   |  96 ++++++
 lib/ctioga2/graphics/legends.rb                    |   6 +-
 lib/ctioga2/graphics/legends/area.rb               |  16 +-
 lib/ctioga2/graphics/root.rb                       |  30 +-
 lib/ctioga2/graphics/styles.rb                     |   7 +-
 lib/ctioga2/graphics/styles/arrows.rb              |   5 +
 lib/ctioga2/graphics/styles/axes.rb                |   2 +-
 lib/ctioga2/graphics/styles/base.rb                | 109 ++++++-
 lib/ctioga2/graphics/styles/curve.rb               |   8 +
 lib/ctioga2/graphics/styles/drawable.rb            |  83 ++---
 lib/ctioga2/graphics/styles/factory.rb             |  46 +--
 lib/ctioga2/graphics/styles/fill.rb                | 268 ++++++++++++++++
 lib/ctioga2/graphics/styles/image.rb               |   2 +-
 lib/ctioga2/graphics/styles/plot.rb                | 136 +++++---
 lib/ctioga2/graphics/styles/sets.rb                |   3 +
 .../graphics/styles/{sheet.rb => styles.rb}        | 230 ++++---------
 lib/ctioga2/graphics/styles/stylesheet.rb          | 355 +++++++++++++++++++++
 lib/ctioga2/graphics/styles/texts.rb               |   6 +-
 lib/ctioga2/graphics/styles/ticks.rb               |  48 ++-
 lib/ctioga2/graphics/subplot-commands.rb           |  93 +++++-
 lib/ctioga2/graphics/types.rb                      |   2 +-
 lib/ctioga2/graphics/types/dimensions.rb           |  40 +++
 lib/ctioga2/graphics/types/grid.rb                 |  26 +-
 lib/ctioga2/graphics/types/point.rb                |   3 +-
 lib/ctioga2/log.rb                                 |   6 +-
 lib/ctioga2/metabuilder/types/styles.rb            |  18 +-
 lib/ctioga2/plotmaker.rb                           |   2 +
 lib/ctioga2/utils.rb                               |  27 +-
 lib/ctioga2/version.rb                             |   4 +-
 tests/axes.sh                                      |   9 +
 tests/backends.sh                                  |  11 +
 tests/command-files/loop.ct2                       |   5 +
 tests/compareoutputs                               |   7 +-
 tests/depth.sh                                     |   6 +
 tests/draw.sh                                      |  41 ++-
 tests/error-bars.sh                                |  17 +
 tests/errors.sh                                    |  11 +
 tests/fill.sh                                      |   5 +
 tests/gradients.sh                                 |  11 +-
 tests/grid.sh                                      |   8 +-
 tests/histograms.sh                                |   4 +-
 tests/insets.sh                                    |   6 +-
 tests/mess.sh                                      |   4 +-
 tests/plots.sh                                     |   9 +
 tests/regions.sh                                   |  17 +-
 tests/styles.ctss                                  |  26 ++
 tests/styles.sh                                    |  47 +++
 tests/test-include.sh                              |  15 +-
 79 files changed, 2172 insertions(+), 495 deletions(-)
 copy lib/ctioga2/data/backends/backends/{math.rb => smath.rb} (54%)
 create mode 100644 lib/ctioga2/graphics/elements/plot-elements.rb
 create mode 100644 lib/ctioga2/graphics/geometry.rb
 create mode 100644 lib/ctioga2/graphics/styles/fill.rb
 rename lib/ctioga2/graphics/styles/{sheet.rb => styles.rb} (57%)
 create mode 100644 lib/ctioga2/graphics/styles/stylesheet.rb
 create mode 100755 tests/backends.sh
 create mode 100644 tests/command-files/loop.ct2
 create mode 100755 tests/error-bars.sh
 create mode 100755 tests/errors.sh
 create mode 100644 tests/styles.ctss
 create mode 100755 tests/styles.sh

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ctioga2.git



More information about the Pkg-ruby-extras-commits mailing list