This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch jessie-backports in repository protozero.
commit dd48a3475946a553e8a8172b1c60896527769be0 Merge: 5b573a3 f2eb9f8 Author: Bas Couwenberg <[email protected]> Date: Thu Jul 28 19:07:34 2016 +0200 Merge tag 'debian/1.4.0-1' into jessie-backports Conflicts: debian/changelog .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(-) diff --cc debian/changelog index 253a4b7,0326e5c..d13e1fd --- a/debian/changelog +++ b/debian/changelog @@@ -1,9 -1,13 +1,19 @@@ + protozero (1.4.0-1) unstable; urgency=medium + + * New upstream release. + * Bump Standards-Version to 3.9.8, no changes. + * Update watch file to handle more tag conventions in filenamemangle. + * Override dh_auto_install to set appropriate DESTDIR. + * Override dh_install to use --list-install. + + -- Bas Couwenberg <[email protected]> Fri, 22 Jul 2016 16:29:25 +0200 + +protozero (1.3.0-1~bpo8+1) jessie-backports; urgency=medium + + * Rebuild for jessie-backports. + + -- Bas Couwenberg <[email protected]> Thu, 03 Mar 2016 17:43:58 +0100 + protozero (1.3.0-1) unstable; urgency=medium * New upstream release. diff --cc debian/control index 139eb1a,41794e2..c96628e --- a/debian/control +++ b/debian/control @@@ -9,9 -9,9 +9,9 @@@ Build-Depends: debhelper (>= 9) libprotobuf-dev, protobuf-compiler, pkg-config - Standards-Version: 3.9.7 + Standards-Version: 3.9.8 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/protozero.git/ -Vcs-Git: https://anonscm.debian.org/git/pkg-grass/protozero.git +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/protozero.git -b jessie-backports Homepage: https://github.com/mapbox/protozero Package: libprotozero-dev -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/protozero.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

