public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Alexis Ballier" <aballier@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/rtabmap/
Date: Thu,  6 Apr 2017 08:21:17 +0000 (UTC)	[thread overview]
Message-ID: <1491466868.62544e39a3c7231ea361dc3d219ef46c34e40f15.aballier@gentoo> (raw)

commit:     62544e39a3c7231ea361dc3d219ef46c34e40f15
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Apr  6 08:10:39 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Apr  6 08:21:08 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62544e39

sci-libs/rtabmap: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 sci-libs/rtabmap/Manifest               |  2 --
 sci-libs/rtabmap/rtabmap-0.11.14.ebuild | 54 ----------------------------
 sci-libs/rtabmap/rtabmap-0.12.1.ebuild  | 62 ---------------------------------
 3 files changed, 118 deletions(-)

diff --git a/sci-libs/rtabmap/Manifest b/sci-libs/rtabmap/Manifest
index 8558e099b3a..26d954c4ff7 100644
--- a/sci-libs/rtabmap/Manifest
+++ b/sci-libs/rtabmap/Manifest
@@ -1,3 +1 @@
-DIST rtabmap-0.11.14.tar.gz 18997635 SHA256 3ca1e46889fe91e83e0de56baa8c8121cc68e0efd1039bd2684323faa8a52b25 SHA512 0793dbe7e58857ef6b5d00296cfe45a2df69d89fac422d3c43d8b550588c500b53b7a0af05683517d40b56e6f7d2af6b9e0dbdbcb1899a49e9736745feee75ae WHIRLPOOL fed930d36bbfcb142a29d010207ece168cb2c8c99f73636bfa0f8bca6d7265dc09b76026715a4b23200ba268022c00be177e28059b7c3c7d83aeb0e4b8eaadcd
-DIST rtabmap-0.12.1.tar.gz 19417321 SHA256 9da5800a573257f764130a12ded3d8e893faa3b1d54ec30c673c59a14e40af03 SHA512 23b689af9f3b8746076d6042d4c882680116347ec0e6babdf5dd659bd3bf56b0bceadf905a67f416da90d04cc8acbc8972ee52d43237f9681b067a08ed15f600 WHIRLPOOL 03f3d353603dd679362c76a18c670c40066f79d4c33c128d0fa6cbea1185227596f434de7f1c1b73a31a895df08a5c46bc1a711e7bdcf5d6a4c41ff620e51012
 DIST rtabmap-0.12.2.tar.gz 19425558 SHA256 24c4392080f752e0609c05f15a5351cecaaaa83a28290d626bbc315ea3eff525 SHA512 95a7b442dac31e0d86d7b94985f7ffac0b90e693b4d4abe91a438809f56a6e053f34c63324bbf3ecd7cbb240ae24021a97da46ab5c8ef695071aeea6f2ac081d WHIRLPOOL aedb257f9e8a65bd0ad44d4bf5f85ffdbec10731c6db0654a52c8ec33545d150cdb7f067d35a4e3539581ca92d06947a0374c38955c4471de70e1562d1d93adf

diff --git a/sci-libs/rtabmap/rtabmap-0.11.14.ebuild b/sci-libs/rtabmap/rtabmap-0.11.14.ebuild
deleted file mode 100644
index 30cad8f8314..00000000000
--- a/sci-libs/rtabmap/rtabmap-0.11.14.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# 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/introlab/rtabmap"
-fi
-
-inherit ${SCM} cmake-utils multilib
-
-if [ "${PV#9999}" != "${PV}" ] ; then
-	KEYWORDS=""
-	SRC_URI=""
-else
-	KEYWORDS="~amd64"
-	SRC_URI="https://github.com/introlab/rtabmap/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-DESCRIPTION="Real-Time Appearance-Based Mapping (RGB-D Graph SLAM)"
-HOMEPAGE="http://introlab.github.io/rtabmap/"
-LICENSE="BSD"
-SLOT="0"
-IUSE="examples ieee1394 openni2 qt5"
-
-RDEPEND="
-	media-libs/opencv:=[qt5(-)?]
-	sci-libs/pcl:=[openni,vtk]
-	sci-libs/vtk:=[qt5(-)?]
-	sys-libs/zlib
-	sci-libs/octomap:=
-	ieee1394? ( media-libs/libdc1394 )
-	openni2? ( dev-libs/OpenNI2 )
-	qt5? (
-		dev-qt/qtwidgets:5
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtsvg:5
-	)
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_configure() {
-	local mycmakeargs=(
-		"-DWITH_QT=$(usex qt5 ON OFF)"
-		"-DWITH_DC1394=$(usex ieee1394 ON OFF)"
-		"-DWITH_OPENNI2=$(usex openni2 ON OFF)"
-		"-DBUILD_EXAMPLES=$(usex examples ON OFF)"
-	)
-	cmake-utils_src_configure
-}

