all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ekaitz Zarraga <ekaitz@elenq.tech>
To: Christophe Pisteur <christophe.pisteur@fsfe.org>
Cc: "help-guix@gnu.org" <help-guix@gnu.org>
Subject: Re: freecad 19.1 / flatpak
Date: Sun, 11 Apr 2021 16:45:05 +0000	[thread overview]
Message-ID: <Uo_cHVLNWlBb7v3AsJPIAEEdqnX94h7P9nChqlMhO9UGMUa9a2vvH-1fPL_01Eu6D2ZzN9nrKM8AaCWPenaCnre9f63nloqJqDIAnm4xzIo=@elenq.tech> (raw)
In-Reply-To: <ce3a14e339b64a2c7dbea435cf6847a477b50b7c.camel@fsfe.org>

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

Hi,

You can try with the file attached.

You just need to run the following, considering `freecad.scm` is the attached file, and that you are in the folder that contains the file.
```
guix build -f freecad.scm
```

Like half an hour later, you'll get an output similar to this:

```
$ guix build -f freecad.scm
>>TONS OF COMPILATION RELATED NONSENSE<<
/gnu/store/74c1nrijb1x29pj9f94265zaq8frqf4f-freecad-0.19.1
```

That's the folder where the result of the build is. You can run that freecad using the path you got like this:

```
$ /gnu/store/74c1nrijb1x29pj9f94265zaq8frqf4f-freecad-0.19.1/bin/FreeCAD
```

Tell me if it works and how does it look.
If it works fine I'll send a patch to Guix with this package and you'll soon have it in Guix. Also, if you need it now, you can use the file I gave you and install it from there with the same -f trick, or even create an environment for it, that way it will be easier to run.

For any question you have, just ask.

Good luck!
Ekaitz

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: freecad.scm --]
[-- Type: text/x-scheme; name=freecad.scm, Size: 5289 bytes --]

(define-module (freecad)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system qt)
  #:use-module (gnu packages)
  #:use-module (gnu packages engineering)
  #:use-module (gnu packages algebra)
  #:use-module (gnu packages boost)
  #:use-module (gnu packages fontutils)
  #:use-module (gnu packages gl)
  #:use-module (gnu packages xorg)
  #:use-module (gnu packages tbb)
  #:use-module (gnu packages image-processing)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages documentation)
  #:use-module (gnu packages graphviz)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages swig)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages graphics)
  #:use-module (gnu packages maths)
  #:use-module (gnu packages multiprecision)
  #:use-module (gnu packages mpi)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages version-control))


