Jump to content

FreeBSD Cura (or the fun building this thing)


zBeeble

Recommended Posts

Posted · FreeBSD Cura (or the fun building this thing)

So... I'm a fairly competent ports maintainer for FreeBSD.  I see that someone has already gotten the CuraEngine ported.  I thus have been working in the direction of getting the Cura graphical front end going.

 

So... is anyone else working on this?

 

It almost seems like the job of porting things written in python is made nearly impossible by their build systems.

 

I think I have all the requirements built... but I'm still getting rather dumb output from cmake.

 

Help?

  • Link to post
    Share on other sites

    Posted · FreeBSD Cura (or the fun building this thing)

    There's a version that runs in ubuntu - it has (strange to me) extention ".AppImage".  Does that not work in FreeBSD?  I'm guessing not.

     

    Well maybe @ghostkeeper can help you - maybe if you posted some specific issue(s) of things you have problems with?

  • Link to post
    Share on other sites

    Posted · FreeBSD Cura (or the fun building this thing)

    Well... an appimage might run if I fired off a VM running linux.  The linux emulation tends to work fine for binaries that you can run, but the sheer volume of libraries this requires is unlikely to be less work to run under emulation.

     

    Besides... its written primarily in Python.  The C++ part is already ported (and seems like it was easier to port).  I realize that portable software can be difficult to write... but we're dealing with the low-hanging fruit here --- it's written in python.

     

    argh.  I suppose one big problem is that I'm not familliar with cmake and while cmake exists on FreeBSD ... whatever this cmake does is broken.  More tomorrow, maybe.

  • Link to post
    Share on other sites

    Posted · FreeBSD Cura (or the fun building this thing)

    Honestly, I know very little of BSD-family operating systems.

     

    While the front-end is written in Python and the back-end (and auxillary libraries) is written in portable C++, I suspect that the binaries for our libraries are not compiled with BSD in mind. I'd expect Qt to be the most difficult one to get right. Besides that there might be some libraries we depend on that could be missing. And some resource paths that we have hard-coded, such as the config path being ~/.config/cura.

     

    In our code we've always been talking about "Windows, MacOS and Linux" as our supported platforms; never "Unix" or "BSD". You're the first person I know of that seems to have tried.

  • Link to post
    Share on other sites

    Posted · FreeBSD Cura (or the fun building this thing)

    Qt is actually fine.  KDE runs well and I've used Qt in projects ... both in python and C++ on FreeBSD.

     

    It seems the previous version of Cura was ported to BSD, but whoever did that has moved on.

     

  • Link to post
    Share on other sites

    Posted · FreeBSD Cura (or the fun building this thing)

    OK.  I've beaten down a bunch of errors.  There's two things I can't get past.

     

    If I checkout the git tree, and after making, there's no option to make install or run in place.

     

    I have a different tree checked out that has a cura_app.py to try to run... but there I get:

     

    [2:114:414]dgilbert@canoe:~/Cura-master> LD_LIBRARY_PATH=/usr/local/lib/gcc6:/lib:/usr/local/lib ./cura_app.py
    [MainThread] cura.CrashHandler.show [36]: An uncaught exception has occurred!
    [MainThread] cura.CrashHandler.show [39]: Traceback (most recent call last):
    [MainThread] cura.CrashHandler.show [39]:   File "./cura_app.py", line 69, in <module>
    [MainThread] cura.CrashHandler.show [39]:     app = cura.CuraApplication.CuraApplication.getInstance()
    [MainThread] cura.CrashHandler.show [39]:   File "/usr/local/lib/python3.6/site-packages/UM/Application.py", line 340, in getInstance
    [MainThread] cura.CrashHandler.show [39]:     Application._instance = cls(**kwargs)
    [MainThread] cura.CrashHandler.show [39]:   File "/home/dgilbert/Cura-master/cura/CuraApplication.py", line 154, in __init__
    [MainThread] cura.CrashHandler.show [39]:     ContainerRegistry.getInstance().addResourceType(self.ResourceTypes.QualityInstanceContainer)
    [MainThread] cura.CrashHandler.show [39]: TypeError: addResourceType() missing 1 required positional argument: 'container_type'

     

    ideas?

  • Link to post
    Share on other sites

    Posted · FreeBSD Cura (or the fun building this thing)
    8 hours ago, zBeeble said:

    I have a different tree checked out that has a cura_app.py to try to run... but there I get:

     

    
    [2:114:414]dgilbert@canoe:~/Cura-master> LD_LIBRARY_PATH=/usr/local/lib/gcc6:/lib:/usr/local/lib ./cura_app.py
    [MainThread] cura.CrashHandler.show [36]: An uncaught exception has occurred!
    [MainThread] cura.CrashHandler.show [39]: Traceback (most recent call last):
    [MainThread] cura.CrashHandler.show [39]:   File "./cura_app.py", line 69, in <module>
    [MainThread] cura.CrashHandler.show [39]:     app = cura.CuraApplication.CuraApplication.getInstance()
    [MainThread] cura.CrashHandler.show [39]:   File "/usr/local/lib/python3.6/site-packages/UM/Application.py", line 340, in getInstance
    [MainThread] cura.CrashHandler.show [39]:     Application._instance = cls(**kwargs)
    [MainThread] cura.CrashHandler.show [39]:   File "/home/dgilbert/Cura-master/cura/CuraApplication.py", line 154, in __init__
    [MainThread] cura.CrashHandler.show [39]:     ContainerRegistry.getInstance().addResourceType(self.ResourceTypes.QualityInstanceContainer)
    [MainThread] cura.CrashHandler.show [39]: TypeError: addResourceType() missing 1 required positional argument: 'container_type'

     

    ideas?

    To me it looks like the Uranium checkout is more modern than your Cura checkout.

     

    You're getting an error because the Uranium function addResourceType() requires two arguments:

    def addResourceType(self, resource_type: int, container_type: str) -> None:

    In the current Cura front-end code, our call to this function is a little different from what you seem to have:

    ContainerRegistry.getInstance().addResourceType(self.ResourceTypes.QualityInstanceContainer, "quality")

    So maybe update the Cura repository? Though the Cura repository must be pretty old to not have that container_type parameter.

  • Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 20 replies
      • S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
        (Sorry, was out of office when this released)

        This update is for...
        All UltiMaker S series  
        New features
         
        Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
          • Like
        • 0 replies
    ×
    ×
    • Create New...