Archived
1
0
Fork 0

gnu: libreoffice: Update to 5.3.1.2.

* gnu/packages/libreoffice.scm (libreoffice): Update to 5.3.1.2.
[inputs]: Add libstaroffice and libzmf.
[arguments]: Remove reference to removed patch; unpack xmlsec 1.2.23 tarball.
(xmlsec-src-libreoffice): Update to version 1.2.23 tarball.
This commit is contained in:
Thomas Danckaert 2017-03-27 20:17:02 +02:00
parent 90ac806d3a
commit b1a8fd2d2c
No known key found for this signature in database
GPG key ID: 98B2157591E12B08

View file

@ -770,14 +770,14 @@ and to return information on pronunciations, meanings and synonyms.")
(uri (uri
(string-append (string-append
"http://dev-www.libreoffice.org/src/" "http://dev-www.libreoffice.org/src/"
"1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz")) "86b1daaa438f5a7bea9a52d7b9799ac0-xmlsec1-1.2.23.tar.gz"))
(sha256 (base32 (sha256 (base32
"0jnxxygg6z5zi6za94dvxmg1bfar1wh8p5xa2bzbha0qcn2m02ir")))) "17qfw5crkqn4v6xbkjxrjvcccfc00dy053892wrwv54qdk8n7m21"))))
(define-public libreoffice (define-public libreoffice
(package (package
(name "libreoffice") (name "libreoffice")
(version "5.1.6.2") (version "5.3.1.2")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
@ -786,7 +786,7 @@ and to return information on pronunciations, meanings and synonyms.")
"http://download.documentfoundation.org/libreoffice/src/" "http://download.documentfoundation.org/libreoffice/src/"
(version-prefix version 3) "/libreoffice-" version ".tar.xz")) (version-prefix version 3) "/libreoffice-" version ".tar.xz"))
(sha256 (base32 (sha256 (base32
"150xb76pc3889gfy4jrnq8sidymm1aihkm5pzy8b1fdy51zip804")))) "1zsl0z0i8pw532x2lmwd64ms6igibkkjhwf01zmm2kpnr9ycsijp"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(;; autoreconf is run by the LibreOffice build system, since after `(;; autoreconf is run by the LibreOffice build system, since after
@ -829,6 +829,7 @@ and to return information on pronunciations, meanings and synonyms.")
("libmwaw" ,libmwaw) ("libmwaw" ,libmwaw)
("libodfgen" ,libodfgen) ("libodfgen" ,libodfgen)
("libpagemaker" ,libpagemaker) ("libpagemaker" ,libpagemaker)
("libstaroffice" ,libstaroffice)
("libvisio" ,libvisio) ("libvisio" ,libvisio)
("libwpg" ,libwpg) ("libwpg" ,libwpg)
("libwps" ,libwps) ("libwps" ,libwps)
@ -836,6 +837,7 @@ and to return information on pronunciations, meanings and synonyms.")
("libxrender" ,libxrender) ("libxrender" ,libxrender)
("libxslt" ,libxslt) ("libxslt" ,libxslt)
("libxt" ,libxt) ("libxt" ,libxt)
("libzmf" ,libzmf)
("lpsolve" ,lpsolve) ("lpsolve" ,lpsolve)
("mdds" ,mdds) ("mdds" ,mdds)
("mythes" ,mythes) ("mythes" ,mythes)
@ -868,15 +870,14 @@ and to return information on pronunciations, meanings and synonyms.")
(substitute* (substitute*
(list "sysui/CustomTarget_share.mk" (list "sysui/CustomTarget_share.mk"
"solenv/gbuild/gbuild.mk" "solenv/gbuild/gbuild.mk"
"solenv/gbuild/platform/unxgcc.mk" "solenv/gbuild/platform/unxgcc.mk")
"external/libxmlsec/xmlsec1-oldlibtool.patch")
(("/bin/sh") (which "bash"))) (("/bin/sh") (which "bash")))
(mkdir "external/tarballs") (mkdir "external/tarballs")
(symlink (symlink
xmlsec xmlsec
(string-append "external/tarballs/" (string-append "external/tarballs/"
"1f24ab1d39f4a51faf22244c94a6203f-" "86b1daaa438f5a7bea9a52d7b9799ac0-"
"xmlsec1-1.2.14.tar.gz")) "xmlsec1-1.2.23.tar.gz"))
;; The following is required for building xmlsec from the ;; The following is required for building xmlsec from the
;; unpatched external tarball; since "configure" starts with ;; unpatched external tarball; since "configure" starts with
;; "/bin/sh", it needs to be executed by a command invoking ;; "/bin/sh", it needs to be executed by a command invoking