(define-public freecad
  (package
      (name "freecad")
      (version "0.19.1")
      (source
        (origin
          (method git-fetch)
          (uri (git-reference
                 (url "https://github.com/FreeCAD/FreeCAD")
                 (commit version)))
          (file-name (git-file-name name version))
          (sha256
            (base32
              "0c53q2iawy4yfp11czyc7lbr9ivp3r7v24x4c20myh11wyplffc0"))))
      (build-system qt-build-system)
      (native-inputs
       `(("doxygen" ,doxygen)
         ("graphviz" ,graphviz)
         ("qttools" ,qttools)
         ("pkg-config" ,pkg-config)
         ("python-pyside-2-tools" ,python-pyside-2-tools)
         ("swig" ,swig)))
      (inputs
       `(("boost" ,boost)
         ("coin3D" ,coin3D)
         ("eigen" ,eigen)
         ("freetype" ,freetype)
         ("glew" ,glew)
         ("hdf5" ,hdf5-1.10)
         ("libarea" ,libarea)
         ("libmedfile" ,libmedfile)
         ("libspnav" ,libspnav)
         ("libxi" ,libxi)
         ("libxmu" ,libxmu)
         ("openmpi" ,openmpi)
         ("opencascade-occt" ,opencascade-occt)
         ("python-matplotlib" ,python-matplotlib)
         ("python-pyside-2" ,python-pyside-2)
         ("python-shiboken-2" ,python-shiboken-2)
         ("python-pivy" ,python-pivy)
         ("python-wrapper" ,python-wrapper)
         ("python-gitpython" ,python-gitpython)
         ("python-pyyaml" ,python-pyyaml)
         ("qtbase" ,qtbase)
         ("qtsvg" ,qtsvg)
         ("qtx11extras" ,qtx11extras)
         ("qtxmlpatterns" ,qtxmlpatterns)
         ("qtwebkit" ,qtwebkit)
         ("tbb" ,tbb)
         ("vtk" ,vtk)
         ("xerces-c" ,xerces-c)
         ("zlib" ,zlib)))
      (arguments
       `(#:tests? #f
         #:configure-flags
         (list
          "-DBUILD_QT5=ON"
          (string-append "-DCMAKE_INSTALL_LIBDIR=" (assoc-ref %outputs "out") "/lib")
          (string-append "-DPYSIDE2UICBINARY="
                         (assoc-ref %build-inputs "python-pyside-2-tools")
                         "/bin/uic")
          (string-append "-DPYSIDE2RCCBINARY="
                         (assoc-ref %build-inputs "python-pyside-2-tools")
                         "/bin/rcc")
          "-DPYSIDE_LIBRARY=PySide2::pyside2"
          (string-append
           "-DPYSIDE_INCLUDE_DIR="
           (assoc-ref %build-inputs "python-pyside-2") "/include;"
           (assoc-ref %build-inputs "python-pyside-2") "/include/PySide2;"
           (assoc-ref %build-inputs "python-pyside-2") "/include/PySide2/QtCore;"
           (assoc-ref %build-inputs "python-pyside-2") "/include/PySide2/QtWidgets;"
           (assoc-ref %build-inputs "python-pyside-2") "/include/PySide2/QtGui;")
          "-DSHIBOKEN_LIBRARY=Shiboken2::libshiboken"
          (string-append "-DSHIBOKEN_INCLUDE_DIR="
                         (assoc-ref %build-inputs "python-shiboken-2")
                         "/include/shiboken2"))
         #:phases
         (modify-phases %standard-phases
           (add-before 'configure 'restore-pythonpath
             (lambda _
               (substitute* "src/Main/MainGui.cpp"
                 (("_?putenv\\(\"PYTHONPATH=\"\\);") ""))
               #t))
           (add-after 'install 'wrap-pythonpath
             (lambda* (#:key outputs #:allow-other-keys)
               (let ((out (assoc-ref outputs "out")))
                 (wrap-program (string-append out "/bin/FreeCAD")
                   (list "PYTHONPATH"
                         'prefix (list (getenv "PYTHONPATH")))))
               #t)))))
      (home-page "https://www.freecadweb.org/")
      (synopsis "Your Own 3D Parametric Modeler")
      (description
       "FreeCAD is a general purpose feature-based, parametric 3D modeler for
CAD, MCAD, CAx, CAE and PLM, aimed directly at mechanical engineering and
product design but also fits a wider range of uses in engineering, such as
architecture or other engineering specialties.  It is 100% Open Source (LGPL2+
license) and extremely modular, allowing for very advanced extension and
customization.")
      (license
       (list
        license:lgpl2.1+
        license:lgpl2.0+
        license:gpl3+
        license:bsd-3))))

freecad

  reply	other threads:[~2021-04-11 16:46 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-31  9:15 freecad 19.1 / flatpak Christophe Pisteur
2021-03-31  9:46 ` Ekaitz Zarraga
2021-03-31 12:56   ` Christophe Pisteur
2021-03-31 14:29     ` Gary Johnson
2021-03-31 18:38       ` Christophe Pisteur
2021-04-02 14:43         ` Gary Johnson
2021-04-03 19:10           ` Christophe Pisteur
2021-04-03 19:21             ` Ekaitz Zarraga
2021-04-03 19:59               ` Christophe Pisteur
2021-04-03 20:26                 ` Ekaitz Zarraga
2021-04-08 13:05                   ` Ekaitz Zarraga
2021-04-11 13:30                     ` Christophe Pisteur
2021-04-11 16:45                       ` Ekaitz Zarraga [this message]
2021-04-11 19:02                         ` Christophe Pisteur
     [not found]                           ` <0bK6s9aqPT66hiBxFF21Y8VTjlN3l4=5FcHxOT5UU8Ul4vRfRFZSKXDgoz5iqi4wMPzySTfxvoQhsEyDLLQPSPqmvOTWRgUMI1uE9Zt9tqemU=3D@elenq.tech>
     [not found]                             ` <Z6I2By8DRvfgcrC3sRhhRSY5ELj5FN7r12uByZhLGXKT0fgTNjARH5ug8DuUwknGmCmomgT466hZBhtmw5lN5fv8TKgFXogdLiTqLzjS4Tg=3D@protonmail.com>
     [not found]                               ` <PkhtPGqLIEla9M1ZKtJMfMWg7736yI3-2SlbZfmjg9NFniUxEYqAyZ38=5FDsA-uIbWYF9O-bPOtpaUpredyXbPYGKhZi3UzqGadOL6yloeXc=3D@elenq.tech>
     [not found]                                 ` <hj4mUFgYr-908J1TWCQUwu43jf-qUOsrXfg8UeE=5FItCV0PokJ2j9=5F7BCB3q7nbgg2c-4S-ag-hzVW9h89MA=5FwvM8xaKCL9Eob5SPes1AGh4=3D@elenq.tech>
2021-04-11 19:30                           ` Ekaitz Zarraga
2021-04-11 20:52                             ` Luis Felipe
2021-04-11 20:59                               ` Ekaitz Zarraga
2021-04-11 21:25                                 ` Ekaitz Zarraga
2021-04-11 22:19                                   ` Ekaitz Zarraga
2021-04-12  2:03                                     ` Luis Felipe
2021-04-11 22:17                                 ` Christophe Pisteur
2021-04-11 22:27                                   ` Ekaitz Zarraga
2021-04-13  7:58                                     ` Christophe Pisteur
2021-04-13  8:48                                       ` Ekaitz Zarraga
2021-04-17 16:16                                         ` Ekaitz Zarraga
2021-04-17 19:22                                           ` Christophe Pisteur
2021-04-17 21:02                                           ` Jérémy Korwin-Zmijowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='Uo_cHVLNWlBb7v3AsJPIAEEdqnX94h7P9nChqlMhO9UGMUa9a2vvH-1fPL_01Eu6D2ZzN9nrKM8AaCWPenaCnre9f63nloqJqDIAnm4xzIo=@elenq.tech' \
    --to=ekaitz@elenq.tech \
    --cc=christophe.pisteur@fsfe.org \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.