Re: The demise of ly:multi-measure-rest::percent

2024-05-03 Thread Xavier Scheuer
kePercent = #(define-music-function (note) (ly:music?) "Make a percent repeat the same length as NOTE." (make-music 'PercentEvent 'length (ly:music-length note))) \relative c'' { \makePercent s1 } Kind regards, Xavier

Re: How to replace a Maven core component with a custom one?

2024-05-03 Thread Francois-Xavier Bonnet
; The ProjectDependenciesResolver implementation > (DefaultProjectDependenciesResolver) is a plexus component. > > T > > On Wed, May 1, 2024 at 3:21 PM Guillaume Nodet wrote: > > > Did you add the sisu inject plugin which generates the > > META-INF/sisu/javax.inject.Named index to y

Re: How to replace a Maven core component with a custom one?

2024-04-30 Thread Francois-Xavier Bonnet
0.9.0.M2), then: > - use max Java 17 bytecode > - use JSR330 instead of plexus annotations > - use org.eclipse.sisu.Priority annotation to override a component > > IF you target Maven 3.8.x or so, similar, but use Java 11 bytecode max > > Thanks > T > > > On Wed, May

How to replace a Maven core component with a custom one?

2024-04-30 Thread Francois-Xavier Bonnet
Hey there, I am writing an extension that needs to replace the default ProjectDependenciesResolver with a custom one. According to the documentation I think I should be able to do it: "The mechanism allows extensions to either replace default Sisu components with custom ones or add new components

[gcc r15-50] Fortran: add F2023 ISO_FORTRAN_ENV named constants

2024-04-29 Thread François-Xavier Coudert via Gcc-cvs
https://gcc.gnu.org/g:1dba1d860a1e3e32e5d061a1d6dc600c96d2597f commit r15-50-g1dba1d860a1e3e32e5d061a1d6dc600c96d2597f Author: Francois-Xavier Coudert Date: Tue Mar 19 14:16:38 2024 +0100 Fortran: add F2023 ISO_FORTRAN_ENV named constants gcc/fortran/ChangeLog

[Kernel-packages] [Bug 2063983] Re: 24.04 Upgrade/Fresh Install results in black screen on reboot on AMDGPU system

2024-04-28 Thread Xavier MOGHRABI
I had the same issue while trying to upgrade to Kubuntu 24.04 or install Kubuntu 24.04 from scratch. I get a black screen at startup. My graphic card is also an AMD GPU : Radeon RX 7800 XT. -- You received this bug notification because you are a member of Kernel Packages, which is subscribed to

[Bug 2063983] Re: 24.04 Upgrade/Fresh Install results in black screen on reboot on AMDGPU system

2024-04-28 Thread Xavier MOGHRABI
I had the same issue while trying to upgrade to Kubuntu 24.04 or install Kubuntu 24.04 from scratch. I get a black screen at startup. My graphic card is also an AMD GPU : Radeon RX 7800 XT. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to

Implement JdbcReporter to collect metrics on table maintenance

2024-04-28 Thread Xavier Bai
rather than reading metadata files from the data lake via IO requests, we can reduce service response time and IO pressure. Please let me know your thoughts. Thank you, Xavier Bai

Re: Note names are causing text marks to be duplicated

2024-04-26 Thread Xavier Scheuer
graver } \context { \Staff \consists Text_mark_engraver } } Kind regards, Xavier

Re: Teclat catala i accents volats

2024-04-26 Thread Xavier De Yzaguirre i Maura
Bon dia, Segons sembla, tenia el ibus desconfigurat, ara ja està tot bé. Moltes gràcies a tothom i especialment a l'Ernest que m'ha donat la clau per resoldre-ho. Salut. -- * Xavier De Yzaguirre i Maura xdeyzaguirre at protonmail(dot)ch

Re: Teclat catala i accents volats

2024-04-26 Thread Xavier De Yzaguirre i Maura
Doncs sí, a la consola (CTRL+ALT+F2, ja que l'F1 l'ocupa la sessió gràfica) puc escriure les vocals amb accent obert, tancat i dièresi. Per tant, és un problema de l'entorn gràfic. Per tant, com dius és un problema del mètode d'entrada. Que m'aconselles? Moltes gràcies. Xavier De Yzaguirre

[ovs-dev] [PATCH ovn] lflow: Add missing sample flow.

2024-04-26 Thread Xavier Simonart
ing a non-existing check_debug function. Fixes: 5b1476709d7c ("controller: only sample flow if Collector Set exists") Signed-off-by: Xavier Simonart --- controller/ovn-controller.c | 13 + tests/ovn.at| 58 - 2 files changed

