From owner-svn-ports-all@freebsd.org Thu Jun 25 11:12:24 2015 Return-Path: Delivered-To: svn-ports-all@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 389B398C894; Thu, 25 Jun 2015 11:12:24 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.net (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 153DA1ABB; Thu, 25 Jun 2015 11:12:23 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [192.168.0.22] (unknown [130.255.19.191]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.net (Postfix) with ESMTP id 636AD435C7; Thu, 25 Jun 2015 06:12:14 -0500 (CDT) Message-ID: <558BE206.2050700@marino.st> Date: Thu, 25 Jun 2015 13:12:06 +0200 From: John Marino Reply-To: marino@freebsd.org User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: Dmitry Marakasov , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r390555 - head/comms/gnuradio References: <201506251046.t5PAkhLC097964@svn.freebsd.org> In-Reply-To: <201506251046.t5PAkhLC097964@svn.freebsd.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Jun 2015 11:12:24 -0000 On 6/25/2015 12:46, Dmitry Marakasov wrote: > Author: amdmi3 > Date: Thu Jun 25 10:46:42 2015 > New Revision: 390555 > URL: https://svnweb.freebsd.org/changeset/ports/390555 > > Log: > - Mark BROKEN on 9.x: > > /wrkdirs/usr/ports/comms/gnuradio/work/gnuradio-3.7.4/volk/kernels/volk/volk_8u_x4_conv_k7_r2_8u.h:191: error: incompatible type for argument 1 of '__builtin_ia32_psrlqi128' > head/comms/gnuradio/Makefile > > Modified: head/comms/gnuradio/Makefile > ============================================================================== > --- head/comms/gnuradio/Makefile Thu Jun 25 10:40:00 2015 (r390554) > +++ head/comms/gnuradio/Makefile Thu Jun 25 10:46:42 2015 (r390555) > @@ -35,6 +35,8 @@ LIB_DEPENDS= libcppunit.so:${PORTSDIR}/d > libgsl.so:${PORTSDIR}/math/gsl > RUN_DEPENDS:= ${BUILD_DEPENDS} > > +BROKEN_FreeBSD_9= does not build on FreeBSD 9.x > + The "reason" is a bit redundant. code: > IGNORE= is marked as broken on ${OPSYS} ${OSREL}: ${BROKEN_${OPSYS}_${OSREL:R}} means fail reason string will be: "is marked as broken FreeBSD 9.3: does not build on FreeBSD 9.x" something like: BROKEN_FreeBSD_9=incompatible type for argument 1 of '__builtin_ia32_psrlqi128' might be more descriptive? This is just food for thought. I always find the "broken on 9.x" messages not to add anything new. John