public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2020-08-11 13:47 Alexis Ballier
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier @ 2020-08-11 13:47 UTC (permalink / raw
  To: gentoo-commits

commit:     e5ecca612817225eb94c39f2143519e5c874b0e7
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 11 13:43:00 2020 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Aug 11 13:47:05 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5ecca61

dev-ros/ament_cmake_ros: initial import

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ros/ament_cmake_ros/Manifest                   |  1 +
 .../ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild   | 54 ++++++++++++++++++++++
 .../ament_cmake_ros/ament_cmake_ros-9999.ebuild    | 54 ++++++++++++++++++++++
 dev-ros/ament_cmake_ros/metadata.xml               | 11 +++++
 4 files changed, 120 insertions(+)

diff --git a/dev-ros/ament_cmake_ros/Manifest b/dev-ros/ament_cmake_ros/Manifest
new file mode 100644
index 00000000000..95fa27a2b18
--- /dev/null
+++ b/dev-ros/ament_cmake_ros/Manifest
@@ -0,0 +1 @@
+DIST ament_cmake_ros-0.9.0.tar.gz 10247 BLAKE2B 7492dae5b9925c2de5c6d775bec40a00c82eddd4f62ce9bfe51d745eebcc453646088b448b2e26a6d92a38ccc343e36c0ab9bcb7ec307265c1467c9129cd9aad SHA512 3c18cb88b943f06edcf3b83ba18b958997583ee733545faf8e8a9f2008a7d5da47f0479ddce6f32afefcc1a316304e78b1d36566ea6de77a89b3c64871bea766

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild
new file mode 100644
index 00000000000..d0cf50beea1
--- /dev/null
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+
+inherit cmake python-any-r1
+
+ROS_PN="ament_cmake_ros"
+if [ "${PV#9999}" != "${PV}" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/ros2/ament_cmake_ros"
+	SRC_URI=""
+	S=${WORKDIR}/${P}/${PN}
+else
+	SRC_URI="https://github.com/ros2/ament_cmake_ros/archive/${PV}.tar.gz -> ${ROS_PN}-${PV}.tar.gz"
+	S="${WORKDIR}/${ROS_PN}-${PV}/${PN}"
+fi
+
+DESCRIPTION="ROS specific CMake bits in the ament buildsystem"
+HOMEPAGE="https://github.com/ros2/ament_cmake_ros"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+if [ "${PV#9999}" != "${PV}" ] ; then
+	KEYWORDS=""
+else
+	KEYWORDS="~amd64"
+fi
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	$(python_gen_any_dep 'ros-meta/ament_cmake[${PYTHON_USEDEP}]')
+	test? (
+		dev-ros/ament_lint_auto
+	)
+	${PYTHON_DEPS}
+"
+
+python_check_deps() {
+	has_version "ros-meta/ament_cmake[${PYTHON_USEDEP}]"
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_TESTING=$(usex test ON OFF)
+	)
+	cmake_src_configure
+}

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
new file mode 100644
index 00000000000..d0cf50beea1
--- /dev/null
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_6,3_7,3_8} )
+
+inherit cmake python-any-r1
+
+ROS_PN="ament_cmake_ros"
+if [ "${PV#9999}" != "${PV}" ] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/ros2/ament_cmake_ros"
+	SRC_URI=""
+	S=${WORKDIR}/${P}/${PN}
+else
+	SRC_URI="https://github.com/ros2/ament_cmake_ros/archive/${PV}.tar.gz -> ${ROS_PN}-${PV}.tar.gz"
+	S="${WORKDIR}/${ROS_PN}-${PV}/${PN}"
+fi
+
+DESCRIPTION="ROS specific CMake bits in the ament buildsystem"
+HOMEPAGE="https://github.com/ros2/ament_cmake_ros"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+if [ "${PV#9999}" != "${PV}" ] ; then
+	KEYWORDS=""
+else
+	KEYWORDS="~amd64"
+fi
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	$(python_gen_any_dep 'ros-meta/ament_cmake[${PYTHON_USEDEP}]')
+	test? (
+		dev-ros/ament_lint_auto
+	)
+	${PYTHON_DEPS}
+"
+
+python_check_deps() {
+	has_version "ros-meta/ament_cmake[${PYTHON_USEDEP}]"
+}
+
+src_configure() {
+	local mycmakeargs=(
+		-DBUILD_TESTING=$(usex test ON OFF)
+	)
+	cmake_src_configure
+}