[ovs-dev] [PATCH ovn] northd, ic: Fix handling of ovn-appctl resume.

2024-04-23 Thread Xavier Simonart
is already properly handling the resume. This caused the following tests to fail sporadically: - ovn-ic -- sync ISB status to INB - propagate Port_Binding.up to NB and OVS. Signed-off-by: Xavier Simonart --- ic/ovn-ic.c | 2 +- northd/ovn-northd.c | 1 + 2 files changed, 2 insertions

[ovs-dev] [PATCH ovn 3/5] controller: Fix deletion of container parent port.

2024-04-23 Thread Xavier Simonart
Flows were not properly removed when parent port of a container port was deleted. Signed-off-by: Xavier Simonart --- controller/binding.c | 1 + controller/physical.c | 3 ++- tests/ovn.at | 34 ++ 3 files changed, 37 insertions(+), 1 deletion

[ovs-dev] [PATCH ovn 2/5] controller: Nonvif related lports handling.

2024-04-23 Thread Xavier Simonart
avoid using same name for a port and for a switch). Signed-off-by: Xavier Simonart --- controller/binding.c | 12 tests/ovn.at | 12 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/controller/binding.c b/controller/binding.c index c9658cb2a

[ovs-dev] [PATCH ovn 1/5] controller: Fix iface-id-ver handling.

2024-04-23 Thread Xavier Simonart
If iface-id-ver was wrong and modified to a correct value, the port was correctly claimed, but the flows were not installed by I+P. Signed-off-by: Xavier Simonart --- controller/binding.c | 14 ++ tests/ovn.at | 2 ++ 2 files changed, 16 insertions(+) diff --git

[ovs-dev] [PATCH ovn 4/5] controller: Handle postponed ports claims.

2024-04-23 Thread Xavier Simonart
while parent was postponed. Signed-off-by: Xavier Simonart --- controller/binding.c | 29 +++-- tests/ovn.at | 10 ++ 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/controller/binding.c b/controller/binding.c index 1499ceae1..0bef5dc42 100644

[ovs-dev] [PATCH ovn 5/5] controller: Handle postponed ports release.

2024-04-23 Thread Xavier Simonart
Reported-at: https://mail.openvswitch.org/pipermail/ovs-dev/2023-May/405107.html Suggested-by: Priyankar Jain Signed-off-by: Xavier Simonart --- controller/binding.c | 12 +- tests/ovn.at | 57 2 files changed, 68 insertions(+), 1

[ovs-dev] [PATCH ovn 0/5] Fix I+P versus recompute differences.

2024-04-23 Thread Xavier Simonart
Comparing I+P flows versus flows after recompute highlighted a few issues. Xavier Simonart (5): controller: Fix iface-id-ver handling. controller: Nonvif related lports handling. controller: Fix deletion of container parent port. controller: Handle postponed ports claims. controller

Re: Teclat catala i accents volats

2024-04-23 Thread Xavier De Yzaguirre i Maura
rrectament la a amb accent greu i al pas sis em dona pel sac. No se, estic perdut. Xavier De Yzaguirre xdeyzaguirre(at)gmail(dot)com +34 629 953 830 El 22/4/24 a les 17:00, Ernest Adrogué ha escrit: 2024-04-10, 13:49 (+0200); Xavier De Yzaguirre i Maura escriu: Fa uns dies que no trobo els accen

Bug#1069699: RFP : Cars Sports Racing Speed Dreams' fork

2024-04-22 Thread Xavier Bertaux
developed ( just in maintenance), I'm leaning more towards an internal OpenGL3 engine. The long-term objective of this project is to have a career mode integrated directly into the internal engine. Cheers Xavier BERTAUX

Re: simple problem: my first text spanner starts too early?

2024-04-22 Thread Xavier Scheuer
eems an overkill for me in this case (I use them only for PianoStaff-likes). Kind regards, Xavier

Re: Teclat catala i accents volats

2024-04-22 Thread Xavier De Yzaguirre i Maura
••·· tant a l'entorn gràfic com al terminal (konsole) 3. Ja et dic que a tots els entorns 4. He creat un nou usuari i tampoc apareixen els accents Et dona alguna pista? Salut i gracies. Xavier De Yzaguirre xdeyzaguirre(at)gmail(dot)com +34 629 953 830 El 18/4/24 a les 16:45, Joan Montané ha

Re: (No subject)

2024-04-21 Thread Xavier Scheuer
rror please send a minimal example of code showing the issue. Kind regards, Xavier

Special notation question

2024-04-21 Thread Xavier Mayeur
Hello, In a \time 3/2 score, how can I write the following snippet in Lilypond? I wonder how to create the 'g' note with that special appearance and with the right duration... -- Cordialement, Xavier MAYEUR Bruxelles

