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 6A5A91382C5 for ; Sun, 4 Apr 2021 21:38:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E350E086D; Sun, 4 Apr 2021 21:38:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 85340E086D for ; Sun, 4 Apr 2021 21:38:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 87E2133BF0F for ; Sun, 4 Apr 2021 21:38:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0FAD363B for ; Sun, 4 Apr 2021 21:38:41 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1617571685.6262afbda6028d80e00e5807fc4aea60eed8be21.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/orocos_kdl/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/orocos_kdl/orocos_kdl-1.4.0.ebuild X-VCS-Directories: sci-libs/orocos_kdl/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6262afbda6028d80e00e5807fc4aea60eed8be21 X-VCS-Branch: master Date: Sun, 4 Apr 2021 21:38:41 +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: 0e08d773-b757-48b9-a55f-94b0ba34c1a4 X-Archives-Hash: b6815db91612afeac4a90412146e9815 commit: 6262afbda6028d80e00e5807fc4aea60eed8be21 Author: Bernd Waibel posteo net> AuthorDate: Sat Apr 3 17:16:08 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Apr 4 21:28:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6262afbd sci-libs/orocos_kdl: drop 1.4.0 Bugday 2021-04-03 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Bernd Waibel posteo.net> Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/orocos_kdl/orocos_kdl-1.4.0.ebuild | 71 ----------------------------- 1 file changed, 71 deletions(-) diff --git a/sci-libs/orocos_kdl/orocos_kdl-1.4.0.ebuild b/sci-libs/orocos_kdl/orocos_kdl-1.4.0.ebuild deleted file mode 100644 index da34c196985..00000000000 --- a/sci-libs/orocos_kdl/orocos_kdl-1.4.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -SCM="" -if [ "${PV#9999}" != "${PV}" ] ; then - SCM="git-r3" - EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics" -fi - -inherit ${SCM} cmake-utils - -if [ "${PV#9999}" != "${PV}" ] ; then - SRC_URI="" -else - KEYWORDS="~amd64 ~arm ~x86" - SRC_URI="https://github.com/orocos/orocos_kinematics_dynamics/archive/v${PV}.tar.gz -> orocos_kinematics_dynamics-${PV}.tar.gz" -fi - -DESCRIPTION="Kinematics and Dynamics Library (KDL)" -HOMEPAGE="https://www.orocos.org/kdl" -LICENSE="LGPL-2.1" -SLOT="0/14" -IUSE="doc test examples models" -RESTRICT="!test? ( test )" - -RDEPEND="dev-cpp/eigen:3" -DEPEND="${RDEPEND} - test? ( dev-util/cppunit ) - doc? ( app-doc/doxygen )" -REQUIRED_USE="examples? ( models )" - -DOCS=( README ) - -if [ "${PV#9999}" != "${PV}" ] ; then - S=${WORKDIR}/${P}/orocos_kdl -else - S=${WORKDIR}/orocos_kinematics_dynamics-${PV}/orocos_kdl -fi - -src_configure() { - local mycmakeargs=( - "$(cmake-utils_use_enable test TESTS)" - "$(cmake-utils_use_enable examples EXAMPLES)" - "-DBUILD_MODELS=$(usex models ON OFF)" - ) - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile - cd "${BUILD_DIR}" - use doc && emake docs -} - -src_test() { - cd "${BUILD_DIR}" - emake check -} - -src_install() { - cmake-utils_src_install - cd "${BUILD_DIR}" - use doc && dohtml -r doc/api/html/* - use examples && dobin "${BUILD_DIR}/examples/"{geometry,trajectory_example,chainiksolverpos_lma_demo} - - # Need to have package.xml in our custom gentoo path - insinto /usr/share/ros_packages/${PN} - doins "${ED}/usr/share/${PN}/package.xml" -}