From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/orocos_kdl/
Date: Sun, 4 Apr 2021 21:38:41 +0000 (UTC) [thread overview]
Message-ID: <1617571855.9a2f8cc2f18966c6b60fd8c978724643e34a137d.asturm@gentoo> (raw)
commit: 9a2f8cc2f18966c6b60fd8c978724643e34a137d
Author: Bernd Waibel <waebbl-gentoo <AT> posteo <DOT> net>
AuthorDate: Sat Apr 3 17:44:48 2021 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Apr 4 21:30:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a2f8cc2
sci-libs/orocos_kdl: port 1.4.0 changes to live
Backport changes from 1.4.0-r1 and update ebuild:
- bump to EAPI 7
- port to cmake.eclass using ninja
Bugday 2021-04-03
Closes: https://bugs.gentoo.org/770595
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Bernd Waibel <waebbl-gentoo <AT> posteo.net>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
sci-libs/orocos_kdl/orocos_kdl-9999.ebuild | 82 ++++++++++++++++--------------
1 file changed, 45 insertions(+), 37 deletions(-)
diff --git a/sci-libs/orocos_kdl/orocos_kdl-9999.ebuild b/sci-libs/orocos_kdl/orocos_kdl-9999.ebuild
index da34c196985..d50c631a39c 100644
--- a/sci-libs/orocos_kdl/orocos_kdl-9999.ebuild
+++ b/sci-libs/orocos_kdl/orocos_kdl-9999.ebuild
@@ -1,71 +1,79 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
-SCM=""
-if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git-r3"
- EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics"
-fi
+inherit cmake
-inherit ${SCM} cmake-utils
+DESCRIPTION="Kinematics and Dynamics Library (KDL)"
+HOMEPAGE="https://www.orocos.org/kdl"
-if [ "${PV#9999}" != "${PV}" ] ; then
- SRC_URI=""
+if [[ ${PV} = *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics"
+ S="${WORKDIR}/${P}/${PN}"
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"
+ KEYWORDS="~amd64 ~arm ~x86"
+ S="${WORKDIR}/orocos_kinematics_dynamics-${PV}/${PN}"
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"
+IUSE="doc examples models test"
+REQUIRED_USE="examples? ( models )"
RESTRICT="!test? ( test )"
RDEPEND="dev-cpp/eigen:3"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
+ doc? ( app-doc/doxygen[dot] )
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
+PATCHES=(
+ "${FILESDIR}"/${PN}-1.4.0-0001-don-t-install-kdl.tag-file.patch
+)
src_configure() {
local mycmakeargs=(
- "$(cmake-utils_use_enable test TESTS)"
- "$(cmake-utils_use_enable examples EXAMPLES)"
- "-DBUILD_MODELS=$(usex models ON OFF)"
+ -DBUILD_MODELS=$(usex models ON OFF)
+ -DENABLE_EXAMPLES=$(usex examples)
+ -DENABLE_TESTS=$(usex test)
)
- cmake-utils_src_configure
+ if use examples; then
+ mycmakeargs+=(
+ -DBUILD_MODELS_DEMO=ON
+ )
+ fi
+ cmake_src_configure
}
src_compile() {
- cmake-utils_src_compile
- cd "${BUILD_DIR}"
- use doc && emake docs
+ cmake_src_compile
+ if use doc; then
+ cmake_build docs
+ rm "${BUILD_DIR}/doc/kdl.tag" || die
+ fi
}
src_test() {
- cd "${BUILD_DIR}"
- emake check
+ pushd "${BUILD_DIR}" > /dev/null || die
+ eninja check
+ popd > /dev/null || die
}
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}
+ use doc && local HTML_DOCS=( "${BUILD_DIR}/doc/api/html/." )
+ cmake_src_install
+
+ if use examples; then
+ docompress -x /usr/share/doc/${PF}/examples
+ docinto examples
+ dodoc -r "${S}"/examples/.
+ fi
# Need to have package.xml in our custom gentoo path
insinto /usr/share/ros_packages/${PN}
- doins "${ED}/usr/share/${PN}/package.xml"
+ doins "${S}/package.xml"
}
next reply other threads:[~2021-04-04 21:38 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-04 21:38 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-12-18 16:11 [gentoo-commits] repo/gentoo:master commit in: sci-libs/orocos_kdl/ Andreas Sturmlechner
2022-05-19 12:12 Joonas Niilola
2021-11-03 6:53 Arthur Zamarin
2021-08-06 14:35 Alexis Ballier
2021-04-04 21:38 Andreas Sturmlechner
2021-02-15 0:32 Sam James
2018-04-07 14:08 Alexis Ballier
2018-04-07 14:08 Alexis Ballier
2017-07-26 17:08 Alexey Shvetsov
2017-02-28 11:27 Alexis Ballier
2016-12-31 12:01 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1617571855.9a2f8cc2f18966c6b60fd8c978724643e34a137d.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox