From owner-svn-ports-head@freebsd.org Thu Dec 13 10:47:23 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 257D01316A86; Thu, 13 Dec 2018 10:47:23 +0000 (UTC) (envelope-from ler@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) server-signature RSA-PSS (4096 bits) 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 94F19821CC; Thu, 13 Dec 2018 10:47:22 +0000 (UTC) (envelope-from ler@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 67A591EAC0; Thu, 13 Dec 2018 10:47:22 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBDAlMif009181; Thu, 13 Dec 2018 10:47:22 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBDAlLVL009179; Thu, 13 Dec 2018 10:47:21 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201812131047.wBDAlLVL009179@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Thu, 13 Dec 2018 10:47:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487363 - in head/astro/boinc-setiathome: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: in head/astro/boinc-setiathome: . files X-SVN-Commit-Revision: 487363 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 94F19821CC X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-1.35 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.82)[-0.825,0]; NEURAL_HAM_SHORT(-0.53)[-0.526,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 13 Dec 2018 10:47:23 -0000 Author: ler Date: Thu Dec 13 10:47:21 2018 New Revision: 487363 URL: https://svnweb.freebsd.org/changeset/ports/487363 Log: astro/boinc-setiathome: Fix build with clang 7.0.1. - fix CUSTOM_STRING concatenation - fix 2 format strings - pet portlint - move GNU_CONFIGURE to after USES - bump PORTREVISION Added: head/astro/boinc-setiathome/files/patch-client_seti.h (contents, props changed) head/astro/boinc-setiathome/files/patch-configure.ac (contents, props changed) Deleted: head/astro/boinc-setiathome/files/patch-sah__config.h Modified: head/astro/boinc-setiathome/Makefile Modified: head/astro/boinc-setiathome/Makefile ============================================================================== --- head/astro/boinc-setiathome/Makefile Thu Dec 13 09:31:33 2018 (r487362) +++ head/astro/boinc-setiathome/Makefile Thu Dec 13 10:47:21 2018 (r487363) @@ -3,6 +3,7 @@ PORTNAME= boinc-setiathome PORTVERSION= 8.00 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= LOCAL/ler/setiathome \ http://www.lerctr.org/setiathome/ @@ -23,8 +24,9 @@ BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3 RUN_DEPENDS= boinc_client:net/boinc-client LIB_DEPENDS= libfftw3f.so:math/fftw3-float -GNU_CONFIGURE= yes USES= autoreconf compiler gmake libtool pkgconfig tar:xz + +GNU_CONFIGURE= yes CFLAGS+= -O2 -I${LOCALBASE}/include/boinc -I${LOCALBASE}/include \ -L${LOCALBASE}/lib Added: head/astro/boinc-setiathome/files/patch-client_seti.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/boinc-setiathome/files/patch-client_seti.h Thu Dec 13 10:47:21 2018 (r487363) @@ -0,0 +1,14 @@ +--- client/seti.h.orig 2018-12-13 10:21:28 UTC ++++ client/seti.h +@@ -53,9 +53,9 @@ typedef uint64_t sh_uint8_t; + + #ifdef PRId64 + // If print formats are defined +-#define SINT8_FMT "%"PRId64 ++#define SINT8_FMT "%" PRId64 + #define SINT8_FMT_CAST(x) (x) +-#define UINT8_FMT "%"PRIu64 ++#define UINT8_FMT "%" PRIu64 + #define UINT8_FMT_CAST(x) (x) + #else + // play it safe. It'll work through 49 bits at least. Added: head/astro/boinc-setiathome/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/boinc-setiathome/files/patch-configure.ac Thu Dec 13 10:47:21 2018 (r487363) @@ -0,0 +1,11 @@ +--- configure.ac.orig 2018-12-13 10:20:53 UTC ++++ configure.ac +@@ -658,7 +658,7 @@ AH_BOTTOM([ + #endif + + #if !defined(CUSTOM_STRING) && defined(COMPILER_STRING) +-#define CUSTOM_STRING PACKAGE_STRING" "SVN_REV" "COMPILER_STRING ++#define CUSTOM_STRING PACKAGE_STRING " " SVN_REV " " COMPILER_STRING + #endif + + #include "std_fixes.h"