From owner-svn-ports-all@freebsd.org Sun Nov 10 16:29:16 2019 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 57C851B8525; Sun, 10 Nov 2019 16:29:16 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 479zwq6BWhz47k7; Sun, 10 Nov 2019 16:29:15 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from host-213-183-253-153.rev.as20985.net [213.183.253.153:40736] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with PLAIN) by mail.issp.ac.ru with ESMTPSA/inet id xAAGT7WR047208 (using TLSv1.2, with cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits), verified NO) Sun, 10 Nov 2019 19:29:09 +0300 (MSK) X-Authentication-Warning: mail.issp.ac.ru: Host host-213-183-253-153.rev.as20985.net [213.183.253.153] claimed to be mercury.ph.man.ac.uk From: Max Brazhnikov To: Piotr Kubaj Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r517126 - head/cad/librecad Date: Sun, 10 Nov 2019 19:29:07 +0300 Message-ID: <1895192.4WAli8B44Z@mercury.ph.man.ac.uk> In-Reply-To: <20191110121847.GA1240@KGPE-D16> References: <201911091301.xA9D1GwQ033178@repo.freebsd.org> <2953745.bT80LyP3VS@mercury.ph.man.ac.uk> <20191110121847.GA1240@KGPE-D16> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Rspamd-Queue-Id: 479zwq6BWhz47k7 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-1.91 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-0.91)[-0.908,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:42317, ipnet:77.236.32.0/20, country:RU] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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, 10 Nov 2019 16:29:16 -0000 On Sun, 10 Nov 2019 13:18:49 +0100 Piotr Kubaj wrote: > It seems it's a known issue, reported here https://github.com/LibreCAD/LibreCAD/issues/1130 > > Do you find this patch acceptable? Fine for me > Index: /usr/ports/cad/librecad/Makefile > =================================================================== > --- /usr/ports/cad/librecad/Makefile (revision 517201) > +++ /usr/ports/cad/librecad/Makefile (working copy) > @@ -5,8 +5,10 @@ > PORTREVISION= 10 > CATEGORIES= cad > > -PATCH_SITES= https://github.com/LibreCAD/LibreCAD/commit/ > -PATCHFILES= d0a0ef284b7fcc5c0d65b92c30855f62b637653f.patch:-p1 > +PATCH_SITES_gcc= https://github.com/LibreCAD/LibreCAD/commit/ > +PATCH_SITES= ${PATCH_SITES_${CHOSEN_COMPILER_TYPE}} > +PATCHFILES_gcc= d0a0ef284b7fcc5c0d65b92c30855f62b637653f.patch:-p1 > +PATCHFILES= ${PATCHFILES_${CHOSEN_COMPILER_TYPE}} > > MAINTAINER= jhale@FreeBSD.org > COMMENT= 2D CAD system > > On 19-11-10 13:54:41, Max Brazhnikov wrote: > > On Sat, 9 Nov 2019 13:01:16 +0000 (UTC) Piotr Kubaj wrote: > > > Author: pkubaj > > > Date: Sat Nov 9 13:01:16 2019 > > > New Revision: 517126 > > > URL: https://svnweb.freebsd.org/changeset/ports/517126 > > > > > > Log: > > > cad/librecad: fix build on GCC architectures > > > > > > Merge upstream patch to fix build with GCC. > > > > > > PR: 241496 > > > Approved by: jhale (maintainer timeout), linimon (mentor) > > > > > > Modified: > > > head/cad/librecad/Makefile > > > head/cad/librecad/distinfo > > > > > > Modified: head/cad/librecad/Makefile > > > ============================================================================== > > > --- head/cad/librecad/Makefile Sat Nov 9 12:44:25 2019 (r517125) > > > +++ head/cad/librecad/Makefile Sat Nov 9 13:01:16 2019 (r517126) > > > @@ -5,6 +5,9 @@ DISTVERSION= 2.2.0-rc1 > > > PORTREVISION= 10 > > > CATEGORIES= cad > > > > > > +PATCH_SITES= https://github.com/LibreCAD/LibreCAD/commit/ > > > +PATCHFILES= d0a0ef284b7fcc5c0d65b92c30855f62b637653f.patch:-p1 > > > > Hi Piotr, > > > > the port doesn't build on stable after this commit. Revering the change helps. > > > > Max > > > >