Re: Install LuCI for snapshots builds

2024-05-08 Thread Thibaut
Hi, > Le 8 mai 2024 à 09:30, Jo-Philipp Wich a écrit : > > Hi, > >> [...] >> Let me explain why: >> Currently the snapshot builders are only building **target-specific** >> packages as well as packages included in the image by default. (We call >> that "phase1"). That means that a single build

[Bug 2061322] [NEW] package nvidia-driver-535-server 535.161.07-0ubuntu0.22.04.1 failed to install/upgrade: problèmes de dépendances - laissé non configuré

2024-04-14 Thread Thibaut Spanier
Public bug reported: i don't know ProblemType: Package DistroRelease: Ubuntu 22.04 Package: nvidia-driver-535-server 535.161.07-0ubuntu0.22.04.1 ProcVersionSignature: Ubuntu 6.5.0-27.28~22.04.1-generic 6.5.13 Uname: Linux 6.5.0-27-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia

[Kernel-packages] [Bug 2061322] [NEW] package nvidia-driver-535-server 535.161.07-0ubuntu0.22.04.1 failed to install/upgrade: problèmes de dépendances - laissé non configuré

2024-04-14 Thread Thibaut Spanier
Public bug reported: i don't know ProblemType: Package DistroRelease: Ubuntu 22.04 Package: nvidia-driver-535-server 535.161.07-0ubuntu0.22.04.1 ProcVersionSignature: Ubuntu 6.5.0-27.28~22.04.1-generic 6.5.13 Uname: Linux 6.5.0-27-generic x86_64 NonfreeKernelModules: nvidia_modeset nvidia

[LyX features/biginset] Amend 16660d12.

2024-04-05 Thread Thibaut Cuvelier
commit fd378450755b698cc3ddb1a8d14e8b78d19c57a2 Author: Thibaut Cuvelier Date: Thu Mar 21 21:32:45 2024 +0100 Amend 16660d12. The previous commit introduced wrong behaviours for <>. The new code carefully escapes what needs to be escaped from LaTeX, using the now-standar

[LyX features/biginset] MathML in HTML: don't escape <> for a raw LaTeX output.

2024-04-05 Thread Thibaut Cuvelier
commit 16660d12b4333f6486259048dec2b0a2e48a64d9 Author: Thibaut Cuvelier Date: Thu Mar 21 00:29:23 2024 +0100 MathML in HTML: don't escape <> for a raw LaTeX output. In some cases (I only found numbered equations), the LaTeX output still has a bit of HTML. For numbered equ

[LyX features/biginset] MathML: stop stretching all delimiters.

2024-04-05 Thread Thibaut Cuvelier
commit 8f820d7ccb0cb6129c8e3c1d495905d61db97355 Author: Thibaut Cuvelier Date: Mon Mar 11 01:40:16 2024 +0100 MathML: stop stretching all delimiters. No form? Reference: https://w3c.github.io/mathml-core/#dfn-form. The MathML processor is smart enough to determine whether

[LyX features/biginset] MathML: don't let the processor stretch operators when they are single characters for LyX.

2024-04-05 Thread Thibaut Cuvelier
commit 7e6597a5b47c22ed22966a75c149264dacd6e289 Author: Thibaut Cuvelier Date: Mon Mar 11 02:00:47 2024 +0100 MathML: don't let the processor stretch operators when they are single characters for LyX. The main goal is to match TeX' behaviour. If you want stretchy operators, use

[LyX features/biginset] MathML: don't output delimiters in InsetMathBinom and InsetMathDelim if the delimiter is a space.

2024-04-05 Thread Thibaut Cuvelier
commit be03d699463fba896f90e3046b0814d527368771 Author: Thibaut Cuvelier Date: Mon Mar 11 01:30:48 2024 +0100 MathML: don't output delimiters in InsetMathBinom and InsetMathDelim if the delimiter is a space. --- src/mathed/InsetMathDelim.cpp | 23 ++- src/mathed

[LyX features/biginset] Extract vert, langle, rangle in MathExtern like parentheses and brackets.

2024-04-05 Thread Thibaut Cuvelier
commit 9e6b810b37f28499a5573468ae61d68be0bb2e75 Author: Thibaut Cuvelier Date: Mon Mar 11 01:22:12 2024 +0100 Extract vert, langle, rangle in MathExtern like parentheses and brackets. This patch is part of a series that aims at solving https://www.lyx.org/trac/ticket/12891

[LyX features/biginset] Improve const correctness.

2024-04-05 Thread Thibaut Cuvelier
commit b1a4eb118cd3d271a35b2260cde077e21c62c32c Author: Thibaut Cuvelier Date: Mon Mar 11 01:15:48 2024 +0100 Improve const correctness. --- src/mathed/MathExtern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathExtern.cpp b/src/mathed/MathExtern.cpp

[LyX features/biginset] Memorise whether delims are extracted from MathExtern.

2024-04-05 Thread Thibaut Cuvelier
commit 93444892c504fdd7b8fdfbc7f2bf67f9b250eb82 Author: Thibaut Cuvelier Date: Mon Mar 11 01:07:25 2024 +0100 Memorise whether delims are extracted from MathExtern. This patch is part of a series that aims at solving https://www.lyx.org/trac/ticket/12891. It should not change any

[LyX features/biginset] Reduce code duplication.

2024-04-05 Thread Thibaut Cuvelier
commit 1680eaf5f0edeed089e2bdc2b539b80187b88d3c Author: Thibaut Cuvelier Date: Sun Mar 10 16:55:12 2024 +0100 Reduce code duplication. --- src/mathed/MathExtern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathExtern.cpp b/src/mathed/MathExtern.cpp

[LyX features/biginset] MathML: consider ordinary and alphabetical characters as identifiers instead of operators.

2024-04-05 Thread Thibaut Cuvelier
commit 011c3d73c0c3137dcd67bf8bb09644ac064b2342 Author: Thibaut Cuvelier Date: Sat Mar 9 20:59:12 2024 +0100 MathML: consider ordinary and alphabetical characters as identifiers instead of operators. The goal is to consider all Greek letters as identifiers instead of operators

[LyX features/biginset] Simplify a loop with a for-each.

2024-04-05 Thread Thibaut Cuvelier
commit 1b11dfeca5c4e11585129221d966e84c5c775402 Author: Thibaut Cuvelier Date: Sat Mar 9 20:46:54 2024 +0100 Simplify a loop with a for-each. These loops were brought by C++11. The next step could be using std::any_of. --- src/mathed/MathSupport.cpp | 8 1 file changed

[LyX features/biginset] DocBook: add missing mapping for AASTeX 6.3.

2024-04-05 Thread Thibaut Cuvelier
commit 04beccca4c7170273748e14827b8af62e5726b25 Author: Thibaut Cuvelier Date: Sat Mar 9 15:09:45 2024 +0100 DocBook: add missing mapping for AASTeX 6.3. The result is far from perfect, see the TODOs. The corresponding tests are still inverted. --- development/autotests

[LyX features/biginset] DocBook: amend e3020a6b.

2024-04-05 Thread Thibaut Cuvelier
commit 5c5765061fa1ce1b829c1b1dad05d3fc8d879079 Author: Thibaut Cuvelier Date: Fri Mar 1 13:45:28 2024 +0100 DocBook: amend e3020a6b. Book authorship and authorship can be quite distinct. As far as I know, there is no standard way to represent book authorship in DocBook

[LyX features/biginset] DocBook: authorsToDocBookAuthorGroup never needs to return anything.

2024-04-05 Thread Thibaut Cuvelier
commit 3973bbcf9915ad16cdd7dec3c20bd2f722dfb52e Author: Thibaut Cuvelier Date: Fri Mar 1 13:32:17 2024 +0100 DocBook: authorsToDocBookAuthorGroup never needs to return anything. --- src/BiblioInfo.cpp | 11 +-- src/BiblioInfo.h | 2 +- 2 files changed, 6 insertions(+), 7

[LyX features/biginset] DocBook: support bookauthor in bibliographies.

2024-04-05 Thread Thibaut Cuvelier
commit e3020a6b2d240d0e1ae2aec8dfd754f6cd64dee1 Author: Thibaut Cuvelier Date: Fri Mar 1 12:55:40 2024 +0100 DocBook: support bookauthor in bibliographies. --- autotests/export/docbook/basic.bib | 11 +++ autotests/export/docbook/basic.lyx | 2 +- autotests/export/docbook

Re: Conclusions from CVE-2024-3094 (libxz disaster)

2024-03-31 Thread Thibaut
> Le 31 mars 2024 à 19:06, Thibaut a écrit : >> Le 31 mars 2024 à 18:46, Daniel Golle a écrit : >> >> I've seen that, and by itself it does not present a security risk in >> the context libarchive is intended to be used. BTW in case that isn’t obvious, the d

Re: Conclusions from CVE-2024-3094 (libxz disaster)

2024-03-31 Thread Thibaut
> Le 31 mars 2024 à 18:46, Daniel Golle a écrit : > > On Sun, Mar 31, 2024 at 12:05:03PM +0200, Thibaut wrote: >> >>> Le 31 mars 2024 à 01:07, Elliott Mitchell a écrit : >>> >>>> Normally upstream publishes release tarballs that are differe

Re: Conclusions from CVE-2024-3094 (libxz disaster)

2024-03-31 Thread Thibaut
> Le 31 mars 2024 à 01:07, Elliott Mitchell a écrit : > >> Normally upstream publishes release tarballs that are different than the >> automatically generated ones in GitHub. In these modified tarballs, a >> malicious version of build-to-host.m4 is included to execute a script >> during the

Re: Layout file format change proposal

2024-03-28 Thread Thibaut Cuvelier
On Thu, 28 Mar 2024 at 12:41, Lorenzo Bertini wrote: > Il giorno gio 28 mar 2024 alle ore 11:40 José Matos > ha scritto: > > > > On Wed, 2024-03-27 at 11:02 -0400, Scott Kostyshak wrote: > > > Cool idea, Lorenzo! There have been some discussions in the past on > > > using standard formats, even

[TYPES/announce] SYCO 12, Call For Participation

2024-03-26 Thread Thibaut Benjamin
Applications PROGRAM COMMITTEE = Todd Ambridge, University of Birmingham Thibaut Benjamin, University of Cambridge (Chair) Olivia Caramello, Univserity of Insubria, Université Paris-Saclay Ross Duncan, University of Strathclyde Chris Heunen, University of Edinburgh Dominic Horsman

[gphoto-devel] TAKARA CAM MV137

2024-03-26 Thread Thibaut TURRIER
g-logfile=my-logfile.txt --capture-image Please make sure there is sufficient quoting around the arguments. Je vous remercie, Cordialement, Thibaut TURRIER thibaut.turr...@hotmail.fr<mailto:thibaut.turr...@hotmail.fr> For debugging messages, please use the --debug option. Debugging message

[LyX/master] Amend 16660d12.

2024-03-21 Thread Thibaut Cuvelier
commit fd378450755b698cc3ddb1a8d14e8b78d19c57a2 Author: Thibaut Cuvelier Date: Thu Mar 21 21:32:45 2024 +0100 Amend 16660d12. The previous commit introduced wrong behaviours for <>. The new code carefully escapes what needs to be escaped from LaTeX, using the now-standar

Re: [elixir-core:11718] Code.eval_string() raises warnings when parsing Mix.lock

2024-03-21 Thread Thibaut Barrère
Thanks Wojtek - I was unsure if this would result in a potential change request (on the format of Mix.lock itself), hence my posting here, but well noted! Thanks for hint as well, that should do! -- Thibaut Le jeudi 21 mars 2024 à 17:14:18 UTC+1, woj...@wojtekmach.pl a écrit : > Please

[elixir-core:11716] Code.eval_string() raises warnings when parsing Mix.lock

2024-03-21 Thread Thibaut Barrère
I can either ignore the warnings, or "pre-process" the file to remove them, if needed. Thanks! -- Thibaut -- You received this message because you are subscribed to the Google Groups "elixir-lang-core" group. To unsubscribe from this group and stop receiving emails f

[LyX/master] MathML in HTML: don't escape <> for a raw LaTeX output.

2024-03-20 Thread Thibaut Cuvelier
commit 16660d12b4333f6486259048dec2b0a2e48a64d9 Author: Thibaut Cuvelier Date: Thu Mar 21 00:29:23 2024 +0100 MathML in HTML: don't escape <> for a raw LaTeX output. In some cases (I only found numbered equations), the LaTeX output still has a bit of HTML. For numbered equ

[TYPES/announce] SYCO 12 - Third call for papers

2024-03-11 Thread Thibaut Benjamin
attach any documents. INVITED SPEAKERS Miriam Backens, INRIA Nancy, Graphical rewriting of quantum computations using the ZX-calculus and flow properties Sean Moss, University of Birmingham, TBA PROGRAMME COMMITTEE === Todd Ambridge, University of B

[LyX/master] MathML: stop stretching all delimiters.

2024-03-10 Thread Thibaut Cuvelier
commit 8f820d7ccb0cb6129c8e3c1d495905d61db97355 Author: Thibaut Cuvelier Date: Mon Mar 11 01:40:16 2024 +0100 MathML: stop stretching all delimiters. No form? Reference: https://w3c.github.io/mathml-core/#dfn-form. The MathML processor is smart enough to determine whether

[LyX/master] MathML: don't let the processor stretch operators when they are single characters for LyX.

2024-03-10 Thread Thibaut Cuvelier
commit 7e6597a5b47c22ed22966a75c149264dacd6e289 Author: Thibaut Cuvelier Date: Mon Mar 11 02:00:47 2024 +0100 MathML: don't let the processor stretch operators when they are single characters for LyX. The main goal is to match TeX' behaviour. If you want stretchy operators, use

[LyX/master] MathML: don't output delimiters in InsetMathBinom and InsetMathDelim if the delimiter is a space.

2024-03-10 Thread Thibaut Cuvelier
commit be03d699463fba896f90e3046b0814d527368771 Author: Thibaut Cuvelier Date: Mon Mar 11 01:30:48 2024 +0100 MathML: don't output delimiters in InsetMathBinom and InsetMathDelim if the delimiter is a space. --- src/mathed/InsetMathDelim.cpp | 23 ++- src/mathed

[LyX/master] Extract vert, langle, rangle in MathExtern like parentheses and brackets.

2024-03-10 Thread Thibaut Cuvelier
commit 9e6b810b37f28499a5573468ae61d68be0bb2e75 Author: Thibaut Cuvelier Date: Mon Mar 11 01:22:12 2024 +0100 Extract vert, langle, rangle in MathExtern like parentheses and brackets. This patch is part of a series that aims at solving https://www.lyx.org/trac/ticket/12891

[LyX/master] Improve const correctness.

2024-03-10 Thread Thibaut Cuvelier
commit b1a4eb118cd3d271a35b2260cde077e21c62c32c Author: Thibaut Cuvelier Date: Mon Mar 11 01:15:48 2024 +0100 Improve const correctness. --- src/mathed/MathExtern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathExtern.cpp b/src/mathed/MathExtern.cpp

[LyX/master] Memorise whether delims are extracted from MathExtern.

2024-03-10 Thread Thibaut Cuvelier
commit 93444892c504fdd7b8fdfbc7f2bf67f9b250eb82 Author: Thibaut Cuvelier Date: Mon Mar 11 01:07:25 2024 +0100 Memorise whether delims are extracted from MathExtern. This patch is part of a series that aims at solving https://www.lyx.org/trac/ticket/12891. It should not change any

[LyX/master] Reduce code duplication.

2024-03-10 Thread Thibaut Cuvelier
commit 1680eaf5f0edeed089e2bdc2b539b80187b88d3c Author: Thibaut Cuvelier Date: Sun Mar 10 16:55:12 2024 +0100 Reduce code duplication. --- src/mathed/MathExtern.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathExtern.cpp b/src/mathed/MathExtern.cpp

[LyX/master] MathML: consider ordinary and alphabetical characters as identifiers instead of operators.

2024-03-09 Thread Thibaut Cuvelier
commit 011c3d73c0c3137dcd67bf8bb09644ac064b2342 Author: Thibaut Cuvelier Date: Sat Mar 9 20:59:12 2024 +0100 MathML: consider ordinary and alphabetical characters as identifiers instead of operators. The goal is to consider all Greek letters as identifiers instead of operators

