[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-04-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|CLOSED
   Fixed In Version||perl-Curses-1.44-7.fc41
 Resolution|--- |ERRATA
Last Closed||2024-04-25 09:54:20



--- Comment #10 from Fedora Update System  ---
FEDORA-2024-1e7e19e4d4 (perl-Curses-1.44-7.fc41) has been pushed to the Fedora
41 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c10
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-04-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448
Bug 2261448 depends on bug 2276620, which changed state.

Bug 2276620 Summary: perl-Curses fails to build on i686 architecture
https://bugzilla.redhat.com/show_bug.cgi?id=2276620

   What|Removed |Added

 Status|MODIFIED|CLOSED
 Resolution|--- |ERRATA




-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-04-25 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Fedora Update System  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED



--- Comment #9 from Fedora Update System  ---
FEDORA-2024-1e7e19e4d4 (perl-Curses-1.44-7.fc41) has been submitted as an
update to Fedora 41.
https://bodhi.fedoraproject.org/updates/FEDORA-2024-1e7e19e4d4


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c9
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-04-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448



--- Comment #8 from Petr Pisar  ---
First error reported in the build.log is:

In file included from Curses.c:434:
CursesWide.c: In function ‘c_wstr2sv’:
CursesWide.c:84:15: error: assignment to ‘wint_t *’ {aka ‘unsigned int *’} from
incompatible pointer type ‘wchar_t *’ {aka ‘long int *’}
[-Wincompatible-pointer-types]
   84 | for (ws_p = ws; *ws_p; ws_p++) {
  |   ^

The variables are declared like this:

static void
c_wstr2sv(SV *  const sv,
  wchar_t * const ws) {
/*
  Set SV to a Perl string holding a given wide string
-*/
wint_t *ws_p;
int need_utf8 = 0;
size_t ws_len = wcslen(ws);

and used like this (the line from the error message):

for (ws_p = ws; *ws_p; ws_p++) {

C17 standard in 7.29.1 section defines that wint_t is an integer which can hold
any value of the extended character set (i.e. wchar_t) and at least one value
which is not representable in the extended character set (i.e. WEOF). That
means that size of wint_t cannot be less than size of wchar_t. Here on i686
"unsigned int" unsigned 32-bit and "long int" is signed 32-bit. While the
conversion of the extended character value could be preserved (e.g. the
extended charcter set ranges from 0 to 2^21), reinterpreting a wchar_t by a
dereferencing a pointer to a wint_t could mangle the sign because the compiler
thinks that the type have a different rank.

Either it's a bug in GCC, or something incorrectly redigined the types, or it
works as intended and one only need to explicitly cast "ws_p = (wint_t*)ws". I
would the have dig deeper.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c8
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-04-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Steve Traylen  changed:

   What|Removed |Added

 Depends On||2276620





Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=2276620
[Bug 2276620] perl-Curses fails to build on i686 architecture
-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-04-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448



--- Comment #7 from Steve Traylen  ---
Still only i686 build fails
https://koji.fedoraproject.org/koji/taskinfo?taskID=116767277

CursesFunWide.c: In function ‘XS_CURSES_addstring’:
CursesFunWide.c:117:26: error: passing argument 2 of ‘waddnwstr’ from
incompatible pointer type [-Wincompatible-pointer-types]
  117 | ret = waddnwstr(win, wstr, len);
  |  ^~~~
  |  |
  |  wint_t * {aka unsigned int *}
In file included from c-config.h:7,
 from Curses.c:18:

https://koji.fedoraproject.org/koji/taskinfo?taskID=116767277


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c7
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-02-16 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Petr Pisar  changed:

   What|Removed |Added

 CC||ppi...@redhat.com



--- Comment #6 from Petr Pisar  ---
(In reply to Steve Traylen from comment #4)
> Don't understand...
> 
> mock -r fedora-rawhide-x86_64 --install bash
[...] 
> Transaction failed: Signature verification failed.
> PGP check for package "tar-2:1.35-3.fc40.x86_64"
> (/var/lib/mock/dnf5-test/root/var/cache/dnf/fedora-2d95c80a1fa0a67d/packages/
> tar-1.35-3.fc40.x86_64.rpm) from repo "fedora" has failed: Import of the key
> didn't help, wrong key?

See
.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c6
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-02-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448



--- Comment #5 from Steve Traylen  ---
Hmm i686 build fails only:

https://koji.fedoraproject.org/koji/taskinfo?taskID=113554205


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c5
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-02-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Steve Traylen  changed:

   What|Removed |Added

   Doc Type|--- |If docs needed, set a value



--- Comment #4 from Steve Traylen  ---
Don't understand...

mock -r fedora-rawhide-x86_64 --install bash

...

Running transaction
Importing PGP key 0xA15B79CC:
 Userid : "Fedora (40) "
 Fingerprint: 115DF9AEF857853EE8445D0A0727707EA15B79CC
 From   :
file:///usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-40-primary
The key was successfully imported.
Importing PGP key 0xA15B79CC:
 Userid : "Fedora (40) "
 Fingerprint: 115DF9AEF857853EE8445D0A0727707EA15B79CC
 From   :
file:///usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-40-primary
The key was successfully imported.
Importing PGP key 0x18B8E74C:
 Userid : "Fedora (39) "
 Fingerprint: E8F23996F23218640CB44CBE75CF5AC418B8E74C
 From   :
file:///usr/share/distribution-gpg-keys/fedora/RPM-GPG-KEY-fedora-39-primary
The key was successfully imported.

Transaction failed: Signature verification failed.
PGP check for package "tar-2:1.35-3.fc40.x86_64"
(/var/lib/mock/dnf5-test/root/var/cache/dnf/fedora-2d95c80a1fa0a67d/packages/tar-1.35-3.fc40.x86_64.rpm)
from repo "fedora" has failed: Import of the key didn't help, wrong key?


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c4
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-01-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448



--- Comment #3 from Fedora Release Engineering  ---
Created attachment 2012849
  --> https://bugzilla.redhat.com/attachment.cgi?id=2012849=edit
state.log


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c3
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-01-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448



--- Comment #1 from Fedora Release Engineering  ---
Created attachment 2012847
  --> https://bugzilla.redhat.com/attachment.cgi?id=2012847=edit
build.log

file build.log too big, will only attach last 32768 bytes


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c1
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2261448] perl-Curses: FTBFS in Fedora rawhide/f40

2024-01-29 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2261448



--- Comment #2 from Fedora Release Engineering  ---
Created attachment 2012848
  --> https://bugzilla.redhat.com/attachment.cgi?id=2012848=edit
root.log

file root.log too big, will only attach last 32768 bytes


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2261448

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla=report-spam_desc=Report%20of%20Bug%202261448%23c2
--
___
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue