* Fixing LibreOffice on ‘core-updates’
@ 2018-11-18 22:23 Ludovic Courtès
2018-11-23 21:16 ` Marius Bakke
0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2018-11-18 22:23 UTC (permalink / raw)
To: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1081 bytes --]
Hello Guix,
As briefly discussed with Marius on IRC, we both tried to fix
LibreOffice on ‘core-updates’. The initial problem is that some of the
libraries it depends on fail to build with the new Boost.
I started upgrading the whole shebang but eventually got stuck with
LibreOffice itself, which fails to build like this:
--8<---------------cut here---------------start------------->8---
[build PAG] writer
[build MOD] embedserv
[build CUS] extras/glade
[build XSL] Classy_Red/styles.xml
make[1]: *** No rule to make target '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf', needed by '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/workdir/CustomTarget/extras/fonts/opens___.ttf'. Stop.
make[1]: *** Waiting for unfinished jobs....
make: *** [Makefile:286: build] Error 2
--8<---------------cut here---------------end--------------->8---
Below is what I have so far. Help welcome!
Ludo’.
[-- Attachment #2: Type: text/x-patch, Size: 8031 bytes --]
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index 897987f71c..de3fcd13ef 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -3,7 +3,7 @@
;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
-;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2015, 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
@@ -36,6 +36,7 @@
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module (gnu packages)
+ #:use-module (gnu packages autotools)
#:use-module (gnu packages compression)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages perl)
@@ -182,18 +183,34 @@ Boost.Thread.")
(define-public mdds
(package
(name "mdds")
- (version "1.3.1")
+ (version "1.4.3")
+ (home-page "https://gitlab.com/mdds/mdds")
(source (origin
- (method url-fetch)
- (uri (string-append
- "http://kohei.us/files/mdds/src/mdds-" version ".tar.bz2"))
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit version)))
(sha256
(base32
- "18g511z1lgfxrga2ld9yr95phmyfbd3ymbv4q5g5lyjn4ljcvf6w"))))
+ "173m3x9g7bf6s86xpjcm7lpqb5231qchlk4smz7nfj9hrlzfzv7w"))
+ (file-name (git-file-name name version))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ (use-modules (guix build utils))
+ ;; Simply use 'autoreconf'.
+ (delete-file "autogen.sh")
+
+ ;; Install the .pc file to lib/pkgconfig, not
+ ;; share/pkgconfig.
+ (substitute* "Makefile.am"
+ (("^pkgconfdir =.*")
+ "pkgconfdir = $(libdir)/pkgconfig\n"))
+ #t))))
(build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)))
(propagated-inputs
`(("boost" ,boost))) ; inclusion of header files
- (home-page "https://gitlab.com/mdds/mdds")
(synopsis "Multi-dimensional C++ data structures and indexing algorithms")
(description "Mdds (multi-dimensional data structure) provides a
collection of multi-dimensional data structures and indexing algorithms
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index 2e05820f72..2ae09481d7 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -32,6 +32,7 @@
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module (guix download)
+ #:use-module (guix git-download)
#:use-module ((guix licenses)
#:select (gpl2+ lgpl2.1+ lgpl3+ mpl1.1 mpl2.0
non-copyleft x11-style bsd-3))
@@ -81,22 +82,27 @@
(define-public ixion
(package
(name "ixion")
- (version "0.13.0")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "http://kohei.us/files/ixion/src/libixion-"
- version ".tar.xz"))
- (sha256
- (base32
- "1rf76drzg593jzswwnh8kr2jangp8ylizqjspx57rld25g2n1qss"))))
+ (version "0.14.1")
+ (home-page "https://gitlab.com/ixion/ixion")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit version)))
+ (sha256
+ (base32
+ "1kzdbcyda7p3np0ar073p7kcwdkvj7zh1hb1q939sq5gxd2cnmj4"))
+ (file-name (git-file-name name version))
+
+ ;; Use 'autoreconf'.
+ (snippet '(begin (delete-file "autogen.sh") #t))))
(build-system gnu-build-system)
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)))
(inputs
`(("mdds" ,mdds)
("python" ,python)))
- (home-page "https://gitlab.com/ixion/ixion")
(synopsis "General purpose formula parser and interpreter")
(description "Ixion is a library for calculating the results of formula
expressions stored in multiple named targets, or \"cells\". The cells can
@@ -107,24 +113,27 @@ their dependencies automatically upon calculation.")
(define-public orcus
(package
(name "orcus")
- (version "0.13.4")
- (source
- (origin
- (method url-fetch)
- (uri (string-append "http://kohei.us/files/" name "/src/lib"
- name "-" version ".tar.xz"))
- (sha256
- (base32
- "1r42waglxwmvvwl20fy49vzgfp1sis4j703f81iswzdyzqalq75p"))))
- (build-system gnu-build-system)
- (native-inputs
- `(("pkg-config" ,pkg-config)))
- (inputs
- `(("ixion" ,ixion)
- ("mdds" ,mdds)
- ("python" ,python)
- ("zlib" ,zlib)))
+ (version "0.14.1")
(home-page "https://gitlab.com/orcus/orcus")
+ (source
+ (origin (method git-fetch)
+ (uri (git-reference (url home-page) (commit version)))
+ (sha256
+ (base32
+ "0zk7ydp7b2xl9vfiyhrdzq3g86vrb706vjwa59qmin7xb1xgq9cm"))
+ (file-name (git-file-name name version))
+ (snippet '(begin (delete-file "autogen.sh") #t))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)))
+ (inputs
+ `(("ixion" ,ixion)
+ ("mdds" ,mdds)
+ ("python" ,python)
+ ("zlib" ,zlib)))
(synopsis "File import filter library for spreadsheet documents")
(description "Orcus is a library that provides a collection of standalone
file processing filters. It is currently focused on providing filters for
@@ -411,7 +420,7 @@ CorelDRAW documents of all versions.")
"0bfq9rwm040xhh7b3v0gsdavwvnrz4hkwnhpggarxk70mr3j7jcx"))))
(build-system gnu-build-system)
(arguments
- `(#:configure-flags '("--with-mdds=1.2")))
+ `(#:configure-flags '("--with-mdds=1.4")))
(native-inputs
`(("cppunit" ,cppunit)
("doxygen" ,doxygen)
@@ -939,7 +948,7 @@ converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
(define-public libreoffice
(package
(name "libreoffice")
- (version "6.1.3.2")
+ (version "6.2.0.0.alpha1")
(source
(origin
(method url-fetch)
@@ -949,7 +958,15 @@ converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
(version-prefix version 3) "/libreoffice-" version ".tar.xz"))
(sha256
(base32
- "0i4gf3qi16fg7dxq2l4vhkwh4f5lx7xd1ilpzcw26vccqkv3hvyl"))
+ "0hxfni3hq2lig5s283053sqv317w7j9djp3mgjman86nxk2h227s"))
+ ;; (modules '((guix build utils)))
+ ;; (snippet
+ ;; '(begin
+ ;; (use-modules (guix build utils))
+ ;; (substitute* "configure"
+ ;; (("mdds-1\\.2") "mdds-1.4")
+ ;; (("liborcus-0\\.13") "liborcus-0.14"))
+ ;; #t))
(patches (search-patches "libreoffice-icu.patch"
"libreoffice-glm.patch"))))
(build-system glib-or-gtk-build-system)
@@ -1006,6 +1023,7 @@ converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
("libxt" ,libxt)
("libzmf" ,libzmf)
("lpsolve" ,lpsolve)
+ ("mariadb" ,mariadb)
("mdds" ,mdds)
("mythes" ,mythes)
("neon" ,neon)
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: Fixing LibreOffice on ‘core-updates’
2018-11-18 22:23 Fixing LibreOffice on ‘core-updates’ Ludovic Courtès
@ 2018-11-23 21:16 ` Marius Bakke
2018-11-25 14:26 ` Ludovic Courtès
0 siblings, 1 reply; 5+ messages in thread
From: Marius Bakke @ 2018-11-23 21:16 UTC (permalink / raw)
To: Ludovic Courtès, guix-devel
[-- Attachment #1.1: Type: text/plain, Size: 1252 bytes --]
ludo@gnu.org (Ludovic Courtès) writes:
> Hello Guix,
>
> As briefly discussed with Marius on IRC, we both tried to fix
> LibreOffice on ‘core-updates’. The initial problem is that some of the
> libraries it depends on fail to build with the new Boost.
>
> I started upgrading the whole shebang but eventually got stuck with
> LibreOffice itself, which fails to build like this:
>
> --8<---------------cut here---------------start------------->8---
> [build PAG] writer
> [build MOD] embedserv
> [build CUS] extras/glade
> [build XSL] Classy_Red/styles.xml
> make[1]: *** No rule to make target '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf', needed by '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/workdir/CustomTarget/extras/fonts/opens___.ttf'. Stop.
> make[1]: *** Waiting for unfinished jobs....
> make: *** [Makefile:286: build] Error 2
> --8<---------------cut here---------------end--------------->8---
>
> Below is what I have so far. Help welcome!
I am currently building libreoffice with this patch (along with the
package updates you mentioned):
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-libreoffice-Fix-build-with-MDDS-1.4-and-Orcus-0..patch --]
[-- Type: text/x-patch, Size: 3735 bytes --]
From a89c47bf5ea6850d15735d262a2497f7df20896e Mon Sep 17 00:00:00 2001
From: Marius Bakke <mbakke@fastmail.com>
Date: Fri, 23 Nov 2018 22:00:42 +0100
Subject: [PATCH] gnu: libreoffice: Fix build with MDDS 1.4 and Orcus 0.14.
* gnu/packages/libreoffice.scm (libreoffice)[source](patches): Add two patches
from Arch Linux.
[arguments]: Add substitutions so the libraries are found.
---
gnu/packages/libreoffice.scm | 37 ++++++++++++++++++++++++++++++++++--
1 file changed, 35 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/libreoffice.scm b/gnu/packages/libreoffice.scm
index cf2e0b0e0..1968f57a7 100644
--- a/gnu/packages/libreoffice.scm
+++ b/gnu/packages/libreoffice.scm
@@ -959,8 +959,34 @@ converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
(sha256
(base32
"0i4gf3qi16fg7dxq2l4vhkwh4f5lx7xd1ilpzcw26vccqkv3hvyl"))
- (patches (search-patches "libreoffice-icu.patch"
- "libreoffice-glm.patch"))))
+ (patches
+ (append (list (origin
+ ;; Support newer versions of Orcus and MDDS. These patches
+ ;; are taken from upstream, but we use the patches from Arch
+ ;; because they are adapted for the release tarball.
+ ;; Note: remove the related substitutions below when these
+ ;; are no longer needed.
+ (method url-fetch)
+ (uri (string-append "https://git.archlinux.org/svntogit"
+ "/packages.git/plain/trunk/"
+ "0001-Update-orcus-to-0.14.0.patch?&id="
+ "4002fa927f2a143bd2ec008a0c400b2ce9f2c8a7"))
+ (file-name "libreoffice-orcus.patch")
+ (sha256
+ (base32
+ "0v1knblrmfzkb4g9pm5mdnrmjib59bznvca1ygbwlap2ln1h4mk0")))
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://git.archlinux.org/svntogit"
+ "/packages.git/plain/trunk/"
+ "0001-Update-mdds-to-1.4.1.patch?&id="
+ "4002fa927f2a143bd2ec008a0c400b2ce9f2c8a7"))
+ (file-name "libreoffice-mdds.patch")
+ (sha256
+ (base32
+ "0apbmammmp4pk473xiv5vk50r4c5gjvqzf9jkficksvz58q6114f"))))
+ (search-patches "libreoffice-icu.patch"
+ "libreoffice-glm.patch")))))
(build-system glib-or-gtk-build-system)
(native-inputs
`(("bison" ,bison)
@@ -1049,6 +1075,13 @@ converting QuarkXPress file format. It supports versions 3.1 to 4.1.")
"solenv/gbuild/platform/unxgcc.mk")
(("/bin/sh") (which "sh")))
+ ;; XXX: Adjust the checks for MDDS and liborcus to avoid having
+ ;; to re-bootstrap the whole thing. Remove this with the related
+ ;; patches above.
+ (substitute* "configure"
+ (("mdds-1.2 >= 1.2.3") "mdds-1.4 >= 1.4.1")
+ (("liborcus-0.13 >= 0.13.3") "liborcus-0.14 >= 0.14.0"))
+
;; GPGME++ headers are installed in a gpgme++ subdirectory, but
;; files in "xmlsecurity/source/gpg/" and elsewhere expect to
;; find them on the include path without a prefix.
--
2.19.2
[-- Attachment #1.3: Type: text/plain, Size: 24 bytes --]
So far so good. WDYT?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: Fixing LibreOffice on ‘core-updates’
2018-11-23 21:16 ` Marius Bakke
@ 2018-11-25 14:26 ` Ludovic Courtès
2018-11-25 16:11 ` Julien Lepiller
2018-11-25 16:31 ` Marius Bakke
0 siblings, 2 replies; 5+ messages in thread
From: Ludovic Courtès @ 2018-11-25 14:26 UTC (permalink / raw)
To: Marius Bakke; +Cc: guix-devel
Heya,
Marius Bakke <mbakke@fastmail.com> skribis:
> ludo@gnu.org (Ludovic Courtès) writes:
>
>> Hello Guix,
>>
>> As briefly discussed with Marius on IRC, we both tried to fix
>> LibreOffice on ‘core-updates’. The initial problem is that some of the
>> libraries it depends on fail to build with the new Boost.
>>
>> I started upgrading the whole shebang but eventually got stuck with
>> LibreOffice itself, which fails to build like this:
>>
>> --8<---------------cut here---------------start------------->8---
>> [build PAG] writer
>> [build MOD] embedserv
>> [build CUS] extras/glade
>> [build XSL] Classy_Red/styles.xml
>> make[1]: *** No rule to make target '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf', needed by '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/workdir/CustomTarget/extras/fonts/opens___.ttf'. Stop.
>> make[1]: *** Waiting for unfinished jobs....
>> make: *** [Makefile:286: build] Error 2
>> --8<---------------cut here---------------end--------------->8---
>>
>> Below is what I have so far. Help welcome!
>
> I am currently building libreoffice with this patch (along with the
> package updates you mentioned):
>
> From a89c47bf5ea6850d15735d262a2497f7df20896e Mon Sep 17 00:00:00 2001
> From: Marius Bakke <mbakke@fastmail.com>
> Date: Fri, 23 Nov 2018 22:00:42 +0100
> Subject: [PATCH] gnu: libreoffice: Fix build with MDDS 1.4 and Orcus 0.14.
>
> * gnu/packages/libreoffice.scm (libreoffice)[source](patches): Add two patches
> from Arch Linux.
> [arguments]: Add substitutions so the libraries are found.
Looks promising. :-) Did it eventually work?
Thanks!
Ludo’.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Fixing LibreOffice on ‘core-updates’
2018-11-25 14:26 ` Ludovic Courtès
@ 2018-11-25 16:11 ` Julien Lepiller
2018-11-25 16:31 ` Marius Bakke
1 sibling, 0 replies; 5+ messages in thread
From: Julien Lepiller @ 2018-11-25 16:11 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guix-devel
Le Sun, 25 Nov 2018 15:26:37 +0100,
ludo@gnu.org (Ludovic Courtès) a écrit :
> Heya,
>
> Marius Bakke <mbakke@fastmail.com> skribis:
>
> > ludo@gnu.org (Ludovic Courtès) writes:
> >
> >> Hello Guix,
> >>
> >> As briefly discussed with Marius on IRC, we both tried to fix
> >> LibreOffice on ‘core-updates’. The initial problem is that some
> >> of the libraries it depends on fail to build with the new Boost.
> >>
> >> I started upgrading the whole shebang but eventually got stuck with
> >> LibreOffice itself, which fails to build like this:
> >>
> >> --8<---------------cut here---------------start------------->8---
> >> [build PAG] writer
> >> [build MOD] embedserv
> >> [build CUS] extras/glade
> >> [build XSL] Classy_Red/styles.xml
> >> make[1]: *** No rule to make target
> >> '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf',
> >> needed by
> >> '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/workdir/CustomTarget/extras/fonts/opens___.ttf'.
> >> Stop. make[1]: *** Waiting for unfinished jobs.... make: ***
> >> [Makefile:286: build] Error 2 --8<---------------cut
> >> here---------------end--------------->8---
> >>
> >> Below is what I have so far. Help welcome!
> >
> > I am currently building libreoffice with this patch (along with the
> > package updates you mentioned):
> >
> > From a89c47bf5ea6850d15735d262a2497f7df20896e Mon Sep 17 00:00:00
> > 2001 From: Marius Bakke <mbakke@fastmail.com>
> > Date: Fri, 23 Nov 2018 22:00:42 +0100
> > Subject: [PATCH] gnu: libreoffice: Fix build with MDDS 1.4 and
> > Orcus 0.14.
> >
> > * gnu/packages/libreoffice.scm (libreoffice)[source](patches): Add
> > two patches from Arch Linux.
> > [arguments]: Add substitutions so the libraries are found.
>
> Looks promising. :-) Did it eventually work?
>
> Thanks!
>
> Ludo’.
libreoffice 6.2.0.alpha1 is not available anymore at
https://download.documentfoundation.org/libreoffice/src/6.2.0/
The patches do not apply directly on the beta1, but I haven't
investigated more than that.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Fixing LibreOffice on ‘core-updates’
2018-11-25 14:26 ` Ludovic Courtès
2018-11-25 16:11 ` Julien Lepiller
@ 2018-11-25 16:31 ` Marius Bakke
1 sibling, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2018-11-25 16:31 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1914 bytes --]
ludo@gnu.org (Ludovic Courtès) writes:
> Heya,
>
> Marius Bakke <mbakke@fastmail.com> skribis:
>
>> ludo@gnu.org (Ludovic Courtès) writes:
>>
>>> Hello Guix,
>>>
>>> As briefly discussed with Marius on IRC, we both tried to fix
>>> LibreOffice on ‘core-updates’. The initial problem is that some of the
>>> libraries it depends on fail to build with the new Boost.
>>>
>>> I started upgrading the whole shebang but eventually got stuck with
>>> LibreOffice itself, which fails to build like this:
>>>
>>> --8<---------------cut here---------------start------------->8---
>>> [build PAG] writer
>>> [build MOD] embedserv
>>> [build CUS] extras/glade
>>> [build XSL] Classy_Red/styles.xml
>>> make[1]: *** No rule to make target '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/external/tarballs/49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf', needed by '/tmp/guix-build-libreoffice-6.2.0.0.alpha1.drv-0/libreoffice-6.2.0.0.alpha1/workdir/CustomTarget/extras/fonts/opens___.ttf'. Stop.
>>> make[1]: *** Waiting for unfinished jobs....
>>> make: *** [Makefile:286: build] Error 2
>>> --8<---------------cut here---------------end--------------->8---
>>>
>>> Below is what I have so far. Help welcome!
>>
>> I am currently building libreoffice with this patch (along with the
>> package updates you mentioned):
>>
>> From a89c47bf5ea6850d15735d262a2497f7df20896e Mon Sep 17 00:00:00 2001
>> From: Marius Bakke <mbakke@fastmail.com>
>> Date: Fri, 23 Nov 2018 22:00:42 +0100
>> Subject: [PATCH] gnu: libreoffice: Fix build with MDDS 1.4 and Orcus 0.14.
>>
>> * gnu/packages/libreoffice.scm (libreoffice)[source](patches): Add two patches
>> from Arch Linux.
>> [arguments]: Add substitutions so the libraries are found.
>
> Looks promising. :-) Did it eventually work?
It did! I've pushed the patches.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-11-25 16:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-18 22:23 Fixing LibreOffice on ‘core-updates’ Ludovic Courtès
2018-11-23 21:16 ` Marius Bakke
2018-11-25 14:26 ` Ludovic Courtès
2018-11-25 16:11 ` Julien Lepiller
2018-11-25 16:31 ` Marius Bakke
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.