[Pkg-octave-commit] [matlab2tikz] branch master updated (3f58c5b -> c7d16e0)
Sébastien Villemot
sebastien at debian.org
Fri Feb 19 21:39:15 UTC 2016
This is an automated email from the git hooks/post-receive script.
sebastien pushed a change to branch master
in repository matlab2tikz.
from 3f58c5b Debian release 0.4.7-1.
new 2c560f7 d/watch: update for new location.
new 9beb457 Imported Upstream version 1.0.0
new 07dd82f Merge tag 'upstream/1.0.0'
new c7d16e0 d/copyright: reflect upstream changes.
The 4 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:
.travis.yml | 10 +
AUTHORS | 1 -
AUTHORS.md | 42 +
CHANGELOG.md | 383 +
ChangeLog | 350 -
COPYING => LICENSE.md | 38 +-
Makefile | 21 -
README.md | 119 +-
THANKS | 44 -
debian/copyright | 16 +-
debian/watch | 2 +-
gallery/matlab2tikz-snapshot.png | Bin 34048 -> 0 bytes
logos/matlab2tikz.svg | 94 +
{tools => src}/cleanfigure.m | 181 +-
{tools => src}/figure2dot.m | 2 +-
src/{matlab2tikzInputParser.m => m2tInputParser.m} | 4 +-
src/matlab2tikz.m | 10320 ++++++++++---------
src/private/isAxis3D.m | 5 +
src/private/m2tUpdater.m | 242 +
src/updater.m | 142 -
test/README | 19 -
test/README.md | 91 +
test/codeReport.m | 268 +
test/data/converted/Makefile | 23 +
test/data/reference/Makefile | 19 +
test/makeLatexReport.m | 211 +
test/makeTravisReport.m | 73 +
test/matlab2tikz_acidtest.m | 376 -
test/myCount.dat | 24 -
test/pointReductionTest.m | 34 -
test/private/OSVersion.m | 16 +
test/private/VersionControlIdentifier.m | 46 +
test/private/calculateMD5Hash.m | 34 +
test/private/cleanFiles.m | 17 +
test/private/countNumberOfErrors.m | 16 +
test/private/emptyStage.m | 4 +
test/private/emptyStatus.m | 17 +
test/private/errorHandler.m | 41 +
test/private/errorHasOccurred.m | 16 +
test/private/execute_hash_stage.m | 34 +
test/private/execute_plot_stage.m | 45 +
test/private/execute_save_stage.m | 61 +
test/private/execute_tikz_stage.m | 26 +
test/private/execute_type_stage.m | 14 +
test/private/fillStruct.m | 10 +
test/private/getEnvironment.m | 25 +
test/private/getStagesFromStatus.m | 5 +
test/private/hashTableName.m | 55 +
test/private/initializeWorkingDirectory.m | 23 +
test/private/loadHashTable.m | 19 +
test/private/m2tstrjoin.m | 16 +
test/private/splitUnreliableTests.m | 7 +
test/private/testMatlab2tikz.m | 159 +
test/runMatlab2TikzTests.m | 32 +
test/saveHashTable.m | 37 +
test/suites/ACID.MATLAB.8.3.md5 | 98 +
test/suites/ACID.MATLAB.8.4.md5 | 98 +
test/suites/ACID.Octave.3.8.0.md5 | 76 +
test/{testfunctions.m => suites/ACID.m} | 1964 ++--
test/suites/issues.m | 43 +
test/suites/private/getEnvironment.m | 25 +
test/{ => suites/private}/herrorbar.m | 23 +-
test/suites/private/isEnvironment.m | 46 +
test/suites/private/isMATLAB.m | 4 +
test/suites/private/isOctave.m | 5 +
test/suites/private/isVersionBelow.m | 38 +
test/suites/private/versionCompare.m | 20 +
test/suites/testPatches.m | 121 +
test/suites/testSurfshader.m | 102 +
test/testGraphical.m | 47 +
test/testHeadless.m | 62 +
test/tex/Makefile | 22 +-
version-0.4.7 | 6 -
73 files changed, 9925 insertions(+), 6804 deletions(-)
create mode 100644 .travis.yml
delete mode 100644 AUTHORS
create mode 100644 AUTHORS.md
create mode 100644 CHANGELOG.md
delete mode 100644 ChangeLog
rename COPYING => LICENSE.md (61%)
delete mode 100644 Makefile
delete mode 100644 THANKS
delete mode 100644 gallery/matlab2tikz-snapshot.png
create mode 100644 logos/matlab2tikz.svg
rename {tools => src}/cleanfigure.m (72%)
rename {tools => src}/figure2dot.m (98%)
rename src/{matlab2tikzInputParser.m => m2tInputParser.m} (98%)
create mode 100644 src/private/isAxis3D.m
create mode 100644 src/private/m2tUpdater.m
delete mode 100644 src/updater.m
delete mode 100644 test/README
create mode 100644 test/README.md
create mode 100644 test/codeReport.m
create mode 100644 test/data/converted/Makefile
create mode 100644 test/data/reference/Makefile
create mode 100644 test/makeLatexReport.m
create mode 100644 test/makeTravisReport.m
delete mode 100644 test/matlab2tikz_acidtest.m
delete mode 100644 test/myCount.dat
delete mode 100644 test/pointReductionTest.m
create mode 100644 test/private/OSVersion.m
create mode 100644 test/private/VersionControlIdentifier.m
create mode 100644 test/private/calculateMD5Hash.m
create mode 100644 test/private/cleanFiles.m
create mode 100644 test/private/countNumberOfErrors.m
create mode 100644 test/private/emptyStage.m
create mode 100644 test/private/emptyStatus.m
create mode 100644 test/private/errorHandler.m
create mode 100644 test/private/errorHasOccurred.m
create mode 100644 test/private/execute_hash_stage.m
create mode 100644 test/private/execute_plot_stage.m
create mode 100644 test/private/execute_save_stage.m
create mode 100644 test/private/execute_tikz_stage.m
create mode 100644 test/private/execute_type_stage.m
create mode 100644 test/private/fillStruct.m
create mode 100644 test/private/getEnvironment.m
create mode 100644 test/private/getStagesFromStatus.m
create mode 100644 test/private/hashTableName.m
create mode 100644 test/private/initializeWorkingDirectory.m
create mode 100644 test/private/loadHashTable.m
create mode 100644 test/private/m2tstrjoin.m
create mode 100644 test/private/splitUnreliableTests.m
create mode 100644 test/private/testMatlab2tikz.m
create mode 100755 test/runMatlab2TikzTests.m
create mode 100644 test/saveHashTable.m
create mode 100644 test/suites/ACID.MATLAB.8.3.md5
create mode 100644 test/suites/ACID.MATLAB.8.4.md5
create mode 100644 test/suites/ACID.Octave.3.8.0.md5
rename test/{testfunctions.m => suites/ACID.m} (56%)
create mode 100644 test/suites/issues.m
create mode 100644 test/suites/private/getEnvironment.m
rename test/{ => suites/private}/herrorbar.m (83%)
create mode 100644 test/suites/private/isEnvironment.m
create mode 100644 test/suites/private/isMATLAB.m
create mode 100644 test/suites/private/isOctave.m
create mode 100644 test/suites/private/isVersionBelow.m
create mode 100644 test/suites/private/versionCompare.m
create mode 100644 test/suites/testPatches.m
create mode 100644 test/suites/testSurfshader.m
create mode 100644 test/testGraphical.m
create mode 100644 test/testHeadless.m
delete mode 100644 version-0.4.7
--
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/matlab2tikz.git
More information about the Pkg-octave-commit
mailing list