[LyX/master] Simplify a loop with a for-each.

2024-03-09 Thread Thibaut Cuvelier
commit 1b11dfeca5c4e11585129221d966e84c5c775402 Author: Thibaut Cuvelier Date: Sat Mar 9 20:46:54 2024 +0100 Simplify a loop with a for-each. These loops were brought by C++11. The next step could be using std::any_of. --- src/mathed/MathSupport.cpp | 8 1 file changed

Re: DocBook tests failing AASTeX changes

2024-03-09 Thread Thibaut Cuvelier
On Fri, 8 Mar 2024 at 19:01, Scott Kostyshak wrote: > On Fri, Mar 08, 2024 at 06:58:35PM +0100, Thibaut Cuvelier wrote: > > On Fri, 8 Mar 2024 at 18:39, Scott Kostyshak wrote: > > > > > I get 2 out of 3 failing tests with the following: > > > > > >

[LyX/master] DocBook: add missing mapping for AASTeX 6.3.

2024-03-09 Thread Thibaut Cuvelier
commit 04beccca4c7170273748e14827b8af62e5726b25 Author: Thibaut Cuvelier Date: Sat Mar 9 15:09:45 2024 +0100 DocBook: add missing mapping for AASTeX 6.3. The result is far from perfect, see the TODOs. The corresponding tests are still inverted. --- development/autotests

[LyX/master] DocBook: amend e3020a6b.

2024-03-01 Thread Thibaut Cuvelier
commit 5c5765061fa1ce1b829c1b1dad05d3fc8d879079 Author: Thibaut Cuvelier Date: Fri Mar 1 13:45:28 2024 +0100 DocBook: amend e3020a6b. Book authorship and authorship can be quite distinct. As far as I know, there is no standard way to represent book authorship in DocBook

[LyX/master] DocBook: authorsToDocBookAuthorGroup never needs to return anything.

2024-03-01 Thread Thibaut Cuvelier
commit 3973bbcf9915ad16cdd7dec3c20bd2f722dfb52e Author: Thibaut Cuvelier Date: Fri Mar 1 13:32:17 2024 +0100 DocBook: authorsToDocBookAuthorGroup never needs to return anything. --- src/BiblioInfo.cpp | 11 +-- src/BiblioInfo.h | 2 +- 2 files changed, 6 insertions(+), 7

[LyX/master] DocBook: support bookauthor in bibliographies.

2024-03-01 Thread Thibaut Cuvelier
commit e3020a6b2d240d0e1ae2aec8dfd754f6cd64dee1 Author: Thibaut Cuvelier Date: Fri Mar 1 12:55:40 2024 +0100 DocBook: support bookauthor in bibliographies. --- autotests/export/docbook/basic.bib | 11 +++ autotests/export/docbook/basic.lyx | 2 +- autotests/export/docbook

[LyX/master] Amend 8e0bc01d

2024-02-26 Thread Thibaut Cuvelier
commit 27c01ee1d37e979f044329bcf07b9e910ed2b7ad Author: Thibaut Cuvelier Date: Tue Feb 27 00:45:10 2024 +0100 Amend 8e0bc01d std::set::find only appeared in C++20. Rather use std::set::find for compatibility. --- src/insets/InsetBibtex.cpp | 2 +- 1 file changed, 1 insertion

Re: Fwd: DocBook test now failing on master

2024-02-26 Thread Thibaut Cuvelier
On Mon, 26 Feb 2024 at 16:00, Scott Kostyshak wrote: > On Mon, Feb 26, 2024 at 03:07:12PM +0100, Thibaut Cuvelier wrote: > > On Mon, 26 Feb 2024 at 10:46, wrote: > > > > > Thank you so much, Thibaut. > > > > > > Could you send the patch to lyx-devel, s

[LyX/master] DocBook: in a table, fix a typo in a condition.

2024-02-26 Thread Thibaut Cuvelier
commit baccce7d2de92dcf57eb2afa8492e56a4805b1af Author: Thibaut Cuvelier Date: Mon Feb 26 16:09:26 2024 +0100 DocBook: in a table, fix a typo in a condition. Before this patch, all table cells had a semicolon at the beginning of their style: + Table 1 - + Table 2

[LyX/master] DocBook: when a similar tag is present multiple times in the bibliography entry, output it only once.

2024-02-26 Thread Thibaut Cuvelier
commit 8e0bc01d50fc7d7af454cb8bed4d098f85b3f73b Author: Thibaut Cuvelier Date: Mon Feb 26 16:04:22 2024 +0100 DocBook: when a similar tag is present multiple times in the bibliography entry, output it only once. Other copies have an error message. --- autotests/export/docbook

[LyX/master] DocBook: in bibliographies, fix support for editors.

2024-02-26 Thread Thibaut Cuvelier
commit 2be72a1534af143bda34b382189198667c10136b Author: Thibaut Cuvelier Date: Mon Feb 26 15:50:12 2024 +0100 DocBook: in bibliographies, fix support for editors. Also, add TODOs for similar problems lurking around. --- autotests/export/docbook/basic.xml | 57

[LyX/master] Use C++11 string literals to make code easier to read.

2024-02-26 Thread Thibaut Cuvelier
commit 6b1441036f35767c0b60af510222ba792b17b829 Author: Thibaut Cuvelier Date: Mon Feb 26 15:24:36 2024 +0100 Use C++11 string literals to make code easier to read. --- src/insets/InsetIndex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/insets

