Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] gmsh: update to 4.7.0
@ 2020-11-11 20:24 ndowens
  2020-11-13 20:22 ` [PR REVIEW] " ahesford
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: ndowens @ 2020-11-11 20:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 303 bytes --]

There is a new pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages gmsh
https://github.com/void-linux/void-packages/pull/26298

gmsh: update to 4.7.0


A patch file from https://github.com/void-linux/void-packages/pull/26298.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-gmsh-26298.patch --]
[-- Type: text/x-diff, Size: 1786 bytes --]

From 659032314c3205a7be81be5811da37ad451c7fb3 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Wed, 11 Nov 2020 14:23:47 -0600
Subject: [PATCH] gmsh: update to 4.7.0

---
 srcpkgs/gmsh/template | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 16d55e768b0..7a0d0fa4c66 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -1,6 +1,6 @@
 # Template file for 'gmsh'
 pkgname=gmsh
-version=4.6.0
+version=4.7.0
 revision=1
 wrksrc="${pkgname}-${version}-source"
 build_style=cmake
@@ -16,7 +16,15 @@ license="GPL-2.0-or-later"
 homepage="https://gmsh.info"
 changelog="http://gmsh.info/CHANGELOG.txt"
 distfiles="https://gmsh.info/src/gmsh-${version}-source.tgz"
-checksum=0f2c55e50fb6c478ebc8977f6341c223754cbf3493b7b0d683b4395ae9f2ad1c
+checksum=e27f32f92b374ba2a746a9d9c496401c13f66ac6e3e70753e16fa4012d14320e
+
+build_options="fltk hxt numpy zipper"
+build_options_default="hxt"
+
+desc_option_hxt="Enable HXT library"
+desc_option_fltk="Enable FLTK GUI support"
+desc_option_numpy="Enable fullMatrix and numpy array conversion"
+desc_option_zipper="Enable zip file compression/decompression"
 
 CFLAGS="-fcommon"
 
@@ -24,18 +32,11 @@ if [ -z "$CROSS_BUILD" ]; then
 	makedepends+=" hdf5-devel"
 fi
 
-build_options="fltk hxt numpy zipper"
-build_options_default="hxt"
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|i686*|x86_64*|ppc64*) build_options_default+=" fltk";;
 esac
 
-desc_option_hxt="Enable HXT library"
-desc_option_fltk="Enable FLTK GUI support"
-desc_option_numpy="Enable fullMatrix and numpy array conversion"
-desc_option_zipper="Enable zip file compression/decompression"
-
 post_install() {
 	rm -rf builddir/gmsh-$version-source/api
 }

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR REVIEW] gmsh: update to 4.7.0
  2020-11-11 20:24 [PR PATCH] gmsh: update to 4.7.0 ndowens
@ 2020-11-13 20:22 ` ahesford
  2020-11-13 23:33 ` [PR PATCH] [Updated] " ndowens
  2020-11-14  0:01 ` [PR PATCH] [Merged]: " ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2020-11-13 20:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 653 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/26298#discussion_r523202825

Comment:
I don't believe the `numpy` build option is functional. Looking at `CMakeLists.txt`, setting `-DENABLE_NUMPY=ON` is only functional with both `-DENABLE_PRIVATE_API=ON` and `-DENABLE_WRAP_PYTHON=ON`. In addition, this requires `swig`, `python3-numpy` and probably `python3-devel`. You will also probably have to set `NUMPY_INC` to make this work properly for cross builds.