[NTG-context] Re: kpfonts

2024-04-21 Thread Xavier B.
Thanks a lot In the wiki there is no mention to that, isn't there? Xavier On Sat, 20 Apr 2024 14:08:21 +0200 Wolfgang Schuster ha escrit: > Xavier B. schrieb am 20.04.2024 um 13:51: > > Hi, > > > > Just a courious: is there kpfonts available for contex

[NTG-context] kpfonts

2024-04-20 Thread Xavier B.
Hi, Just a courious: is there kpfonts available for context? I love kpfonts. Thanks in advance, Xavier ___ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context

Re: Teclat catala i accents volats

2024-04-18 Thread Xavier De Yzaguirre i Maura
Bon dia, Gràcies Moisès, però fins ara m'havia funcionat correctament el teclat. Alguna actualització me l'ha espatllat. Aniré fent proves. De moment, amb el LanguageTool me'n vaig sortint. Salut a tots. -- * Xavier De Yzaguirre i Maura xdeyzaguirre

[Wikimedia-l] Re: We need more interactive content: we are doing it wrong

2024-04-17 Thread F. Xavier Dengra i Grau via Wikimedia-l
in academic environments, it would be great that our efforts in adapting them on-wiki for our articles can revert to a better language accessibility there as well. Salutacions/Kind regards, Xavier Dengra As per the latest input by James El dc, 17 abr., 2024 a 22:41, James Heilman <[jmh...@gmail.

Re: Can \showStaffSwitch \pageBreak ? Bug?

2024-04-17 Thread Xavier Scheuer
itlab.com/lilypond/lilypond/-/issues/6684 https://gitlab.com/lilypond/lilypond/-/issues/6551 Kind regards, Xavier

Re: [users@httpd] better configtest

2024-04-16 Thread Xavier Belanger
to check on the status of the web service and get an alert when the certificate is close from its expiration date. I personally use Monit [1], but there is probably plenty of other tools that could fullfill the same purpose. Sincerely, 1: https://mmonit.com/monit/ -- Xavier

Re: [FRnOG] [JOBS] Sysadmin Linux - Rennes / Saint-Malo

2024-04-14 Thread Xavier Beaudouin via frnog
ces postes. Alors au jour où certaines boites dans certains pays sont capable de faire du full remote pour certains d'entre nous, et bien la concurrence frontale est en défaveur des entreprises Françaises... C'est bien dommage. Xavier --- Liste de diffusion du FRnOG http://www.frnog.org/

[gcc r14-9937] libgfortran: Fix compilation of gf_vsnprintf

2024-04-12 Thread François-Xavier Coudert via Gcc-cvs
https://gcc.gnu.org/g:3bd3ca05b519b99b5ea570c10fd80737cd4c6c49 commit r14-9937-g3bd3ca05b519b99b5ea570c10fd80737cd4c6c49 Author: Ian McInerney Date: Thu Apr 4 16:16:32 2024 +0100 libgfortran: Fix compilation of gf_vsnprintf The fallback function (gf_vsnprintf) to provide a

[Bug 1799550] Re: No way to encrypt at partition level (dual boot)

2024-04-11 Thread Xavier Gnata
Thanks ! Over the years we have opened these bugs reports on the same issue: https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1947770 https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1992439 All of them should be closed when Noble will be released. -- You received this bug

Re: Debian 12 al català

2024-04-10 Thread Xavier Drudis Ferran
El Wed, Apr 10, 2024 at 03:04:17PM +0200, Narcis Garcia deia: > > > > He fet l'export $LANGUAGE=ca_ES i ara ho tinc així > > Sense $ però ja ho saps. > > ➜ echo $LANGUAGE > > es:ca:en_US > > > > ➜ locale > > LANG=ca_ES.UTF-8 > > LANGUAGE=es:ca:en_US > > LC_CTYPE="ca_ES.UTF-8" > >

Re: Teclat catala i accents volats

2024-04-10 Thread Xavier De Yzaguirre i Maura
Tictacbum, bon dia, he provat el 104 normal i res de res, tot segueix igual. Xavier De Yzaguirre xdeyzaguirre(at)gmail(dot)com +34 629 953 830 El 10/4/24 a les 15:28, tictacbum ha escrit: Hola Xavier, jo sempre he configurat el teclat a 104 tecles, encara que faig servir un amb menys (sense

Re: Teclat catala i accents volats

2024-04-10 Thread Xavier De Yzaguirre i Maura
Utilitzo el KDE amb Wayland, encara que té algunes mancances (el Wayland). Gràcies. Xavier De Yzaguirre xdeyzaguirre(at)gmail(dot)com +34 629 953 830 El 10/4/24 a les 14:58, Narcis Garcia ha escrit: El teclat català no existeix com a tal, tot i què algú fa més de quinze anys el va

Teclat catala i accents volats

2024-04-10 Thread Xavier De Yzaguirre i Maura
Bon dia, Fa uns dies que no trobo els accents, he reconfigurat els locales, pero no hi ha forma de poder escriure una vocal accentuada. Utilitzo un portatil msi configurat amb el teclat generic de 86 tecles 2024-04-10 13:44:49 xavier@PC006:~$ neofetch _,met$gg.  xavier@PC006 ,g

Re: [ovs-dev] [PATCH ovn] tests: Add macro for checking flows after recompute.

2024-04-05 Thread Xavier Simonart
Hi Mark Thanks for the review. On Thu, Apr 4, 2024 at 10:25 PM Mark Michelson wrote: > Hi Xavier, the patch looks good, but I have one question down below. > > On 3/26/24 07:56, Xavier Simonart wrote: > > The macro CHECK_FLOWS_AFTER_RECOMPUTE dumps the Openflows, then

Re: ConsultaInstal·lacióDEBIAN

2024-04-04 Thread Xavier De Yzaguirre i Maura
a l'USB i després ja instal·lar-lo. Jo puc descarregar-la a casa per guanyar temps. Un cop iniciada la instal·lació i connectat el nou equip a la xarxa wifi, el que falti ho anirà baixant. Salut. -- Xavier De Yzaguirre xdeyzaguirre(at)gmail(dot)com +34 629 953 830

Re: ConsultaInstal·lacióDEBIAN

2024-04-04 Thread Xavier Drudis Ferran
El Wed, Apr 03, 2024 at 11:53:06PM +0200, Daniel Abaurrea Ruiz deia: > Els meus coneixements d’hardware i software son del nivell d’usuari. Sempre > m’ha interessat molt saber com funciona tot el que m’envolta. Es per això > que m’agradaria molt aprendre a instal·lar un sistema operatiu debian en

Re: [cas-user] SAML2 protocol in CAS6.4.6.6

2024-04-03 Thread Xavier Rodríguez
er-support-person-directory This library is used in: *testImplementation *group: 'org.apereo.cas', name: 'cas-server-support-person-directory', version: 'X.X.X' ¿Any idea about this? ¿Is a good solution? Thanks, - Xavier - El dia divendres, 22 de març del 2024 a les 16:03:39 UTC+1, Ray Bon va

[neon] [Bug 484940] libkcolorpicker-qt6-0 failed to install in updates

2024-04-03 Thread Xavier Padullés
https://bugs.kde.org/show_bug.cgi?id=484940 Xavier Padullés changed: What|Removed |Added CC||x.padul...@gmail.com --- Comment #5 from

[tcpdump-workers] Re: openwrt Conclusions from CVE-2024-3094 (libxz disaster)

2024-04-02 Thread Francois-Xavier Le Bail via tcpdump-workers
--- Begin Message --- On 01/04/2024 20:18, Guy Harris wrote: > On Apr 1, 2024, at 6:53 AM, Michael Richardson wrote: > >> I wonder if we should nuke our own make tarball system. > > I.e., replace: > > to get {libpcap,tcpdump,tcpslice} version X.Y.Z, download >

[tcpdump-workers] Re: openwrt Conclusions from CVE-2024-3094 (libxz disaster)

2024-04-01 Thread Francois-Xavier Le Bail via tcpdump-workers
--- Begin Message --- On 01/04/2024 20:18, Guy Harris wrote: > On Apr 1, 2024, at 6:53 AM, Michael Richardson wrote: > >> I wonder if we should nuke our own make tarball system. > > I.e., replace: > > to get {libpcap,tcpdump,tcpslice} version X.Y.Z, download >

Re: subscribe to amoro

2024-03-31 Thread Xavier Bai
Hi Congxian, To subscribe, please send a brief email to dev-subscr...@amoro.apache.org Thanks, Xu

[i18n] [Bug 484810] Mauvaise traduction de "Display luminosité" dans l'applet "Luminosité et couleur"

2024-03-31 Thread Xavier Besnard
https://bugs.kde.org/show_bug.cgi?id=484810 Xavier Besnard changed: What|Removed |Added CC||xavier.besn...@neuf.fr --- Comment #1 from

Re: Amoro repositories migration completed

2024-03-30 Thread Xavier Bai
Thanks a lot for your contribution! Warm regards Xu Jinsong Zhou 于2024年3月30日周六 22:03写道: > Hi Amoro Devs, > > Amoro has been transferred to the Apache repositories: > https://github.com/apache/incubator-amoro > https://github.com/apache/incubator-amoro-site > > The original git addresses will

Re: Conflicting \section and \grace?

2024-03-29 Thread Xavier Scheuer
roblem: Exactly. https://gitlab.com/lilypond/lilypond/-/issues/34 This is documented in NR 1.2.6 Special rhythmic concerns > Grace notes > Known issues and warnings Kind regards, Xavier

DBD::MySQL upstream change

2024-03-29 Thread Xavier Humbert
Hi, I'm using MariaDB as my database server on FreeBSD 13.3 DBD::MySQL changed upstream to support only MySQL8 I know there is a new module DBD::MariaDB Is is safe to replace DBD::MySQL with DBD::MariaDB ? Thanks, Regards, Xavier -- Xavier HUMBERT - Unix/Win/MacOSX Sysadmin/Network

Re: Lyric extenders in/out of alternatives

2024-03-29 Thread Xavier Scheuer
is at all (the right result automatically)? But in both cases what is currently documented in NR 2.1.2 doesn't give the best result. Best regards, Xavier

Re: end-of-line-invisible exception

2024-03-26 Thread Xavier Scheuer
On Tue, 26 Mar 2024 at 17:05, bobr...@centrum.is wrote: > > Is there a way to omit the key signature at the end of a line in this case? Hello, Well, here *it is* key cancellation. \override Staff.KeyCancellation.break-visibility = #all-invisible Kind regards, Xavier

Re: Tutorial for Livecode Server log in system

2024-03-26 Thread pere xavier Rossello via use-livecode
nue put "" put "window.location='vrep.lc?token=" & tToken &"';" put "" end if revCloseDatabase gDbId ?> if someone want to try it: https://mpibox.com/rep/ login: user: test pass: admin if you need some help let me know. P.D. sorry for s

[ovs-dev] [PATCH ovn] tests: Add macro for checking flows after recompute.

2024-03-26 Thread Xavier Simonart
when the last logical port of a datapath is deleted. Signed-off-by: Xavier Simonart --- tests/ovn-macros.at | 44 1 file changed, 44 insertions(+) diff --git a/tests/ovn-macros.at b/tests/ovn-macros.at index ed93764d3..11377f616 100644 --- a/tests/ovn

[ovs-dev] [PATCH ovn] automake: Make system tests dependent of ovn-macro.

2024-03-26 Thread Xavier Simonart
So system testsuite will be recompiled when ovn-macro is changed. Signed-off-by: Xavier Simonart --- tests/automake.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/automake.mk b/tests/automake.mk index f6f0f0e33..1fdc89835 100644 --- a/tests/automake.mk +++ b/tests/automake.mk

[ovs-dev] [PATCH ovn v2 1/3] tests: Add macros to pause controller updates.

2024-03-26 Thread Xavier Simonart
Such macros can then be used for instance to create condition where sb is seen as read-only by ovn-controller. Signed-off-by: Xavier Simonart --- tests/ovn-macros.at | 25 - 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/tests/ovn-macros.at b/tests/ovn

[ovs-dev] [PATCH ovn v2 2/3] pinctrl: Fix missing MAC_Bindings.

2024-03-26 Thread Xavier Simonart
Pinctrl is responsible of creating MAC_Bindings on peer router datapaths. However, when sb was read-only, this did not happen. This caused the test "neighbor update on same HV" to fail in a flaky way. Signed-off-by: Xavier Simonart --- v2: - Fix userspace tests - Replac

[ovs-dev] [PATCH ovn v2 3/3] pinctrl: Fixed 100% cpu on ovs connection loss.

2024-03-26 Thread Xavier Simonart
This issue is happening for instance when running test "ovn-controller - Chassis other_config". Signed-off-by: Xavier Simonart --- v2: Amend subject summary. Rebase on origin/main. --- controller/pinctrl.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-)

Re: Tutorial for Livecode Server log in system

2024-03-26 Thread pere xavier Rossello via use-livecode
Hi. To make online log in is quit easy in livecode. first you need a webpage with a form asking username, email and password ) and submit to a livecode script Log in --- method can be to types get or post - normally I use Get this will send username

