This is an automated email from the git hooks/post-receive script. sebastic pushed a change to branch master in repository libkml.
from 348b87c Set distribution to experimental. new fc5af44 Add patches to build swig bindings. new f050f81 Imported Upstream version 1.3.0~r864+git20150726-3f3f37f new b40da42 Merge tag 'upstream/1.3.0_r864+git20150726-3f3f37f' new ee00cf9 New upstream git snapshot. new a0727af Drop patches applied upstream. new ad6e2a7 Add path to fix Python library installation path. new 09e7df3 Drop libtool libraries for the java bindings, no longer built with CMake. new 145bf0a Update symbols for amd64 with GCC 5. new 5877403 Fix unknown substitution variable warnings. new 0282a64 Set distribution to experimental. new 40ab54f Mark python-install-path.patch as Forwarded & Applied-Upstream. The 11 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 + CMakeLists.txt | 72 ++++++++----- cmake/.#FindMiniZip.cmake | 1 - cmake/FindMiniZip.cmake | 28 ++--- cmake/FindUriParser.cmake | 30 +++--- cmake/ImportBoost.cmake | 7 -- cmake/ImportEXPAT.cmake | 9 -- cmake/ImportGoogleTest.cmake | 8 -- cmake/ImportMinizip.cmake | 8 -- cmake/ImportUriParser.cmake | 8 -- cmake/ImportZLIB.cmake | 9 -- cmake/LibKMLHelper.cmake | 12 +-- cmake/pycompile.py | 3 + debian/changelog | 10 ++ debian/control | 45 ++++++++ debian/libkml-java.install | 1 + debian/libkmlbase1.symbols | 3 + debian/patches/compiler-flags.patch | 28 ----- debian/patches/include-path.patch | 38 ------- debian/patches/install-paths.patch | 69 ------------ debian/patches/java-run-sh-shebang.diff | 13 --- debian/patches/python-install-path.patch | 36 +++++++ debian/patches/series | 6 +- debian/patches/soversion.patch | 23 ---- debian/python-kml.install | 1 + debian/rules | 13 ++- examples/engine/Makefile.am | 106 ------------------ examples/java/run.sh | 2 + examples/wxregionator/Makefile.am | 10 -- examples/wxviewer/Makefile.am | 8 -- libkml.sln | 50 --------- src/CMakeLists.txt | 2 +- src/kml/CMakeLists.txt | 2 +- src/kml/base/CMakeLists.txt | 9 +- src/swig/CMakeLists.txt | 95 ++++++++++++++++ src/swig/Makefile.am | 132 ----------------------- src/swig/java/Makefile.am | 2 - src/swig/kmlbase.i | 19 ++-- src/swig/kmldom.i | 19 ++-- src/swig/{kmlelements.i => libkml_kmlelements.i} | 0 src/swig/python/Makefile.am | 2 - testdata/Makefile.am | 3 - testdata/atom/Makefile.am | 8 -- testdata/balloon/Makefile.am | 2 - testdata/csv/Makefile.am | 10 -- testdata/deprecated/Makefile.am | 2 - testdata/gdata/Makefile.am | 7 -- testdata/gmaps/Makefile.am | 2 - testdata/gpx/Makefile.am | 2 - testdata/gx/Makefile.am | 3 - testdata/kml/Makefile.am | 27 ----- testdata/kmz/Makefile.am | 26 ----- testdata/kmz/files/Makefile.am | 5 - testdata/kmz/kmzfiles/Makefile.am | 2 - testdata/kmz/rumsey/Makefile.am | 1 - testdata/kmz/rumsey/imagery/Makefile.am | 1 - testdata/kmz/rumsey/kml/Makefile.am | 4 - testdata/links/Makefile.am | 2 - testdata/style/Makefile.am | 33 ------ testdata/style/weather/Makefile.am | 14 --- testdata/update/Makefile.am | 21 ---- testdata/xal/Makefile.am | 2 - testdata/xsd/Makefile.am | 2 - tests/CMakeLists.txt | 2 +- tests/swig/CMakeLists.txt | 19 ++++ {src => tests}/swig/KmlBaseTest.java | 0 {src => tests}/swig/kmlbase_test.py | 0 {src => tests}/swig/kmldom_test.py | 0 {src => tests}/swig/kmlengine_test.py | 0 xcode/LibKML/Makefile.am | 5 - xcode/Makefile.am | 2 - 71 files changed, 337 insertions(+), 811 deletions(-) delete mode 120000 cmake/.#FindMiniZip.cmake delete mode 100644 cmake/ImportBoost.cmake delete mode 100644 cmake/ImportEXPAT.cmake delete mode 100644 cmake/ImportGoogleTest.cmake delete mode 100644 cmake/ImportMinizip.cmake delete mode 100644 cmake/ImportUriParser.cmake delete mode 100644 cmake/ImportZLIB.cmake create mode 100755 cmake/pycompile.py create mode 100644 debian/libkml-java.install delete mode 100644 debian/patches/compiler-flags.patch delete mode 100644 debian/patches/include-path.patch delete mode 100644 debian/patches/install-paths.patch delete mode 100644 debian/patches/java-run-sh-shebang.diff create mode 100644 debian/patches/python-install-path.patch delete mode 100644 debian/patches/soversion.patch create mode 100644 debian/python-kml.install delete mode 100644 examples/engine/Makefile.am delete mode 100644 examples/wxregionator/Makefile.am delete mode 100644 examples/wxviewer/Makefile.am delete mode 100644 libkml.sln create mode 100644 src/swig/CMakeLists.txt delete mode 100644 src/swig/Makefile.am delete mode 100644 src/swig/java/Makefile.am rename src/swig/{kmlelements.i => libkml_kmlelements.i} (100%) delete mode 100644 src/swig/python/Makefile.am delete mode 100644 testdata/Makefile.am delete mode 100644 testdata/atom/Makefile.am delete mode 100644 testdata/balloon/Makefile.am delete mode 100644 testdata/csv/Makefile.am delete mode 100644 testdata/deprecated/Makefile.am delete mode 100644 testdata/gdata/Makefile.am delete mode 100644 testdata/gmaps/Makefile.am delete mode 100644 testdata/gpx/Makefile.am delete mode 100644 testdata/gx/Makefile.am delete mode 100644 testdata/kml/Makefile.am delete mode 100644 testdata/kmz/Makefile.am delete mode 100644 testdata/kmz/files/Makefile.am delete mode 100644 testdata/kmz/kmzfiles/Makefile.am delete mode 100644 testdata/kmz/rumsey/Makefile.am delete mode 100644 testdata/kmz/rumsey/imagery/Makefile.am delete mode 100644 testdata/kmz/rumsey/kml/Makefile.am delete mode 100644 testdata/links/Makefile.am delete mode 100644 testdata/style/Makefile.am delete mode 100644 testdata/style/weather/Makefile.am delete mode 100644 testdata/update/Makefile.am delete mode 100644 testdata/xal/Makefile.am delete mode 100644 testdata/xsd/Makefile.am create mode 100644 tests/swig/CMakeLists.txt rename {src => tests}/swig/KmlBaseTest.java (100%) rename {src => tests}/swig/kmlbase_test.py (100%) mode change 100755 => 100644 rename {src => tests}/swig/kmldom_test.py (100%) mode change 100755 => 100644 rename {src => tests}/swig/kmlengine_test.py (100%) mode change 100755 => 100644 delete mode 100644 xcode/LibKML/Makefile.am delete mode 100644 xcode/Makefile.am -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libkml.git _______________________________________________ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel