From owner-svn-ports-head@freebsd.org Sun Sep 22 10:46:22 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E2852FD509; Sun, 22 Sep 2019 10:46:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46bkdp5Vkpz4dcv; Sun, 22 Sep 2019 10:46:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 85ED525516; Sun, 22 Sep 2019 10:46:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8MAkMeP043039; Sun, 22 Sep 2019 10:46:22 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8MAkLEv043035; Sun, 22 Sep 2019 10:46:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909221046.x8MAkLEv043035@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 22 Sep 2019 10:46:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512576 - in head/devel: . ros-rosdistro X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . ros-rosdistro X-SVN-Commit-Revision: 512576 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Sep 2019 10:46:22 -0000 Author: pi Date: Sun Sep 22 10:46:21 2019 New Revision: 512576 URL: https://svnweb.freebsd.org/changeset/ports/512576 Log: New port: devel/ros-rosdistro Python library for working with catkinized rosdistro files for ROS. rosdistro is part of the package management system for ROS. WWW: http://github.com/ros-infrastructure/rosdistro PR: 235845 Submitted by: Trenton Schulz Added: head/devel/ros-rosdistro/ head/devel/ros-rosdistro/Makefile (contents, props changed) head/devel/ros-rosdistro/distinfo (contents, props changed) head/devel/ros-rosdistro/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 22 10:44:35 2019 (r512575) +++ head/devel/Makefile Sun Sep 22 10:46:21 2019 (r512576) @@ -5394,6 +5394,7 @@ SUBDIR += robodoc SUBDIR += root-doc SUBDIR += ros-catkin_pkg + SUBDIR += ros-rosdistro SUBDIR += ros-rosinstall_generator SUBDIR += ros-rospkg SUBDIR += ros-vcstools Added: head/devel/ros-rosdistro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ros-rosdistro/Makefile Sun Sep 22 10:46:21 2019 (r512576) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= ros-rosdistro +DISTVERSION= 0.7.4 +CATEGORIES= devel +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= trueos@norwegianrockcat.com +COMMENT= Tools to work with catkinized rosdistro files + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ros-catkin_pkg>=0.4.0:devel/ros-catkin_pkg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}argparse>=1:devel/py-argparse@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}ros-rospkg>=1:devel/ros-rospkg@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>=3:devel/py-yaml@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist +USE_GITHUB= yes +GH_ACCOUNT= ros-infrastructure +GH_PROJECT= rosdistro + +.include Added: head/devel/ros-rosdistro/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ros-rosdistro/distinfo Sun Sep 22 10:46:21 2019 (r512576) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568624497 +SHA256 (ros-infrastructure-rosdistro-0.7.4_GH0.tar.gz) = 94caf9c03142744cbcd1ab926a216ee64d5e1d27c35c15c7262565761f3a053c +SIZE (ros-infrastructure-rosdistro-0.7.4_GH0.tar.gz) = 60365 Added: head/devel/ros-rosdistro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ros-rosdistro/pkg-descr Sun Sep 22 10:46:21 2019 (r512576) @@ -0,0 +1,5 @@ +Python library for working with catkinized rosdistro files for ROS. + +rosdistro is part of the package management system for ROS. + +WWW: http://github.com/ros-infrastructure/rosdistro