svn commit: r441847 - in head: audio/vsound biology/bedtools cad/layouteditor databases/sqliteodbc-sqlite2 databases/tarantool databases/xtrabackup devel/dmucs devel/dyncall devel/lpc21isp devel/ob...

Mark Linimon linimon at FreeBSD.org
Sat May 27 15:07:15 UTC 2017


Author: linimon
Date: Sat May 27 15:07:11 2017
New Revision: 441847
URL: https://svnweb.freebsd.org/changeset/ports/441847

Log:
  Mark some ports failing on armv6, for errors classified as "clang".
  
  While here, pet portlint.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/audio/vsound/Makefile
  head/biology/bedtools/Makefile
  head/cad/layouteditor/Makefile
  head/databases/sqliteodbc-sqlite2/Makefile
  head/databases/tarantool/Makefile
  head/databases/xtrabackup/Makefile
  head/devel/dmucs/Makefile
  head/devel/dyncall/Makefile
  head/devel/lpc21isp/Makefile
  head/devel/obby/Makefile
  head/ftp/wxdfast/Makefile
  head/games/fkiss/Makefile
  head/graphics/picpuz/Makefile
  head/graphics/pixie/Makefile
  head/lang/pfe/Makefile
  head/math/gambit/Makefile
  head/math/openlibm/Makefile
  head/multimedia/kissdx/Makefile
  head/russian/ircd-hybrid/Makefile

Modified: head/audio/vsound/Makefile
==============================================================================
--- head/audio/vsound/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/audio/vsound/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -19,7 +19,8 @@ RUN_DEPENDS=	sox:audio/sox
 USES=		alias libtool
 GNU_CONFIGURE=	yes
 
-BROKEN_aarch64=	Fails to build: error: Cannot determine endian-ness of processor
+NOT_FOR_ARCHS=		aarch64 armv6
+NOT_FOR_ARCHS_REASON=	fails to build: error: Cannot determine endian-ness of processor
 
 OPTIONS_DEFINE=	DOCS
 

Modified: head/biology/bedtools/Makefile
==============================================================================
--- head/biology/bedtools/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/biology/bedtools/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -13,6 +13,8 @@ COMMENT=	Toolset for genome arithmetic
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
+BROKEN_armv6=		fails to compile: implicit instantiation of undefined template __static_assert_test<false>
+
 USE_GITHUB=	yes
 GH_ACCOUNT=	arq5x
 GH_PROJECT=	bedtools2

Modified: head/cad/layouteditor/Makefile
==============================================================================
--- head/cad/layouteditor/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/cad/layouteditor/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -13,6 +13,8 @@ COMMENT=	IC/MEMS layout editor
 
 LIB_DEPENDS=	libttf.so:print/freetype
 
+BROKEN_armv6=		fails to compile: no matching member function for call to 'map'
+
 USES=		qmake zip
 USE_QT4=	corelib gui network moc_build sql uic_build \
 		rcc_build qt3support xml

Modified: head/databases/sqliteodbc-sqlite2/Makefile
==============================================================================
--- head/databases/sqliteodbc-sqlite2/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/databases/sqliteodbc-sqlite2/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -9,6 +9,7 @@ COMMENT=	ODBC driver for SQLite 2
 
 MASTERDIR=      ${.CURDIR}/../sqliteodbc
 
-BROKEN_aarch64=		Fails to compile: error: passing char * to parameter of incompatible type va_list
+BROKEN_aarch64=		fails to compile: error: passing char * to parameter of incompatible type va_list
+BROKEN_armv6=		fails to compile: error: passing char * to parameter of incompatible type va_list
 
 .include "${MASTERDIR}/Makefile"

Modified: head/databases/tarantool/Makefile
==============================================================================
--- head/databases/tarantool/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/databases/tarantool/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -11,7 +11,8 @@ COMMENT=	NoSQL database running in a Lua
 
 LICENSE=	BSD2CLAUSE
 
