-DIST gennodejs-1.0.1.tar.gz 13753 SHA256 084f68ad815023836fbfd2bd739c5d4106eba6fbba937a8ad53337364590b374 SHA512 d535b27b40732fa18f31307aca15371ec7198c362f6ebae4ebb24f1b3d7cfd9facd609023ea8215deb364d7946630191c82589480f01a29d0a2e8457c309c0ca WHIRLPOOL d34a6e0d6ac335f202025a013842a847159f7bf77609c1ebf3608679a8d055228a80d9bb670ec942ef788891e7da1e36a281a7a453612ca3c9908bd902d2a01a
DIST gennodejs-1.0.3.tar.gz 14004 SHA256 8ed131991e313f234a9fc88367db671a4b3b3b23f397105d94e14eb88d3bb0d6 SHA512 d8954111fb3fb77b381c29f2eb3eee15a9717ef59ebb6821577b05d96db4ce1d749bb0bddab153e1eba21af5a02c9a855006c786162c62cb2c2e8972a595b320 WHIRLPOOL 8b42e7a4548dadc7b638c001e9887f1f69d01331e8be4c4ebba2aafadd986c0ffc273dc701aee86776dcad0e06b1adfd0f733d706b9f61d15fc061741134a616
+++ /dev/null
-commit bbefafa66ec031f81ca1d7b0b904d6ddc1bab8d9
-Author: Maarten de Vries <maarten@de-vri.es>
-Date: Thu May 5 23:08:22 2016 +0200
-
- Fix python3 incompatibility in generate.py.
-
-diff --git a/src/gennodejs/generate.py b/src/gennodejs/generate.py
-index cf372d4..5245998 100644
---- a/src/gennodejs/generate.py
-+++ b/src/gennodejs/generate.py
-@@ -14,6 +14,8 @@
- # See the License for the specific language governing permissions and
- # limitations under the License.
-
-+from __future__ import print_function
-+
- import sys
- import os
- import traceback
-@@ -212,7 +214,7 @@ def find_requires(spec):
- else:
- path = find_path_for_package(field_type_package)
- if path is None:
-- print 'Couldn\'t find path for type ', field.base_type
-+ print('Couldn\'t find path for type {}'.format(field.base_type))
- else:
- found_packages[field_type_package] = path
-
+++ /dev/null
-# 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/RethinkRobotics-opensource/gennodejs"
-KEYWORDS="~amd64 ~arm"
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
-
-inherit ros-catkin
-
-DESCRIPTION="Javascript ROS message and service generators"
-HOMEPAGE="http://wiki.ros.org/genpy"
-LICENSE="Apache-2.0"
-SLOT="0/${PV}"
-IUSE=""
-
-RDEPEND="dev-ros/genmsg[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"