SciDAVis 1.26 has been released. This should be the latest version in teh 1.x series.
Search Criteria
Package Details: scidavis-qt5 2.9.2-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/scidavis-qt5.git (read-only, click to copy) |
---|---|
Package Base: | scidavis-qt5 |
Description: | Application for Scientific Data Analysis and Visualization, fork of QtiPlot. Qt5 port |
Upstream URL: | http://scidavis.sourceforge.net/ |
Licenses: | GPL |
Conflicts: | python-sip4, scidavis |
Submitter: | srtlg |
Maintainer: | srtlg |
Last Packager: | srtlg |
Votes: | 61 |
Popularity: | 0.000000 |
First Submitted: | 2019-07-05 12:50 (UTC) |
Last Updated: | 2023-05-26 10:38 (UTC) |
Dependencies (18)
- desktop-file-utils (desktop-file-utils-gitAUR)
- glu (glu-gitAUR)
- gsl (gsl-gitAUR)
- hicolor-icon-theme (hicolor-icon-theme-gitAUR)
- mesa (mesa-minimal-gitAUR, mesa-gitAUR, mesa-wsl2-gitAUR, amdonly-gaming-mesa-gitAUR, mesa-amd-bc250AUR, mesa-amber)
- muparser
- python (python37AUR, python311AUR, python310AUR)
- python-pyqt5 (python-pyqt5-sip4AUR, python-pyqt5-webkitAUR)
- python-pyqt5-sip
- python-scipy (python-scipy-gitAUR, python-scipy-mklAUR, python-scipy-mkl-tbbAUR, python-scipy-mkl-binAUR)
- qt5-svg (qt5-svg-gitAUR)
- shared-mime-info
- boost (boost-gitAUR) (make)
- cmake (cmake-gitAUR) (make)
- pyqt-builder (make)
- qt5-tools (make)
- qwt5-qt5AUR (make)
- sip (make)
Required by (0)
Sources (3)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 13 Next › Last »
Fellype commented on 2019-12-23 20:18 (UTC)
Fellype commented on 2019-09-06 18:24 (UTC)
Hi srtlg!
Have you tried to add python scripting support to this package, like in the qt4 version?
dacko commented on 2019-09-02 10:31 (UTC) (edited on 2019-09-02 10:33 (UTC) by dacko)
I managed to install the package using two steps:
1) Edit PKGBUILD:
- -qmake-qt4 CONFIG+="liborigin python" QMAKE_CXXFLAGS=-fpermissive
- +qmake-qt4 CONFIG+="liborigin python2" QMAKE_CXXFLAGS=-fpermissive
since otherwise ARCH uses python3 instead of python2, hence cannot find sip, leading ultimately missing files and errors like: 'src/PythonScripting.cpp:65:10: fatal error: sipAPIscidavis.h: No such file or directory'
2) Since /usr/lib*/libqwtplot3d-qt4.so was not present, I created a symlink to it:
sudo ln -s /usr/lib/libqwtplot3d.so /usr/lib/libqwtplot3d-qt4.so
arkoprovo1996 commented on 2019-08-08 16:28 (UTC)
This is the latest thing ... Why is it marked out-of-date?!
Fellype commented on 2019-04-12 12:33 (UTC) (edited on 2019-04-12 12:40 (UTC) by Fellype)
@a.kudelin
The 2.0.1 release doesn't differ significantly from 1.25, being aimed only for build tests on Windows. In the future, the 2.x series will support Qt5 and Python3 only. And yes, it is possible to build SciDAVis 1.25 using Qt5, but do not forget that this requires qwt5 and qwtplot3d built against Qt5 also:
a.kudelin commented on 2019-04-09 13:42 (UTC)
Please, update to 2.0.1 and switch to QT5.
caolite commented on 2019-02-21 00:23 (UTC) (edited on 2019-02-21 00:23 (UTC) by caolite)
it would appear the problem is caused by python-sip-pyqt4 and python2-sip-pyqt4 recently being updated to version 4.19.14. you can get them updated from https://www.riverbankcomputing.com/static/Downloads/sip/sip-4.19.14.tar.gz ; at least python2-sip-pyqt4 needs to be up-to-date, but possibly both
after this, however, you might run into the problem of make failing due to inability of converting nullptr type to int in a handful of .cpp files in the source
i managed to get around this by appending the following code after qmake command in PKGBUILD: find . -type f -name '*.cpp' -exec sed -i 's/{SIP_NULLPTR, SIP_NULLPTR, SIP_NULLPTR, SIP_NULLPTR}/{SIP_NULLPTR, SIP_NULLPTR, SIP_NULLPTR, 0}/g' {} \;
grisu48 commented on 2019-01-11 15:10 (UTC)
Currently the package doesn't build. It exits with
'src/PythonScripting.cpp:65:10: fatal error: sipAPIscidavis.h: No such file or directory'
This is perhaps related to a previous error about not being able to find libqwtplot3d-qt4.so, which is not provided anymore
ls: cannot access '/usr/lib*/libqwtplot3d-qt4.so': No such file or directory
Full output is at https://pastebin.com/qbh8Sw3y
Any ideas?
Fellype commented on 2018-12-04 11:22 (UTC)
To fix the build fail due to absence of -fpermissive flag you can apply the patch [1], provided by Miquel Garriga, to PKGBUILD. Basically, add: QMAKE_CXXFLAGS+=-fpermissive to the qmake-qt4 CONFIG+="liborigin python" command.
jaro3 commented on 2018-10-03 16:56 (UTC)
src/PythonScripting.cpp: In member function ‘QString PythonScripting::errorMsg()’: src/PythonScripting.cpp:179:61: error: invalid conversion from ‘const char’ to ‘char’ [-fpermissive] if (frame->f_code->co_name && (fname = PYSTRING_AsString(frame->f_code->co_name)) != '?') ^ make[1]: [Makefile:3681: ../tmp/libscidavis/PythonScripting.o] Error 1 make[1]: Waiting for unfinished jobs.... make[1]: Leaving directory '/usr/src/tmp/scidavis/src/scidavis-1.23/libscidavis' make: ** [Makefile:82: sub-libscidavis-make_default-ordered] Error 2 ==> ERROR: A failure occurred in build(). Aborting... ==> ERROR: Makepkg was unable to build scidavis.
Pinned Comments
srtlg commented on 2022-01-28 22:02 (UTC) (edited on 2023-05-26 10:37 (UTC) by srtlg)
This package does only build in a clean chroot via
Sorry for the inconvenience.