Review requests: mingw-python-tomli, mingw-qt6-qt5compat, mingw-qt6-qtwebchannel

2022-01-23 Thread Sandro Mani

Hi

I have the following packages up for review:

- https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=2044188 - 
mingw-python-tomli
- https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=2043485 - 
mingw-qt6-qt5compat
- https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=2009269 - 
mingw-qt6-qtwebchannel


I'd appreciate in particular the review of mingw-python-tomli as it is a 
currently missing dependency for mingw-python-setuptools-scm, causing 
mingw-python-dateutil to be FTBFS.


Happy to review in exchange.

Thanks
Sandro
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


libunistring license change

2022-01-23 Thread Daiki Ueno
Hello,

The new libunistring release (1.0) has been announced with a change of
license: from "LGPLv3+ or GPLv2" to "LGPLv3+ or GPLv2+".

Regards,
-- 
Daiki Ueno
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2043320] perl-Module-CoreList-5.20220120 is available

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2043320

Jitka Plesnikova  changed:

   What|Removed |Added

   Fixed In Version||perl-Module-CoreList-5.2022
   ||0120-1.fc36
   Doc Type|--- |If docs needed, set a value




-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2043320
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2037243] perl-String-Similarity missing from EPEL

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2037243

Fedora Update System  changed:

   What|Removed |Added

 Status|NEW |MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-e5e754fef7 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-e5e754fef7


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2037243
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: mv is massively slower on the host rather than in a nspawn chroot, regression somewhere?

2022-01-23 Thread Chris Murphy
On Sun, Jan 23, 2022 at 5:30 PM Robert-André Mauchin  wrote:
>
> Hi,
>
> So I have an annoying bug that started near the beginnings of F35.
> My papirus-icon-theme became very slow to install:
> https://bugzilla.redhat.com/show_bug.cgi?id=2029709#c18
>
> During the installation, all the files are copied, then renamed by rpm
> (no idea why it works like this).
>
> It works fast in a Mock chroot but incredibly slow on bare metal.
>
> I've done a small test of moving files:
>
> [root@cassini icons]# mkdir test
> [root@cassini icons]# for (( i = 0; i < 1; i++ )) do > test/file_$i;
> done
> [root@cassini icons]# cd test
>
> On host:
>
> time $(for f in *; do mv "$f" "${f%}.txt"; done)
> real2m3,500s
> user0m3,966s
> sys 2m0,431s
>
> In nspawn container:
>
>  sh-5.1# time $(for f in *; do mv "$f" "${f%}.txt"; done)
> real0m6.702s
> user0m4.237s
> sys 0m3.344s
>
> Since papirus-icon-theme contains more than 100,000 (small) files, it is
> a problem. One minute of waiting is ok, 20 mn is not.
>
> What can cause this? I read that nspawn virtualizes the file system,
> could it be file system related on the host? (I use btrfs btw)
>
> Any input welcome!

What file system is being used in each case?

This is a bit obscure but... cp and mv use reflink=auto. On XFS and
Btrfs this means it'll make reflinks (copies metadata, doesn't
duplicate the data extents) if it can. Falling back to a full copy
(metadata and data extents).

It might not be possible due to an obscure VFS rule that disallows
reflinks (for reasons I don't understand) when the copy or move
crosses mount point boundaries. This includes bind mounts of
directories. Bind mounts are also what are employed behind the scene
with 'mount -o subvol' mount option on Btrfs, which we use by default
in Fedora Workstation and Cloud Edition, and all the desktop spins.

The nspawn container, I'm not super familiar with how it works. I
think on Btrfs, it will create nested subvolumes, i.e. they are not
mounted with the subvol mount option, hence no mount point boundary.
But on other file systems, I think nspawn creates a loop mounted file
system?


-- 
Chris Murphy
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[EPEL-devel] Fedora EPEL 8 updates-testing report

2022-01-23 Thread updates
The following builds have been pushed to Fedora EPEL 8 updates-testing

python-tkrzw-0.1.28-3.el8
radicale-3.1.2-26.el8
tkrzw-1.0.22-1.el8
tuptime-5.1.0-1.el8
uARMSolver-0.2.3-1.el8

Details about builds:



 python-tkrzw-0.1.28-3.el8 (FEDORA-EPEL-2022-4ad8a0bf45)
 TKRZW Python bindings

Update Information:

Tkrzw version bump

ChangeLog:

* Sun Jan 23 2022 TI_Eugene  - 0.1.28-3
- Rebuild against tkrzw-1.0.22
* Fri Jan 21 2022 Fedora Release Engineering  - 
0.1.28-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild




 radicale-3.1.2-26.el8 (FEDORA-EPEL-2022-7467d049e1)
 A simple CalDAV (calendar) and CardDAV (contact) server

Update Information:

Update to 3.1.2 (#2043986)    Version 3.1.1

ChangeLog:

* Sun Jan 23 2022 Peter Bieringer  - 3.1.2-26
- Update to 3.1.2 (#2043986)
* Wed Jan 19 2022 Peter Bieringer  - 3.1.1-24
- Version 3.1.1
- Fix URLs to major version upgrade notes
- Replace NEWS.md by CHANGELOG.md

References:

  [ 1 ] Bug #2042195 - radicale-3.1.1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2042195
  [ 2 ] Bug #2043986 - radicale-3.1.2 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2043986




 tkrzw-1.0.22-1.el8 (FEDORA-EPEL-2022-4ad8a0bf45)
 A straightforward implementation of DBM

Update Information:

Tkrzw version bump

ChangeLog:

* Sun Jan 23 2022 TI_Eugene  - 1.0.22-1
- Version bump
* Sat Jan 22 2022 Fedora Release Engineering  - 
1.0.21-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild




 tuptime-5.1.0-1.el8 (FEDORA-EPEL-2022-2e4476aeed)
 Report historical system real time

Update Information:

New upstream release

ChangeLog:

* Sun Jan 23 2022 Frank Crawford  5.1.0-1
- New upstream release
* Sat Jan 22 2022 Fedora Release Engineering  - 
5.0.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild




 uARMSolver-0.2.3-1.el8 (FEDORA-EPEL-2022-6011284009)
 Universal Association Rule Mining Solver

Update Information:

Update to the latest upstream's release

ChangeLog:

* Sun Jan 23 2022 Iztok Fister Jr.  - 0.2.3-1
- Add docs
* Sat Jan 22 2022 Fedora Release Engineering  - 
0.2.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


___
epel-devel mailing list -- epel-devel@lists.fedoraproject.org
To unsubscribe send an email to epel-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/epel-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2038059] perl-CGI-Compile for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2038059

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-fc8d1b9866 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-fc8d1b9866

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2038059
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2041077] Please build perl-Net-XMPP for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2041077

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-351a4e6303 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-351a4e6303

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2041077
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2042595] perl-HTTP-ProxyAutoConfig for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2042595

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-880f8c4258 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-880f8c4258

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2042595
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2033630] Add perl-IRI for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2033630

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-56faadb7a0 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-56faadb7a0

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2033630
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2033601] Add perl-Geo-Distance to EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2033601

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-dc78f35285 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-dc78f35285

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2033601
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2038239] Please branch and build perl-Test-Pod-LinkCheck for EPEL-9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2038239

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-5473bf1bfa has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-5473bf1bfa

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2038239
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2038180] Add perl-XML-CommonNS to EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2038180

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-f1f30a32a9 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-f1f30a32a9

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2038180
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2041247] perl-LWP-Online for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2041247

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #4 from Fedora Update System  ---
FEDORA-EPEL-2022-8f91a25c60 has been pushed to the Fedora EPEL 9 testing
repository.

You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-8f91a25c60

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2041247
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: mv is massively slower on the host rather than in a nspawn chroot, regression somewhere?

2022-01-23 Thread Robert-André Mauchin

On 1/24/22 01:52, Tom Hughes wrote:


Do you have the nosync plugin enabled in your mock? That
will shim system calls that try and sync to disk and suppress
the actual sync in the name of greater performance.

Tom



I don't think so, my config is

config_opts['chroothome'] = '/builddir'
config_opts['basedir'] = '/var/lib/mock'
config_opts['rpmbuild_timeout'] = 86400
config_opts['chroot_setup_cmd'] = 'install @buildsys-build pigz lbzip2'
config_opts['target_arch'] = 'x86_64'
config_opts['legal_host_arches'] = ('x86_64',)
config_opts['root'] = 'f36-candidate-x86_64'
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
config_opts['package_manager'] = 'dnf'
config_opts['use_bootstrap'] = True
config_opts['environment']['LANG'] = 'C.UTF-8'
config_opts['releasever'] = '36'
config_opts['rpmbuild_networking'] = False
config_opts['use_host_resolv'] = False
config_opts['dynamic_buildrequires'] = True
config_opts['dynamic_buildrequires_max_loops'] = 10

config_opts['plugin_conf']['root_cache_enable'] = True
config_opts['plugin_conf']['yum_cache_enable'] = True
config_opts['plugin_conf']['ccache_enable'] = True

config_opts['macros']['%_host'] = 'x86_64-koji-linux-gnu'
config_opts['macros']['%_host_cpu'] = 'x86_64'
config_opts['macros']['%vendor'] = 'Koji'
config_opts['macros']['%distribution'] = 'fc36'
config_opts['macros']['%_topdir'] = '/builddir/build'
config_opts['macros']['%_rpmfilename'] = 
'%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm'

config_opts['macros']['%packager'] = 'Koji'

config_opts['plugin_conf']['package_state_enable'] = False
config_opts['plugin_conf']['ccache_opts']['compress'] = True
config_opts['plugin_conf']['root_cache_opts']['compress_program'] = "pigz"
config_opts['macros']['%__gzip'] = '/usr/bin/pigz'
config_opts['macros']['%__bzip2'] = '/usr/bin/lbzip2'


