Date: Thu, 31 Oct 2019 16:55:39 +0000 (UTC) From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= <fernape@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516178 - in head/cad/admesh: . files Message-ID: <201910311655.x9VGtdq5000406@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: fernape Date: Thu Oct 31 16:55:39 2019 New Revision: 516178 URL: https://svnweb.freebsd.org/changeset/ports/516178 Log: cad/admesh: update to 0.98.4 From ChangeLog (https://github.com/admesh/admesh/releases/tag/v0.98.4) * Fix big-endian binary stl reading * Initialized extra values when loading ASCII STL Reported by: portscout Added: head/cad/admesh/files/ head/cad/admesh/files/patch-src_portable__endian.h (contents, props changed) Modified: head/cad/admesh/Makefile head/cad/admesh/distinfo Modified: head/cad/admesh/Makefile ============================================================================== --- head/cad/admesh/Makefile Thu Oct 31 16:49:35 2019 (r516177) +++ head/cad/admesh/Makefile Thu Oct 31 16:55:39 2019 (r516178) @@ -3,7 +3,7 @@ PORTNAME= admesh DISTVERSIONPREFIX= v -DISTVERSION= 0.98.3 +DISTVERSION= 0.98.4 CATEGORIES= cad MAINTAINER= ports@FreeBSD.org Modified: head/cad/admesh/distinfo ============================================================================== --- head/cad/admesh/distinfo Thu Oct 31 16:49:35 2019 (r516177) +++ head/cad/admesh/distinfo Thu Oct 31 16:55:39 2019 (r516178) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531641582 -SHA256 (admesh-admesh-v0.98.3_GH0.tar.gz) = 6aa1bb3c68309ba72441ecb56e8b0cd6560ab9f7688de3333f8c72f8f6948ac6 -SIZE (admesh-admesh-v0.98.3_GH0.tar.gz) = 39898 +TIMESTAMP = 1572464060 +SHA256 (admesh-admesh-v0.98.4_GH0.tar.gz) = 17e18b0e6c08c7dda879d4a0e963bea32d2593758ffd4a1a902b757115394e58 +SIZE (admesh-admesh-v0.98.4_GH0.tar.gz) = 41107 Added: head/cad/admesh/files/patch-src_portable__endian.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/admesh/files/patch-src_portable__endian.h Thu Oct 31 16:55:39 2019 (r516178) @@ -0,0 +1,18 @@ +--- src/portable_endian.h.orig 2019-10-12 18:24:24 UTC ++++ src/portable_endian.h +@@ -54,6 +54,7 @@ + + # include <sys/endian.h> + ++#if !defined(__FreeBSD__) + # define be16toh(x) betoh16(x) + # define le16toh(x) letoh16(x) + +@@ -62,6 +63,7 @@ + + # define be64toh(x) betoh64(x) + # define le64toh(x) letoh64(x) ++#endif /*!defined(__FreeBSD__)*/ + + #elif defined(__WINDOWS__) +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910311655.x9VGtdq5000406>