This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository librttopo.
commit e666c5cf49741a5d89205f3b4d19d35b5b80d4e0 Author: Bas Couwenberg <[email protected]> Date: Sat Feb 6 01:09:33 2016 +0100 Add initial Debian packaging. --- debian/changelog | 5 + debian/compat | 1 + debian/control | 48 +++ debian/copyright | 40 +++ debian/gbp.conf | 16 + debian/get-orig-source | 19 + debian/librtgeom-dev.docs | 1 + debian/librtgeom-dev.install | 3 + debian/librtgeom0.install | 1 + debian/librtgeom0.symbols | 745 ++++++++++++++++++++++++++++++++++++++++ debian/patches/make-clean.patch | 29 ++ debian/patches/series | 1 + debian/rules | 32 ++ debian/source/format | 1 + debian/upstream/metadata | 5 + debian/watch | 7 + 16 files changed, 954 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e4c7ee8 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +rttopo (0.0~20151215-d1aaf2f-1) UNRELEASED; urgency=medium + + * Initial release (Closes: #nnnnnn) + + -- Bas Couwenberg <[email protected]> Sat, 06 Feb 2016 00:43:17 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..0587598 --- /dev/null +++ b/debian/control @@ -0,0 +1,48 @@ +Source: rttopo +Section: science +Priority: optional +Maintainer: Debian GIS Project <[email protected]> +Uploaders: Bas Couwenberg <[email protected]> +Build-Depends: debhelper (>= 9), + dh-autoreconf, + libgeos-dev, + libjson-c-dev, + libpcre3-dev, + libxml2-dev +Standards-Version: 3.9.6 +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/rttopo.git/ +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/rttopo.git +Homepage: https://gitlab.com/rttopo/rttopo + +Package: librtgeom0 +Architecture: any +Section: libs +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Tuscany Region topology library + The topology support in librtgeom exposes an API to create and manage + "standard" topologies that use provided callbacks to take care of actual + data storage. + . + The topology standard is based on what was provided by PostGIS at its + version 2.0.0, which in turn is based on ISO SQL/MM (ISO 13249) with + the addition of the "TopoGeometry" concept. + . + This package contains the shared library. + +Package: librtgeom-dev +Architecture: any +Section: libdevel +Depends: librtgeom0 (= ${binary:Version}), + ${misc:Depends}, +Description: Tuscany Region topology library - Development files + The topology support in librtgeom exposes an API to create and manage + "standard" topologies that use provided callbacks to take care of actual + data storage. + . + The topology standard is based on what was provided by PostGIS at its + version 2.0.0, which in turn is based on ISO SQL/MM (ISO 13249) with + the addition of the "TopoGeometry" concept. + . + This package contains the development files. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..10e1e5e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,40 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: rttopo +Upstream-Contact: Sandro Santilli <[email protected]> +Source: https://gitlab.com/rttopo/rttopo + +Files: * +Copyright: 2009-2015, Sandro Santilli <[email protected]> + 2011-2015, Arrival 3D + 2010-2015, Nicklas Avén <[email protected]> + 2015, Daniel Baston <[email protected]> + 2011, 2014, Kashif Rasul <[email protected]> + 2008-2012, Paul Ramsey <[email protected]> + 2010-2012, Oslandia + 2009-2010, Olivier Courtin <[email protected]> + 2009, David Skea <[email protected]> + 2007-2008, Mark Cave-Ayland + 2001-2006, Refractions Research Inc + 2006, Corporacion Autonoma Regional de Santander + 2002, Thamer Alharbash +License: GPL-2+ + +Files: debian/* +Copyright: 2016, Bas Couwenberg <[email protected]> +License: GPL-2+ + +License: GPL-2+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + On Debian systems, the full text of the GNU General Public License + version 2 can be found in the file + `/usr/share/common-licenses/GPL-2'. + diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..21d0417 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,16 @@ +[DEFAULT] + +# The default name for the upstream branch is "upstream". +# Change it if the name is different (for instance, "master"). +upstream-branch = upstream + +# The default name for the Debian branch is "master". +# Change it if the name is different (for instance, "debian/unstable"). +debian-branch = master + +# git-import-orig uses the following names for the upstream tags. +# Change the value if you are not using git-import-orig +upstream-tag = upstream/%(version)s + +# Always use pristine-tar. +pristine-tar = True diff --git a/debian/get-orig-source b/debian/get-orig-source new file mode 100755 index 0000000..f94362e --- /dev/null +++ b/debian/get-orig-source @@ -0,0 +1,19 @@ +#!/bin/bash + +REMOTE=upstream +BRANCH=${REMOTE}/master + +if [ $(git remote show ${REMOTE} | wc -l) -eq 0 ]; then + git remote add ${REMOTE} https://gitlab.com/rttopo/rttopo.git +fi + +git fetch ${REMOTE} --no-tags + +PACKAGE=$(dpkg-parsechangelog | grep ^Source: | awk '{print $2}') + +COMMIT=$(git log -n1 --format=format:%h ${BRANCH}) +DATE=$(date +%Y%m%d --date="@$(git log -n1 --format=format:%ct ${BRANCH})") + +VERSION="0.0~${DATE}-${COMMIT}" + +git archive --format=tar.gz --prefix=${PACKAGE}-${VERSION}/ -o ../${PACKAGE}_${VERSION}.orig.tar.gz ${BRANCH} diff --git a/debian/librtgeom-dev.docs b/debian/librtgeom-dev.docs new file mode 100644 index 0000000..07e0db4 --- /dev/null +++ b/debian/librtgeom-dev.docs @@ -0,0 +1 @@ +README.* diff --git a/debian/librtgeom-dev.install b/debian/librtgeom-dev.install new file mode 100644 index 0000000..b849e94 --- /dev/null +++ b/debian/librtgeom-dev.install @@ -0,0 +1,3 @@ +usr/include +usr/lib/*/lib*.a +usr/lib/*/lib*.so diff --git a/debian/librtgeom0.install b/debian/librtgeom0.install new file mode 100644 index 0000000..3ddde58 --- /dev/null +++ b/debian/librtgeom0.install @@ -0,0 +1 @@ +usr/lib/*/lib*.so.* diff --git a/debian/librtgeom0.symbols b/debian/librtgeom0.symbols new file mode 100644 index 0000000..94fe2e4 --- /dev/null +++ b/debian/librtgeom0.symbols @@ -0,0 +1,745 @@ +librtgeom.so.0 #PACKAGE# #MINVER# + GBOX2GEOS@Base 0.0~20151215-d1aaf2f + GEOS2RTGEOM@Base 0.0~20151215-d1aaf2f + RTGEOM2GEOS@Base 0.0~20151215-d1aaf2f + RTGEOM_GEOS_buildArea@Base 0.0~20151215-d1aaf2f + RTMULTITYPE@Base 0.0~20151215-d1aaf2f + _rtgeom_interrupt_callback@Base 0.0~20151215-d1aaf2f + _rtgeom_interrupt_requested@Base 0.0~20151215-d1aaf2f + azimuth_pt_pt@Base 0.0~20151215-d1aaf2f + box2d_clone@Base 0.0~20151215-d1aaf2f + box3d_from_gbox@Base 0.0~20151215-d1aaf2f + box3d_to_gbox@Base 0.0~20151215-d1aaf2f + bytebuffer_append_bulk@Base 0.0~20151215-d1aaf2f + bytebuffer_append_byte@Base 0.0~20151215-d1aaf2f + bytebuffer_append_bytebuffer@Base 0.0~20151215-d1aaf2f + bytebuffer_append_double@Base 0.0~20151215-d1aaf2f + bytebuffer_append_int@Base 0.0~20151215-d1aaf2f + bytebuffer_append_uvarint@Base 0.0~20151215-d1aaf2f + bytebuffer_append_varint@Base 0.0~20151215-d1aaf2f + bytebuffer_clear@Base 0.0~20151215-d1aaf2f + bytebuffer_create@Base 0.0~20151215-d1aaf2f + bytebuffer_create_with_size@Base 0.0~20151215-d1aaf2f + bytebuffer_destroy@Base 0.0~20151215-d1aaf2f + bytebuffer_getlength@Base 0.0~20151215-d1aaf2f + bytebuffer_init_with_size@Base 0.0~20151215-d1aaf2f + bytebuffer_merge@Base 0.0~20151215-d1aaf2f + bytebuffer_read_uvarint@Base 0.0~20151215-d1aaf2f + bytebuffer_read_varint@Base 0.0~20151215-d1aaf2f + bytebuffer_reset_reading@Base 0.0~20151215-d1aaf2f + bytes_from_hexbytes@Base 0.0~20151215-d1aaf2f + cart2geog@Base 0.0~20151215-d1aaf2f + circ_tree_contains_point@Base 0.0~20151215-d1aaf2f + circ_tree_distance_tree@Base 0.0~20151215-d1aaf2f + circ_tree_free@Base 0.0~20151215-d1aaf2f + circ_tree_get_point@Base 0.0~20151215-d1aaf2f + circ_tree_new@Base 0.0~20151215-d1aaf2f + circ_tree_print@Base 0.0~20151215-d1aaf2f + clairaut_cartesian@Base 0.0~20151215-d1aaf2f + clairaut_geographic@Base 0.0~20151215-d1aaf2f + clamp_srid@Base 0.0~20151215-d1aaf2f + closest_point_on_segment@Base 0.0~20151215-d1aaf2f + crosses_dateline@Base 0.0~20151215-d1aaf2f + decode_geohash_bbox@Base 0.0~20151215-d1aaf2f + define_plane@Base 0.0~20151215-d1aaf2f + deparse_hex@Base 0.0~20151215-d1aaf2f + distance2d_pt_pt@Base 0.0~20151215-d1aaf2f + distance2d_pt_seg@Base 0.0~20151215-d1aaf2f + distance2d_sqr_pt_pt@Base 0.0~20151215-d1aaf2f + distance2d_sqr_pt_seg@Base 0.0~20151215-d1aaf2f + distance3d_pt_pt@Base 0.0~20151215-d1aaf2f + dumb_upper_map@Base 0.0~20151215-d1aaf2f + edge_calculate_gbox@Base 0.0~20151215-d1aaf2f + edge_calculate_gbox_slow@Base 0.0~20151215-d1aaf2f + edge_contains_coplanar_point@Base 0.0~20151215-d1aaf2f + edge_contains_point@Base 0.0~20151215-d1aaf2f + edge_distance_to_edge@Base 0.0~20151215-d1aaf2f + edge_distance_to_point@Base 0.0~20151215-d1aaf2f + edge_intersection@Base 0.0~20151215-d1aaf2f + edge_intersects@Base 0.0~20151215-d1aaf2f + edge_point_in_cone@Base 0.0~20151215-d1aaf2f + edge_point_on_plane@Base 0.0~20151215-d1aaf2f + error_if_srid_mismatch@Base 0.0~20151215-d1aaf2f + gbox_angular_height@Base 0.0~20151215-d1aaf2f + gbox_angular_width@Base 0.0~20151215-d1aaf2f + gbox_centroid@Base 0.0~20151215-d1aaf2f + gbox_clone@Base 0.0~20151215-d1aaf2f + gbox_contains_2d@Base 0.0~20151215-d1aaf2f + gbox_contains_point2d@Base 0.0~20151215-d1aaf2f + gbox_contains_point3d@Base 0.0~20151215-d1aaf2f + gbox_copy@Base 0.0~20151215-d1aaf2f + gbox_duplicate@Base 0.0~20151215-d1aaf2f + gbox_expand@Base 0.0~20151215-d1aaf2f + gbox_float_round@Base 0.0~20151215-d1aaf2f + gbox_from_string@Base 0.0~20151215-d1aaf2f + gbox_geocentric_slow@Base 0.0~20151215-d1aaf2f + gbox_init@Base 0.0~20151215-d1aaf2f + gbox_init_point3d@Base 0.0~20151215-d1aaf2f + gbox_is_valid@Base 0.0~20151215-d1aaf2f + gbox_merge@Base 0.0~20151215-d1aaf2f + gbox_merge_point3d@Base 0.0~20151215-d1aaf2f + gbox_new@Base 0.0~20151215-d1aaf2f + gbox_overlaps@Base 0.0~20151215-d1aaf2f + gbox_overlaps_2d@Base 0.0~20151215-d1aaf2f + gbox_pt_outside@Base 0.0~20151215-d1aaf2f + gbox_same@Base 0.0~20151215-d1aaf2f + gbox_same_2d@Base 0.0~20151215-d1aaf2f + gbox_same_2d_float@Base 0.0~20151215-d1aaf2f + gbox_serialized_size@Base 0.0~20151215-d1aaf2f + gbox_to_string@Base 0.0~20151215-d1aaf2f + gbox_union@Base 0.0~20151215-d1aaf2f + geog2cart@Base 0.0~20151215-d1aaf2f + geographic_point_equals@Base 0.0~20151215-d1aaf2f + geographic_point_init@Base 0.0~20151215-d1aaf2f + geohash_point@Base 0.0~20151215-d1aaf2f + geohash_point_as_int@Base 0.0~20151215-d1aaf2f + geometry_type_from_string@Base 0.0~20151215-d1aaf2f + geomtype_struct_array@Base 0.0~20151215-d1aaf2f + getMachineEndian@Base 0.0~20151215-d1aaf2f + gflags@Base 0.0~20151215-d1aaf2f + gserialized_copy@Base 0.0~20151215-d1aaf2f + gserialized_from_rtgeom@Base 0.0~20151215-d1aaf2f + gserialized_from_rtgeom_size@Base 0.0~20151215-d1aaf2f + gserialized_get_gbox_p@Base 0.0~20151215-d1aaf2f + gserialized_get_srid@Base 0.0~20151215-d1aaf2f + gserialized_get_type@Base 0.0~20151215-d1aaf2f + gserialized_get_zm@Base 0.0~20151215-d1aaf2f + gserialized_has_bbox@Base 0.0~20151215-d1aaf2f + gserialized_has_m@Base 0.0~20151215-d1aaf2f + gserialized_has_z@Base 0.0~20151215-d1aaf2f + gserialized_is_empty@Base 0.0~20151215-d1aaf2f + gserialized_is_geodetic@Base 0.0~20151215-d1aaf2f + gserialized_max_header_size@Base 0.0~20151215-d1aaf2f + gserialized_ndims@Base 0.0~20151215-d1aaf2f + gserialized_read_gbox_p@Base 0.0~20151215-d1aaf2f + gserialized_set_srid@Base 0.0~20151215-d1aaf2f + gserialized_to_string@Base 0.0~20151215-d1aaf2f + hexbytes_from_bytes@Base 0.0~20151215-d1aaf2f + interpolate_point4d@Base 0.0~20151215-d1aaf2f + latitude_degrees_normalize@Base 0.0~20151215-d1aaf2f + latitude_radians_normalize@Base 0.0~20151215-d1aaf2f + ll2cart@Base 0.0~20151215-d1aaf2f + longitude_degrees_normalize@Base 0.0~20151215-d1aaf2f + longitude_radians_normalize@Base 0.0~20151215-d1aaf2f + next_double_down@Base 0.0~20151215-d1aaf2f + next_double_up@Base 0.0~20151215-d1aaf2f + next_float_down@Base 0.0~20151215-d1aaf2f + next_float_up@Base 0.0~20151215-d1aaf2f + normalize@Base 0.0~20151215-d1aaf2f + p2d_same@Base 0.0~20151215-d1aaf2f + p3d_same@Base 0.0~20151215-d1aaf2f + p4d_same@Base 0.0~20151215-d1aaf2f + parse_hex@Base 0.0~20151215-d1aaf2f + point_interpolate@Base 0.0~20151215-d1aaf2f + point_shift@Base 0.0~20151215-d1aaf2f + printBOX3D@Base 0.0~20151215-d1aaf2f + printPA@Base 0.0~20151215-d1aaf2f + printRTCIRCSTRING@Base 0.0~20151215-d1aaf2f + printRTLINE@Base 0.0~20151215-d1aaf2f + printRTPOINT@Base 0.0~20151215-d1aaf2f + printRTPOLY@Base 0.0~20151215-d1aaf2f + printRTPSURFACE@Base 0.0~20151215-d1aaf2f + printRTTIN@Base 0.0~20151215-d1aaf2f + printRTTRIANGLE@Base 0.0~20151215-d1aaf2f + project_point_on_plane@Base 0.0~20151215-d1aaf2f + pt_in_ring_2d@Base 0.0~20151215-d1aaf2f + pt_in_ring_3d@Base 0.0~20151215-d1aaf2f + pta_unstroke@Base 0.0~20151215-d1aaf2f + ptarray_addPoint@Base 0.0~20151215-d1aaf2f + ptarray_affine@Base 0.0~20151215-d1aaf2f + ptarray_append_point@Base 0.0~20151215-d1aaf2f + ptarray_append_ptarray@Base 0.0~20151215-d1aaf2f + ptarray_arc_length_2d@Base 0.0~20151215-d1aaf2f + ptarray_area_sphere@Base 0.0~20151215-d1aaf2f + ptarray_calculate_gbox_cartesian@Base 0.0~20151215-d1aaf2f + ptarray_calculate_gbox_geodetic@Base 0.0~20151215-d1aaf2f + ptarray_clone@Base 0.0~20151215-d1aaf2f + ptarray_clone_deep@Base 0.0~20151215-d1aaf2f + ptarray_close2d@Base 0.0~20151215-d1aaf2f + ptarray_construct@Base 0.0~20151215-d1aaf2f + ptarray_construct_copy_data@Base 0.0~20151215-d1aaf2f + ptarray_construct_empty@Base 0.0~20151215-d1aaf2f + ptarray_construct_reference_data@Base 0.0~20151215-d1aaf2f + ptarray_contains_point@Base 0.0~20151215-d1aaf2f + ptarray_contains_point_partial@Base 0.0~20151215-d1aaf2f + ptarray_contains_point_sphere@Base 0.0~20151215-d1aaf2f + ptarray_flip_coordinates@Base 0.0~20151215-d1aaf2f + ptarray_force_dims@Base 0.0~20151215-d1aaf2f + ptarray_free@Base 0.0~20151215-d1aaf2f + ptarray_from_GEOSCoordSeq@Base 0.0~20151215-d1aaf2f + ptarray_grid@Base 0.0~20151215-d1aaf2f + ptarray_has_m@Base 0.0~20151215-d1aaf2f + ptarray_has_z@Base 0.0~20151215-d1aaf2f + ptarray_insert_point@Base 0.0~20151215-d1aaf2f + ptarray_is_closed@Base 0.0~20151215-d1aaf2f + ptarray_is_closed_2d@Base 0.0~20151215-d1aaf2f + ptarray_is_closed_3d@Base 0.0~20151215-d1aaf2f + ptarray_is_closed_z@Base 0.0~20151215-d1aaf2f + ptarray_isccw@Base 0.0~20151215-d1aaf2f + ptarray_length@Base 0.0~20151215-d1aaf2f + ptarray_length_2d@Base 0.0~20151215-d1aaf2f + ptarray_length_spheroid@Base 0.0~20151215-d1aaf2f + ptarray_locate_point@Base 0.0~20151215-d1aaf2f + ptarray_longitude_shift@Base 0.0~20151215-d1aaf2f + ptarray_merge@Base 0.0~20151215-d1aaf2f + ptarray_npoints_in_rect@Base 0.0~20151215-d1aaf2f + ptarray_point_size@Base 0.0~20151215-d1aaf2f + ptarray_removePoint@Base 0.0~20151215-d1aaf2f + ptarray_remove_point@Base 0.0~20151215-d1aaf2f + ptarray_remove_repeated_points@Base 0.0~20151215-d1aaf2f + ptarray_remove_repeated_points_minpoints@Base 0.0~20151215-d1aaf2f + ptarray_reverse@Base 0.0~20151215-d1aaf2f + ptarray_same@Base 0.0~20151215-d1aaf2f + ptarray_scale@Base 0.0~20151215-d1aaf2f + ptarray_segmentize2d@Base 0.0~20151215-d1aaf2f + ptarray_set_point4d@Base 0.0~20151215-d1aaf2f + ptarray_signed_area@Base 0.0~20151215-d1aaf2f + ptarray_simplify@Base 0.0~20151215-d1aaf2f + ptarray_startpoint@Base 0.0~20151215-d1aaf2f + ptarray_substring@Base 0.0~20151215-d1aaf2f + ptarray_swap_ordinates@Base 0.0~20151215-d1aaf2f + ptarrayarc_contains_point@Base 0.0~20151215-d1aaf2f + ptarrayarc_contains_point_partial@Base 0.0~20151215-d1aaf2f + rect_node_internal_new@Base 0.0~20151215-d1aaf2f + rect_node_leaf_new@Base 0.0~20151215-d1aaf2f + rect_tree_contains_point@Base 0.0~20151215-d1aaf2f + rect_tree_free@Base 0.0~20151215-d1aaf2f + rect_tree_intersects_tree@Base 0.0~20151215-d1aaf2f + rect_tree_new@Base 0.0~20151215-d1aaf2f + ring_make_geos_friendly@Base 0.0~20151215-d1aaf2f + robust_cross_product@Base 0.0~20151215-d1aaf2f + rt_arc_calculate_gbox_cartesian_2d@Base 0.0~20151215-d1aaf2f + rt_arc_center@Base 0.0~20151215-d1aaf2f + rt_arc_is_pt@Base 0.0~20151215-d1aaf2f + rt_arc_length@Base 0.0~20151215-d1aaf2f + rt_arc_side@Base 0.0~20151215-d1aaf2f + rt_dist2d_arc_arc@Base 0.0~20151215-d1aaf2f + rt_dist2d_check_overlap@Base 0.0~20151215-d1aaf2f + rt_dist2d_circstring_circstring@Base 0.0~20151215-d1aaf2f + rt_dist2d_circstring_curvepoly@Base 0.0~20151215-d1aaf2f + rt_dist2d_circstring_poly@Base 0.0~20151215-d1aaf2f + rt_dist2d_comp@Base 0.0~20151215-d1aaf2f + rt_dist2d_curvepoly_curvepoly@Base 0.0~20151215-d1aaf2f + rt_dist2d_distanceline@Base 0.0~20151215-d1aaf2f + rt_dist2d_distancepoint@Base 0.0~20151215-d1aaf2f + rt_dist2d_distpts_init@Base 0.0~20151215-d1aaf2f + rt_dist2d_distribute_bruteforce@Base 0.0~20151215-d1aaf2f + rt_dist2d_distribute_fast@Base 0.0~20151215-d1aaf2f + rt_dist2d_fast_ptarray_ptarray@Base 0.0~20151215-d1aaf2f + rt_dist2d_line_circstring@Base 0.0~20151215-d1aaf2f + rt_dist2d_line_curvepoly@Base 0.0~20151215-d1aaf2f + rt_dist2d_line_line@Base 0.0~20151215-d1aaf2f + rt_dist2d_line_poly@Base 0.0~20151215-d1aaf2f + rt_dist2d_point_circstring@Base 0.0~20151215-d1aaf2f + rt_dist2d_point_curvepoly@Base 0.0~20151215-d1aaf2f + rt_dist2d_point_line@Base 0.0~20151215-d1aaf2f + rt_dist2d_point_point@Base 0.0~20151215-d1aaf2f + rt_dist2d_point_poly@Base 0.0~20151215-d1aaf2f + rt_dist2d_poly_curvepoly@Base 0.0~20151215-d1aaf2f + rt_dist2d_poly_poly@Base 0.0~20151215-d1aaf2f + rt_dist2d_pre_seg_seg@Base 0.0~20151215-d1aaf2f + rt_dist2d_pt_arc@Base 0.0~20151215-d1aaf2f + rt_dist2d_pt_pt@Base 0.0~20151215-d1aaf2f + rt_dist2d_pt_ptarray@Base 0.0~20151215-d1aaf2f + rt_dist2d_pt_ptarrayarc@Base 0.0~20151215-d1aaf2f + rt_dist2d_pt_seg@Base 0.0~20151215-d1aaf2f + rt_dist2d_ptarray_ptarray@Base 0.0~20151215-d1aaf2f + rt_dist2d_ptarray_ptarrayarc@Base 0.0~20151215-d1aaf2f + rt_dist2d_ptarrayarc_ptarrayarc@Base 0.0~20151215-d1aaf2f + rt_dist2d_recursive@Base 0.0~20151215-d1aaf2f + rt_dist2d_seg_arc@Base 0.0~20151215-d1aaf2f + rt_dist2d_seg_seg@Base 0.0~20151215-d1aaf2f + rt_dist2d_selected_seg_seg@Base 0.0~20151215-d1aaf2f + rt_dist3d_distanceline@Base 0.0~20151215-d1aaf2f + rt_dist3d_distancepoint@Base 0.0~20151215-d1aaf2f + rt_dist3d_distribute_bruteforce@Base 0.0~20151215-d1aaf2f + rt_dist3d_line_line@Base 0.0~20151215-d1aaf2f + rt_dist3d_line_poly@Base 0.0~20151215-d1aaf2f + rt_dist3d_point_line@Base 0.0~20151215-d1aaf2f + rt_dist3d_point_point@Base 0.0~20151215-d1aaf2f + rt_dist3d_point_poly@Base 0.0~20151215-d1aaf2f + rt_dist3d_poly_poly@Base 0.0~20151215-d1aaf2f + rt_dist3d_pt_poly@Base 0.0~20151215-d1aaf2f + rt_dist3d_pt_pt@Base 0.0~20151215-d1aaf2f + rt_dist3d_pt_ptarray@Base 0.0~20151215-d1aaf2f + rt_dist3d_pt_seg@Base 0.0~20151215-d1aaf2f + rt_dist3d_ptarray_poly@Base 0.0~20151215-d1aaf2f + rt_dist3d_ptarray_ptarray@Base 0.0~20151215-d1aaf2f + rt_dist3d_recursive@Base 0.0~20151215-d1aaf2f + rt_dist3d_seg_seg@Base 0.0~20151215-d1aaf2f + rt_getPoint2d@Base 0.0~20151215-d1aaf2f + rt_getPoint2d_cp@Base 0.0~20151215-d1aaf2f + rt_getPoint2d_p@Base 0.0~20151215-d1aaf2f + rt_getPoint2d_p_ro@Base 0.0~20151215-d1aaf2f + rt_getPoint3dm@Base 0.0~20151215-d1aaf2f + rt_getPoint3dm_p@Base 0.0~20151215-d1aaf2f + rt_getPoint3dz@Base 0.0~20151215-d1aaf2f + rt_getPoint3dz_cp@Base 0.0~20151215-d1aaf2f + rt_getPoint3dz_p@Base 0.0~20151215-d1aaf2f + rt_getPoint4d@Base 0.0~20151215-d1aaf2f + rt_getPoint4d_cp@Base 0.0~20151215-d1aaf2f + rt_getPoint4d_p@Base 0.0~20151215-d1aaf2f + rt_getPoint_internal@Base 0.0~20151215-d1aaf2f + rt_get_int32_t@Base 0.0~20151215-d1aaf2f + rt_get_uint32_t@Base 0.0~20151215-d1aaf2f + rt_pt_in_arc@Base 0.0~20151215-d1aaf2f + rt_pt_in_seg@Base 0.0~20151215-d1aaf2f + rt_seg_length@Base 0.0~20151215-d1aaf2f + rt_segment_intersects@Base 0.0~20151215-d1aaf2f + rt_segment_side@Base 0.0~20151215-d1aaf2f + rtalloc@Base 0.0~20151215-d1aaf2f + rtcircstring_addpoint@Base 0.0~20151215-d1aaf2f + rtcircstring_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtcircstring_clone@Base 0.0~20151215-d1aaf2f + rtcircstring_construct@Base 0.0~20151215-d1aaf2f + rtcircstring_construct_empty@Base 0.0~20151215-d1aaf2f + rtcircstring_free@Base 0.0~20151215-d1aaf2f + rtcircstring_from_rtmpoint@Base 0.0~20151215-d1aaf2f + rtcircstring_from_rtpointarray@Base 0.0~20151215-d1aaf2f + rtcircstring_get_rtpoint@Base 0.0~20151215-d1aaf2f + rtcircstring_grid@Base 0.0~20151215-d1aaf2f + rtcircstring_is_closed@Base 0.0~20151215-d1aaf2f + rtcircstring_is_empty@Base 0.0~20151215-d1aaf2f + rtcircstring_length@Base 0.0~20151215-d1aaf2f + rtcircstring_length_2d@Base 0.0~20151215-d1aaf2f + rtcircstring_release@Base 0.0~20151215-d1aaf2f + rtcircstring_removepoint@Base 0.0~20151215-d1aaf2f + rtcircstring_reverse@Base 0.0~20151215-d1aaf2f + rtcircstring_same@Base 0.0~20151215-d1aaf2f + rtcircstring_setPoint4d@Base 0.0~20151215-d1aaf2f + rtcircstring_stroke@Base 0.0~20151215-d1aaf2f + rtcollection_add_rtgeom@Base 0.0~20151215-d1aaf2f + rtcollection_allows_subtype@Base 0.0~20151215-d1aaf2f + rtcollection_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtcollection_clone@Base 0.0~20151215-d1aaf2f + rtcollection_clone_deep@Base 0.0~20151215-d1aaf2f + rtcollection_construct@Base 0.0~20151215-d1aaf2f + rtcollection_construct_empty@Base 0.0~20151215-d1aaf2f + rtcollection_count_vertices@Base 0.0~20151215-d1aaf2f + rtcollection_extract@Base 0.0~20151215-d1aaf2f + rtcollection_force_dims@Base 0.0~20151215-d1aaf2f + rtcollection_free@Base 0.0~20151215-d1aaf2f + rtcollection_getsubgeom@Base 0.0~20151215-d1aaf2f + rtcollection_grid@Base 0.0~20151215-d1aaf2f + rtcollection_is_empty@Base 0.0~20151215-d1aaf2f + rtcollection_make_geos_friendly@Base 0.0~20151215-d1aaf2f + rtcollection_ngeoms@Base 0.0~20151215-d1aaf2f + rtcollection_release@Base 0.0~20151215-d1aaf2f + rtcollection_remove_repeated_points@Base 0.0~20151215-d1aaf2f + rtcollection_reserve@Base 0.0~20151215-d1aaf2f + rtcollection_same@Base 0.0~20151215-d1aaf2f + rtcollection_segmentize2d@Base 0.0~20151215-d1aaf2f + rtcollection_simplify@Base 0.0~20151215-d1aaf2f + rtcollection_startpoint@Base 0.0~20151215-d1aaf2f + rtcollection_stroke@Base 0.0~20151215-d1aaf2f + rtcompound_add_rtgeom@Base 0.0~20151215-d1aaf2f + rtcompound_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtcompound_construct_empty@Base 0.0~20151215-d1aaf2f + rtcompound_construct_from_rtline@Base 0.0~20151215-d1aaf2f + rtcompound_contains_point@Base 0.0~20151215-d1aaf2f + rtcompound_get_endpoint@Base 0.0~20151215-d1aaf2f + rtcompound_get_rtpoint@Base 0.0~20151215-d1aaf2f + rtcompound_get_startpoint@Base 0.0~20151215-d1aaf2f + rtcompound_is_closed@Base 0.0~20151215-d1aaf2f + rtcompound_length@Base 0.0~20151215-d1aaf2f + rtcompound_length_2d@Base 0.0~20151215-d1aaf2f + rtcompound_stroke@Base 0.0~20151215-d1aaf2f + rtcurvepoly_add_ring@Base 0.0~20151215-d1aaf2f + rtcurvepoly_area@Base 0.0~20151215-d1aaf2f + rtcurvepoly_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtcurvepoly_construct_empty@Base 0.0~20151215-d1aaf2f + rtcurvepoly_construct_from_rtpoly@Base 0.0~20151215-d1aaf2f + rtcurvepoly_perimeter@Base 0.0~20151215-d1aaf2f + rtcurvepoly_perimeter_2d@Base 0.0~20151215-d1aaf2f + rtcurvepoly_stroke@Base 0.0~20151215-d1aaf2f + rtdebug@Base 0.0~20151215-d1aaf2f + rterror@Base 0.0~20151215-d1aaf2f + rtfree@Base 0.0~20151215-d1aaf2f + rtgeom_add_bbox@Base 0.0~20151215-d1aaf2f + rtgeom_add_bbox_deep@Base 0.0~20151215-d1aaf2f + rtgeom_affine@Base 0.0~20151215-d1aaf2f + rtgeom_area@Base 0.0~20151215-d1aaf2f + rtgeom_area_sphere@Base 0.0~20151215-d1aaf2f + rtgeom_area_spheroid@Base 0.0~20151215-d1aaf2f + rtgeom_as_curve@Base 0.0~20151215-d1aaf2f + rtgeom_as_multi@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtcircstring@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtcollection@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtcompound@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtcurvepoly@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtline@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtmline@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtmpoint@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtmpoly@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtpoint@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtpoly@Base 0.0~20151215-d1aaf2f + rtgeom_as_rtpsurface@Base 0.0~20151215-d1aaf2f + rtgeom_as_rttin@Base 0.0~20151215-d1aaf2f + rtgeom_as_rttriangle@Base 0.0~20151215-d1aaf2f + rtgeom_azumith_spheroid@Base 0.0~20151215-d1aaf2f + rtgeom_buildarea@Base 0.0~20151215-d1aaf2f + rtgeom_calculate_circ_tree@Base 0.0~20151215-d1aaf2f + rtgeom_calculate_gbox@Base 0.0~20151215-d1aaf2f + rtgeom_calculate_gbox_cartesian@Base 0.0~20151215-d1aaf2f + rtgeom_calculate_gbox_geodetic@Base 0.0~20151215-d1aaf2f + rtgeom_cancel_interrupt@Base 0.0~20151215-d1aaf2f + rtgeom_check_geodetic@Base 0.0~20151215-d1aaf2f + rtgeom_clip_by_rect@Base 0.0~20151215-d1aaf2f + rtgeom_clip_to_ordinate_range@Base 0.0~20151215-d1aaf2f + rtgeom_clone@Base 0.0~20151215-d1aaf2f + rtgeom_clone_deep@Base 0.0~20151215-d1aaf2f + rtgeom_closest_line@Base 0.0~20151215-d1aaf2f + rtgeom_closest_line_3d@Base 0.0~20151215-d1aaf2f + rtgeom_closest_point@Base 0.0~20151215-d1aaf2f + rtgeom_closest_point_3d@Base 0.0~20151215-d1aaf2f + rtgeom_construct_empty@Base 0.0~20151215-d1aaf2f + rtgeom_contains_point@Base 0.0~20151215-d1aaf2f + rtgeom_count_rings@Base 0.0~20151215-d1aaf2f + rtgeom_count_vertices@Base 0.0~20151215-d1aaf2f + rtgeom_covers_rtgeom_sphere@Base 0.0~20151215-d1aaf2f + rtgeom_cpa_within@Base 0.0~20151215-d1aaf2f + rtgeom_delaunay_triangulation@Base 0.0~20151215-d1aaf2f + rtgeom_difference@Base 0.0~20151215-d1aaf2f + rtgeom_dimension@Base 0.0~20151215-d1aaf2f + rtgeom_dimensionality@Base 0.0~20151215-d1aaf2f + rtgeom_distance_spheroid@Base 0.0~20151215-d1aaf2f + rtgeom_drop_bbox@Base 0.0~20151215-d1aaf2f + rtgeom_drop_srid@Base 0.0~20151215-d1aaf2f + rtgeom_extent_to_gml2@Base 0.0~20151215-d1aaf2f + rtgeom_extent_to_gml3@Base 0.0~20151215-d1aaf2f + rtgeom_flip_coordinates@Base 0.0~20151215-d1aaf2f + rtgeom_force_2d@Base 0.0~20151215-d1aaf2f + rtgeom_force_3dm@Base 0.0~20151215-d1aaf2f + rtgeom_force_3dz@Base 0.0~20151215-d1aaf2f + rtgeom_force_4d@Base 0.0~20151215-d1aaf2f + rtgeom_force_clockwise@Base 0.0~20151215-d1aaf2f + rtgeom_force_dims@Base 0.0~20151215-d1aaf2f + rtgeom_force_geodetic@Base 0.0~20151215-d1aaf2f + rtgeom_force_sfs@Base 0.0~20151215-d1aaf2f + rtgeom_free@Base 0.0~20151215-d1aaf2f + rtgeom_from_geojson@Base 0.0~20151215-d1aaf2f + rtgeom_from_gserialized@Base 0.0~20151215-d1aaf2f + rtgeom_from_hexwkb@Base 0.0~20151215-d1aaf2f + rtgeom_from_twkb@Base 0.0~20151215-d1aaf2f + rtgeom_from_twkb_state@Base 0.0~20151215-d1aaf2f + rtgeom_from_wkb@Base 0.0~20151215-d1aaf2f + rtgeom_from_wkb_state@Base 0.0~20151215-d1aaf2f + rtgeom_furthest_line@Base 0.0~20151215-d1aaf2f + rtgeom_furthest_line_3d@Base 0.0~20151215-d1aaf2f + rtgeom_furthest_point@Base 0.0~20151215-d1aaf2f + rtgeom_geohash@Base 0.0~20151215-d1aaf2f + rtgeom_geohash_precision@Base 0.0~20151215-d1aaf2f + rtgeom_geos_ensure_init@Base 0.0~20151215-d1aaf2f + rtgeom_geos_error@Base 0.0~20151215-d1aaf2f + rtgeom_geos_noop@Base 0.0~20151215-d1aaf2f + rtgeom_geos_version@Base 0.0~20151215-d1aaf2f + rtgeom_get_bbox@Base 0.0~20151215-d1aaf2f + rtgeom_get_last_geos_error@Base 0.0~20151215-d1aaf2f + rtgeom_get_srid@Base 0.0~20151215-d1aaf2f + rtgeom_get_type@Base 0.0~20151215-d1aaf2f + rtgeom_grid@Base 0.0~20151215-d1aaf2f + rtgeom_has_arc@Base 0.0~20151215-d1aaf2f + rtgeom_has_m@Base 0.0~20151215-d1aaf2f + rtgeom_has_srid@Base 0.0~20151215-d1aaf2f + rtgeom_has_z@Base 0.0~20151215-d1aaf2f + rtgeom_homogenize@Base 0.0~20151215-d1aaf2f + rtgeom_init@Base 0.0~20151215-d1aaf2f + rtgeom_interpolate_point@Base 0.0~20151215-d1aaf2f + rtgeom_intersection@Base 0.0~20151215-d1aaf2f + rtgeom_is_closed@Base 0.0~20151215-d1aaf2f + rtgeom_is_collection@Base 0.0~20151215-d1aaf2f + rtgeom_is_empty@Base 0.0~20151215-d1aaf2f + rtgeom_is_simple@Base 0.0~20151215-d1aaf2f + rtgeom_is_trajectory@Base 0.0~20151215-d1aaf2f + rtgeom_length@Base 0.0~20151215-d1aaf2f + rtgeom_length_2d@Base 0.0~20151215-d1aaf2f + rtgeom_length_spheroid@Base 0.0~20151215-d1aaf2f + rtgeom_linemerge@Base 0.0~20151215-d1aaf2f + rtgeom_locate_along@Base 0.0~20151215-d1aaf2f + rtgeom_locate_between@Base 0.0~20151215-d1aaf2f + rtgeom_longitude_shift@Base 0.0~20151215-d1aaf2f + rtgeom_make_valid@Base 0.0~20151215-d1aaf2f + rtgeom_maxdistance2d@Base 0.0~20151215-d1aaf2f + rtgeom_maxdistance2d_tolerance@Base 0.0~20151215-d1aaf2f + rtgeom_maxdistance3d@Base 0.0~20151215-d1aaf2f + rtgeom_maxdistance3d_tolerance@Base 0.0~20151215-d1aaf2f + rtgeom_mindistance2d@Base 0.0~20151215-d1aaf2f + rtgeom_mindistance2d_tolerance@Base 0.0~20151215-d1aaf2f + rtgeom_mindistance3d@Base 0.0~20151215-d1aaf2f + rtgeom_mindistance3d_tolerance@Base 0.0~20151215-d1aaf2f + rtgeom_ndims@Base 0.0~20151215-d1aaf2f + rtgeom_needs_bbox@Base 0.0~20151215-d1aaf2f + rtgeom_node@Base 0.0~20151215-d1aaf2f + rtgeom_normalize@Base 0.0~20151215-d1aaf2f + rtgeom_nudge_geodetic@Base 0.0~20151215-d1aaf2f + rtgeom_offsetcurve@Base 0.0~20151215-d1aaf2f + rtgeom_perimeter@Base 0.0~20151215-d1aaf2f + rtgeom_perimeter_2d@Base 0.0~20151215-d1aaf2f + rtgeom_project_spheroid@Base 0.0~20151215-d1aaf2f + rtgeom_register_interrupt_callback@Base 0.0~20151215-d1aaf2f + rtgeom_release@Base 0.0~20151215-d1aaf2f + rtgeom_remove_repeated_points@Base 0.0~20151215-d1aaf2f + rtgeom_request_interrupt@Base 0.0~20151215-d1aaf2f + rtgeom_reverse@Base 0.0~20151215-d1aaf2f + rtgeom_same@Base 0.0~20151215-d1aaf2f + rtgeom_scale@Base 0.0~20151215-d1aaf2f + rtgeom_segmentize2d@Base 0.0~20151215-d1aaf2f + rtgeom_segmentize_sphere@Base 0.0~20151215-d1aaf2f + rtgeom_set_debug_logger@Base 0.0~20151215-d1aaf2f + rtgeom_set_error_logger@Base 0.0~20151215-d1aaf2f + rtgeom_set_geodetic@Base 0.0~20151215-d1aaf2f + rtgeom_set_notice_logger@Base 0.0~20151215-d1aaf2f + rtgeom_set_srid@Base 0.0~20151215-d1aaf2f + rtgeom_sharedpaths@Base 0.0~20151215-d1aaf2f + rtgeom_simplify@Base 0.0~20151215-d1aaf2f + rtgeom_snap@Base 0.0~20151215-d1aaf2f + rtgeom_split@Base 0.0~20151215-d1aaf2f + rtgeom_startpoint@Base 0.0~20151215-d1aaf2f + rtgeom_stroke@Base 0.0~20151215-d1aaf2f + rtgeom_subdivide@Base 0.0~20151215-d1aaf2f + rtgeom_summary@Base 0.0~20151215-d1aaf2f + rtgeom_swap_ordinates@Base 0.0~20151215-d1aaf2f + rtgeom_symdifference@Base 0.0~20151215-d1aaf2f + rtgeom_tcpa@Base 0.0~20151215-d1aaf2f + rtgeom_to_ewkt@Base 0.0~20151215-d1aaf2f + rtgeom_to_geojson@Base 0.0~20151215-d1aaf2f + rtgeom_to_gml2@Base 0.0~20151215-d1aaf2f + rtgeom_to_gml3@Base 0.0~20151215-d1aaf2f + rtgeom_to_hexwkb@Base 0.0~20151215-d1aaf2f + rtgeom_to_kml2@Base 0.0~20151215-d1aaf2f + rtgeom_to_svg@Base 0.0~20151215-d1aaf2f + rtgeom_to_twkb@Base 0.0~20151215-d1aaf2f + rtgeom_to_twkb_with_idlist@Base 0.0~20151215-d1aaf2f + rtgeom_to_wkb@Base 0.0~20151215-d1aaf2f + rtgeom_to_wkt@Base 0.0~20151215-d1aaf2f + rtgeom_to_x3d3@Base 0.0~20151215-d1aaf2f + rtgeom_unaryunion@Base 0.0~20151215-d1aaf2f + rtgeom_union@Base 0.0~20151215-d1aaf2f + rtgeom_unstroke@Base 0.0~20151215-d1aaf2f + rtgeom_version@Base 0.0~20151215-d1aaf2f + rtline_add_rtpoint@Base 0.0~20151215-d1aaf2f + rtline_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtline_clip_to_ordinate_range@Base 0.0~20151215-d1aaf2f + rtline_clone@Base 0.0~20151215-d1aaf2f + rtline_clone_deep@Base 0.0~20151215-d1aaf2f + rtline_construct@Base 0.0~20151215-d1aaf2f + rtline_construct_empty@Base 0.0~20151215-d1aaf2f + rtline_count_vertices@Base 0.0~20151215-d1aaf2f + rtline_crossing_direction@Base 0.0~20151215-d1aaf2f + rtline_force_dims@Base 0.0~20151215-d1aaf2f + rtline_free@Base 0.0~20151215-d1aaf2f + rtline_from_ptarray@Base 0.0~20151215-d1aaf2f + rtline_from_rtgeom_array@Base 0.0~20151215-d1aaf2f + rtline_from_rtmpoint@Base 0.0~20151215-d1aaf2f + rtline_get_rtpoint@Base 0.0~20151215-d1aaf2f + rtline_grid@Base 0.0~20151215-d1aaf2f + rtline_is_closed@Base 0.0~20151215-d1aaf2f + rtline_is_empty@Base 0.0~20151215-d1aaf2f + rtline_is_trajectory@Base 0.0~20151215-d1aaf2f + rtline_length@Base 0.0~20151215-d1aaf2f + rtline_length_2d@Base 0.0~20151215-d1aaf2f + rtline_make_geos_friendly@Base 0.0~20151215-d1aaf2f + rtline_measured_from_rtline@Base 0.0~20151215-d1aaf2f + rtline_release@Base 0.0~20151215-d1aaf2f + rtline_remove_repeated_points@Base 0.0~20151215-d1aaf2f + rtline_removepoint@Base 0.0~20151215-d1aaf2f + rtline_reverse@Base 0.0~20151215-d1aaf2f + rtline_same@Base 0.0~20151215-d1aaf2f + rtline_segmentize2d@Base 0.0~20151215-d1aaf2f + rtline_setPoint4d@Base 0.0~20151215-d1aaf2f + rtline_simplify@Base 0.0~20151215-d1aaf2f + rtline_split_by_point_to@Base 0.0~20151215-d1aaf2f + rtline_unstroke@Base 0.0~20151215-d1aaf2f + rtmcurve_stroke@Base 0.0~20151215-d1aaf2f + rtmessage_truncate@Base 0.0~20151215-d1aaf2f + rtmline_add_rtline@Base 0.0~20151215-d1aaf2f + rtmline_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtmline_clip_to_ordinate_range@Base 0.0~20151215-d1aaf2f + rtmline_construct_empty@Base 0.0~20151215-d1aaf2f + rtmline_free@Base 0.0~20151215-d1aaf2f + rtmline_measured_from_rtmline@Base 0.0~20151215-d1aaf2f + rtmline_release@Base 0.0~20151215-d1aaf2f + rtmline_unstroke@Base 0.0~20151215-d1aaf2f + rtmpoint_add_rtpoint@Base 0.0~20151215-d1aaf2f + rtmpoint_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtmpoint_clip_to_ordinate_range@Base 0.0~20151215-d1aaf2f + rtmpoint_construct@Base 0.0~20151215-d1aaf2f + rtmpoint_construct_empty@Base 0.0~20151215-d1aaf2f + rtmpoint_free@Base 0.0~20151215-d1aaf2f + rtmpoint_release@Base 0.0~20151215-d1aaf2f + rtmpoint_remove_repeated_points@Base 0.0~20151215-d1aaf2f + rtmpoly_add_rtpoly@Base 0.0~20151215-d1aaf2f + rtmpoly_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtmpoly_construct_empty@Base 0.0~20151215-d1aaf2f + rtmpoly_free@Base 0.0~20151215-d1aaf2f + rtmpoly_release@Base 0.0~20151215-d1aaf2f + rtmpolygon_unstroke@Base 0.0~20151215-d1aaf2f + rtmsurface_stroke@Base 0.0~20151215-d1aaf2f + rtnotice@Base 0.0~20151215-d1aaf2f + rtpoint_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtpoint_clip_to_ordinate_range@Base 0.0~20151215-d1aaf2f + rtpoint_clone@Base 0.0~20151215-d1aaf2f + rtpoint_construct@Base 0.0~20151215-d1aaf2f + rtpoint_construct_empty@Base 0.0~20151215-d1aaf2f + rtpoint_force_dims@Base 0.0~20151215-d1aaf2f + rtpoint_free@Base 0.0~20151215-d1aaf2f + rtpoint_getPoint2d_p@Base 0.0~20151215-d1aaf2f + rtpoint_getPoint3dm_p@Base 0.0~20151215-d1aaf2f + rtpoint_getPoint3dz_p@Base 0.0~20151215-d1aaf2f + rtpoint_getPoint4d_p@Base 0.0~20151215-d1aaf2f + rtpoint_get_m@Base 0.0~20151215-d1aaf2f + rtpoint_get_ordinate@Base 0.0~20151215-d1aaf2f + rtpoint_get_x@Base 0.0~20151215-d1aaf2f + rtpoint_get_y@Base 0.0~20151215-d1aaf2f + rtpoint_get_z@Base 0.0~20151215-d1aaf2f + rtpoint_grid@Base 0.0~20151215-d1aaf2f + rtpoint_inside_circle@Base 0.0~20151215-d1aaf2f + rtpoint_is_empty@Base 0.0~20151215-d1aaf2f + rtpoint_make2d@Base 0.0~20151215-d1aaf2f + rtpoint_make3dm@Base 0.0~20151215-d1aaf2f + rtpoint_make3dz@Base 0.0~20151215-d1aaf2f + rtpoint_make4d@Base 0.0~20151215-d1aaf2f + rtpoint_make@Base 0.0~20151215-d1aaf2f + rtpoint_release@Base 0.0~20151215-d1aaf2f + rtpoint_same@Base 0.0~20151215-d1aaf2f + rtpoint_set_ordinate@Base 0.0~20151215-d1aaf2f + rtpoint_to_latlon@Base 0.0~20151215-d1aaf2f + rtpointiterator_create@Base 0.0~20151215-d1aaf2f + rtpointiterator_create_rw@Base 0.0~20151215-d1aaf2f + rtpointiterator_destroy@Base 0.0~20151215-d1aaf2f + rtpointiterator_has_next@Base 0.0~20151215-d1aaf2f + rtpointiterator_modify_next@Base 0.0~20151215-d1aaf2f + rtpointiterator_next@Base 0.0~20151215-d1aaf2f + rtpointiterator_peek@Base 0.0~20151215-d1aaf2f + rtpoly_add_ring@Base 0.0~20151215-d1aaf2f + rtpoly_area@Base 0.0~20151215-d1aaf2f + rtpoly_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtpoly_clone@Base 0.0~20151215-d1aaf2f + rtpoly_clone_deep@Base 0.0~20151215-d1aaf2f + rtpoly_construct@Base 0.0~20151215-d1aaf2f + rtpoly_construct_empty@Base 0.0~20151215-d1aaf2f + rtpoly_contains_point@Base 0.0~20151215-d1aaf2f + rtpoly_count_vertices@Base 0.0~20151215-d1aaf2f + rtpoly_covers_point2d@Base 0.0~20151215-d1aaf2f + rtpoly_force_clockwise@Base 0.0~20151215-d1aaf2f + rtpoly_force_dims@Base 0.0~20151215-d1aaf2f + rtpoly_free@Base 0.0~20151215-d1aaf2f + rtpoly_from_rtlines@Base 0.0~20151215-d1aaf2f + rtpoly_grid@Base 0.0~20151215-d1aaf2f + rtpoly_is_closed@Base 0.0~20151215-d1aaf2f + rtpoly_is_empty@Base 0.0~20151215-d1aaf2f + rtpoly_make_geos_friendly@Base 0.0~20151215-d1aaf2f + rtpoly_perimeter@Base 0.0~20151215-d1aaf2f + rtpoly_perimeter_2d@Base 0.0~20151215-d1aaf2f + rtpoly_pt_outside@Base 0.0~20151215-d1aaf2f + rtpoly_release@Base 0.0~20151215-d1aaf2f + rtpoly_remove_repeated_points@Base 0.0~20151215-d1aaf2f + rtpoly_reverse@Base 0.0~20151215-d1aaf2f + rtpoly_same@Base 0.0~20151215-d1aaf2f + rtpoly_segmentize2d@Base 0.0~20151215-d1aaf2f + rtpoly_simplify@Base 0.0~20151215-d1aaf2f + rtpoly_startpoint@Base 0.0~20151215-d1aaf2f + rtpolygon_unstroke@Base 0.0~20151215-d1aaf2f + rtpsurface_add_rtpoly@Base 0.0~20151215-d1aaf2f + rtpsurface_as_rtgeom@Base 0.0~20151215-d1aaf2f + rtpsurface_free@Base 0.0~20151215-d1aaf2f + rtpsurface_is_closed@Base 0.0~20151215-d1aaf2f + rtrealloc@Base 0.0~20151215-d1aaf2f + rtt_AddEdgeModFace@Base 0.0~20151215-d1aaf2f + rtt_AddEdgeNewFaces@Base 0.0~20151215-d1aaf2f + rtt_AddIsoEdge@Base 0.0~20151215-d1aaf2f + rtt_AddIsoNode@Base 0.0~20151215-d1aaf2f + rtt_AddLine@Base 0.0~20151215-d1aaf2f + rtt_AddPoint@Base 0.0~20151215-d1aaf2f + rtt_AddPolygon@Base 0.0~20151215-d1aaf2f + rtt_BackendIfaceRegisterCallbacks@Base 0.0~20151215-d1aaf2f + rtt_ChangeEdgeGeom@Base 0.0~20151215-d1aaf2f + rtt_CreateBackendIface@Base 0.0~20151215-d1aaf2f + rtt_FreeBackendIface@Base 0.0~20151215-d1aaf2f + rtt_FreeTopology@Base 0.0~20151215-d1aaf2f + rtt_GetEdgeByPoint@Base 0.0~20151215-d1aaf2f + rtt_GetFaceByPoint@Base 0.0~20151215-d1aaf2f + rtt_GetFaceEdges@Base 0.0~20151215-d1aaf2f + rtt_GetFaceGeometry@Base 0.0~20151215-d1aaf2f + rtt_GetNodeByPoint@Base 0.0~20151215-d1aaf2f + rtt_LoadTopology@Base 0.0~20151215-d1aaf2f + rtt_ModEdgeHeal@Base 0.0~20151215-d1aaf2f + rtt_ModEdgeSplit@Base 0.0~20151215-d1aaf2f + rtt_MoveIsoNode@Base 0.0~20151215-d1aaf2f + rtt_NewEdgeHeal@Base 0.0~20151215-d1aaf2f + rtt_NewEdgesSplit@Base 0.0~20151215-d1aaf2f + rtt_RemEdgeModFace@Base 0.0~20151215-d1aaf2f + rtt_RemEdgeNewFace@Base 0.0~20151215-d1aaf2f + rtt_RemIsoEdge@Base 0.0~20151215-d1aaf2f + rtt_RemoveIsoNode@Base 0.0~20151215-d1aaf2f + rtt_be_ExistsCoincidentNode@Base 0.0~20151215-d1aaf2f + rtt_be_ExistsEdgeIntersectingPoint@Base 0.0~20151215-d1aaf2f + rtt_be_deleteEdges@Base 0.0~20151215-d1aaf2f + rtt_be_freeTopology@Base 0.0~20151215-d1aaf2f + rtt_be_getEdgeById@Base 0.0~20151215-d1aaf2f + rtt_be_getEdgeWithinDistance2D@Base 0.0~20151215-d1aaf2f + rtt_be_getFaceContainingPoint@Base 0.0~20151215-d1aaf2f + rtt_be_getNextEdgeId@Base 0.0~20151215-d1aaf2f + rtt_be_getNodeById@Base 0.0~20151215-d1aaf2f + rtt_be_getNodeWithinDistance2D@Base 0.0~20151215-d1aaf2f + rtt_be_insertEdges@Base 0.0~20151215-d1aaf2f + rtt_be_insertNodes@Base 0.0~20151215-d1aaf2f + rtt_be_lastErrorMessage@Base 0.0~20151215-d1aaf2f + rtt_be_loadTopologyByName@Base 0.0~20151215-d1aaf2f + rtt_be_updateEdges@Base 0.0~20151215-d1aaf2f + rtt_be_updateTopoGeomEdgeSplit@Base 0.0~20151215-d1aaf2f + rttin_add_rttriangle@Base 0.0~20151215-d1aaf2f + rttin_as_rtgeom@Base 0.0~20151215-d1aaf2f + rttin_free@Base 0.0~20151215-d1aaf2f + rttin_from_geos@Base 0.0~20151215-d1aaf2f + rttin_is_closed@Base 0.0~20151215-d1aaf2f + rttriangle_area@Base 0.0~20151215-d1aaf2f + rttriangle_as_rtgeom@Base 0.0~20151215-d1aaf2f + rttriangle_clone@Base 0.0~20151215-d1aaf2f + rttriangle_construct@Base 0.0~20151215-d1aaf2f + rttriangle_construct_empty@Base 0.0~20151215-d1aaf2f + rttriangle_force_clockwise@Base 0.0~20151215-d1aaf2f + rttriangle_free@Base 0.0~20151215-d1aaf2f + rttriangle_from_rtline@Base 0.0~20151215-d1aaf2f + rttriangle_is_empty@Base 0.0~20151215-d1aaf2f + rttriangle_is_repeated_points@Base 0.0~20151215-d1aaf2f + rttriangle_perimeter@Base 0.0~20151215-d1aaf2f + rttriangle_perimeter_2d@Base 0.0~20151215-d1aaf2f + rttriangle_release@Base 0.0~20151215-d1aaf2f + rttriangle_reverse@Base 0.0~20151215-d1aaf2f + rttriangle_same@Base 0.0~20151215-d1aaf2f + rttype_get_collectiontype@Base 0.0~20151215-d1aaf2f + rttype_is_collection@Base 0.0~20151215-d1aaf2f + rttype_name@Base 0.0~20151215-d1aaf2f + signum@Base 0.0~20151215-d1aaf2f + sphere_direction@Base 0.0~20151215-d1aaf2f + sphere_distance@Base 0.0~20151215-d1aaf2f + sphere_distance_cartesian@Base 0.0~20151215-d1aaf2f + sphere_project@Base 0.0~20151215-d1aaf2f + spheroid_direction@Base 0.0~20151215-d1aaf2f + spheroid_distance@Base 0.0~20151215-d1aaf2f + spheroid_init@Base 0.0~20151215-d1aaf2f + spheroid_project@Base 0.0~20151215-d1aaf2f + stringbuffer_append@Base 0.0~20151215-d1aaf2f + stringbuffer_aprintf@Base 0.0~20151215-d1aaf2f + stringbuffer_clear@Base 0.0~20151215-d1aaf2f + stringbuffer_copy@Base 0.0~20151215-d1aaf2f + stringbuffer_create@Base 0.0~20151215-d1aaf2f + stringbuffer_create_with_size@Base 0.0~20151215-d1aaf2f + stringbuffer_destroy@Base 0.0~20151215-d1aaf2f + stringbuffer_getlength@Base 0.0~20151215-d1aaf2f + stringbuffer_getstring@Base 0.0~20151215-d1aaf2f + stringbuffer_getstringcopy@Base 0.0~20151215-d1aaf2f + stringbuffer_lastchar@Base 0.0~20151215-d1aaf2f + stringbuffer_set@Base 0.0~20151215-d1aaf2f + stringbuffer_trim_trailing_white@Base 0.0~20151215-d1aaf2f + stringbuffer_trim_trailing_zeroes@Base 0.0~20151215-d1aaf2f + struct_cmp_by_measure@Base 0.0~20151215-d1aaf2f + trim_trailing_zeros@Base 0.0~20151215-d1aaf2f + unit_normal@Base 0.0~20151215-d1aaf2f + vector_angle@Base 0.0~20151215-d1aaf2f + vector_rotate@Base 0.0~20151215-d1aaf2f + vector_sum@Base 0.0~20151215-d1aaf2f + x_to_z@Base 0.0~20151215-d1aaf2f + y_to_z@Base 0.0~20151215-d1aaf2f + z_to_latitude@Base 0.0~20151215-d1aaf2f diff --git a/debian/patches/make-clean.patch b/debian/patches/make-clean.patch new file mode 100644 index 0000000..1882ca7 --- /dev/null +++ b/debian/patches/make-clean.patch @@ -0,0 +1,29 @@ +Description: Don't trigger dependencies for uninstall & clean targets. +Author: Bas Couwenberg <[email protected]> + +--- a/Makefile ++++ b/Makefile +@@ -1,23 +0,0 @@ +-all install uninstall clean: config.status +- $(MAKE) -C src $@ +- +-maintainer-clean-local: +- rm -f configure +- rm -f config.guess config.rpath config.sub +- rm -f libtool install-sh ltmain.sh +- +-maintainer-clean: distclean +- $(MAKE) maintainer-clean-local +- +-distclean-local: +- rm -Rf autom4te.cache +- rm -f config.log config.cache config.status +- +-distclean: clean +- $(MAKE) distclean-local +- +-configure: configure.ac +- ./autogen.sh +- +-config.status: configure +- ./configure diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..59070f0 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +make-clean.patch diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..3a1838a --- /dev/null +++ b/debian/rules @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +# DH_VERBOSE := 1 + +UPSTREAM_VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p' | sed -e 's/\+.*//; s/^[0-9]://') + +%: + dh $@ \ + --with autoreconf \ + --parallel + +override_dh_autoreconf: + ./autogen.sh + +override_dh_auto_build: + $(MAKE) -C src + +override_dh_auto_install: + $(MAKE) -C src install DESTDIR=$(CURDIR)/debian/tmp + + # Don't install .la files + $(RM) $(CURDIR)/debian/tmp/usr/lib/*/*.la + +override_dh_install: + dh_install --list-missing + +override_dh_makeshlibs: + dh_makeshlibs -- -v$(UPSTREAM_VERSION) + +get-orig-source: + . debian/get-orig-source + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..18f428c --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,5 @@ +--- +Bug-Database: https://gitlab.com/rttopo/rttopo/issues +Name: rttopo +Repository: https://gitlab.com/rttopo/rttopo.git +Repository-Browse: https://gitlab.com/rttopo/rttopo diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..4384217 --- /dev/null +++ b/debian/watch @@ -0,0 +1,7 @@ +#version=3 +#opts=\ +#dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ +#uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/,\ +#filenamemangle=s/.*\.(tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))\?ref=v?(\d\S*)/rttopo-$1.$2/g \ +#https://gitlab.com/rttopo/rttopo/tags \ +#.*archive\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))\?ref=v?(\d\S*) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/librttopo.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

