Date: Tue, 27 Aug 2019 07:01:49 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509993 - in head/devel: . dmlc-core Message-ID: <201908270701.x7R71n4U006367@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908270701.x7R71n4U006367>