[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2021-04-06 Thread Sam James
commit: 19c721a21a6fc795b72433229e5eb01b91b22de7
Author: Sam James  gentoo  org>
AuthorDate: Tue Apr  6 02:47:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Apr  6 18:18:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19c721a2

dev-ros/qt_gui_cpp: move CMAKE_MAKEFILE_GENERATOR to pre-inherit

Marked as @PRE_INHERIT within cmake.eclass because it manipulates
dependencies in global scope.

Signed-off-by: Sam James  gentoo.org>

 dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild | 7 +++
 dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild
index dac9e5563d6..84d56a89ba1 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,6 +7,8 @@ ROS_REPO_URI="https://github.com/ros-visualization/qt_gui_core;
 KEYWORDS="~amd64"
 ROS_SUBDIR=${PN}
 
+# FIXME: fails to build with ninja
+CMAKE_MAKEFILE_GENERATOR=emake
 inherit ros-catkin
 
 DESCRIPTION="C++-bindings for qt_gui and creates bindings for every generator 
available"
@@ -32,6 +34,3 @@ PATCHES=(
"${FILESDIR}/libdir.patch"
"${FILESDIR}/rpaths.patch"
 )
-
-# FIXME: fails to build with ninja
-CMAKE_MAKEFILE_GENERATOR=emake

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
index dac9e5563d6..84d56a89ba1 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,6 +7,8 @@ ROS_REPO_URI="https://github.com/ros-visualization/qt_gui_core;
 KEYWORDS="~amd64"
 ROS_SUBDIR=${PN}
 
+# FIXME: fails to build with ninja
+CMAKE_MAKEFILE_GENERATOR=emake
 inherit ros-catkin
 
 DESCRIPTION="C++-bindings for qt_gui and creates bindings for every generator 
available"
@@ -32,6 +34,3 @@ PATCHES=(
"${FILESDIR}/libdir.patch"
"${FILESDIR}/rpaths.patch"
 )
-
-# FIXME: fails to build with ninja
-CMAKE_MAKEFILE_GENERATOR=emake



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/files/

2020-10-14 Thread Alexis Ballier
commit: 21e668bf18d42511df10864cc0b0a3e06ff1511d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Oct 14 09:15:02 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Oct 14 09:16:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e668bf

dev-ros/qt_gui_cpp: fix rpaths patch

Closes: https://bugs.gentoo.org/748699
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/files/rpaths.patch | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/files/rpaths.patch 
b/dev-ros/qt_gui_cpp/files/rpaths.patch
index 7f95b9e938a..313e3edcb72 100644
--- a/dev-ros/qt_gui_cpp/files/rpaths.patch
+++ b/dev-ros/qt_gui_cpp/files/rpaths.patch
@@ -2,12 +2,14 @@ Index: qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
 ===
 --- qt_gui_cpp.orig/src/qt_gui_cpp_sip/CMakeLists.txt
 +++ qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
-@@ -29,7 +29,7 @@ set(qt_gui_cpp_sip_DEPENDENT_FILES
+@@ -29,8 +29,8 @@ set(qt_gui_cpp_sip_DEPENDENT_FILES
  # maintain context for different named target
  set(qt_gui_cpp_sip_INCLUDE_DIRS ${qt_gui_cpp_INCLUDE_DIRS} 
"${CMAKE_CURRENT_SOURCE_DIR}/../../include" ${catkin_INCLUDE_DIRS})
  set(qt_gui_cpp_sip_LIBRARIES ${qt_gui_cpp_LIBRARIES} ${PROJECT_NAME} 
${catkin_LIBRARIES} ${Boost_LIBRARIES})
 -set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS} 
${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
+-set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER})
 +set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS})
- set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER})
++set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER} 
-L${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
  
  find_package(python_qt_binding REQUIRED)
+ include(${python_qt_binding_EXTRAS_DIR}/sip_helper.cmake)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2020-10-13 Thread Alexis Ballier
commit: 501e095524695229b68eaa52adaa0b8951c07440
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Oct 13 11:22:21 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Oct 13 11:24:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501e0955

dev-ros/qt_gui_cpp: revbump

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Alexis Ballier  gentoo.org>

 .../qt_gui_cpp/{qt_gui_cpp-0.4.2.ebuild => qt_gui_cpp-0.4.2-r1.ebuild}| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild
similarity index 100%
rename from dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild
rename to dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/files/, dev-ros/qt_gui_cpp/

2020-10-13 Thread Alexis Ballier
commit: 3efdb8ce7f118d456cd864fb40aa43794f8deb76
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Oct 13 11:17:26 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Oct 13 11:24:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3efdb8ce

dev-ros/qt_gui_cpp: fix rpath leak

Closes: https://bugs.gentoo.org/741050
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/files/rpaths.patch  | 13 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild |  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild  |  1 +
 3 files changed, 15 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/files/rpaths.patch 
b/dev-ros/qt_gui_cpp/files/rpaths.patch
new file mode 100644
index 000..7f95b9e938a
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/files/rpaths.patch
@@ -0,0 +1,13 @@
+Index: qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
+===
+--- qt_gui_cpp.orig/src/qt_gui_cpp_sip/CMakeLists.txt
 qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
+@@ -29,7 +29,7 @@ set(qt_gui_cpp_sip_DEPENDENT_FILES
+ # maintain context for different named target
+ set(qt_gui_cpp_sip_INCLUDE_DIRS ${qt_gui_cpp_INCLUDE_DIRS} 
"${CMAKE_CURRENT_SOURCE_DIR}/../../include" ${catkin_INCLUDE_DIRS})
+ set(qt_gui_cpp_sip_LIBRARIES ${qt_gui_cpp_LIBRARIES} ${PROJECT_NAME} 
${catkin_LIBRARIES} ${Boost_LIBRARIES})
+-set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS} 
${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
++set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS})
+ set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER})
+ 
+ find_package(python_qt_binding REQUIRED)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild
index 1f52f6afc83..dac9e5563d6 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild
@@ -30,6 +30,7 @@ DEPEND="${RDEPEND}
 "
 PATCHES=(
"${FILESDIR}/libdir.patch"
+   "${FILESDIR}/rpaths.patch"
 )
 
 # FIXME: fails to build with ninja

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
index 1f52f6afc83..dac9e5563d6 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
@@ -30,6 +30,7 @@ DEPEND="${RDEPEND}
 "
 PATCHES=(
"${FILESDIR}/libdir.patch"
+   "${FILESDIR}/rpaths.patch"
 )
 
 # FIXME: fails to build with ninja



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/, dev-ros/qt_gui_cpp/files/

2020-10-13 Thread Alexis Ballier
commit: f9ba491d5b3775754e89f5b9b27edaef8c3136c8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Oct 13 11:15:34 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Oct 13 11:24:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9ba491d

dev-ros/qt_gui_cpp: Remove old

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest|  1 -
 dev-ros/qt_gui_cpp/files/sip.patch | 25 
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild | 37 --
 3 files changed, 63 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index a69b42f56b2..39d59701806 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,2 +1 @@
-DIST qt_gui_core-0.4.1.tar.gz 96850 BLAKE2B 
a8a4325d5462a0788a69661adb20b3bf1bc9e391344ced31468bf9ddbe7114a13a2ecd3dda580986bd0af98c837641bda3e3d6cd3c5d9fa3352c37817ace2ed4
 SHA512 
0c46f86f88a818107049d08db6682a320f47b1b4983c586e4c944a387c070c7e017fca2f4be9d251f8a907f15be439998b2d559bea51ffc724fa4afc5e75f67c
 DIST qt_gui_core-0.4.2.tar.gz 97267 BLAKE2B 
