From owner-svn-ports-head@freebsd.org Sat May 23 13:02:36 2020 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 163B12CB069; Sat, 23 May 2020 13:02:36 +0000 (UTC) (envelope-from ehaupt@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 49Tk6M6sd3z40RP; Sat, 23 May 2020 13:02:35 +0000 (UTC) (envelope-from ehaupt@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 E709E1005C; Sat, 23 May 2020 13:02:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04ND2ZwY066934; Sat, 23 May 2020 13:02:35 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04ND2ZUd066932; Sat, 23 May 2020 13:02:35 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <202005231302.04ND2ZUd066932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 23 May 2020 13:02:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r536297 - head/net-p2p/xmrig X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/net-p2p/xmrig X-SVN-Commit-Revision: 536297 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.33 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: Sat, 23 May 2020 13:02:36 -0000 Author: ehaupt Date: Sat May 23 13:02:35 2020 New Revision: 536297 URL: https://svnweb.freebsd.org/changeset/ports/536297 Log: - Update to 5.11.2 - Make portfmt/portclippy happy Modified: head/net-p2p/xmrig/Makefile head/net-p2p/xmrig/distinfo Modified: head/net-p2p/xmrig/Makefile ============================================================================== --- head/net-p2p/xmrig/Makefile Sat May 23 12:35:45 2020 (r536296) +++ head/net-p2p/xmrig/Makefile Sat May 23 13:02:35 2020 (r536297) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xmrig -PORTVERSION= 5.11.1 +PORTVERSION= 5.11.2 DISTVERSIONPREFIX= v CATEGORIES= net-p2p @@ -12,9 +12,9 @@ COMMENT= High performance Monero (XMR) CPU miner LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_aarch64= fails to compile: src/common/cpu/BasicCpuInfo_arm.cpp:30:13: fatal error: 'asm/hwcap.h' file not found -BROKEN_armv6= fails to build: /nxb-bin/usr/lib/clang/8.0.0/include/ia32intrin.h:48:10: error: use of undeclared identifier '__builtin_ia32_readeflags_u32' -BROKEN_armv7= fails to build: /nxb-bin/usr/lib/clang/8.0.0/include/ia32intrin.h:48:10: error: use of undeclared identifier '__builtin_ia32_readeflags_u32' +BROKEN_aarch64= fails to compile: src/common/cpu/BasicCpuInfo_arm.cpp:30:13: fatal error: 'asm/hwcap.h' file not found +BROKEN_armv6= fails to build: /nxb-bin/usr/lib/clang/8.0.0/include/ia32intrin.h:48:10: error: use of undeclared identifier '__builtin_ia32_readeflags_u32' +BROKEN_armv7= fails to build: /nxb-bin/usr/lib/clang/8.0.0/include/ia32intrin.h:48:10: error: use of undeclared identifier '__builtin_ia32_readeflags_u32' BROKEN_powerpc64= fails to configure: Target "xmrig" requires the language dialect "CXX11", but CMake does not know the compile flags to use to enable it. USES= cmake ssl @@ -22,21 +22,21 @@ USE_GITHUB= yes USE_RC_SUBR= ${PORTNAME} SUB_FILES= pkg-message -SUB_LIST= PORTNAME=${PORTNAME} USERS=${USERS} +SUB_LIST= PORTNAME=${PORTNAME} \ + USERS=${USERS} USERS= xmrig -OPTIONS_DEFINE= STATIC MICROHTTPD HWLOC -HWLOC_DESC= Portable hardware locality -MICROHTTPD_DESC=Build with libmicrohttpd support -OPTIONS_DEFAULT=MICROHTTPD HWLOC +OPTIONS_DEFINE= HWLOC MICROHTTPD STATIC +OPTIONS_DEFAULT= HWLOC MICROHTTPD +HWLOC_DESC= Portable hardware locality +MICROHTTPD_DESC= Build with libmicrohttpd support -STATIC_PREVENTS=HWLOC MICROHTTPD -STATIC_PREVENTS_MSG= hwloc and libmicrohttpd support cannot be built static - -HWLOC_LIB_DEPENDS+= libhwloc.so:devel/hwloc - +HWLOC_LIB_DEPENDS+= libhwloc.so:devel/hwloc MICROHTTPD_LIB_DEPENDS+= libmicrohttpd.so:www/libmicrohttpd \ libuv.so:devel/libuv + +STATIC_PREVENTS= HWLOC MICROHTTPD +STATIC_PREVENTS_MSG= hwloc and libmicrohttpd support cannot be built static STATIC_BUILD_DEPENDS+= ${LOCALBASE}/lib/libuv.a:devel/libuv Modified: head/net-p2p/xmrig/distinfo ============================================================================== --- head/net-p2p/xmrig/distinfo Sat May 23 12:35:45 2020 (r536296) +++ head/net-p2p/xmrig/distinfo Sat May 23 13:02:35 2020 (r536297) @@ -1,3 +1,3 @@ -TIMESTAMP = 1587623786 -SHA256 (xmrig-xmrig-v5.11.1_GH0.tar.gz) = c0a8cedf42a95f78bb4ca306435f9f1793820e3285d5cd588943c7959e8fb810 -SIZE (xmrig-xmrig-v5.11.1_GH0.tar.gz) = 1357747 +TIMESTAMP = 1590233365 +SHA256 (xmrig-xmrig-v5.11.2_GH0.tar.gz) = 9c249d2d2660a0804dc2bfe9e82f281353fc37a6dbefaa1e7bd0bb07e629c787 +SIZE (xmrig-xmrig-v5.11.2_GH0.tar.gz) = 1351828