If you don't want to sort out the details, I suggest you just drop the `numpy` build option because it isn't on by default anyway.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] gmsh: update to 4.7.0
  2020-11-11 20:24 [PR PATCH] gmsh: update to 4.7.0 ndowens
  2020-11-13 20:22 ` [PR REVIEW] " ahesford
@ 2020-11-13 23:33 ` ndowens
  2020-11-14  0:01 ` [PR PATCH] [Merged]: " ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ndowens @ 2020-11-13 23:33 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 308 bytes --]

There is an updated pull request by ndowens against master on the void-packages repository

https://github.com/ndowens/void-packages gmsh
https://github.com/void-linux/void-packages/pull/26298

gmsh: update to 4.7.0


A patch file from https://github.com/void-linux/void-packages/pull/26298.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-gmsh-26298.patch --]
[-- Type: text/x-diff, Size: 2094 bytes --]

From cb8162881ba9a85bc23475460a727ce81af58b61 Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Wed, 11 Nov 2020 14:23:47 -0600
Subject: [PATCH] gmsh: update to 4.7.0

---
 srcpkgs/gmsh/template | 21 ++++++++++-----------
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 16d55e768b0..2b11cd57cf3 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -1,13 +1,12 @@
 # Template file for 'gmsh'
 pkgname=gmsh
-version=4.6.0
+version=4.7.0
 revision=1
 wrksrc="${pkgname}-${version}-source"
 build_style=cmake
 configure_args="-DENABLE_SYSTEM_CONTRIB=ON
  -DENABLE_HXT=$(vopt_if hxt ON OFF)
- -DENABLE_ZIPPER=$(vopt_if zipper ON OFF)
- -DENABLE_NUMPY=$(vopt_if numpy ON OFF)"
+ -DENABLE_ZIPPER=$(vopt_if zipper ON OFF)"
 makedepends="freetype-devel glu-devel gmp-devel
  $(vopt_if fltk fltk-devel) blas-devel lapack-devel"
 short_desc="Three-dimensional finite element mesh generator"
@@ -16,7 +15,14 @@ license="GPL-2.0-or-later"
 homepage="https://gmsh.info"
 changelog="http://gmsh.info/CHANGELOG.txt"
 distfiles="https://gmsh.info/src/gmsh-${version}-source.tgz"
-checksum=0f2c55e50fb6c478ebc8977f6341c223754cbf3493b7b0d683b4395ae9f2ad1c
+checksum=e27f32f92b374ba2a746a9d9c496401c13f66ac6e3e70753e16fa4012d14320e
+
+build_options="fltk hxt zipper"
+build_options_default="hxt"
+
+desc_option_hxt="Enable HXT library"
+desc_option_fltk="Enable FLTK GUI support"
+desc_option_zipper="Enable zip file compression/decompression"
 
 CFLAGS="-fcommon"
 
@@ -24,18 +30,11 @@ if [ -z "$CROSS_BUILD" ]; then
 	makedepends+=" hdf5-devel"
 fi
 
-build_options="fltk hxt numpy zipper"
-build_options_default="hxt"
 
 case "$XBPS_TARGET_MACHINE" in
 	aarch64*|i686*|x86_64*|ppc64*) build_options_default+=" fltk";;
 esac
 
-desc_option_hxt="Enable HXT library"
-desc_option_fltk="Enable FLTK GUI support"
-desc_option_numpy="Enable fullMatrix and numpy array conversion"
-desc_option_zipper="Enable zip file compression/decompression"
-
 post_install() {
 	rm -rf builddir/gmsh-$version-source/api
 }

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: gmsh: update to 4.7.0
  2020-11-11 20:24 [PR PATCH] gmsh: update to 4.7.0 ndowens
  2020-11-13 20:22 ` [PR REVIEW] " ahesford
  2020-11-13 23:33 ` [PR PATCH] [Updated] " ndowens
@ 2020-11-14  0:01 ` ahesford
  2 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2020-11-14  0:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 155 bytes --]

There's a merged pull request on the void-packages repository

gmsh: update to 4.7.0
https://github.com/void-linux/void-packages/pull/26298

Description:


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-14  0:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-11 20:24 [PR PATCH] gmsh: update to 4.7.0 ndowens
2020-11-13 20:22 ` [PR REVIEW] " ahesford
2020-11-13 23:33 ` [PR PATCH] [Updated] " ndowens
2020-11-14  0:01 ` [PR PATCH] [Merged]: " ahesford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).