This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository pdal.
commit ac2125da7d46e522d62d17c64840109652604d85 Author: Bas Couwenberg <[email protected]> Date: Sat Aug 27 13:36:36 2016 +0200 Add patch to fix spelling errors. --- debian/changelog | 1 + debian/libpdal-base3.lintian-overrides | 3 ++ debian/patches/series | 1 + debian/patches/spelling-errors.patch | 85 ++++++++++++++++++++++++++++++++++ 4 files changed, 90 insertions(+) diff --git a/debian/changelog b/debian/changelog index 04e3023..0d002e0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ pdal (1.3.0~rc1-1) UNRELEASED; urgency=medium * Rename library packages for SONAME bump. * Use libjs-mathjax instead of online copy. * Add missing sources for sphinx rtd_theme. + * Add patch to fix spelling errors. -- Bas Couwenberg <[email protected]> Sat, 27 Aug 2016 10:20:18 +0200 diff --git a/debian/libpdal-base3.lintian-overrides b/debian/libpdal-base3.lintian-overrides new file mode 100644 index 0000000..cd7645c --- /dev/null +++ b/debian/libpdal-base3.lintian-overrides @@ -0,0 +1,3 @@ +# False positive, part of NormalX, NormalY, NormalZ +libpdal-base3: spelling-error-in-binary usr/lib/libpdal_base.so.* NormalY Normally + diff --git a/debian/patches/series b/debian/patches/series index 080f495..ffd5b44 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,3 +1,4 @@ privacy-breach.patch disable-sphinxcontrib-bibtex.patch use-mathjax-package.patch +spelling-errors.patch diff --git a/debian/patches/spelling-errors.patch b/debian/patches/spelling-errors.patch new file mode 100644 index 0000000..0c60860 --- /dev/null +++ b/debian/patches/spelling-errors.patch @@ -0,0 +1,85 @@ +Description: Fix spelling errors. + doesnt -> doesn't + conneciton -> connection +Author: Bas Couwenberg <[email protected]> +Forwarded: https://github.com/PDAL/PDAL/pull/1291 + +--- a/ChangeLog ++++ b/ChangeLog +@@ -7078,8 +7078,8 @@ + * Howard Butler <[email protected]> decruft (14:40:34) + * Howard Butler <[email protected]> decruft (14:40:25) + * Howard Butler <[email protected]> used cached byte positions to avoid per-point map lookup of positions for getField queries (14:40:00) +- * Howard Butler <[email protected]> use inplacereprojfilter because the scalingfilter combo doesnt work right now (14:39:03) +- * Howard Butler <[email protected]> use inplacereprojfilter because the scalingfilter combo doesnt work right now (14:38:18) ++ * Howard Butler <[email protected]> use inplacereprojfilter because the scalingfilter combo doesn't work right now (14:39:03) ++ * Howard Butler <[email protected]> use inplacereprojfilter because the scalingfilter combo doesn't work right now (14:38:18) + * Howard Butler <[email protected]> add getField specialization for fetching based on a pointIndex and Schema::getByteOffset() output (14:36:06) + * Howard Butler <[email protected]> no longer include tuple, not used (14:34:57) + +--- a/plugins/sqlite/io/SQLiteReader.cpp ++++ b/plugins/sqlite/io/SQLiteReader.cpp +@@ -124,7 +124,7 @@ SQLiteReader::fetchSpatialReference(std: + void SQLiteReader::addArgs(ProgramArgs& args) + { + args.add("spatialreference", "Spatial reference to apply to points if " +- "one doesnt exist", m_spatialRef); ++ "one doesn't exist", m_spatialRef); + args.add("query", "SELECT statement that returns point cloud", m_query); + args.add("connection", "Database connection string", m_connection); + args.add("module", "Spatialite module name", m_modulename); +--- a/vendor/pdalboost/boost/format/detail/compat_workarounds.hpp ++++ b/vendor/pdalboost/boost/format/detail/compat_workarounds.hpp +@@ -17,7 +17,7 @@ + // and compiler-specific switches) + + // Non-conformant Std-libs fail to supply conformant traits (std::char_traits, +-// std::allocator) and/or the std::string doesnt support them. ++// std::allocator) and/or the std::string doesn't support them. + // We don't want to have hundreds of #ifdef workarounds, so we define + // replacement traits. + // But both char_traits and allocator traits are visible in the interface, +--- a/vendor/pdalboost/boost/format/detail/config_macros.hpp ++++ b/vendor/pdalboost/boost/format/detail/config_macros.hpp +@@ -79,7 +79,7 @@ namespace pdalboost { + #endif + + +-// *** hide std::locale if it doesnt exist. ++// *** hide std::locale if it doesn't exist. + // this typedef is either std::locale or int, avoids placing ifdefs everywhere + namespace pdalboost { namespace io { namespace detail { + #if ! defined(BOOST_NO_STD_LOCALE) +--- a/vendor/pdalboost/boost/format/detail/workarounds_gcc-2_95.hpp ++++ b/vendor/pdalboost/boost/format/detail/workarounds_gcc-2_95.hpp +@@ -29,7 +29,7 @@ + #ifndef BOOST_FORMAT_WORKAROUNDS_GCC295_H + #define BOOST_FORMAT_WORKAROUNDS_GCC295_H + +-// SGI STL doesnt have <ostream> and others, so we need iostream. ++// SGI STL doesn't have <ostream> and others, so we need iostream. + #include <iostream> + #define BOOST_FORMAT_OSTREAM_DEFINED + +--- a/vendor/pdalboost/boost/mpl/for_each.hpp ++++ b/vendor/pdalboost/boost/mpl/for_each.hpp +@@ -113,7 +113,7 @@ BOOST_MPL_CFG_GPU_ENABLED + inline + void for_each(F f, Sequence* = 0) + { +- // jfalcou: fully qualifying this call so it doesnt clash with pdalboostphoenix::for_each ++ // jfalcou: fully qualifying this call so it doesn't clash with pdalboostphoenix::for_each + // ons ome compilers -- done on 02/28/2011 + pdalboost::mpl::for_each<Sequence, identity<> >(f); + } +--- a/plugins/sqlite/io/SQLiteWriter.cpp ++++ b/plugins/sqlite/io/SQLiteWriter.cpp +@@ -73,7 +73,7 @@ void SQLiteWriter::addArgs(ProgramArgs& + m_block_table).setPositional(); + args.add("cloud_table_name", "Cloud table name", + m_cloud_table).setPositional(); +- args.add("connection", "SQL conneciton string", ++ args.add("connection", "SQL connection string", + m_connection).setPositional(); + args.add("cloud_column_name", "Cloud column name", m_cloud_column, "id"); + args.add("module", "Module name", m_modulename); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pdal.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

