From owner-svn-ports-head@freebsd.org Wed May 3 01:14:08 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DDD3D5AD93; Wed, 3 May 2017 01:14:08 +0000 (UTC) (envelope-from linimon@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 mx1.freebsd.org (Postfix) with ESMTPS id C5D9EA96; Wed, 3 May 2017 01:14:07 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v431E6tJ071783; Wed, 3 May 2017 01:14:06 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v431E5nT071771; Wed, 3 May 2017 01:14:05 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201705030114.v431E5nT071771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 3 May 2017 01:14:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r439999 - in head: graphics/libjxr net-mgmt/pmacct science/cdf science/hdf security/clambc security/samhain sysutils/fluent-bit sysutils/radeontop sysutils/rovclock textproc/senna www/a... X-SVN-Group: ports-head 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.23 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: Wed, 03 May 2017 01:14:08 -0000 Author: linimon Date: Wed May 3 01:14:05 2017 New Revision: 439999 URL: https://svnweb.freebsd.org/changeset/ports/439999 Log: Mark some ports failing on aarch64, and, in a few cases, other tier-2 archs. While here, pet portlint. Approved by: portmgr (tier-2 blanket) Modified: head/graphics/libjxr/Makefile head/net-mgmt/pmacct/Makefile head/science/cdf/Makefile head/science/hdf/Makefile head/security/clambc/Makefile head/security/samhain/Makefile head/sysutils/fluent-bit/Makefile head/sysutils/radeontop/Makefile head/sysutils/rovclock/Makefile head/textproc/senna/Makefile head/www/anyterm/Makefile Modified: head/graphics/libjxr/Makefile ============================================================================== --- head/graphics/libjxr/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/graphics/libjxr/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -13,6 +13,9 @@ COMMENT= Library for JPEG XR, a.k.a. Win LICENSE= BSD +BROKEN_aarch64= fails to link: cc: error: linker command failed with exit code 1 (use -v to see invocation) +BROKEN_mips64= fails to build + USES= dos2unix uidfix USE_LDCONFIG= yes MAKEFILE= BSDmakefile # created by do-configure Modified: head/net-mgmt/pmacct/Makefile ============================================================================== --- head/net-mgmt/pmacct/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/net-mgmt/pmacct/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -12,6 +12,9 @@ COMMENT= Accounting and aggregation tool LICENSE= GPLv2 +BROKEN_aarch64= fails to build: undefined reference to sbrk +BROKEN_powerp64= fails to build: cc: Internal error: Segmentation fault (program ld) + USE_RC_SUBR= pmacctd nfacctd sfacctd SUB_FILES= pkg-message GNU_CONFIGURE= yes Modified: head/science/cdf/Makefile ============================================================================== --- head/science/cdf/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/science/cdf/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -18,6 +18,9 @@ LICENSE_NAME= NASA/Goddard Space Flight LICENSE_FILE= ${WRKSRC}/CDF_copyright.txt LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +BROKEN_aarch64= fails to compile: error: use of undeclared identifier FP1ZEROsingle; did you mean FP1zeroSingle? +BROKEN_armv6= fails to compile: error: use of undeclared identifier FP1ZEROsingle; did you mean FP1zeroSingle? + USES= fortran ncurses USE_LDCONFIG= yes MAKE_FLAGS= INSTALLDIR=${STAGEDIR}${PREFIX} OS=freebsd ENV=gnu \ Modified: head/science/hdf/Makefile ============================================================================== --- head/science/hdf/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/science/hdf/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -12,10 +12,12 @@ MASTER_SITES= http://www.hdfgroup.org/ft MAINTAINER= ports@FreeBSD.org COMMENT= Hierarchical Data Format library (from NCSA) -BROKEN_powerpc64= Does not build - LIB_DEPENDS= libsz.so:science/szip +BROKEN_powerpc64= Does not build: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'you' +NOT_FOR_ARCHS= aarch64 armv6 +NOT_FOR_ARCHS_REASON= fails to compile: no machine type has been defined + CONFLICTS_INSTALL= netcdf-4.[0-9]* USES= fortran jpeg libtool tar:bzip2 Modified: head/security/clambc/Makefile ============================================================================== --- head/security/clambc/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/security/clambc/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -12,6 +12,9 @@ COMMENT= Bytecode signature compiler for LICENSE= GPLv2 +NOT_FOR_ARCHS= aarch64 +NOT_FOR_ARCHS_REASON= fails to configure: error: Can not set target to build + USES= gmake libtool perl5 ALL_TARGET= clambc-only GNU_CONFIGURE= yes Modified: head/security/samhain/Makefile ============================================================================== --- head/security/samhain/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/security/samhain/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -12,6 +12,10 @@ COMMENT= Samhain Intrusion Detection Sys LICENSE= GPLv2 +BROKEN_aarch64= fails to build: undefined reference to sbrk +BROKEN_mips= fails to configure: error: Could not find the libwrap library +BROKEN_mips64= fails to configure: error: Could not find the libwrap library + OPTIONS_DEFINE= ASM DB_RELOAD DEBUG DNMALLOC ENCRYPT GNUPG IPV6 KCHECK LIBWRAP \ LOGFILE_MONITOR LOGIN_WATCH MAIL MOUNTS_CHECK MYSQL ODBC PGSQL \ PORT_CHECK PROCESS_CHECK POSIX_ACL PRELUDE PTRACE SRP STATIC \ Modified: head/sysutils/fluent-bit/Makefile ============================================================================== --- head/sysutils/fluent-bit/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/sysutils/fluent-bit/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -11,6 +11,11 @@ COMMENT= Fast and lightweight data forwa LICENSE= APACHE20 +BROKEN_aarch64= fails to build: error: unknown type name thread_local +BROKEN_armv6= fails to configure: failure in cmake +BROKEN_mips= fails to build: conflicting types for 'restrict' +BROKEN_mips64= fails to build: conflicting types for 'restrict' + USES= cmake post-stage: Modified: head/sysutils/radeontop/Makefile ============================================================================== --- head/sysutils/radeontop/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/sysutils/radeontop/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -14,6 +14,9 @@ LICENSE= GPLv3 LIB_DEPENDS= libpciaccess.so:devel/libpciaccess \ libdrm.so:graphics/libdrm +NOT_FOR_ARCHS= aarch64 armv6 mips mips64 +NOT_FOR_ARCHS_REASON= fails to compile: fatal error: amdgpu_drm.h file not found + USE_GITHUB= yes GH_ACCOUNT= clbr Modified: head/sysutils/rovclock/Makefile ============================================================================== --- head/sysutils/rovclock/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/sysutils/rovclock/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -11,6 +11,11 @@ COMMENT= Overclocking utility for ATI Ra LICENSE= GPLv2 +BROKEN_aarch64= fails to install: undefined reference to outl +BROKEN_armv6= fails to install: undefined reference to outl +BROKEN_mips= fails to install: undefined reference to outl +BROKEN_mips64= fails to install: undefined reference to outl + USES= tar:bzip2 PLIST_FILES= man/man8/${PORTNAME}.8.gz sbin/${PORTNAME} Modified: head/textproc/senna/Makefile ============================================================================== --- head/textproc/senna/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/textproc/senna/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -10,6 +10,8 @@ MASTER_SITES= SFJP/senna/46945 MAINTAINER= kuriyama@FreeBSD.org COMMENT= Embeddable Fulltext Search Engine +BROKEN_aarch64= does not build: libsenna.so: undefined reference to SEN_ATOMIC_ADD_EX +BROKEN_armv6= does not build: libsenna.so: undefined reference to SEN_ATOMIC_ADD_EX BROKEN_powerpc64= does not build: relocation truncated to fit: R_PPC64_TOC16_DS BROKEN_sparc64= does not build Modified: head/www/anyterm/Makefile ============================================================================== --- head/www/anyterm/Makefile Wed May 3 01:04:51 2017 (r439998) +++ head/www/anyterm/Makefile Wed May 3 01:14:05 2017 (r439999) @@ -17,6 +17,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/boost/function.hpp:devel/boost-libs +BROKEN_aarch64= does not build: libstdc++.so: undefined reference to __floatunditf@GCC_4.2.0 +BROKEN_armv6= does not build: libstdc++.so: undefined reference to __floatunditf@GCC_4.2.0 BROKEN_powerpc64= Does not build: ld: cannot find -lboost_system USE_RC_SUBR= anytermd