From d162ba1860a88062f4cd61f8b52fc303ba0b2991 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 7 Aug 2021 00:16:33 +0100 Subject: gentoo resync : 07.08.2021 --- dev-ros/geodesy/Manifest | 6 +++--- dev-ros/geodesy/files/py3.patch | 28 ---------------------------- dev-ros/geodesy/geodesy-0.5.5.ebuild | 35 ----------------------------------- dev-ros/geodesy/geodesy-0.5.6.ebuild | 35 +++++++++++++++++++++++++++++++++++ 4 files changed, 38 insertions(+), 66 deletions(-) delete mode 100644 dev-ros/geodesy/geodesy-0.5.5.ebuild create mode 100644 dev-ros/geodesy/geodesy-0.5.6.ebuild (limited to 'dev-ros/geodesy') diff --git a/dev-ros/geodesy/Manifest b/dev-ros/geodesy/Manifest index 4dd262bc9ca1..e583bc3843f6 100644 --- a/dev-ros/geodesy/Manifest +++ b/dev-ros/geodesy/Manifest @@ -1,5 +1,5 @@ -AUX py3.patch 1627 BLAKE2B 050e4fe368d65e09ff9074c07e430d695fb5d0829ca75716146f861ad13a522bb364d70482840b225a4f71b5fed06f093bc8e5069e7d22c7156c615e6cf2792d SHA512 d2fd39c0c797dee88da86efc1a10e49f3bd8383b0f97e0e0f20461347aeaa2649ca7e426a872c7f2c5f2323d914e1beda5de7022c5cb7561e29b942c1d92ce8f -DIST geographic_info-0.5.5.tar.gz 27762 BLAKE2B 9235911d6a2b010e47722268f5aa14b2bd10dac73bf4445bcd6585c5094947e9ea43ee2ccb6d6a3b0ae788d149fcc546e6618f0097e4bde32d69ed9baacbf255 SHA512 a1699778cd85960603435e7b7d46831c7c5ac4b57f4a06e9f394933799151a5ebf95c59bc109ca05eeb9376763aae8c77bc9150081c81170f1778730145910ec -EBUILD geodesy-0.5.5.ebuild 1008 BLAKE2B f5f79e5f165f7277ae83f9fd363c3458c8496d4f9d315f457a22c8e8281089b5d916015d259e9ec4509fb2891580da63b6054ecd06e9c72da50fa2c154bb3696 SHA512 64a105b628a9d5adbb6d1ee222f34736acd065e93c45e2c23922e063fd480364efb165cdc14f022ea789ced48efa744a244246a5bfdd270563e0283f016563f3 +AUX py3.patch 524 BLAKE2B 68d93bc01ddd03660820d5e5ea6284ee595f18d0272423f9ddbb1357e18ecdb6280acfde2e00e62a921225d2a48837f289732b3321877be16102a21ea9e75371 SHA512 f854f820acc878c95bec1eca186c027ec0f3763195f6fd63a4a357aaf7affe3c20c640b3afecfa7ecce1702922904820d2a82c1d9caddfeace022478e4c5e91d +DIST geographic_info-0.5.6.tar.gz 28130 BLAKE2B 4d7013543db91c02c470c6b6dcb6e00070d5356f91ace20b3bb97aafa71eff2b525fc11994796f2de103b1df40efe8358d19a7e8fc0b1290c73cc28c791f22ce SHA512 d2f41320d2b094c2ea04593941e35d2b5581b84cc2f599099880dd671255dd59bc8787ad4a5640539cc25a13592df2ec7a887e3ea171398cfeafeccc669bd7f0 +EBUILD geodesy-0.5.6.ebuild 1008 BLAKE2B 8861dc85fcfe3ba308c59f377f3804178c0c6e6b07fcb89ab50212eb3865e268f1670eadc4a925ec8a9f598b1ddba55527bf567826cf5059e9fbdfec910ca3c4 SHA512 967203b07343af56ea218548aabe1f3a0ee94c1f8f4d15a8e77d91362ad136837033eafe2266d2eedc21811245a56bf30c75bb610196448a3c883725e3c55ae1 EBUILD geodesy-9999.ebuild 1008 BLAKE2B f5f79e5f165f7277ae83f9fd363c3458c8496d4f9d315f457a22c8e8281089b5d916015d259e9ec4509fb2891580da63b6054ecd06e9c72da50fa2c154bb3696 SHA512 64a105b628a9d5adbb6d1ee222f34736acd065e93c45e2c23922e063fd480364efb165cdc14f022ea789ced48efa744a244246a5bfdd270563e0283f016563f3 MISC metadata.xml 349 BLAKE2B f945481736db4b708a82107474a58d9dd6e805eae69557ea08bb80c9bff8913446618bd610ef7cfb69e84a88e6477de9fe4c2c86a1b693c7515114b78820ae1e SHA512 453f7929a678908957bfde47ef0816a11162200a6b5541850320d874b3419155c4efebae51ef2d1b542f73bb4dcb319fdd93098817819cad2a9cb74adf008918 diff --git a/dev-ros/geodesy/files/py3.patch b/dev-ros/geodesy/files/py3.patch index 08259ee976c1..66ef4e5dd3ca 100644 --- a/dev-ros/geodesy/files/py3.patch +++ b/dev-ros/geodesy/files/py3.patch @@ -1,31 +1,3 @@ -Index: geodesy/src/geodesy/wu_point.py -=================================================================== ---- geodesy.orig/src/geodesy/wu_point.py -+++ geodesy/src/geodesy/wu_point.py -@@ -159,12 +159,12 @@ class WuPointSet(): - # Initialize way point information. - self.way_point_ids = {} # points symbol table - self.n_points = len(self.points) -- for wid in xrange(self.n_points): -+ for wid in range(self.n_points): - self.way_point_ids[self.points[wid].id.uuid] = wid - - # Create empty list of UTM points, corresponding to map points. - # They will be evaluated lazily, when first needed. -- self.utm_points = [None for wid in xrange(self.n_points)] -+ self.utm_points = [None for wid in range(self.n_points)] - - def __contains__(self, item): - """ Point set membership. """ -@@ -259,7 +259,7 @@ class WuPointSet(): - """ - return self.way_point_ids.get(key, default) - -- def next(self): -+ def __next__(self): - """ Next iteration point. - - :returns: Next :class:`WuPoint`. Index: geodesy/tests/test_wu_point.py =================================================================== --- geodesy.orig/tests/test_wu_point.py diff --git a/dev-ros/geodesy/geodesy-0.5.5.ebuild b/dev-ros/geodesy/geodesy-0.5.5.ebuild deleted file mode 100644 index 88ea377b0cc7..000000000000 --- a/dev-ros/geodesy/geodesy-0.5.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -ROS_REPO_URI="https://github.com/ros-geographic-info/geographic_info" -KEYWORDS="~amd64" -ROS_SUBDIR=${PN} - -inherit ros-catkin - -DESCRIPTION="Python and C++ interfaces for manipulating geodetic coordinates" -LICENSE="BSD" -SLOT="0" -IUSE="" - -RDEPEND=" - dev-ros/angles - dev-ros/geographic_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] - dev-ros/geometry_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] - dev-ros/tf - dev-ros/unique_id - dev-ros/uuid_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] - $(python_gen_cond_dep "dev-python/pyproj[\${PYTHON_USEDEP}]") - dev-libs/boost:= -" -DEPEND="${RDEPEND} - dev-ros/geographic_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] - dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] - dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] - test? ( - dev-ros/rosunit[${PYTHON_SINGLE_USEDEP}] - dev-cpp/gtest - $(python_gen_cond_dep "dev-python/nose[\${PYTHON_USEDEP}]") - )" -PATCHES=( "${FILESDIR}/py3.patch" ) diff --git a/dev-ros/geodesy/geodesy-0.5.6.ebuild b/dev-ros/geodesy/geodesy-0.5.6.ebuild new file mode 100644 index 000000000000..52d160f557de --- /dev/null +++ b/dev-ros/geodesy/geodesy-0.5.6.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +ROS_REPO_URI="https://github.com/ros-geographic-info/geographic_info" +KEYWORDS="~amd64" +ROS_SUBDIR=${PN} + +inherit ros-catkin + +DESCRIPTION="Python and C++ interfaces for manipulating geodetic coordinates" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/angles + dev-ros/geographic_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] + dev-ros/geometry_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] + dev-ros/tf + dev-ros/unique_id + dev-ros/uuid_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] + $(python_gen_cond_dep "dev-python/pyproj[\${PYTHON_USEDEP}]") + dev-libs/boost:= +" +DEPEND="${RDEPEND} + dev-ros/geographic_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] + test? ( + dev-ros/rosunit[${PYTHON_SINGLE_USEDEP}] + dev-cpp/gtest + $(python_gen_cond_dep "dev-python/nose[\${PYTHON_USEDEP}]") + )" +PATCHES=( "${FILESDIR}/py3.patch" ) -- cgit v1.2.3