Package Details: heekscnc-git 1155.bec9dfa-1

Git Clone URL: https://aur.archlinux.org/heekscnc-git.git (read-only, click to copy)
Package Base: heekscnc-git
Description: CAM add-on for HeeksCAD
Upstream URL: http://heeks.net
Licenses: custom:BSD3
Conflicts: heekscnc
Provides: heekscnc
Submitter: lz3060
Maintainer: greyltc (matael)
Last Packager: greyltc
Votes: 1
Popularity: 0.000000
First Submitted: 2016-05-22 09:56 (UTC)
Last Updated: 2018-03-17 12:41 (UTC)

Dependencies (2)

Required by (1)

Sources (2)

Latest Comments

luispa commented on 2021-09-05 22:14 (UTC)

The problems is related to opencamlib compiling using Python 3 while Python 2 should be used for everything.

This line in opencamlib PKGBUILD: cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_PY_3="ON" -DBUILD_PY_LIB="ON" ../src

Should be replaced by: cmake -DCMAKE_INSTALL_PREFIX=/usr -DUSE_PY_2="ON" -DBUILD_PY_LIB="ON" ../src

Python 2 should be used on HeeksCNC and all its dependencies, otherwise certain functions/features could fail.

Harvie commented on 2018-04-01 01:23 (UTC)

It seems to me that there are lots of python dependencies that are missing in this package. I've tried to generate g-code of pocket operation with attached surface and it started yelling about missing modules.

I've done pip2 install ocl & pip2 install meta, but it still misses something and i can't figure it out...

greyltc commented on 2018-03-17 12:41 (UTC)

all fixed up. sorry for the delay!

matael commented on 2017-09-03 20:48 (UTC)

For heekscnc to work nicely with the last updates of wxgtk2, the cmake call must be modified to : build() { # ... cmake -DwxWidgets_CONFIG_EXECUTABLE="/usr/bin/wx-config" -DPYTHON_EXECUTABLE="/usr/bin/python2" -DPYTHON_LIBRARY="/usr/lib/libpython2.7.so" -DPYTHON_INCLUDE_DIR="/usr/include/python2.7" -DCMAKE_INSTALL_PREFIX=/usr .. } also, the package doesn't list wxgtk2 as a dep nor python2.7, that could be a good addition (even if, since it depends on heekscad-git, they are available anyway).