From owner-svn-ports-head@freebsd.org Sun Sep 22 10:42:04 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 EE57FFD1C8; Sun, 22 Sep 2019 10:42:04 +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 46bkXr67Gfz4d4T; Sun, 22 Sep 2019 10:42:04 +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 B513B254C7; Sun, 22 Sep 2019 10:42:04 +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 x8MAg4cE042126; Sun, 22 Sep 2019 10:42:04 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8MAg3gu041474; Sun, 22 Sep 2019 10:42:03 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909221042.x8MAg3gu041474@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:42:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512574 - in head/devel: . ros-catkin_pkg X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/devel: . ros-catkin_pkg X-SVN-Commit-Revision: 512574 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:42:05 -0000 Author: pi Date: Sun Sep 22 10:42:03 2019 New Revision: 512574 URL: https://svnweb.freebsd.org/changeset/ports/512574 Log: New port: devel/ros-catkin_pkg This is a Python library for working with the Catkin package system for ROS. Catkin is the main build system for the Robot Operating System. WWW: http://github.com/ros/catkin PR: 235843 Submitted by: Trenton Schulz Added: head/devel/ros-catkin_pkg/ head/devel/ros-catkin_pkg/Makefile (contents, props changed) head/devel/ros-catkin_pkg/distinfo (contents, props changed) head/devel/ros-catkin_pkg/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Sep 22 10:21:09 2019 (r512573) +++ head/devel/Makefile Sun Sep 22 10:42:03 2019 (r512574) @@ -5393,6 +5393,7 @@ SUBDIR += roboctl SUBDIR += robodoc SUBDIR += root-doc + SUBDIR += ros-catkin_pkg SUBDIR += ros-rosinstall_generator SUBDIR += ros-vcstools SUBDIR += ros-wstool Added: head/devel/ros-catkin_pkg/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ros-catkin_pkg/Makefile Sun Sep 22 10:42:03 2019 (r512574) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= ros-catkin_pkg +DISTVERSION= 0.4.13 +CATEGORIES= devel +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= trueos@norwegianrockcat.com +COMMENT= Standard Python library for the catkin build system + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>=1:devel/py-argparse@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2:devel/py-dateutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyparsing>=2:devel/py-pyparsing@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}docutils>=0:textproc/py-docutils@${PY_FLAVOR} + +USES= python + +USE_PYTHON= distutils autoplist + +USE_GITHUB= yes +GH_ACCOUNT= ros-infrastructure +GH_PROJECT= catkin_pkg + +.include Added: head/devel/ros-catkin_pkg/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ros-catkin_pkg/distinfo Sun Sep 22 10:42:03 2019 (r512574) @@ -0,0 +1,3 @@ +TIMESTAMP = 1568623995 +SHA256 (ros-infrastructure-catkin_pkg-0.4.13_GH0.tar.gz) = 843a8ad05e498e1eb3c9f75496d7410058af3a9d8e52b4339a8d1a6b3ff3aced +SIZE (ros-infrastructure-catkin_pkg-0.4.13_GH0.tar.gz) = 61790 Added: head/devel/ros-catkin_pkg/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ros-catkin_pkg/pkg-descr Sun Sep 22 10:42:03 2019 (r512574) @@ -0,0 +1,5 @@ +This is a Python library for working with the Catkin package system for ROS. + +Catkin is the main build system for the Robot Operating System. + +WWW: http://github.com/ros/catkin