Re: remove key change at end of line

2024-03-25 Thread Xavier Scheuer
it out. Hello, \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible See NR 5.4.7 Visibility of objects > Special considerations https://lilypond.org/doc/v2.24/Documentation/notation/visibility-of-objects#special-considerations Kind regards, Xavier

Re: Can't compile Lilypond files

2024-03-24 Thread Xavier Scheuer
extracted the binaries? And when you say you can't compile, what do you get as error message? It is not clear at all. Kind regards, Xavier

[i18n] [Bug 484342] Mistranslation in the brightness applet

2024-03-24 Thread Xavier Besnard
https://bugs.kde.org/show_bug.cgi?id=484342 Xavier Besnard changed: What|Removed |Added Resolution|--- |FIXED Status|REPORTED

Cannot upgrade p5-DBD-mysql with Mariadb

2024-03-23 Thread Xavier Humbert
Regards, Xavier -- Xavier HUMBERT - Unix/Win/MacOSX Sysadmin/Network Engineer https://www.amdh.fr

[cas-user] SAML2 protocol in CAS6.4.6.6

2024-03-22 Thread Xavier Rodríguez
Hello, I'm not familiar with SAML 2.0 and I need to set up our CAS 6.4.6.6 with SAML2 protocol. Our CAS uses Oauth2 + CAS protocol. Now, we need to add this protocol. Folowing the documentation: https://apereo.github.io/cas/6.6.x/authentication/Configuring-SAML2-Authentication.html I've

Re: [FRnOG] [MISC] Mails bloqués par Free.fr depuis Tenant Office365 Microsoft.

2024-03-20 Thread Xavier Beaudouin via frnog
longtemps, qu'elles soient clean depuis des années et vous avez la paix... Battez-vous pour avoir les moyens de partir de ces "solutions" qui vous enferment, et profitez du moment qui vous le permet de le faire encore plus tard (quand ? 5 ans ? 10 ans?) il sera trop tard, le SMTP n'ex

Re: ragged-bottom and spacing for individual pages

2024-03-20 Thread Xavier Scheuer
see NR 4.4.2. Kind regards, Xavier

Re: [FRnOG] [MISC] Mails bloqués par Free.fr depuis Tenant Office365 Microsoft.

2024-03-20 Thread Xavier Beaudouin via frnog
ça prends du temps et ça permet justement de savoir pk X ou Y bloque le mail. M'enfin autant se battre contre des moulins a vent... Xavier --- Liste de diffusion du FRnOG http://www.frnog.org/

Re: [ovs-dev] [PATCH ovn 1/2] pinctrl: Fix missing MAC_Bindings.

2024-03-20 Thread Xavier Simonart
Hi Thanks Ales for the feedback. There is also a small change needed to make userspace tests to work as well (as pointed out by ovs_robot). I'll send a v2. Thanks Xavier On Wed, Mar 20, 2024 at 12:11 PM Ales Musil wrote: > > > On Wed, Mar 20, 2024 at 8:12 AM Xavier Simonart