631996dd5b2a4e0aa557eb14a9dcb967377fce4923ada280d5894a733827f6f7d1aa240cc28261ee95a39171b03cba4f27f794ca3f9eb488d8b1953d237a9223
 SHA512 
a8b684d52eb1d4bfcdb6b63a989598d2098462d6fd93f26dd5a7eb0c0c9be9c324cb5d77b5e12c583253da4ce5edc544535bb9dd5a2f7966bf1642a7bd0ca421

diff --git a/dev-ros/qt_gui_cpp/files/sip.patch 
b/dev-ros/qt_gui_cpp/files/sip.patch
deleted file mode 100644
index 8157a9bc68d..000
--- a/dev-ros/qt_gui_cpp/files/sip.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 5ecb3a219146816916c4a94e32664850548a2085 Mon Sep 17 00:00:00 2001
-From: Johannes Meyer 
-Date: Tue, 7 Jul 2020 01:20:51 +0200
-Subject: [PATCH] qt_gui_cpp_sip: declare private assignment operator for SIP
- (#226)
-

- qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip 
b/qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip
-index 286d52e6..1d37a37d 100644
 a/src/qt_gui_cpp_sip/plugin_context.sip
-+++ b/src/qt_gui_cpp_sip/plugin_context.sip
-@@ -25,6 +25,10 @@ public:
- 
-   void reloadPlugin();
- 
-+private:
-+
-+  PluginContext& operator=(const PluginContext&);
-+
- };
- 
- };

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
deleted file mode 100644
index c4d73b4fc0d..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="C++-bindings for qt_gui and creates bindings for every generator 
available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   dev-libs/tinyxml2:=
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_SINGLE_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_SINGLE_USEDEP}]
-   dev-libs/boost:=
-   dev-libs/console_bridge:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-   "${FILESDIR}/sip.patch"
-)
-
-# FIXME: fails to build with ninja
-CMAKE_MAKEFILE_GENERATOR=emake



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2020-07-29 Thread Alexis Ballier
commit: 9a3b6faa7ebe5c92c700200dfae93f684c09d838
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 29 12:11:37 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 29 12:21:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3b6faa

dev-ros/qt_gui_cpp: Bump to 0.4.2.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 7f2e9c7fbeb..a69b42f56b2 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1 +1,2 @@
 DIST qt_gui_core-0.4.1.tar.gz 96850 BLAKE2B 
a8a4325d5462a0788a69661adb20b3bf1bc9e391344ced31468bf9ddbe7114a13a2ecd3dda580986bd0af98c837641bda3e3d6cd3c5d9fa3352c37817ace2ed4
 SHA512 
0c46f86f88a818107049d08db6682a320f47b1b4983c586e4c944a387c070c7e017fca2f4be9d251f8a907f15be439998b2d559bea51ffc724fa4afc5e75f67c
+DIST qt_gui_core-0.4.2.tar.gz 97267 BLAKE2B 
631996dd5b2a4e0aa557eb14a9dcb967377fce4923ada280d5894a733827f6f7d1aa240cc28261ee95a39171b03cba4f27f794ca3f9eb488d8b1953d237a9223
 SHA512 
a8b684d52eb1d4bfcdb6b63a989598d2098462d6fd93f26dd5a7eb0c0c9be9c324cb5d77b5e12c583253da4ce5edc544535bb9dd5a2f7966bf1642a7bd0ca421

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild
new file mode 100644
index 000..1f52f6afc83
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.2.ebuild
@@ -0,0 +1,36 @@
+# 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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="C++-bindings for qt_gui and creates bindings for every generator 
available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   dev-libs/tinyxml2:=
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_SINGLE_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_SINGLE_USEDEP}]
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)
+
+# FIXME: fails to build with ninja
+CMAKE_MAKEFILE_GENERATOR=emake



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2020-07-15 Thread Alexis Ballier
commit: 00f1e4557b587d73f2f79dc069b43e3243026adb
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 15 16:16:40 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 15 16:57:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00f1e455

dev-ros/qt_gui_cpp: Bump to 0.4.1.

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 912a95ed0ac..645ff8094ee 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1 +1,2 @@
 DIST qt_gui_core-0.3.16.tar.gz 94321 BLAKE2B 
87d38cfaa1ed46cdc6a08aaacef71844aec48226b6242b153d37d804e24a67300a84d7730d02f9cfcff42ab520b023b928bee6db354deec70744deb8c3136170
 SHA512 
44aaf7d07bc4223b1185fdfcd10f01f0eab0b2a3511dcb9cd055c98696becd07d46ceb1e15c6c78994e1069211b8c475d3b0a95523151a27e54c3f91ecc203dc
+DIST qt_gui_core-0.4.1.tar.gz 96850 BLAKE2B 
a8a4325d5462a0788a69661adb20b3bf1bc9e391344ced31468bf9ddbe7114a13a2ecd3dda580986bd0af98c837641bda3e3d6cd3c5d9fa3352c37817ace2ed4
 SHA512 
0c46f86f88a818107049d08db6682a320f47b1b4983c586e4c944a387c070c7e017fca2f4be9d251f8a907f15be439998b2d559bea51ffc724fa4afc5e75f67c

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
new file mode 100644
index 000..a4e1317260c
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
@@ -0,0 +1,33 @@
+# 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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="C++-bindings for qt_gui and creates bindings for every generator 
available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   dev-libs/tinyxml2:=
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2020-07-15 Thread Alexis Ballier
commit: 4ccc6c8c423d2572f809c8cdd3dd7e87332d2a55
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 15 16:55:18 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 15 16:57:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ccc6c8c

dev-ros/qt_gui_cpp: Remove old

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest |  1 -
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild | 34 -
 2 files changed, 35 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 645ff8094ee..7f2e9c7fbeb 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,2 +1 @@
-DIST qt_gui_core-0.3.16.tar.gz 94321 BLAKE2B 
87d38cfaa1ed46cdc6a08aaacef71844aec48226b6242b153d37d804e24a67300a84d7730d02f9cfcff42ab520b023b928bee6db354deec70744deb8c3136170
 SHA512 
44aaf7d07bc4223b1185fdfcd10f01f0eab0b2a3511dcb9cd055c98696becd07d46ceb1e15c6c78994e1069211b8c475d3b0a95523151a27e54c3f91ecc203dc
 DIST qt_gui_core-0.4.1.tar.gz 96850 BLAKE2B 
a8a4325d5462a0788a69661adb20b3bf1bc9e391344ced31468bf9ddbe7114a13a2ecd3dda580986bd0af98c837641bda3e3d6cd3c5d9fa3352c37817ace2ed4
 SHA512 
0c46f86f88a818107049d08db6682a320f47b1b4983c586e4c944a387c070c7e017fca2f4be9d251f8a907f15be439998b2d559bea51ffc724fa4afc5e75f67c

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild
deleted file mode 100644
index 359593ee455..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-ROS_REPO_URI="https://github.com/ros-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   dev-libs/tinyxml2:=
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-   dev-libs/console_bridge:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/files/, dev-ros/qt_gui_cpp/

2020-07-15 Thread Alexis Ballier
commit: e83f50f8373ac8559d86c1cae3c011105ef21c60
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 15 16:55:03 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 15 16:57:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e83f50f8