-BROKEN_powerpc64=	Does not build: Unsupported architecture -- powerpc64
+NOT_FOR_ARCHS=		armv6 powerpc64 sparc64
+NOT_FOR_ARCHS_REASON=	fails to build: Unsupported architecture
 
 MAKE_JOBS_UNSAFE=yes
 USES=		cmake compiler:c++11-lang gettext gmake perl5 readline
@@ -45,9 +46,6 @@ PLIST_SUB+=	TT_USER=${USERS} \
 
 OPTIONS_DEFINE=	DEBUG
 
-NOT_FOR_ARCHS=	sparc64
-NOT_FOR_ARCHS_REASON=	not yet ported to this architecture
-
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MDEBUG}

Modified: head/databases/xtrabackup/Makefile
==============================================================================
--- head/databases/xtrabackup/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/databases/xtrabackup/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -24,7 +24,9 @@ LIB_DEPENDS=	libev.so:devel/libev \
 RUN_DEPENDS=	p5-DBD-mysql>=0:databases/p5-DBD-mysql \
 		qpress:archivers/qpress
 
-BROKEN_powerpc64=	Does not build: ld: final link failed: Bad value
+BROKEN_armv6=		fails to compile: cannot combine with previous 'type-name' declaration specifier
+BROKEN_mips64=		fails to compile: 'fpsetmask' was not declared in this scope
+BROKEN_powerpc64=	fails to link: ld: final link failed: Bad value
 
 # autotool is in use for 5.1 builds
 USES=		alias autoreconf:build cpe gettext cmake libtool perl5 shebangfix

Modified: head/devel/dmucs/Makefile
==============================================================================
--- head/devel/dmucs/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/devel/dmucs/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -10,11 +10,12 @@ MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
 MAINTAINER=	fjoe at FreeBSD.org
 COMMENT=	Distributed Multi-User Compilation System (for use with distcc)
 
+BROKEN_armv6=		fails to compile: passing char * to parameter of incompatible type __builtin_va_list
+BROKEN_aarch64=		fails to compile: passing char * to parameter of incompatible type __builtin_va_list
+
 WRKSRC=		${WRKDIR}/${PORTNAME}
 USES=	tar:bzip2
 GNU_CONFIGURE=	yes
 PLIST_FILES=	bin/dmucs bin/gethost bin/loadavg bin/monitor bin/remhost
 
-BROKEN_aarch64=	Fails to compile: error: passing char * to parameter of incompatible type __builtin_va_list
-
 .include <bsd.port.mk>

Modified: head/devel/dyncall/Makefile
==============================================================================
--- head/devel/dyncall/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/devel/dyncall/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -13,6 +13,8 @@ COMMENT=	Highly dynamic multi-platform f
 
 LICENSE=	ISCL
 
+BROKEN_armv6=		fails to compile: unexpected token in operand
+
 HAS_CONFIGURE=	yes
 
 CFLAGS+=	-fPIC
@@ -22,10 +24,6 @@ CFLAGS+=	-fPIC
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "ia64"
-BROKEN=		Does not install (unsupported architecture)
-.endif
-
 do-install:
 	${INSTALL_DATA} \
 		${WRKSRC}/dyncall/dyncall_value.h \

Modified: head/devel/lpc21isp/Makefile
==============================================================================
--- head/devel/lpc21isp/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/devel/lpc21isp/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -12,6 +12,8 @@ COMMENT=	ISP programmer tool for flashin
 
 LICENSE=	LGPL3+
 
+BROKEN_armv6=		fails to compile: no member named 'nQuestionMarks' in 'ISP_ENVIRONMENT'
+
 USES=		gmake
 
 PLIST_FILES=	bin/lpc21isp

Modified: head/devel/obby/Makefile
==============================================================================
--- head/devel/obby/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/devel/obby/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -15,6 +15,8 @@ LICENSE=	GPLv2
 LIB_DEPENDS=	libsigc-2.0.so:devel/libsigc++20 \
 		libnet6.so:net/net6
 