Re: [FRnOG] [MISC] Fwd: France-IX launches its new Transit IP service!

2024-03-20 Thread Xavier Beaudouin via frnog
rde (tempête de broadcast ou autre), pas de pitié pour les croissants on shut le port et après on décide... Aussi certains mettent moins de prefix sur les RS qu'en peering direct... Xavier --- Liste de diffusion du FRnOG http://www.frnog.org/

Re: Troubles with StaffGrouper

2024-03-20 Thread Xavier Scheuer
tance . 12) (minimum-distance . 11) (padding . 1)) } { c'1 } \new PianoStaff << \new Staff { c'1 } \new Staff { c'1 } >> >> } Kind regards, Xavier

[ovs-dev] [PATCH ovn 1/2] pinctrl: Fix missing MAC_Bindings.

2024-03-20 Thread Xavier Simonart
Pinctrl is responsible of creating MAC_Bindings on peer router datapaths. However, when sb was read-only, this did not happen. This caused the test "neighbor update on same HV" to fail in a flaky way. Signed-off-by: Xavier Simonart --- controller/pinctrl.c | 2 +- tests/ovn-macros

[ovs-dev] [PATCH ovn 2/2] pinctrl: Fixed 100% cpu when connection lost to ovs.

2024-03-20 Thread Xavier Simonart
This issue is happening for instance when running test "ovn-controller - Chassis other_config". Signed-off-by: Xavier Simonart --- controller/pinctrl.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/controller/pinctrl.c b/controller/pinctrl.c index

[HCDX] Assunto: #332 Reception in Southeastern Brazil – March 19, 2024

2024-03-19 Thread Jota Xavier via Hard-Core-DX
Excelentes escutas Grimm.Saudações ao amigo.Atenciosamente, José Ronaldo XavierCabedelo-PB Yahoo Mail: Busque, organize e aumente sua produtividade Em ter, 19 19e mar 19e 2024 às 10:17, Rudolf Grimm escreveu: Dear friends, #332 Reception in Southeastern Brazil – March 19, 2024  

Bug#1067194: ITP: ansible-creator -- fastest way to generate all your ansible content

2024-03-19 Thread Guilherme de Paula Xavier Segundo
Package: wnpp Severity: wishlist Owner: Guilherme de Paula Xavier Segundo X-Debbugs-Cc: debian-de...@lists.debian.org, guilherme@gmail.com * Package name: ansible-creator Version : 24.2.0 Upstream Contact: Ansible by Red Hat * URL : https://github.com/ansible

Bug#1067194: ITP: ansible-creator -- fastest way to generate all your ansible content

2024-03-19 Thread Guilherme de Paula Xavier Segundo
Package: wnpp Severity: wishlist Owner: Guilherme de Paula Xavier Segundo X-Debbugs-Cc: debian-devel@lists.debian.org, guilherme@gmail.com * Package name: ansible-creator Version : 24.2.0 Upstream Contact: Ansible by Red Hat * URL : https://github.com/ansible

Bug#1067194: ITP: ansible-creator -- fastest way to generate all your ansible content

2024-03-19 Thread Guilherme de Paula Xavier Segundo
Package: wnpp Severity: wishlist Owner: Guilherme de Paula Xavier Segundo X-Debbugs-Cc: debian-de...@lists.debian.org, guilherme@gmail.com * Package name: ansible-creator Version : 24.2.0 Upstream Contact: Ansible by Red Hat * URL : https://github.com/ansible

Re: Tremolo with staccato

2024-03-19 Thread Xavier Scheuer
ypond-user/2023-01/msg00452.html The trem-mod.ly file from Valentin is impressive as well, but maybe a little bit overkill for this case. https://lists.gnu.org/archive/html/lilypond-user/2023-01/msg00461.html Kind regards, Xavier

[FRnOG] [MISC] RIPE NCC consultation pour le systeme de facturation 2025

2024-03-19 Thread Xavier Le Bris
membres. Vous pouvez trouver plus d informations sur le système de facturation 2025 : https://www.ripe.net/membership/mail/member-and-community-consultations/charging-scheme-2025-consultation/ Cordialement, Xavier Le Bris RIPE NCC --- Liste de diffusion du FRnOG http

Re: B.A.C.H. motif

2024-03-19 Thread Xavier Scheuer
kup\rotate #180 \musicglyph #"clefs.C" #})) \bar "" } \layout { \context { \Staff \hide TimeSignature \override KeySignature.stencil = #(lambda (grob) (grob-interpret-markup grob #{ \markup\musicglyph #"accidentals.natural" #})) } } } } Kind regards, Xavier

[kdeplasma-addons] [Bug 483835] New: Allow information about the picture of the day to be displayed

2024-03-17 Thread Vincent-Xavier JUMEL
https://bugs.kde.org/show_bug.cgi?id=483835 Bug ID: 483835 Summary: Allow information about the picture of the day to be displayed Classification: Plasma Product: kdeplasma-addons Version: unspecified Platform: Debian

[Bug 2058098] Re: Gpodder doesn't start anymore on Ubuntu 24.04 problem with Python 3.12 - ModuleNotFoundError: No module named 'imp'

2024-03-16 Thread Xavier Guillot
Gpodder doesn't start anymore on Ubuntu 24.04 due to Python 3.12 : File "/usr/bin/gpodder", lines 172 to 181 : if gpodder.ui.gtk: from gpodder.gtkui import app gpodder.ui_folders.insert(0, os.path.join(ui_folder, 'gtk')) app.main(options) else:

[Bug 2058098] Re: Gpodder doesn't start anymore on Ubuntu 24.04 problem with Python 3.12 - ModuleNotFoundError: No module named 'imp'

2024-03-16 Thread Xavier Guillot
I don't know why the bug is assigned to project "loupe", as I well wrote "gpodder" for the package affected ! ** Attachment added: "Gpodder-Ubuntu.png" https://bugs.launchpad.net/ubuntu/+source/loupe/+bug/2058098/+attachment/5756383/+files/Gpodder-Ubuntu.png ** Description changed: Hi,

[Bug 2058098] [NEW] Gpodder doesn't start anymore on Ubuntu 24.04 problem with Python 3.12 - ModuleNotFoundError: No module named 'imp'

2024-03-16 Thread Xavier Guillot
Public bug reported: Hi, since a few days I can't launch Gpodder (podcast program - https://gpodder.github.io/) anymore, it's because Ubuntu 24.04 now uses Python 3.12, and gpodder 3.11.4 does not support it. It's needed to have the package maintainer please apply

[Desktop-packages] [Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[Touch-packages] [Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[Ubuntustudio-bugs] [Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[Edubuntu-bugs] [Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-16 Thread Xavier Guillot
Hi, for Gnome-packagekit it's related to this behavior : https://bugs.launchpad.net/ubuntu/+source/gnome-packagekit/+bug/2046843 I run Ubuntu development branch 24.04 and I have a problem with Gnome PackageKit 43.0-2 : application launches well, but if I write a program / package name in the

[gcc r14-9500] libcc1: fix include

2024-03-16 Thread François-Xavier Coudert via Gcc-cvs
https://gcc.gnu.org/g:5213047b1d50af63dfabb5e5649821a6cb157e33 commit r14-9500-g5213047b1d50af63dfabb5e5649821a6cb157e33 Author: Francois-Xavier Coudert Date: Sat Mar 16 09:50:00 2024 +0100 libcc1: fix include Use INCLUDE_VECTOR before including system.h, instead of directly

[ovs-dev] [PATCH ovn] tests: Ignore transaction errors in MAC Binding.

2024-03-15 Thread Xavier Simonart
Fixes: 65f9f010b426 ("tests: Check unit tests logs for errors.") Signed-off-by: Xavier Simonart --- tests/ovn-macros.at | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/ovn-macros.at b/tests/ovn-macros.at index 3410afb74..5c69facd2 100644 --- a/tests/ovn-macros.at +++ b

[ovs-dev] [PATCH ovn v3 2/2] tests: Remove table numbers from "action parsing".

2024-03-15 Thread Xavier Simonart
This patch uses the recently introduced macros defining openflow table numbers. Signed-off-by: Xavier Simonart --- v2: - Handled Ales' comments (i.e. fix few remaining hard-coded numbers) - Rebase on origin/main v3: - Rebase on origin/main --- tests/ovn-macros.at | 4 + tests/ovn.at

[ovs-dev] [PATCH ovn v3 1/2] tests: Make "action parsing" support expansion.

2024-03-15 Thread Xavier Simonart
There are only two changes: - The AT_DATA content is not double quoted between square brackets. - All '[' have been replaced by '[[' and all ']' by ']]' This patch will be used in subsequent patch to remove hard-coded table numbers. Signed-off-by: Xavier Simonart --- v2: - Rebase on origin/main

Re: [ovs-dev] [PATCH ovn v3] tests: Remove table numbers from "action parsing".

2024-03-15 Thread Xavier Simonart
Hi Mark Sorry, drop this patch - missing the 1/2. Will resend. Thanks Xavier On Fri, Mar 15, 2024 at 7:03 PM Xavier Simonart wrote: > This patch uses the recently introduced macros defining openflow table > numbers. > > Signed-off-by: Xavier Simonart > > --- > v2: - H

[ovs-dev] [PATCH ovn v3] tests: Remove table numbers from "action parsing".

2024-03-15 Thread Xavier Simonart
This patch uses the recently introduced macros defining openflow table numbers. Signed-off-by: Xavier Simonart --- v2: - Handled Ales' comments (i.e. fix few remaining hard-coded numbers) - Rebase on origin/main v3: - Rebase on origin/main --- tests/ovn-macros.at | 4 + tests/ovn.at

[Touch-packages] [Bug 2047447] Re: No valid source.list found while upgrading from mantic to noble

2024-03-15 Thread Xavier Humbert
I can confirm that putting aside vscode.list allowed me to do the upgrade Thanks Xavier -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to python-apt in Ubuntu. https://bugs.launchpad.net/bugs/2047447 Title: No valid

[Bug 2047447] Re: No valid source.list found while upgrading from mantic to noble

2024-03-15 Thread Xavier Humbert
I can confirm that putting aside vscode.list allowed me to do the upgrade Thanks Xavier -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2047447 Title: No valid source.list found while upgrading from

[Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-14 Thread Xavier Guillot
Fix released for Firrefox (Nightly) 125. Since a few days, I can't launch Gpodder (podcast program) anymore, is it also related to this bug or is it something different ? "[gpodder.log] ERROR: Uncaught exception: Traceback (most recent call last): File "/usr/bin/gpodder", line 181, in

[Ubuntustudio-bugs] [Bug 2046844] Re: AppArmor user namespace creation restrictions cause many applications to crash with SIGTRAP

2024-03-14 Thread Xavier Guillot
Fix released for Firrefox (Nightly) 125. Since a few days, I can't launch Gpodder (podcast program) anymore, is it also related to this bug or is it something different ? "[gpodder.log] ERROR: Uncaught exception: Traceback (most recent call last): File "/usr/bin/gpodder", line 181, in

  1   2   3   4   5   6   7   8   9   10   >