* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2015-09-23 9:44 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2015-09-23 9:44 UTC (permalink / raw
To: gentoo-commits
commit: 385ef1cecd9a00bef5f8c971114cb4301616b409
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 09:06:13 2015 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 09:44:12 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385ef1ce
dev-ros/opencv_tests: Initial import. Ebuild by me.
Package-Manager: portage-2.2.21
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/metadata.xml | 5 ++++
dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild | 32 +++++++++++++++++++++++++
dev-ros/opencv_tests/opencv_tests-9999.ebuild | 32 +++++++++++++++++++++++++
4 files changed, 70 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
new file mode 100644
index 0000000..ae2c9da
--- /dev/null
+++ b/dev-ros/opencv_tests/Manifest
@@ -0,0 +1 @@
+DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
diff --git a/dev-ros/opencv_tests/metadata.xml b/dev-ros/opencv_tests/metadata.xml
new file mode 100644
index 0000000..c42ea5b
--- /dev/null
+++ b/dev-ros/opencv_tests/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>ros</herd>
+</pkgmetadata>
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
new file mode 100644
index 0000000..9c9cf25
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
diff --git a/dev-ros/opencv_tests/opencv_tests-9999.ebuild b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
new file mode 100644
index 0000000..9c9cf25
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2015-09-23 13:14 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2015-09-23 13:14 UTC (permalink / raw
To: gentoo-commits
commit: 0c5dd17a885d1e2f2e5caaec9a55d09a7e6124fc
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 13:14:09 2015 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 13:14:09 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c5dd17a
dev-ros/opencv_tests: Fix broken deps on opencv.
Package-Manager: portage-2.2.21
dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild | 3 ++-
dev-ros/opencv_tests/opencv_tests-9999.ebuild | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
index 9c9cf25..770ea0b 100644
--- a/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
+++ b/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
@@ -5,6 +5,7 @@
EAPI=5
ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
PYTHON_COMPAT=( python2_7 )
ROS_SUBDIR=${PN}
@@ -18,7 +19,7 @@ IUSE=""
RDEPEND="
dev-ros/cv_bridge[${PYTHON_USEDEP}]
dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
dev-python/numpy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
diff --git a/dev-ros/opencv_tests/opencv_tests-9999.ebuild b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
index 9c9cf25..770ea0b 100644
--- a/dev-ros/opencv_tests/opencv_tests-9999.ebuild
+++ b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
@@ -5,6 +5,7 @@
EAPI=5
ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
PYTHON_COMPAT=( python2_7 )
ROS_SUBDIR=${PN}
@@ -18,7 +19,7 @@ IUSE=""
RDEPEND="
dev-ros/cv_bridge[${PYTHON_USEDEP}]
dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
dev-python/numpy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2015-12-01 11:51 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2015-12-01 11:51 UTC (permalink / raw
To: gentoo-commits
commit: 9df7b8f956b828bd0864ef1745ba32591aab3ca5
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 1 11:44:59 2015 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Dec 1 11:51:11 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df7b8f9
dev-ros/opencv_tests: Bump to 1.11.9.
Package-Manager: portage-2.2.26
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index ae2c9da..db9c55a 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1 +1,2 @@
DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
+DIST vision_opencv-1.11.9.tar.gz 97544 SHA256 3ce781847f5f855083cfae94a8d89defbe4cc83e086b4c796653561aee08b826 SHA512 e1a40997d6a3cf821fb1d57f818b3bcb52d2d0372159eec7f756c7df52fbd2a3ec91ac960cd1a7454f13cd6fe0192f4c019e70fcd4b20d0f797f4845ce676211 WHIRLPOOL c0388e6a40a2b166231b960eff5a011ea2e96c23319209315a86744ac5628d75b9bcb3fd0abdebe941ff89b12852b8813b5e97b3ab7827a2320e0dc0fc64ab74
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild
new file mode 100644
index 0000000..770ea0b
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-01-19 11:35 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-01-19 11:35 UTC (permalink / raw
To: gentoo-commits
commit: 11216efbd4a95bccdaf8204c6291c79e26edf5fe
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 19 10:51:41 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Jan 19 11:35:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11216efb
dev-ros/opencv_tests: Bump to 1.11.10.
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild | 33 ++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index db9c55a..a7e292a 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,2 +1,3 @@
+DIST vision_opencv-1.11.10.tar.gz 106660 SHA256 f9e120a780252b0234cbf3e65260ce3033dd25a81b32f27ccfdda41a3e765a3e SHA512 c8ba5991a50526a2341552f95dcaeb1b1ccf8ea7684f543e50ebcdd5ef0abdcd578364efcf25d4adad976c4382c67ee3d2550c107e569be2fbb675dcf4b8d51e WHIRLPOOL 2d2ba6916a73172035a772fe845b73cec19119370f4955d4c4bf36592d44f22b158d58b8bc67d3ec3fce395e54dcd7ef7eba1dcdefc51d8c85aa1e739b5877b9
DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
DIST vision_opencv-1.11.9.tar.gz 97544 SHA256 3ce781847f5f855083cfae94a8d89defbe4cc83e086b4c796653561aee08b826 SHA512 e1a40997d6a3cf821fb1d57f818b3bcb52d2d0372159eec7f756c7df52fbd2a3ec91ac960cd1a7454f13cd6fe0192f4c019e70fcd4b20d0f797f4845ce676211 WHIRLPOOL c0388e6a40a2b166231b960eff5a011ea2e96c23319209315a86744ac5628d75b9bcb3fd0abdebe941ff89b12852b8813b5e97b3ab7827a2320e0dc0fc64ab74
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild
new file mode 100644
index 0000000..770ea0b
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-02-04 11:16 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-02-04 11:16 UTC (permalink / raw
To: gentoo-commits
commit: a66c2acdd183245e0258e36aa40f58eb479bc6a3
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 4 10:50:36 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Feb 4 11:12:35 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a66c2acd
dev-ros/opencv_tests: Bump to 1.11.11.
Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild | 33 ++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index a7e292a..6b67d1d 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,3 +1,4 @@
DIST vision_opencv-1.11.10.tar.gz 106660 SHA256 f9e120a780252b0234cbf3e65260ce3033dd25a81b32f27ccfdda41a3e765a3e SHA512 c8ba5991a50526a2341552f95dcaeb1b1ccf8ea7684f543e50ebcdd5ef0abdcd578364efcf25d4adad976c4382c67ee3d2550c107e569be2fbb675dcf4b8d51e WHIRLPOOL 2d2ba6916a73172035a772fe845b73cec19119370f4955d4c4bf36592d44f22b158d58b8bc67d3ec3fce395e54dcd7ef7eba1dcdefc51d8c85aa1e739b5877b9
+DIST vision_opencv-1.11.11.tar.gz 107062 SHA256 33413f7d805cf6f3edaabae6b264af1e09568085f84763a7b8e76b075962c449 SHA512 ab8d8065937c017ec42e9f0e8ec69934830f7b4de8a47b3d01d56ad4bc661e19f98ef52a8a10bfcd48d448b7187cf44f9cedb48e500e85da052ea1616b686e9e WHIRLPOOL 7c7878e1bb582f98b857d233c5462969e6b4f2488bcd096563e233f6310255c917a2e09ba73550b6d9ab46cd047d3cd3a58548457d1717a06cddf2609085c0c6
DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
DIST vision_opencv-1.11.9.tar.gz 97544 SHA256 3ce781847f5f855083cfae94a8d89defbe4cc83e086b4c796653561aee08b826 SHA512 e1a40997d6a3cf821fb1d57f818b3bcb52d2d0372159eec7f756c7df52fbd2a3ec91ac960cd1a7454f13cd6fe0192f4c019e70fcd4b20d0f797f4845ce676211 WHIRLPOOL c0388e6a40a2b166231b960eff5a011ea2e96c23319209315a86744ac5628d75b9bcb3fd0abdebe941ff89b12852b8813b5e97b3ab7827a2320e0dc0fc64ab74
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild
new file mode 100644
index 0000000..770ea0b
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-03-14 11:38 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-03-14 11:38 UTC (permalink / raw
To: gentoo-commits
commit: d9c7c22407f42b130a983d68f72a3088fb2cd312
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 14 11:27:20 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Mar 14 11:38:20 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c7c224
dev-ros/opencv_tests: Bump to 1.11.12.
Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild | 33 ++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 6b67d1d..537a45e 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,4 +1,5 @@
DIST vision_opencv-1.11.10.tar.gz 106660 SHA256 f9e120a780252b0234cbf3e65260ce3033dd25a81b32f27ccfdda41a3e765a3e SHA512 c8ba5991a50526a2341552f95dcaeb1b1ccf8ea7684f543e50ebcdd5ef0abdcd578364efcf25d4adad976c4382c67ee3d2550c107e569be2fbb675dcf4b8d51e WHIRLPOOL 2d2ba6916a73172035a772fe845b73cec19119370f4955d4c4bf36592d44f22b158d58b8bc67d3ec3fce395e54dcd7ef7eba1dcdefc51d8c85aa1e739b5877b9
DIST vision_opencv-1.11.11.tar.gz 107062 SHA256 33413f7d805cf6f3edaabae6b264af1e09568085f84763a7b8e76b075962c449 SHA512 ab8d8065937c017ec42e9f0e8ec69934830f7b4de8a47b3d01d56ad4bc661e19f98ef52a8a10bfcd48d448b7187cf44f9cedb48e500e85da052ea1616b686e9e WHIRLPOOL 7c7878e1bb582f98b857d233c5462969e6b4f2488bcd096563e233f6310255c917a2e09ba73550b6d9ab46cd047d3cd3a58548457d1717a06cddf2609085c0c6
+DIST vision_opencv-1.11.12.tar.gz 110974 SHA256 9537246f167dcb1689888be127efd6706e66518583b74bac2d8a4ff6646a7a43 SHA512 6e836514931a6528ca609ab1c465484309ec85b21ae4d18b3dd596a0bbaf59283e07b269d953611af5d24eb48a1dd81a966fee8f74ea947e107b0d0f3ef833f1 WHIRLPOOL 0070e6c170f0e450f654e2c2502c99bd0f1c5d73921984b0efedc3aa34da7ec61eb8c3259de79cbf55841c7958e313ae014ffb0ad8513c2d60b54baa448c3367
DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
DIST vision_opencv-1.11.9.tar.gz 97544 SHA256 3ce781847f5f855083cfae94a8d89defbe4cc83e086b4c796653561aee08b826 SHA512 e1a40997d6a3cf821fb1d57f818b3bcb52d2d0372159eec7f756c7df52fbd2a3ec91ac960cd1a7454f13cd6fe0192f4c019e70fcd4b20d0f797f4845ce676211 WHIRLPOOL c0388e6a40a2b166231b960eff5a011ea2e96c23319209315a86744ac5628d75b9bcb3fd0abdebe941ff89b12852b8813b5e97b3ab7827a2320e0dc0fc64ab74
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild
new file mode 100644
index 0000000..770ea0b
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-07-18 12:13 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-07-18 12:13 UTC (permalink / raw
To: gentoo-commits
commit: d7703b115e68d118c4870dfa9cd8ebf5dbf5d921
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 09:38:15 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 12:13:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7703b11
dev-ros/opencv_tests: Bump to 1.12.1.
Package-Manager: portage-2.3.0
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 9f937f5..3c2dd3e 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -4,3 +4,4 @@ DIST vision_opencv-1.11.12.tar.gz 110974 SHA256 9537246f167dcb1689888be127efd670
DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
DIST vision_opencv-1.11.9.tar.gz 97544 SHA256 3ce781847f5f855083cfae94a8d89defbe4cc83e086b4c796653561aee08b826 SHA512 e1a40997d6a3cf821fb1d57f818b3bcb52d2d0372159eec7f756c7df52fbd2a3ec91ac960cd1a7454f13cd6fe0192f4c019e70fcd4b20d0f797f4845ce676211 WHIRLPOOL c0388e6a40a2b166231b960eff5a011ea2e96c23319209315a86744ac5628d75b9bcb3fd0abdebe941ff89b12852b8813b5e97b3ab7827a2320e0dc0fc64ab74
DIST vision_opencv-1.12.0.tar.gz 110922 SHA256 bff37fe2d80d1fe125aa514791fe4aef5042d7715f621e39af696629881bf4ac SHA512 9aa5764cb97ab48b96484cfd1bcf492f726cdeb9a75338945f8a65c9fcf753e339fc1738d96091a01884a5f5b66af710c6ade651b09459c5f3cd08180cd135b4 WHIRLPOOL e214a7a03011ad66611ceb10a9fb88de03975538f8d52c44d0d4c82830c5c6b7e8fd3a6fe901faa7f1415f483acceb46b30db88f72125aed45fb6bda485ec231
+DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 ad0b66e5523b6862ada185f5064b2d9979b28d46e2b2eb42308e260dabae8c83 SHA512 f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88 WHIRLPOOL 647eb428982ecc57aca41db893cf738d0c4b6870c5b54ddf79181f7e07a83f0738c18421d213f3463e64e4b8658b8ef643fd6c9c7c10ee62a011df5311d45c33
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild
new file mode 100644
index 0000000..6080be5
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,python_single_target_python2_7]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-09-28 11:01 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-09-28 11:01 UTC (permalink / raw
To: gentoo-commits
commit: 701370320d5462a9a33b2181c46729eb7fd8157b
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 28 10:42:54 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 28 10:42:54 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70137032
dev-ros/opencv_tests: remove old
Package-Manager: portage-2.3.1
dev-ros/opencv_tests/Manifest | 6 -----
dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild | 33 ------------------------
dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild | 33 ------------------------
dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild | 33 ------------------------
dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild | 33 ------------------------
dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild | 33 ------------------------
dev-ros/opencv_tests/opencv_tests-1.12.0.ebuild | 33 ------------------------
7 files changed, 204 deletions(-)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 3c2dd3e..cc7e7a5 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,7 +1 @@
-DIST vision_opencv-1.11.10.tar.gz 106660 SHA256 f9e120a780252b0234cbf3e65260ce3033dd25a81b32f27ccfdda41a3e765a3e SHA512 c8ba5991a50526a2341552f95dcaeb1b1ccf8ea7684f543e50ebcdd5ef0abdcd578364efcf25d4adad976c4382c67ee3d2550c107e569be2fbb675dcf4b8d51e WHIRLPOOL 2d2ba6916a73172035a772fe845b73cec19119370f4955d4c4bf36592d44f22b158d58b8bc67d3ec3fce395e54dcd7ef7eba1dcdefc51d8c85aa1e739b5877b9
-DIST vision_opencv-1.11.11.tar.gz 107062 SHA256 33413f7d805cf6f3edaabae6b264af1e09568085f84763a7b8e76b075962c449 SHA512 ab8d8065937c017ec42e9f0e8ec69934830f7b4de8a47b3d01d56ad4bc661e19f98ef52a8a10bfcd48d448b7187cf44f9cedb48e500e85da052ea1616b686e9e WHIRLPOOL 7c7878e1bb582f98b857d233c5462969e6b4f2488bcd096563e233f6310255c917a2e09ba73550b6d9ab46cd047d3cd3a58548457d1717a06cddf2609085c0c6
-DIST vision_opencv-1.11.12.tar.gz 110974 SHA256 9537246f167dcb1689888be127efd6706e66518583b74bac2d8a4ff6646a7a43 SHA512 6e836514931a6528ca609ab1c465484309ec85b21ae4d18b3dd596a0bbaf59283e07b269d953611af5d24eb48a1dd81a966fee8f74ea947e107b0d0f3ef833f1 WHIRLPOOL 0070e6c170f0e450f654e2c2502c99bd0f1c5d73921984b0efedc3aa34da7ec61eb8c3259de79cbf55841c7958e313ae014ffb0ad8513c2d60b54baa448c3367
-DIST vision_opencv-1.11.8.tar.gz 80160 SHA256 0cf0934d4d9bd91e966afc2f25a4e54646016b6628f4fe58e81faee0c58c88c2 SHA512 55ca2554a3736bd5102bfef14562a6bc341d13eb098fbb7d8d050c90b5d397820791aed54a3697f5084a1b629d959c7abc24172a8efbdfc65490ebdbcb548c77 WHIRLPOOL 8b2b9f4968618258ebd6b2d6d0674ca9c24ed5e7d1adcc4cbbf769e13206017ea06fe5172277a19d67c73c88066270a2e259743ee1b63e4cec7ce8508405b8d3
-DIST vision_opencv-1.11.9.tar.gz 97544 SHA256 3ce781847f5f855083cfae94a8d89defbe4cc83e086b4c796653561aee08b826 SHA512 e1a40997d6a3cf821fb1d57f818b3bcb52d2d0372159eec7f756c7df52fbd2a3ec91ac960cd1a7454f13cd6fe0192f4c019e70fcd4b20d0f797f4845ce676211 WHIRLPOOL c0388e6a40a2b166231b960eff5a011ea2e96c23319209315a86744ac5628d75b9bcb3fd0abdebe941ff89b12852b8813b5e97b3ab7827a2320e0dc0fc64ab74
-DIST vision_opencv-1.12.0.tar.gz 110922 SHA256 bff37fe2d80d1fe125aa514791fe4aef5042d7715f621e39af696629881bf4ac SHA512 9aa5764cb97ab48b96484cfd1bcf492f726cdeb9a75338945f8a65c9fcf753e339fc1738d96091a01884a5f5b66af710c6ade651b09459c5f3cd08180cd135b4 WHIRLPOOL e214a7a03011ad66611ceb10a9fb88de03975538f8d52c44d0d4c82830c5c6b7e8fd3a6fe901faa7f1415f483acceb46b30db88f72125aed45fb6bda485ec231
DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 ad0b66e5523b6862ada185f5064b2d9979b28d46e2b2eb42308e260dabae8c83 SHA512 f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88 WHIRLPOOL 647eb428982ecc57aca41db893cf738d0c4b6870c5b54ddf79181f7e07a83f0738c18421d213f3463e64e4b8658b8ef643fd6c9c7c10ee62a011df5311d45c33
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild
deleted file mode 100644
index 770ea0b..00000000
--- a/dev-ros/opencv_tests/opencv_tests-1.11.10.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild
deleted file mode 100644
index 770ea0b..00000000
--- a/dev-ros/opencv_tests/opencv_tests-1.11.11.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild
deleted file mode 100644
index 770ea0b..00000000
--- a/dev-ros/opencv_tests/opencv_tests-1.11.12.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
deleted file mode 100644
index 770ea0b..00000000
--- a/dev-ros/opencv_tests/opencv_tests-1.11.8.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild b/dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild
deleted file mode 100644
index 770ea0b..00000000
--- a/dev-ros/opencv_tests/opencv_tests-1.11.9.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.0.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.0.ebuild
deleted file mode 100644
index 770ea0b..00000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-09-28 11:01 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-09-28 11:01 UTC (permalink / raw
To: gentoo-commits
commit: 389b589a7027a41c2499ece4a22081501b0758f5
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 28 11:01:19 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 28 11:01:19 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=389b589a
dev-ros/opencv_tests: use PYTHON_USEDEPS on opencv
Package-Manager: portage-2.3.1
.../{opencv_tests-1.12.1.ebuild => opencv_tests-1.12.1-r1.ebuild} | 2 +-
dev-ros/opencv_tests/opencv_tests-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild
similarity index 92%
rename from dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild
rename to dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild
index 6080be5..00dc8ea 100644
--- a/dev-ros/opencv_tests/opencv_tests-1.12.1.ebuild
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild
@@ -19,7 +19,7 @@ IUSE=""
RDEPEND="
dev-ros/cv_bridge[${PYTHON_USEDEP}]
dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
diff --git a/dev-ros/opencv_tests/opencv_tests-9999.ebuild b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
index 770ea0b..00dc8ea 100644
--- a/dev-ros/opencv_tests/opencv_tests-9999.ebuild
+++ b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -19,7 +19,7 @@ IUSE=""
RDEPEND="
dev-ros/cv_bridge[${PYTHON_USEDEP}]
dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,python_single_target_python2_7]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
"
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-09-28 11:07 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-09-28 11:07 UTC (permalink / raw
To: gentoo-commits
commit: 49f77d274145ec20bd075b703bb191bb1b466bbc
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 28 11:05:31 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Sep 28 11:05:31 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f77d27
dev-ros/opencv_tests: Bump to 1.12.2.
Package-Manager: portage-2.3.1
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index cc7e7a5..f921bf7 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1 +1,2 @@
DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 ad0b66e5523b6862ada185f5064b2d9979b28d46e2b2eb42308e260dabae8c83 SHA512 f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88 WHIRLPOOL 647eb428982ecc57aca41db893cf738d0c4b6870c5b54ddf79181f7e07a83f0738c18421d213f3463e64e4b8658b8ef643fd6c9c7c10ee62a011df5311d45c33
+DIST vision_opencv-1.12.2.tar.gz 79771 SHA256 e0123ad457d33cfd1ca562c023e2bfb4305e1d363cb8165f54f2494e3e73c798 SHA512 823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0 WHIRLPOOL 13c9e1f0149cfb5b8e467619ddf6da1327545ef6a7cba23dc58980da109473f6c6fbf7ded2e3f76e8f1fe170b05bcd1f40cadcfffe96d86cd8d1be82ce4de586
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild
new file mode 100644
index 00000000..00dc8ea
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2016-12-06 14:14 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2016-12-06 14:14 UTC (permalink / raw
To: gentoo-commits
commit: 18dad86f6f3344146a9e9f2b95375967196c6a93
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 6 14:12:38 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Dec 6 14:14:17 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18dad86f
dev-ros/opencv_tests: Bump to 1.12.3.
Package-Manager: portage-2.3.3
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index f921bf7..00b9115 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,2 +1,3 @@
DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 ad0b66e5523b6862ada185f5064b2d9979b28d46e2b2eb42308e260dabae8c83 SHA512 f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88 WHIRLPOOL 647eb428982ecc57aca41db893cf738d0c4b6870c5b54ddf79181f7e07a83f0738c18421d213f3463e64e4b8658b8ef643fd6c9c7c10ee62a011df5311d45c33
DIST vision_opencv-1.12.2.tar.gz 79771 SHA256 e0123ad457d33cfd1ca562c023e2bfb4305e1d363cb8165f54f2494e3e73c798 SHA512 823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0 WHIRLPOOL 13c9e1f0149cfb5b8e467619ddf6da1327545ef6a7cba23dc58980da109473f6c6fbf7ded2e3f76e8f1fe170b05bcd1f40cadcfffe96d86cd8d1be82ce4de586
+DIST vision_opencv-1.12.3.tar.gz 80497 SHA256 2bcc51cdb8236594ae92c9d0b9d930934529434d7b8efd25b86199aca87d0be9 SHA512 2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c WHIRLPOOL c0836bc766b9aa899c55d4caab7afe9008a7f38d2317548a0e312ba738193dfd69ac4b5c0c96c37aa6d01903187a8eccb12cfe03cc64289a18025efbf3ab373b
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild
new file mode 100644
index 00000000..00dc8ea
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2017-01-30 22:55 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2017-01-30 22:55 UTC (permalink / raw
To: gentoo-commits
commit: 89caf179c8cf3d161a4dd884d43b5cba3a16b75d
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 30 22:46:58 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Jan 30 22:46:58 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89caf179
dev-ros/opencv_tests: Bump to 1.12.4.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 00b9115..5d31122 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,3 +1,4 @@
DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 ad0b66e5523b6862ada185f5064b2d9979b28d46e2b2eb42308e260dabae8c83 SHA512 f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88 WHIRLPOOL 647eb428982ecc57aca41db893cf738d0c4b6870c5b54ddf79181f7e07a83f0738c18421d213f3463e64e4b8658b8ef643fd6c9c7c10ee62a011df5311d45c33
DIST vision_opencv-1.12.2.tar.gz 79771 SHA256 e0123ad457d33cfd1ca562c023e2bfb4305e1d363cb8165f54f2494e3e73c798 SHA512 823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0 WHIRLPOOL 13c9e1f0149cfb5b8e467619ddf6da1327545ef6a7cba23dc58980da109473f6c6fbf7ded2e3f76e8f1fe170b05bcd1f40cadcfffe96d86cd8d1be82ce4de586
DIST vision_opencv-1.12.3.tar.gz 80497 SHA256 2bcc51cdb8236594ae92c9d0b9d930934529434d7b8efd25b86199aca87d0be9 SHA512 2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c WHIRLPOOL c0836bc766b9aa899c55d4caab7afe9008a7f38d2317548a0e312ba738193dfd69ac4b5c0c96c37aa6d01903187a8eccb12cfe03cc64289a18025efbf3ab373b
+DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5 WHIRLPOOL b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild
new file mode 100644
index 00000000..4bdb9a8
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2017-11-07 19:24 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2017-11-07 19:24 UTC (permalink / raw
To: gentoo-commits
commit: 6278cb1eeadcfd16655eca739d74a8564c169ecd
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 7 19:22:44 2017 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Nov 7 19:23:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6278cb1e
dev-ros/opencv_tests: Bump to 1.12.5.
Package-Manager: Portage-2.3.13, Repoman-2.3.4
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild | 32 +++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 5d311223cb9..5ef2ac7e3a2 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -2,3 +2,4 @@ DIST vision_opencv-1.12.1.tar.gz 79203 SHA256 ad0b66e5523b6862ada185f5064b2d9979
DIST vision_opencv-1.12.2.tar.gz 79771 SHA256 e0123ad457d33cfd1ca562c023e2bfb4305e1d363cb8165f54f2494e3e73c798 SHA512 823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0 WHIRLPOOL 13c9e1f0149cfb5b8e467619ddf6da1327545ef6a7cba23dc58980da109473f6c6fbf7ded2e3f76e8f1fe170b05bcd1f40cadcfffe96d86cd8d1be82ce4de586
DIST vision_opencv-1.12.3.tar.gz 80497 SHA256 2bcc51cdb8236594ae92c9d0b9d930934529434d7b8efd25b86199aca87d0be9 SHA512 2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c WHIRLPOOL c0836bc766b9aa899c55d4caab7afe9008a7f38d2317548a0e312ba738193dfd69ac4b5c0c96c37aa6d01903187a8eccb12cfe03cc64289a18025efbf3ab373b
DIST vision_opencv-1.12.4.tar.gz 80675 SHA256 37a7d85de5217d29689c7b18efdacb273fdc411176350bafff378f974d29def2 SHA512 9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5 WHIRLPOOL b5c829711a9ffac0b27f0f44fac253c2feb3c7ad236d9d17de74296cdf871f70b036c203781e55d54f685f20ada927cdfa7761446d849c40159e00ff801e6c55
+DIST vision_opencv-1.12.5.tar.gz 81739 SHA256 2709e5f70f14bfba47117930f796474e8c340093b0b1cf4d20bbab1b974b669f SHA512 df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71 WHIRLPOOL 536300854a3a4fa417743617d47d09c948e97e5049d5274f60aca305b9e2e294fa8d74ae819f336344f040a8050a84cd9e1ff91af1897f4a6d27fa28f74edf6f
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild
new file mode 100644
index 00000000000..96b12009c60
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2018-05-15 6:37 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2018-05-15 6:37 UTC (permalink / raw
To: gentoo-commits
commit: f219f1616526da4a8be72f64ca11dc2d12a57c49
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue May 15 06:35:34 2018 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 15 06:35:34 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f219f161
dev-ros/opencv_tests: Bump to 1.12.8.
Package-Manager: Portage-2.3.36, Repoman-2.3.9
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild | 32 +++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 21c22c13c94..48250f7b17a 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -4,3 +4,4 @@ DIST vision_opencv-1.12.3.tar.gz 80497 BLAKE2B 97e9c6d623108307216ae88dd5a4c6231
DIST vision_opencv-1.12.4.tar.gz 80675 BLAKE2B e07f89942f471e25ec76ae43b07dee79eaf4637e5f5775151e066cc92a92f8993a6bc047ddc35adbb77745e6070797111d78add690ee7bb54cc8179cf2f7cfa5 SHA512 9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
DIST vision_opencv-1.12.5.tar.gz 81739 BLAKE2B 5c135009f4e766b34c217b6de1dba836bf225b4cc7aca53b34c297f0c0986a79c3c629990464599da98fa32424a87467037caf3b51f3f6dcab2add615d613c08 SHA512 df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
DIST vision_opencv-1.12.7.tar.gz 81877 BLAKE2B 216a82ec377e0bc3d85866da3ed3b9e8e90f7615bfbf0e3cacc30cd2bc2aeeb3f822d8daa1f0be42dab45dbdfc69c043a3a4c29b8357561356a2f874b3f61552 SHA512 e02f9450183e8e927d947d2382859ed01aaa5dc7a8f299e5a39815c53ee726b96781e961b1cf0f5cc3ac16699d162d4ed80678de4b6517e5139a5a8bd592e39c
+DIST vision_opencv-1.12.8.tar.gz 82043 BLAKE2B 9eb18ea9a4d3ddf6d2103ab3a2e53557349880ea665f8089d64319e8c99fb4ea922e8de1ab04fb749bed5c2503041d27d8e9b773d6142a5b5366aae937ca2514 SHA512 fadd84bb5e9586a5b04833100d9e1267ce8d153ca95a3257e1c3e6fe825dae524e25b2cc7deebb48d326cce8ef04523c5803eeecd88362cf6ff0384c52557608
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild
new file mode 100644
index 00000000000..83b23217853
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2018-05-22 11:28 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2018-05-22 11:28 UTC (permalink / raw
To: gentoo-commits
commit: 825373555e16001c68e84b21758756fe18e4f5d7
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun May 20 07:35:45 2018 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue May 22 11:27:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82537355
dev-ros/opencv_tests: Bump to 1.13.0.
Package-Manager: Portage-2.3.38, Repoman-2.3.9
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild | 32 +++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 48250f7b17a..3b31db9e87b 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -5,3 +5,4 @@ DIST vision_opencv-1.12.4.tar.gz 80675 BLAKE2B e07f89942f471e25ec76ae43b07dee79e
DIST vision_opencv-1.12.5.tar.gz 81739 BLAKE2B 5c135009f4e766b34c217b6de1dba836bf225b4cc7aca53b34c297f0c0986a79c3c629990464599da98fa32424a87467037caf3b51f3f6dcab2add615d613c08 SHA512 df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
DIST vision_opencv-1.12.7.tar.gz 81877 BLAKE2B 216a82ec377e0bc3d85866da3ed3b9e8e90f7615bfbf0e3cacc30cd2bc2aeeb3f822d8daa1f0be42dab45dbdfc69c043a3a4c29b8357561356a2f874b3f61552 SHA512 e02f9450183e8e927d947d2382859ed01aaa5dc7a8f299e5a39815c53ee726b96781e961b1cf0f5cc3ac16699d162d4ed80678de4b6517e5139a5a8bd592e39c
DIST vision_opencv-1.12.8.tar.gz 82043 BLAKE2B 9eb18ea9a4d3ddf6d2103ab3a2e53557349880ea665f8089d64319e8c99fb4ea922e8de1ab04fb749bed5c2503041d27d8e9b773d6142a5b5366aae937ca2514 SHA512 fadd84bb5e9586a5b04833100d9e1267ce8d153ca95a3257e1c3e6fe825dae524e25b2cc7deebb48d326cce8ef04523c5803eeecd88362cf6ff0384c52557608
+DIST vision_opencv-1.13.0.tar.gz 82177 BLAKE2B 1c863f3c9e6b856d61a0e879f958f0f1fd184f088e208023a504cf5bb982c5496b71e1f2b4761e4456ca76348e51bc2bc760b2c43e1a35b02fa5c23c8e444502 SHA512 a20ec2f41a0c94dde51b19f902ae078cbf5449a2aadbeacbc49bbfc2ab52c39878e63448a3137591f7e1b2f6025baef616579463cf32274e7838157137d214bc
diff --git a/dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild b/dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild
new file mode 100644
index 00000000000..83b23217853
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+# Be careful: It needs opencv with python support but opencv is python-single-r1
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2020-07-16 13:02 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2020-07-16 13:02 UTC (permalink / raw
To: gentoo-commits
commit: 558bc0cc5151c84a3689cd26ef2e05b8188eecff
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 16 12:48:43 2020 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 13:02:19 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558bc0cc
dev-ros/opencv_tests: bump eapi
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/opencv_tests-9999.ebuild | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/dev-ros/opencv_tests/opencv_tests-9999.ebuild b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
index 6a888f82993..ecaea466058 100644
--- a/dev-ros/opencv_tests/opencv_tests-9999.ebuild
+++ b/dev-ros/opencv_tests/opencv_tests-9999.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
+EAPI=7
ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
ROS_SUBDIR=${PN}
inherit ros-catkin
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2020-07-16 13:02 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2020-07-16 13:02 UTC (permalink / raw
To: gentoo-commits
commit: 49dde5f1c0eaa608286151a70373232b57ede250
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 16 12:50:26 2020 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 13:02:20 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49dde5f1
dev-ros/opencv_tests: Bump to 1.15.0.
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.15.0.ebuild | 30 +++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 3b31db9e87b..9dc1bff8ca7 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -6,3 +6,4 @@ DIST vision_opencv-1.12.5.tar.gz 81739 BLAKE2B 5c135009f4e766b34c217b6de1dba836b
DIST vision_opencv-1.12.7.tar.gz 81877 BLAKE2B 216a82ec377e0bc3d85866da3ed3b9e8e90f7615bfbf0e3cacc30cd2bc2aeeb3f822d8daa1f0be42dab45dbdfc69c043a3a4c29b8357561356a2f874b3f61552 SHA512 e02f9450183e8e927d947d2382859ed01aaa5dc7a8f299e5a39815c53ee726b96781e961b1cf0f5cc3ac16699d162d4ed80678de4b6517e5139a5a8bd592e39c
DIST vision_opencv-1.12.8.tar.gz 82043 BLAKE2B 9eb18ea9a4d3ddf6d2103ab3a2e53557349880ea665f8089d64319e8c99fb4ea922e8de1ab04fb749bed5c2503041d27d8e9b773d6142a5b5366aae937ca2514 SHA512 fadd84bb5e9586a5b04833100d9e1267ce8d153ca95a3257e1c3e6fe825dae524e25b2cc7deebb48d326cce8ef04523c5803eeecd88362cf6ff0384c52557608
DIST vision_opencv-1.13.0.tar.gz 82177 BLAKE2B 1c863f3c9e6b856d61a0e879f958f0f1fd184f088e208023a504cf5bb982c5496b71e1f2b4761e4456ca76348e51bc2bc760b2c43e1a35b02fa5c23c8e444502 SHA512 a20ec2f41a0c94dde51b19f902ae078cbf5449a2aadbeacbc49bbfc2ab52c39878e63448a3137591f7e1b2f6025baef616579463cf32274e7838157137d214bc
+DIST vision_opencv-1.15.0.tar.gz 82281 BLAKE2B 6e86cf67bb9fbf07ca36dbe0bb3fb32611a4e216cea209048bfe34b71622a56954063f2e7ff466275810f36c62d016a1d04e987383dde35f0bb85abf0e74350f SHA512 b6331b00aac18f96eb40ef57b2b4fe55da956007390549762818eab7ad36fcf192549448f2edcc6b4e550273f80320bf15eb6a60900d155be680ec8682fd17ba
diff --git a/dev-ros/opencv_tests/opencv_tests-1.15.0.ebuild b/dev-ros/opencv_tests/opencv_tests-1.15.0.ebuild
new file mode 100644
index 00000000000..ecaea466058
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.15.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_USEDEP}]
+ dev-ros/rospy[${PYTHON_USEDEP}]
+ media-libs/opencv[python,${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2020-07-16 13:02 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2020-07-16 13:02 UTC (permalink / raw
To: gentoo-commits
commit: e9cbf99150aae37b0191ad5855a3cf45f9e767ee
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 16 12:54:48 2020 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Jul 16 13:02:22 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9cbf991
dev-ros/opencv_tests: Remove old
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 8 ------
dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.12.7.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild | 32 ----------------------
dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild | 32 ----------------------
9 files changed, 264 deletions(-)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index 9dc1bff8ca7..e1922585b1e 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,9 +1 @@
-DIST vision_opencv-1.12.1.tar.gz 79203 BLAKE2B 55453f3ebdd26fbebf6cc527ca7029bf7ac8c1ee343b05f9a1fbf5a0dae284d7b1e29879ee0e23fd8b6a6a8317ce916147a368535075eb6bdf3bdfb40f0e3662 SHA512 f95b3247eed1d5f4403b1a123a033a5178d3491cf5deee27bf8386a9dab66475ef7889d0787483a03545ba9fc11e039b4ab0beedfa09121562cabd1bd33b5f88
-DIST vision_opencv-1.12.2.tar.gz 79771 BLAKE2B adc102d23eccdaca8c39fc0ef27510c32c36568a0deb242519392d454054d56e695f0d7b2ae006d99e2557f7209054d724cbba2b3fed742ac229e30ff773a753 SHA512 823e7e122d351e615e95093f6962b38ff76c01a876f71f4810fa2014ee9c71ec0c1e63d3d5a01a0297d6c58012e6b6a14ee850f57feda83d4d7125b9e0bd12c0
-DIST vision_opencv-1.12.3.tar.gz 80497 BLAKE2B 97e9c6d623108307216ae88dd5a4c6231b61d64826907c130233bab7c1590a50adf4e6bfdca3f6130365848a98ff1d2f58228c7f2dbc256aff6bbe04f164161b SHA512 2f732c7f9d9b5aa68b775fa08c8836bfb01cd3fe0fee9bd9bf862fecb26a23a58d754a96e723b420663b48b590f24e454e5a1871b6f4dcd4219d3c3e413ade3c
-DIST vision_opencv-1.12.4.tar.gz 80675 BLAKE2B e07f89942f471e25ec76ae43b07dee79eaf4637e5f5775151e066cc92a92f8993a6bc047ddc35adbb77745e6070797111d78add690ee7bb54cc8179cf2f7cfa5 SHA512 9ed426ddae7af343eed01d6ebf2769d654476bb28b095d67394e75feeec8440859aca34f62c9faff81018cf98fe58b731b96f3f7ffeaa459d14e6a3c59ad02e5
-DIST vision_opencv-1.12.5.tar.gz 81739 BLAKE2B 5c135009f4e766b34c217b6de1dba836bf225b4cc7aca53b34c297f0c0986a79c3c629990464599da98fa32424a87467037caf3b51f3f6dcab2add615d613c08 SHA512 df3ad951262a692124eead5751f64c04fbf831486db8c000e23e2f0b10f645d830c38cf2d99d23b696b96cd0388c4d732ddda4e5d8e8b7cb88a3fd5909c62c71
-DIST vision_opencv-1.12.7.tar.gz 81877 BLAKE2B 216a82ec377e0bc3d85866da3ed3b9e8e90f7615bfbf0e3cacc30cd2bc2aeeb3f822d8daa1f0be42dab45dbdfc69c043a3a4c29b8357561356a2f874b3f61552 SHA512 e02f9450183e8e927d947d2382859ed01aaa5dc7a8f299e5a39815c53ee726b96781e961b1cf0f5cc3ac16699d162d4ed80678de4b6517e5139a5a8bd592e39c
-DIST vision_opencv-1.12.8.tar.gz 82043 BLAKE2B 9eb18ea9a4d3ddf6d2103ab3a2e53557349880ea665f8089d64319e8c99fb4ea922e8de1ab04fb749bed5c2503041d27d8e9b773d6142a5b5366aae937ca2514 SHA512 fadd84bb5e9586a5b04833100d9e1267ce8d153ca95a3257e1c3e6fe825dae524e25b2cc7deebb48d326cce8ef04523c5803eeecd88362cf6ff0384c52557608
-DIST vision_opencv-1.13.0.tar.gz 82177 BLAKE2B 1c863f3c9e6b856d61a0e879f958f0f1fd184f088e208023a504cf5bb982c5496b71e1f2b4761e4456ca76348e51bc2bc760b2c43e1a35b02fa5c23c8e444502 SHA512 a20ec2f41a0c94dde51b19f902ae078cbf5449a2aadbeacbc49bbfc2ab52c39878e63448a3137591f7e1b2f6025baef616579463cf32274e7838157137d214bc
DIST vision_opencv-1.15.0.tar.gz 82281 BLAKE2B 6e86cf67bb9fbf07ca36dbe0bb3fb32611a4e216cea209048bfe34b71622a56954063f2e7ff466275810f36c62d016a1d04e987383dde35f0bb85abf0e74350f SHA512 b6331b00aac18f96eb40ef57b2b4fe55da956007390549762818eab7ad36fcf192549448f2edcc6b4e550273f80320bf15eb6a60900d155be680ec8682fd17ba
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild
deleted file mode 100644
index 6a888f82993..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.1-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild
deleted file mode 100644
index 6a888f82993..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild
deleted file mode 100644
index 6a888f82993..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.3.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild
deleted file mode 100644
index 96b12009c60..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.4.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild
deleted file mode 100644
index 96b12009c60..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.5.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.7.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.7.ebuild
deleted file mode 100644
index 96b12009c60..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.7.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild b/dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild
deleted file mode 100644
index 83b23217853..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.12.8.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
diff --git a/dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild b/dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild
deleted file mode 100644
index 83b23217853..00000000000
--- a/dev-ros/opencv_tests/opencv_tests-1.13.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
-KEYWORDS="~amd64 ~arm"
-# Be careful: It needs opencv with python support but opencv is python-single-r1
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Tests for ROS OpenCV integration"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-ros/cv_bridge[${PYTHON_USEDEP}]
- dev-ros/rospy[${PYTHON_USEDEP}]
- media-libs/opencv[python,${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]
-"
-DEPEND="${RDEPEND}"
-
-src_install() {
- ros-catkin_src_install
- insinto /usr/share/${PN}/launch
- doins launch/*.launch
- exeinto /usr/libexec/${PN}
- doexe nodes/*
-}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2022-03-09 13:19 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2022-03-09 13:19 UTC (permalink / raw
To: gentoo-commits
commit: c50f563e26e915085ca3cb95d09dd6fdfbc065d2
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 9 12:30:49 2022 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Mar 9 13:19:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c50f563e
dev-ros/opencv_tests: Bump to 1.16.0.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.16.0.ebuild | 30 +++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index e1922585b1e0..b4878bf449a3 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1 +1,2 @@
DIST vision_opencv-1.15.0.tar.gz 82281 BLAKE2B 6e86cf67bb9fbf07ca36dbe0bb3fb32611a4e216cea209048bfe34b71622a56954063f2e7ff466275810f36c62d016a1d04e987383dde35f0bb85abf0e74350f SHA512 b6331b00aac18f96eb40ef57b2b4fe55da956007390549762818eab7ad36fcf192549448f2edcc6b4e550273f80320bf15eb6a60900d155be680ec8682fd17ba
+DIST vision_opencv-1.16.0.tar.gz 85452 BLAKE2B 5f167898cef4bbc753e32af87174b7f668b3eff00357a22e8c454d181116a925059d4837210086d445ceaf74819fdb9a527eb5667321df8a7c1fe84549dbe5b6 SHA512 affd61f0d933cc57d5d23e840f0708e8ffdc0033eee22a21fe5c0099a2ab75d4c3fdcc41705167ab3615f5388ce47641faf5b21e6c6365a4e540abe69dfad3fe
diff --git a/dev-ros/opencv_tests/opencv_tests-1.16.0.ebuild b/dev-ros/opencv_tests/opencv_tests-1.16.0.ebuild
new file mode 100644
index 000000000000..c1cfbbde482c
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.16.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_SINGLE_USEDEP}]
+ dev-ros/rospy[${PYTHON_SINGLE_USEDEP}]
+ $(python_gen_cond_dep "media-libs/opencv[python,\${PYTHON_USEDEP}]")
+ $(python_gen_cond_dep "dev-python/numpy[\${PYTHON_USEDEP}]")
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/
@ 2022-10-27 14:05 Alexis Ballier
0 siblings, 0 replies; 20+ messages in thread
From: Alexis Ballier @ 2022-10-27 14:05 UTC (permalink / raw
To: gentoo-commits
commit: 4f8903b36279137cdeb74328f5dbee52d16cfc5d
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 13:17:22 2022 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 14:05:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8903b3
dev-ros/opencv_tests: Bump to 1.16.2.
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
dev-ros/opencv_tests/Manifest | 1 +
dev-ros/opencv_tests/opencv_tests-1.16.2.ebuild | 30 +++++++++++++++++++++++++
2 files changed, 31 insertions(+)
diff --git a/dev-ros/opencv_tests/Manifest b/dev-ros/opencv_tests/Manifest
index b4878bf449a3..e7b87b79b50e 100644
--- a/dev-ros/opencv_tests/Manifest
+++ b/dev-ros/opencv_tests/Manifest
@@ -1,2 +1,3 @@
DIST vision_opencv-1.15.0.tar.gz 82281 BLAKE2B 6e86cf67bb9fbf07ca36dbe0bb3fb32611a4e216cea209048bfe34b71622a56954063f2e7ff466275810f36c62d016a1d04e987383dde35f0bb85abf0e74350f SHA512 b6331b00aac18f96eb40ef57b2b4fe55da956007390549762818eab7ad36fcf192549448f2edcc6b4e550273f80320bf15eb6a60900d155be680ec8682fd17ba
DIST vision_opencv-1.16.0.tar.gz 85452 BLAKE2B 5f167898cef4bbc753e32af87174b7f668b3eff00357a22e8c454d181116a925059d4837210086d445ceaf74819fdb9a527eb5667321df8a7c1fe84549dbe5b6 SHA512 affd61f0d933cc57d5d23e840f0708e8ffdc0033eee22a21fe5c0099a2ab75d4c3fdcc41705167ab3615f5388ce47641faf5b21e6c6365a4e540abe69dfad3fe
+DIST vision_opencv-1.16.2.tar.gz 86615 BLAKE2B e3078be4a865aed4317db7dc422a71661a52e8b42c52aaab92c524cdb14ad08ab85ac523d55b76b5ebc6201400a832d0ea9c3203ed5ff2af342a58be5ab0ef49 SHA512 c1fd4b402cc970797c0b01573d111cec041ea59598897256ed26ad01624e15300cc2147deaf701af1d12bc921ac9892917d927d17325d4086c0724633d96b3c5
diff --git a/dev-ros/opencv_tests/opencv_tests-1.16.2.ebuild b/dev-ros/opencv_tests/opencv_tests-1.16.2.ebuild
new file mode 100644
index 000000000000..c1cfbbde482c
--- /dev/null
+++ b/dev-ros/opencv_tests/opencv_tests-1.16.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+ROS_REPO_URI="https://github.com/ros-perception/vision_opencv"
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Tests for ROS OpenCV integration"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+ dev-ros/cv_bridge[${PYTHON_SINGLE_USEDEP}]
+ dev-ros/rospy[${PYTHON_SINGLE_USEDEP}]
+ $(python_gen_cond_dep "media-libs/opencv[python,\${PYTHON_USEDEP}]")
+ $(python_gen_cond_dep "dev-python/numpy[\${PYTHON_USEDEP}]")
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+ ros-catkin_src_install
+ insinto /usr/share/${PN}/launch
+ doins launch/*.launch
+ exeinto /usr/libexec/${PN}
+ doexe nodes/*
+}
^ permalink raw reply related [flat|nested] 20+ messages in thread
end of thread, other threads:[~2022-10-27 14:05 UTC | newest]
Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-06 14:14 [gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_tests/ Alexis Ballier
-- strict thread matches above, loose matches on Subject: below --
2022-10-27 14:05 Alexis Ballier
2022-03-09 13:19 Alexis Ballier
2020-07-16 13:02 Alexis Ballier
2020-07-16 13:02 Alexis Ballier
2020-07-16 13:02 Alexis Ballier
2018-05-22 11:28 Alexis Ballier
2018-05-15 6:37 Alexis Ballier
2017-11-07 19:24 Alexis Ballier
2017-01-30 22:55 Alexis Ballier
2016-09-28 11:07 Alexis Ballier
2016-09-28 11:01 Alexis Ballier
2016-09-28 11:01 Alexis Ballier
2016-07-18 12:13 Alexis Ballier
2016-03-14 11:38 Alexis Ballier
2016-02-04 11:16 Alexis Ballier
2016-01-19 11:35 Alexis Ballier
2015-12-01 11:51 Alexis Ballier
2015-09-23 13:14 Alexis Ballier
2015-09-23 9:44 Alexis Ballier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox