Re: flamethrower vs. http-parser

2024-12-11 Thread Petr Menšík
Upstream has switched to cpp-httplib after the latest release, which I have packaged. Unfortunately that does not offer any decent parsing of URL, which would separate URL text into separate components. Yes, if http-parser is going to be removed, we may return to bundled url_parser. Or we coul

Re: flamethrower vs. http-parser

2024-12-11 Thread Vitaly Zaitsev via devel
On 11/12/2024 15:07, Petr Menšík wrote: Or we could use libcurl-url(3) for parsing URL Or better https://github.com/ada-url/ada. -- Sincerely, Vitaly Zaitsev (vit...@easycoding.org) -- ___ devel mailing list -- devel@lists.fedoraproject.org To unsu

Re: Epson inkjet printer drivers orphaned

2024-12-11 Thread Ian Pilcher
On 12/11/24 3:15 AM, Zdenek Dohnal wrote: If the device supports AirPrint/IPP Everywhere/Mopria/IPP over USB or any other driverless standard, the printer works out of the box - or that is the intent :) . Then security/setup intentions of vendor, OS and user come into the picture - some vendors

Re: Call for the community: Packager Dashboard and bunch of packages

2024-12-11 Thread Frantisek Zatloukal
Thanks a lot Jonathan, I've given you admin rights to all the packages you've mentioned! On Thu, Dec 5, 2024 at 6:04 PM Jonathan Wright via devel < devel@lists.fedoraproject.org> wrote: > Sorry to see you moving around. Hope we'll still see you in Fedora land! > > I'd be happy to take a few of y

EDQUOT lurks in most apps

2024-12-11 Thread John Reiser
There's a bug in this program. Can you spot it? = #include int main(int argc, char *argv[]) { printf("Hello, world!\n"); return 0; } = The bug is that EDQUOT (Disk Quota exceeded: /usr/include/asm-generic/errno.h) is not detected. If a shell re-directs stdout into a file, t

Re: EDQUOT lurks in most apps

2024-12-11 Thread Stephen Smoogen
On Wed, 11 Dec 2024 at 11:28, John Reiser wrote: > There's a bug in this program. Can you spot it? > = > #include > > int > main(int argc, char *argv[]) > { > printf("Hello, world!\n"); > return 0; > } > = > > The bug is that EDQUOT (Disk Quota exceeded: > /usr/include/asm-gen

Re: EDQUOT lurks in most apps

2024-12-11 Thread Tulio Magno Quites Machado Filho
Stephen Smoogen writes: > I have seen this listed as NOT A BUG even with realtime programmers because > the application can be run in all kinds of ways which could induce failures > that are 'environment' versus 'application'. I expect it depends on the > exact environment but what is the correct

Next MUMPS petsc Hypre upgrades

2024-12-11 Thread Antonio T. sagitter
Hi all. In some days, i will build in Rawhide PETSc-3.22.2 MUMPS-5.7.3 hypre-2.32.0 sundials-7.1.1 and all related packages. Regards. -- --- Antonio Trande Fedora Project https://fedoraproject.org/wiki/User:Sagitter mailto: sagit...@fedoraproject.org GPG key: 0x40FDA7B70789A9CD GPG keys server

Re: EDQUOT lurks in most apps

2024-12-11 Thread Miroslav Suchý
Dne 11. 12. 24 v 5:27 odp. John Reiser napsal(a): If a shell re-directs stdout into a file, then the data might never be captured, Similar problem is when user redirect the output to /dev/null - the output is never printed. Or when user push power button between printf() and return. -- M

Fedora CoreOS Community Meeting Minutes 2024-12-11

2024-12-11 Thread Michael Armijo
Minutes: https://meetbot.fedoraproject.org/meeting-1_matrix_fedoraproject-org/2024-12-11/fedora-coreos-meeting.2024-12-11-16.30.html Minutes (text): https://meetbot-raw.fedoraproject.org/meeting-1_matrix_fedoraproject-org/2024-12-11/fedora-coreos-meeting.2024-12-11-16.30.txt Log: https://meetbot.fe

Re: HEADS UP: icu 76 coming to rawhide

2024-12-11 Thread Tom Hughes via devel
On 11/12/2024 08:18, Vitaly Zaitsev via devel wrote: On 05/12/2024 19:22, Pete Walter wrote: I am in the process of updating icu from 74.2 to 76.1 in rawhide It looks like there were some API changes in version 76.1. From the libkiwix package build log: In file included from /usr/include/un

Re: Epson inkjet printer drivers orphaned

2024-12-11 Thread Zdenek Dohnal
On 12/10/24 20:04, Mateus Rodrigues Costa wrote: I am a user of epson-inkjet-printer-escpr, my question is if, when CUPS drops driver support for driver in the near future in favor of IPP, what will happen to Epson printer driver. If your device really needs the classic driver from epson-inkje

Syntax highlighting with tree-sitter-rpmspec

2024-12-11 Thread Andreas Schneider
Hi, I'm working on tree-sitter-rpmspec [1] for syntax highlighting using tree- sitter e.g. in neovim. In the meantime it is working quite well. I don't cover 100% of the spec file specification yet and there are still issues with macros (especially macro nesting). I'm slowly getting there. Belo

Re: HEADS UP: icu 76 coming to rawhide

2024-12-11 Thread Vitaly Zaitsev via devel
On 11/12/2024 09:23, Tom Hughes wrote: ikely there is just a #include missing - it was probably being included by accident before as a side effect of something else. Yes, /usr/include/unicode/char16ptr.h (line 317[1]) explicitly uses std::is_convertible_v but doesn't have #include in this p

Re: HEADS UP: icu 76 coming to rawhide

2024-12-11 Thread Vitaly Zaitsev via devel
On 05/12/2024 19:22, Pete Walter wrote: I am in the process of updating icu from 74.2 to 76.1 in rawhide It looks like there were some API changes in version 76.1. From the libkiwix package build log: In file included from /usr/include/unicode/unistr.h:37, from /usr/include/u

Fedora eln compose report: 20241212.n.0 changes

2024-12-11 Thread Fedora ELN Report
OLD: Fedora-eln-20241211.n.0 NEW: Fedora-eln-20241212.n.0 = SUMMARY = Added images:0 Dropped images: 0 Added packages: 2 Dropped packages:4 Upgraded packages: 15 Downgraded packages: 0 Size of added packages: 13.46 MiB Size of dropped packages:8.47 MiB

Re: EDQUOT lurks in most apps

2024-12-11 Thread Florian Weimer
* John Reiser: > The C runtime library (package glibc) implementation of exit() > could help by calling close_range() of low-numbered output > [not input!] file descriptors, especially stdout, and checking > for errors. ENOSPC also has this problem. We would have to fsync (after the implicit ffl