diff --git a/dev-ros/ament_cmake_ros/metadata.xml b/dev-ros/ament_cmake_ros/metadata.xml
new file mode 100644
index 00000000000..c4507367383
--- /dev/null
+++ b/dev-ros/ament_cmake_ros/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>ros@gentoo.org</email>
+		<name>Gentoo ROS Project</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">ros2/ament_cmake_ros</remote-id>
+	</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2021-02-02 10:18 Alexis Ballier
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier @ 2021-02-02 10:18 UTC (permalink / raw
  To: gentoo-commits

commit:     074f54f4587a2116c543902b199c9b370293a8b4
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 27 10:26:27 2021 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb  2 10:18:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074f54f4

dev-ros/ament_cmake_ros: bump to 0.9.1

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ros/ament_cmake_ros/Manifest                                        | 2 +-
 .../{ament_cmake_ros-0.9.0.ebuild => ament_cmake_ros-0.9.1.ebuild}      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ros/ament_cmake_ros/Manifest b/dev-ros/ament_cmake_ros/Manifest
index 95fa27a2b18..ff5448ad9dc 100644
--- a/dev-ros/ament_cmake_ros/Manifest
+++ b/dev-ros/ament_cmake_ros/Manifest
@@ -1 +1 @@
-DIST ament_cmake_ros-0.9.0.tar.gz 10247 BLAKE2B 7492dae5b9925c2de5c6d775bec40a00c82eddd4f62ce9bfe51d745eebcc453646088b448b2e26a6d92a38ccc343e36c0ab9bcb7ec307265c1467c9129cd9aad SHA512 3c18cb88b943f06edcf3b83ba18b958997583ee733545faf8e8a9f2008a7d5da47f0479ddce6f32afefcc1a316304e78b1d36566ea6de77a89b3c64871bea766
+DIST ament_cmake_ros-0.9.1.tar.gz 10333 BLAKE2B 01d56e4998269ea07b6adbc84c1cc67b6d2a210093c384209f603e5a59d36707d4f977aea78d818191ecb9c16d2e5648927a80aabb763500d67802931ae63644 SHA512 84ade52c8c0eda1d55dd114de9a1cda56fbbe0b73df25ae1268302300ede87a1cb956cefe822af0122bb11a6e43aea88cc237b7c17838454c3765eb9ba7f3bfc

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
similarity index 96%
rename from dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild
rename to dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
index 00e2c4aacb9..7f6933f5efc 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.0.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2021-05-19 10:54 Alexis Ballier
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier @ 2021-05-19 10:54 UTC (permalink / raw
  To: gentoo-commits

commit:     d8d083165ded57c744fa575ce520920452a69d1a
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed May 19 09:38:32 2021 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed May 19 10:47:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8d08316

dev-ros/ament_cmake_ros: Replace empty keywords with live property

Bug: https://bugs.gentoo.org/show_bug.cgi?id=790785
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild | 2 +-
 dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
index 7f6933f5efc..7c84882802b 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
@@ -24,7 +24,7 @@ HOMEPAGE="https://github.com/ros2/ament_cmake_ros"
 LICENSE="Apache-2.0"
 SLOT="0"
 if [ "${PV#9999}" != "${PV}" ] ; then
-	KEYWORDS=""
+	PROPERTIES="live"
 else
 	KEYWORDS="~amd64"
 fi

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
index 00e2c4aacb9..7c84882802b 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,7 @@ HOMEPAGE="https://github.com/ros2/ament_cmake_ros"
 LICENSE="Apache-2.0"
 SLOT="0"
 if [ "${PV#9999}" != "${PV}" ] ; then
-	KEYWORDS=""
+	PROPERTIES="live"
 else
 	KEYWORDS="~amd64"
 fi


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2021-08-09 15:46 Alexis Ballier
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier @ 2021-08-09 15:46 UTC (permalink / raw
  To: gentoo-commits

commit:     93ee30fb560dfe3fd0eebc659e183339a59c7f29
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Aug  9 14:56:48 2021 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Aug  9 15:43:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ee30fb

dev-ros/ament_cmake_ros: bump to 0.9.2

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ros/ament_cmake_ros/Manifest                                        | 2 +-
 .../{ament_cmake_ros-0.9.1.ebuild => ament_cmake_ros-0.9.2.ebuild}      | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ros/ament_cmake_ros/Manifest b/dev-ros/ament_cmake_ros/Manifest
index ff5448ad9dc..07a7c8f4ff5 100644
--- a/dev-ros/ament_cmake_ros/Manifest
+++ b/dev-ros/ament_cmake_ros/Manifest
@@ -1 +1 @@
-DIST ament_cmake_ros-0.9.1.tar.gz 10333 BLAKE2B 01d56e4998269ea07b6adbc84c1cc67b6d2a210093c384209f603e5a59d36707d4f977aea78d818191ecb9c16d2e5648927a80aabb763500d67802931ae63644 SHA512 84ade52c8c0eda1d55dd114de9a1cda56fbbe0b73df25ae1268302300ede87a1cb956cefe822af0122bb11a6e43aea88cc237b7c17838454c3765eb9ba7f3bfc
+DIST ament_cmake_ros-0.9.2.tar.gz 10831 BLAKE2B 1e8293a51a1137a84955027b9e89b2dfead58f5a56a3884d10121fcf40ad8702afe91ecff551e7910eb4ba5cce4990a95cd40399b3016fd5ce82181173fe6362 SHA512 85e5ba6982271ba8507f97712f20553de82a6a80a4fb7676f819310acc029c7e9b3933af845ed3ccb9925aa5aace1d1f6b412e975502550867223a440e07ae25

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild
similarity index 100%
rename from dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.1.ebuild
rename to dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2021-09-24 10:33 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2021-09-24 10:33 UTC (permalink / raw
  To: gentoo-commits

commit:     0ec737fd060240c293cb9716cdf15f02a7761608
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 24 10:23:52 2021 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 24 10:29:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ec737fd

dev-ros/ament_cmake_ros: enable py3.9, enable py3.10

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild | 14 +++-----------
 dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild  | 14 +++-----------
 2 files changed, 6 insertions(+), 22 deletions(-)

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild
index 7c84882802b..9db04e1784f 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_7,3_8} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit cmake python-any-r1
 
@@ -11,11 +11,11 @@ ROS_PN="ament_cmake_ros"
 if [ "${PV#9999}" != "${PV}" ] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/ros2/ament_cmake_ros"
-	SRC_URI=""
-	S=${WORKDIR}/${P}/${PN}
+	S="${WORKDIR}/${P}/${PN}"
 else
 	SRC_URI="https://github.com/ros2/ament_cmake_ros/archive/${PV}.tar.gz -> ${ROS_PN}-${PV}.tar.gz"
 	S="${WORKDIR}/${ROS_PN}-${PV}/${PN}"
+	KEYWORDS="~amd64"
 fi
 
 DESCRIPTION="ROS specific CMake bits in the ament buildsystem"
@@ -23,17 +23,9 @@ HOMEPAGE="https://github.com/ros2/ament_cmake_ros"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-if [ "${PV#9999}" != "${PV}" ] ; then
-	PROPERTIES="live"
-else
-	KEYWORDS="~amd64"
-fi
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-RDEPEND="
-"
-DEPEND="${RDEPEND}"
 BDEPEND="
 	$(python_gen_any_dep 'ros-meta/ament_cmake[${PYTHON_USEDEP}]')
 	test? (

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
index 7c84882802b..9db04e1784f 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_7,3_8} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit cmake python-any-r1
 
@@ -11,11 +11,11 @@ ROS_PN="ament_cmake_ros"
 if [ "${PV#9999}" != "${PV}" ] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/ros2/ament_cmake_ros"
-	SRC_URI=""
-	S=${WORKDIR}/${P}/${PN}
+	S="${WORKDIR}/${P}/${PN}"
 else
 	SRC_URI="https://github.com/ros2/ament_cmake_ros/archive/${PV}.tar.gz -> ${ROS_PN}-${PV}.tar.gz"
 	S="${WORKDIR}/${ROS_PN}-${PV}/${PN}"
+	KEYWORDS="~amd64"
 fi
 
 DESCRIPTION="ROS specific CMake bits in the ament buildsystem"
@@ -23,17 +23,9 @@ HOMEPAGE="https://github.com/ros2/ament_cmake_ros"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-if [ "${PV#9999}" != "${PV}" ] ; then
-	PROPERTIES="live"
-else
-	KEYWORDS="~amd64"
-fi
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-RDEPEND="
-"
-DEPEND="${RDEPEND}"
 BDEPEND="
 	$(python_gen_any_dep 'ros-meta/ament_cmake[${PYTHON_USEDEP}]')
 	test? (


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2022-03-21  9:25 Alexis Ballier
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier @ 2022-03-21  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     f74ee40d8437a4e45add5c25328d0ee78485bd33
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 18 15:43:46 2022 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Mar 21 09:24:58 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f74ee40d

dev-ros/ament_cmake_ros: bump to 0.10.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ros/ament_cmake_ros/Manifest                                        | 2 +-
 .../{ament_cmake_ros-0.9.2.ebuild => ament_cmake_ros-0.10.0.ebuild}     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ros/ament_cmake_ros/Manifest b/dev-ros/ament_cmake_ros/Manifest
index 07a7c8f4ff5b..7f6cc5f2cccf 100644
--- a/dev-ros/ament_cmake_ros/Manifest
+++ b/dev-ros/ament_cmake_ros/Manifest
@@ -1 +1 @@
-DIST ament_cmake_ros-0.9.2.tar.gz 10831 BLAKE2B 1e8293a51a1137a84955027b9e89b2dfead58f5a56a3884d10121fcf40ad8702afe91ecff551e7910eb4ba5cce4990a95cd40399b3016fd5ce82181173fe6362 SHA512 85e5ba6982271ba8507f97712f20553de82a6a80a4fb7676f819310acc029c7e9b3933af845ed3ccb9925aa5aace1d1f6b412e975502550867223a440e07ae25
+DIST ament_cmake_ros-0.10.0.tar.gz 10411 BLAKE2B 8113da7c8dc04339b0c1a5aff89cc9e1eb0dcf453101fb9e65c0c95fc6275a3049f83c93ff83106d22dee20d6aa6b190a49b02a51336a3858db88cf3a39bce95 SHA512 1feaab1c1100587eec42bfd62a53baaa802d7de1c8d14e991615ab60b97a9350d268f9387998d2c05ee2742886a0b5805c3053eef6b517323e24fddfe5b7d4e8

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild
similarity index 96%
rename from dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild
rename to dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild
index 9db04e1784f0..5a06cfb3c18e 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.9.2.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/
@ 2022-10-04 19:36 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2022-10-04 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     554f2e44a7affb46b2d96d4cc52f8e8d1c5cc5ae
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct  4 19:28:24 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Oct  4 19:28:24 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554f2e44

dev-ros/ament_cmake_ros: use python_has_version inside python_check_deps

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild | 2 +-
 dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild
index 5a06cfb3c18e..35af72b0cbd8 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-0.10.0.ebuild
@@ -35,7 +35,7 @@ BDEPEND="
 "
 
 python_check_deps() {
-	has_version "ros-meta/ament_cmake[${PYTHON_USEDEP}]"
+	python_has_version "ros-meta/ament_cmake[${PYTHON_USEDEP}]"
 }
 
 src_configure() {

diff --git a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
index 9db04e1784f0..35af72b0cbd8 100644
--- a/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
+++ b/dev-ros/ament_cmake_ros/ament_cmake_ros-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -35,7 +35,7 @@ BDEPEND="
 "
 
 python_check_deps() {
-	has_version "ros-meta/ament_cmake[${PYTHON_USEDEP}]"
+	python_has_version "ros-meta/ament_cmake[${PYTHON_USEDEP}]"
 }
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-10-04 19:36 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-11 13:47 [gentoo-commits] repo/gentoo:master commit in: dev-ros/ament_cmake_ros/ Alexis Ballier
  -- strict thread matches above, loose matches on Subject: below --
2021-02-02 10:18 Alexis Ballier
2021-05-19 10:54 Alexis Ballier
2021-08-09 15:46 Alexis Ballier
2021-09-24 10:33 Arthur Zamarin
2022-03-21  9:25 Alexis Ballier
2022-10-04 19:36 Arthur Zamarin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox