gnu: openmolar-1: Update to release 1.1.6-g81838c8 and partial runtime fix.
Fixes <https://issues.guix.gnu.org/29365>. WebKit was removed from Qt5 in favor of WebEngine; upstream addressed this in their last stable release, in 2018. The package still fails at runtime: this commit lays the ground for further fixes. * gnu/packages/medical.scm (openmolar-1): Update to release 1.1.6-g81838c8. [arguments]: Extend 'patch-/usr phase to source file localsettings.py. [inputs]: Add python-pyqtwebengine. [propagated-inputs]: Add qtwebengine-5. Change-Id: Ia4e4c052397201c26834dec2358ca5c20beb581d Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
9474e64b09
commit
11d5b505e5
|
@ -83,32 +83,34 @@ Health Federation.")
|
||||||
|
|
||||||
(define-public openmolar-1
|
(define-public openmolar-1
|
||||||
(package
|
(package
|
||||||
(name "openmolar")
|
(name "openmolar")
|
||||||
(version "1.0.15-gd81f9e5")
|
(version "1.1.6-g81838c85")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method url-fetch)
|
||||||
"https://static.openmolar.com/om1/releases/openmolar-"
|
(uri (string-append
|
||||||
version ".tar.gz"))
|
"https://static.openmolar.com/om1/releases/openmolar-" version
|
||||||
(sha256
|
".tar.gz"))
|
||||||
(base32
|
(sha256
|
||||||
"1cfdzfbi6wslw7k0dc6ad6xrgs75iwsl91cg73w4myswaqqkfk3z"))))
|
(base32 "09vrfqn511vswnj2q9m7srlwdgz066qvqpmja6sg1yl1ibh3cbpr"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:use-setuptools? #f
|
`(#:use-setuptools? #f
|
||||||
#:phases
|
#:phases (modify-phases %standard-phases
|
||||||
(modify-phases %standard-phases
|
(add-after 'unpack 'patch-/usr
|
||||||
(add-after 'unpack 'patch-/usr
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(substitute* '("setup.py"
|
||||||
(substitute* "setup.py"
|
"src/openmolar/settings/localsettings.py")
|
||||||
(("/usr") (assoc-ref outputs "out")))
|
(("/usr")
|
||||||
#t)))))
|
(assoc-ref outputs "out"))) #t)))))
|
||||||
(inputs
|
(inputs (list python-pyqtwebengine python-pyqt+qscintilla
|
||||||
(list python-pyqt+qscintilla python-mysqlclient qscintilla))
|
python-mysqlclient qscintilla))
|
||||||
(home-page "https://openmolar.com/om1")
|
(propagated-inputs (list qtwebengine-5))
|
||||||
(synopsis "Dental practice management software")
|
(home-page "https://openmolar.com/om1")
|
||||||
(description "Openmolar is a dental practice management suite. Its
|
(synopsis "Dental practice management software")
|
||||||
|
(description
|
||||||
|
"Openmolar is a dental practice management suite. Its
|
||||||
functionality includes appointments, patient records, treatment planning,
|
functionality includes appointments, patient records, treatment planning,
|
||||||
billing etc. It is a full featured, reliable and thoroughly tested
|
billing etc. It is a full featured, reliable and thoroughly tested
|
||||||
application and has been translated into many languages.")
|
application and has been translated into many languages.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
Reference in New Issue