[protozero] branch master updated (c70f46c -> f2eb9f8)

Bas Couwenberg sebastic at debian.org
Fri Jul 22 14:39:23 UTC 2016


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

sebastic pushed a change to branch master
in repository protozero.

      from  c70f46c   Set distribution to unstable.
       new  523cc15   Imported Upstream version 1.4.0
       new  58d33fb   Merge tag 'upstream/1.4.0'
       new  3678f94   New upstream release.
       new  4c82843   Bump Standards-Version to 3.9.8, no changes.
       new  685049a   Update watch file to handle more tag conventions in filenamemangle.
       new  7ce8238   Override dh_auto_install to set appropriate DESTDIR.
       new  a097bed   Override dh_install to use --list-install.
       new  f2eb9f8   Set distribution to unstable.

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:
 .travis.yml                                    |   2 +-
 CHANGELOG.md                                   |  18 +-
 CONTRIBUTING.md                                |   1 +
 Makefile                                       |  22 +-
 README.md                                      |  41 +-
 UPGRADING.md                                   |  66 +++
 debian/changelog                               |  10 +
 debian/control                                 |   2 +-
 debian/libprotozero-dev.install                |   2 +-
 debian/rules                                   |   6 +
 debian/watch                                   |   2 +-
 doc/Doxyfile                                   |   4 +-
 doc/cheatsheet.md                              |  67 +++
 doc/macros.md                                  |  48 ++
 tutorial.md => doc/tutorial.md                 |   8 +-
 include/protozero/byteswap.hpp                 |   6 +-
 include/protozero/exception.hpp                |   8 +-
 include/protozero/iterators.hpp                | 373 ++++++++++++
 include/protozero/pbf_builder.hpp              |  20 +-
 include/protozero/pbf_message.hpp              |  10 +-
 include/protozero/pbf_reader.hpp               | 763 +++++++++----------------
 include/protozero/pbf_writer.hpp               | 240 +++++---
 include/protozero/types.hpp                    | 170 +++++-
 include/protozero/varint.hpp                   | 125 ++--
 include/protozero/version.hpp                  |  17 +-
 package.json                                   |   2 +-
 test/include/packed_access.hpp                 | 234 ++++++++
 test/include/scalar_access.hpp                 |  20 +
 test/include/test.hpp                          |   4 +
 test/t/basic/test_cases.cpp                    |  64 +--
 test/t/complex/test_cases.cpp                  |  56 +-
 test/t/data_view/test_cases.cpp                |  83 +++
 test/t/exceptions/test_cases.cpp               |  34 +-
 test/t/fixed32/data-pos200.pbf                 | Bin 0 -> 5 bytes
 test/t/fixed32/testcase.cpp                    |   3 +
 test/t/fixed64/data-pos200.pbf                 | Bin 0 -> 9 bytes
 test/t/fixed64/testcase.cpp                    |   3 +
 test/t/int32/data-neg200.pbf                   |   1 +
 test/t/int32/data-pos200.pbf                   |   1 +
 test/t/int32/testcase.cpp                      |   6 +
 test/t/int64/data-neg200.pbf                   |   1 +
 test/t/int64/data-pos200.pbf                   |   1 +
 test/t/int64/testcase.cpp                      |   6 +
 test/t/message/test_cases.cpp                  |   7 +
 test/t/repeated_packed_bool/test_cases.cpp     |  16 +-
 test/t/repeated_packed_double/test_cases.cpp   |  12 +-
 test/t/repeated_packed_enum/test_cases.cpp     |  16 +-
 test/t/repeated_packed_fixed32/data-many.pbf   | Bin 18 -> 22 bytes
 test/t/repeated_packed_fixed32/test_cases.cpp  | 202 +------
 test/t/repeated_packed_fixed32/testcase.cpp    |   1 +
 test/t/repeated_packed_fixed64/data-many.pbf   | Bin 34 -> 42 bytes
 test/t/repeated_packed_fixed64/test_cases.cpp  |  93 +--
 test/t/repeated_packed_fixed64/testcase.cpp    |   1 +
 test/t/repeated_packed_float/test_cases.cpp    |  12 +-
 test/t/repeated_packed_int32/data-many.pbf     | Bin 30 -> 42 bytes
 test/t/repeated_packed_int32/test_cases.cpp    |  86 +--
 test/t/repeated_packed_int32/testcase.cpp      |   4 +-
 test/t/repeated_packed_int64/data-many.pbf     | Bin 34 -> 46 bytes
 test/t/repeated_packed_int64/test_cases.cpp    | 122 +---
 test/t/repeated_packed_int64/testcase.cpp      |   4 +-
 test/t/repeated_packed_sfixed32/data-many.pbf  | Bin 26 -> 34 bytes
 test/t/repeated_packed_sfixed32/test_cases.cpp |  85 +--
 test/t/repeated_packed_sfixed32/testcase.cpp   |   4 +-
 test/t/repeated_packed_sfixed64/data-many.pbf  | Bin 50 -> 66 bytes
 test/t/repeated_packed_sfixed64/test_cases.cpp |  84 +--
 test/t/repeated_packed_sfixed64/testcase.cpp   |   4 +-
 test/t/repeated_packed_sint32/data-many.pbf    | Bin 16 -> 20 bytes
 test/t/repeated_packed_sint32/test_cases.cpp   |  84 +--
 test/t/repeated_packed_sint32/testcase.cpp     |   4 +-
 test/t/repeated_packed_sint64/data-many.pbf    | Bin 26 -> 30 bytes
 test/t/repeated_packed_sint64/test_cases.cpp   | 122 +---
 test/t/repeated_packed_sint64/testcase.cpp     |   4 +-
 test/t/repeated_packed_uint32/data-many.pbf    | Bin 10 -> 12 bytes
 test/t/repeated_packed_uint32/test_cases.cpp   |  82 +--
 test/t/repeated_packed_uint32/testcase.cpp     |   1 +
 test/t/repeated_packed_uint64/data-many.pbf    | Bin 15 -> 17 bytes
 test/t/repeated_packed_uint64/test_cases.cpp   |  82 +--
 test/t/repeated_packed_uint64/testcase.cpp     |   1 +
 test/t/rollback/test_cases.cpp                 |  12 +-
 test/t/sfixed32/data-neg200.pbf                |   1 +
 test/t/sfixed32/data-pos200.pbf                | Bin 0 -> 5 bytes
 test/t/sfixed32/testcase.cpp                   |   6 +
 test/t/sfixed64/data-neg200.pbf                |   1 +
 test/t/sfixed64/data-pos200.pbf                | Bin 0 -> 9 bytes
 test/t/sfixed64/testcase.cpp                   |   6 +
 test/t/sint32/data-neg200.pbf                  |   1 +
 test/t/sint32/data-pos200.pbf                  |   1 +
 test/t/sint32/testcase.cpp                     |   8 +-
 test/t/sint64/data-neg200.pbf                  |   1 +
 test/t/sint64/data-pos200.pbf                  |   1 +
 test/t/sint64/testcase.cpp                     |   6 +
 test/t/skip/test_cases.cpp                     | 228 ++++----
 test/t/string/test_cases.cpp                   |  49 +-
 test/t/uint32/data-pos200.pbf                  |   1 +
 test/t/uint32/testcase.cpp                     |   3 +
 test/t/uint64/data-pos200.pbf                  |   1 +
 test/t/uint64/testcase.cpp                     |   3 +
 test/t/varint/test_cases.cpp                   | 114 +++-
 test/t/vector_tile/test_cases.cpp              |  29 +-
 test/t/wrong_type_access/test_cases.cpp        |  16 +-
 test/t/zigzag/test_cases.cpp                   |  62 +-
 101 files changed, 2270 insertions(+), 1963 deletions(-)
 create mode 100644 UPGRADING.md
 create mode 100644 doc/cheatsheet.md
 create mode 100644 doc/macros.md
 rename tutorial.md => doc/tutorial.md (98%)
 create mode 100644 include/protozero/iterators.hpp
 create mode 100644 test/include/packed_access.hpp
 create mode 100644 test/t/data_view/test_cases.cpp
 create mode 100644 test/t/fixed32/data-pos200.pbf
 create mode 100644 test/t/fixed64/data-pos200.pbf
 create mode 100644 test/t/int32/data-neg200.pbf
 create mode 100644 test/t/int32/data-pos200.pbf
 create mode 100644 test/t/int64/data-neg200.pbf
 create mode 100644 test/t/int64/data-pos200.pbf
 create mode 100644 test/t/sfixed32/data-neg200.pbf
 create mode 100644 test/t/sfixed32/data-pos200.pbf
 create mode 100644 test/t/sfixed64/data-neg200.pbf
 create mode 100644 test/t/sfixed64/data-pos200.pbf
 create mode 100644 test/t/sint32/data-neg200.pbf
 create mode 100644 test/t/sint32/data-pos200.pbf
 create mode 100644 test/t/sint64/data-neg200.pbf
 create mode 100644 test/t/sint64/data-pos200.pbf
 create mode 100644 test/t/uint32/data-pos200.pbf
 create mode 100644 test/t/uint64/data-pos200.pbf

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



More information about the Pkg-grass-devel mailing list