config_opts['yum.conf'] = """
[main]
keepcache=1
debuglevel=2
reposdir=/dev/null
logfile=/var/log/yum.log
retries=20
obsoletes=1
gpgcheck=0
assumeyes=1
syslog_ident=mock
syslog_device=
install_weak_deps=0
metadata_timer_sync=8
metadata_expire=8
mdpolicy=group:primary
best=1
module_platform_id=platform:f36
fastestmirror=1
max_parallel_downloads=8
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: mv is massively slower on the host rather than in a nspawn chroot, regression somewhere?

2022-01-23 Thread Tom Hughes via devel

On 24/01/2022 00:30, Robert-André Mauchin wrote:

During the installation, all the files are copied, then renamed by rpm 
(no idea why it works like this).


Probably so the file is replaced atomically, and you either
have the old or new version but never a partial version.


It works fast in a Mock chroot but incredibly slow on bare metal.

I've done a small test of moving files:

[root@cassini icons]# mkdir test
[root@cassini icons]# for (( i = 0; i < 1; i++ )) do > test/file_$i; 
done

[root@cassini icons]# cd test

On host:

time $(for f in *; do mv "$f" "${f%}.txt"; done)
real    2m3,500s
user    0m3,966s
sys 2m0,431s

In nspawn container:

 sh-5.1# time $(for f in *; do mv "$f" "${f%}.txt"; done)
real    0m6.702s
user    0m4.237s
sys 0m3.344s

Since papirus-icon-theme contains more than 100,000 (small) files, it is 
a problem. One minute of waiting is ok, 20 mn is not.


What can cause this? I read that nspawn virtualizes the file system, 
could it be file system related on the host? (I use btrfs btw)


Do you have the nosync plugin enabled in your mock? That
will shim system calls that try and sync to disk and suppress
the actual sync in the name of greater performance.

Tom

--
Tom Hughes (t...@compton.nu)
http://compton.nu/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


mv is massively slower on the host rather than in a nspawn chroot, regression somewhere?

2022-01-23 Thread Robert-André Mauchin

Hi,

So I have an annoying bug that started near the beginnings of F35.
My papirus-icon-theme became very slow to install:
https://bugzilla.redhat.com/show_bug.cgi?id=2029709#c18

During the installation, all the files are copied, then renamed by rpm 
(no idea why it works like this).


It works fast in a Mock chroot but incredibly slow on bare metal.

I've done a small test of moving files:

[root@cassini icons]# mkdir test
[root@cassini icons]# for (( i = 0; i < 1; i++ )) do > test/file_$i; 
done

[root@cassini icons]# cd test

On host:

time $(for f in *; do mv "$f" "${f%}.txt"; done)
real2m3,500s
user0m3,966s
sys 2m0,431s

In nspawn container:

 sh-5.1# time $(for f in *; do mv "$f" "${f%}.txt"; done)
real0m6.702s
user0m4.237s
sys 0m3.344s

Since papirus-icon-theme contains more than 100,000 (small) files, it is 
a problem. One minute of waiting is ok, 20 mn is not.


What can cause this? I read that nspawn virtualizes the file system, 
could it be file system related on the host? (I use btrfs btw)


Any input welcome!

Best regards,

Robert-André
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[EPEL-devel] Re: question about review process excemptions for Python 3

2022-01-23 Thread Manuel Wolfshant

On 1/24/22 00:20, Felix Schwarz wrote:


Am 23.01.22 um 10:57 schrieb Nick Howitt via epel-devel:
A bit o/t, but will you be updating the python2-certbot-dns-* 
packages as well?


All certbot plugins currently in EPEL 7 will transition to Python 3 as 
well (all packages will be in a single upgrade). So technically the 
Python 2 packages will go away but yum will replace it with a Python 3 
version of the certbot plugin.


- Does that answer your question?
- Is not having a *Python 2* version of a plugin a problem for you?
- Which dns plugin do you care about most? Assuming I can get certbot
  eventually to use Python 3 (this task is haunting me for too many
  months/years now) could you test the upgrade to ensure everything keeps
  working? 



I would certainly test the upgrade but I am not using any dns plugin.

___
epel-devel mailing list -- epel-devel@lists.fedoraproject.org
To unsubscribe send an email to epel-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/epel-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[EPEL-devel] Re: question about review process excemptions for Python 3

2022-01-23 Thread Nick Howitt via epel-devel



On 23/01/2022 22:20, Felix Schwarz wrote:


Am 23.01.22 um 10:57 schrieb Nick Howitt via epel-devel:
A bit o/t, but will you be updating the python2-certbot-dns-* 
packages as well?


All certbot plugins currently in EPEL 7 will transition to Python 3 as 
well (all packages will be in a single upgrade). So technically the 
Python 2 packages will go away but yum will replace it with a Python 3 
version of the certbot plugin.


- Does that answer your question?
- Is not having a *Python 2* version of a plugin a problem for you?
- Which dns plugin do you care about most? Assuming I can get certbot
  eventually to use Python 3 (this task is haunting me for too many
  months/years now) could you test the upgrade to ensure everything keeps
  working?

Felix
I use python2-certbot-dns-cloudflare, so if certbot were to go to 
python3 then I would need this plugin to go as well, and yes, I can test 
it. Obviously python2-certbot would need to go to 3 at the same time, 
but I assume you have that covered.


Nick___
epel-devel mailing list -- epel-devel@lists.fedoraproject.org
To unsubscribe send an email to epel-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/epel-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[EPEL-devel] Re: question about review process excemptions for Python 3

2022-01-23 Thread Felix Schwarz


Am 23.01.22 um 10:57 schrieb Nick Howitt via epel-devel:

A bit o/t, but will you be updating the python2-certbot-dns-* packages as well?


All certbot plugins currently in EPEL 7 will transition to Python 3 as well 
(all packages will be in a single upgrade). So technically the Python 2 
packages will go away but yum will replace it with a Python 3 version of the 
certbot plugin.


- Does that answer your question?
- Is not having a *Python 2* version of a plugin a problem for you?
- Which dns plugin do you care about most? Assuming I can get certbot
  eventually to use Python 3 (this task is haunting me for too many
  months/years now) could you test the upgrade to ensure everything keeps
  working?

Felix
___
epel-devel mailing list -- epel-devel@lists.fedoraproject.org
To unsubscribe send an email to epel-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/epel-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2044096] New: perl-DateTime-Format-Natural-1.13 is available

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2044096

Bug ID: 2044096
   Summary: perl-DateTime-Format-Natural-1.13 is available
   Product: Fedora
   Version: rawhide
Status: NEW
 Component: perl-DateTime-Format-Natural
  Keywords: FutureFeature, Triaged
  Assignee: jples...@redhat.com
  Reporter: upstream-release-monitor...@fedoraproject.org
QA Contact: extras...@fedoraproject.org
CC: iarn...@gmail.com, jples...@redhat.com,
perl-devel@lists.fedoraproject.org, ppi...@redhat.com
  Target Milestone: ---
Classification: Fedora



Latest upstream release: 1.13
Current version/release in rawhide: 1.12-3.fc35
URL: http://search.cpan.org/dist/DateTime-Format-Natural/

Please consult the package updates policy before you issue an update to a
stable branch: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/


More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring


Please keep in mind that with any upstream change, there may also be packaging
changes that need to be made. Specifically, please remember that it is your
responsibility to review the new version to ensure that the licensing is still
correct and that no non-free or legally problematic items have been added
upstream.


Based on the information from Anitya:
https://release-monitoring.org/project/7086/


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2044096
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-namespace-sweep (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 07:03:11 UTC

From 904461f8484977cc5c89b13497c1f5edb87f1a91 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 07:03:05 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-namespace-sweep.spec b/perl-namespace-sweep.spec
index 3ceb44b..d6b600e 100644
--- a/perl-namespace-sweep.spec
+++ b/perl-namespace-sweep.spec
@@ -1,6 +1,6 @@
 Name:   perl-namespace-sweep
 Version:0.006
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:Sweep up imported subs in your classes
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/namespace-sweep
@@ -64,6 +64,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.006-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Fri Jul 23 2021 Fedora Release Engineering  - 
0.006-15
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-namespace-sweep/c/904461f8484977cc5c89b13497c1f5edb87f1a91?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-WWW-Form-UrlEncoded (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 06:35:41 UTC

From 58b71d9dddf5b5d53ed641b7017d25f6db131035 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 06:35:35 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-WWW-Form-UrlEncoded.spec b/perl-WWW-Form-UrlEncoded.spec
index eec3e50..9c5be6a 100644
--- a/perl-WWW-Form-UrlEncoded.spec
+++ b/perl-WWW-Form-UrlEncoded.spec
@@ -1,6 +1,6 @@
 Name:   perl-WWW-Form-UrlEncoded
 Version:0.26
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Parser and builder for application/x-www-form-urlencoded
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/WWW-Form-UrlEncoded
@@ -56,6 +56,9 @@ BREAK_BACKWARD_COMPAT=1 ./Build test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.26-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Tue Jul 27 2021 Fedora Release Engineering  - 
0.26-8
 - Second attempt - Rebuilt for
   https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild



https://src.fedoraproject.org/rpms/perl-WWW-Form-UrlEncoded/c/58b71d9dddf5b5d53ed641b7017d25f6db131035?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Validation-Class (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 06:34:03 UTC

From 217e9bd7f5e3b05460d984c1fda1401f4d908a65 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 06:33:57 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Validation-Class.spec b/perl-Validation-Class.spec
index ab72d8e..e892bea 100644
--- a/perl-Validation-Class.spec
+++ b/perl-Validation-Class.spec
@@ -1,6 +1,6 @@
 Name:   perl-Validation-Class
 Version:7.900057
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Powerful Data Validation Framework
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Validation-Class
@@ -71,6 +71,9 @@ complete set of pre-defined validations and filters referred 
to as
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
7.900057-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Tue Jul 27 2021 Fedora Release Engineering  - 
7.900057-16
 - Second attempt - Rebuilt for
   https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild



https://src.fedoraproject.org/rpms/perl-Validation-Class/c/217e9bd7f5e3b05460d984c1fda1401f4d908a65?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Types-Path-Tiny (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 06:27:25 UTC

From 7b02d2e134f042acad6ad127937ab7a036e88903 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 06:27:20 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Types-Path-Tiny.spec b/perl-Types-Path-Tiny.spec
index b0037e7..89541bf 100644
--- a/perl-Types-Path-Tiny.spec
+++ b/perl-Types-Path-Tiny.spec
@@ -1,6 +1,6 @@
 Name:   perl-Types-Path-Tiny
 Version:0.006
-Release:12%{?dist}
+Release:13%{?dist}
 Summary:Path::Tiny types and coercions for Moose and Moo
 License:ASL 2.0
 URL:https://metacpan.org/release/Types-Path-Tiny
@@ -55,6 +55,9 @@ This module provides Path::Tiny types for Moose, Moo, etc.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.006-13
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Tue Jul 27 2021 Fedora Release Engineering  - 
0.006-12
 - Second attempt - Rebuilt for
   https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild



https://src.fedoraproject.org/rpms/perl-Types-Path-Tiny/c/7b02d2e134f042acad6ad127937ab7a036e88903?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Type-Tie (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 06:26:53 UTC

From a7c0805164b45d9ebd290edf8a19c172831f59e6 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 06:26:49 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Type-Tie.spec b/perl-Type-Tie.spec
index 3ed93eb..a680cec 100644
--- a/perl-Type-Tie.spec
+++ b/perl-Type-Tie.spec
@@ -1,6 +1,6 @@
 Name:   perl-Type-Tie
 Version:0.015
-Release:5%{?dist}
+Release:6%{?dist}
 Summary:Tie a variable to a type constraint
 # cf. README
 License:GPL+ or Artistic
@@ -79,6 +79,9 @@ sed -i -e '/^inc\/.*$/d' MANIFEST
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.015-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Tue Jul 27 2021 Fedora Release Engineering  - 
0.015-5
 - Second attempt - Rebuilt for
   https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild



https://src.fedoraproject.org/rpms/perl-Type-Tie/c/a7c0805164b45d9ebd290edf8a19c172831f59e6?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Test2-Plugin-NoWarnings (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 06:01:44 UTC

From 77035931c5876d666a81887ad1fdafa2a730269a Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 06:01:38 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Test2-Plugin-NoWarnings.spec 
b/perl-Test2-Plugin-NoWarnings.spec
index 4aded05..7d176d1 100644
--- a/perl-Test2-Plugin-NoWarnings.spec
+++ b/perl-Test2-Plugin-NoWarnings.spec
@@ -1,6 +1,6 @@
 Name:  perl-Test2-Plugin-NoWarnings
 Version:   0.09
-Release:   5%{?dist}
+Release:   6%{?dist}
 Summary:   Fail if tests warn
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Test2-Plugin-NoWarnings
@@ -63,6 +63,9 @@ make test
 %{_mandir}/man3/Test2::Plugin::NoWarnings.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.09-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Fri Jul 23 2021 Fedora Release Engineering  - 
0.09-5
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Test2-Plugin-NoWarnings/c/77035931c5876d666a81887ad1fdafa2a730269a?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Sub-Infix (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 05:17:32 UTC

From 53f7b1c818d1d38c29e2fa90b12dc5996edce032 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 05:17:28 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Sub-Infix.spec b/perl-Sub-Infix.spec
index b5bfe0f..3ce84d8 100644
--- a/perl-Sub-Infix.spec
+++ b/perl-Sub-Infix.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-Infix
 Version:0.004
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:Create a fake infix operator
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Sub-Infix
@@ -54,6 +54,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.004-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.004-15
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Sub-Infix/c/53f7b1c818d1d38c29e2fa90b12dc5996edce032?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Sub-Exporter-Lexical (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 05:17:05 UTC

From 947ecfd59d8c5e4d9380f461238fcf42ea9479ae Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 05:17:01 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Sub-Exporter-Lexical.spec b/perl-Sub-Exporter-Lexical.spec
index aa21446..40fdb1d 100644
--- a/perl-Sub-Exporter-Lexical.spec
+++ b/perl-Sub-Exporter-Lexical.spec
@@ -1,6 +1,6 @@
 Name:   perl-Sub-Exporter-Lexical
 Version:0.092292
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Export lexically-available subs with Sub::Exporter
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Sub-Exporter-Lexical
@@ -55,6 +55,9 @@ rm $RPM_BUILD_ROOT%{perl_vendorlib}/Sub/Exporter/snippet.pl
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.092292-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.092292-16
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Sub-Exporter-Lexical/c/947ecfd59d8c5e4d9380f461238fcf42ea9479ae?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Specio (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 05:09:03 UTC

From 0ce6c16ea5e8773875893e6fa68111bd882bd09f Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 05:08:58 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Specio.spec b/perl-Specio.spec
index 178e7f6..3f20239 100644
--- a/perl-Specio.spec
+++ b/perl-Specio.spec
@@ -7,7 +7,7 @@
 
 Name:  perl-Specio
 Version:   0.47
-Release:   4%{?dist}
+Release:   5%{?dist}
 Summary:   Type constraints and coercions for Perl
 # lib/Specio/PartialDump.pm:   GPL+ or Artistic
 #  

@@ -162,6 +162,9 @@ make test
 %{_mandir}/man3/Test::Specio.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.47-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.47-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Specio/c/0ce6c16ea5e8773875893e6fa68111bd882bd09f?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-SOAP-WSDL (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 04:57:17 UTC

From 4f62e6a3dcdee2e794cebe78ce1f3c01eebe3126 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 04:57:12 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-SOAP-WSDL.spec b/perl-SOAP-WSDL.spec
index aa19936..430717a 100644
--- a/perl-SOAP-WSDL.spec
+++ b/perl-SOAP-WSDL.spec
@@ -1,7 +1,7 @@
 Summary:   Perl module for SOAP with WSDL support
 Name:  perl-SOAP-WSDL
 Version:   3.004
-Release:   8%{?dist}
+Release:   9%{?dist}
 License:   GPL+ or Artistic
 URL:   https://metacpan.org/release/SOAP-WSDL
 Source:
https://cpan.metacpan.org/modules/by-module/SOAP/SOAP-WSDL-%{version}.tar.gz
@@ -133,6 +133,9 @@ chmod 0755 %{buildroot}%{_bindir}/wsdl2perl.pl
 
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
3.004-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
3.004-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-SOAP-WSDL/c/4f62e6a3dcdee2e794cebe78ce1f3c01eebe3126?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Return-Type (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 04:54:13 UTC

From da0c1fa7a067a8d1136bef4c634018ea9ce9f4b4 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 04:54:08 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Return-Type.spec b/perl-Return-Type.spec
index bedace7..ba3fdf7 100644
--- a/perl-Return-Type.spec
+++ b/perl-Return-Type.spec
@@ -1,6 +1,6 @@
 Name:   perl-Return-Type
 Version:0.007
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:Specify a return type for a function
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Return-Type
@@ -57,6 +57,9 @@ library are supported.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.007-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.007-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Return-Type/c/da0c1fa7a067a8d1136bef4c634018ea9ce9f4b4?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Ref-Util-XS (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 04:51:34 UTC

From 630ef35d5e3bb09e1ac0c2ed604b180082f90609 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 04:51:29 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Ref-Util-XS.spec b/perl-Ref-Util-XS.spec
index 7750e8d..ad1f366 100644
--- a/perl-Ref-Util-XS.spec
+++ b/perl-Ref-Util-XS.spec
@@ -7,7 +7,7 @@
 
 Name:  perl-Ref-Util-XS
 Version:   0.117
-Release:   13%{?dist}
+Release:   14%{?dist}
 Summary:   Utility functions for checking references
 License:   MIT
 URL:   https://metacpan.org/release/Ref-Util-XS
@@ -70,6 +70,9 @@ make test
 %{_mandir}/man3/Ref::Util::XS.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.117-14
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.117-13
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Ref-Util-XS/c/630ef35d5e3bb09e1ac0c2ed604b180082f90609?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Ref-Util (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 04:51:24 UTC

From 2ecd73de02b8d88ada55aba8fcca90b1f192b7a8 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 04:51:20 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Ref-Util.spec b/perl-Ref-Util.spec
index 9b51b5f..fed7b84 100644
--- a/perl-Ref-Util.spec
+++ b/perl-Ref-Util.spec
@@ -7,7 +7,7 @@
 
 Name:  perl-Ref-Util
 Version:   0.204
-Release:   12%{?dist}
+Release:   13%{?dist}
 Summary:   Utility functions for checking references
 License:   MIT
 URL:   https://metacpan.org/release/Ref-Util
@@ -85,6 +85,9 @@ make test
 %{_mandir}/man3/Ref::Util::PP.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.204-13
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.204-12
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Ref-Util/c/2ecd73de02b8d88ada55aba8fcca90b1f192b7a8?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Params-ValidationCompiler (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 04:26:47 UTC

From b2202bbdb66dea4b50e5c321c0f957e23f59027b Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 04:26:43 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Params-ValidationCompiler.spec 
b/perl-Params-ValidationCompiler.spec
index b97b940..8f03255 100644
--- a/perl-Params-ValidationCompiler.spec
+++ b/perl-Params-ValidationCompiler.spec
@@ -7,7 +7,7 @@
 
 Name:  perl-Params-ValidationCompiler
 Version:   0.30
-Release:   13%{?dist}
+Release:   14%{?dist}
 Summary:   Build an optimized subroutine parameter validator once, use it 
forever
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Params-ValidationCompiler
@@ -87,6 +87,9 @@ make test
 %{_mandir}/man3/Params::ValidationCompiler::Exceptions.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.30-14
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.30-13
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Params-ValidationCompiler/c/b2202bbdb66dea4b50e5c321c0f957e23f59027b?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Net-LDAP-Server (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:59:42 UTC

From 105344026319a3d96db2568bc48678b340a30076 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:59:37 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Net-LDAP-Server.spec b/perl-Net-LDAP-Server.spec
index bebb1da..805cbe5 100644
--- a/perl-Net-LDAP-Server.spec
+++ b/perl-Net-LDAP-Server.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-LDAP-Server
 Version:0.43
-Release:17%{?dist}
+Release:18%{?dist}
 Summary:Net::LDAP::Server Perl module
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Net-LDAP-Server
@@ -60,6 +60,9 @@ connection with the client.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.43-18
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Tue Jul 27 2021 Fedora Release Engineering  - 
0.43-17
 - Second attempt - Rebuilt for
   https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild



https://src.fedoraproject.org/rpms/perl-Net-LDAP-Server/c/105344026319a3d96db2568bc48678b340a30076?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Net-LDAP-Server-Test (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:59:51 UTC

From 43f532cf4dbedb593c427b49e83850cdefbeac3b Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:59:46 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Net-LDAP-Server-Test.spec b/perl-Net-LDAP-Server-Test.spec
index c2e6d03..5ad1609 100644
--- a/perl-Net-LDAP-Server-Test.spec
+++ b/perl-Net-LDAP-Server-Test.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-LDAP-Server-Test
 Version:0.22
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Test Net::LDAP code
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Net-LDAP-Server-Test
@@ -69,6 +69,9 @@ Test your Net::LDAP code without having a real LDAP server 
available.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.22-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.22-16
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Net-LDAP-Server-Test/c/43f532cf4dbedb593c427b49e83850cdefbeac3b?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Net-LDAP-SID (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:59:31 UTC

From 7cd11e594de1168153acf8e714eab0f9e2aa9e93 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:59:27 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Net-LDAP-SID.spec b/perl-Net-LDAP-SID.spec
index a8b0931..a08e338 100644
--- a/perl-Net-LDAP-SID.spec
+++ b/perl-Net-LDAP-SID.spec
@@ -1,6 +1,6 @@
 Name:   perl-Net-LDAP-SID
 Version:0.001
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Net::LDAP::SID Perl module
 License:Artistic 2.0
 URL:https://metacpan.org/release/Net-LDAP-SID
@@ -44,6 +44,9 @@ Active Directory Security Identifier manipulation
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.001-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.001-16
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Net-LDAP-SID/c/7cd11e594de1168153acf8e714eab0f9e2aa9e93?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Failure on the koji f36-rebuild target: /usr/bin/ld: cannot open linker script file /builddir/build/BUILD/.package_note...: No such file or directory

2022-01-23 Thread Marcin Dulak
Thanks, performing the builds inside of the %build section instead of %prep 
makes the "/builddir/build/BUILD/.package_note...: No such file or directory" 
error go away. I updated https://bugzilla.redhat.com/show_bug.cgi?id=2044028 
accordingly.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Module-Extract-Use (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:21:32 UTC

From 48b6c7797509a494e5c31ac1102ee8fed122bea5 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:21:27 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Module-Extract-Use.spec b/perl-Module-Extract-Use.spec
index 494aba6..1efea4d 100644
--- a/perl-Module-Extract-Use.spec
+++ b/perl-Module-Extract-Use.spec
@@ -1,7 +1,7 @@
 Summary:   Pull out the modules a module explicitly uses
 Name:  perl-Module-Extract-Use
 Version:   1.051
-Release:   1%{?dist}
+Release:   2%{?dist}
 License:   Artistic 2.0
 URL:   https://metacpan.org/release/Module-Extract-Use
 Source0:   
https://cpan.metacpan.org/modules/by-module/Module/Module-Extract-Use-%{version}.tar.gz
@@ -60,6 +60,9 @@ make test
 %{_mandir}/man3/Module::Extract::Use.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
1.051-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Mon Jan 10 2022 Paul Howarth  - 1.051-1
 - Update to 1.051
   - Fix up t/rt/79273.t regression (GH#7)



https://src.fedoraproject.org/rpms/perl-Module-Extract-Use/c/48b6c7797509a494e5c31ac1102ee8fed122bea5?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Mock-Config (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:18:34 UTC

From e85aa09a2e3b3ad4742b5373672cdcbc76730749 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:18:29 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Mock-Config.spec b/perl-Mock-Config.spec
index f58e10f..6035254 100644
--- a/perl-Mock-Config.spec
+++ b/perl-Mock-Config.spec
@@ -1,6 +1,6 @@
 Name:   perl-Mock-Config
 Version:0.03
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:Temporarily set Config or XSConfig values
 License:Artistic 2.0
 URL:https://metacpan.org/release/Mock-Config
@@ -44,6 +44,9 @@ make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.03-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.03-15
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Mock-Config/c/e85aa09a2e3b3ad4742b5373672cdcbc76730749?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Mail-Transport (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:08:12 UTC

From 38444aae74514ff57f0886d1e5986011a92f66cb Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:08:08 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Mail-Transport.spec b/perl-Mail-Transport.spec
index 494bf9c..66247a4 100644
--- a/perl-Mail-Transport.spec
+++ b/perl-Mail-Transport.spec
@@ -1,6 +1,6 @@
 Name:  perl-Mail-Transport
 Version:   3.005
-Release:   4%{?dist}
+Release:   5%{?dist}
 Summary:   Email message exchange
 License:   GPL+ or Artistic
 URL:   https://metacpan.org/release/Mail-Transport
@@ -68,6 +68,9 @@ make test
 %{_mandir}/man3/Mail::Transport::Sendmail.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
3.005-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
3.005-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Mail-Transport/c/38444aae74514ff57f0886d1e5986011a92f66cb?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Mail-Message (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:06:56 UTC

From 42af447c416e6f658b716d1b6278ba69359cba76 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:06:52 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Mail-Message.spec b/perl-Mail-Message.spec
index 03cafa3..04dcc36 100644
--- a/perl-Mail-Message.spec
+++ b/perl-Mail-Message.spec
@@ -1,6 +1,6 @@
 Name:  perl-Mail-Message
 Version:   3.011
-Release:   1%{?dist}
+Release:   2%{?dist}
 Summary:   MIME message handling
 License:   GPL+ or Artistic
 URL:   https://metacpan.org/release/Mail-Message
@@ -126,6 +126,9 @@ make test
 %{_mandir}/man3/*.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
3.011-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Tue Jul 27 2021 Tom Callaway  - 3.011-1
 - update to 3.011
 



https://src.fedoraproject.org/rpms/perl-Mail-Message/c/42af447c416e6f658b716d1b6278ba69359cba76?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Mail-Box-POP3 (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:05:36 UTC

From cea6f654b8c13a5ee03d0785969e23e74f9d00fe Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:05:31 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Mail-Box-POP3.spec b/perl-Mail-Box-POP3.spec
index 1f9ec27..b36c6c0 100644
--- a/perl-Mail-Box-POP3.spec
+++ b/perl-Mail-Box-POP3.spec
@@ -1,6 +1,6 @@
 Name:   perl-Mail-Box-POP3
 Version:3.005
-Release:9%{?dist}
+Release:10%{?dist}
 Summary:Handle POP3 folders as client
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Mail-Box-POP3
@@ -76,6 +76,9 @@ MARKOV_DEVEL=1 make test
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
3.005-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
3.005-9
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Mail-Box-POP3/c/cea6f654b8c13a5ee03d0785969e23e74f9d00fe?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-MCE-Shared (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 03:02:34 UTC

From 1fcb57a43270dde4f550956aca375ee8703e0b08 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 03:02:29 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-MCE-Shared.spec b/perl-MCE-Shared.spec
index 5417d67..39f81b4 100644
--- a/perl-MCE-Shared.spec
+++ b/perl-MCE-Shared.spec
@@ -1,6 +1,6 @@
 Name:  perl-MCE-Shared
 Version:   1.875
-Release:   1%{?dist}
+Release:   2%{?dist}
 Summary:   MCE extension for sharing data, supporting threads and processes
 License:   GPL+ or Artistic
 URL:   https://metacpan.org/release/MCE-Shared
@@ -93,6 +93,9 @@ make test
 %{_mandir}/man3/MCE::Shared::Server.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
1.875-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Fri Dec  3 2021 Paul Howarth  - 1.875-1
 - Update to 1.875
   - Resolved edge case with _fill_index in MCE::Shared::Ordhash



https://src.fedoraproject.org/rpms/perl-MCE-Shared/c/1fcb57a43270dde4f550956aca375ee8703e0b08?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-List-MoreUtils-XS (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 02:54:19 UTC

From c141f95a262aa3667f24d6be82fae37577101173 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 02:54:13 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-List-MoreUtils-XS.spec b/perl-List-MoreUtils-XS.spec
index f9de183..2c1197d 100644
--- a/perl-List-MoreUtils-XS.spec
+++ b/perl-List-MoreUtils-XS.spec
@@ -3,7 +3,7 @@
 
 Name:  perl-List-MoreUtils-XS
 Version:   0.430
-Release:   4%{?dist}
+Release:   5%{?dist}
 Summary:   Provide compiled List::MoreUtils functions
 # Code from List-MoreUtils < 0.417 is GPL+ or Artistic
 # Anything after that is ASL 2.0
@@ -84,6 +84,9 @@ make test
 %{_mandir}/man3/List::MoreUtils::XS.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.430-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.430-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-List-MoreUtils-XS/c/c141f95a262aa3667f24d6be82fae37577101173?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-IO-FDPass (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 02:28:59 UTC

From 00dca6a778de92407451b7bfde8d34736bc326c4 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 02:28:54 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-IO-FDPass.spec b/perl-IO-FDPass.spec
index 594dd88..1d592b9 100644
--- a/perl-IO-FDPass.spec
+++ b/perl-IO-FDPass.spec
@@ -1,6 +1,6 @@
 Name:  perl-IO-FDPass
 Version:   1.3
-Release:   4%{?dist}
+Release:   5%{?dist}
 Summary:   Pass a file descriptor over a socket
 License:   GPL+ or Artistic
 URL:   https://metacpan.org/release/IO-FDPass
@@ -58,6 +58,9 @@ make test
 %{_mandir}/man3/IO::FDPass.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 1.3-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 1.3-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-IO-FDPass/c/00dca6a778de92407451b7bfde8d34736bc326c4?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-HTTP-MultiPartParser (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 02:20:13 UTC

From 08ee8aff68e2f1a04f4f262dd5e734d6181e7165 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 02:20:09 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-HTTP-MultiPartParser.spec b/perl-HTTP-MultiPartParser.spec
index 326ee6c..6943bc3 100644
--- a/perl-HTTP-MultiPartParser.spec
+++ b/perl-HTTP-MultiPartParser.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-MultiPartParser
 Version:0.02
-Release:15%{?dist}
+Release:16%{?dist}
 Summary:HTTP MultiPart Parser
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/HTTP-MultiPartParser
@@ -60,6 +60,9 @@ streams conforming to MultiPart types as defined in RFC 2616.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.02-16
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.02-15
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-HTTP-MultiPartParser/c/08ee8aff68e2f1a04f4f262dd5e734d6181e7165?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-HTTP-Entity-Parser (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 02:19:08 UTC

From f3ab02c9f0fe26562c01d5ff41b44b4c4f1afd19 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 02:19:04 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-HTTP-Entity-Parser.spec b/perl-HTTP-Entity-Parser.spec
index 2916760..31828cc 100644
--- a/perl-HTTP-Entity-Parser.spec
+++ b/perl-HTTP-Entity-Parser.spec
@@ -1,6 +1,6 @@
 Name:   perl-HTTP-Entity-Parser
 Version:0.25
-Release:4%{?dist}
+Release:5%{?dist}
 Summary:PSGI compliant HTTP Entity Parser
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/HTTP-Entity-Parser
@@ -69,6 +69,9 @@ data and application/json.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.25-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.25-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-HTTP-Entity-Parser/c/f3ab02c9f0fe26562c01d5ff41b44b4c4f1afd19?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Encode-IMAPUTF7 (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 01:25:01 UTC

From 20f26bb71fe0b3b28e7683dd3f6aef46e6f5cd02 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 01:24:56 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Encode-IMAPUTF7.spec b/perl-Encode-IMAPUTF7.spec
index c7791f6..5518a4c 100644
--- a/perl-Encode-IMAPUTF7.spec
+++ b/perl-Encode-IMAPUTF7.spec
@@ -2,7 +2,7 @@
 
 Name:   perl-Encode-IMAPUTF7
 Version:1.05
-Release:17%{?dist}
+Release:18%{?dist}
 Summary:Process the special UTF-7 variant required by IMAP
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Encode-IMAPUTF7
@@ -42,6 +42,9 @@ make test
 %_mandir/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
1.05-18
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
1.05-17
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Encode-IMAPUTF7/c/20f26bb71fe0b3b28e7683dd3f6aef46e6f5cd02?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-DateTime-Calendar-Julian (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 00:57:53 UTC

From 5700140214d2c254b1efa2e3757bea71030f0101 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 00:57:49 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-DateTime-Calendar-Julian.spec 
b/perl-DateTime-Calendar-Julian.spec
index 2d7f21e..080395b 100644
--- a/perl-DateTime-Calendar-Julian.spec
+++ b/perl-DateTime-Calendar-Julian.spec
@@ -1,6 +1,6 @@
 Name:  perl-DateTime-Calendar-Julian
 Version:   0.106
-Release:   1%{?dist}
+Release:   2%{?dist}
 License:   GPL+ or Artistic
 Summary:   Julian Calendar support for DateTime.pm
 Url:   https://metacpan.org/release/DateTime-Calendar-Julian
@@ -39,6 +39,9 @@ make test
 %{_mandir}/man3/DateTime::Calendar::Julian.3pm*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.106-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Wed Sep 29 2021 Tom Callaway  - 0.106-1
 - update to 0.106
 



https://src.fedoraproject.org/rpms/perl-DateTime-Calendar-Julian/c/5700140214d2c254b1efa2e3757bea71030f0101?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


Fedora-Rawhide-20220123.n.0 compose check report

2022-01-23 Thread Fedora compose checker
No missing expected images.

Compose FAILS proposed Rawhide gating check!
6 of 43 required tests failed, 5 results missing
openQA tests matching unsatisfied gating requirements shown with **GATING** 
below

Failed openQA tests: 29/225 (x86_64), 25/157 (aarch64)

New failures (same test not failed in Fedora-Rawhide-20220120.n.1):

ID: 125 Test: x86_64 Server-dvd-iso anaconda_help
URL: https://openqa.fedoraproject.org/tests/125
ID: 145 Test: x86_64 Server-dvd-iso server_cockpit_default **GATING**
URL: https://openqa.fedoraproject.org/tests/145
ID: 172 Test: x86_64 Server-dvd-iso server_realmd_join_kickstart 
**GATING**
URL: https://openqa.fedoraproject.org/tests/172
ID: 175 Test: x86_64 Server-dvd-iso realmd_join_sssd **GATING**
URL: https://openqa.fedoraproject.org/tests/175
ID: 182 Test: x86_64 Everything-boot-iso memory_check
URL: https://openqa.fedoraproject.org/tests/182
ID: 202 Test: x86_64 Workstation-live-iso desktop_login
URL: https://openqa.fedoraproject.org/tests/202
ID: 228 Test: x86_64 Silverblue-dvd_ostree-iso anaconda_help
URL: https://openqa.fedoraproject.org/tests/228
ID: 248 Test: x86_64 Cloud_Base-qcow2-qcow2 base_services_start@uefi
URL: https://openqa.fedoraproject.org/tests/248
ID: 262 Test: aarch64 Server-dvd-iso anaconda_help@uefi
URL: https://openqa.fedoraproject.org/tests/262
ID: 264 Test: aarch64 Server-dvd-iso support_server@uefi
URL: https://openqa.fedoraproject.org/tests/264
ID: 267 Test: aarch64 Server-dvd-iso install_updates_nfs@uefi
URL: https://openqa.fedoraproject.org/tests/267
ID: 279 Test: aarch64 Server-dvd-iso server_cockpit_default@uefi
URL: https://openqa.fedoraproject.org/tests/279
ID: 301 Test: aarch64 Server-dvd-iso server_realmd_join_kickstart@uefi
URL: https://openqa.fedoraproject.org/tests/301
ID: 333 Test: aarch64 Workstation-raw_xz-raw.xz eog@uefi
URL: https://openqa.fedoraproject.org/tests/333
ID: 362 Test: x86_64 Workstation-upgrade desktop_printing
URL: https://openqa.fedoraproject.org/tests/362
ID: 381 Test: x86_64 universal upgrade_kde_64bit
URL: https://openqa.fedoraproject.org/tests/381
ID: 388 Test: x86_64 universal upgrade_2_kde_64bit
URL: https://openqa.fedoraproject.org/tests/388
ID: 392 Test: x86_64 universal install_arabic_language
URL: https://openqa.fedoraproject.org/tests/392
ID: 393 Test: x86_64 universal install_asian_language
URL: https://openqa.fedoraproject.org/tests/393
ID: 396 Test: x86_64 universal install_package_set_kde
URL: https://openqa.fedoraproject.org/tests/396
ID: 400 Test: x86_64 universal upgrade_server_domain_controller
URL: https://openqa.fedoraproject.org/tests/400
ID: 413 Test: x86_64 universal install_iscsi
URL: https://openqa.fedoraproject.org/tests/413
ID: 421 Test: x86_64 universal install_simple_encrypted
URL: https://openqa.fedoraproject.org/tests/421
ID: 447 Test: x86_64 universal upgrade_2_server_domain_controller
URL: https://openqa.fedoraproject.org/tests/447
ID: 454 Test: x86_64 universal upgrade_realmd_client
URL: https://openqa.fedoraproject.org/tests/454
ID: 455 Test: x86_64 universal upgrade_2_realmd_client
URL: https://openqa.fedoraproject.org/tests/455
ID: 465 Test: aarch64 universal install_arabic_language@uefi
URL: https://openqa.fedoraproject.org/tests/465
ID: 466 Test: aarch64 universal install_asian_language@uefi
URL: https://openqa.fedoraproject.org/tests/466
ID: 469 Test: aarch64 universal upgrade_server_domain_controller@uefi
URL: https://openqa.fedoraproject.org/tests/469
ID: 477 Test: aarch64 universal install_iscsi@uefi
URL: https://openqa.fedoraproject.org/tests/477
ID: 496 Test: aarch64 universal upgrade_2_server_domain_controller@uefi
URL: https://openqa.fedoraproject.org/tests/496
ID: 503 Test: aarch64 universal upgrade_realmd_client@uefi
URL: https://openqa.fedoraproject.org/tests/503
ID: 504 Test: aarch64 universal upgrade_2_realmd_client@uefi
URL: https://openqa.fedoraproject.org/tests/504
ID: 526 Test: aarch64 universal install_rescue_encrypted@uefi
URL: https://openqa.fedoraproject.org/tests/526

Old failures (same test failed in Fedora-Rawhide-20220120.n.1):

ID: 198 Test: x86_64 Workstation-live-iso eog
URL: https://openqa.fedoraproject.org/tests/198
ID: 206 Test: x86_64 Workstation-live-iso desktop_printing
URL: https://openqa.fedoraproject.org/tests/206
ID: 207 Test: x86_64 KDE-live-iso anaconda_help
URL: https://openqa.fedoraproject.org/tests/207
ID: 209 Test: x86_64 KDE-live-iso desktop_notifications_live
URL: https://openqa.fedoraproject.org/tests/209
ID: 239 Test: x86_64 Silverblue-dvd_ostree-iso release_identification

releng pushed to perl-Crypt-IDEA (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 00:31:36 UTC

From fcdcacc4593a318242a11c0e6459cfa92bec9caa Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 00:31:31 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Crypt-IDEA.spec b/perl-Crypt-IDEA.spec
index 7d4c922..46ed3ed 100644
--- a/perl-Crypt-IDEA.spec
+++ b/perl-Crypt-IDEA.spec
@@ -1,7 +1,7 @@
 Summary:   Perl interface to IDEA block cipher
 Name:  perl-Crypt-IDEA
 Version:   1.10
-Release:   22%{?dist}
+Release:   23%{?dist}
 License:   BSD with advertising
 URL:   https://metacpan.org/release/Crypt-IDEA
 Source0:   
https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-IDEA-%{version}.tar.gz
@@ -65,6 +65,9 @@ make test
 %{_mandir}/man3/Crypt::IDEA.3*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
1.10-23
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
1.10-22
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Crypt-IDEA/c/fcdcacc4593a318242a11c0e6459cfa92bec9caa?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Cookie-Baker (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 00:28:31 UTC

From 62b1f16986de5629a7b962511308d5bc23f0ca41 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 00:28:26 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Cookie-Baker.spec b/perl-Cookie-Baker.spec
index ed448e9..a053e58 100644
--- a/perl-Cookie-Baker.spec
+++ b/perl-Cookie-Baker.spec
@@ -1,6 +1,6 @@
 Name:   perl-Cookie-Baker
 Version:0.11
-Release:8%{?dist}
+Release:9%{?dist}
 Summary:Cookie string generator / parser
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Cookie-Baker
@@ -50,6 +50,9 @@ Cookie::Baker provides simple cookie string generator and 
parser.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.11-9
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.11-8
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Cookie-Baker/c/62b1f16986de5629a7b962511308d5bc23f0ca41?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Code-TidyAll-Plugin-Test-Vars (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 00:17:39 UTC

From 7667fe6e1ad5878ebf82a587ad56003806af48f8 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 00:17:34 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Code-TidyAll-Plugin-Test-Vars.spec 
b/perl-Code-TidyAll-Plugin-Test-Vars.spec
index 84f8f77..0455406 100644
--- a/perl-Code-TidyAll-Plugin-Test-Vars.spec
+++ b/perl-Code-TidyAll-Plugin-Test-Vars.spec
@@ -1,6 +1,6 @@
 Name:   perl-Code-TidyAll-Plugin-Test-Vars
 Version:0.04
-Release:16%{?dist}
+Release:17%{?dist}
 Summary:Provides Test::Vars plugin for Code::TidyAll
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Code-TidyAll-Plugin-Test-Vars
@@ -58,6 +58,9 @@ This module uses Test::Vars to detect unused variables in 
Perl modules.
 %{_mandir}/man3/*
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.04-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.04-16
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Code-TidyAll-Plugin-Test-Vars/c/7667fe6e1ad5878ebf82a587ad56003806af48f8?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


releng pushed to perl-Class-Std-Fast (rawhide). "- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild (..more)"

2022-01-23 Thread notifications
Notification time stamped 2022-01-21 00:15:19 UTC

From 3e163271a298f93caf1f5eb176e3ef55dd1fd1f5 Mon Sep 17 00:00:00 2001
From: Fedora Release Engineering 
Date: Jan 21 2022 00:15:15 +
Subject: - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild


Signed-off-by: Fedora Release Engineering 

---

diff --git a/perl-Class-Std-Fast.spec b/perl-Class-Std-Fast.spec
index 585211e..687dbe1 100644
--- a/perl-Class-Std-Fast.spec
+++ b/perl-Class-Std-Fast.spec
@@ -1,6 +1,6 @@
 Name:   perl-Class-Std-Fast
 Version:0.0.8
-Release:18%{?dist}
+Release:19%{?dist}
 Summary:Faster but less secure replacement for Class::Std
 License:GPL+ or Artistic
 URL:https://metacpan.org/release/Class-Std-Fast
@@ -68,6 +68,9 @@ make test
 
 
 %changelog
+* Fri Jan 21 2022 Fedora Release Engineering  - 
0.0.8-19
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
+
 * Thu Jul 22 2021 Fedora Release Engineering  - 
0.0.8-18
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
 



https://src.fedoraproject.org/rpms/perl-Class-Std-Fast/c/3e163271a298f93caf1f5eb176e3ef55dd1fd1f5?branch=rawhide
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


Fedora rawhide compose report: 20220123.n.0 changes

2022-01-23 Thread Fedora Rawhide Report
OLD: Fedora-Rawhide-20220120.n.1
NEW: Fedora-Rawhide-20220123.n.0

= SUMMARY =
Added images:2
Dropped images:  6
Added packages:  7
Dropped packages:9
Upgraded packages:   147
Downgraded packages: 0

Size of added packages:  20.99 MiB
Size of dropped packages:2.62 MiB
Size of upgraded packages:   4.58 GiB
Size of downgraded packages: 0 B

Size change of upgraded packages:   -98.70 MiB
Size change of downgraded packages: 0 B

= ADDED IMAGES =
Image: LXQt live x86_64
Path: Spins/x86_64/iso/Fedora-LXQt-Live-x86_64-Rawhide-20220123.n.0.iso
Image: KDE live aarch64
Path: Spins/aarch64/iso/Fedora-KDE-Live-aarch64-Rawhide-20220123.n.0.iso

= DROPPED IMAGES =
Image: Xfce raw-xz armhfp
Path: Spins/armhfp/images/Fedora-Xfce-Rawhide-20220120.n.1.armhfp.raw.xz
Image: Workstation live ppc64le
Path: 
Workstation/ppc64le/iso/Fedora-Workstation-Live-ppc64le-Rawhide-20220120.n.1.iso
Image: Scientific vagrant-libvirt x86_64
Path: 
Labs/x86_64/images/Fedora-Scientific-Vagrant-Rawhide-20220120.n.1.x86_64.vagrant-libvirt.box
Image: Scientific_KDE live x86_64
Path: Labs/x86_64/iso/Fedora-Scientific_KDE-Live-x86_64-Rawhide-20220120.n.1.iso
Image: Workstation live aarch64
Path: 
Workstation/aarch64/iso/Fedora-Workstation-Live-aarch64-Rawhide-20220120.n.1.iso
Image: Scientific vagrant-virtualbox x86_64
Path: 
Labs/x86_64/images/Fedora-Scientific-Vagrant-Rawhide-20220120.n.1.x86_64.vagrant-virtualbox.box

= ADDED PACKAGES =
Package: angelfish-21.12-2.fc36
Summary: Plasma Mobile minimal web browser
RPMs:angelfish
Size:742.42 KiB

Package: distrobox-1.2.12-1.fc36
Summary: Another tool for containerized command line environments on Linux
RPMs:distrobox
Size:50.01 KiB

Package: intel-cm-compiler-1.0.119-1.fc36
Summary: Intel C for Metal compiler
RPMs:intel-cm-compiler intel-cm-compiler-devel intel-cm-compiler-libs
Size:20.07 MiB

Package: python-astor-0.8.1-4.fc36
Summary: Designed to allow easy manipulation of python source via the AST
RPMs:python3-astor
Size:54.84 KiB

Package: python-urwid-readline-0.13-1.fc36
Summary: A textbox edit widget for urwid that supports readline shortcuts
RPMs:python3-urwid-readline
Size:27.17 KiB

Package: rust-clap_complete-3.0.4-1.fc36
Summary: Generate shell completion scripts for your clap::App
RPMs:rust-clap_complete+debug-devel rust-clap_complete+default-devel 
rust-clap_complete-devel
Size:42.57 KiB

Package: rust-clap_complete_fig-3.0.2-1.fc36
Summary: Generator library used with clap for Fig completion scripts
RPMs:rust-clap_complete_fig+default-devel rust-clap_complete_fig-devel
Size:23.38 KiB


= DROPPED PACKAGES =
Package: indi-aagcloudwatcher-1.9.0-2.fc35
Summary: INDI driver for the AAG Cloud Watcher
RPMs:indi-aagcloudwatcher
Size:227.72 KiB

Package: indi-apogee-1.9.3-1.fc36
Summary: The INDI driver for Apogee Alta (U & E) line of CCDs
RPMs:indi-apogee
Size:287.12 KiB

Package: indi-eqmod-1.9.3-1.fc36
Summary: INDI driver providing support for SkyWatcher Protocol
RPMs:indi-eqmod
Size:733.27 KiB

Package: indi-gphoto-1.9.3-1.fc36
Summary: INDI driver providing support for gPhoto
RPMs:indi-gphoto
Size:373.62 KiB

Package: indi-sx-1.9.3-1.fc36
Summary: INDI driver providing support for Starlight Xpress devices
RPMs:indi-sx
Size:244.66 KiB

Package: js-termynal-0.0.1-5.20210316git9b30189.fc35
Summary: Lightweight and modern terminal animations using async/await
RPMs:js-termynal
Size:18.56 KiB

Package: rubygem-cucumber-expressions-6.0.1-7.fc35
Summary: A simpler alternative to Regular Expressions
RPMs:rubygem-cucumber-expressions rubygem-cucumber-expressions-doc
Size:258.82 KiB

Package: rubygem-cucumber-tag_expressions-2.0.2-4.fc35
Summary: Cucumber tag expressions for ruby
RPMs:rubygem-cucumber-tag_expressions rubygem-cucumber-tag_expressions-doc
Size:222.67 KiB

Package: rubygem-gherkin-5.1.0-7.fc35
Summary: Fast Gherkin lexer/parser
RPMs:rubygem-gherkin rubygem-gherkin-doc
Size:312.76 KiB


= UPGRADED PACKAGES =
Package:  R-testthat-3.1.2-1.fc36
Old package:  R-testthat-3.1.1-1.fc36
Summary:  Unit Testing for R
RPMs: R-testthat
Size: 7.71 MiB
Size change:  45.88 KiB
Changelog:
  * Wed Jan 19 2022 Fedora Release Engineering  - 
3.1.1-2
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild

  * Fri Jan 21 2022 Tom Callaway  - 3.1.2-1
  - update to 3.1.2


Package:  R-withr-2.4.3-1.fc36
Old package:  R-withr-2.4.2-4.fc35
Summary:  Run Code 'With' Temporarily Modified Global State
RPMs: R-withr
Size: 243.51 KiB
Size change:  4.93 KiB
Changelog:
  * Wed Jan 19 2022 Fedora Release Engineering  - 
2.4.2-5
  - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild

  * Fri Jan 21 2022 Tom Callaway  - 2.4.3-1
  - update to 2.4.3


Package:  SLOF-20210217-4.git33a7322d.fc36
Old package:  SLOF-20210217-2.git33a7322d.

Re: gcc-12.0.0-0.4.fc36 in rawhide

2022-01-23 Thread Jakub Jelinek
On Sun, Jan 23, 2022 at 11:39:58AM +0100, Vitaly Zaitsev via devel wrote:
> On 14/01/2022 15:31, Jakub Jelinek wrote:
> > gcc 12 snapshot has landed as the system compiler into rawhide today.
> 
> Another ICE on ppc64le with all packages contains catch2 library.
> Task: https://koji.fedoraproject.org/koji/taskinfo?taskID=81641415

IMHO no need to report further and further instances of the same
https://gcc.gnu.org/PR104172 bug (i.e. bugs where only ppc64le fails with
either internal compiler errors or assembler errors about weirdo
identifiers), I need to wait for a decision from powerpc backend maintainers,
then fix one way or another, if all goes well start fixed builds Monday
evening, + ~ 24 hours for build and then it can be tagged into rawhide
if all goes well.  AFAIK packages that failed mass rebuild are usually
attempted to be rebuilt once again before FTBS bugs are filed.

Jakub
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: gcc-12.0.0-0.4.fc36 in rawhide

2022-01-23 Thread Tom Hughes via devel

On 23/01/2022 10:39, Vitaly Zaitsev via devel wrote:

On 14/01/2022 15:31, Jakub Jelinek wrote:

gcc 12 snapshot has landed as the system compiler into rawhide today.


Another ICE on ppc64le with all packages contains catch2 library.
Task: https://koji.fedoraproject.org/koji/taskinfo?taskID=81641415


I've got https://bugzilla.redhat.com/show_bug.cgi?id=2043040 open
for that - possibly the same as 2043517.

Tom

--
Tom Hughes (t...@compton.nu)
http://compton.nu/
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Failure on the koji f36-rebuild target: /usr/bin/ld: cannot open linker script file /builddir/build/BUILD/.package_note...: No such file or directory

2022-01-23 Thread Vít Ondruch
Am I right that the `%configure` is executed in `%prep` section? That 
might be a bit unexpected.


https://src.fedoraproject.org/rpms/redhat-rpm-config/c/ce70218eed7284f0e0b18e8c3ad3a457db33ee8a?branch=rawhide


Vít


Dne 23. 01. 22 v 9:16 Marcin Dulak napsal(a):

Thanks for the link.

The linked issue mentions "package-notes-srpm-macros-0.4-11.fc36" 
https://bugzilla.redhat.com/show_bug.cgi?id=2043178#c18.

The above version is present now in my latest build of ga 
https://koji.fedoraproject.org/koji/taskinfo?taskID=81699099, but the 
"/usr/bin/ld: cannot open linker script file
/builddir/build/BUILD/.package_note-ga-5.7.2-8.fc36.x86_64.ld: No such file or 
directory
collect2: error: ld returned 1 exit status" error persist.

A workaround of setting "%undefine _package_note_file" in a spec file helps.
I opened another issue https://bugzilla.redhat.com/show_bug.cgi?id=2044028 in case the 
"No such file or directory" issue is different from 
https://bugzilla.redhat.com/show_bug.cgi?id=2043178.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


OpenPGP_signature
Description: OpenPGP digital signature
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


One more review swap

2022-01-23 Thread Mattia Verga via devel
Here I am again asking one more review swap.

I'm in need to have https://bugzilla.redhat.com/show_bug.cgi?id=2042043
reviewed, so I can retire the old libraries packages and update the
whole INDI ecosystem. Let me know if someone wants to make a swap.

Mattia

___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2038059] perl-CGI-Compile for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2038059

Fedora Update System  changed:

   What|Removed |Added

 Status|ASSIGNED|MODIFIED



--- Comment #2 from Fedora Update System  ---
FEDORA-EPEL-2022-fc8d1b9866 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-fc8d1b9866


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2038059
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: gcc-12.0.0-0.4.fc36 in rawhide

2022-01-23 Thread Vitaly Zaitsev via devel

On 14/01/2022 15:31, Jakub Jelinek wrote:

gcc 12 snapshot has landed as the system compiler into rawhide today.


Another ICE on ppc64le with all packages contains catch2 library.
Task: https://koji.fedoraproject.org/koji/taskinfo?taskID=81641415

Log:

FAILED: test/CMakeFiles/semver-cpp17.t.dir/test.cpp.o
/usr/bin/g++  -I/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2 
-I/builddir/build/BUILD/semver-0.3.0/include -O2 -flto=auto 
-ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall 
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 
-Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 
-fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 
-m64 -mcpu=power8 -mtune=power8 -fasynchronous-unwind-tables 
-fstack-clash-protection -DNDEBUG -Wall -Wextra -pedantic-errors -Werror 
-std=c++17 -MD -MT test/CMakeFiles/semver-cpp17.t.dir/test.cpp.o -MF 
test/CMakeFiles/semver-cpp17.t.dir/test.cpp.o.d -o 
test/CMakeFiles/semver-cpp17.t.dir/test.cpp.o -c 
/builddir/build/BUILD/semver-0.3.0/test/test.cpp
*** WARNING *** there are active plugins, do not report this as a bug 
unless you can reproduce it without enabling any plugins.

Event| Plugins
PLUGIN_FINISH_UNIT   | annobin: Generate final annotations
PLUGIN_START_UNIT| annobin: Generate global annotations
PLUGIN_ALL_PASSES_START  | annobin: Generate per-function 
annotations
PLUGIN_ALL_PASSES_END| annobin: Register per-function end 
symbols

during RTL pass: final
In file included from /builddir/build/BUILD/semver-0.3.0/test/test.cpp:24:
/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2/catch.hpp: In 
member function 'Catch::LazyExpression::LazyExpression(bool)':
/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2/catch.hpp:8185:5: internal 
compiler error: Segmentation fault

 8185 | LazyExpression::LazyExpression( bool isNegated )
  | ^~
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
The bug is not reproducible, so it is likely a hardware or OS problem.
[6/8] /usr/bin/g++ 
-I/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2 
-I/builddir/build/BUILD/semver-0.3.0/include -O2 -flto=auto 
-ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall 
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 
-Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 
-fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 
-m64 -mcpu=power8 -mtune=power8 -fasynchronous-unwind-tables 
-fstack-clash-protection -DNDEBUG -Wall -Wextra -pedantic-errors -Werror 
-std=c++20 -MD -MT test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o -MF 
test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o.d -o 
test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o -c 
/builddir/build/BUILD/semver-0.3.0/test/test.cpp

FAILED: test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o
/usr/bin/g++  -I/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2 
-I/builddir/build/BUILD/semver-0.3.0/include -O2 -flto=auto 
-ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall 
-Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 
-Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 
-fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 
-m64 -mcpu=power8 -mtune=power8 -fasynchronous-unwind-tables 
-fstack-clash-protection -DNDEBUG -Wall -Wextra -pedantic-errors -Werror 
-std=c++20 -MD -MT test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o -MF 
test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o.d -o 
test/CMakeFiles/semver-cpp20.t.dir/test.cpp.o -c 
/builddir/build/BUILD/semver-0.3.0/test/test.cpp
*** WARNING *** there are active plugins, do not report this as a bug 
unless you can reproduce it without enabling any plugins.

Event| Plugins
PLUGIN_FINISH_UNIT   | annobin: Generate final annotations
PLUGIN_START_UNIT| annobin: Generate global annotations
PLUGIN_ALL_PASSES_START  | annobin: Generate per-function 
annotations
PLUGIN_ALL_PASSES_END| annobin: Register per-function end 
symbols

during RTL pass: final
In file included from /builddir/build/BUILD/semver-0.3.0/test/test.cpp:24:
/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2/catch.hpp: In 
member function 'Catch::LazyExpression::LazyExpression(bool)':
/builddir/build/BUILD/semver-0.3.0/test/3rdparty/Catch2/catch.hpp:8185:5: internal 
compiler error: Segmentation fault

 8185 | LazyExpression::LazyExpression( bool isNegated )
  | ^~
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
The bug is not reproducible, so it is likely a hardware or OS problem.
ninja: build stopped: subcommand failed.

--
Sincerely,
  Vitaly Zaitsev (vit...@easycoding.org)

Re: gcc-12.0.0-0.4.fc36 in rawhide

2022-01-23 Thread Dan Horák
On Sun, 23 Jan 2022 10:56:32 +0100
Vitaly Zaitsev via devel  wrote:

> On 22/01/2022 17:22, Jakub Jelinek wrote:
> > The long double change is an ABI change, so this is kind of expected.
> 
> abidiff automatic test found no ABI changes between 8.0 and 8.1.

it's an internal implementation change of the "long double" type, from
C/C++ point of view it's always the same "long double" type

https://fedoraproject.org/wiki/Changes/PPC64LE_Float128_Transition


Dan
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2038239] Please branch and build perl-Test-Pod-LinkCheck for EPEL-9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2038239



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-5473bf1bfa has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-5473bf1bfa


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2038239
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2041077] Please build perl-Net-XMPP for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2041077



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-351a4e6303 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-351a4e6303


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2041077
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2042595] perl-HTTP-ProxyAutoConfig for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2042595



--- Comment #2 from Fedora Update System  ---
FEDORA-EPEL-2022-880f8c4258 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-880f8c4258


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2042595
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2033630] Add perl-IRI for EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2033630



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-56faadb7a0 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-56faadb7a0


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2033630
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2033601] Add perl-Geo-Distance to EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2033601



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-dc78f35285 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-dc78f35285


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2033601
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure


[EPEL-devel] Re: question about review process excemptions for Python 3

2022-01-23 Thread Nick Howitt via epel-devel



On 21/01/2022 22:23, Felix Schwarz wrote:


Hi,

the packaging guidelines have a few excemptions for the package review 
process [1]. I'm working on updating certbot to Python 3 in EPEL 7 (rhbz 
1797129, [2]). I need some additional Python 3 packages in EPEL 7 to 
achieve that and my question is which of these packages should get a 
proper review.



A) python3-augeas
https://bugzilla.redhat.com/show_bug.cgi?id=2043744

This is mostly the Fedora spec with just on additional bugfix (already 
upstream).



B) python3-josepy
intended spec file: 
https://github.com/FelixSchwarz/certbot-epel7-python3/blob/rawhide/python3-josepy/python-josepy.spec 



I did not want to upgrade the existing EPEL 7 package as the required 
version is Python 3 only. We can not use some newer macros like %pytest 
but otherwise the spec is the same as in Fedora.



C) python3-boto3
python-boto3 (Python 2) version is in RHEL and won't get a Python3 package.
intended spec file: 
https://github.com/FelixSchwarz/certbot-epel7-python3/blob/rawhide/python3-boto3/python3-boto3.spec 



The spec file is very close to the RHEL spec file just with some 
customizations removed.


Should I try to get reviews for each of the three packages or can I skip 
some of these according to the Fedora review policy?


Felix



[1] 
https://docs.fedoraproject.org/en-US/packaging-guidelines/ReviewGuidelines/#_package_review_process 


[2] https://bugzilla.redhat.com/show_bug.cgi?id=1797129


A bit o/t, but will you be updating the python2-certbot-dns-* packages 
as well?

___
epel-devel mailing list -- epel-devel@lists.fedoraproject.org
To unsubscribe send an email to epel-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/epel-devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: gcc-12.0.0-0.4.fc36 in rawhide

2022-01-23 Thread Vitaly Zaitsev via devel

On 22/01/2022 17:22, Jakub Jelinek wrote:

The long double change is an ABI change, so this is kind of expected.


abidiff automatic test found no ABI changes between 8.0 and 8.1.

--
Sincerely,
  Vitaly Zaitsev (vit...@easycoding.org)
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: gcc-12.0.0-0.4.fc36 in rawhide

2022-01-23 Thread Vitaly Zaitsev via devel

On 22/01/2022 15:56, Kaleb Keithley wrote:
Which I presume is related to the failed rebuild of fmt[2] with gcc-12 
and thus I'm still getting a version of fmt compiled with gcc-11.


Fmt build failed on ppc64le due to another GCC 12 regression:

FAILED: libfmt.so.8.1.1
: && /usr/bin/g++ -fPIC -O2 -flto=auto -ffat-lto-objects -fexceptions -g 
-grecord-gcc-switches -pipe -Wall -Werror=format-security 
-Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS 
-specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong 
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -m64 -mcpu=power8 
-mtune=power8 -fasynchronous-unwind-tables -fstack-clash-protection -O2 
-g -DNDEBUG  -Wl,-z,relro -Wl,--as-needed  -Wl,-z,now 
-specs=/usr/lib/rpm/redhat/redhat-hardened-ld 
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1  -Wl,--build-id=sha1 
-Wl,-dT,/builddir/build/BUILD/.package_note-fmt-8.1.1-2.fc36.ppc64le.ld 
-shared -Wl,-soname,libfmt.so.8 -o libfmt.so.8.1.1 
CMakeFiles/fmt.dir/src/format.cc.o CMakeFiles/fmt.dir/src/os.cc.o 
-Wl,--as-needed && :

{standard input}: Assembler messages:
{standard input}:31583: Error: junk at end of line, first unrecognized 
character is `('

{standard input}:31584: Error: expected comma after "operator"
{standard input}:32352: Error: junk at end of line, first unrecognized 
character is `('

{standard input}:32353: Error: expected comma after "operator"
make: *** [/tmp/ccKWFwzK.mk:2: /tmp/ccqbVJLh.ltrans0.ltrans.o] Error 1
lto-wrapper: fatal error: make returned 2 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status

--
Sincerely,
  Vitaly Zaitsev (vit...@easycoding.org)
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Fedora-Cloud-34-20220123.0 compose check report

2022-01-23 Thread Fedora compose checker
No missing expected images.

Soft failed openQA tests: 1/8 (x86_64), 1/8 (aarch64)
(Tests completed, but using a workaround for a known bug)

Old soft failures (same test soft failed in Fedora-Cloud-34-20220121.0):

ID: 114 Test: x86_64 Cloud_Base-qcow2-qcow2 cloud_autocloud
URL: https://openqa.fedoraproject.org/tests/114
ID: 122 Test: aarch64 Cloud_Base-qcow2-qcow2 cloud_autocloud@uefi
URL: https://openqa.fedoraproject.org/tests/122

Passed openQA tests: 7/8 (x86_64), 7/8 (aarch64)
-- 
Mail generated by check-compose:
https://pagure.io/fedora-qa/check-compose
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Fedora-Cloud-35-20220123.0 compose check report

2022-01-23 Thread Fedora compose checker
No missing expected images.

Soft failed openQA tests: 1/8 (x86_64), 1/8 (aarch64)
(Tests completed, but using a workaround for a known bug)

Old soft failures (same test soft failed in Fedora-Cloud-35-20220122.0):

ID: 098 Test: x86_64 Cloud_Base-qcow2-qcow2 cloud_autocloud
URL: https://openqa.fedoraproject.org/tests/098
ID: 106 Test: aarch64 Cloud_Base-qcow2-qcow2 cloud_autocloud@uefi
URL: https://openqa.fedoraproject.org/tests/106

Passed openQA tests: 7/8 (x86_64), 7/8 (aarch64)
-- 
Mail generated by check-compose:
https://pagure.io/fedora-qa/check-compose
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


Re: Failure on the koji f36-rebuild target: /usr/bin/ld: cannot open linker script file /builddir/build/BUILD/.package_note...: No such file or directory

2022-01-23 Thread Marcin Dulak
Thanks for the link.

The linked issue mentions "package-notes-srpm-macros-0.4-11.fc36" 
https://bugzilla.redhat.com/show_bug.cgi?id=2043178#c18.

The above version is present now in my latest build of ga 
https://koji.fedoraproject.org/koji/taskinfo?taskID=81699099, but the 
"/usr/bin/ld: cannot open linker script file
/builddir/build/BUILD/.package_note-ga-5.7.2-8.fc36.x86_64.ld: No such file or 
directory
collect2: error: ld returned 1 exit status" error persist.

A workaround of setting "%undefine _package_note_file" in a spec file helps.
I opened another issue https://bugzilla.redhat.com/show_bug.cgi?id=2044028 in 
case the "No such file or directory" issue is different from 
https://bugzilla.redhat.com/show_bug.cgi?id=2043178.
___
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to 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/devel@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure


[Bug 2038180] Add perl-XML-CommonNS to EPEL 9

2022-01-23 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=2038180



--- Comment #3 from Fedora Update System  ---
FEDORA-EPEL-2022-f1f30a32a9 has been submitted as an update to Fedora EPEL 9.
https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-f1f30a32a9


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2038180
___
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 on the list, report it: 
https://pagure.io/fedora-infrastructure