From owner-svn-ports-head@freebsd.org Mon Nov 19 19:22:17 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E40C61124A3E; Mon, 19 Nov 2018 19:22:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 87EBC88C34; Mon, 19 Nov 2018 19:22:16 +0000 (UTC) (envelope-from yuri@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 6A5BB26505; Mon, 19 Nov 2018 19:22:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAJJMG02025648; Mon, 19 Nov 2018 19:22:16 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAJJMFd3025640; Mon, 19 Nov 2018 19:22:15 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201811191922.wAJJMFd3025640@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 19 Nov 2018 19:22:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485354 - in head/math: . ignition-math ignition-math/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . ignition-math ignition-math/files X-SVN-Commit-Revision: 485354 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 87EBC88C34 X-Spamd-Result: default: False [0.47 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_SHORT(0.45)[0.446,0]; NEURAL_SPAM_MEDIUM(0.03)[0.027,0] X-Rspamd-Server: mx1.freebsd.org 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: Mon, 19 Nov 2018 19:22:17 -0000 Author: yuri Date: Mon Nov 19 19:22:15 2018 New Revision: 485354 URL: https://svnweb.freebsd.org/changeset/ports/485354 Log: New port: math/ignition-math: General purpose math library for robot applications Added: head/math/ignition-math/ head/math/ignition-math/Makefile (contents, props changed) head/math/ignition-math/distinfo (contents, props changed) head/math/ignition-math/files/ head/math/ignition-math/files/patch-CMakeLists.txt (contents, props changed) head/math/ignition-math/pkg-descr (contents, props changed) head/math/ignition-math/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Mon Nov 19 19:05:12 2018 (r485353) +++ head/math/Makefile Mon Nov 19 19:22:15 2018 (r485354) @@ -278,6 +278,7 @@ SUBDIR += hs-statistics SUBDIR += hs-vector-space SUBDIR += igraph + SUBDIR += ignition-math SUBDIR += intervaltree SUBDIR += ipopt SUBDIR += ised Added: head/math/ignition-math/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ignition-math/Makefile Mon Nov 19 19:22:15 2018 (r485354) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= ignition-math +DISTVERSION= 6.0.0 +CATEGORIES= math +MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= General purpose math library for robot applications + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ignition-cmake==2:devel/ignition-cmake + +USES= cmake:outsource eigen:3 +USE_LDCONFIG= yes + +BB_ACCOUNT= ignitionrobotics +BB_PROJECT= ign-math +BB_COMMIT= 46f3dd24499c + +WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} + +PLIST_SUB+= IGN_VER=${DISTVERSION:R:R} + +.include Added: head/math/ignition-math/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ignition-math/distinfo Mon Nov 19 19:22:15 2018 (r485354) @@ -0,0 +1,3 @@ +TIMESTAMP = 1542654723 +SHA256 (ignition-math-6.0.0.tar.gz) = 9cc37738f24f2b98cc36d09a93d297cb99f3ff5a7c8bd14cb9f837713a20cce9 +SIZE (ignition-math-6.0.0.tar.gz) = 503076 Added: head/math/ignition-math/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ignition-math/files/patch-CMakeLists.txt Mon Nov 19 19:22:15 2018 (r485354) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2018-11-19 19:12:40 UTC ++++ CMakeLists.txt +@@ -37,7 +37,7 @@ ign_find_package( + + ######################################## + # Include swig +-find_package(SWIG QUIET) ++#find_package(SWIG QUIET) + if (NOT SWIG_FOUND) + IGN_BUILD_WARNING("Swig is missing: Language interfaces are disabled.") + message (STATUS "Searching for swig - not found.") Added: head/math/ignition-math/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ignition-math/pkg-descr Mon Nov 19 19:22:15 2018 (r485354) @@ -0,0 +1,7 @@ +Math classes and functions for robot applications. + +Ignition Math is a component in the Ignition framework, a set of libraries +designed to rapidly develop robot applications. The library defines math +classes and functions used in other Ignition libraries and programs. + +WWW: https://ignitionrobotics.org/home Added: head/math/ignition-math/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/ignition-math/pkg-plist Mon Nov 19 19:22:15 2018 (r485354) @@ -0,0 +1,66 @@ +include/ignition/math%%IGN_VER%%/ignition/math.hh +include/ignition/math%%IGN_VER%%/ignition/math/Angle.hh +include/ignition/math%%IGN_VER%%/ignition/math/AxisAlignedBox.hh +include/ignition/math%%IGN_VER%%/ignition/math/Box.hh +include/ignition/math%%IGN_VER%%/ignition/math/Color.hh +include/ignition/math%%IGN_VER%%/ignition/math/Cylinder.hh +include/ignition/math%%IGN_VER%%/ignition/math/Export.hh +include/ignition/math%%IGN_VER%%/ignition/math/Filter.hh +include/ignition/math%%IGN_VER%%/ignition/math/Frustum.hh +include/ignition/math%%IGN_VER%%/ignition/math/Helpers.hh +include/ignition/math%%IGN_VER%%/ignition/math/Inertial.hh +include/ignition/math%%IGN_VER%%/ignition/math/Kmeans.hh +include/ignition/math%%IGN_VER%%/ignition/math/Line2.hh +include/ignition/math%%IGN_VER%%/ignition/math/Line3.hh +include/ignition/math%%IGN_VER%%/ignition/math/MassMatrix3.hh +include/ignition/math%%IGN_VER%%/ignition/math/Material.hh +include/ignition/math%%IGN_VER%%/ignition/math/MaterialType.hh +include/ignition/math%%IGN_VER%%/ignition/math/Matrix3.hh +include/ignition/math%%IGN_VER%%/ignition/math/Matrix4.hh +include/ignition/math%%IGN_VER%%/ignition/math/MovingWindowFilter.hh +include/ignition/math%%IGN_VER%%/ignition/math/OrientedBox.hh +include/ignition/math%%IGN_VER%%/ignition/math/PID.hh +include/ignition/math%%IGN_VER%%/ignition/math/Plane.hh +include/ignition/math%%IGN_VER%%/ignition/math/Pose3.hh +include/ignition/math%%IGN_VER%%/ignition/math/Quaternion.hh +include/ignition/math%%IGN_VER%%/ignition/math/Rand.hh +include/ignition/math%%IGN_VER%%/ignition/math/RotationSpline.hh +include/ignition/math%%IGN_VER%%/ignition/math/SemanticVersion.hh +include/ignition/math%%IGN_VER%%/ignition/math/SignalStats.hh +include/ignition/math%%IGN_VER%%/ignition/math/Sphere.hh +include/ignition/math%%IGN_VER%%/ignition/math/SphericalCoordinates.hh +include/ignition/math%%IGN_VER%%/ignition/math/Spline.hh +include/ignition/math%%IGN_VER%%/ignition/math/Stopwatch.hh +include/ignition/math%%IGN_VER%%/ignition/math/Temperature.hh +include/ignition/math%%IGN_VER%%/ignition/math/Triangle.hh +include/ignition/math%%IGN_VER%%/ignition/math/Triangle3.hh +include/ignition/math%%IGN_VER%%/ignition/math/Vector2.hh +include/ignition/math%%IGN_VER%%/ignition/math/Vector3.hh +include/ignition/math%%IGN_VER%%/ignition/math/Vector3Stats.hh +include/ignition/math%%IGN_VER%%/ignition/math/Vector4.hh +include/ignition/math%%IGN_VER%%/ignition/math/config.hh +include/ignition/math%%IGN_VER%%/ignition/math/detail/Box.hh +include/ignition/math%%IGN_VER%%/ignition/math/detail/Cylinder.hh +include/ignition/math%%IGN_VER%%/ignition/math/detail/Export.hh +include/ignition/math%%IGN_VER%%/ignition/math/detail/Sphere.hh +include/ignition/math%%IGN_VER%%/ignition/math/eigen3.hh +include/ignition/math%%IGN_VER%%/ignition/math/eigen3/Conversions.hh +include/ignition/math%%IGN_VER%%/ignition/math/graph/Edge.hh +include/ignition/math%%IGN_VER%%/ignition/math/graph/Graph.hh +include/ignition/math%%IGN_VER%%/ignition/math/graph/GraphAlgorithms.hh +include/ignition/math%%IGN_VER%%/ignition/math/graph/Vertex.hh +lib/cmake/ignition-math%%IGN_VER%%-all/ignition-math%%IGN_VER%%-all-config-version.cmake +lib/cmake/ignition-math%%IGN_VER%%-all/ignition-math%%IGN_VER%%-all-config.cmake +lib/cmake/ignition-math%%IGN_VER%%-all/ignition-math%%IGN_VER%%-all-targets.cmake +lib/cmake/ignition-math%%IGN_VER%%-eigen3/ignition-math%%IGN_VER%%-eigen3-config-version.cmake +lib/cmake/ignition-math%%IGN_VER%%-eigen3/ignition-math%%IGN_VER%%-eigen3-config.cmake +lib/cmake/ignition-math%%IGN_VER%%-eigen3/ignition-math%%IGN_VER%%-eigen3-targets.cmake +lib/cmake/ignition-math%%IGN_VER%%/ignition-math%%IGN_VER%%-config-version.cmake +lib/cmake/ignition-math%%IGN_VER%%/ignition-math%%IGN_VER%%-config.cmake +lib/cmake/ignition-math%%IGN_VER%%/ignition-math%%IGN_VER%%-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/ignition-math%%IGN_VER%%/ignition-math%%IGN_VER%%-targets.cmake +lib/libignition-math%%IGN_VER%%.so +lib/libignition-math%%IGN_VER%%.so.6 +lib/libignition-math%%IGN_VER%%.so.6.0.0~pre4 +libdata/pkgconfig/ignition-math%%IGN_VER%%-eigen3.pc +libdata/pkgconfig/ignition-math%%IGN_VER%%.pc