diff options
author | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2019-07-12 15:39:25 +0000 |
---|---|---|
committer | Fernando ApesteguĂa <fernape@FreeBSD.org> | 2019-07-12 15:39:25 +0000 |
commit | 37904ce32a86a56891e2b729f78c288f112b86f2 (patch) | |
tree | ef9f3338fb41fe0f406d4ab97fa202934f7dc984 /cad/openvsp | |
parent | Simplify the test for 64-bit. (diff) |
cad/openvsp: update to 3.17.1
Removing one patch accepted upstream.
ChangeLog:
http://openvsp.org/blogs/announcements/2019/07/08/openvsp-3-17-1-released
Features:
* Calculate average and weighted chord and solidity for props
* Expand API coverage
* Improve CMake to help FLTK build on Linux
* Add names to exported STEP files.
Library Update:
* Update GLM to 0.9.9.5
Fixes:
* Fix skin friction equations
* Multiple FEA GUI Fixes
* Don't assume FEA skin is first component
* IGES Structure Parm Name Collision (Thanks Jim Fenbert)
* STEP Structure missing options
* Overlapping Prop XSecs
* Register missing attachment enums w/ API
* Protect 4-dig airfoils from out of bounds parms
* Improve ResetRemapID behavior
* Fix problems with prop and file airfoils
* Add missing GUI handling of read-file XSecs for body of revolution
* Silence a bunch of warnings
* Use equal arc len parameterization for super ellipses
Notes
Notes:
svn path=/head/; revision=506463
Diffstat (limited to 'cad/openvsp')
-rw-r--r-- | cad/openvsp/Makefile | 2 | ||||
-rw-r--r-- | cad/openvsp/distinfo | 6 | ||||
-rw-r--r-- | cad/openvsp/files/patch-src_util_FileUtil.cpp | 31 |
3 files changed, 4 insertions, 35 deletions
diff --git a/cad/openvsp/Makefile b/cad/openvsp/Makefile index 96ace9052c14..598384af5b5f 100644 --- a/cad/openvsp/Makefile +++ b/cad/openvsp/Makefile @@ -2,7 +2,7 @@ PORTNAME= openvsp DISTVERSIONPREFIX= ${GH_PROJECT}_ -DISTVERSION= 3.17.0 +DISTVERSION= 3.17.1 CATEGORIES= cad MAINTAINER= fernape@FreeBSD.org diff --git a/cad/openvsp/distinfo b/cad/openvsp/distinfo index 96204fdf3fbe..f39ce999fe2f 100644 --- a/cad/openvsp/distinfo +++ b/cad/openvsp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1553966825 -SHA256 (OpenVSP-OpenVSP-OpenVSP_3.17.0_GH0.tar.gz) = ba34eb172d767503cf7e6434225a831662ab48c6a4707ed3fdc4af7ee4343646 -SIZE (OpenVSP-OpenVSP-OpenVSP_3.17.0_GH0.tar.gz) = 35052877 +TIMESTAMP = 1562687475 +SHA256 (OpenVSP-OpenVSP-OpenVSP_3.17.1_GH0.tar.gz) = f0468b22a577c636943a4c17e07ffa4ceb0817f59374be404b581da15bd841c4 +SIZE (OpenVSP-OpenVSP-OpenVSP_3.17.1_GH0.tar.gz) = 35748749 diff --git a/cad/openvsp/files/patch-src_util_FileUtil.cpp b/cad/openvsp/files/patch-src_util_FileUtil.cpp deleted file mode 100644 index 75365e74e79e..000000000000 --- a/cad/openvsp/files/patch-src_util_FileUtil.cpp +++ /dev/null @@ -1,31 +0,0 @@ ---- src/util/FileUtil.cpp.orig 2019-03-28 20:30:27 UTC -+++ src/util/FileUtil.cpp -@@ -19,7 +19,9 @@ - #include <pwd.h> - #endif - -+#include <libgen.h> - -+ - vector< string > ScanFolder( const char* dir_path ) - { - vector< string > file_vec; -@@ -107,9 +109,18 @@ bail: - - string PathToExe() - { -+ - int bufsize = 255; - char *path = NULL; - bool done = false; -+ -+ char temp[PATH_MAX]; -+ char exepath[PATH_MAX]; -+ -+ ::snprintf(temp, sizeof(temp),"/proc/curproc/file"); -+ ::realpath(temp, exepath); -+ -+ return dirname(exepath); - - // Pre-loop initialization. - #ifdef WIN32 |