From owner-svn-ports-all@freebsd.org Sun Oct 11 19:12:02 2020 Return-Path: Delivered-To: svn-ports-all@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 E7E543FAAC4; Sun, 11 Oct 2020 19:12:02 +0000 (UTC) (envelope-from yuri@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 4C8WdZ5tr6z4TqZ; Sun, 11 Oct 2020 19:12:02 +0000 (UTC) (envelope-from yuri@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 AE20120642; Sun, 11 Oct 2020 19:12:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09BJC25P095952; Sun, 11 Oct 2020 19:12:02 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09BJC2JT095950; Sun, 11 Oct 2020 19:12:02 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202010111912.09BJC2JT095950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 11 Oct 2020 19:12:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552076 - in head/devel/gecode: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel/gecode: . files X-SVN-Commit-Revision: 552076 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Sun, 11 Oct 2020 19:12:03 -0000 Author: yuri Date: Sun Oct 11 19:12:02 2020 New Revision: 552076 URL: https://svnweb.freebsd.org/changeset/ports/552076 Log: devel/gecode: Fix build with clang-10 (const fields can't be assigned); Option GIST is broken Reported by: failure in poudriere (clang-10 problem) Added: head/devel/gecode/files/ head/devel/gecode/files/patch-gecode_set_int_weights.hpp (contents, props changed) Modified: head/devel/gecode/Makefile Modified: head/devel/gecode/Makefile ============================================================================== --- head/devel/gecode/Makefile Sun Oct 11 19:02:18 2020 (r552075) +++ head/devel/gecode/Makefile Sun Oct 11 19:12:02 2020 (r552076) @@ -32,5 +32,6 @@ GIST_DESC= Enable gist, graphical and interactive sear GIST_CMAKE_BOOL= ENABLE_GIST GIST_USES= qt:5 GIST_USE= qt=core,gui,printsupport,widgets,qmake_build,buildtools_build +GIST_BROKEN= Fails to build with GIST, see https://github.com/Gecode/gecode/issues/96 .include Added: head/devel/gecode/files/patch-gecode_set_int_weights.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gecode/files/patch-gecode_set_int_weights.hpp Sun Oct 11 19:12:02 2020 (r552076) @@ -0,0 +1,14 @@ +--- gecode/set/int/weights.hpp.orig 2020-10-11 18:28:10 UTC ++++ gecode/set/int/weights.hpp +@@ -49,9 +49,9 @@ namespace Gecode { namespace Set { namespace Int { + /// The value iterator + I iter; + /// A superset of the elements found in the iterator +- const SharedArray elements; ++ SharedArray elements; + /// Weights for all the possible elements +- const SharedArray weights; ++ SharedArray weights; + /// The current index into the elements and weights + int index; + /// Move to the next element