[lightspark] branch master updated (af675ad -> 650ce20)

Gabriele Giacone gg0-guest at moszumanska.debian.org
Tue May 12 19:02:50 UTC 2015


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

gg0-guest pushed a change to branch master
in repository lightspark.

      from  af675ad   lightspark 0.7.2-6 Debian release.
       new  7dae5fe   Add get-orig-source target.
       new  29ef636   New upstream snapshot.
       new  0be6438   Imported Upstream version 0.7.2+git20150512
       new  fca2fd6   Merge tag 'upstream/0.7.2+git20150512'
       new  308791d   Update patches.
       new  742be92   Add libedit-dev B-D.
       new  df474b0   Bump Stds-Ver to 3.9.6, no changes.
       new  650ce20   Release.

The 8 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:
 CMakeLists.txt                                     |   79 +-
 ChangeLog                                          |   10 +
 README                                             |   21 +-
 conf/FindFFMpeg.cmake                              |    6 +-
 conf/FindFreetype.cmake                            |    6 +-
 conf/FindLLVM.cmake                                |   33 +-
 debian/changelog                                   |   11 +
 debian/control                                     |    3 +-
 debian/patches/assert.patch                        |   21 +
 debian/patches/series                              |    9 +-
 debian/rules                                       |   11 +
 docs/man/lightspark.1                              |   28 +-
 src/CMakeLists.txt                                 |   27 +
 src/allclasses.cpp                                 |   30 +
 src/allclasses.h                                   |   72 +
 src/asobject.cpp                                   |  461 ++++-
 src/asobject.h                                     |   66 +-
 src/backends/decoder.cpp                           |  193 +-
 src/backends/decoder.h                             |   26 +-
 src/backends/graphics.cpp                          |   92 +-
 src/backends/graphics.h                            |   28 +-
 src/backends/input.cpp                             |   15 +
 src/backends/input.h                               |    1 +
 src/backends/netutils.cpp                          |  629 +-----
 src/backends/netutils.h                            |  125 +-
 src/backends/rendering.cpp                         |    6 +-
 src/backends/rtmputils.cpp                         |    6 +-
 src/backends/rtmputils.h                           |    3 +-
 src/backends/security.cpp                          |    9 +-
 src/backends/streamcache.cpp                       |  499 +++++
 src/backends/streamcache.h                         |  197 ++
 src/backends/urlutils.cpp                          |  255 ++-
 src/backends/urlutils.h                            |   20 +-
 src/backends/xml_support.cpp                       |   83 +-
 src/backends/xml_support.h                         |    8 +-
 src/compat.h                                       |    1 +
 src/main.cpp                                       |    8 +-
 src/parsing/amf3_generator.cpp                     |  165 +-
 src/parsing/amf3_generator.h                       |   32 +
 src/parsing/tags.cpp                               |  101 +-
 src/parsing/tags.h                                 |   29 +-
 src/parsing/tags_stub.cpp                          |    6 -
 src/platforms/engineutils.cpp                      |   30 +
 src/platforms/engineutils.h                        |   11 +-
 src/plugin/npscriptobject.cpp                      |    7 +-
 src/plugin/plugin.cpp                              |   87 +-
 src/plugin/plugin.h                                |   12 +-
 src/scripting/abc.cpp                              |  289 ++-
 src/scripting/abc.h                                |   44 +-
 src/scripting/abc_codesynt.cpp                     |   25 +-
 src/scripting/abc_fast_interpreter.cpp             |   87 +-
 src/scripting/abc_interpreter.cpp                  |  103 +-
 src/scripting/abc_opcodes.cpp                      |  429 ++--
 src/scripting/abc_optimizer.cpp                    |    6 +-
 src/scripting/abctypes.h                           |    5 +-
 src/scripting/argconv.h                            |    8 +-
 src/scripting/class.cpp                            |   30 +-
 src/scripting/class.h                              |  126 +-
 .../flash/accessibility/flashaccessibility.cpp     |   42 +-
 .../flash/accessibility/flashaccessibility.h       |   19 +-
 src/scripting/flash/concurrent/Condition.cpp       |   81 +
 .../URLRequestHeader.h => concurrent/Condition.h}  |   26 +-
 .../Mutex.cpp}                                     |   45 +-
 .../{net/URLRequestHeader.h => concurrent/Mutex.h} |   29 +-
 src/scripting/flash/desktop/flashdesktop.cpp       |    5 +-
 src/scripting/flash/display/BitmapData.cpp         |  137 +-
 src/scripting/flash/display/BitmapData.h           |    3 +
 src/scripting/flash/display/DisplayObject.cpp      |   47 +-
 src/scripting/flash/display/DisplayObject.h        |    5 +-
 src/scripting/flash/display/Graphics.cpp           |  923 +++++++++
 src/scripting/flash/display/Graphics.h             |  103 +
 src/scripting/flash/display/GraphicsBitmapFill.cpp |   70 +
 .../GraphicsBitmapFill.h}                          |   27 +-
 .../GraphicsEndFill.cpp}                           |   32 +-
 .../flashdesktop.h => display/GraphicsEndFill.h}   |   21 +-
 .../flash/display/GraphicsGradientFill.cpp         |   96 +
 src/scripting/flash/display/GraphicsGradientFill.h |   55 +
 src/scripting/flash/display/GraphicsPath.cpp       |  173 ++
 .../flashdesktop.h => display/GraphicsPath.h}      |   33 +-
 src/scripting/flash/display/GraphicsShaderFill.cpp |   73 +
 .../GraphicsShaderFill.h}                          |   26 +-
 src/scripting/flash/display/GraphicsSolidFill.cpp  |   63 +
 .../flashdesktop.h => display/GraphicsSolidFill.h} |   22 +-
 src/scripting/flash/display/GraphicsStroke.cpp     |  109 +
 .../flashdesktop.h => display/GraphicsStroke.h}    |   29 +-
 .../flash/display/GraphicsTrianglePath.cpp         |   74 +
 .../GraphicsTrianglePath.h}                        |   26 +-
 .../display/{IBitmapDrawable.h => IGraphicsData.h} |   19 +-
 .../display/{IBitmapDrawable.h => IGraphicsFill.h} |   17 +-
 .../display/{IBitmapDrawable.h => IGraphicsPath.h} |   12 +-
 .../{IBitmapDrawable.h => IGraphicsStroke.h}       |   12 +-
 src/scripting/flash/display/TokenContainer.cpp     |   23 +-
 src/scripting/flash/display/TokenContainer.h       |    4 +-
 src/scripting/flash/display/flashdisplay.cpp       | 1006 +++------
 src/scripting/flash/display/flashdisplay.h         |  101 +-
 src/scripting/flash/errors/flasherrors.cpp         |   21 +-
 src/scripting/flash/events/flashevents.cpp         |  238 ++-
 src/scripting/flash/events/flashevents.h           |   76 +-
 src/scripting/flash/external/ExternalInterface.cpp |    8 +-
 .../flash/filesystem/flashfilesystem.cpp}          |   28 +-
 .../flashfilesystem.h}                             |   20 +-
 src/scripting/flash/filters/flashfilters.cpp       |  321 ++-
 src/scripting/flash/filters/flashfilters.h         |  111 +-
 src/scripting/flash/geom/flashgeom.cpp             |   46 +-
 src/scripting/flash/geom/flashgeom.h               |   23 +-
 src/scripting/flash/media/flashmedia.cpp           |  151 +-
 src/scripting/flash/media/flashmedia.h             |   34 +-
 .../NetStreamPlayOptions.cpp}                      |   41 +-
 .../flashdesktop.h => net/NetStreamPlayOptions.h}  |   27 +-
 .../NetStreamPlayTransitions.cpp}                  |   37 +-
 .../NetStreamPlayTransitions.h}                    |   19 +-
 src/scripting/flash/net/URLRequestHeader.cpp       |    3 +-
 src/scripting/flash/net/URLStream.cpp              |   12 +-
 src/scripting/flash/net/URLStream.h                |    1 +
 src/scripting/flash/net/XMLSocket.cpp              |    3 +-
 src/scripting/flash/net/flashnet.cpp               |  369 +++-
 src/scripting/flash/net/flashnet.h                 |   65 +-
 src/scripting/flash/printing/flashprinting.cpp     |   69 +
 .../flashprinting.h}                               |   27 +-
 src/scripting/flash/sensors/flashsensors.cpp       |    3 +-
 src/scripting/flash/sensors/flashsensors.h         |    2 +-
 src/scripting/flash/system/flashsystem.cpp         |  139 +-
 src/scripting/flash/system/flashsystem.h           |   24 +-
 src/scripting/flash/text/flashtext.cpp             |  629 +++++-
 src/scripting/flash/text/flashtext.h               |   89 +-
 src/scripting/flash/text/flashtextengine.cpp       |  333 ++-
 src/scripting/flash/text/flashtextengine.h         |  123 +-
 .../flashaccessibility.cpp => ui/ContextMenu.cpp}  |   35 +-
 .../{desktop/flashdesktop.h => ui/ContextMenu.h}   |   24 +-
 src/scripting/flash/ui/ContextMenuBuiltInItems.cpp |   57 +
 .../Math.h => flash/ui/ContextMenuBuiltInItems.h}  |   42 +-
 .../IBitmapDrawable.cpp => ui/ContextMenuItem.cpp} |   23 +-
 .../flashdesktop.h => ui/ContextMenuItem.h}        |   19 +-
 src/scripting/flash/ui/Keyboard.cpp                |    9 +-
 src/scripting/flash/ui/Mouse.cpp                   |   75 +
 .../rtmputils.h => scripting/flash/ui/Mouse.h}     |   28 +-
 .../flash/utils/{flashutils.cpp => ByteArray.cpp}  | 1085 ++--------
 src/scripting/flash/utils/ByteArray.h              |  156 ++
 src/scripting/flash/utils/Dictionary.cpp           |  344 ++++
 src/scripting/flash/utils/Dictionary.h             |   64 +
 src/scripting/flash/utils/IntervalManager.cpp      |  106 +
 .../flash/utils/IntervalManager.h}                 |   39 +-
 src/scripting/flash/utils/IntervalRunner.cpp       |   72 +
 .../flash/utils/IntervalRunner.h}                  |   49 +-
 src/scripting/flash/utils/Proxy.cpp                |  251 +++
 src/scripting/flash/utils/Proxy.h                  |   61 +
 src/scripting/flash/utils/Timer.cpp                |  185 ++
 .../{toplevel/UInteger.h => flash/utils/Timer.h}   |   60 +-
 src/scripting/flash/utils/flashutils.cpp           | 1892 +----------------
 src/scripting/flash/utils/flashutils.h             |  243 +--
 src/scripting/flash/xml/flashxml.cpp               |   10 +-
 src/scripting/toplevel/ASString.cpp                |  119 +-
 src/scripting/toplevel/ASString.h                  |    7 +
 src/scripting/toplevel/Array.cpp                   |  370 +++-
 src/scripting/toplevel/Array.h                     |   30 +-
 src/scripting/toplevel/Boolean.cpp                 |   22 +-
 src/scripting/toplevel/Date.cpp                    |   28 +-
 src/scripting/toplevel/Date.h                      |    4 +
 src/scripting/toplevel/Error.cpp                   |   49 +-
 src/scripting/toplevel/Integer.cpp                 |   65 +-
 src/scripting/toplevel/Integer.h                   |    3 +
 src/scripting/toplevel/JSON.cpp                    |  774 +++++++
 src/scripting/toplevel/JSON.h                      |   51 +
 src/scripting/toplevel/Math.cpp                    |    4 +-
 src/scripting/toplevel/Number.cpp                  |  227 +-
 src/scripting/toplevel/Number.h                    |    9 +-
 src/scripting/toplevel/RegExp.cpp                  |   12 +-
 src/scripting/toplevel/UInteger.cpp                |   54 +-
 src/scripting/toplevel/UInteger.h                  |    3 +
 src/scripting/toplevel/Vector.cpp                  |  148 +-
 src/scripting/toplevel/Vector.h                    |   26 +-
 src/scripting/toplevel/XML.cpp                     | 2164 ++++++++++++++------
 src/scripting/toplevel/XML.h                       |  103 +-
 src/scripting/toplevel/XMLList.cpp                 |  633 ++++--
 src/scripting/toplevel/XMLList.h                   |   39 +-
 src/scripting/toplevel/toplevel.cpp                |  281 ++-
 src/scripting/toplevel/toplevel.h                  |   66 +-
 src/swf.cpp                                        |   58 +-
 src/swf.h                                          |    3 +
 src/swftypes.cpp                                   |   73 +-
 src/swftypes.h                                     |   25 +-
 src/threading.cpp                                  |   27 +
 src/threading.h                                    |   10 +
 src/tiny_string.cpp                                |  398 ++++
 src/tiny_string.h                                  |  353 +---
 tests/encodeURI_test.mxml                          |   67 +
 tests/make-tamarin                                 |  121 +-
 tests/methodNamespace_test.mxml                    |  141 ++
 tests/quit.as                                      |    2 +
 tests/tests                                        |  109 +-
 tools/langref_parser                               |   13 +-
 tools/mergeABCtoSWF                                |  134 ++
 tools/pygil                                        |   24 +-
 193 files changed, 15767 insertions(+), 7421 deletions(-)
 create mode 100644 debian/patches/assert.patch
 create mode 100644 src/backends/streamcache.cpp
 create mode 100644 src/backends/streamcache.h
 create mode 100644 src/scripting/flash/concurrent/Condition.cpp
 copy src/scripting/flash/{net/URLRequestHeader.h => concurrent/Condition.h} (69%)
 copy src/scripting/flash/{accessibility/flashaccessibility.cpp => concurrent/Mutex.cpp} (53%)
 copy src/scripting/flash/{net/URLRequestHeader.h => concurrent/Mutex.h} (69%)
 create mode 100644 src/scripting/flash/display/Graphics.cpp
 create mode 100644 src/scripting/flash/display/Graphics.h
 create mode 100644 src/scripting/flash/display/GraphicsBitmapFill.cpp
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsBitmapFill.h} (57%)
 copy src/scripting/flash/{sensors/flashsensors.cpp => display/GraphicsEndFill.cpp} (58%)
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsEndFill.h} (64%)
 create mode 100644 src/scripting/flash/display/GraphicsGradientFill.cpp
 create mode 100644 src/scripting/flash/display/GraphicsGradientFill.h
 create mode 100644 src/scripting/flash/display/GraphicsPath.cpp
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsPath.h} (55%)
 create mode 100644 src/scripting/flash/display/GraphicsShaderFill.cpp
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsShaderFill.h} (59%)
 create mode 100644 src/scripting/flash/display/GraphicsSolidFill.cpp
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsSolidFill.h} (62%)
 create mode 100644 src/scripting/flash/display/GraphicsStroke.cpp
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsStroke.h} (52%)
 create mode 100644 src/scripting/flash/display/GraphicsTrianglePath.cpp
 copy src/scripting/flash/{desktop/flashdesktop.h => display/GraphicsTrianglePath.h} (57%)
 copy src/scripting/flash/display/{IBitmapDrawable.h => IGraphicsData.h} (65%)
 copy src/scripting/flash/display/{IBitmapDrawable.h => IGraphicsFill.h} (71%)
 copy src/scripting/flash/display/{IBitmapDrawable.h => IGraphicsPath.h} (76%)
 copy src/scripting/flash/display/{IBitmapDrawable.h => IGraphicsStroke.h} (76%)
 copy src/{memory_support.cpp => scripting/flash/filesystem/flashfilesystem.cpp} (65%)
 copy src/scripting/flash/{net/URLRequestHeader.h => filesystem/flashfilesystem.h} (74%)
 copy src/scripting/flash/{accessibility/flashaccessibility.cpp => net/NetStreamPlayOptions.cpp} (50%)
 copy src/scripting/flash/{desktop/flashdesktop.h => net/NetStreamPlayOptions.h} (66%)
 copy src/scripting/flash/{accessibility/flashaccessibility.cpp => net/NetStreamPlayTransitions.cpp} (51%)
 copy src/scripting/flash/{display/IBitmapDrawable.cpp => net/NetStreamPlayTransitions.h} (75%)
 create mode 100644 src/scripting/flash/printing/flashprinting.cpp
 copy src/scripting/flash/{accessibility/flashaccessibility.h => printing/flashprinting.h} (67%)
 copy src/scripting/flash/{accessibility/flashaccessibility.cpp => ui/ContextMenu.cpp} (51%)
 copy src/scripting/flash/{desktop/flashdesktop.h => ui/ContextMenu.h} (69%)
 create mode 100644 src/scripting/flash/ui/ContextMenuBuiltInItems.cpp
 copy src/scripting/{toplevel/Math.h => flash/ui/ContextMenuBuiltInItems.h} (61%)
 copy src/scripting/flash/{display/IBitmapDrawable.cpp => ui/ContextMenuItem.cpp} (66%)
 copy src/scripting/flash/{desktop/flashdesktop.h => ui/ContextMenuItem.h} (70%)
 create mode 100644 src/scripting/flash/ui/Mouse.cpp
 copy src/{backends/rtmputils.h => scripting/flash/ui/Mouse.h} (67%)
 copy src/scripting/flash/utils/{flashutils.cpp => ByteArray.cpp} (52%)
 create mode 100644 src/scripting/flash/utils/ByteArray.h
 create mode 100644 src/scripting/flash/utils/Dictionary.cpp
 create mode 100644 src/scripting/flash/utils/Dictionary.h
 create mode 100644 src/scripting/flash/utils/IntervalManager.cpp
 copy src/{thread_pool.h => scripting/flash/utils/IntervalManager.h} (58%)
 create mode 100644 src/scripting/flash/utils/IntervalRunner.cpp
 copy src/{thread_pool.h => scripting/flash/utils/IntervalRunner.h} (56%)
 create mode 100644 src/scripting/flash/utils/Proxy.cpp
 create mode 100644 src/scripting/flash/utils/Proxy.h
 create mode 100644 src/scripting/flash/utils/Timer.cpp
 copy src/scripting/{toplevel/UInteger.h => flash/utils/Timer.h} (54%)
 create mode 100644 src/scripting/toplevel/JSON.cpp
 create mode 100644 src/scripting/toplevel/JSON.h
 create mode 100644 tests/methodNamespace_test.mxml
 create mode 100644 tests/quit.as
 create mode 100755 tools/mergeABCtoSWF

-- 
Alioth's hooks/post-receive on /srv/git.debian.org/git/pkg-flash/lightspark.git



More information about the pkg-flash-devel mailing list