dev-ros/qt_gui_cpp: upstream sip patch

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/files/sip.patch | 25 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild |  1 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/files/sip.patch 
b/dev-ros/qt_gui_cpp/files/sip.patch
new file mode 100644
index 000..8157a9bc68d
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/files/sip.patch
@@ -0,0 +1,25 @@
+From 5ecb3a219146816916c4a94e32664850548a2085 Mon Sep 17 00:00:00 2001
+From: Johannes Meyer 
+Date: Tue, 7 Jul 2020 01:20:51 +0200
+Subject: [PATCH] qt_gui_cpp_sip: declare private assignment operator for SIP
+ (#226)
+
+---
+ qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip 
b/qt_gui_cpp/src/qt_gui_cpp_sip/plugin_context.sip
+index 286d52e6..1d37a37d 100644
+--- a/src/qt_gui_cpp_sip/plugin_context.sip
 b/src/qt_gui_cpp_sip/plugin_context.sip
+@@ -25,6 +25,10 @@ public:
+ 
+   void reloadPlugin();
+ 
++private:
++
++  PluginContext& operator=(const PluginContext&);
++
+ };
+ 
+ };

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
index a4e1317260c..722ac827000 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.4.1.ebuild
@@ -30,4 +30,5 @@ DEPEND="${RDEPEND}
 "
 PATCHES=(
"${FILESDIR}/libdir.patch"
+   "${FILESDIR}/sip.patch"
 )



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2020-07-15 Thread Alexis Ballier
commit: e950ce09cb0cb9436c601728cf8c392b3de8c84f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 15 16:14:37 2020 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 15 16:57:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e950ce09

dev-ros/qt_gui_cpp: bump eapi

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
index 0216c3788c0..a4e1317260c 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
@@ -1,16 +1,15 @@
-# Copyright 1999-2017 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-visualization/qt_gui_core;
 KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
 ROS_SUBDIR=${PN}
 
 inherit ros-catkin
 
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+DESCRIPTION="C++-bindings for qt_gui and creates bindings for every generator 
available"
 LICENSE="BSD"
 SLOT="0"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2019-12-13 Thread Alexis Ballier
commit: d04d410a4ffd341497bf87750f74db590a203663
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Dec 13 12:02:39 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Dec 13 12:02:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d04d410a

dev-ros/qt_gui_cpp: Remove old

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest |  1 -
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild | 34 -
 2 files changed, 35 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 1cca61b4651..912a95ed0ac 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,2 +1 @@
-DIST qt_gui_core-0.3.11.tar.gz 91640 BLAKE2B 
49615e039ea7a2586679c6d6ffd9a583a16c2087b1c1090885ca83894aa98d44efc10c7bb622068ac49eb8c70eac98a5f495e3b417b3750171c31b433c53bfad
 SHA512 
f83abd1d75ea6794fc25da79912a629bd13167bbe2815c9616a0e1a8993a4730053fc737cb864ba01ac869d9aec85269d2e1a19d963a50b8469e6d073e55db9a
 DIST qt_gui_core-0.3.16.tar.gz 94321 BLAKE2B 
87d38cfaa1ed46cdc6a08aaacef71844aec48226b6242b153d37d804e24a67300a84d7730d02f9cfcff42ab520b023b928bee6db354deec70744deb8c3136170
 SHA512 
44aaf7d07bc4223b1185fdfcd10f01f0eab0b2a3511dcb9cd055c98696becd07d46ceb1e15c6c78994e1069211b8c475d3b0a95523151a27e54c3f91ecc203dc

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild
deleted file mode 100644
index a52422eff7b..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild
+++ /dev/null
@@ -1,34 +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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   dev-libs/tinyxml2:=
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-   dev-libs/console_bridge:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/files/

2019-12-13 Thread Alexis Ballier
commit: e040dedf487492de6191b77c0e664cae7f0889d2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Dec 13 12:07:06 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Dec 13 12:07:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e040dedf

dev-ros/qt_gui_cpp: fix libdir patch

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/files/libdir.patch | 12 +---
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/files/libdir.patch 
b/dev-ros/qt_gui_cpp/files/libdir.patch
index 8c22eed2385..b2656183de9 100644
--- a/dev-ros/qt_gui_cpp/files/libdir.patch
+++ b/dev-ros/qt_gui_cpp/files/libdir.patch
@@ -1,15 +1,13 @@
-Index: qt_gui_core-0.2.26/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
+Index: qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
 ===
 qt_gui_core-0.2.26.orig/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
-+++ qt_gui_core-0.2.26/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
-@@ -29,8 +29,8 @@ set(qt_gui_cpp_sip_DEPENDENT_FILES
+--- qt_gui_cpp.orig/src/qt_gui_cpp_sip/CMakeLists.txt
 qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
+@@ -29,7 +29,7 @@ set(qt_gui_cpp_sip_DEPENDENT_FILES
  # maintain context for different named target
  set(qt_gui_cpp_sip_INCLUDE_DIRS ${qt_gui_cpp_INCLUDE_DIRS} 
"${CMAKE_CURRENT_SOURCE_DIR}/../../include" ${catkin_INCLUDE_DIRS})
  set(qt_gui_cpp_sip_LIBRARIES ${qt_gui_cpp_LIBRARIES} ${PROJECT_NAME} 
${catkin_LIBRARIES} ${Boost_LIBRARIES})
 -set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS} 
${CATKIN_DEVEL_PREFIX}/lib)
--set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER} 
-Wl,-rpath,\\"${CATKIN_DEVEL_PREFIX}/lib\\")
 +set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS} 
${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
-+set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER} 
-Wl,-rpath,\\"${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR}\\")
+ set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER})
  
  find_package(python_qt_binding REQUIRED)
- include(${python_qt_binding_EXTRAS_DIR}/sip_helper.cmake)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2019-12-13 Thread Alexis Ballier
commit: 51fa7c5af4867e242aada00c1ec36c92a0165b01
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Dec 13 11:59:03 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Dec 13 11:59:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51fa7c5a

dev-ros/qt_gui_cpp: Bump to 0.3.16.

Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest |  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 1669fe597af..1cca61b4651 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1 +1,2 @@
 DIST qt_gui_core-0.3.11.tar.gz 91640 BLAKE2B 
49615e039ea7a2586679c6d6ffd9a583a16c2087b1c1090885ca83894aa98d44efc10c7bb622068ac49eb8c70eac98a5f495e3b417b3750171c31b433c53bfad
 SHA512 
f83abd1d75ea6794fc25da79912a629bd13167bbe2815c9616a0e1a8993a4730053fc737cb864ba01ac869d9aec85269d2e1a19d963a50b8469e6d073e55db9a
+DIST qt_gui_core-0.3.16.tar.gz 94321 BLAKE2B 
87d38cfaa1ed46cdc6a08aaacef71844aec48226b6242b153d37d804e24a67300a84d7730d02f9cfcff42ab520b023b928bee6db354deec70744deb8c3136170
 SHA512 
44aaf7d07bc4223b1185fdfcd10f01f0eab0b2a3511dcb9cd055c98696becd07d46ceb1e15c6c78994e1069211b8c475d3b0a95523151a27e54c3f91ecc203dc

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild
new file mode 100644
index 000..359593ee455
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.16.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   dev-libs/tinyxml2:=
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2019-08-28 Thread Alexis Ballier
commit: 0e67e9b36dde10f8d88c7a09849d833c1678fced
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Aug 28 14:42:32 2019 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Aug 28 17:01:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e67e9b3

dev-ros/qt_gui_cpp: Remove old

Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest   |  3 ---
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild   | 34 ---
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8-r1.ebuild | 34 ---
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.9.ebuild| 34 ---
 4 files changed, 105 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index d08aba7b677..1669fe597af 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,4 +1 @@
-DIST qt_gui_core-0.3.10.tar.gz 91569 BLAKE2B 
04c764e49c5dc1126d0f87e1c53109748dc11b38e94f242d44fca56e8334eaae3469f2299f9c2c4eef536264d1fd5c3ba5d8dbff0fc809afdb36d0b2a35ea669
 SHA512 
76c418315453d975ae2901e1d33205f3471ff540fac3be9834a567d4763400688aaedf3d172d45cc2f39652055446085a3ea65c7acca679e271333d8ca6ed3fa
 DIST qt_gui_core-0.3.11.tar.gz 91640 BLAKE2B 