diff --git a/sci-libs/rtabmap/rtabmap-0.12.1.ebuild b/sci-libs/rtabmap/rtabmap-0.12.1.ebuild
deleted file mode 100644
index a195495705e..00000000000
--- a/sci-libs/rtabmap/rtabmap-0.12.1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# 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/introlab/rtabmap"
-fi
-
-inherit ${SCM} cmake-utils multilib
-
-if [ "${PV#9999}" != "${PV}" ] ; then
-	KEYWORDS=""
-	SRC_URI=""
-else
-	KEYWORDS="~amd64"
-	SRC_URI="https://github.com/introlab/rtabmap/archive/${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-DESCRIPTION="Real-Time Appearance-Based Mapping (RGB-D Graph SLAM)"
-HOMEPAGE="http://introlab.github.io/rtabmap/"
-LICENSE="BSD"
-SLOT="0"
-IUSE="examples ieee1394 openni2 qt5"
-
-RDEPEND="
-	media-libs/opencv:=[qt5(-)?]
-	sci-libs/pcl:=[openni,vtk]
-	sci-libs/vtk:=[qt5(-)?]
-	sys-libs/zlib
-	sci-libs/octomap:=
-	ieee1394? ( media-libs/libdc1394 )
-	openni2? ( dev-libs/OpenNI2 )
-	qt5? (
-		dev-qt/qtwidgets:5
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtsvg:5
-	)
-"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_configure() {
-	local mycmakeargs=(
-		"-DWITH_QT=$(usex qt5 ON OFF)"
-		"-DWITH_DC1394=$(usex ieee1394 ON OFF)"
-		"-DWITH_OPENNI2=$(usex openni2 ON OFF)"
-		"-DBUILD_EXAMPLES=$(usex examples ON OFF)"
-	)
-	cmake-utils_src_configure
-}
-
-src_install() {
-	cmake-utils_src_install
-	# Needed since we force ros crawling to be done only in
-	# /usr/share/ros_packages/
-	insinto /usr/share/ros_packages/${PN}
-	doins "${ED}/usr/share/${PN}/package.xml"
-}


             reply	other threads:[~2017-04-06  8:21 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-06  8:21 Alexis Ballier [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-06-06 12:51 [gentoo-commits] repo/gentoo:master commit in: sci-libs/rtabmap/ Alexis Ballier
2024-11-25 15:32 Andreas Sturmlechner
2024-11-25 15:32 Andreas Sturmlechner
2024-01-15  8:01 Alexis Ballier
2023-02-23 16:34 Alexis Ballier
2023-02-01 19:27 Andreas Sturmlechner
2021-02-15  0:32 Sam James
2020-08-31  9:10 Alexis Ballier
2020-08-25 14:29 Alexis Ballier
2019-12-10 17:35 Alexis Ballier
2019-12-10 17:35 Alexis Ballier
2019-08-28 17:02 Alexis Ballier
2019-08-28 17:02 Alexis Ballier
2018-12-05 14:50 Alexis Ballier
2018-05-28  8:14 Alexis Ballier
2018-01-13 12:16 Alexis Ballier
2017-10-04 11:09 Alexis Ballier
2017-09-12 11:23 Alexis Ballier
2017-09-12 11:23 Alexis Ballier
2017-08-15  6:25 Alexis Ballier
2017-08-15  6:25 Alexis Ballier
2017-06-27 11:22 Alexis Ballier
2017-05-25 14:50 Alexis Ballier
2017-04-06  8:21 Alexis Ballier
2017-03-04 13:37 Alexis Ballier
2017-02-28 11:27 Alexis Ballier
2017-02-28 11:27 Alexis Ballier
2017-01-31  8:56 Alexis Ballier
2017-01-26 23:10 Alexis Ballier
2017-01-07 14:40 Alexis Ballier
2017-01-07 14:40 Alexis Ballier
2016-12-29 14:08 Alexis Ballier
2016-12-29 14:08 Alexis Ballier
2015-11-02  9:23 Alexis Ballier
2015-09-18 13:49 Alexis Ballier
2015-08-29 17:41 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=1491466868.62544e39a3c7231ea361dc3d219ef46c34e40f15.aballier@gentoo \
    --to=aballier@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