[mapbox-variant] branch master updated (8cf258b -> dd55785)

Sebastiaan Couwenberg sebastic at moszumanska.debian.org
Mon Feb 29 06:58:56 UTC 2016


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

sebastic pushed a change to branch master
in repository mapbox-variant.

      from  8cf258b   Set distribution to unstable.
       new  cc27b38   Add Catch-1.3.3 to missing-sources.
       new  dd55785   Set distribution to unstable.

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:
 debian/changelog                                   |     6 +
 debian/copyright                                   |     7 +
 debian/missing-sources/Catch-1.3.3/.gitattributes  |    11 +
 debian/missing-sources/Catch-1.3.3/.gitignore      |    22 +
 debian/missing-sources/Catch-1.3.3/.travis.yml     |   163 +
 .../missing-sources/Catch-1.3.3/LICENSE_1_0.txt    |     0
 debian/missing-sources/Catch-1.3.3/README.md       |    22 +
 .../Catch-1.3.3/catch-logo-small.png               |   Bin 0 -> 51470 bytes
 debian/missing-sources/Catch-1.3.3/docs/Readme.md  |    20 +
 .../missing-sources/Catch-1.3.3/docs/assertions.md |    82 +
 .../Catch-1.3.3/docs/build-systems.md              |    86 +
 .../Catch-1.3.3/docs/command-line.md               |   220 +
 .../Catch-1.3.3/docs/configuration.md              |    73 +
 .../Catch-1.3.3/docs/contributing.md               |    23 +
 debian/missing-sources/Catch-1.3.3/docs/logging.md |    52 +
 .../missing-sources/Catch-1.3.3/docs/own-main.md   |    68 +
 .../Catch-1.3.3/docs/slow-compiles.md              |    22 +
 .../Catch-1.3.3/docs/test-cases-and-sections.md    |    86 +
 .../Catch-1.3.3/docs/test-fixtures.md              |    32 +
 .../missing-sources/Catch-1.3.3/docs/tostring.md   |    70 +
 .../missing-sources/Catch-1.3.3/docs/tutorial.md   |   249 +
 .../missing-sources/Catch-1.3.3/docs/why-catch.md  |    42 +
 .../missing-sources/Catch-1.3.3/include/catch.hpp  |   213 +
 .../Catch-1.3.3/include/catch_session.hpp          |   219 +
 .../Catch-1.3.3/include/catch_with_main.hpp        |    14 +
 .../Catch-1.3.3/include/external/clara.h           |   863 ++
 .../Catch-1.3.3/include/external/tbc_text_format.h |   153 +
 .../Catch-1.3.3/include/internal/catch_approx.hpp  |    91 +
 .../include/internal/catch_assertionresult.h       |    71 +
 .../include/internal/catch_assertionresult.hpp     |    91 +
 .../Catch-1.3.3/include/internal/catch_capture.hpp |   147 +
 .../Catch-1.3.3/include/internal/catch_clara.h     |    32 +
 .../include/internal/catch_commandline.hpp         |   187 +
 .../Catch-1.3.3/include/internal/catch_common.h    |   141 +
 .../Catch-1.3.3/include/internal/catch_common.hpp  |   111 +
 .../include/internal/catch_compiler_capabilities.h |   221 +
 .../Catch-1.3.3/include/internal/catch_config.hpp  |   160 +
 .../include/internal/catch_console_colour.hpp      |    67 +
 .../include/internal/catch_console_colour_impl.hpp |   182 +
 .../Catch-1.3.3/include/internal/catch_context.h   |    53 +
 .../include/internal/catch_context_impl.hpp        |   104 +
 .../Catch-1.3.3/include/internal/catch_debugger.h  |    49 +
 .../include/internal/catch_debugger.hpp            |   100 +
 .../include/internal/catch_default_main.hpp        |    38 +
 .../include/internal/catch_evaluate.hpp            |   218 +
 .../catch_exception_translator_registry.hpp        |    73 +
 .../include/internal/catch_expression_lhs.hpp      |   105 +
 .../include/internal/catch_fatal_condition.hpp     |    85 +
 .../include/internal/catch_generators.hpp          |   190 +
 .../include/internal/catch_generators_impl.hpp     |    86 +
 .../Catch-1.3.3/include/internal/catch_impl.hpp    |   113 +
 .../include/internal/catch_interfaces_capture.h    |    47 +
 .../include/internal/catch_interfaces_config.h     |    63 +
 .../include/internal/catch_interfaces_exception.h  |    74 +
 .../include/internal/catch_interfaces_generators.h |    32 +
 .../internal/catch_interfaces_registry_hub.h       |    47 +
 .../include/internal/catch_interfaces_reporter.h   |   273 +
 .../include/internal/catch_interfaces_runner.h     |    20 +
 .../internal/catch_interfaces_tag_alias_registry.h |    26 +
 .../include/internal/catch_interfaces_testcase.h   |    40 +
 .../internal/catch_legacy_reporter_adapter.h       |    60 +
 .../internal/catch_legacy_reporter_adapter.hpp     |    84 +
 .../Catch-1.3.3/include/internal/catch_list.hpp    |   176 +
 .../include/internal/catch_matchers.hpp            |   326 +
 .../Catch-1.3.3/include/internal/catch_message.h   |    66 +
 .../Catch-1.3.3/include/internal/catch_message.hpp |    47 +
 .../internal/catch_notimplemented_exception.h      |    36 +
 .../internal/catch_notimplemented_exception.hpp    |    30 +
 .../Catch-1.3.3/include/internal/catch_objc.hpp    |   203 +
 .../include/internal/catch_objc_arc.hpp            |    51 +
 .../Catch-1.3.3/include/internal/catch_option.hpp  |    75 +
 .../Catch-1.3.3/include/internal/catch_platform.h  |    20 +
 .../Catch-1.3.3/include/internal/catch_ptr.hpp     |    93 +
 .../include/internal/catch_reenable_warnings.h     |    21 +
 .../include/internal/catch_registry_hub.hpp        |    86 +
 .../include/internal/catch_reporter_registrars.hpp |    98 +
 .../include/internal/catch_reporter_registry.hpp   |    50 +
 .../include/internal/catch_result_builder.h        |   111 +
 .../include/internal/catch_result_builder.hpp      |   161 +
 .../include/internal/catch_result_type.h           |    61 +
 .../include/internal/catch_run_context.hpp         |   359 +
 .../Catch-1.3.3/include/internal/catch_section.h   |    46 +
 .../Catch-1.3.3/include/internal/catch_section.hpp |    52 +
 .../include/internal/catch_section_info.h          |    39 +
 .../include/internal/catch_section_info.hpp        |   113 +
 .../Catch-1.3.3/include/internal/catch_stream.h    |    63 +
 .../Catch-1.3.3/include/internal/catch_stream.hpp  |   109 +
 .../Catch-1.3.3/include/internal/catch_streambuf.h |    23 +
 .../include/internal/catch_suppress_warnings.h     |    29 +
 .../Catch-1.3.3/include/internal/catch_tag_alias.h |    32 +
 .../include/internal/catch_tag_alias_registry.h    |    31 +
 .../include/internal/catch_tag_alias_registry.hpp  |    83 +
 .../include/internal/catch_test_case_info.h        |    92 +
 .../include/internal/catch_test_case_info.hpp      |   201 +
 .../internal/catch_test_case_registry_impl.hpp     |   193 +
 .../include/internal/catch_test_case_tracker.hpp   |   316 +
 .../include/internal/catch_test_registry.hpp       |   137 +
 .../include/internal/catch_test_spec.hpp           |    97 +
 .../include/internal/catch_test_spec_parser.hpp    |   116 +
 .../Catch-1.3.3/include/internal/catch_text.h      |    24 +
 .../Catch-1.3.3/include/internal/catch_timer.h     |    35 +
 .../Catch-1.3.3/include/internal/catch_timer.hpp   |    63 +
 .../Catch-1.3.3/include/internal/catch_tostring.h  |   269 +
 .../include/internal/catch_tostring.hpp            |   203 +
 .../Catch-1.3.3/include/internal/catch_totals.hpp  |    78 +
 .../Catch-1.3.3/include/internal/catch_version.h   |    38 +
 .../Catch-1.3.3/include/internal/catch_version.hpp |    44 +
 .../include/internal/catch_wildcard_pattern.hpp    |    71 +
 .../include/internal/catch_xmlwriter.hpp           |   237 +
 .../include/reporters/catch_reporter_bases.hpp     |   247 +
 .../include/reporters/catch_reporter_compact.hpp   |   301 +
 .../include/reporters/catch_reporter_console.hpp   |   445 +
 .../include/reporters/catch_reporter_junit.hpp     |   223 +
 .../include/reporters/catch_reporter_multi.hpp     |   147 +
 .../include/reporters/catch_reporter_teamcity.hpp  |   221 +
 .../include/reporters/catch_reporter_xml.hpp       |   199 +
 .../Catch-1.3.3/projects/CMake/CMakeLists.txt      |    48 +
 .../Catch-1.3.3/projects/SelfTest/ApproxTests.cpp  |   112 +
 .../Catch-1.3.3/projects/SelfTest/BDDTests.cpp     |   103 +
 .../SelfTest/Baselines/console.std.approved.txt    |   835 ++
 .../SelfTest/Baselines/console.sw.approved.txt     |  9050 ++++++++++++++++
 .../SelfTest/Baselines/console.swa4.approved.txt   |   491 +
 .../SelfTest/Baselines/junit.sw.approved.txt       |   684 ++
 .../SelfTest/Baselines/xml.sw.approved.txt         |  9511 +++++++++++++++++
 .../Catch-1.3.3/projects/SelfTest/ClassTests.cpp   |    57 +
 .../Catch-1.3.3/projects/SelfTest/CmdLineTests.cpp |   264 +
 .../projects/SelfTest/ConditionTests.cpp           |   335 +
 .../Catch-1.3.3/projects/SelfTest/EnumToString.cpp |    76 +
 .../projects/SelfTest/ExceptionTests.cpp           |   203 +
 .../projects/SelfTest/GeneratorTests.cpp           |    42 +
 .../Catch-1.3.3/projects/SelfTest/MessageTests.cpp |   133 +
 .../Catch-1.3.3/projects/SelfTest/MiscTests.cpp    |   480 +
 .../projects/SelfTest/PartTrackerTests.cpp         |   328 +
 .../SelfTest/SurrogateCpps/catch_common.cpp        |     3 +
 .../SurrogateCpps/catch_console_colour.cpp         |     3 +
 .../SelfTest/SurrogateCpps/catch_debugger.cpp      |     2 +
 .../SurrogateCpps/catch_interfaces_capture.cpp     |     3 +
 .../SurrogateCpps/catch_interfaces_config.cpp      |     2 +
 .../SurrogateCpps/catch_interfaces_exception.cpp   |     2 +
 .../SurrogateCpps/catch_interfaces_generators.cpp  |     1 +
 .../catch_interfaces_registry_hub.cpp              |     3 +
 .../SurrogateCpps/catch_interfaces_reporter.cpp    |     2 +
 .../SurrogateCpps/catch_interfaces_runner.cpp      |     1 +
 .../SurrogateCpps/catch_interfaces_testcase.cpp    |     2 +
 .../SelfTest/SurrogateCpps/catch_message.cpp       |     3 +
 .../SelfTest/SurrogateCpps/catch_option.cpp        |     3 +
 .../projects/SelfTest/SurrogateCpps/catch_ptr.cpp  |     3 +
 .../SelfTest/SurrogateCpps/catch_stream.cpp        |     3 +
 .../SelfTest/SurrogateCpps/catch_streambuf.cpp     |     3 +
 .../SelfTest/SurrogateCpps/catch_test_spec.cpp     |     3 +
 .../SelfTest/SurrogateCpps/catch_xmlwriter.cpp     |     4 +
 .../projects/SelfTest/TagAliasTests.cpp            |    41 +
 .../Catch-1.3.3/projects/SelfTest/TestMain.cpp     |   461 +
 .../Catch-1.3.3/projects/SelfTest/ToStringPair.cpp |    47 +
 .../projects/SelfTest/ToStringTuple.cpp            |    59 +
 .../projects/SelfTest/ToStringVector.cpp           |    77 +
 .../projects/SelfTest/ToStringWhich.cpp            |    68 +
 .../Catch-1.3.3/projects/SelfTest/TrickyTests.cpp  |   401 +
 .../projects/SelfTest/VariadicMacrosTests.cpp      |    31 +
 .../Catch-1.3.3/projects/SelfTest/makefile         |    30 +
 .../projects/VS2008/TestCatch/TestCatch.sln        |    20 +
 .../VS2008/TestCatch/TestCatch/TestCatch.cpp       |     8 +
 .../VS2008/TestCatch/TestCatch/TestCatch.vcproj    |   390 +
 .../projects/VS2010/TestCatch/TestCatch.sln        |    20 +
 .../VS2010/TestCatch/TestCatch/TestCatch.vcxproj   |   148 +
 .../CatchSelfTest.xcodeproj/project.pbxproj        |   742 ++
 .../project.xcworkspace/contents.xcworkspacedata   |     7 +
 .../CatchSelfTest/CatchSelfTest/CatchSelfTest.1    |    79 +
 .../CatchSelfTest/CatchSelfTest/catch_text.cpp     |     3 +
 .../CatchSelfTestSingle.xcodeproj/project.pbxproj  |   258 +
 .../project.xcworkspace/contents.xcworkspacedata   |     7 +
 .../CatchSelfTest/CatchSelfTestSingle/dummy.txt    |     0
 .../XCode/OCTest/OCTest.xcodeproj/project.pbxproj  |   265 +
 .../project.xcworkspace/contents.xcworkspacedata   |     7 +
 .../projects/XCode/OCTest/OCTest/CatchOCTestCase.h |    25 +
 .../XCode/OCTest/OCTest/CatchOCTestCase.mm         |    83 +
 .../projects/XCode/OCTest/OCTest/Main.mm           |     2 +-
 .../projects/XCode/OCTest/OCTest/OCTest.1          |    79 +
 .../projects/XCode/OCTest/OCTest/OCTest.mm         |    28 +
 .../projects/XCode/OCTest/OCTest/TestObj.h         |    28 +
 .../projects/XCode/OCTest/OCTest/TestObj.m         |    25 +
 .../iOSTest/iOSTest.xcodeproj/project.pbxproj      |   299 +
 .../project.xcworkspace/contents.xcworkspacedata   |     7 +
 .../projects/XCode/iOSTest/iOSTest/OCTest.mm       |    27 +
 .../projects/XCode/iOSTest/iOSTest/TestObj.h       |    25 +
 .../projects/XCode/iOSTest/iOSTest/TestObj.m       |    18 +
 .../iOSTest/iOSTest/en.lproj/InfoPlist.strings     |     2 +
 .../XCode/iOSTest/iOSTest/iOSTest-Info.plist       |    47 +
 .../XCode/iOSTest/iOSTest/iOSTest-Prefix.pch       |    14 +
 .../iTchRunner/internal/iTchRunnerAppDelegate.h    |   114 +
 .../iTchRunner/internal/iTchRunnerMainView.h       |   189 +
 .../iTchRunner/internal/iTchRunnerReporter.h       |   115 +
 .../projects/runners/iTchRunner/itChRunnerMain.mm  |    27 +
 .../Catch-1.3.3/projects/runners/iTchRunner/readme |     6 +
 .../Catch-1.3.3/scripts/approvalTests.py           |   115 +
 .../missing-sources/Catch-1.3.3/scripts/approve.py |    31 +
 .../Catch-1.3.3/scripts/developBuild.py            |     9 +
 .../Catch-1.3.3/scripts/fixTrailingWhitespace.py   |    46 +
 .../Catch-1.3.3/scripts/generateSingleHeader.py    |   103 +
 .../Catch-1.3.3/scripts/majorRelease.py            |     9 +
 .../Catch-1.3.3/scripts/minorRelease.py            |     9 +
 .../Catch-1.3.3/scripts/patchRelease.py            |     9 +
 .../Catch-1.3.3/scripts/releaseCommon.py           |    89 +
 .../Catch-1.3.3/scripts/releaseNotes.py            |    62 +
 .../Catch-1.3.3/scripts/scriptCommon.py            |    21 +
 .../Catch-1.3.3/single_include/catch.hpp           | 10203 +++++++++++++++++++
 debian/source/include-binaries                     |     1 +
 207 files changed, 50819 insertions(+), 1 deletion(-)
 create mode 100644 debian/missing-sources/Catch-1.3.3/.gitattributes
 create mode 100644 debian/missing-sources/Catch-1.3.3/.gitignore
 create mode 100644 debian/missing-sources/Catch-1.3.3/.travis.yml
 copy LICENSE_1_0.txt => debian/missing-sources/Catch-1.3.3/LICENSE_1_0.txt (100%)
 create mode 100644 debian/missing-sources/Catch-1.3.3/README.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/catch-logo-small.png
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/Readme.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/assertions.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/build-systems.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/command-line.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/configuration.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/contributing.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/logging.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/own-main.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/slow-compiles.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/test-cases-and-sections.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/test-fixtures.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/tostring.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/tutorial.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/docs/why-catch.md
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/catch.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/catch_session.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/catch_with_main.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/external/clara.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/external/tbc_text_format.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_approx.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_assertionresult.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_assertionresult.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_capture.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_clara.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_commandline.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_common.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_common.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_compiler_capabilities.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_config.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_console_colour.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_console_colour_impl.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_context.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_context_impl.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_debugger.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_debugger.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_default_main.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_evaluate.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_exception_translator_registry.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_expression_lhs.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_fatal_condition.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_generators.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_generators_impl.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_impl.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_capture.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_config.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_exception.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_generators.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_registry_hub.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_reporter.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_runner.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_tag_alias_registry.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_interfaces_testcase.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_legacy_reporter_adapter.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_legacy_reporter_adapter.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_list.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_matchers.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_message.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_message.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_notimplemented_exception.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_notimplemented_exception.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_objc.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_objc_arc.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_option.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_platform.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_ptr.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_reenable_warnings.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_registry_hub.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_reporter_registrars.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_reporter_registry.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_result_builder.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_result_builder.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_result_type.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_run_context.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_section.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_section.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_section_info.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_section_info.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_stream.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_stream.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_streambuf.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_suppress_warnings.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_tag_alias.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_tag_alias_registry.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_tag_alias_registry.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_case_info.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_case_info.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_case_registry_impl.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_case_tracker.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_registry.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_spec.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_test_spec_parser.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_text.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_timer.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_timer.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_tostring.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_tostring.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_totals.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_version.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_version.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_wildcard_pattern.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/internal/catch_xmlwriter.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_bases.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_compact.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_console.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_junit.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_multi.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_teamcity.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/include/reporters/catch_reporter_xml.hpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/CMake/CMakeLists.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ApproxTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/BDDTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/Baselines/console.std.approved.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/Baselines/console.sw.approved.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/Baselines/console.swa4.approved.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/Baselines/junit.sw.approved.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/Baselines/xml.sw.approved.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ClassTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/CmdLineTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ConditionTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/EnumToString.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ExceptionTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/GeneratorTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/MessageTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/MiscTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/PartTrackerTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_common.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_console_colour.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_debugger.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_capture.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_config.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_exception.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_generators.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_registry_hub.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_reporter.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_runner.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_interfaces_testcase.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_message.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_option.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_ptr.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_stream.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_streambuf.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_test_spec.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/SurrogateCpps/catch_xmlwriter.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/TagAliasTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/TestMain.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ToStringPair.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ToStringTuple.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ToStringVector.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/ToStringWhich.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/TrickyTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/VariadicMacrosTests.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/SelfTest/makefile
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/VS2008/TestCatch/TestCatch.sln
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/VS2008/TestCatch/TestCatch/TestCatch.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/VS2008/TestCatch/TestCatch/TestCatch.vcproj
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/VS2010/TestCatch/TestCatch.sln
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/VS2010/TestCatch/TestCatch/TestCatch.vcxproj
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTest.xcodeproj/project.pbxproj
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTest/CatchSelfTest.1
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTest/catch_text.cpp
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTestSingle.xcodeproj/project.pbxproj
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTestSingle.xcodeproj/project.xcworkspace/contents.xcworkspacedata
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/CatchSelfTest/CatchSelfTestSingle/dummy.txt
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest.xcodeproj/project.pbxproj
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/CatchOCTestCase.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/CatchOCTestCase.mm
 copy test/unit.cpp => debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/Main.mm (55%)
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/OCTest.1
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/OCTest.mm
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/TestObj.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/OCTest/OCTest/TestObj.m
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest.xcodeproj/project.pbxproj
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest/OCTest.mm
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest/TestObj.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest/TestObj.m
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest/en.lproj/InfoPlist.strings
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest/iOSTest-Info.plist
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/XCode/iOSTest/iOSTest/iOSTest-Prefix.pch
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/runners/iTchRunner/internal/iTchRunnerAppDelegate.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/runners/iTchRunner/internal/iTchRunnerMainView.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/runners/iTchRunner/internal/iTchRunnerReporter.h
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/runners/iTchRunner/itChRunnerMain.mm
 create mode 100644 debian/missing-sources/Catch-1.3.3/projects/runners/iTchRunner/readme
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/approvalTests.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/approve.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/developBuild.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/fixTrailingWhitespace.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/generateSingleHeader.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/majorRelease.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/minorRelease.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/patchRelease.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/releaseCommon.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/releaseNotes.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/scripts/scriptCommon.py
 create mode 100644 debian/missing-sources/Catch-1.3.3/single_include/catch.hpp
 create mode 100644 debian/source/include-binaries

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapbox-variant.git



More information about the Pkg-grass-devel mailing list