49615e039ea7a2586679c6d6ffd9a583a16c2087b1c1090885ca83894aa98d44efc10c7bb622068ac49eb8c70eac98a5f495e3b417b3750171c31b433c53bfad
 SHA512 
f83abd1d75ea6794fc25da79912a629bd13167bbe2815c9616a0e1a8993a4730053fc737cb864ba01ac869d9aec85269d2e1a19d963a50b8469e6d073e55db9a
-DIST qt_gui_core-0.3.8.tar.gz 91248 BLAKE2B 
9ed159b8d065e7b2a44dcf9ac496a699675e5ec41d5ed222413894f098e122b092c976c934dc37a99846e0fe80858fb377bf937b3eabc3f0c6df126de7944e88
 SHA512 
aec926adffc9f1ab84d7d5cccb207d87254496b37e9e2e4c430de191917823424751206647d61821a65dec0aad3241dab22c85f21980fbe1a4bf114bb2c29d70
-DIST qt_gui_core-0.3.9.tar.gz 91495 BLAKE2B 
c0f2f2b9231a42da68c0032bfb192a47060f4b0915952b77750985be00023f22678480605990a79016b8ed906cacbdb9cd7eafabbb917b06f891f6b7817a999c
 SHA512 
3e7e45001f1749e3ca75c6b33e3e7a131a314a5ec66925b86f2617f6f749f4c2093d33420bbe0f148faa44fb1fb3071241e47180d3c56ed9d1f7a2befb006a95

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild
deleted file mode 100644
index a52422eff7b..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild
+++ /dev/null
@@ -1,34 +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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   dev-libs/tinyxml2:=
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-   dev-libs/console_bridge:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8-r1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8-r1.ebuild
deleted file mode 100644
index 0216c3788c0..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8-r1.ebuild
+++ /dev/null
@@ -1,34 +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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   dev-libs/tinyxml2:=
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-   dev-libs/console_bridge:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.9.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.9.ebuild
deleted file mode 100644
index a52422eff7b..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.9.ebuild
+++ /dev/null
@@ -1,34 +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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for 

