From owner-svn-ports-all@freebsd.org Tue Aug 27 07:01:50 2019 Return-Path: Delivered-To: svn-ports-all@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 83CC9CCAFA; Tue, 27 Aug 2019 07:01:50 +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.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 46Hftk2z16z4VQD; Tue, 27 Aug 2019 07:01:50 +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 471701AF08; Tue, 27 Aug 2019 07:01:50 +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 x7R71oMK006372; Tue, 27 Aug 2019 07:01:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7R71n4U006367; Tue, 27 Aug 2019 07:01:49 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201908270701.x7R71n4U006367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 27 Aug 2019 07:01:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509993 - in head/devel: . dmlc-core X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . dmlc-core X-SVN-Commit-Revision: 509993 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Aug 2019 07:01:50 -0000 Author: yuri Date: Tue Aug 27 07:01:48 2019 New Revision: 509993 URL: https://svnweb.freebsd.org/changeset/ports/509993 Log: New port: devel/dmlc-core: Common library for scalable and portable distributed machine learning Added: head/devel/dmlc-core/ head/devel/dmlc-core/Makefile (contents, props changed) head/devel/dmlc-core/distinfo (contents, props changed) head/devel/dmlc-core/pkg-descr (contents, props changed) head/devel/dmlc-core/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Aug 27 06:58:54 2019 (r509992) +++ head/devel/Makefile Tue Aug 27 07:01:48 2019 (r509993) @@ -490,6 +490,7 @@ SUBDIR += dlib SUBDIR += dmake SUBDIR += dmalloc + SUBDIR += dmlc-core SUBDIR += dmucs SUBDIR += docopt.cpp SUBDIR += doctorj Added: head/devel/dmlc-core/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dmlc-core/Makefile Tue Aug 27 07:01:48 2019 (r509993) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= dmlc-core +DISTVERSIONPREFIX= v +DISTVERSION= 0.3-105 +DISTVERSIONSUFFIX= -g32d9fe7 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Common library for scalable and portable distributed machine learning + +LICENSE= APACHE20 + +BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= dmlc +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +# use clang from ports because otherwise OpenMP isn't detected on some systems (ex. 12.0-RELEASE-p9) +CPP= clang-cpp${LLVM_DEFAULT} +CC= clang${LLVM_DEFAULT} +CXX= clang++${LLVM_DEFAULT} + +.include Added: head/devel/dmlc-core/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dmlc-core/distinfo Tue Aug 27 07:01:48 2019 (r509993) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566888058 +SHA256 (dmlc-dmlc-core-v0.3-105-g32d9fe7_GH0.tar.gz) = 25e7c7656851010335674752193ac8ffa1882b0c3a5c5c12dc78fe3aab1608e7 +SIZE (dmlc-dmlc-core-v0.3-105-g32d9fe7_GH0.tar.gz) = 252042 Added: head/devel/dmlc-core/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dmlc-core/pkg-descr Tue Aug 27 07:01:48 2019 (r509993) @@ -0,0 +1,4 @@ +DMLC-Core is the backbone library to support all DMLC projects, offers the +bricks to build efficient and scalable distributed machine learning libraries. + +WWW: https://github.com/dmlc/dmlc-core Added: head/devel/dmlc-core/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/dmlc-core/pkg-plist Tue Aug 27 07:01:48 2019 (r509993) @@ -0,0 +1,37 @@ +include/dmlc/any.h +include/dmlc/array_view.h +include/dmlc/base.h +include/dmlc/blockingconcurrentqueue.h +include/dmlc/build_config.h +include/dmlc/build_config_default.h +include/dmlc/common.h +include/dmlc/concurrency.h +include/dmlc/concurrentqueue.h +include/dmlc/config.h +include/dmlc/data.h +include/dmlc/endian.h +include/dmlc/filesystem.h +include/dmlc/input_split_shuffle.h +include/dmlc/io.h +include/dmlc/json.h +include/dmlc/logging.h +include/dmlc/lua.h +include/dmlc/memory.h +include/dmlc/memory_io.h +include/dmlc/omp.h +include/dmlc/optional.h +include/dmlc/parameter.h +include/dmlc/recordio.h +include/dmlc/registry.h +include/dmlc/serializer.h +include/dmlc/strtonum.h +include/dmlc/thread_group.h +include/dmlc/thread_local.h +include/dmlc/threadediter.h +include/dmlc/timer.h +include/dmlc/type_traits.h +lib/cmake/dmlc/DMLCTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/dmlc/DMLCTargets.cmake +lib/cmake/dmlc/dmlc-config-version.cmake +lib/cmake/dmlc/dmlc-config.cmake +lib/libdmlc.so