From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1031075-garchives=archives.gentoo.org@lists.gentoo.org> 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 30A67138334 for <garchives@archives.gentoo.org>; Mon, 18 Jun 2018 19:06:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A197BE0948; Mon, 18 Jun 2018 19:06:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 63EA7E0948 for <gentoo-commits@lists.gentoo.org>; Mon, 18 Jun 2018 19:06:41 +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 4D611335CA1 for <gentoo-commits@lists.gentoo.org>; Mon, 18 Jun 2018 19:06:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA7C22E2 for <gentoo-commits@lists.gentoo.org>; Mon, 18 Jun 2018 19:06:37 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1529348727.c72d9275af8006440c00f20b9507448e4a3ac35d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/ignition-math/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/ignition-math/ignition-math-4.0.0-r1.ebuild X-VCS-Directories: sci-libs/ignition-math/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: c72d9275af8006440c00f20b9507448e4a3ac35d X-VCS-Branch: master Date: Mon, 18 Jun 2018 19:06:37 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3c965d91-9c26-415b-a551-d59295c20785 X-Archives-Hash: 796b6f41ed5657b8030b839401953184 commit: c72d9275af8006440c00f20b9507448e4a3ac35d Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Jun 18 16:30:19 2018 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Mon Jun 18 19:05:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c72d9275 sci-libs/ignition-math: EAPI-6 bump, obsolete eclass Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../ignition-math/ignition-math-4.0.0-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/sci-libs/ignition-math/ignition-math-4.0.0-r1.ebuild b/sci-libs/ignition-math/ignition-math-4.0.0-r1.ebuild new file mode 100644 index 00000000000..522811b8b00 --- /dev/null +++ b/sci-libs/ignition-math/ignition-math-4.0.0-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +CMAKE_BUILD_TYPE=RelWithDebInfo +inherit cmake-multilib vcs-snapshot + +DESCRIPTION="A small, fast, and high performance math library for robot applications" +HOMEPAGE="https://ignitionrobotics.org/libraries/math" +SRC_URI="https://bitbucket.org/ignitionrobotics/ign-math/get/${PN}4_${PV}.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="4/4" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-util/ignition-cmake[${MULTILIB_USEDEP}]" + +S="${WORKDIR}/${PN}4_${PV}"