[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2018-08-31 Thread Alexis Ballier
commit: 254e8d005de7bc2e537eae4978c3e6ccae644a1c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Aug 31 10:40:05 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Aug 31 13:56:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=254e8d00

dev-ros/qt_gui_cpp: Bump to 0.3.11.

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 dev-ros/qt_gui_cpp/Manifest |  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index dad55af7393..d08aba7b677 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,3 +1,4 @@
 DIST qt_gui_core-0.3.10.tar.gz 91569 BLAKE2B 
04c764e49c5dc1126d0f87e1c53109748dc11b38e94f242d44fca56e8334eaae3469f2299f9c2c4eef536264d1fd5c3ba5d8dbff0fc809afdb36d0b2a35ea669
 SHA512 
76c418315453d975ae2901e1d33205f3471ff540fac3be9834a567d4763400688aaedf3d172d45cc2f39652055446085a3ea65c7acca679e271333d8ca6ed3fa
+DIST qt_gui_core-0.3.11.tar.gz 91640 BLAKE2B 
49615e039ea7a2586679c6d6ffd9a583a16c2087b1c1090885ca83894aa98d44efc10c7bb622068ac49eb8c70eac98a5f495e3b417b3750171c31b433c53bfad
 SHA512 
f83abd1d75ea6794fc25da79912a629bd13167bbe2815c9616a0e1a8993a4730053fc737cb864ba01ac869d9aec85269d2e1a19d963a50b8469e6d073e55db9a
 DIST qt_gui_core-0.3.8.tar.gz 91248 BLAKE2B 
9ed159b8d065e7b2a44dcf9ac496a699675e5ec41d5ed222413894f098e122b092c976c934dc37a99846e0fe80858fb377bf937b3eabc3f0c6df126de7944e88
 SHA512 
aec926adffc9f1ab84d7d5cccb207d87254496b37e9e2e4c430de191917823424751206647d61821a65dec0aad3241dab22c85f21980fbe1a4bf114bb2c29d70
 DIST qt_gui_core-0.3.9.tar.gz 91495 BLAKE2B 
c0f2f2b9231a42da68c0032bfb192a47060f4b0915952b77750985be00023f22678480605990a79016b8ed906cacbdb9cd7eafabbb917b06f891f6b7817a999c
 SHA512 
3e7e45001f1749e3ca75c6b33e3e7a131a314a5ec66925b86f2617f6f749f4c2093d33420bbe0f148faa44fb1fb3071241e47180d3c56ed9d1f7a2befb006a95

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild
new file mode 100644
index 000..a52422eff7b
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.11.ebuild
@@ -0,0 +1,34 @@
+# 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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   dev-libs/tinyxml2:=
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2018-08-07 Thread Alexis Ballier
commit: a49482c8db73863cc95f9a9ceb0599e008264ea2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Aug  7 13:57:07 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Aug  7 15:48:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49482c8

dev-ros/qt_gui_cpp: Bump to 0.3.10.

Package-Manager: Portage-2.3.44, Repoman-2.3.10

 dev-ros/qt_gui_cpp/Manifest |  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index d04327f8b2f..dad55af7393 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,2 +1,3 @@
+DIST qt_gui_core-0.3.10.tar.gz 91569 BLAKE2B 
04c764e49c5dc1126d0f87e1c53109748dc11b38e94f242d44fca56e8334eaae3469f2299f9c2c4eef536264d1fd5c3ba5d8dbff0fc809afdb36d0b2a35ea669
 SHA512 
76c418315453d975ae2901e1d33205f3471ff540fac3be9834a567d4763400688aaedf3d172d45cc2f39652055446085a3ea65c7acca679e271333d8ca6ed3fa
 DIST qt_gui_core-0.3.8.tar.gz 91248 BLAKE2B 
9ed159b8d065e7b2a44dcf9ac496a699675e5ec41d5ed222413894f098e122b092c976c934dc37a99846e0fe80858fb377bf937b3eabc3f0c6df126de7944e88
 SHA512 
aec926adffc9f1ab84d7d5cccb207d87254496b37e9e2e4c430de191917823424751206647d61821a65dec0aad3241dab22c85f21980fbe1a4bf114bb2c29d70
 DIST qt_gui_core-0.3.9.tar.gz 91495 BLAKE2B 
c0f2f2b9231a42da68c0032bfb192a47060f4b0915952b77750985be00023f22678480605990a79016b8ed906cacbdb9cd7eafabbb917b06f891f6b7817a999c
 SHA512 
3e7e45001f1749e3ca75c6b33e3e7a131a314a5ec66925b86f2617f6f749f4c2093d33420bbe0f148faa44fb1fb3071241e47180d3c56ed9d1f7a2befb006a95

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild
new file mode 100644
index 000..a52422eff7b
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.10.ebuild
@@ -0,0 +1,34 @@
+# 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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   dev-libs/tinyxml2:=
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+   dev-libs/console_bridge:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2017-11-04 Thread Alexis Ballier
commit: 5b9ca4ce9905490a05b302122f2a60a90f6c438d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Nov  4 10:43:56 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Nov  4 11:05:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9ca4ce

dev-ros/qt_gui_cpp: Bump to 0.3.8.

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 9d3ecc4c291..956786aed7c 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,3 +1,4 @@
 DIST qt_gui_core-0.3.4.tar.gz 87974 SHA256 
09da32698c087a73bbf0dae2ce3b9f1d19beb5f56e15d2fd08009260589e27ef SHA512 
794b0ea8b92cdbb748282ef48dcb41f24f3b83dd8ad92e8dc895d45ed085b9838b2ca4a5dc43284971d33b7ac40c86ca578fe042d71e0c9d1903cdfb561507af
 WHIRLPOOL 
98b36b798b7dc57e88a5b59586015919c2f1d902dbde9352562237ec6cb6bb27d3fef296da1547949244b2deb0dc2e18a858ef2bb5021af1d64d76688f0b5a71
 DIST qt_gui_core-0.3.5.tar.gz 90480 SHA256 
ac6c4ea593fe69bc5227b5ccd607d74ba6e9310a9e5923d14db558082812e746 SHA512 
1c307e220d8484013e83cf2e3e4b6d674db3d6273f08ffc1ab928f92c1a4009d3b3d8d011f88b40e73ad371be34c7d4a790a78a47361ddb1c44b1a44970bf955
 WHIRLPOOL 
a70414fbbfea840b06f76b023753842593ea0ce0ad8a94ea728b52fad7a47c37b8afcf87f3fd22ab19e0d33323f96f2b06009272c722418a0cf742d5f28ede26
 DIST qt_gui_core-0.3.6.tar.gz 90705 SHA256 
32c8ee990b6aca5d53a856071fb718fa6e92ffc4951e76df96496abeac75df8d SHA512 
bdd824010552af098f2b9294aef18c73413a1f76fe1cf61daccf9d9f17d7d16f6a9a1ec11c157460c1b89d6c44f21fccbdcab813ca42c052a6bc46de52f86ab0
 WHIRLPOOL 
d2ba2bb42580ca7639669e144766cf8e7411e1879c72cfed055c3e78e3caf1bc3a7a294cec2270c103e000c9ad334cb0b1da8f7d210c0fffa484d92194d60b19
+DIST qt_gui_core-0.3.8.tar.gz 91248 SHA256 
cf12b52bcb1a75f6b3278715050b06e6420a974cae531c4f1958e7f843341f74 SHA512 
aec926adffc9f1ab84d7d5cccb207d87254496b37e9e2e4c430de191917823424751206647d61821a65dec0aad3241dab22c85f21980fbe1a4bf114bb2c29d70
 WHIRLPOOL 
b859fb21564410b61c378e04d02c5b15527d68b81d8334e2e18ce7bac7b1d675a3af94c94d13984087cf7c3a5e88226d46834555c9bec9f50d7e39501b5b8fad

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8.ebuild
new file mode 100644
index 000..86bdc7a0140
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.8.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2017-08-06 Thread Alexis Ballier
commit: 38b5390bbcb4e07ddf0cf76ff6b9fd6ac30d229e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Aug  6 07:07:18 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Aug  6 07:07:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38b5390b

dev-ros/qt_gui_cpp: Bump to 0.3.6.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.6.ebuild | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index f2e77f770f9..9d3ecc4c291 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,2 +1,3 @@
 DIST qt_gui_core-0.3.4.tar.gz 87974 SHA256 
09da32698c087a73bbf0dae2ce3b9f1d19beb5f56e15d2fd08009260589e27ef SHA512 
794b0ea8b92cdbb748282ef48dcb41f24f3b83dd8ad92e8dc895d45ed085b9838b2ca4a5dc43284971d33b7ac40c86ca578fe042d71e0c9d1903cdfb561507af
 WHIRLPOOL 
98b36b798b7dc57e88a5b59586015919c2f1d902dbde9352562237ec6cb6bb27d3fef296da1547949244b2deb0dc2e18a858ef2bb5021af1d64d76688f0b5a71
 DIST qt_gui_core-0.3.5.tar.gz 90480 SHA256 
ac6c4ea593fe69bc5227b5ccd607d74ba6e9310a9e5923d14db558082812e746 SHA512 
1c307e220d8484013e83cf2e3e4b6d674db3d6273f08ffc1ab928f92c1a4009d3b3d8d011f88b40e73ad371be34c7d4a790a78a47361ddb1c44b1a44970bf955
 WHIRLPOOL 
a70414fbbfea840b06f76b023753842593ea0ce0ad8a94ea728b52fad7a47c37b8afcf87f3fd22ab19e0d33323f96f2b06009272c722418a0cf742d5f28ede26
+DIST qt_gui_core-0.3.6.tar.gz 90705 SHA256 
32c8ee990b6aca5d53a856071fb718fa6e92ffc4951e76df96496abeac75df8d SHA512 
bdd824010552af098f2b9294aef18c73413a1f76fe1cf61daccf9d9f17d7d16f6a9a1ec11c157460c1b89d6c44f21fccbdcab813ca42c052a6bc46de52f86ab0
 WHIRLPOOL 
d2ba2bb42580ca7639669e144766cf8e7411e1879c72cfed055c3e78e3caf1bc3a7a294cec2270c103e000c9ad334cb0b1da8f7d210c0fffa484d92194d60b19

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.6.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.6.ebuild
new file mode 100644
index 000..86bdc7a0140
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.6.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2017-02-28 Thread Alexis Ballier
commit: 8404204f7f312f559e69fd7ce7d40c903a611d84
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Feb 28 11:23:10 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Feb 28 11:26:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8404204f

dev-ros/qt_gui_cpp: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ros/qt_gui_cpp/Manifest|  2 --
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.ebuild | 33 --
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild | 33 --
 3 files changed, 68 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 544ab80e86..783bb8a7ef 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,3 +1 @@
-DIST qt_gui_core-0.3.2.tar.gz 87326 SHA256 
678e60f413ad455577ce0e76fa34f2603d0f713023a59fb8c4edee3e753489d5 SHA512 
9a3e5c395a49efc0cbd747b35898e5931155b9e22f4789cc111cfb28866db4589b3b7fbd8b32cb8d64ade568dd5a9eb4ee4b24f7b7f60dcf5aabc4a380b5c180
 WHIRLPOOL 
0fe0af5b79ecf27259212b4ccf3f839d6841775b859674619119dfd97de5a3ae5ac337b0e0c92a6a55b02c6905f21c12d27ecf75aef62c320dd05a1f34e611f4
-DIST qt_gui_core-0.3.3.tar.gz 87422 SHA256 
fc1bf4dfb3d357b38263d36023ee7b55a1799dfa437513ac51041c993e9cecd4 SHA512 
5f2906e412b35b6edc9ba8792272b3d733574deda955279327e392ee3b0f55bb01a08607a25632fda43112842743fdd1432874fbf090f6b1404604c329b7dc3a
 WHIRLPOOL 
6856cb3f58d6e68f1b3081ae4f2529f701a355fa5b0698f3191adc341da38fa3a47f17cd4cab459689e522aa7c4a117b0c86c62f39072711eb240234ee67dfe6
 DIST qt_gui_core-0.3.4.tar.gz 87974 SHA256 
09da32698c087a73bbf0dae2ce3b9f1d19beb5f56e15d2fd08009260589e27ef SHA512 
794b0ea8b92cdbb748282ef48dcb41f24f3b83dd8ad92e8dc895d45ed085b9838b2ca4a5dc43284971d33b7ac40c86ca578fe042d71e0c9d1903cdfb561507af
 WHIRLPOOL 
98b36b798b7dc57e88a5b59586015919c2f1d902dbde9352562237ec6cb6bb27d3fef296da1547949244b2deb0dc2e18a858ef2bb5021af1d64d76688f0b5a71

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.ebuild
deleted file mode 100644
index 66b81c3eb8..00
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild
deleted file mode 100644
index 47b1dd8578..00
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtwidgets:5
-   >=dev-ros/pluginlib-1.9.23
-   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-09-20 Thread Alexis Ballier
commit: 59e69e63483a92e94866a29e17d99b002e739c08
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Sep 20 13:52:40 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Sep 20 13:52:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59e69e63

dev-ros/qt_gui_cpp: Bump to 0.3.3.

Package-Manager: portage-2.3.1

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 0c46e5d..8aa2d07 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1 +1,2 @@
 DIST qt_gui_core-0.3.2.tar.gz 87326 SHA256 
678e60f413ad455577ce0e76fa34f2603d0f713023a59fb8c4edee3e753489d5 SHA512 
9a3e5c395a49efc0cbd747b35898e5931155b9e22f4789cc111cfb28866db4589b3b7fbd8b32cb8d64ade568dd5a9eb4ee4b24f7b7f60dcf5aabc4a380b5c180
 WHIRLPOOL 
0fe0af5b79ecf27259212b4ccf3f839d6841775b859674619119dfd97de5a3ae5ac337b0e0c92a6a55b02c6905f21c12d27ecf75aef62c320dd05a1f34e611f4
+DIST qt_gui_core-0.3.3.tar.gz 87422 SHA256 
fc1bf4dfb3d357b38263d36023ee7b55a1799dfa437513ac51041c993e9cecd4 SHA512 
5f2906e412b35b6edc9ba8792272b3d733574deda955279327e392ee3b0f55bb01a08607a25632fda43112842743fdd1432874fbf090f6b1404604c329b7dc3a
 WHIRLPOOL 
6856cb3f58d6e68f1b3081ae4f2529f701a355fa5b0698f3191adc341da38fa3a47f17cd4cab459689e522aa7c4a117b0c86c62f39072711eb240234ee67dfe6

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.3.ebuild
new file mode 100644
index ..47b1dd8
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-05-11 Thread Alexis Ballier
commit: 712ae779f8ab86b2313492531d6883bf9f67133b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed May 11 07:58:35 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed May 11 07:58:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712ae779

dev-ros/qt_gui_cpp: remove old

Package-Manager: portage-2.2.28

 dev-ros/qt_gui_cpp/Manifest|  4 
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.ebuild | 33 --
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.ebuild| 33 --
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.0.ebuild | 33 --
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.1.ebuild | 33 --
 5 files changed, 136 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 789d5eb..0c46e5d 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,5 +1 @@
-DIST qt_gui_core-0.2.29.tar.gz 85881 SHA256 
7c51b4fd7e795e37e3f8a4b691a5e520466105fdddbc85e194c10c608fe7448c SHA512 
958526a3bd76070e121d75a82c589894aef980870091cb853802fcb60328b54cbc95ee0c9eececa18e24608808cca2c722c5699b662c2a578f150995171d71db
 WHIRLPOOL 
f83328ce59fd9cd8db5a066f1a2a93bde54b28268891b18cf73b31d5584b0dc7f932350a39e729c97be3bc3b6780422dd2538321f29b0acd13d06387e0054975
-DIST qt_gui_core-0.2.30.tar.gz 86567 SHA256 
d2c7240161dd84b02b024a66119d122a7607dd0e27a299d53d1c75c36d203847 SHA512 
4a9671c8814f16a371e77840d6df268e763ce5932d6e85842af34ee5322701ffa19d97d4d75b4fb6d4d272497281462296dc9cfc25d4efd96246a88a8ee08978
 WHIRLPOOL 
c072605d884a051a03ea3e77147fce7e7f3f94c4b5eb253779022a18cf3141d357fdb9fc45c9b5b6917d3e73cc2cfde4d384d64de26f164b4920911965be20e7
-DIST qt_gui_core-0.3.0.tar.gz 86904 SHA256 
f785ad2ffcee822edaf8f8baef8f440d3c596fbb2cbc99508f5aef650e00dc28 SHA512 
6b14dafdc087f3fccfeacf2aedd438b069cd3592d6f834ba0d277107da936bbf0d3a40d0cd18468615fd9c508fb1fc5109ef83c4970031a7dca923b85270b385
 WHIRLPOOL 
fdc0e46cc9e308999553ffa911acd7cb3fa64c8088fe270eb831143deef03e903cc1abfaf748fe4e8484a91acc2d926d8d03bdec4225082c56fc958fe16dfdfa
-DIST qt_gui_core-0.3.1.tar.gz 87236 SHA256 
99ec592081fbc68d263e85ad1134ebf95019f23a4b116b6f0c8ba13764ab3338 SHA512 
f209c257fe3f8bf10e285109e6d6a88e2c8f2d6bfdae82bf3177b94f0b0a74ac26585a1b688d37d6db828847f82b9a5d3c362847bedf41db8aa86a2bc9738c3c
 WHIRLPOOL 
23e82cacdf531a27c5a0b8c5296722b87671a2345db1ed6571d4d8708289a9580db25e5a695dc3fc033aa16fb8c70e1934190549698955cd168021bc689ee123
 DIST qt_gui_core-0.3.2.tar.gz 87326 SHA256 
678e60f413ad455577ce0e76fa34f2603d0f713023a59fb8c4edee3e753489d5 SHA512 
9a3e5c395a49efc0cbd747b35898e5931155b9e22f4789cc111cfb28866db4589b3b7fbd8b32cb8d64ade568dd5a9eb4ee4b24f7b7f60dcf5aabc4a380b5c180
 WHIRLPOOL 
0fe0af5b79ecf27259212b4ccf3f839d6841775b859674619119dfd97de5a3ae5ac337b0e0c92a6a55b02c6905f21c12d27ecf75aef62c320dd05a1f34e611f4

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.ebuild
deleted file mode 100644
index e480327..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   >=dev-ros/pluginlib-1.9.23
-   >=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   dev-ros/python_qt_binding[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.ebuild
deleted file mode 100644
index e480327..000
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.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-visualization/qt_gui_core;
-KEYWORDS="~amd64"
-PYTHON_COMPAT=( python2_7 )
-ROS_SUBDIR=${PN}
-
-inherit ros-catkin
-
-DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   >=dev-ros/pluginlib-1.9.23
-   >=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
-   dev-libs/tinyxml
-   dev-ros/python_qt_binding[${PYTHON_USEDEP}]
-   dev-libs/boost:=
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-PATCHES=(
-   "${FILESDIR}/libdir.patch"
-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.0.ebuild 

[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-04-25 Thread Alexis Ballier
commit: a30b273e0e51f4c828b899ef0fa075ccddba6c12
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Apr 25 08:07:34 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Apr 25 08:56:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a30b273e

dev-ros/qt_gui_cpp: Bump to 0.3.2.

Package-Manager: portage-2.2.28

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index f0222e8..789d5eb 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -2,3 +2,4 @@ DIST qt_gui_core-0.2.29.tar.gz 85881 SHA256 
7c51b4fd7e795e37e3f8a4b691a5e5204661
 DIST qt_gui_core-0.2.30.tar.gz 86567 SHA256 
d2c7240161dd84b02b024a66119d122a7607dd0e27a299d53d1c75c36d203847 SHA512 
4a9671c8814f16a371e77840d6df268e763ce5932d6e85842af34ee5322701ffa19d97d4d75b4fb6d4d272497281462296dc9cfc25d4efd96246a88a8ee08978
 WHIRLPOOL 
c072605d884a051a03ea3e77147fce7e7f3f94c4b5eb253779022a18cf3141d357fdb9fc45c9b5b6917d3e73cc2cfde4d384d64de26f164b4920911965be20e7
 DIST qt_gui_core-0.3.0.tar.gz 86904 SHA256 
f785ad2ffcee822edaf8f8baef8f440d3c596fbb2cbc99508f5aef650e00dc28 SHA512 
6b14dafdc087f3fccfeacf2aedd438b069cd3592d6f834ba0d277107da936bbf0d3a40d0cd18468615fd9c508fb1fc5109ef83c4970031a7dca923b85270b385
 WHIRLPOOL 
fdc0e46cc9e308999553ffa911acd7cb3fa64c8088fe270eb831143deef03e903cc1abfaf748fe4e8484a91acc2d926d8d03bdec4225082c56fc958fe16dfdfa
 DIST qt_gui_core-0.3.1.tar.gz 87236 SHA256 
99ec592081fbc68d263e85ad1134ebf95019f23a4b116b6f0c8ba13764ab3338 SHA512 
f209c257fe3f8bf10e285109e6d6a88e2c8f2d6bfdae82bf3177b94f0b0a74ac26585a1b688d37d6db828847f82b9a5d3c362847bedf41db8aa86a2bc9738c3c
 WHIRLPOOL 
23e82cacdf531a27c5a0b8c5296722b87671a2345db1ed6571d4d8708289a9580db25e5a695dc3fc033aa16fb8c70e1934190549698955cd168021bc689ee123
+DIST qt_gui_core-0.3.2.tar.gz 87326 SHA256 
678e60f413ad455577ce0e76fa34f2603d0f713023a59fb8c4edee3e753489d5 SHA512 
9a3e5c395a49efc0cbd747b35898e5931155b9e22f4789cc111cfb28866db4589b3b7fbd8b32cb8d64ade568dd5a9eb4ee4b24f7b7f60dcf5aabc4a380b5c180
 WHIRLPOOL 
0fe0af5b79ecf27259212b4ccf3f839d6841775b859674619119dfd97de5a3ae5ac337b0e0c92a6a55b02c6905f21c12d27ecf75aef62c320dd05a1f34e611f4

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.ebuild
new file mode 100644
index 000..66b81c3
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.2.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-04-19 Thread Alexis Ballier
commit: 21e546a9a986eee16865e009153e52c070dcfa1d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Apr 19 12:45:35 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Apr 19 12:52:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21e546a9

dev-ros/qt_gui_cpp: Bump to 0.3.1.

Package-Manager: portage-2.2.28

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.1.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 236c400..f0222e8 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,3 +1,4 @@
 DIST qt_gui_core-0.2.29.tar.gz 85881 SHA256 
7c51b4fd7e795e37e3f8a4b691a5e520466105fdddbc85e194c10c608fe7448c SHA512 
958526a3bd76070e121d75a82c589894aef980870091cb853802fcb60328b54cbc95ee0c9eececa18e24608808cca2c722c5699b662c2a578f150995171d71db
 WHIRLPOOL 
f83328ce59fd9cd8db5a066f1a2a93bde54b28268891b18cf73b31d5584b0dc7f932350a39e729c97be3bc3b6780422dd2538321f29b0acd13d06387e0054975
 DIST qt_gui_core-0.2.30.tar.gz 86567 SHA256 
d2c7240161dd84b02b024a66119d122a7607dd0e27a299d53d1c75c36d203847 SHA512 
4a9671c8814f16a371e77840d6df268e763ce5932d6e85842af34ee5322701ffa19d97d4d75b4fb6d4d272497281462296dc9cfc25d4efd96246a88a8ee08978
 WHIRLPOOL 
c072605d884a051a03ea3e77147fce7e7f3f94c4b5eb253779022a18cf3141d357fdb9fc45c9b5b6917d3e73cc2cfde4d384d64de26f164b4920911965be20e7
 DIST qt_gui_core-0.3.0.tar.gz 86904 SHA256 
f785ad2ffcee822edaf8f8baef8f440d3c596fbb2cbc99508f5aef650e00dc28 SHA512 
6b14dafdc087f3fccfeacf2aedd438b069cd3592d6f834ba0d277107da936bbf0d3a40d0cd18468615fd9c508fb1fc5109ef83c4970031a7dca923b85270b385
 WHIRLPOOL 
fdc0e46cc9e308999553ffa911acd7cb3fa64c8088fe270eb831143deef03e903cc1abfaf748fe4e8484a91acc2d926d8d03bdec4225082c56fc958fe16dfdfa
+DIST qt_gui_core-0.3.1.tar.gz 87236 SHA256 
99ec592081fbc68d263e85ad1134ebf95019f23a4b116b6f0c8ba13764ab3338 SHA512 
f209c257fe3f8bf10e285109e6d6a88e2c8f2d6bfdae82bf3177b94f0b0a74ac26585a1b688d37d6db828847f82b9a5d3c362847bedf41db8aa86a2bc9738c3c
 WHIRLPOOL 
23e82cacdf531a27c5a0b8c5296722b87671a2345db1ed6571d4d8708289a9580db25e5a695dc3fc033aa16fb8c70e1934190549698955cd168021bc689ee123

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.1.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.1.ebuild
new file mode 100644
index 000..66b81c3
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.1.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-04-05 Thread Alexis Ballier
commit: 0dc8567cadc2703ca80d6c0d5e5107b01c4897d6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Apr  5 10:33:29 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Apr  5 10:53:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc8567c

dev-ros/qt_gui_cpp: Bump to 0.3.0.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest|  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.0.ebuild | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 436b5e1..236c400 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1,2 +1,3 @@
 DIST qt_gui_core-0.2.29.tar.gz 85881 SHA256 
7c51b4fd7e795e37e3f8a4b691a5e520466105fdddbc85e194c10c608fe7448c SHA512 
958526a3bd76070e121d75a82c589894aef980870091cb853802fcb60328b54cbc95ee0c9eececa18e24608808cca2c722c5699b662c2a578f150995171d71db
 WHIRLPOOL 
f83328ce59fd9cd8db5a066f1a2a93bde54b28268891b18cf73b31d5584b0dc7f932350a39e729c97be3bc3b6780422dd2538321f29b0acd13d06387e0054975
 DIST qt_gui_core-0.2.30.tar.gz 86567 SHA256 
d2c7240161dd84b02b024a66119d122a7607dd0e27a299d53d1c75c36d203847 SHA512 
4a9671c8814f16a371e77840d6df268e763ce5932d6e85842af34ee5322701ffa19d97d4d75b4fb6d4d272497281462296dc9cfc25d4efd96246a88a8ee08978
 WHIRLPOOL 
c072605d884a051a03ea3e77147fce7e7f3f94c4b5eb253779022a18cf3141d357fdb9fc45c9b5b6917d3e73cc2cfde4d384d64de26f164b4920911965be20e7
+DIST qt_gui_core-0.3.0.tar.gz 86904 SHA256 
f785ad2ffcee822edaf8f8baef8f440d3c596fbb2cbc99508f5aef650e00dc28 SHA512 
6b14dafdc087f3fccfeacf2aedd438b069cd3592d6f834ba0d277107da936bbf0d3a40d0cd18468615fd9c508fb1fc5109ef83c4970031a7dca923b85270b385
 WHIRLPOOL 
fdc0e46cc9e308999553ffa911acd7cb3fa64c8088fe270eb831143deef03e903cc1abfaf748fe4e8484a91acc2d926d8d03bdec4225082c56fc958fe16dfdfa

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.0.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.0.ebuild
new file mode 100644
index 000..66b81c3
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.3.0.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-04-05 Thread Alexis Ballier
commit: 2b46c787ffc24e0461770aa1b67bebdf3c380b77
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Apr  5 10:30:27 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Apr  5 10:53:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b46c787

dev-ros/qt_gui_cpp: switch live ebuild to qt5, bump deps according to upstream

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
index e480327..66b81c3 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
@@ -17,12 +17,12 @@ SLOT="0"
 IUSE=""
 
 RDEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
+   dev-qt/qtcore:5
+   dev-qt/qtwidgets:5
>=dev-ros/pluginlib-1.9.23
-   >=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
+   >=dev-ros/qt_gui-0.3.0[${PYTHON_USEDEP}]
dev-libs/tinyxml
-   dev-ros/python_qt_binding[${PYTHON_USEDEP}]
+   >=dev-ros/python_qt_binding-0.3.0[${PYTHON_USEDEP}]
dev-libs/boost:=
 "
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2016-03-31 Thread Alexis Ballier
commit: 694b5226fe3491f5906c135fdbbf1ea29fc51efd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Apr  1 05:25:55 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Apr  1 05:29:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=694b5226

dev-ros/qt_gui_cpp: Bump to 0.2.30.

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-ros/qt_gui_cpp/Manifest |  1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
index 85ca418..436b5e1 100644
--- a/dev-ros/qt_gui_cpp/Manifest
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -1 +1,2 @@
 DIST qt_gui_core-0.2.29.tar.gz 85881 SHA256 
7c51b4fd7e795e37e3f8a4b691a5e520466105fdddbc85e194c10c608fe7448c SHA512 
958526a3bd76070e121d75a82c589894aef980870091cb853802fcb60328b54cbc95ee0c9eececa18e24608808cca2c722c5699b662c2a578f150995171d71db
 WHIRLPOOL 
f83328ce59fd9cd8db5a066f1a2a93bde54b28268891b18cf73b31d5584b0dc7f932350a39e729c97be3bc3b6780422dd2538321f29b0acd13d06387e0054975
+DIST qt_gui_core-0.2.30.tar.gz 86567 SHA256 
d2c7240161dd84b02b024a66119d122a7607dd0e27a299d53d1c75c36d203847 SHA512 
4a9671c8814f16a371e77840d6df268e763ce5932d6e85842af34ee5322701ffa19d97d4d75b4fb6d4d272497281462296dc9cfc25d4efd96246a88a8ee08978
 WHIRLPOOL 
c072605d884a051a03ea3e77147fce7e7f3f94c4b5eb253779022a18cf3141d357fdb9fc45c9b5b6917d3e73cc2cfde4d384d64de26f164b4920911965be20e7

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.ebuild
new file mode 100644
index 000..e480327
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.30.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   dev-ros/python_qt_binding[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/

2015-11-02 Thread Alexis Ballier
commit: 1a8ce0d049a5b8620aefeb962ff197947987a7c9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Mon Nov  2 10:29:34 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Mon Nov  2 10:29:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a8ce0d0

dev-ros/qt_gui_cpp: Add missing qtgui dep. Bug #562900.

Package-Manager: portage-2.2.23

 .../qt_gui_cpp/{qt_gui_cpp-0.2.29.ebuild => qt_gui_cpp-0.2.29-r1.ebuild} | 1 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild| 1 +
 2 files changed, 2 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.ebuild
similarity index 97%
rename from dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.ebuild
rename to dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.ebuild
index 1e35552..e480327 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29-r1.ebuild
@@ -18,6 +18,7 @@ IUSE=""
 
 RDEPEND="
dev-qt/qtcore:4
+   dev-qt/qtgui:4
>=dev-ros/pluginlib-1.9.23
>=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
dev-libs/tinyxml

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
index 1e35552..e480327 100644
--- a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
@@ -18,6 +18,7 @@ IUSE=""
 
 RDEPEND="
dev-qt/qtcore:4
+   dev-qt/qtgui:4
>=dev-ros/pluginlib-1.9.23
>=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
dev-libs/tinyxml



[gentoo-commits] repo/gentoo:master commit in: dev-ros/qt_gui_cpp/files/, dev-ros/qt_gui_cpp/

2015-09-23 Thread Alexis Ballier
commit: eb8c87cd0e31ac7b1472e39da8b264c7dc6c9d1b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Sep 23 10:03:26 2015 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Sep 23 10:12:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb8c87cd

dev-ros/qt_gui_cpp: Initial import. Ebuild by me.

Package-Manager: portage-2.2.21

 dev-ros/qt_gui_cpp/Manifest |  1 +
 dev-ros/qt_gui_cpp/files/libdir.patch   | 15 ++
 dev-ros/qt_gui_cpp/metadata.xml |  5 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.ebuild | 32 +
 dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild   | 32 +
 5 files changed, 85 insertions(+)

diff --git a/dev-ros/qt_gui_cpp/Manifest b/dev-ros/qt_gui_cpp/Manifest
new file mode 100644
index 000..85ca418
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/Manifest
@@ -0,0 +1 @@
+DIST qt_gui_core-0.2.29.tar.gz 85881 SHA256 
7c51b4fd7e795e37e3f8a4b691a5e520466105fdddbc85e194c10c608fe7448c SHA512 
958526a3bd76070e121d75a82c589894aef980870091cb853802fcb60328b54cbc95ee0c9eececa18e24608808cca2c722c5699b662c2a578f150995171d71db
 WHIRLPOOL 
f83328ce59fd9cd8db5a066f1a2a93bde54b28268891b18cf73b31d5584b0dc7f932350a39e729c97be3bc3b6780422dd2538321f29b0acd13d06387e0054975

diff --git a/dev-ros/qt_gui_cpp/files/libdir.patch 
b/dev-ros/qt_gui_cpp/files/libdir.patch
new file mode 100644
index 000..8c22eed
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/files/libdir.patch
@@ -0,0 +1,15 @@
+Index: qt_gui_core-0.2.26/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
+===
+--- qt_gui_core-0.2.26.orig/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
 qt_gui_core-0.2.26/qt_gui_cpp/src/qt_gui_cpp_sip/CMakeLists.txt
+@@ -29,8 +29,8 @@ set(qt_gui_cpp_sip_DEPENDENT_FILES
+ # maintain context for different named target
+ set(qt_gui_cpp_sip_INCLUDE_DIRS ${qt_gui_cpp_INCLUDE_DIRS} 
"${CMAKE_CURRENT_SOURCE_DIR}/../../include" ${catkin_INCLUDE_DIRS})
+ set(qt_gui_cpp_sip_LIBRARIES ${qt_gui_cpp_LIBRARIES} ${PROJECT_NAME} 
${catkin_LIBRARIES} ${Boost_LIBRARIES})
+-set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS} 
${CATKIN_DEVEL_PREFIX}/lib)
+-set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER} 
-Wl,-rpath,\\"${CATKIN_DEVEL_PREFIX}/lib\\")
++set(qt_gui_cpp_sip_LIBRARY_DIRS ${qt_gui_cpp_LIBRARY_DIRS} 
${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
++set(qt_gui_cpp_sip_LDFLAGS_OTHER ${qt_gui_cpp_LDFLAGS_OTHER} 
-Wl,-rpath,\\"${CATKIN_DEVEL_PREFIX}/${CMAKE_INSTALL_LIBDIR}\\")
+ 
+ find_package(python_qt_binding REQUIRED)
+ include(${python_qt_binding_EXTRAS_DIR}/sip_helper.cmake)

diff --git a/dev-ros/qt_gui_cpp/metadata.xml b/dev-ros/qt_gui_cpp/metadata.xml
new file mode 100644
index 000..c42ea5b
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+ros
+

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.ebuild
new file mode 100644
index 000..1e35552
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-0.2.29.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:4
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   dev-ros/python_qt_binding[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)

diff --git a/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild 
b/dev-ros/qt_gui_cpp/qt_gui_cpp-.ebuild
new file mode 100644
index 000..1e35552
--- /dev/null
+++ b/dev-ros/qt_gui_cpp/qt_gui_cpp-.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-visualization/qt_gui_core;
+KEYWORDS="~amd64"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Foundation for C++-bindings for dev-ros/qt_gui and creates 
bindings for every generator available"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-qt/qtcore:4
+   >=dev-ros/pluginlib-1.9.23
+   >=dev-ros/qt_gui-0.2.18[${PYTHON_USEDEP}]
+   dev-libs/tinyxml
+   dev-ros/python_qt_binding[${PYTHON_USEDEP}]
+   dev-libs/boost:=
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}/libdir.patch"
+)