Package Details: netgen-git 6.2.2405.r0.ge51918d-2

Git Clone URL: https://aur.archlinux.org/netgen-git.git (read-only, click to copy)
Package Base: netgen-git
Description: An automatic 3d tetrahedral mesh generator.
Upstream URL: https://github.com/ngsolve/netgen
Licenses: LGPL-2.1-only
Conflicts: netgen
Provides: netgen
Submitter: ftschindler
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 7
Popularity: 0.000008
First Submitted: 2016-08-09 12:50 (UTC)
Last Updated: 2024-09-24 15:48 (UTC)

Latest Comments

1 2 Next › Last »

bartus commented on 2024-09-24 14:55 (UTC) (edited on 2024-09-24 14:58 (UTC) by bartus)

File conflict with pybind11 in version 6.2.2404.r84.ge94096e-1 last working version 6.2.2404.r42.g325175c8-1 @FabioLolix The -DNG_INSTALL_DIR_LIB=lib/${pkgname%-git} and -DNG_INSTALL_DIR_INCLUDE=include/${pkgname%-git} were there for a reason

$ { pacman -Ql netgen-git; pacman -Fl netgen-git; }|grep pybind11.*/$
netgen-git /usr/include/netgen/pybind11/
netgen-git /usr/include/netgen/pybind11/detail/
netgen-git /usr/include/netgen/pybind11/eigen/
netgen-git /usr/include/netgen/pybind11/stl/
netgen-git usr/include/pybind11/
netgen-git usr/include/pybind11/detail/
netgen-git usr/include/pybind11/eigen/
netgen-git usr/include/pybind11/stl/

lahwaacz commented on 2024-09-03 23:41 (UTC)

@bartus Have you tried to upstream the patch? There is an issue for cmake options, but I don't see one for the std namespace...

bartus commented on 2024-02-20 13:37 (UTC)

ffmpeg:5 patch: https://0x0.st/Hnh7.diff

apply with git am -s < <(curl -s https://0x0.st/Hnh7.diff)

rmsc commented on 2022-04-20 14:09 (UTC)

This package doesn't build with ffmpeg5. The PKGBUILD needs a few tweaks in order to use ffmpeg4.4.

Besides replacing ffmpeg with ffmpeg4.4 in the dependencies, I had to change build() to this:

build() {
    FFMPEG='/usr/lib/ffmpeg4.4'
    cmake -B build -S "${pkgname%-git}" \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DNG_INSTALL_DIR_LIB=lib/${pkgname%-git} \
        -DNG_INSTALL_DIR_INCLUDE=include/${pkgname%-git} \
        -DCMAKE_BUILD_TYPE=RELEASE \
        -DUSE_JPEG=ON \
        -DFFMPEG_LIBRARIES="${FFMPEG}/libavcodec.so;${FFMPEG}/libavformat.so;${FFMPEG}/libavutil.so;${FFMPEG}/libswscale.so" \
        -DFFMPEG_INCLUDE_DIR=/usr/include/ffmpeg4.4 \
        -DUSE_MPEG=ON \
        -DMETIS_DIR=/usr \
        -DUSE_OCC=ON \

   cmake --build build
}

bartus commented on 2021-09-04 14:49 (UTC)

@ftschindler: Missing dependency libxi

ftschindler commented on 2020-11-09 09:19 (UTC)

I updated the pkgver to match the packaging guidelines more closely (not to update the version number). However, as I understand the purpose of VCS packages the pkgver is updated on your local build. I can hardly push a new package each time a commit is added to netgen (each commit would change the pkgver). If you are looking for a netgen package with release versioning, one would have to create a netgen package which tracks the release (as opposed to this netgen-git package, which tracks the current development version). Please enlighten me if I am wrong ...

Kunda commented on 2020-11-08 18:41 (UTC)

@ftschindler do you mind updating the name of this package ? 6.2.2008 is the latest release

ftschindler commented on 2020-05-04 11:09 (UTC)

I updated the pkgver, but from what I understand this is updated on each local build (since this is a -git package) so no need to do this on my end...

Kunda commented on 2020-05-02 19:23 (UTC)

Looks like the netgen folks changed their version scheme: https://github.com/NGSolve/netgen/releases

ftschindler commented on 2018-02-26 19:32 (UTC)

Thx for reporting. I update the URL to the github one.