svn commit: r553406 - in branches/2020Q4/misc: py-xgboost py-xgboost/files xgboost
Yuri Victorovich
yuri at FreeBSD.org
Tue Oct 27 01:45:32 UTC 2020
Author: yuri
Date: Tue Oct 27 01:45:30 2020
New Revision: 553406
URL: https://svnweb.freebsd.org/changeset/ports/553406
Log:
MFH: r552175 r553388 r553389
Now builds on FreeBSD-12 powerpc64. As a test, also enable on FreeBSD-13 powerpc64.
Approved by: portmgr (tier-2 blanket)
misc/xgboost: Update 1.2.0 -> 1.2.1
misc/py-xgboost: Update 1.2.0 -> 1.2.1
PR: 247408
Approved by: ports-secteam (fluffy)
Modified:
branches/2020Q4/misc/py-xgboost/Makefile
branches/2020Q4/misc/py-xgboost/distinfo
branches/2020Q4/misc/py-xgboost/files/patch-CMakeLists.txt
branches/2020Q4/misc/py-xgboost/files/patch-xgboost_libpath.py
branches/2020Q4/misc/xgboost/Makefile
branches/2020Q4/misc/xgboost/distinfo
Directory Properties:
branches/2020Q4/ (props changed)
Modified: branches/2020Q4/misc/py-xgboost/Makefile
==============================================================================
--- branches/2020Q4/misc/py-xgboost/Makefile Tue Oct 27 00:16:23 2020 (r553405)
+++ branches/2020Q4/misc/py-xgboost/Makefile Tue Oct 27 01:45:30 2020 (r553406)
@@ -2,7 +2,7 @@
PORTNAME= xgboost
DISTVERSIONPREFIX= v
-DISTVERSION= 1.2.0
+DISTVERSION= 1.2.1
CATEGORIES= misc # machine-learning
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -24,11 +24,9 @@ GH_ACCOUNT= dmlc
USE_PYTHON= distutils autoplist
USE_LDCONFIG= yes
GH_TUPLE= \
- dmlc:rabit:4fb34a008db6437c84d1877635064e09a55c8553:dmlc_rabit/../rabit
+ dmlc:rabit:4acdd7c6f68debe1c39ae07ca75466d74d194dd1:dmlc_rabit/../rabit
WRKSRC_SUBDIR= python-package
-
-MAKE_ENV+= FREEBSD_LIBRARY_PATH=${LOCALBASE}/lib
LDFLAGS+= -lexecinfo
Modified: branches/2020Q4/misc/py-xgboost/distinfo
==============================================================================
--- branches/2020Q4/misc/py-xgboost/distinfo Tue Oct 27 00:16:23 2020 (r553405)
+++ branches/2020Q4/misc/py-xgboost/distinfo Tue Oct 27 01:45:30 2020 (r553406)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1600935150
-SHA256 (dmlc-xgboost-v1.2.0_GH0.tar.gz) = 074ef38f9fff675470c4b461e204cd1c778f984191ca89afdfcc55b46a1868d2
-SIZE (dmlc-xgboost-v1.2.0_GH0.tar.gz) = 1341770
-SHA256 (dmlc-rabit-4fb34a008db6437c84d1877635064e09a55c8553_GH0.tar.gz) = 7d9a18b1613dfd3a5244524ecdb164d6b2a1f150d297cc7b8527e221aabb6eb7
-SIZE (dmlc-rabit-4fb34a008db6437c84d1877635064e09a55c8553_GH0.tar.gz) = 93236
+TIMESTAMP = 1603744234
+SHA256 (dmlc-xgboost-v1.2.1_GH0.tar.gz) = 0190b902cdf4e0a05e735a382708e2025f1ff541a53251e43160beb3041bf35b
+SIZE (dmlc-xgboost-v1.2.1_GH0.tar.gz) = 1341653
+SHA256 (dmlc-rabit-4acdd7c6f68debe1c39ae07ca75466d74d194dd1_GH0.tar.gz) = 9e8bbdc04e504d7e7c98b9f683be5378cc5394405983d30737a14ca3dd43d449
+SIZE (dmlc-rabit-4acdd7c6f68debe1c39ae07ca75466d74d194dd1_GH0.tar.gz) = 94118
Modified: branches/2020Q4/misc/py-xgboost/files/patch-CMakeLists.txt
==============================================================================
--- branches/2020Q4/misc/py-xgboost/files/patch-CMakeLists.txt Tue Oct 27 00:16:23 2020 (r553405)
+++ branches/2020Q4/misc/py-xgboost/files/patch-CMakeLists.txt Tue Oct 27 01:45:30 2020 (r553406)
@@ -32,3 +32,12 @@
# rabit
set(RABIT_BUILD_DMLC OFF)
+@@ -202,7 +202,7 @@
+
+ #-- Hide all C++ symbols
+ if (HIDE_CXX_SYMBOLS)
+- foreach(target objxgboost xgboost dmlc rabit rabit_mock_static)
++ foreach(target objxgboost xgboost rabit rabit_mock_static)
+ set_target_properties(${target} PROPERTIES CXX_VISIBILITY_PRESET hidden)
+ endforeach()
+ endif (HIDE_CXX_SYMBOLS)
Modified: branches/2020Q4/misc/py-xgboost/files/patch-xgboost_libpath.py
==============================================================================
--- branches/2020Q4/misc/py-xgboost/files/patch-xgboost_libpath.py Tue Oct 27 00:16:23 2020 (r553405)
+++ branches/2020Q4/misc/py-xgboost/files/patch-xgboost_libpath.py Tue Oct 27 01:45:30 2020 (r553406)
@@ -1,10 +1,18 @@
---- xgboost/libpath.py.orig 2020-05-25 18:09:22 UTC
+--- xgboost/libpath.py.orig 2020-10-12 22:10:16 UTC
+++ xgboost/libpath.py
-@@ -20,6 +20,8 @@ def find_lib_path():
+@@ -4,6 +4,7 @@
+ import os
+ import platform
+ import sys
++import sysconfig # from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247408#c0
+
+
+ class XGBoostLibraryNotFound(Exception):
+@@ -20,6 +21,8 @@ def find_lib_path():
"""
curr_path = os.path.dirname(os.path.abspath(os.path.expanduser(__file__)))
dll_path = [
-+ os.getenv('FREEBSD_LIBRARY_PATH'),
++ sysconfig.get_config_var('LIBDIR'), # from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247408#c0
+ os.path.join(sys.prefix, 'xgboost'),
# normal, after installation `lib` is copied into Python package tree.
os.path.join(curr_path, 'lib'),
Modified: branches/2020Q4/misc/xgboost/Makefile
==============================================================================
--- branches/2020Q4/misc/xgboost/Makefile Tue Oct 27 00:16:23 2020 (r553405)
+++ branches/2020Q4/misc/xgboost/Makefile Tue Oct 27 01:45:30 2020 (r553406)
@@ -2,7 +2,7 @@
PORTNAME= xgboost
DISTVERSIONPREFIX= v
-DISTVERSION= 1.2.0
+DISTVERSION= 1.2.1
CATEGORIES= misc # machine-learning
MAINTAINER= yuri at FreeBSD.org
@@ -11,18 +11,17 @@ COMMENT= Scalable, Portable and Distributed Gradient B
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
-BROKEN_FreeBSD_12_powerpc64= fails to build: /usr/local/include/dmlc/serializer.h:63:16: 'Write' is not a member of 'dmlc::serializer::UndefinedSerializerFor<xgboost::DataType>'
-BROKEN_FreeBSD_13_powerpc64= fails to build: /usr/local/include/dmlc/./serializer.h:63:11: no member named 'Write' in 'dmlc::serializer::UndefinedSerializerFor<xgboost::DataType>'
-
LIB_DEPENDS= libdmlc.so:devel/dmlc-core
USES= cmake compiler:c++11-lang localbase:ldflags
+USE_LDCONFIG= yes
+
USE_GITHUB= yes
GH_ACCOUNT= dmlc
GH_TUPLE= \
dmlc:rabit:4fb34a008db6437c84d1877635064e09a55c8553:dmlc_rabit/rabit \
+ rapidsai:gputreeshap:5f33132d75482338f78cfba562791d8445e157f6:rapidsai_gputreeshap/gputreeshap \
NVlabs:cub:c3cceac115c072fb63df1836ff46d8c60d9eb304:NVlabs_cub/cub
-USE_LDCONFIG= yes
LDFLAGS+= ${LOCALBASE}/lib/libdmlc.so -lexecinfo
Modified: branches/2020Q4/misc/xgboost/distinfo
==============================================================================
--- branches/2020Q4/misc/xgboost/distinfo Tue Oct 27 00:16:23 2020 (r553405)
+++ branches/2020Q4/misc/xgboost/distinfo Tue Oct 27 01:45:30 2020 (r553406)
@@ -1,7 +1,9 @@
-TIMESTAMP = 1598655768
-SHA256 (dmlc-xgboost-v1.2.0_GH0.tar.gz) = 074ef38f9fff675470c4b461e204cd1c778f984191ca89afdfcc55b46a1868d2
-SIZE (dmlc-xgboost-v1.2.0_GH0.tar.gz) = 1341770
+TIMESTAMP = 1602663685
+SHA256 (dmlc-xgboost-v1.2.1_GH0.tar.gz) = 0190b902cdf4e0a05e735a382708e2025f1ff541a53251e43160beb3041bf35b
+SIZE (dmlc-xgboost-v1.2.1_GH0.tar.gz) = 1341653
SHA256 (dmlc-rabit-4fb34a008db6437c84d1877635064e09a55c8553_GH0.tar.gz) = 7d9a18b1613dfd3a5244524ecdb164d6b2a1f150d297cc7b8527e221aabb6eb7
SIZE (dmlc-rabit-4fb34a008db6437c84d1877635064e09a55c8553_GH0.tar.gz) = 93236
+SHA256 (rapidsai-gputreeshap-5f33132d75482338f78cfba562791d8445e157f6_GH0.tar.gz) = df446fe7a4e064515892ee43f0db8b1f77253e0791110024a105c6570447a8ca
+SIZE (rapidsai-gputreeshap-5f33132d75482338f78cfba562791d8445e157f6_GH0.tar.gz) = 25920
SHA256 (NVlabs-cub-c3cceac115c072fb63df1836ff46d8c60d9eb304_GH0.tar.gz) = ecb8b5b7c2e9493b1661cf023b29edcf5cdb80de7033e90f286501251e293b97
SIZE (NVlabs-cub-c3cceac115c072fb63df1836ff46d8c60d9eb304_GH0.tar.gz) = 385598
More information about the svn-ports-all
mailing list