From 596ea080a6638a7bf26a32d93895a9e8c7e5b10f Mon Sep 17 00:00:00 2001 From: Shiwei Wang <4977975+wsw0108@users.noreply.github.com> Date: Mon, 4 Jul 2022 14:48:31 +0800 Subject: [PATCH] Add mapbox_geometry (#1326) * Add mapbox_geometry * try fix patch for mapbox_geometry * try fix patch for mapbox_geometry * try fix patch for mapbox_geometry * try fix patch for mapbox_geometry * try fix patch for mapbox_geometry --- .../patches/1.1.0/pragma.patch | 25 +++++++++++ .../patches/2.0.3/pragma.patch | 25 +++++++++++ packages/m/mapbox_geometry/xmake.lua | 43 +++++++++++++++++++ 3 files changed, 93 insertions(+) create mode 100644 packages/m/mapbox_geometry/patches/1.1.0/pragma.patch create mode 100644 packages/m/mapbox_geometry/patches/2.0.3/pragma.patch create mode 100644 packages/m/mapbox_geometry/xmake.lua diff --git a/packages/m/mapbox_geometry/patches/1.1.0/pragma.patch b/packages/m/mapbox_geometry/patches/1.1.0/pragma.patch new file mode 100644 index 000000000..04206429a --- /dev/null +++ b/packages/m/mapbox_geometry/patches/1.1.0/pragma.patch @@ -0,0 +1,25 @@ +diff --git a/include/mapbox/geometry/point.hpp b/include/mapbox/geometry/point.hpp +index da8d677..4d49ba5 100644 +--- a/include/mapbox/geometry/point.hpp ++++ b/include/mapbox/geometry/point.hpp +@@ -21,8 +21,10 @@ struct point + T y; + }; + ++#if defined(__GNUC__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wfloat-equal" ++#endif + + template <typename T> + constexpr bool operator==(point<T> const& lhs, point<T> const& rhs) +@@ -30,7 +32,9 @@ constexpr bool operator==(point<T> const& lhs, point<T> const& rhs) + return lhs.x == rhs.x && lhs.y == rhs.y; + } + ++#if defined(__GNUC__) + #pragma GCC diagnostic pop ++#endif + + template <typename T> + constexpr bool operator!=(point<T> const& lhs, point<T> const& rhs) diff --git a/packages/m/mapbox_geometry/patches/2.0.3/pragma.patch b/packages/m/mapbox_geometry/patches/2.0.3/pragma.patch new file mode 100644 index 000000000..04206429a --- /dev/null +++ b/packages/m/mapbox_geometry/patches/2.0.3/pragma.patch @@ -0,0 +1,25 @@ +diff --git a/include/mapbox/geometry/point.hpp b/include/mapbox/geometry/point.hpp +index da8d677..4d49ba5 100644 +--- a/include/mapbox/geometry/point.hpp ++++ b/include/mapbox/geometry/point.hpp +@@ -21,8 +21,10 @@ struct point + T y; + }; + ++#if defined(__GNUC__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wfloat-equal" ++#endif + + template <typename T> + constexpr bool operator==(point<T> const& lhs, point<T> const& rhs) +@@ -30,7 +32,9 @@ constexpr bool operator==(point<T> const& lhs, point<T> const& rhs) + return lhs.x == rhs.x && lhs.y == rhs.y; + } + ++#if defined(__GNUC__) + #pragma GCC diagnostic pop ++#endif + + template <typename T> + constexpr bool operator!=(point<T> const& lhs, point<T> const& rhs) diff --git a/packages/m/mapbox_geometry/xmake.lua b/packages/m/mapbox_geometry/xmake.lua new file mode 100644 index 000000000..aa3c89c7a --- /dev/null +++ b/packages/m/mapbox_geometry/xmake.lua @@ -0,0 +1,43 @@ +package("mapbox_geometry") + + set_kind("library", {headeronly = true}) + set_homepage("https://github.com/mapbox/geometry.hpp") + set_description("Provides header-only, generic C++ interfaces for geometry types, geometry collections, and features.") + set_license("ISC") + + add_urls("https://github.com/mapbox/geometry.hpp/archive/refs/tags/v$(version).zip", + "https://github.com/mapbox/geometry.hpp.git") + add_versions("1.1.0", "dc9203db94eda6b5377b96edeb4b53109cbf3d29e714d1d50c5cb598f2b39ab4") + add_versions("2.0.3", "64d1005d4ee9931ac162b853cfb4a7c8a8bda9992ba83211386a6b40955bcc49") + add_patches("1.1.0", path.join(os.scriptdir(), "patches", "1.1.0", "pragma.patch"), "235a89eb4d78874bb8e3e49c95317c540511f33a67dec80a41c6984df7ff20c5") + add_patches("2.0.3", path.join(os.scriptdir(), "patches", "2.0.3", "pragma.patch"), "235a89eb4d78874bb8e3e49c95317c540511f33a67dec80a41c6984df7ff20c5") + + add_deps("mapbox_variant") + + on_install(function (package) + io.writefile("xmake.lua", [[ + add_requires("mapbox_variant") + add_rules("mode.debug", "mode.release") + target("mapbox_geometry") + set_kind("headeronly") + add_headerfiles("include/(**/*.hpp)") + add_rules("utils.install.cmake_importfiles") + add_rules("utils.install.pkgconfig_importfiles") + ]]) + + local configs = {} + if package:config("shared") then + configs.kind = "shared" + end + import("package.tools.xmake").install(package, config) + end) + + on_test(function (package) + assert(package:check_cxxsnippets({test = [[ + #include <mapbox/geometry/point.hpp> + using mapbox::geometry::point; + void test () { + point<double> pt(1.0,0.0); + } + ]]}, {configs = {languages = "c++14"}, includes = "mapbox/geometry/point.hpp"})) + end)