[LyX/master] DocBook: restore index ranges.

2024-02-26 Thread Thibaut Cuvelier
commit 3fdf3aafe8a2da25c10152c97e6e7824ace42e96 Author: Thibaut Cuvelier Date: Mon Feb 26 15:15:32 2024 +0100 DocBook: restore index ranges. --- src/insets/InsetIndex.cpp | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/insets/InsetIndex.cpp b/src/insets

[LyX/master] DocBook: simplify building an error message.

2024-02-26 Thread Thibaut Cuvelier
commit 5dd36404f2234395aa709f3723607a485e464dbb Author: Thibaut Cuvelier Date: Mon Feb 26 15:09:10 2024 +0100 DocBook: simplify building an error message. --- src/insets/InsetIndex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetIndex.cpp b/src

[LyX/master] DocBook: update bibliography handling for 337f9534260.

2024-02-26 Thread Thibaut Cuvelier
commit c71f7039148ba112ed3d0e56b19bce063a04323a Author: Thibaut Cuvelier Date: Mon Feb 26 14:36:01 2024 +0100 DocBook: update bibliography handling for 337f9534260. --- autotests/export/docbook/basic.lyx | 129 - src/insets/InsetBibtex.cpp | 8

[LyX/master] Update comment: a function was renamed.

2024-02-25 Thread Thibaut Cuvelier
commit e311606a30d0cbc3603a0187f68dd6a44fd402cd Author: Thibaut Cuvelier Date: Mon Feb 26 02:17:48 2024 +0100 Update comment: a function was renamed. --- src/insets/InsetBibitem.cpp | 2 +- src/output_docbook.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[TYPES/announce] SYCO 12 - Call for Papers

2024-02-12 Thread Thibaut Benjamin
attach any documents. PROGRAMME COMMITTEE === The PC chair is Thibaut Benjamin, University of Cambridge. The Programme Committee will be announced soon. STEERING COMMITTEE == Ross Duncan, University of Strathclyde Chris Heunen, University of Edinburgh Dominic

Re: LYX 2.4 RC1 — Unable to export a Lyx archive (zip)

2024-01-30 Thread Thibaut Cuvelier
On Tue, 30 Jan 2024 at 19:27, Enrico Forestieri wrote: > On Sun, Jan 28, 2024 at 12:59:12AM +0100, Enrico Forestieri wrote: > > > >On Sat, Jan 27, 2024 at 10:09:05PM +, José Matos wrote: > >> > >>On Sat, 2024-01-27 at 20:49 +0100, didiergab...@free.fr wrote: > >>>20:37:37.977: Exportation en

Re: Graphics Conversion

2024-01-23 Thread Thibaut Cuvelier
21:14:05.646: +checking for package chancery [chancery]... yes 21:14:05.650: +checking for package charter [charter]... yes 21:14:05.653: +checking for package cochineal [cochineal]... yes 21:14:05.656: +checking for package courier [courier]... yes 21:14:05.660: +checking for package crimson [

Re: RC1: Unable to read files with accents in names on Windows

2024-01-22 Thread Thibaut Cuvelier
On Mon, 22 Jan 2024 at 23:53, Thibaut Cuvelier wrote: > On Mon, 22 Jan 2024 at 23:00, Richard Kimberly Heck > wrote: > >> On 1/22/24 16:53, didiergab...@free.fr wrote: >> >> I also realize that I can no longer load images whose names contain accents. >> In

Re: adding new subtargets

2023-12-09 Thread Thibaut
[trimming CC-list and changing subject to match content] > Le 8 déc. 2023 à 23:48, Elliott Mitchell a écrit : > > On Fri, Dec 08, 2023 at 06:53:31PM +0100, Thibaut wrote: >> >>> Le 8 déc. 2023 à 16:39, Elliott Mitchell a écrit : >>> […] >>>

Re: [PATCH] ipq95xx: Add support for IPQ9574 RDP433

2023-12-08 Thread Thibaut
> Le 8 déc. 2023 à 16:39, Elliott Mitchell a écrit : > > On Fri, Dec 08, 2023 at 11:14:38AM +0100, Robert Marko wrote: >> On Fri, 8 Dec 2023 at 11:13, Piotr Dymacz wrote: >>> >>> On 8.12.2023 11:02, Robert Marko wrote: On Fri, 8 Dec 2023 at 11:01, Piotr Dymacz wrote: > > Would

Re: Unbalanced prioritization in the images buildbot? (main branch deprioritized too much)

2023-11-14 Thread Thibaut
> Le 14 nov. 2023 à 18:06, Petr Štetiar a écrit : > > Thibaut [2023-11-14 14:25:50]: > >> I’m sorry, I must have missed the part where we advertised that master >> snapshots are a maintained 'release' suitable for use in a >> security-conscious context :) >

Re: Unbalanced prioritization in the images buildbot? (main branch deprioritized too much)

2023-11-14 Thread Thibaut
Hi, > Le 14 nov. 2023 à 13:25, Petr Štetiar a écrit : > > Thibaut [2023-11-14 10:24:28]: > > Hi, > >> I don’t follow, what do security fixes have to do with snapshot builds? > > OpenWrt builds and deliver package fixes continuosly from the snapshot buil

Re: Unbalanced prioritization in the images buildbot? (main branch deprioritized too much)

