Re: Changes/RemovePythonMockUsage affected packages

2024-01-12 Thread Michel Lind
On Fri, Jan 12, 2024 at 08:21:12PM +, Maxwell G wrote:
> Hi everyone,
> 
> https://fedoraproject.org/wiki/Changes/RemovePythonMockUsage has been
> approved, so Michel and I will be working on identifying packages that
> still depend on python3-mock. python3-mock has been deprecated for 6
> releases in favor of unittest.mock from the Python standard library, and
> we would like to finally retire the package. We will help with PRs, but
> we would also appreciate help from packagers to fix their own packages.
> https://fedoraproject.org/wiki/Changes/DeprecatePythonMock#How_to_migrate_to_unittest.mock
> provides guidance on how to accomplish that. Please reach out to us or
> pop into https://matrix.to/#/#python:fedoraproject.org if you have any
> questions.
> 
> Here is a list of packages that currently depend on python3-mock at
> runtime and/or buildtime:
> 
60 of these packages build fine with a stub python-mock, so the
dependency can just be removed from those:

https://pagure.io/michel-slm/python-mock-drawdown/blob/main/f/false-positives.txt

(Will generate the per-maintainer list later - and send out PRs to the
affected packages)

Best regards,
-- 
Michel Lind (né Salim)
identities: https://keyoxide.org/5dce2e7e9c3b1cffd335c1d78b229d2f7ccc04f2


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


Re: Changes/RemovePythonMockUsage affected packages

2024-01-12 Thread Michel Lind
On Fri, Jan 12, 2024 at 08:21:12PM +, Maxwell G wrote:
> Hi everyone,
> 
> https://fedoraproject.org/wiki/Changes/RemovePythonMockUsage has been
> approved, so Michel and I will be working on identifying packages that
> still depend on python3-mock. python3-mock has been deprecated for 6
> releases in favor of unittest.mock from the Python standard library, and
> we would like to finally retire the package. We will help with PRs, but
> we would also appreciate help from packagers to fix their own packages.
> https://fedoraproject.org/wiki/Changes/DeprecatePythonMock#How_to_migrate_to_unittest.mock
> provides guidance on how to accomplish that. Please reach out to us or
> pop into https://matrix.to/#/#python:fedoraproject.org if you have any
> questions.
> 
> Here is a list of packages that currently depend on python3-mock at
> runtime and/or buildtime:
> 
60 of these packages build fine with a stub python-mock, so the
dependency can just be removed from those:

https://pagure.io/michel-slm/python-mock-drawdown/blob/main/f/false-positives.txt

(Will generate the per-maintainer list later - and send out PRs to the
affected packages)

Best regards,
-- 
Michel Lind (né Salim)
identities: https://keyoxide.org/5dce2e7e9c3b1cffd335c1d78b229d2f7ccc04f2


signature.asc
Description: PGP 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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


dnsmasq default configuration changed

2024-01-12 Thread Petr Menšík

Hello!

I have just pushed a change, which modifies default configuration of 
dnsmasq package. I think it should not create any regressions, but it 
may happen in few special cases.


What has changed:

It is described in bug #2258062 [1]. It no longer contains in default 
configuration bind-interfaces and interface=lo options. Instead, it 
contains now local-service=host. Exact change is in PR #15 [2].


It should work exactly the same way. Except if you configure interface 
explicitly, for example by executing


echo interface=eth0 > /etc/dnsmasq.d/iface.conf

local-service=host will deactivate itself. It is active only when 
dnsmasq is otherwise unconfigured. When interface or listen-address 
option is used, it deactivates and behaves like commented out.


That might create a regression in special case. If you are running by 
default systemd-resolved, it listens already on domain port on address 
127.0.0.53 address. But if bind-interfaces or bind-dynamic is not used 
explicitly, dnsmasq will try to listen on wildcard address 0.0.0.0 and 
just filter incoming requests, accepting only those arriving on 
interface eth0. But if any service already listens on port domain, it 
will fail to listen on it and fail to start.


Solution is simple: add your own explicit bind-interfaces, because it is 
not present by default. Use instead this:


(echo bind-interfaces; echo interface=eth0) > /etc/dnsmasq.d/iface.conf

There are some packages, which depends on dnsmasq in various way. 
libvirt or NetworkManager should not be affected, but won't hurt 
checking it. I would like to ask their maintainers depending on dnsmasq 
to check this change will not break their functionality and cause 
regressions. Use bug [1] to report problems found with this change, 
don't be afraid to set needinfo? on me.


Unless some regression appears, I would like to backport this change 
also into Fedora 39 stable after two weeks without reported regressions.


Thank you for reading it so far!

Best Regards,
Petr

1. https://bugzilla.redhat.com/show_bug.cgi?id=2258062
2. https://src.fedoraproject.org/rpms/dnsmasq/pull-request/15

--
Petr Menšík
Software Engineer, RHEL
Red Hat, https://www.redhat.com/
PGP: DFCF908DB7C87E8E529925BC4931CA5B6C9FC5CB



OpenPGP_0x4931CA5B6C9FC5CB.asc
Description: OpenPGP public key


OpenPGP_signature.asc
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Update to dav1d v1.3.0 including soname bump coming to rawhide

2024-01-12 Thread Fabio Valentini
On Fri, Jan 12, 2024 at 7:04 PM Fabio Valentini  wrote:
>
> On Thu, Jan 4, 2024 at 5:23 PM Fabio Valentini  wrote:
> >
> > Hi all,
> >
> > I am planning to push the update for dav1d v1.3.0 to rawhide. It
> > involves an soname bump from libdav1d.so.6 to libdav1d.so.7 due to
> > minor ABI changes. According to the release notes, there are were no
> > actual breaking changes to existing APIs, so the update should be
> > safe:
> >
> > https://code.videolan.org/videolan/dav1d/-/blob/1.3.0/NEWS
> >
> > As far as I can tell, the following packages will need to be rebuilt:
> >
> > - ffmpeg
> > - firefox
> > - libavif
> > - libheif
> > - seamonkey
> > - vlc
> > - xine-lib
> >
> > The builds will be handled in a side-tag by me, other provenpackagers,
> > or multimedia-sig members.
>
> I did some test builds in COPR, and they showed no regressions. So I
> am running the dav1d v1.3.0 build and necessary rebuilds now, in the
> side tag f40-build-side-81354. I will submit an update from the builds
> in the side tag as soon as all builds have finished, which should be
> later today (or at worst, tomorrow morning, depending on how long the
> builds take).

All builds are now done, and I have submitted the bodhi update:
https://bodhi.fedoraproject.org/updates/FEDORA-2024-ae65daded4

Fabio
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: F40 Change Proposal: ROCm 6 Release (Self-Contained)

2024-01-12 Thread Tim Flink


On 1/12/24 14:52, Ryan Bach via devel wrote:

https://release-monitoring.org/project/132606/
--


I'm not sure I understand the purpose of that link.

The git repo that anitya is tracking there is mostly docs and isn't on the list 
of ROCm components that we're planning to package in Fedora. It should get 
updated with new tags whenever there's a ROCm release but so will all the 
individual components that are/will be in Fedora.

What am I missing?

Tim
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: F40 Change Proposal: Pytorch Release (Self-Contained)

2024-01-12 Thread Dominik 'Rathann' Mierzejewski
On Friday, 12 January 2024 at 20:46, Tim Flink wrote:
[...]
> We're still working on AMD GPU support via ROCm - hopefully that will
> be for F41.

Is there a place where one can track progress and assist? I've got an
AMD GPU and would be happy to help test things.

Regards,
Dominik
-- 
Fedora   https://fedoraproject.org
Deep in the human unconscious is a pervasive need for a logical universe that
makes sense. But the real universe is always one step beyond logic.
-- from "The Sayings of Muad'Dib" by the Princess Irulan
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Removing deprecated %patch syntax from go-sig's packages

2024-01-12 Thread Maxwell G
On Tue Jan 9, 2024 at 17:30 +, Maxwell G wrote:
> Hi everyone,
>
> RPM has deprecated the `%patchN` syntax in favor of `%patch -PN` where
> `N` is the patch number. See the RPM documentation for more information
> [1]. In current RPM versions, this syntax only emits a deprecation
> warning, but support for this syntax has been removed completely on the
> rpm master branch [2]. Around 100 packages maintained by the go-sig
> still use this syntax.
>
> Later this week/early next week, I will run this script [3] over the
> affected go-sig packages [4] to update them to the modern patch syntax.
> For example, the script will change:
>
> %patch0 -p1 -> %patch -P0 -p1
> %patch0005 -p2 -> %patch -P0005 -p2
>
> If anyone has any objections or would like to exclude a package, please
> let me know.
>
> ---Maxwell
>
> [1] https://rpm-software-management.github.io/rpm/manual/spec.html#patch-1
> [2] 
> https://github.com/rpm-software-management/rpm/commit/afd352481bacea521ce5ba01e989866478278532
> [3] 
> https://git.sr.ht/~gotmax23/fedora-scripts/tree/main/item/new_patch_syntax.sh
> [4] 
> https://git.sr.ht/~gotmax23/fedora-scripts/tree/main/item/go-sig/new_patch_syntax/packages

This has been completed. Have a good weekend!


-- 
Maxwell G (@gotmax23)
Pronouns: He/They
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: F40 Change Proposal: ROCm 6 Release (Self-Contained)

2024-01-12 Thread Ryan Bach via devel
https://release-monitoring.org/project/132606/
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Changes/RemovePythonMockUsage affected packages

2024-01-12 Thread Maxwell G
Hi everyone,

https://fedoraproject.org/wiki/Changes/RemovePythonMockUsage has been
approved, so Michel and I will be working on identifying packages that
still depend on python3-mock. python3-mock has been deprecated for 6
releases in favor of unittest.mock from the Python standard library, and
we would like to finally retire the package. We will help with PRs, but
we would also appreciate help from packagers to fix their own packages.
https://fedoraproject.org/wiki/Changes/DeprecatePythonMock#How_to_migrate_to_unittest.mock
provides guidance on how to accomplish that. Please reach out to us or
pop into https://matrix.to/#/#python:fedoraproject.org if you have any
questions.

Here is a list of packages that currently depend on python3-mock at
runtime and/or buildtime:

Maintainers by package:
ansible-collection-community-libvirt gotmax23 pghmcfc
ansible-collection-kubernetes-core gotmax23 kevin
autojump codeblock orion salimma ttomecek
compose-utilscarlwgeorge lsedlar
enki raphgro
fedmsg   kevin
fedscm-admin cqi ignatenkobrain limb mohanboddu mprahl tibbs
gtimelog amigadave
libabigail   dodji mcermak sinnykumari
limnoria kevin
litecli  fab
nest ankursinha
obs-service-tar_scm  defolos ngompa
odcs cqi hlin lsedlar qwan
oraculum frantisekz lbrabec
pdc-client   kevin lholecek lsedlar nphilipp
pungidmach hlin lsedlar maxamillion onosek tdawson wwoods
pychess  bruno dcavalca
pycolumnize  fab kushal
pyee pbrobinson
pyosmium tomh
pytest   churchyard mrunge radez thm
python-agate jujens
python-aiounifi  fab
python-ansible-runner radez
python-apprise   lead2gold
python-arrow pingou
python-bashate   apevec mikelo2
python-billiard  fab frantisekz mrunge ngompa pingou pjp
python-bitmath   tbielawa
python-bluepyopt ankursinha
python-boto  apevec gholms limb
python-catkin_tools  ankursinha cottsay rmattes
python-check-manifest fab
python-codecov   dcavalca
python-collectd_cvmfs stevetraylen
python-collectd_systemd stevetraylen
python-cotyledon jcapitao
python-croniter  jcapitao totol
python-datadog   dminer
python-debianbts huzaifas
python-dictdifferjmontleon
python-diff-coveraekoroglu dshea
python-django-filter aekoroglu lbazan
python-docker-squash goldmann
python-doit  jamatos
python-dtfabric  fab
python-elastic-transport aekoroglu
python-elasticsearch aekoroglu piotrp stevetraylen
python-enrichchedi
python-etcd  neil
python-eyed3 amigadave cicku pjp
python-f5-icontrol-rest xavierb
python-f5-sdkxavierb
python-fastpurge rohanpm
python-fedmsg-meta-fedora-infrastructure kevin
python-firehose  athoscr dmalcolm
python-flake8-polyfill cottsay
python-gabbi apevec chandankumar
python-gevent-eventemitter atim
python-google-auth-oauthlib fab
python-graphviz  eclipseo mairacanal
python-http-ece  limb
python-httpretty jpopelka
python-hupperkevin
python-ifcfg cottsay
python-ipmi  lbazan
python-jenkins   cottsay
python-keystoneclient jcapitao
python-klustaankursinha
python-kubernetesamoralej jmontleon
python-libarchive-c  zbyszek
python-lunr  smani
python-magnumclient  apevec chandankumar
python-moksha-common lbalhar
python-moksha-hubgui1ty
python-music21   zbyszek
python-mwclient  adamwill rdieter
python-network-runner radez
python-nuheatfab
python-octaviaclient cgoncalves
python-opnsense  fab
python-osc-lib   amoralej apevec hguemar jpena jruzicka
python-oslo-log  apevec hguemar
python-pelican   mrunge
python-persist-queue eharney
python-pip   churchyard ksurma torsava ttorling
python-praw  fab fale
python-prawcore  fab
python-promise   fab
python-pyarlofab
python-pymochad  fab
python-pynn  ankursinha
python-pysb  zbyszek
python-pytest-services ngompa salimma
python-pytest-shutil kevin
python-pytest-spec   fab
python-ratelimitingfilter mfabik mkutlak msuchy
python-rows  fab
python-shade larsks
python-simplebayes   qulogic
python-slacker   fab
python-sphinx-intl   jujens
python-sqlalchemy-collectd mbayer mrunge
python-sseclient fab
python-statsdtdecacqu
python-steam atim
python-sure  music
python-tackerclient  amoralej
python-tinyrpc   amoralej jpena
python-twilioedward-evans-aiven elisre italomga nickfarrell pwouters 
rominf rommell
python-twitter   spot
python-urwidtreesttomecek
python-vdf   atim
python-vine  frantisekz mrunge ngompa pingou
python-virtualbmcjorti
python-vsts-cd-manager mhayden
python-waterfurnace  fab
python-whisper   jonathanspw jsteffan piotrp
python-xvfbwrapper   mrunge totol
python-zaqarclient   flaper87 hguemar 

Changes/RemovePythonMockUsage affected packages

2024-01-12 Thread Maxwell G
Hi everyone,

https://fedoraproject.org/wiki/Changes/RemovePythonMockUsage has been
approved, so Michel and I will be working on identifying packages that
still depend on python3-mock. python3-mock has been deprecated for 6
releases in favor of unittest.mock from the Python standard library, and
we would like to finally retire the package. We will help with PRs, but
we would also appreciate help from packagers to fix their own packages.
https://fedoraproject.org/wiki/Changes/DeprecatePythonMock#How_to_migrate_to_unittest.mock
provides guidance on how to accomplish that. Please reach out to us or
pop into https://matrix.to/#/#python:fedoraproject.org if you have any
questions.

Here is a list of packages that currently depend on python3-mock at
runtime and/or buildtime:

Maintainers by package:
ansible-collection-community-libvirt gotmax23 pghmcfc
ansible-collection-kubernetes-core gotmax23 kevin
autojump codeblock orion salimma ttomecek
compose-utilscarlwgeorge lsedlar
enki raphgro
fedmsg   kevin
fedscm-admin cqi ignatenkobrain limb mohanboddu mprahl tibbs
gtimelog amigadave
libabigail   dodji mcermak sinnykumari
limnoria kevin
litecli  fab
nest ankursinha
obs-service-tar_scm  defolos ngompa
odcs cqi hlin lsedlar qwan
oraculum frantisekz lbrabec
pdc-client   kevin lholecek lsedlar nphilipp
pungidmach hlin lsedlar maxamillion onosek tdawson wwoods
pychess  bruno dcavalca
pycolumnize  fab kushal
pyee pbrobinson
pyosmium tomh
pytest   churchyard mrunge radez thm
python-agate jujens
python-aiounifi  fab
python-ansible-runner radez
python-apprise   lead2gold
python-arrow pingou
python-bashate   apevec mikelo2
python-billiard  fab frantisekz mrunge ngompa pingou pjp
python-bitmath   tbielawa
python-bluepyopt ankursinha
python-boto  apevec gholms limb
python-catkin_tools  ankursinha cottsay rmattes
python-check-manifest fab
python-codecov   dcavalca
python-collectd_cvmfs stevetraylen
python-collectd_systemd stevetraylen
python-cotyledon jcapitao
python-croniter  jcapitao totol
python-datadog   dminer
python-debianbts huzaifas
python-dictdifferjmontleon
python-diff-coveraekoroglu dshea
python-django-filter aekoroglu lbazan
python-docker-squash goldmann
python-doit  jamatos
python-dtfabric  fab
python-elastic-transport aekoroglu
python-elasticsearch aekoroglu piotrp stevetraylen
python-enrichchedi
python-etcd  neil
python-eyed3 amigadave cicku pjp
python-f5-icontrol-rest xavierb
python-f5-sdkxavierb
python-fastpurge rohanpm
python-fedmsg-meta-fedora-infrastructure kevin
python-firehose  athoscr dmalcolm
python-flake8-polyfill cottsay
python-gabbi apevec chandankumar
python-gevent-eventemitter atim
python-google-auth-oauthlib fab
python-graphviz  eclipseo mairacanal
python-http-ece  limb
python-httpretty jpopelka
python-hupperkevin
python-ifcfg cottsay
python-ipmi  lbazan
python-jenkins   cottsay
python-keystoneclient jcapitao
python-klustaankursinha
python-kubernetesamoralej jmontleon
python-libarchive-c  zbyszek
python-lunr  smani
python-magnumclient  apevec chandankumar
python-moksha-common lbalhar
python-moksha-hubgui1ty
python-music21   zbyszek
python-mwclient  adamwill rdieter
python-network-runner radez
python-nuheatfab
python-octaviaclient cgoncalves
python-opnsense  fab
python-osc-lib   amoralej apevec hguemar jpena jruzicka
python-oslo-log  apevec hguemar
python-pelican   mrunge
python-persist-queue eharney
python-pip   churchyard ksurma torsava ttorling
python-praw  fab fale
python-prawcore  fab
python-promise   fab
python-pyarlofab
python-pymochad  fab
python-pynn  ankursinha
python-pysb  zbyszek
python-pytest-services ngompa salimma
python-pytest-shutil kevin
python-pytest-spec   fab
python-ratelimitingfilter mfabik mkutlak msuchy
python-rows  fab
python-shade larsks
python-simplebayes   qulogic
python-slacker   fab
python-sphinx-intl   jujens
python-sqlalchemy-collectd mbayer mrunge
python-sseclient fab
python-statsdtdecacqu
python-steam atim
python-sure  music
python-tackerclient  amoralej
python-tinyrpc   amoralej jpena
python-twilioedward-evans-aiven elisre italomga nickfarrell pwouters 
rominf rommell
python-twitter   spot
python-urwidtreesttomecek
python-vdf   atim
python-vine  frantisekz mrunge ngompa pingou
python-virtualbmcjorti
python-vsts-cd-manager mhayden
python-waterfurnace  fab
python-whisper   jonathanspw jsteffan piotrp
python-xvfbwrapper   mrunge totol
python-zaqarclient   flaper87 hguemar 

Re: F40 Change Proposal: Pytorch Release (Self-Contained)

2024-01-12 Thread Tim Flink



On 1/11/24 21:40, drago01 wrote:



On Thursday, January 11, 2024, Aoife Moloney > wrote:



== Benefit to Fedora ==

This change will introduce PyTorch, a high demand machine learning
framework, to Fedora. PyTorch is widely used for tasks such as image
and speech recognition, natural language processing, and other
artificial intelligence applications, providing a user-friendly
interface for building and experimenting with complex machine learning
models. This is for CPU (x86_64 and aarch64) only and is the first
release for Fedora. The current development effort is focused on AMD
GPU acceleration.


What does this mean? Is it now CPU only or does it support AMD GPUs?

CPU only would be of limited use and people would most likely just use 
pip instead.


Yes, pytorch would be CPU only for F40 as a first step.

We're still working on AMD GPU support via ROCm - hopefully that will be for 
F41.

Tim
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: F40 Change Proposal: Pytorch Release (Self-Contained)

2024-01-12 Thread Andreas Tunek
Den fre 12 jan. 2024 kl 05:40 skrev drago01 :

>
>
> On Thursday, January 11, 2024, Aoife Moloney  wrote:
>
>>
>> == Benefit to Fedora ==
>>
>> This change will introduce PyTorch, a high demand machine learning
>> framework, to Fedora. PyTorch is widely used for tasks such as image
>> and speech recognition, natural language processing, and other
>> artificial intelligence applications, providing a user-friendly
>> interface for building and experimenting with complex machine learning
>> models. This is for CPU (x86_64 and aarch64) only and is the first
>> release for Fedora. The current development effort is focused on AMD
>> GPU acceleration.
>>
>>
>> What does this mean? Is it now CPU only or does it support AMD GPUs?
>
> CPU only would be of limited use and people would most likely just use pip
> instead.
>
>

I think it would be great if I could install PyTorch from the Fedora
packages even if it only runs on the CPU.

/Andreas


> --
> ___
> 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, report it:
> https://pagure.io/fedora-infrastructure/new_issue
>
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Update to dav1d v1.3.0 including soname bump coming to rawhide

2024-01-12 Thread Fabio Valentini
On Thu, Jan 4, 2024 at 5:23 PM Fabio Valentini  wrote:
>
> Hi all,
>
> I am planning to push the update for dav1d v1.3.0 to rawhide. It
> involves an soname bump from libdav1d.so.6 to libdav1d.so.7 due to
> minor ABI changes. According to the release notes, there are were no
> actual breaking changes to existing APIs, so the update should be
> safe:
>
> https://code.videolan.org/videolan/dav1d/-/blob/1.3.0/NEWS
>
> As far as I can tell, the following packages will need to be rebuilt:
>
> - ffmpeg
> - firefox
> - libavif
> - libheif
> - seamonkey
> - vlc
> - xine-lib
>
> The builds will be handled in a side-tag by me, other provenpackagers,
> or multimedia-sig members.

I did some test builds in COPR, and they showed no regressions. So I
am running the dav1d v1.3.0 build and necessary rebuilds now, in the
side tag f40-build-side-81354. I will submit an update from the builds
in the side tag as soon as all builds have finished, which should be
later today (or at worst, tomorrow morning, depending on how long the
builds take).

Fabio
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


perl-URI-NamespaceMap license tag corrected

2024-01-12 Thread Petr Pisar
I corrected a mistake in perl-URI-NamespaceMap License tag from:

(GPL+ or Artistic) or Public Domain

to:

(GPL-1.0-or-later OR Artistic-1.0-Perl) AND LicenseRef-Fedora-Public-Domain

-- Petr


signature.asc
Description: PGP 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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: Orphaning python-jupyter-collaboration and other related packages

2024-01-12 Thread Lumír Balhar

Packages are now orphaned and ready to take over.

Have a nice day.

Lumír

On 1/10/24 14:21, Lumír Balhar wrote:

Hello.

I plan to orphan the following independent set of packages:

python-jupyter-collaboration
python-jupyter-server-fileid
python-jupyter-ydoc
python-ypy-websocket
python-y-py
rust-yrs
rust-lib0

I've packaged python-jupyter-collaboration to bring the real-time 
collaboration feature into Jupyter lab (like Google docs have). But 
now, they decided to switch to a different backend and the update of 
jupyter-ydoc and related components requires to package at least two 
new packages pycrdt and pycrdt-websocket and I don't have enought time 
for that.


Users of Jupyter Lab won't lose the real-time feature. If you want to 
use it, make sure you have the latest version of jupyterlab installed. 
The latest version makes it possible to install and use extensions 
from Python Package Index. Just run Jupyter lab, switch to extensions 
pane and install jupyter-collaboration and then, after a restart of 
jupyter lab, you have the same functionality as 
python3-jupyter-collaboration provides. Extensions are installed into 
$HOME/.local/lib/python… (same as pip install --user).


Rawhide: https://koji.fedoraproject.org/koji/buildinfo?buildID=2343378
F39: https://bodhi.fedoraproject.org/updates/FEDORA-2024-4805f7aa89

Have a nice day.

Lumír


--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Fedora rawhide compose report: 20240112.n.0 changes

2024-01-12 Thread Fedora Rawhide Report
OLD: Fedora-Rawhide-20240111.n.0
NEW: Fedora-Rawhide-20240112.n.0

= SUMMARY =
Added images:3
Dropped images:  1
Added packages:  7
Dropped packages:0
Upgraded packages:   144
Downgraded packages: 0

Size of added packages:  6.91 MiB
Size of dropped packages:0 B
Size of upgraded packages:   2.09 GiB
Size of downgraded packages: 0 B

Size change of upgraded packages:   16.66 MiB
Size change of downgraded packages: 0 B

= ADDED IMAGES =
Image: Silverblue dvd-ostree aarch64
Path: 
Silverblue/aarch64/iso/Fedora-Silverblue-ostree-aarch64-Rawhide-20240112.n.0.iso
Image: Silverblue dvd-ostree x86_64
Path: 
Silverblue/x86_64/iso/Fedora-Silverblue-ostree-x86_64-Rawhide-20240112.n.0.iso
Image: Onyx dvd-ostree x86_64
Path: Onyx/x86_64/iso/Fedora-Onyx-ostree-x86_64-Rawhide-20240112.n.0.iso

= DROPPED IMAGES =
Image: Workstation live aarch64
Path: 
Workstation/aarch64/iso/Fedora-Workstation-Live-aarch64-Rawhide-20240111.n.0.iso

= ADDED PACKAGES =
Package: python-sgqlc-16.3-1.fc40
Summary: Simple GraphQL Client
RPMs:python3-sgqlc
Size:154.56 KiB

Package: rust-bracoxide-0.1.3-1.fc40
Summary: Feature-rich library for brace pattern combination, permutation 
generation, and error handling
RPMs:rust-bracoxide+default-devel rust-bracoxide-devel
Size:29.91 KiB

Package: rust-calamine-0.22.1-1.fc40
Summary: Excel/OpenDocument Spreadsheets reader and deserializer in pure rust
RPMs:rust-calamine+chrono-devel rust-calamine+dates-devel 
rust-calamine+default-devel rust-calamine+once_cell-devel 
rust-calamine+picture-devel rust-calamine-devel
Size:107.64 KiB

Package: rust-uu_base64-0.0.23-1.fc40
Summary: Base64 ~ (uutils) decode/encode input (base64-encoding)
RPMs:rust-uu_base64+default-devel rust-uu_base64-devel uu_base64
Size:1.67 MiB

Package: rust-uu_basenc-0.0.23-1.fc40
Summary: Basenc ~ (uutils) decode/encode input
RPMs:rust-uu_basenc+default-devel rust-uu_basenc-devel uu_basenc
Size:1.67 MiB

Package: rust-uu_cat-0.0.23-1.fc40
Summary: Cat ~ (uutils) concatenate and display input
RPMs:rust-uu_cat+default-devel rust-uu_cat-devel uu_cat
Size:1.58 MiB

Package: rust-uu_cksum-0.0.23-1.fc40
Summary: Cksum ~ (uutils) display CRC and size of input
RPMs:rust-uu_cksum+default-devel rust-uu_cksum-devel uu_cksum
Size:1.70 MiB


= DROPPED PACKAGES =

= UPGRADED PACKAGES =
Package:  R-flexiblas-3.4.0-1.fc40
Old package:  R-flexiblas-3.3.0-6.fc40
Summary:  FlexiBLAS API Interface for R
RPMs: R-flexiblas
Size: 183.29 KiB
Size change:  -379 B
Changelog:
  * Thu Jan 11 2024 I??aki ??car  - 3.4.0-1
  - Update to 3.4.0


Package:  annobin-12.35-2.fc40
Old package:  annobin-12.35-1.fc40
Summary:  Annotate and examine compiled binary files
RPMs: annobin-annocheck annobin-docs annobin-libannocheck 
annobin-plugin-clang annobin-plugin-gcc annobin-plugin-llvm
Size: 5.36 MiB
Size change:  -18.97 KiB
Changelog:
  * Thu Jan 11 2024 Songsong Zhang  - 12.35-2
  - Spec File: Do not install annocheck.1.gz when annocheck is disabled


Package:  ansible-collection-awx-awx-23.6.0-1.fc40
Old package:  ansible-collection-awx-awx-23.5.1-1.fc40
Summary:  Ansible modules and plugins for working with AWX
RPMs: ansible-collection-awx-awx
Size: 104.01 KiB
Size change:  595 B
Changelog:
  * Thu Jan 11 2024 Andrew Heath  - 23.6.0-1
  - Update to 23.6.0


Package:  at-spi2-core-2.50.1-1.fc40
Old package:  at-spi2-core-2.50.0-1.fc40
Summary:  Protocol definitions and daemon for D-Bus at-spi
RPMs: at-spi2-atk at-spi2-atk-devel at-spi2-core at-spi2-core-devel atk 
atk-devel
Size: 6.39 MiB
Size change:  30.51 KiB
Changelog:
  * Thu Jan 11 2024 Kalev Lember  - 2.50.1-1
  - Update to 2.50.1


Package:  auryn-0.8.2-22.fc40
Old package:  auryn-0.8.2-21.fc39
Summary:  Plastic Recurrent Network Simulator
RPMs: auryn-doc auryn-mpich auryn-mpich-devel auryn-openmpi 
auryn-openmpi-devel
Size: 6.23 MiB
Size change:  -16.15 KiB
Changelog:
  * Wed Dec 06 2023 Patrick Palka  - 0.8.2-22
  - Fix build with boost-1.83.0


Package:  bodhi-server-8.0.2-1.fc40
Old package:  bodhi-server-8.0.1-1.fc40
Summary:  Bodhi server
RPMs: bodhi-composer bodhi-server
Size: 4.62 MiB
Size change:  2 B
Changelog:
  * Thu Jan 11 2024 Mattia Verga  - 8.0.2-1
  - Update to 8.0.2


Package:  cinnamon-screensaver-6.0.2-2.fc40
Old package:  cinnamon-screensaver-6.0.2-1.fc40
Summary:  Cinnamon Screensaver
RPMs: cinnamon-screensaver
Size: 804.39 KiB
Size change:  -1.38 KiB
Changelog:
  * Thu Jan 11 2024 Leigh Scott  - 6.0.2-2
  - Revert upstream commit


Package:  coin-or-OS-2.10.3-7.fc40
Old package:  coin-or-OS-2.10.3-6.fc39
Summary:  Optimization Services
RPMs: coin-or-OS coin-or-OS-devel coin-or-OS-doc
Size: 44.37 MiB
Size change:  -73.90 KiB
Changelog:
  * Thu Jan 11 2024 Antonio Trande

Re: SPDX Statistics - Eight-hour day edition

2024-01-12 Thread Miroslav Suchý

Dne 05. 01. 24 v 8:14 Miroslav Suchý napsal(a):


To ease the migration I created a scantool-tookit reports for remaining 
packages. It is available here

http://miroslav.suchy.cz/fedora/spdx-reports/

Right now there are missing packages from ELN set and all other missing Fedora packages from A to L. The script 
generating the reports is still running - It has been running whole Chrismas.


If your package is missing wait few more days. Or you can install 
scancode-toolkit and run:
~/.local/bin/scancode --license --html /tmp/spdx.html --license-references  . 


I am adding more and more reports. Now all packages from A* to Q* are available.

--
Miroslav Suchy, RHCA
Red Hat, Manager, Packit and CPT, #brno, #fedora-buildsys
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


Re: [Fedocal] Reminder meeting : ELN SIG

2024-01-12 Thread Stephen Gallagher
On Thu, Jan 11, 2024 at 7:00 AM  wrote:
>
> Dear all,
>
> You are kindly invited to the meeting:
>ELN SIG on 2024-01-12 from 12:00:00 to 13:00:00 US/Eastern
>At fedora-meet...@irc.libera.chat
>
> The meeting will be about:

The upcoming inheritance break for CentOS Stream 10 at the Fedora 40
Branch event.

>
> Source: https://calendar.fedoraproject.org//meeting/10568/
>
> --
> ___
> 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, report it: 
> https://pagure.io/fedora-infrastructure/new_issue\
--
___
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, report it: 
https://pagure.io/fedora-infrastructure/new_issue


[Bug 2257961] perl-Business-ISBN-Data-20240111.001 is available

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

Fedora Update System  changed:

   What|Removed |Added

 Resolution|--- |ERRATA
 Status|MODIFIED|CLOSED
   Fixed In Version||perl-Business-ISBN-Data-202
   ||40111.001-1.fc40
Last Closed||2024-01-12 08:15:26



--- Comment #2 from Fedora Update System  ---
FEDORA-2024-5358f7041f has been pushed to the Fedora 40 stable repository.
If problem still persists, please make note of it in this bug report.


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

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


[Bug 2257961] perl-Business-ISBN-Data-20240111.001 is available

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

Fedora Update System  changed:

   What|Removed |Added

 Status|NEW |MODIFIED



--- Comment #1 from Fedora Update System  ---
FEDORA-2024-5358f7041f has been submitted as an update to Fedora 40.
https://bodhi.fedoraproject.org/updates/FEDORA-2024-5358f7041f


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

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