+BROKEN_armv6=		fails to compile: no member named 'name' in 'serialise::type_name<long long>'
+
 USES=		pathfix pkgconfig libtool compiler:c++11-lang
 USE_CXXSTD=	c++11
 GNU_CONFIGURE=	yes

Modified: head/ftp/wxdfast/Makefile
==============================================================================
--- head/ftp/wxdfast/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/ftp/wxdfast/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -14,6 +14,8 @@ COMMENT=	Multithread and multi-platform 
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+BROKEN_armv6=		fails to compile: no matching member function for call to 'Read'
+
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
 USE_WX=		2.8+

Modified: head/games/fkiss/Makefile
==============================================================================
--- head/games/fkiss/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/games/fkiss/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -17,6 +17,9 @@ LICENSE=	GPLv2
 
 RUN_DEPENDS=	lha:archivers/lha
 
+BROKEN_aarch64=		fails to compile: passing char * to parameter of incompatible type __builtin_va_list
+BROKEN_armv6=		fails to compile: passing char * to parameter of incompatible type __builtin_va_list
+
 EXTRA_PATCHES=	${WRKDIR}/${PORTNAME}-${PORTVERSION}.diff
 
 USES=		gmake
@@ -39,8 +42,6 @@ ESOUND_LDFLAGS=		`pkgconf --libs-only-L 
 ESOUND_CONFIGURE_ENV_OFF=	ac_cv_lib_esd_esd_open_sound=no \
 				ac_cv_header_esd_h=no
 
-BROKEN_aarch64=		Fails to compile: error: passing char * to parameter of incompatible type __builtin_va_list
-
 post-patch:
 	@${REINPLACE_CMD} -e 's|= @X_LIBS@|= @LDFLAGS@ @X_LIBS@|g' \
 		${WRKSRC}/Makefile.in

Modified: head/graphics/picpuz/Makefile
==============================================================================
--- head/graphics/picpuz/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/graphics/picpuz/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -11,6 +11,8 @@ MASTER_SITES=	http://kornelix.squarespac
 MAINTAINER=	devel at stasyan.com
 COMMENT=	Jigsaw puzzle program
 
+BROKEN_armv6=		fails to compile: use of undeclared identifier __NR_SYSCALL_BASE
+
 USES=		dos2unix execinfo gmake pkgconfig
 DOS2UNIX_GLOB=	*.h
 USE_GNOME=	gtk20

Modified: head/graphics/pixie/Makefile
==============================================================================
--- head/graphics/pixie/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/graphics/pixie/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -18,6 +18,10 @@ LIB_DEPENDS=	libIlmImf.so:graphics/OpenE
 		libtiff.so:graphics/tiff \
 		libfltk_gl.so:x11-toolkits/fltk
 
+BROKEN_aarch64=		fails to compile: use of undeclared identifier CRenderer
+BROKEN_armv6=		fails to compile: use of undeclared identifier CRenderer
+BROKEN_sparc64=		fails to compile
+
 USE_GL=		glu
 USES=		bison compiler:c++0x libtool pathfix tar:tgz
 GNU_CONFIGURE=	yes
@@ -41,9 +45,6 @@ CFLAGS+=	-fPIC
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-BROKEN_aarch64=		Fails to compile: error: use of undeclared identifier CRenderer
-BROKEN_sparc64=		Does not compile on sparc64
-
 OPTIONS_DEFINE=	DOCS
 
 post-patch:

Modified: head/lang/pfe/Makefile
==============================================================================
--- head/lang/pfe/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/lang/pfe/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -10,10 +10,11 @@ MASTER_SITES=	SF
 MAINTAINER=	johans at FreeBSD.org
 COMMENT=	Implementation of ANSI Forth
 
-BROKEN_aarch64=		does not compile: error: implicit declaration of function 'PFE_SBR_COMPILE_EXIT' is invalid in C99
-BROKEN_i386=		does not link
-BROKEN_powerpc=		does not compile
-BROKEN_powerpc64=	does not build: error: lvalue required as increment operand
+BROKEN_aarch64=		fails to compile: implicit declaration of function 'PFE_SBR_COMPILE_EXIT' is invalid in C99
+BROKEN_armv6=		fails to compile: implicit declaration of function 'PFE_SBR_COMPILE_EXIT' is invalid in C99
+BROKEN_i386=		fails to link
+BROKEN_powerpc=		fails to compile
+BROKEN_powerpc64=	fails to build: lvalue required as increment operand
 
 GNU_CONFIGURE=	yes
 USES=		gmake perl5 libtool tar:bzip2

Modified: head/math/gambit/Makefile
==============================================================================
--- head/math/gambit/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/math/gambit/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -13,6 +13,8 @@ COMMENT=	Library of tools for doing comp
 LICENSE=	GPLv2
 LICENSE_FILE=	${WRKSRC}/COPYING
 
+BROKEN_armv6=		fails to compile: 'm_number' is a private member of 'Gambit::GamePlayerRep'
+
 USES=		compiler:c++11-lib
 USE_GNOME=	gtk20
 USE_WX=		3.0

Modified: head/math/openlibm/Makefile
==============================================================================
--- head/math/openlibm/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/math/openlibm/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -14,6 +14,12 @@ LICENSE=	MIT ISCL BSD2CLAUSE
 LICENSE_COMB=	multi
 LICENSE_FILE=	${WRKSRC}/LICENSE.md
 
+BROKEN_aarch64=		fails to compile: the clang compiler does not support -march=aarch64
+BROKEN_armv6=		fails to compile: a parameter list without types is only allowed in a function definition
+BROKEN_mips=		fails to compile: No rule to make target mips/Make.files
+BROKEN_mips64=		fails to compile: No rule to make target mips64/Make.files
+BROKEN_powerpc64=	fails to build: gmake: clang: Command not found
+
 USE_GITHUB=	yes
 GH_ACCOUNT=	JuliaLang
 GH_PROJECT=	openlibm
@@ -21,9 +27,6 @@ GH_PROJECT=	openlibm
 USES=	gmake
 USE_LDCONFIG=	yes
 
-BROKEN_aarch64=		does not compile: the clang compiler does not support -march=aarch64
-BROKEN_powerpc64=	does not build: gmake: clang: Command not found
-
 .include <bsd.port.pre.mk>
 
 MAKE_ENV+=	prefix=${PREFIX}

Modified: head/multimedia/kissdx/Makefile
==============================================================================
--- head/multimedia/kissdx/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/multimedia/kissdx/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -16,6 +16,8 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 LIB_DEPENDS=	libgd.so:graphics/gd \
 		libdvdread.so:multimedia/libdvdread
 
+BROKEN_armv6=		fails to compile: kissdx.c: function definition is not allowed here
+BROKEN_mips64=		fails to compile: kissdx.c: nested functions are disabled, use -fnested-functions to re-enable
 BROKEN_powerpc64=	fails to compile: kissdx.c: nested functions are disabled, use -fnested-functions to re-enable
 
 USES=		compiler:nestedfct dos2unix iconv jpeg

Modified: head/russian/ircd-hybrid/Makefile
==============================================================================
--- head/russian/ircd-hybrid/Makefile	Sat May 27 14:58:43 2017	(r441846)
+++ head/russian/ircd-hybrid/Makefile	Sat May 27 15:07:11 2017	(r441847)
@@ -17,7 +17,8 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 CONFLICTS=	ircd-[0-9]* irc-[0-9]* charybdis-[0-9]* Nefarious-[0-9]* ircd-hybrid-[0-9]*
 
-BROKEN_aarch64=	Fails to compile: error: passing void * to parameter of incompatible type
+BROKEN_aarch64=		fails to compile: passing void * to parameter of incompatible type
+BROKEN_armv6=		fails to compile: passing void * to parameter of incompatible type
 
 WRKSRC=		${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-ru
 USES=		bison ssl


More information about the svn-ports-all mailing list