2023-11-14 Thread Thibaut
> Le 14 nov. 2023 à 09:59, Petr Štetiar a écrit : > > Thibaut [2023-11-13 22:20:28]: > > Hi, > >> GitPoller accepts a single poll interval. What you’re suggesting would >> require separating each branch, i.e. returning to the previous situation. >

Re: Unbalanced prioritization in the images buildbot? (main branch deprioritized too much)

2023-11-13 Thread Thibaut
> Le 13 nov. 2023 à 21:32, Petr Štetiar a écrit : > > Thibaut [2023-11-13 17:26:44]: > > Hi, > >> In any case, another way to tackle this problem would be to switch from >> continuous builds that starve the build resources to periodic builds that >>

Re: Unbalanced prioritization in the images buildbot? (main branch deprioritized too much)

2023-11-13 Thread Thibaut
Hi, > Le 13 nov. 2023 à 16:55, Hannu Nyman a écrit : > > Looks like the release branches might have a too strong priority in the > combined image buildbot, so that release branches get always built before the > development main/master. > > Recently there has been a steady flow of mostly

Re: [PATCH] kernel: provide better control & help for SLUB configuration

2023-11-08 Thread Thibaut
Hi, > Le 7 nov. 2023 à 23:25, Rafał Miłecki a écrit : > > From: Rafał Miłecki > > Allow selecting KERNEL_SLUB_DEBUG and KERNEL_SLUB_DEBUG_ON manually and > provide detailed help for both. > > Signed-off-by: Rafał Miłecki > --- > config/Config-kernel.in | 15 +-- > 1 file changed,

Fwd: New Defects reported by Coverity Scan for LyX

