From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B812E138359 for ; Tue, 13 Oct 2020 12:24:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCE8FE0937; Tue, 13 Oct 2020 12:24:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9350E0937 for ; Tue, 13 Oct 2020 12:24:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4603340C57 for ; Tue, 13 Oct 2020 12:24:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15C623A4 for ; Tue, 13 Oct 2020 12:24:19 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1602591854.56a2f42fd91994056b8ea403a2953ecd0aa199ae.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python_orocos_kdl/files/, dev-python/python_orocos_kdl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python_orocos_kdl/files/0001-Declare-assignment-operator-private-for-SIP-Closes-2.patch dev-python/python_orocos_kdl/python_orocos_kdl-1.4.0-r1.ebuild dev-python/python_orocos_kdl/python_orocos_kdl-9999.ebuild X-VCS-Directories: dev-python/python_orocos_kdl/files/ dev-python/python_orocos_kdl/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: 56a2f42fd91994056b8ea403a2953ecd0aa199ae X-VCS-Branch: master Date: Tue, 13 Oct 2020 12:24:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: abb61ed1-5fda-442e-940d-dd344ae4d288 X-Archives-Hash: d20038781ba847c40329ed0780833cb9 commit: 56a2f42fd91994056b8ea403a2953ecd0aa199ae Author: Alexis Ballier gentoo org> AuthorDate: Tue Oct 13 12:22:35 2020 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Tue Oct 13 12:24:14 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56a2f42f dev-python/python_orocos_kdl: add py39 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Alexis Ballier gentoo.org> ...lare-assignment-operator-private-for-SIP-Closes-2.patch | 12 ++++++------ .../python_orocos_kdl/python_orocos_kdl-1.4.0-r1.ebuild | 14 +++++++------- dev-python/python_orocos_kdl/python_orocos_kdl-9999.ebuild | 14 +++++++------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/dev-python/python_orocos_kdl/files/0001-Declare-assignment-operator-private-for-SIP-Closes-2.patch b/dev-python/python_orocos_kdl/files/0001-Declare-assignment-operator-private-for-SIP-Closes-2.patch index b02f18747cf..6c8d93ed62e 100644 --- a/dev-python/python_orocos_kdl/files/0001-Declare-assignment-operator-private-for-SIP-Closes-2.patch +++ b/dev-python/python_orocos_kdl/files/0001-Declare-assignment-operator-private-for-SIP-Closes-2.patch @@ -16,10 +16,10 @@ operator. This PR makes this known to SIP as well. python_orocos_kdl/PyKDL/kinfam.sip | 29 ++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) -diff --git a/python_orocos_kdl/PyKDL/dynamics.sip b/python_orocos_kdl/PyKDL/dynamics.sip +diff --git a/PyKDL/dynamics.sip b/python_orocos_kdl/PyKDL/dynamics.sip index e0096dd..36f833c 100644 ---- a/python_orocos_kdl/PyKDL/dynamics.sip -+++ b/python_orocos_kdl/PyKDL/dynamics.sip +--- a/PyKDL/dynamics.sip ++++ b/PyKDL/dynamics.sip @@ -72,4 +72,7 @@ public: int JntToCoriolis(const JntArray &q, const JntArray &q_dot, JntArray &coriolis); int JntToMass(const JntArray &q, JntSpaceInertiaMatrix& H); @@ -28,10 +28,10 @@ index e0096dd..36f833c 100644 +private: + ChainDynParam& operator=(const ChainDynParam&); }; -diff --git a/python_orocos_kdl/PyKDL/kinfam.sip b/python_orocos_kdl/PyKDL/kinfam.sip +diff --git a/PyKDL/kinfam.sip b/python_orocos_kdl/PyKDL/kinfam.sip index d87fd00..e87ceb8 100644 ---- a/python_orocos_kdl/PyKDL/kinfam.sip -+++ b/python_orocos_kdl/PyKDL/kinfam.sip +--- a/PyKDL/kinfam.sip ++++ b/PyKDL/kinfam.sip @@ -344,6 +344,9 @@ public: ChainFkSolverPos_recursive(const Chain& chain); virtual int JntToCart(const JntArray& q_in, Frame& p_out,int segmentNr=-1); diff --git a/dev-python/python_orocos_kdl/python_orocos_kdl-1.4.0-r1.ebuild b/dev-python/python_orocos_kdl/python_orocos_kdl-1.4.0-r1.ebuild index a1f82a9e03e..dbb79e0ff7f 100644 --- a/dev-python/python_orocos_kdl/python_orocos_kdl-1.4.0-r1.ebuild +++ b/dev-python/python_orocos_kdl/python_orocos_kdl-1.4.0-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -PYTHON_COMPAT=( python{3_6,3_7,3_8} ) +EAPI=7 +PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} ) SCM="" if [ "${PV#9999}" != "${PV}" ] ; then @@ -10,7 +10,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics" fi -inherit ${SCM} python-r1 cmake-utils +inherit ${SCM} python-r1 cmake if [ "${PV#9999}" != "${PV}" ] ; then KEYWORDS="" @@ -41,19 +41,19 @@ else fi src_configure() { - python_foreach_impl cmake-utils_src_configure + python_foreach_impl cmake_src_configure } src_compile() { - python_foreach_impl cmake-utils_src_compile + python_foreach_impl cmake_src_compile } src_test() { - python_foreach_impl cmake-utils_src_test + python_foreach_impl cmake_src_test } src_install() { - python_foreach_impl cmake-utils_src_install + python_foreach_impl cmake_src_install # Need to have package.xml in our custom gentoo path insinto /usr/share/ros_packages/${PN} diff --git a/dev-python/python_orocos_kdl/python_orocos_kdl-9999.ebuild b/dev-python/python_orocos_kdl/python_orocos_kdl-9999.ebuild index 06e204006f9..228748e3039 100644 --- a/dev-python/python_orocos_kdl/python_orocos_kdl-9999.ebuild +++ b/dev-python/python_orocos_kdl/python_orocos_kdl-9999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -PYTHON_COMPAT=( python{3_6,3_7,3_8} ) +EAPI=7 +PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} ) SCM="" if [ "${PV#9999}" != "${PV}" ] ; then @@ -10,7 +10,7 @@ if [ "${PV#9999}" != "${PV}" ] ; then EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics" fi -inherit ${SCM} python-r1 cmake-utils +inherit ${SCM} python-r1 cmake if [ "${PV#9999}" != "${PV}" ] ; then KEYWORDS="" @@ -40,19 +40,19 @@ else fi src_configure() { - python_foreach_impl cmake-utils_src_configure + python_foreach_impl cmake_src_configure } src_compile() { - python_foreach_impl cmake-utils_src_compile + python_foreach_impl cmake_src_compile } src_test() { - python_foreach_impl cmake-utils_src_test + python_foreach_impl cmake_src_test } src_install() { - python_foreach_impl cmake-utils_src_install + python_foreach_impl cmake_src_install # Need to have package.xml in our custom gentoo path insinto /usr/share/ros_packages/${PN}