2023-10-25 Thread Thibaut Cuvelier
-- Forwarded message - From: Thibaut Cuvelier Date: Thu, 26 Oct 2023, 03:35 Subject: Fwd: New Defects reported by Coverity Scan for LyX To: LyX Developers Dear list, I am attaching a patch that fixes two Coverity warnings. Could anyone commit this to the Git repo (given I

[ansible-project] Voicing my concerns with passlib (security) and its larger adoption by Ansible

2023-10-17 Thread Thibaut Barrère
(I don't know if it has 2FA enabled, for instance) would have potentially massive impact on Ansible users. If anyone has interesting ideas, let me know! Thibaut -- https://thibautbarrere.com/ https://twitter.com/thibaut_barrere -- You received this message because you are subscribed

Re: Big number of inverted docbook5 tests

2023-10-12 Thread Thibaut Cuvelier
On Thu, 12 Oct 2023, 11:11 Kornel Benko, wrote: > > Master trunk as of today: > I count 406 tests for docbook5. 149 of them are inverted. > Thibaut, is there a reason for such a huge ratio? There are two major reasons. - Many tests are for Beamer: someone would need to write

Re: [PATCH] Added some options to configure.py allowing for faster partial-reconfigures.

2023-10-11 Thread Thibaut Cuvelier
On Wed, 11 Oct 2023 at 11:03, Pavel Sanda wrote: > On Tue, Oct 10, 2023 at 02:38:01PM +0200, Jürgen Spitzmüller wrote: > >> 4) *lot* of latex packages > > All we query is needed for something for sure. > > Let's stick with point 4. > > By *needed* you mean that we have e.g. some specific feature

Re: [LyX/master] ctest: invert es/Intro_docbook5

2023-10-08 Thread Thibaut Cuvelier
On Sun, 8 Oct 2023 at 21:35, Thibaut Cuvelier wrote: > On Sun, 8 Oct 2023 at 17:05, Scott Kostyshak wrote: > >> On Sun, Oct 08, 2023 at 02:48:45PM +0200, Thibaut Cuvelier wrote: >> > Just a quick amendment to a previous patch (#1 in the series): there >>

Re: [LyX/master] ctest: invert es/Intro_docbook5

2023-10-08 Thread Thibaut Cuvelier
On Sun, 8 Oct 2023 at 17:05, Scott Kostyshak wrote: > On Sun, Oct 08, 2023 at 02:48:45PM +0200, Thibaut Cuvelier wrote: > > Just a quick amendment to a previous patch (#1 in the series): there was > a > > quite big typo there... It should solve the largest issue with the newl

Re: [LyX/master] ctest: invert es/Intro_docbook5

2023-10-08 Thread Thibaut Cuvelier
Just a quick amendment to a previous patch (#1 in the series): there was a quite big typo there... It should solve the largest issue with the newly failing test, but not all. I'm having a look at this test to improve the situation a bit more. Thibaut Cuvelier On Sun, 8 Oct 2023 at 04:23, Scott

Re: [LyX/master] ctest: invert es/Intro_docbook5

2023-10-07 Thread Thibaut Cuvelier
ctest: invert es/Intro_docbook5 > > > > This fails after recent changes to the document. > > --- > > Hi Thibaut, > > The es/Intro_docbook5 test is failing after changes to the document. I > know some of these issues are very hard to add support for, so my plan &g

Re: ctest ca/Intro_docbook5 now failing

2023-09-24 Thread Thibaut Cuvelier
On Mon, 18 Sept 2023 at 02:43, Thibaut Cuvelier wrote: > On Thu, 14 Sept 2023 at 02:35, Scott Kostyshak wrote: > >> On Wed, Sep 06, 2023 at 11:52:49PM -0400, Scott Kostyshak wrote: >> > Recently (I think due to the ca/Intro changes) the following test >> started to f

Re: ctest ca/Intro_docbook5 now failing

2023-09-17 Thread Thibaut Cuvelier
On Thu, 14 Sept 2023 at 02:35, Scott Kostyshak wrote: > On Wed, Sep 06, 2023 at 11:52:49PM -0400, Scott Kostyshak wrote: > > Recently (I think due to the ca/Intro changes) the following test > started to fail: > > > > export/doc/ca/Intro_docbook5 > > > >

Re: Bug report: SIGSEGV when copying cross-reference from "description" layout on LyX 2.4.0 beta 5

2023-09-15 Thread Thibaut Cuvelier
ta 5): LyX crashes with the message > > "SIGSEGV signal caught!" > > > Nullpointer issue due to local_font being non-defined in > InsetRef::xhtml(). > > The attached patch fixes this particular case, but there are many > similar uses in insets's xhtml methods which would need

Re: [elixir-core:11518] IEx auto-complete on __functions__

2023-09-12 Thread Thibaut Barrère
te to the generated `def __schema__(…)` code. This is a good suggestion - I'll open an issue over there. Thanks! -- Thibaut Le mercredi 6 septembre 2023 à 22:50:01 UTC+2, halos...@gmail.com a écrit : `__schema__` is only a partially-public API. For it to show up in documentation and i

[elixir-core:11513] IEx auto-complete on __functions__

2023-09-06 Thread thibaut...@gmail.com
uld affect newcomers to a given Elixir library, and how we could make this more approchable for newcomers? Let me know what you think! -- Thibaut -- You received this message because you are subscribed to the Google Groups "elixir-lang-core" group. To unsubscribe from this group and stop r

Re: [DocBook] Re: [LyX/master] Use master buffer setting when exporting

2023-08-18 Thread Thibaut Cuvelier
ter buffer setting when exporting > > Thibaut: This change may also be needed in the DocBook and XHTML export > routines. Basically, we were querying the buffer itself for the setting > of the use_refstyle flag rather than the master buffer. I ran into a > case where this was a problem:

Re: Packaging ZFS

2023-08-10 Thread Thibaut
> Le 10 août 2023 à 22:25, Philip Prindeville > a écrit : > > > >> On Aug 10, 2023, at 11:49 AM, Torbjörn Jansson wrote: >> >> On 2023-08-06 21:39, Philip Prindeville wrote: >>> I don't know... I have a Xeon D-1548 based 1U Supermicro server with a 4TB >>> NVMe stick that would make a

Re: Beta 3 On FTP Now

2023-07-31 Thread Thibaut Cuvelier
On Tue, 4 Jul 2023 at 00:02, Pavel Sanda wrote: > On Mon, Jul 03, 2023 at 10:53:52PM +0200, Pavel Sanda wrote: > > please can you have a look on few 2.4 related bugs: > > https://www.lyx.org/trac/ticket/12786 > > https://www.lyx.org/trac/ticket/12803 > > https://www.lyx.org/trac/ticket/10364 > >

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-26 Thread Thibaut Cuvelier
om 4c868a476eca6cad8b7a9db29e560e27f4ceb579 Mon Sep 17 00:00:00 2001 From: Thibaut Cuvelier Date: Thu, 27 Jul 2023 02:43:56 +0200 Subject: [PATCH] MathML: implement InsetMathClass. Before this patch, each character within InsetMathClass was output separately, without understanding their meani

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 16:55, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 16:47, Thibaut Cuvelier a écrit : > > On Tue, 18 Jul 2023 at 16:04, Jean-Marc Lasgouttes > <mailto:lasgout...@lyx.org>> wrote: > > > > Le 18/07/2023 à 15:54, Thibaut Cuvelier a éc

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 16:04, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 15:54, Thibaut Cuvelier a écrit : > > Also, we already have macros with parameters: > > https://github.com/cburschka/lyx/blob/master/lib/symbols#L1223 > > <https://github.com/cburschka/lyx/blob/

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 15:45, Jean-Marc Lasgouttes wrote: > Le 18/07/2023 à 15:36, Thibaut Cuvelier a écrit : > > For the symbols in your patch, yes, export is currently broken, but it's > > fixable. > > I think it would still be fixable in the future with macros,

Re: [PATCH] Is there a reason for not using macros with arguments in lib/symbols?

2023-07-18 Thread Thibaut Cuvelier
On Tue, 18 Jul 2023 at 15:11, Jean-Marc Lasgouttes wrote: > Hello, > > In the attached patch, I am able to support the mod/bmod/pmod/pod macros > by just defining them in lib/symbols with an argument. > > The result is a more pleasing editing process (IMO) and a simplification > of the

Re: Windows Dark Mode and "fusion" style

2023-07-07 Thread Thibaut Cuvelier
On Fri, 7 Jul 2023 at 10:13, Yu Jin wrote: > Am Fr., 7. Juli 2023 um 04:37 Uhr schrieb Thibaut Cuvelier: > >> I'm having an issue with your patch: QStyle::name has only been added in >> Qt 6.1 (https://doc.qt.io/qt-6/qstyle.html#name). I believe >> QObject::objectName

Re: Windows Dark Mode and "fusion" style

2023-07-06 Thread Thibaut Cuvelier
patch. Side question: why is createApplication declared in Application.h but defined in GuiApplication.cpp? Thibaut Cuvelier On Fri, 7 Jul 2023 at 02:23, Thibaut Cuvelier wrote: > On Thu, 6 Jul 2023 at 10:34, Yu Jin wrote: > >> Am Do., 6. Juli 2023 um 03:47 Uhr schrieb Thib

Re: Windows Dark Mode and "fusion" style

2023-07-06 Thread Thibaut Cuvelier
On Thu, 6 Jul 2023 at 10:34, Yu Jin wrote: > Am Do., 6. Juli 2023 um 03:47 Uhr schrieb Thibaut Cuvelier: > >> On Wed, 5 Jul 2023 at 22:02, Enrico Forestieri wrote: >> >>> On Wed, Jul 05, 2023 at 08:42:21PM +0200, Pavel Sanda wrote: >>> > >>> >

[MARMAM] New publication: Survival of an Indian Ocean humpback dolphin Sousa plumbea in the wild despite chronic osteologic pathologies

2023-06-20 Thread Thibaut Bouveroux
social group aggregations and feeding cooperation, may have contributed to its ability to survive. Best regards, Thibaut Bouveroux, PhD Dauphin Island Sea Lab, AL, USA ___ MARMAM mailing list MARMAM@lists.uvic.ca https://lists.uvic.ca/mailman/listinfo

Re: Packages buildbot is erratic, both master and 23.05 packages fail often

2023-06-03 Thread Thibaut
> Le 3 juin 2023 à 10:27, Hannu Nyman a écrit : > > Petr Štetiar kirjoitti 2.6.2023 klo 22.07: >> So having following in buildbot log: >> >> 2023-06-01 23:53:12+ [-] command timed out: 3600 seconds without output >> running [b'make', b'-j7', b'IGNORE_ERRORS=n m y', b'BUILD_LOG=1', >>

Re: Packages buildbot is erratic, both master and 23.05 packages fail often

2023-06-03 Thread Thibaut
Hi, > Le 2 juin 2023 à 21:07, Petr Štetiar a écrit : > > Thibaut [2023-06-02 11:09:48]: > > Hi, > >> the build is actually hung. dmesg might have more info. > > So having following in buildbot log: > > 2023-06-01 23:53:12+ [-] command timed out: 36

Re: Packages buildbot is erratic, both master and 23.05 packages fail often

2023-06-02 Thread Thibaut
Hi, > Le 2 juin 2023 à 07:43, Petr Štetiar a écrit : > > Thibaut [2023-06-01 18:21:22]: > > Hi, > >>> There has been many timeouts of "3600 seconds without output" in master, >> >> These look like connectivity issues. > > I'm not

Re: Packages buildbot is erratic, both master and 23.05 packages fail often

2023-06-01 Thread Thibaut
Hi, > Le 1 juin 2023 à 18:11, Hannu Nyman a écrit : > > Looks like the new buildbot code and new instances (also for 23.05) are not > yet quite stable... > > Packages of some popular architectures like aarch64_cortex-a53 for mt7622 and > ipq807x have not been built for a week in master. «

Re: [PATCH] Revert "feeds: use git-src-full to allow Git versioning"

2023-05-27 Thread Thibaut
This targets openwrt-23.05 and is missing a [23.05] prefix, apologies. > Le 27 mai 2023 à 10:31, Thibaut VARÈNE a écrit : > > From: Petr Štetiar > > This partially reverts commit 7fae1e5677e9bb4979c8d4ac99be4de6955b13d0 > as it should be no longer necessary to do a full

[PATCH] Revert "feeds: use git-src-full to allow Git versioning"

2023-05-27 Thread Thibaut VARÈNE
From: Petr Štetiar This partially reverts commit 7fae1e5677e9bb4979c8d4ac99be4de6955b13d0 as it should be no longer necessary to do a full clone since commit 48ed07bc0b94 ("treewide: replace AUTORELEASE with real PKG_RELEASE"). Suggested-by: Thibaut VARÈNE Signed-off-by: Petr Štetia

[PATCH] ath79: mikrotik: bump compat version for yafut images

2023-05-05 Thread Thibaut VARÈNE
rsion='1.1' uci commit [1] https://github.com/openwrt/openwrt/pull/12225#issuecomment-1517529262 Cc: Michał Kępień Signed-off-by: Thibaut VARÈNE --- target/linux/ath79/image/common-mikrotik.mk | 4 1 file changed, 4 insertions(+) diff --git a/target/linux/ath79/image/common-mikrotik.mk

Re: [PATCH 9/9] kernel/x86: remove DRM support

2023-04-29 Thread Thibaut
> Le 29 avr. 2023 à 05:45, Elliott Mitchell a écrit : > > On Thu, Apr 27, 2023 at 11:21:28AM +0200, Thibaut wrote: >> >>> Le 27 avr. 2023 à 02:11, Elliott Mitchell a écrit : >>> […] >> You seem to assume that x86 is only/mainly run on VMs. >>

Re: [PATCH 6/9] kernel/x86: enable x32 support for amd64

2023-04-27 Thread Thibaut
> Le 27 avr. 2023 à 02:00, Elliott Mitchell a écrit : > > On Thu, Apr 27, 2023 at 12:46:49AM +0200, Stefan Lippers-Hollmann wrote: > >> While I might understand (understand, not support) a desire for this >> as a dedicated subtarget (to appease the virtualization crowd), >> although I still

Re: [PATCH 9/9] kernel/x86: remove DRM support

2023-04-27 Thread Thibaut
> Le 27 avr. 2023 à 02:11, Elliott Mitchell a écrit : > > On Thu, Apr 27, 2023 at 12:50:52AM +0200, Stefan Lippers-Hollmann wrote: >> On 2023-04-19, Elliott Mitchell wrote: >>> Direct Rendering Manager is mainly for running X (possibly Wayland >>> too). As OpenWRT is meant for networking

  1   2   3   4   5   6   7   8   9   10   >