Improving Fedora boot time when libvirt is installed
by Gordon Messmer
(apologies for the long-ish message, but I'd like to save people the
trouble of re-reading a year-old very long email thread)
Early last year there was a thread on this list (Re: "Is
NetworkManager-wait-online.service necessary by default?") in which
maintainers discussed the issue of boot times increasing when libvirt
was installed as a result of iscsi creating a service order dependency
between network-online and remote-fs-pre. If I'm not mistaken, it was
unanimously agreed that it was undesirable for this dependency to exist.
This delay is still the most common cause that I find among people who
complain that it takes a long time to boot Fedora, and unfortunately the
most common advice given to those people is "disable network-online".
It's difficult to explain why this is a Bad Thing (TM).
A number of possible solutions were discussed in that thread.
Unfortunately many of them don't work (or don't work reliably), which I
assume is why the problem is not solved, so I'm hoping to revive
discussion of the ones that will work. The problem occurs because: 1)
libvirt requires libvirt-daemon-driver-storage-iscsi and
iscsi-initiator-utils, 2) iscsi.service is enabled by default (per
https://pagure.io/fesco/issue/2386), 3) iscsi.service is ordered after
network-online and 4) before remote-fs-pre.target.
iscsi.service already has a "ConditionDirectoryNotEmpty", but that's
evaluated when the service would be executed, so the ordering dependency
between network-online and remote-fs-pre exists even though iscsi won't
start. There was some discussion of using ".path" units, but that seems
to have the same problem.
There was also discussion of disabling the service by default and using
a generator to enable the service, and Lennart thought this was the best
solution. I started work to add a simple generator, but the
documentation for systemd.generator states "Non-essential file systems
like /var/ and /home/ are mounted after generators have run," and the
purpose of the generator would be to enable the service when there are
files in /var/lib/iscsi/nodes.
Several people suggested using a weak dependency (Suggests:) on the
iscsi driver, but I don't think that would solve the problem for most
users because weak dependencies are installed by default and nothing
really communicates to users that unless they add an obscure option,
their boot times will increase.
So, things that could work:
The package dependency could be dropped from libvirt entirely. Libvirt
users who want iscsi support can install that storage driver manually.
(addressing condition 1)
A generator would work if the iscsi node configs were in /etc instead of
/var. Would we consider changing the package layout? Possibly, moving
the node configurations to /etc and changing /var/lib/iscsi/nodes to a
symlink, with a pre-install script to handle existing installations?
We'd also need to change the default service state to disabled.
(addressing condition 2)
The ordering dependency on remote-fs-pre.target could be dropped, though
I expect that there will be objections and that option wouldn't be
considered. (addressing condition 4)
FESCo could also revisit 2386 and reconsider whether enabled by default
is the right decision for this service. I assume there was an explicit
decision for this because of the policy that an enabled-by-default
service "must not require manual configuration to function", which iscsi
does. Maybe the fact that it requires manual configuration means that
interested users should also be required to enable the service, given
the pain that the status quo causes for what seems like the far more
common case that this service is installed by all users of libvirt but
not needed by most of them. (also addressing condition 2)
9 hours, 29 minutes
F38 proposal: Rpmautospec by Default (System-Wide Change proposal)
by Ben Cotton
https://fedoraproject.org/wiki/Changes/Rpmautospec_by_Default
This document represents a proposed Change. As part of the Changes
process, proposals are publicly announced in order to receive
community feedback. This proposal will only be implemented if approved
by the Fedora Engineering Steering Committee.
== Summary ==
Rpmautospec (`%autorelease` and `%autochangelog`) is recommended as
the default approach.
Packaging Guidelines and other documentation are adjusted to describe
this approach first.
Various tools that provide spec file templates are adjusted.
== Owner ==
* Name: [[User:Nphilipp| Nils Philippsen]], [[User:Zbyszek| Zbigniew
Jędrzejewski-Szmek]]
* Email: nphilipp - at - redhat.com, zbyszek - at - in.waw.pl
== Detailed Description ==
{{admon/note|Brief reminder about rpmautospec|
The spec file contains:
<pre>
Version: 1.2.3
Release: %autorelease
...
%changelog
%autochangelog
</pre>
Rpmautospec uses git history. Whenever the package is built
(`.src.rpm` is generated), rpmautospec tooling will replace the
`%autorelease` macro with the number of commits since the last commit
that changed the `Version` field, and the `%autochangelog` macro with
a text generated from `git log`.
For details see the
[https://docs.pagure.org/fedora-infra.rpmautospec/principle.html
docs].
}}
Rpmautospec has been deployed in Fedora since F35
([[Changes/rpmautospec]]), and 3423/23045 packages use it (15%).
But it is still a "second-class citizen": most documentation doesn't
mention it, and many packagers know that it exists but don't use it in
their packages. We think that it's reasonable to switch to
`%autorelease`+`%autochangelog` for almost all packages and that
Packaging Guidelines and various packaging howtos should recommend
that approach to packagers. The "traditional" approach of
manually-managed `Release` and `%changelog` will remain valid and will
be documented as a fallback.
This change is targeted at Fedora 38, but it will actually apply to
all releases. The goal is to update the Packaging Guidelines and other
prominent documentation and tools now, and other docs and tools
possibly at a later time. Changing packages is out of scope.
It is worth mentioning that `rust2rpm` uses
`%autorelease`+`%autochangelog` since a few releases, so most rust
packages have switched. (Generally, rust spec files are recreated
using the generator for each new version, so the switch would happen
whenever a new version is packaged unless the packager opts out.)
== Feedback ==
* Thread on fedora-devel in August 2022:
[https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.o...
rpmautospec by default]
** open issues: a bunch have been fixed.
** maintenance: Nils will add some co-maintainers.
** compatibility with rpmdevtools, fedpkg/rpkg, fedora-review: see
Scope section.
== Benefit to Fedora ==
Various packaging workflows become smoother for packagers and contributors:
* packagers don't need to touch the `Release` field on updates
* packagers describe changes just once in the git commit message, the
`%changelog` entry is autogenerated
* patches to the spec file can be cherry-picked between branches
without trivial conflicts
* pull requests on src.fedoraproject.org can be merged without trivial conflicts
* in workflows that regenerate the spec file (rust2rpm, pip2rpm, …)
`%changelog` section doesn't need to be copied over
== Scope ==
* Proposal owners:
** provide pull requests to Packaging Guidelines and other docs to
make `%autorelease`+`%autochangelog` the default
** implement fixes for issues reported by packagers
** make semi-regular releases of rpmautospec
([https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.o...
0.3.1 was released on November 17th, and should be deployed to
production in about two weeks])
* Other developers:
** provide pull requests to other docs as appropriate
** accept the changes to documentation
** update other spec file generators (pip2rpm, others?)
* Somebody (TBD):
** `fedora-review` — https://pagure.io/rpkg/issue/641
** `fedpkg import` — with https://pagure.io/rpkg/c/3087dd7, the
command will fail. A replacement workflow that instead restores
`%autorelease`+`%autochangelog` in the file committed to dist-git
needs to be implemented.
* Related work
** https://pagure.io/rpkg/c/3087dd7
** https://src.fedoraproject.org/rpms/fedora-packager/pull-request/4
* Release engineering: [https://pagure.io/releng/issues #Releng issue number]
* Policies and guidelines: a list of places to be updated
** https://docs.fedoraproject.org/en-US/packaging-guidelines/#changelogs
** https://docs.fedoraproject.org/en-US/packaging-guidelines/Versioning
** https://docs.fedoraproject.org/en-US/package-maintainers/Packaging_Tutori...
* Trademark approval: N/A (not needed for this Change)
* Alignment with Objectives: N/A
== Upgrade/compatibility impact ==
Rpmautospec is already used by a decent number of packages, so any
issues are already being seen and need to be fixed anyway.
== How To Test ==
* Convert an existing package: `rpmautospec convert`. Ideally this
step is done right before a version bump so that the release numbers
restart at `-1`.
* Do local builds (`fedpkg local`, `fedpkg mockbuild`). Verify
correctness of version-release (`rpm -qpi`) and the changelog (`rpm
-qp --changelog`).
* Do builds in koji. Verify correctness of version-release and the changelog.
* For new packages, use `%autorelease`+`%autochangelog`. Repeat all
the tests listed above.
* Assume you are a newbie packager. Read the packaging docs and check
that the workflow is clear and the intructions are sufficient to use
rpmautospec tooling correctly.
== User Experience ==
No changes visible to end users.
== Dependencies ==
None.
== Contingency Plan ==
If it turns out that the rpmautospec workflows have unknown problems,
we can revert changes to documentation.
* Contingency mechanism: Revert changes to documentation by reverting
the appropriate commits. This can be done easily by FPC.
* Contingency deadline: Any time.
* Blocks release? No.
== Documentation ==
This page and any changes to Packaging Guidelines and other documents.
== Release Notes ==
Not needed.
--
Ben Cotton
He / Him / His
Fedora Program Manager
Red Hat
TZ=America/Indiana/Indianapolis
16 hours, 10 minutes
Orphaned packages looking for new maintainers
by Miro Hrončok
The following packages are orphaned and will be retired when they
are orphaned for six weeks, unless someone adopts them. If you know for sure
that the package should be retired, please do so now with a proper reason:
https://fedoraproject.org/wiki/How_to_remove_a_package_at_end_of_life
Note: If you received this mail directly you (co)maintain one of the affected
packages or a package that depends on one. Please adopt the affected package or
retire your depending package to avoid broken dependencies, otherwise your
package will fail to install and/or build when the affected package gets retired.
Request package ownership via the *Take* button in he left column on
https://src.fedoraproject.org/rpms/<pkgname>
Full report available at:
https://churchyard.fedorapeople.org/orphans-2023-01-30.txt
grep it for your FAS username and follow the dependency chain.
For human readable dependency chains,
see https://packager-dashboard.fedoraproject.org/
For all orphaned packages,
see https://packager-dashboard.fedoraproject.org/orphan
Package (co)maintainers Status Change
==============================================================================
belle-sip orphan, sdgathman 1 weeks ago
golang-github-cockroachdb-cockroach go-sig, orphan 3 weeks ago
golang-github-deepmap-oapi-codegen go-sig, orphan 1 weeks ago
golang-github-deislabs-oras go-sig, orphan 2 weeks ago
golang-github-docker-swarmkit go-sig, orphan 3 weeks ago
golang-github-skynetservices-skydns go-sig, jchaloup, orphan 1 weeks ago
humanity-icon-theme orphan 2 weeks ago
libeXosip2 orphan 1 weeks ago
libosip2 orphan 1 weeks ago
light-themes orphan 2 weeks ago
linphone orphan, sdgathman 1 weeks ago
lizardfs orphan 0 weeks ago
lnst jtluka, orphan, rpazdera 3 weeks ago
ocaml-dose3 orphan 2 weeks ago
ocaml-mccs orphan 2 weeks ago
ocaml-opam-file-format orphan 2 weeks ago
ortp orphan, sdgathman 1 weeks ago
percona-xtrabackup orphan, slaanesh 0 weeks ago
python-yubikey-manager orphan 3 weeks ago
python3-script orphan 2 weeks ago
rust-iter-read orphan, rust-sig 2 weeks ago
rust-lmdb orphan, rust-sig 2 weeks ago
rust-peresil orphan, rust-sig 2 weeks ago
rust-protoc orphan, rust-sig 2 weeks ago
rust-rawslice orphan, rust-sig 2 weeks ago
rust-sudo_plugin-sys orphan, rust-sig 2 weeks ago
rust-unreachable orphan, rust-sig 2 weeks ago
stgit orphan 2 weeks ago
validns orphan 2 weeks ago
The following packages require above mentioned packages:
Depending on: golang-github-deepmap-oapi-codegen (7), status change: 2023-01-19
(1 weeks ago)
golang-github-exoscale-egoscale (maintained by: carlwgeorge, go-sig)
golang-github-exoscale-egoscale-0.38.0-6.fc38.src requires
golang(github.com/deepmap/oapi-codegen/pkg/runtime) = 1.8.2-6.fc38
golang-github-exoscale-egoscale-devel-0.38.0-6.fc38.noarch requires
golang(github.com/deepmap/oapi-codegen/pkg/runtime) = 1.8.2-6.fc38
golang-github-acme-lego (maintained by: eclipseo, go-sig)
golang-github-acme-lego-4.4.0-8.fc37.src requires
golang(github.com/exoscale/egoscale) = 0.38.0-6.fc38
golang-github-acme-lego-devel-4.4.0-8.fc37.noarch requires
golang(github.com/exoscale/egoscale) = 0.38.0-6.fc38
golang-github-acme-lego-3 (maintained by: eclipseo, go-sig)
golang-github-acme-lego-3-3.9.0-7.fc37.src requires
golang(github.com/exoscale/egoscale) = 0.38.0-6.fc38
golang-github-acme-lego-3-devel-3.9.0-7.fc37.noarch requires
golang(github.com/exoscale/egoscale) = 0.38.0-6.fc38
golang-github-caddyserver-caddy-1 (maintained by: eclipseo, go-sig)
golang-github-caddyserver-caddy-1-1.0.4-11.fc38.src requires
golang(github.com/go-acme/lego/v3/certcrypto) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/tlsalpn01) = 3.9.0-7.fc37,
golang(github.com/mholt/certmagic-0.8) = 0.8.3-4.fc35
golang-github-caddyserver-caddy-1-devel-1.0.4-11.fc38.noarch requires
golang(github.com/go-acme/lego/v3/certcrypto) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/tlsalpn01) = 3.9.0-7.fc37,
golang(github.com/mholt/certmagic-0.8) = 0.8.3-4.fc35
golang-github-mholt-certmagic-0.8 (maintained by: eclipseo, go-sig)
golang-github-mholt-certmagic-0.8-0.8.3-4.fc35.src requires
golang(github.com/go-acme/lego/v3/acme) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/certcrypto) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/certificate) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/dns01) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/http01) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/tlsalpn01) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/lego) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/registration) = 3.9.0-7.fc37
golang-github-mholt-certmagic-devel-0.8-0.8.3-4.fc35.noarch requires
golang(github.com/go-acme/lego/v3/acme) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/certcrypto) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/certificate) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/dns01) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/http01) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/challenge/tlsalpn01) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/lego) = 3.9.0-7.fc37,
golang(github.com/go-acme/lego/v3/registration) = 3.9.0-7.fc37
golang-github-coredns-corefile-migration (maintained by: eclipseo, go-sig)
golang-github-coredns-corefile-migration-1.0.11-10.fc38.src requires
golang(github.com/caddyserver/caddy-1/caddyfile) = 1.0.4-11.fc38
golang-github-coredns-corefile-migration-devel-1.0.11-10.fc38.noarch requires
golang(github.com/caddyserver/caddy-1/caddyfile) = 1.0.4-11.fc38
golang-k8s-kubernetes (maintained by: eclipseo, go-sig)
golang-k8s-kubernetes-1.22.0-2.fc36~bootstrap.src requires
golang(github.com/coredns/corefile-migration/migration) = 1.0.11-10.fc38
golang-k8s-kubernetes-devel-1.22.0-2.fc36~bootstrap.noarch requires
golang(github.com/coredns/corefile-migration/migration) = 1.0.11-10.fc38
Depending on: golang-github-deislabs-oras (1), status change: 2023-01-09 (2
weeks ago)
golang-helm-3 (maintained by: dcavalca, go-sig)
golang-helm-3-3.5.4-2.fc35.src requires
golang(github.com/deislabs/oras/pkg/auth) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/auth/docker) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/content) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/context) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/oras) = 0.11.1-4.fc36
golang-helm-3-devel-3.5.4-2.fc35.noarch requires
golang(github.com/deislabs/oras/pkg/auth) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/auth/docker) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/content) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/context) = 0.11.1-4.fc36,
golang(github.com/deislabs/oras/pkg/oras) = 0.11.1-4.fc36
Depending on: humanity-icon-theme (2), status change: 2023-01-11 (2 weeks ago)
light-themes (maintained by: orphan)
monochrome-icon-theme-16.10-15.20180421bzr625.fc38.noarch requires
humanity-icon-theme = 0.6.15-10.fc38
yaru-theme (maintained by: atim)
yaru-icon-theme-22.10.3-2.fc38.noarch requires humanity-icon-theme =
0.6.15-10.fc38
Depending on: libeXosip2 (2), status change: 2023-01-19 (1 weeks ago)
linphone (maintained by: orphan, sdgathman)
linphone-3.6.1-50.fc38.i686 requires libeXosip2.so.7
linphone-3.6.1-50.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38
linphone-3.6.1-50.fc38.x86_64 requires libeXosip2.so.7()(64bit)
sipwitch (maintained by: nucleo, smani)
sipwitch-1.9.15-19.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38
sipwitch-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit)
sipwitch-runtime-1.9.15-19.fc38.i686 requires libeXosip2.so.7
sipwitch-runtime-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit)
Depending on: libosip2 (3), status change: 2023-01-19 (1 weeks ago)
libeXosip2 (maintained by: orphan)
libeXosip2-3.6.0-29.fc38.i686 requires libosip2.so.7, libosipparser2.so.7
libeXosip2-3.6.0-29.fc38.src requires libosip2-devel = 3.6.0-25.fc38
libeXosip2-3.6.0-29.fc38.x86_64 requires libosip2.so.7()(64bit),
libosipparser2.so.7()(64bit)
libeXosip2-devel-3.6.0-29.fc38.i686 requires libosip2-devel = 3.6.0-25.fc38
libeXosip2-devel-3.6.0-29.fc38.x86_64 requires libosip2-devel = 3.6.0-25.fc38
linphone (maintained by: orphan, sdgathman)
linphone-3.6.1-50.fc38.i686 requires libeXosip2.so.7, libosip2.so.7,
libosipparser2.so.7
linphone-3.6.1-50.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38,
libosip2-devel = 3.6.0-25.fc38
linphone-3.6.1-50.fc38.x86_64 requires libeXosip2.so.7()(64bit),
libosip2.so.7()(64bit), libosipparser2.so.7()(64bit)
sipwitch (maintained by: nucleo, smani)
sipwitch-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit),
libosipparser2.so.7()(64bit)
sipwitch-runtime-1.9.15-19.fc38.i686 requires libeXosip2.so.7,
libosipparser2.so.7
sipwitch-runtime-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit),
libosipparser2.so.7()(64bit)
sipwitch-1.9.15-19.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38
Depending on: ocaml-dose3 (4), status change: 2023-01-14 (2 weeks ago)
opam (maintained by: jjames)
opam-2.1.3-5.fc38.src requires ocaml-dose3-devel = 7.0.0-11.fc38
ocaml-benchmark (maintained by: andyli)
ocaml-benchmark-1.6-3.fc38.src requires opam-installer = 2.1.3-5.fc38
ocaml-sha (maintained by: andyli)
ocaml-sha-1.15.2-3.fc38.src requires opam-installer = 2.1.3-5.fc38
haxe (maintained by: andyli, rjones)
haxe-4.2.5-5.fc38.src requires ocaml-sha-devel = 1.15.2-3.fc38
Depending on: ocaml-mccs (4), status change: 2023-01-14 (2 weeks ago)
opam (maintained by: jjames)
opam-2.1.3-5.fc38.src requires ocaml-mccs-devel = 1.1-40.14.fc38
ocaml-benchmark (maintained by: andyli)
ocaml-benchmark-1.6-3.fc38.src requires opam-installer = 2.1.3-5.fc38
ocaml-sha (maintained by: andyli)
ocaml-sha-1.15.2-3.fc38.src requires opam-installer = 2.1.3-5.fc38
haxe (maintained by: andyli, rjones)
haxe-4.2.5-5.fc38.src requires ocaml-sha-devel = 1.15.2-3.fc38
Depending on: ocaml-opam-file-format (4), status change: 2023-01-14 (2 weeks ago)
opam (maintained by: jjames)
opam-2.1.3-5.fc38.src requires ocaml-opam-file-format-devel = 2.1.4-7.fc38
ocaml-benchmark (maintained by: andyli)
ocaml-benchmark-1.6-3.fc38.src requires opam-installer = 2.1.3-5.fc38
ocaml-sha (maintained by: andyli)
ocaml-sha-1.15.2-3.fc38.src requires opam-installer = 2.1.3-5.fc38
haxe (maintained by: andyli, rjones)
haxe-4.2.5-5.fc38.src requires ocaml-sha-devel = 1.15.2-3.fc38
Depending on: ortp (3), status change: 2023-01-19 (1 weeks ago)
libeXosip2 (maintained by: orphan)
libeXosip2-3.6.0-29.fc38.src requires ortp-devel = 2:0.23.0-8.fc35
linphone (maintained by: orphan, sdgathman)
linphone-3.6.1-50.fc38.i686 requires libeXosip2.so.7, libortp.so.9,
ortp(x86-32) = 2:0.23.0-8.fc35
linphone-3.6.1-50.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38,
ortp-devel = 2:0.23.0-8.fc35
linphone-3.6.1-50.fc38.x86_64 requires libeXosip2.so.7()(64bit),
libortp.so.9()(64bit), ortp(x86-64) = 2:0.23.0-8.fc35
linphone-devel-3.6.1-50.fc38.i686 requires pkgconfig(ortp) = 0.23.0
linphone-devel-3.6.1-50.fc38.x86_64 requires pkgconfig(ortp) = 0.23.0
linphone-mediastreamer-3.6.1-50.fc38.i686 requires libortp.so.9
linphone-mediastreamer-3.6.1-50.fc38.x86_64 requires libortp.so.9()(64bit)
linphone-mediastreamer-devel-3.6.1-50.fc38.i686 requires ortp-devel(x86-32) =
2:0.23.0-8.fc35, pkgconfig(ortp) = 0.23.0
linphone-mediastreamer-devel-3.6.1-50.fc38.x86_64 requires ortp-devel(x86-64)
= 2:0.23.0-8.fc35, pkgconfig(ortp) = 0.23.0
sipwitch (maintained by: nucleo, smani)
sipwitch-1.9.15-19.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38
sipwitch-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit)
sipwitch-runtime-1.9.15-19.fc38.i686 requires libeXosip2.so.7
sipwitch-runtime-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit)
Depending on: rust-lmdb (1), status change: 2023-01-14 (2 weeks ago)
fapolicy-analyzer (maintained by: jwass3)
fapolicy-analyzer-0.6.8-1.fc38.src requires rust-lmdb-devel = 0.8.0-9.fc38
See dependency chains of your packages at
https://packager-dashboard.fedoraproject.org/
See all orphaned packages at https://packager-dashboard.fedoraproject.org/orphan
Affected (co)maintainers (either directly or via packages' dependencies):
andyli: ocaml-dose3, ocaml-opam-file-format, ocaml-mccs
atim: humanity-icon-theme
carlwgeorge: golang-github-deepmap-oapi-codegen
dcavalca: golang-github-deislabs-oras
eclipseo: golang-github-deepmap-oapi-codegen
go-sig: golang-github-skynetservices-skydns,
golang-github-cockroachdb-cockroach, golang-github-deepmap-oapi-codegen,
golang-github-docker-swarmkit, golang-github-deislabs-oras
jchaloup: golang-github-skynetservices-skydns
jjames: ocaml-dose3, ocaml-opam-file-format, ocaml-mccs
jtluka: lnst
jwass3: rust-lmdb
nucleo: libosip2, ortp, libeXosip2
rjones: ocaml-dose3, ocaml-opam-file-format, ocaml-mccs
rpazdera: lnst
rust-sig: rust-unreachable, rust-rawslice, rust-lmdb, rust-peresil,
rust-iter-read, rust-sudo_plugin-sys, rust-protoc
sdgathman: ortp, libosip2, belle-sip, linphone, libeXosip2
slaanesh: percona-xtrabackup
smani: libosip2, ortp, libeXosip2
--
The script creating this output is run and developed by Fedora
Release Engineering. Please report issues at its pagure instance:
https://pagure.io/releng/
The sources of this script can be found at:
https://pagure.io/releng/blob/main/f/scripts/find_unblocked_orphans.py
Report finished at 2023-01-30 09:53:02 UTC
16 hours, 18 minutes
List of long term FTBFS packages to be retired next week
by Miro Hrončok
Dear maintainers.
Based on the current fail to build from source policy, the following packages
should be retired from Fedora 38 approximately one week before branching.
5 weekly reminders are required, hence the retirement will happen
approximately in 1 week, i.e. around 2023-02-08.
Since this is unfortunately after the branching,
packages will be retired on rawhide and f38.
This is the 4th reminder. I apologize for starting this process a bit later
than required.
Policy:
https://docs.fedoraproject.org/en-US/fesco/Fails_to_build_from_source_Fai...
The packages in rawhide were not successfully built at least since Fedora 35.
This report is based on dist tags.
Packages collected via:
https://github.com/hroncok/fedora-report-ftbfs-retirements/blob/master/ft...
If you see a package that was built, please let me know.
If you see a package that should be exempted from the process,
please let me know and we can work together to get a FESCo approval for that.
If you see a package that can be rebuilt, please do so.
Package (co)maintainers
==============================================================================
ArpON fab, sagarun
IQmol jussilehtola
bowtie jaruga, verdurin
btkbdd lkundrak
cave9 jonathanspw
ccrypt fab
cjdns sdgathman
datamash jhladky
erlpmd peter
free42 brouhaha
frogr teuf
goddi fab, go-sig
golang-github-adroll-goamz eclipseo, go-sig
golang-github-aphistic-sweet eclipseo, go-sig
golang-github-aws-sdk-2-0.24 eclipseo, go-sig
golang-github-cheekybits-genny eclipseo, go-sig
golang-github-cockroachdb-gostdlib eclipseo, go-sig
golang-github-cosmos72-gomacro go-sig, qulogic
golang-github-dave-dst eclipseo, go-sig
golang-github-docker-licensing eclipseo, go-sig
golang-github-gdamore-optopia fab, go-sig
golang-github-gopherjs eclipseo, go-sig, jchaloup
golang-github-jung-kurt-gofpdf eclipseo, go-sig
golang-github-latex eclipseo, go-sig
golang-github-maruel-panicparse eclipseo, go-sig
golang-github-maruel-panicparse-2 eclipseo, go-sig
golang-github-mattermost-xml-roundtrip-validator eclipseo, go-sig
golang-github-mholt-certmagic-0.8 eclipseo, go-sig
golang-gonum-1-plot eclipseo, go-sig
golang-helm-3 dcavalca, go-sig
golang-istio-pkg eclipseo, go-sig
golang-sigs-k8s-application eclipseo, go-sig
golang-sigs-k8s-controller-runtime eclipseo, go-sig
gtkhash nonamedotc
howl atim, pwalter
ipmiutil arcress
irssi-xmpp lbazan, maha
kguitar davidcornette
kjots kde-sig, thunderbirdtr
libmobi avsej
libmodulemd1 sgallagh
libndn-cxx susmit
libyami kwizart
libyami-utils kwizart
llvm10 petersen, sergesanspaille
llvm12 petersen, sergesanspaille,
tstellar
llvm9.0 jistone, petersen, tstellar
lucidlife pgordon
maven-scm mizdebsk, trawets
mimic pbrobinson
nall chkr
nodejs-tape fab, patches
openas2 sdgathman
opencl-utils lupinix
ortp orphan, sdgathman
percona-xtrabackup orphan, slaanesh
phasex tartina
php-doctrine-common remi, siwinski
php-hamcrest remi
php-laminas-code remi
php-laminas-config remi
php-ocramius-proxy-manager siwinski
php-symfony-security-acl remi, siwinski
portlet-2.0-api jjelen
rnetclient sergiodj
simde jaruga
tpm2-tss-engine mzavalavz
validns orphan
waffle ajax
wdune andymenderunix
xml-security-c bruno, kloczek
zmk zyga
The following packages require above mentioned packages:
Depending on: golang-github-cockroachdb-gostdlib (1)
golang-github-cockroachdb-cockroach (maintained by: go-sig, orphan)
golang-github-cockroachdb-cockroach-20.2.3-7.fc38.src requires
golang(github.com/cockroachdb/gostdlib/x/tools/imports) = 1.13.0-2.fc35
golang-github-cockroachdb-cockroach-devel-20.2.3-7.fc38.noarch requires
golang(github.com/cockroachdb/gostdlib/x/tools/imports) = 1.13.0-2.fc35
Depending on: golang-github-dave-dst (1)
golang-github-cockroachdb-cockroach (maintained by: go-sig, orphan)
golang-github-cockroachdb-cockroach-20.2.3-7.fc38.src requires
golang(github.com/dave/dst) = 0.26.2-2.fc35,
golang(github.com/dave/dst/decorator) = 0.26.2-2.fc35,
golang(github.com/dave/dst/dstutil) = 0.26.2-2.fc35
golang-github-cockroachdb-cockroach-devel-20.2.3-7.fc38.noarch requires
golang(github.com/dave/dst) = 0.26.2-2.fc35,
golang(github.com/dave/dst/decorator) = 0.26.2-2.fc35,
golang(github.com/dave/dst/dstutil) = 0.26.2-2.fc35
Depending on: golang-github-gdamore-optopia (1)
golang-nanomsg-mangos-3 (maintained by: fab, go-sig)
golang-nanomsg-mangos-3-3.2.1-9.fc38.src requires
golang(github.com/gdamore/optopia) = 0.2.0-3.fc35
golang-nanomsg-mangos-3-devel-3.2.1-9.fc38.noarch requires
golang(github.com/gdamore/optopia) = 0.2.0-3.fc35
Depending on: golang-github-gopherjs (1)
golang-honnef-js-dom (maintained by: eclipseo, go-sig, jchaloup)
golang-honnef-js-dom-0-0.13.20210113gitd4405f7.fc38.src requires
golang(github.com/gopherjs/gopherjs/js) = 0-0.15.20200727gitfce0ec3.fc35
golang-honnef-js-dom-devel-0-0.13.20210113gitd4405f7.fc38.noarch requires
golang(github.com/gopherjs/gopherjs/js) = 0-0.15.20200727gitfce0ec3.fc35
Depending on: golang-github-jung-kurt-gofpdf (21)
golang-github-ajstarks-deck (maintained by: eclipseo, go-sig)
golang-github-ajstarks-deck-0-0.15.20210114git30c9fc6.fc38.src requires
golang(github.com/ajstarks/svgo) = 0-0.17.20210108git7a3c8b5.fc38,
golang(github.com/ajstarks/svgo/float) = 0-0.17.20210108git7a3c8b5.fc38,
golang(github.com/jung-kurt/gofpdf) = 2.17.2-3.fc35
golang-github-ruudk-pdf417 (maintained by: eclipseo, go-sig)
golang-github-ruudk-pdf417-0-0.6.20201224git1af4ab5.fc38.src requires
golang(github.com/jung-kurt/gofpdf) = 2.17.2-3.fc35
golang-github-ajstarks-svgo (maintained by: eclipseo, go-sig, jchaloup)
golang-github-ajstarks-svgo-0-0.17.20210108git7a3c8b5.fc38.src requires
golang(github.com/ajstarks/deck/generate) = 0-0.15.20210114git30c9fc6.fc38
golang-github-ajstarks-svgo-personal-devel-0-0.17.20210108git7a3c8b5.fc38.noarch
requires golang(github.com/ajstarks/deck/generate) = 0-0.15.20210114git30c9fc6.fc38
golang-github-phpdave11-gofpdf (maintained by: eclipseo, go-sig)
golang-github-phpdave11-gofpdf-1.4.2-8.fc38.src requires
golang(github.com/ruudk/golang-pdf417) = 0-0.6.20201224git1af4ab5.fc38
golang-github-phpdave11-gofpdf-devel-1.4.2-8.fc38.noarch requires
golang(github.com/ruudk/golang-pdf417) = 0-0.6.20201224git1af4ab5.fc38
golang-github-aclements-gg (maintained by: eclipseo, go-sig, jchaloup)
golang-github-aclements-gg-0-0.14.20180422gitabd1f79.fc38.src requires
golang(github.com/ajstarks/svgo) = 0-0.17.20210108git7a3c8b5.fc38
golang-github-aclements-gg-devel-0-0.14.20180422gitabd1f79.fc38.noarch
requires golang(github.com/ajstarks/svgo) = 0-0.17.20210108git7a3c8b5.fc38
golang-gonum-1-plot (maintained by: eclipseo, go-sig)
golang-gonum-1-plot-0.8.1-4.20210125gita02d161.fc35.src requires
golang(github.com/ajstarks/svgo) = 0-0.17.20210108git7a3c8b5.fc38,
golang(github.com/go-latex/latex/drawtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/font/ttf) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/mtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/tex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/phpdave11/gofpdf) = 1.4.2-8.fc38
golang-gonum-1-plot-devel-0.8.1-4.20210125gita02d161.fc35.noarch requires
golang(github.com/ajstarks/svgo) = 0-0.17.20210108git7a3c8b5.fc38,
golang(github.com/go-latex/latex/drawtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/font/ttf) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/mtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/tex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/phpdave11/gofpdf) = 1.4.2-8.fc38
golang-github-latex (maintained by: eclipseo, go-sig)
golang-github-latex-0-0.3.20201224git94de131.fc35.src requires
golang(github.com/phpdave11/gofpdf) = 1.4.2-8.fc38
golang-github-latex-devel-0-0.3.20201224git94de131.fc35.noarch requires
golang(github.com/phpdave11/gofpdf) = 1.4.2-8.fc38
golang-x-perf (maintained by: eclipseo, go-sig, jchaloup)
golang-x-perf-0-0.19.20210123gitbdcc622.fc38.src requires
golang(github.com/aclements/go-gg/generic/slice) =
0-0.14.20180422gitabd1f79.fc38, golang(github.com/aclements/go-gg/ggstat) =
0-0.14.20180422gitabd1f79.fc38, golang(github.com/aclements/go-gg/table) =
0-0.14.20180422gitabd1f79.fc38
golang-x-perf-devel-0-0.19.20210123gitbdcc622.fc38.noarch requires
golang(github.com/aclements/go-gg/generic/slice) =
0-0.14.20180422gitabd1f79.fc38, golang(github.com/aclements/go-gg/ggstat) =
0-0.14.20180422gitabd1f79.fc38, golang(github.com/aclements/go-gg/table) =
0-0.14.20180422gitabd1f79.fc38
golang-github-cryptix-wav (maintained by: deepinde-sig, go-sig, zsun)
golang-github-cryptix-wav-0-0.13.20181114git8bdace6.fc38.src requires
golang(gonum.org/v1/plot) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/plotter) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/plotutil) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/vg) = 0.8.1-4.20210125gita02d161.fc35
deepin-api (maintained by: cheeselee, deepinde-sig, felixonmars, go-sig, zsun)
deepin-api-5.5.25-2.fc38.src requires golang(github.com/cryptix/wav) =
0-0.13.20181114git8bdace6.fc38, golang(github.com/linuxdeepin/go-lib) =
5.8.9.2-3.fc38
golang-deepin-api-devel-5.5.25-2.fc38.noarch requires
golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar/lunar) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar/util) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/encoding/kv) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/gdkpixbuf) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/graphic) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/imgutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/keyfile) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/locale) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/log) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/mime) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/pinyin) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/sound_effect) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/strv) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/users/passwd) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/utils) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/xdg/basedir) = 5.8.9.2-3.fc38
deepin-daemon (maintained by: cheeselee, deepinde-sig, go-sig, zsun)
deepin-daemon-5.14.44-3.fc38.src requires golang(github.com/cryptix/wav) =
0-0.13.20181114git8bdace6.fc38, golang(github.com/linuxdeepin/dde-api/dxinput)
= 5.5.25-2.fc38
golang-deepin-go-lib (maintained by: cheeselee, deepinde-sig, felixonmars,
go-sig, zsun)
golang-deepin-go-lib-5.8.9.2-3.fc38.src requires
golang(github.com/cryptix/wav) = 0-0.13.20181114git8bdace6.fc38
golang-deepin-go-lib-devel-5.8.9.2-3.fc38.noarch requires
golang(github.com/cryptix/wav) = 0-0.13.20181114git8bdace6.fc38
deepin-control-center (maintained by: cheeselee, deepinde-sig, zsun)
deepin-control-center-5.5.77-2.fc38.i686 requires deepin-api = 5.5.25-2.fc38,
deepin-daemon = 5.14.44-3.fc38
deepin-control-center-5.5.77-2.fc38.x86_64 requires deepin-api =
5.5.25-2.fc38, deepin-daemon = 5.14.44-3.fc38
deepin-wallpapers (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-wallpapers-1.7.7-11.fc38.src requires deepin-api = 5.5.25-2.fc38
startdde (maintained by: cheeselee, deepinde-sig, go-sig, zsun)
startdde-5.9.32-2.fc38.src requires
golang(github.com/linuxdeepin/dde-api/dxinput) = 5.5.25-2.fc38,
golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38
startdde-5.9.32-2.fc38.x86_64 requires deepin-daemon = 5.14.44-3.fc38
deepin-calendar (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-calendar-5.9.1-3.fc38.x86_64 requires deepin-daemon(x86-64) =
5.14.44-3.fc38
deepin-launcher (maintained by: cheeselee, deepinde-sig, zsun)
deepin-launcher-5.5.19.1-2.fc38.x86_64 requires deepin-daemon = 5.14.44-3.fc38
deepin-session-ui (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-session-ui-5.5.23-2.fc38.x86_64 requires deepin-daemon = 5.14.44-3.fc38
deepin-desktop-schemas (maintained by: cheeselee, deepinde-sig, felixonmars,
go-sig, zsun)
deepin-desktop-schemas-5.10.6-2.fc38.src requires
golang(github.com/linuxdeepin/go-lib/keyfile) = 5.8.9.2-3.fc38
deepin-pw-check (maintained by: cheeselee, deepinde-sig, go-sig)
deepin-pw-check-5.1.8-4.fc38.src requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38
golang-github-linuxdeepin-dbus-factory (maintained by: cheeselee,
deepinde-sig, go-sig, zsun)
golang-github-linuxdeepin-dbus-factory-1.10.20-3.fc38.src requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil/proxy) = 5.8.9.2-3.fc38
golang-github-linuxdeepin-dbus-factory-devel-1.10.20-3.fc38.noarch requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil/proxy) = 5.8.9.2-3.fc38
Too many dependencies for golang-github-jung-kurt-gofpdf, not all listed here
Depending on: golang-github-latex (19)
golang-gonum-1-plot (maintained by: eclipseo, go-sig)
golang-gonum-1-plot-0.8.1-4.20210125gita02d161.fc35.src requires
golang(github.com/go-latex/latex/drawtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/font/ttf) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/mtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/tex) = 0-0.3.20201224git94de131.fc35
golang-gonum-1-plot-devel-0.8.1-4.20210125gita02d161.fc35.noarch requires
golang(github.com/go-latex/latex/drawtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/font/ttf) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/mtex) = 0-0.3.20201224git94de131.fc35,
golang(github.com/go-latex/latex/tex) = 0-0.3.20201224git94de131.fc35
golang-github-cryptix-wav (maintained by: deepinde-sig, go-sig, zsun)
golang-github-cryptix-wav-0-0.13.20181114git8bdace6.fc38.src requires
golang(gonum.org/v1/plot) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/plotter) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/plotutil) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/vg) = 0.8.1-4.20210125gita02d161.fc35
deepin-api (maintained by: cheeselee, deepinde-sig, felixonmars, go-sig, zsun)
deepin-api-5.5.25-2.fc38.src requires golang(github.com/cryptix/wav) =
0-0.13.20181114git8bdace6.fc38,
golang(github.com/linuxdeepin/go-dbus-factory/org.bluez) = 1.10.20-3.fc38,
golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38
golang-deepin-api-devel-5.5.25-2.fc38.noarch requires
golang(github.com/linuxdeepin/go-dbus-factory/com.deepin.sessionmanager) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-dbus-factory/com.deepin.wm) =
1.10.20-3.fc38,
golang(github.com/linuxdeepin/go-dbus-factory/org.freedesktop.policykit1) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-dbus-factory/org.kde.kwin) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar/lunar) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar/util) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/encoding/kv) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/gdkpixbuf) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/graphic) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/imgutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/keyfile) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/locale) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/log) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/mime) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/pinyin) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/sound_effect) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/strv) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/users/passwd) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/utils) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/xdg/basedir) = 5.8.9.2-3.fc38
deepin-daemon (maintained by: cheeselee, deepinde-sig, go-sig, zsun)
deepin-daemon-5.14.44-3.fc38.src requires golang(github.com/cryptix/wav) =
0-0.13.20181114git8bdace6.fc38, golang(github.com/linuxdeepin/dde-api/dxinput)
= 5.5.25-2.fc38, golang(github.com/linuxdeepin/go-dbus-factory/org.bluez) =
1.10.20-3.fc38
deepin-daemon-5.14.44-3.fc38.x86_64 requires deepin-desktop-schemas =
5.10.6-2.fc38, deepin-session-ui = 5.5.23-2.fc38
golang-deepin-go-lib (maintained by: cheeselee, deepinde-sig, felixonmars,
go-sig, zsun)
golang-deepin-go-lib-5.8.9.2-3.fc38.src requires
golang(github.com/cryptix/wav) = 0-0.13.20181114git8bdace6.fc38
golang-deepin-go-lib-devel-5.8.9.2-3.fc38.noarch requires
golang(github.com/cryptix/wav) = 0-0.13.20181114git8bdace6.fc38
deepin-control-center (maintained by: cheeselee, deepinde-sig, zsun)
deepin-control-center-5.5.77-2.fc38.i686 requires deepin-api = 5.5.25-2.fc38,
deepin-daemon = 5.14.44-3.fc38, libdeepin_pw_check.so.1, startdde = 5.9.32-2.fc38
deepin-control-center-5.5.77-2.fc38.x86_64 requires deepin-api =
5.5.25-2.fc38, deepin-daemon = 5.14.44-3.fc38,
libdeepin_pw_check.so.1()(64bit), startdde = 5.9.32-2.fc38
deepin-control-center-5.5.77-2.fc38.src requires deepin-dock-devel =
5.5.38.1-2.fc38, deepin-pw-check-devel = 5.1.8-4.fc38
deepin-wallpapers (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-wallpapers-1.7.7-11.fc38.src requires deepin-api = 5.5.25-2.fc38
startdde (maintained by: cheeselee, deepinde-sig, go-sig, zsun)
startdde-5.9.32-2.fc38.src requires
golang(github.com/linuxdeepin/dde-api/dxinput) = 5.5.25-2.fc38,
golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38
startdde-5.9.32-2.fc38.x86_64 requires deepin-daemon = 5.14.44-3.fc38,
deepin-desktop-schemas = 5.10.6-2.fc38
deepin-calendar (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-calendar-5.9.1-3.fc38.x86_64 requires deepin-daemon(x86-64) =
5.14.44-3.fc38
deepin-launcher (maintained by: cheeselee, deepinde-sig, zsun)
deepin-launcher-5.5.19.1-2.fc38.x86_64 requires deepin-daemon =
5.14.44-3.fc38, startdde = 5.9.32-2.fc38
deepin-session-ui (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-session-ui-5.5.23-2.fc38.x86_64 requires deepin-daemon =
5.14.44-3.fc38, startdde = 5.9.32-2.fc38
deepin-session-ui-5.5.23-2.fc38.src requires pkgconfig(dde-dock) = 1.0
deepin-desktop-schemas (maintained by: cheeselee, deepinde-sig, felixonmars,
go-sig, zsun)
deepin-desktop-schemas-5.10.6-2.fc38.src requires
golang(github.com/linuxdeepin/go-lib/keyfile) = 5.8.9.2-3.fc38
deepin-pw-check (maintained by: cheeselee, deepinde-sig, go-sig)
deepin-pw-check-5.1.8-4.fc38.src requires
golang(github.com/linuxdeepin/go-dbus-factory/org.freedesktop.policykit1) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38
golang-github-linuxdeepin-dbus-factory (maintained by: cheeselee,
deepinde-sig, go-sig, zsun)
golang-github-linuxdeepin-dbus-factory-1.10.20-3.fc38.src requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil/proxy) = 5.8.9.2-3.fc38
golang-github-linuxdeepin-dbus-factory-devel-1.10.20-3.fc38.noarch requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil/proxy) = 5.8.9.2-3.fc38
deepin-file-manager (maintained by: cheeselee, deepinde-sig, zsun)
deepin-desktop-5.6.4-7.fc38.x86_64 requires deepin-control-center =
5.5.77-2.fc38, deepin-dock = 5.5.38.1-2.fc38, deepin-launcher =
5.5.19.1-2.fc38, deepin-session-ui = 5.5.23-2.fc38
deepin-file-manager-5.6.4-7.fc38.src requires deepin-dock-devel = 5.5.38.1-2.fc38
deepin-dock (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-dock-5.5.38.1-2.fc38.i686 requires libdccwidgets.so
deepin-dock-5.5.38.1-2.fc38.src requires deepin-control-center-devel =
5.5.77-2.fc38
deepin-dock-5.5.38.1-2.fc38.x86_64 requires libdccwidgets.so()(64bit)
deepin-draw (maintained by: cheeselee, deepinde-sig, zsun)
deepin-draw-5.10.6-2.fc38.x86_64 requires deepin-notifications = 5.5.23-2.fc38
deepin-editor (maintained by: cheeselee, deepinde-sig, zsun)
deepin-editor-5.10.18-5.fc38.x86_64 requires deepin-notifications = 5.5.23-2.fc38
deepin-system-monitor (maintained by: cheeselee, deepinde-sig, zsun)
deepin-system-monitor-5.9.17-3.fc38.src requires deepin-dock-devel =
5.5.38.1-2.fc38
Depending on: golang-github-maruel-panicparse (1)
golang-github-cockroachdb-cockroach (maintained by: go-sig, orphan)
golang-github-cockroachdb-cockroach-20.2.3-7.fc38.src requires
golang(github.com/maruel/panicparse/stack) = 1.6.0-3.fc35
golang-github-cockroachdb-cockroach-devel-20.2.3-7.fc38.noarch requires
golang(github.com/maruel/panicparse/stack) = 1.6.0-3.fc35
Depending on: golang-github-maruel-panicparse-2 (2)
golang-github-maruel-panicparse (maintained by: eclipseo, go-sig)
golang-github-maruel-panicparse-1.6.0-3.fc35.src requires
golang(github.com/maruel/panicparse/v2/stack) = 2.1.1-3.fc35
golang-github-cockroachdb-cockroach (maintained by: go-sig, orphan)
golang-github-cockroachdb-cockroach-20.2.3-7.fc38.src requires
golang(github.com/maruel/panicparse/stack) = 1.6.0-3.fc35
golang-github-cockroachdb-cockroach-devel-20.2.3-7.fc38.noarch requires
golang(github.com/maruel/panicparse/stack) = 1.6.0-3.fc35
Depending on: golang-github-mholt-certmagic-0.8 (3)
golang-github-caddyserver-caddy-1 (maintained by: eclipseo, go-sig)
golang-github-caddyserver-caddy-1-1.0.4-11.fc38.src requires
golang(github.com/mholt/certmagic-0.8) = 0.8.3-4.fc35
golang-github-caddyserver-caddy-1-devel-1.0.4-11.fc38.noarch requires
golang(github.com/mholt/certmagic-0.8) = 0.8.3-4.fc35
golang-github-coredns-corefile-migration (maintained by: eclipseo, go-sig)
golang-github-coredns-corefile-migration-1.0.11-10.fc38.src requires
golang(github.com/caddyserver/caddy-1/caddyfile) = 1.0.4-11.fc38
golang-github-coredns-corefile-migration-devel-1.0.11-10.fc38.noarch requires
golang(github.com/caddyserver/caddy-1/caddyfile) = 1.0.4-11.fc38
golang-k8s-kubernetes (maintained by: eclipseo, go-sig)
golang-k8s-kubernetes-1.22.0-2.fc36~bootstrap.src requires
golang(github.com/coredns/corefile-migration/migration) = 1.0.11-10.fc38
golang-k8s-kubernetes-devel-1.22.0-2.fc36~bootstrap.noarch requires
golang(github.com/coredns/corefile-migration/migration) = 1.0.11-10.fc38
Depending on: golang-gonum-1-plot (18)
golang-github-cryptix-wav (maintained by: deepinde-sig, go-sig, zsun)
golang-github-cryptix-wav-0-0.13.20181114git8bdace6.fc38.src requires
golang(gonum.org/v1/plot) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/plotter) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/plotutil) = 0.8.1-4.20210125gita02d161.fc35,
golang(gonum.org/v1/plot/vg) = 0.8.1-4.20210125gita02d161.fc35
deepin-api (maintained by: cheeselee, deepinde-sig, felixonmars, go-sig, zsun)
deepin-api-5.5.25-2.fc38.src requires golang(github.com/cryptix/wav) =
0-0.13.20181114git8bdace6.fc38,
golang(github.com/linuxdeepin/go-dbus-factory/org.bluez) = 1.10.20-3.fc38,
golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38
golang-deepin-api-devel-5.5.25-2.fc38.noarch requires
golang(github.com/linuxdeepin/go-dbus-factory/com.deepin.sessionmanager) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-dbus-factory/com.deepin.wm) =
1.10.20-3.fc38,
golang(github.com/linuxdeepin/go-dbus-factory/org.freedesktop.policykit1) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-dbus-factory/org.kde.kwin) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar/lunar) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/calendar/util) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/encoding/kv) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/gdkpixbuf) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/graphic) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/imgutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/keyfile) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/locale) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/log) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/mime) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/pinyin) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/sound_effect) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/strv) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/users/passwd) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/utils) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/xdg/basedir) = 5.8.9.2-3.fc38
deepin-daemon (maintained by: cheeselee, deepinde-sig, go-sig, zsun)
deepin-daemon-5.14.44-3.fc38.src requires golang(github.com/cryptix/wav) =
0-0.13.20181114git8bdace6.fc38, golang(github.com/linuxdeepin/dde-api/dxinput)
= 5.5.25-2.fc38, golang(github.com/linuxdeepin/go-dbus-factory/org.bluez) =
1.10.20-3.fc38
deepin-daemon-5.14.44-3.fc38.x86_64 requires deepin-desktop-schemas =
5.10.6-2.fc38, deepin-session-ui = 5.5.23-2.fc38
golang-deepin-go-lib (maintained by: cheeselee, deepinde-sig, felixonmars,
go-sig, zsun)
golang-deepin-go-lib-5.8.9.2-3.fc38.src requires
golang(github.com/cryptix/wav) = 0-0.13.20181114git8bdace6.fc38
golang-deepin-go-lib-devel-5.8.9.2-3.fc38.noarch requires
golang(github.com/cryptix/wav) = 0-0.13.20181114git8bdace6.fc38
deepin-control-center (maintained by: cheeselee, deepinde-sig, zsun)
deepin-control-center-5.5.77-2.fc38.i686 requires deepin-api = 5.5.25-2.fc38,
deepin-daemon = 5.14.44-3.fc38, libdeepin_pw_check.so.1, startdde = 5.9.32-2.fc38
deepin-control-center-5.5.77-2.fc38.x86_64 requires deepin-api =
5.5.25-2.fc38, deepin-daemon = 5.14.44-3.fc38,
libdeepin_pw_check.so.1()(64bit), startdde = 5.9.32-2.fc38
deepin-control-center-5.5.77-2.fc38.src requires deepin-dock-devel =
5.5.38.1-2.fc38, deepin-pw-check-devel = 5.1.8-4.fc38
deepin-wallpapers (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-wallpapers-1.7.7-11.fc38.src requires deepin-api = 5.5.25-2.fc38
startdde (maintained by: cheeselee, deepinde-sig, go-sig, zsun)
startdde-5.9.32-2.fc38.src requires
golang(github.com/linuxdeepin/dde-api/dxinput) = 5.5.25-2.fc38,
golang(github.com/linuxdeepin/go-lib) = 5.8.9.2-3.fc38
startdde-5.9.32-2.fc38.x86_64 requires deepin-daemon = 5.14.44-3.fc38,
deepin-desktop-schemas = 5.10.6-2.fc38
deepin-calendar (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-calendar-5.9.1-3.fc38.x86_64 requires deepin-daemon(x86-64) =
5.14.44-3.fc38
deepin-launcher (maintained by: cheeselee, deepinde-sig, zsun)
deepin-launcher-5.5.19.1-2.fc38.x86_64 requires deepin-daemon =
5.14.44-3.fc38, startdde = 5.9.32-2.fc38
deepin-session-ui (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-session-ui-5.5.23-2.fc38.x86_64 requires deepin-daemon =
5.14.44-3.fc38, startdde = 5.9.32-2.fc38
deepin-session-ui-5.5.23-2.fc38.src requires pkgconfig(dde-dock) = 1.0
deepin-desktop-schemas (maintained by: cheeselee, deepinde-sig, felixonmars,
go-sig, zsun)
deepin-desktop-schemas-5.10.6-2.fc38.src requires
golang(github.com/linuxdeepin/go-lib/keyfile) = 5.8.9.2-3.fc38
deepin-pw-check (maintained by: cheeselee, deepinde-sig, go-sig)
deepin-pw-check-5.1.8-4.fc38.src requires
golang(github.com/linuxdeepin/go-dbus-factory/org.freedesktop.policykit1) =
1.10.20-3.fc38, golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38
golang-github-linuxdeepin-dbus-factory (maintained by: cheeselee,
deepinde-sig, go-sig, zsun)
golang-github-linuxdeepin-dbus-factory-1.10.20-3.fc38.src requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil/proxy) = 5.8.9.2-3.fc38
golang-github-linuxdeepin-dbus-factory-devel-1.10.20-3.fc38.noarch requires
golang(github.com/linuxdeepin/go-lib/dbusutil) = 5.8.9.2-3.fc38,
golang(github.com/linuxdeepin/go-lib/dbusutil/proxy) = 5.8.9.2-3.fc38
deepin-file-manager (maintained by: cheeselee, deepinde-sig, zsun)
deepin-desktop-5.6.4-7.fc38.x86_64 requires deepin-control-center =
5.5.77-2.fc38, deepin-dock = 5.5.38.1-2.fc38, deepin-launcher =
5.5.19.1-2.fc38, deepin-session-ui = 5.5.23-2.fc38
deepin-file-manager-5.6.4-7.fc38.src requires deepin-dock-devel = 5.5.38.1-2.fc38
deepin-dock (maintained by: cheeselee, deepinde-sig, felixonmars, zsun)
deepin-dock-5.5.38.1-2.fc38.i686 requires libdccwidgets.so
deepin-dock-5.5.38.1-2.fc38.src requires deepin-control-center-devel =
5.5.77-2.fc38
deepin-dock-5.5.38.1-2.fc38.x86_64 requires libdccwidgets.so()(64bit)
deepin-draw (maintained by: cheeselee, deepinde-sig, zsun)
deepin-draw-5.10.6-2.fc38.x86_64 requires deepin-notifications = 5.5.23-2.fc38
deepin-editor (maintained by: cheeselee, deepinde-sig, zsun)
deepin-editor-5.10.18-5.fc38.x86_64 requires deepin-notifications = 5.5.23-2.fc38
deepin-system-monitor (maintained by: cheeselee, deepinde-sig, zsun)
deepin-system-monitor-5.9.17-3.fc38.src requires deepin-dock-devel =
5.5.38.1-2.fc38
Depending on: golang-sigs-k8s-application (6)
golang-sigs-k8s-kustomize (maintained by: eclipseo, go-sig)
golang-sigs-k8s-kustomize-4.0.3-2.fc36.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(sigs.k8s.io/application/api/v1beta1) = 0.8.3-3.fc35
golang-sigs-k8s-kustomize-devel-4.0.3-2.fc36.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38
golang-k8s-cli-runtime (maintained by: eclipseo, go-sig)
golang-k8s-cli-runtime-1.22.0-6.fc38.src requires
golang(sigs.k8s.io/kustomize/api/konfig) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/api/krusty) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-k8s-cli-runtime-devel-1.22.0-6.fc38.noarch requires
golang(sigs.k8s.io/kustomize/api/krusty) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-k8s-kubectl (maintained by: eclipseo, go-sig)
golang-k8s-kubectl-1.22.0-6.fc38.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(sigs.k8s.io/kustomize/kustomize/v4/commands/build) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-k8s-kubectl-devel-1.22.0-6.fc38.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(sigs.k8s.io/kustomize/kustomize/v4/commands/build) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-helm-3 (maintained by: dcavalca, go-sig)
golang-helm-3-3.5.4-2.fc35.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/testing) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-helm-3-devel-3.5.4-2.fc35.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-k8s-kubernetes (maintained by: eclipseo, go-sig)
golang-k8s-kubernetes-1.22.0-2.fc36~bootstrap.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util/sanity) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/polymorphichelpers) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scale) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scheme) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/i18n) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/logs) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/podutils) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/templates) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-k8s-kubernetes-devel-1.22.0-2.fc36~bootstrap.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util/sanity) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/polymorphichelpers) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scale) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scheme) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/i18n) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/logs) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/podutils) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/templates) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-k8s-sample-cli-plugin (maintained by: eclipseo, go-sig)
golang-k8s-sample-cli-plugin-1.22.0-8.fc38.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38
golang-k8s-sample-cli-plugin-devel-1.22.0-8.fc38.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38
Depending on: golang-sigs-k8s-controller-runtime (7)
golang-sigs-k8s-application (maintained by: eclipseo, go-sig)
golang-sigs-k8s-application-0.8.3-3.fc35.src requires
golang(sigs.k8s.io/controller-runtime) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/client) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/controller) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/envtest) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/handler) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/log) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/log/zap) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/manager) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/reconcile) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/scheme) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/source) = 0.6.5-3.fc35
golang-sigs-k8s-application-devel-0.8.3-3.fc35.noarch requires
golang(sigs.k8s.io/controller-runtime) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/client) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/log/zap) = 0.6.5-3.fc35,
golang(sigs.k8s.io/controller-runtime/pkg/scheme) = 0.6.5-3.fc35
golang-sigs-k8s-kustomize (maintained by: eclipseo, go-sig)
golang-sigs-k8s-kustomize-4.0.3-2.fc36.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(sigs.k8s.io/application/api/v1beta1) = 0.8.3-3.fc35
golang-sigs-k8s-kustomize-devel-4.0.3-2.fc36.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38
golang-k8s-cli-runtime (maintained by: eclipseo, go-sig)
golang-k8s-cli-runtime-1.22.0-6.fc38.src requires
golang(sigs.k8s.io/kustomize/api/konfig) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/api/krusty) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-k8s-cli-runtime-devel-1.22.0-6.fc38.noarch requires
golang(sigs.k8s.io/kustomize/api/krusty) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-k8s-kubectl (maintained by: eclipseo, go-sig)
golang-k8s-kubectl-1.22.0-6.fc38.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(sigs.k8s.io/kustomize/kustomize/v4/commands/build) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-k8s-kubectl-devel-1.22.0-6.fc38.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(sigs.k8s.io/kustomize/kustomize/v4/commands/build) = 4.0.3-2.fc36,
golang(sigs.k8s.io/kustomize/kyaml/filesys) = 4.0.3-2.fc36
golang-helm-3 (maintained by: dcavalca, go-sig)
golang-helm-3-3.5.4-2.fc35.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/testing) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-helm-3-devel-3.5.4-2.fc35.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-k8s-kubernetes (maintained by: eclipseo, go-sig)
golang-k8s-kubernetes-1.22.0-2.fc36~bootstrap.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util/sanity) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/polymorphichelpers) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scale) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scheme) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/i18n) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/logs) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/podutils) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/templates) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-k8s-kubernetes-devel-1.22.0-2.fc36~bootstrap.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/printers) = 1.22.0-6.fc38,
golang(k8s.io/cli-runtime/pkg/resource) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/cmd/util/sanity) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/polymorphichelpers) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scale) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/scheme) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/i18n) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/logs) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/podutils) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/util/templates) = 1.22.0-6.fc38,
golang(k8s.io/kubectl/pkg/validation) = 1.22.0-6.fc38
golang-k8s-sample-cli-plugin (maintained by: eclipseo, go-sig)
golang-k8s-sample-cli-plugin-1.22.0-8.fc38.src requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38
golang-k8s-sample-cli-plugin-devel-1.22.0-8.fc38.noarch requires
golang(k8s.io/cli-runtime/pkg/genericclioptions) = 1.22.0-6.fc38
Depending on: libmodulemd1 (3)
copr-backend (maintained by: copr-sig, frostyx, msuchy, praiskup)
copr-backend-1.165-1.fc38.noarch requires python3-libmodulemd1 = 1.8.16-6.fc35
copr-backend-1.165-1.fc38.src requires python3-libmodulemd1 = 1.8.16-6.fc35
copr-frontend (maintained by: copr-sig, frostyx, msuchy, praiskup, schlupov)
copr-frontend-1.195-1.fc38.noarch requires python3-libmodulemd1 = 1.8.16-6.fc35
copr-frontend-1.195-1.fc38.src requires python3-libmodulemd1 = 1.8.16-6.fc35
fedmod (maintained by: kalev, nphilipp)
fedmod-0.6.5-6.fc38.noarch requires python3-libmodulemd1 = 1.8.16-6.fc35
fedmod-0.6.5-6.fc38.src requires python3-libmodulemd1 = 1.8.16-6.fc35
Depending on: libyami (1)
libyami-utils (maintained by: kwizart)
libyami-utils-1.3.1-8.20191205gitc3d25b6.fc35.src requires pkgconfig(libyami)
= 0.7.0
libyami-utils-1.3.1-8.20191205gitc3d25b6.fc35.x86_64 requires
libyami.so.1()(64bit)
Depending on: llvm10 (1)
clang10 (maintained by: sergesanspaille, tstellar)
clang10-10.0.0-16.fc38.src requires llvm10-devel = 10.0.0-13.fc35,
llvm10-static = 10.0.0-13.fc35
clang10-libs-10.0.0-16.fc38.i686 requires libLLVM-10.so, libLLVM-10.so(LLVM_10)
clang10-libs-10.0.0-16.fc38.x86_64 requires libLLVM-10.so()(64bit),
libLLVM-10.so(LLVM_10)(64bit)
Depending on: llvm12 (1)
clang12 (maintained by: tstellar)
clang12-12.0.1-4.fc36.src requires llvm12-devel = 12.0.1-2.fc35,
llvm12-static = 12.0.1-2.fc35
clang12-libs-12.0.1-4.fc36.i686 requires libLLVM-12.so, libLLVM-12.so(LLVM_12)
clang12-libs-12.0.1-4.fc36.x86_64 requires libLLVM-12.so()(64bit),
libLLVM-12.so(LLVM_12)(64bit)
Depending on: maven-scm (25)
buildnumber-maven-plugin (maintained by: jjelen)
buildnumber-maven-plugin-1.3-24.fc38.noarch requires
mvn(org.apache.maven.scm:maven-scm-api) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-manager-plexus) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-bazaar) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-clearcase) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-cvsexe) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-gitexe) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-hg) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-perforce) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-starteam) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-svn-commons) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-svnexe) = 1.10.0
buildnumber-maven-plugin-1.3-24.fc38.src requires
mvn(org.apache.maven.scm:maven-scm-api) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-manager-plexus) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-bazaar) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-clearcase) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-cvsexe) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-gitexe) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-hg) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-perforce) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-starteam) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-svn-commons) = 1.10.0,
mvn(org.apache.maven.scm:maven-scm-provider-svnexe) = 1.10.0
jacoco (maintained by: didiksupriadi41, jvanek)
jacoco-0.8.8-4.fc37.src requires
mvn(org.codehaus.mojo:buildnumber-maven-plugin) = 1.3
jakarta-json (maintained by: jjames)
jakarta-json-2.1.1-2.fc38.src requires
mvn(org.codehaus.mojo:buildnumber-maven-plugin) = 1.3
jakarta-saaj (maintained by: didiksupriadi41)
jakarta-saaj-1.4.2-8.fc37.src requires
mvn(org.codehaus.mojo:buildnumber-maven-plugin) = 1.3
jakarta-xml-ws (maintained by: didiksupriadi41)
jakarta-xml-ws-2.3.3-1.fc37.src requires
mvn(jakarta.xml.soap:jakarta.xml.soap-api) = 1.4.2,
mvn(org.codehaus.mojo:buildnumber-maven-plugin) = 1.3
jakarta-xml-ws-2.3.3-1.fc37.noarch requires
mvn(jakarta.xml.soap:jakarta.xml.soap-api) = 1.4.2
xmpcore (maintained by: cquad, jjelen)
xmpcore-5.1.2-18.fc36.src requires buildnumber-maven-plugin = 1.3-24.fc38
jacop (maintained by: pcpa)
jacop-4.8-10.fc38.src requires mvn(org.jacoco:jacoco-maven-plugin) = 0.8.8
jdependency (maintained by: mizdebsk, sergiomb)
jdependency-2.8.0-3.fc38.src requires mvn(org.jacoco:jacoco-maven-plugin) = 0.8.8
antlr4-project (maintained by: go-sig, jjames, mhayden)
antlr4-4.10.1-7.fc38.noarch requires mvn(jakarta.json:jakarta.json-api) = 2.1.1
antlr4-project-4.10.1-7.fc38.src requires mvn(jakarta.json:jakarta.json-api)
= 2.1.1
rhino (maintained by: didiksupriadi41, ebaron)
rhino-1.7.14-6.fc38.src requires mvn(jakarta.xml.soap:jakarta.xml.soap-api) =
1.4.2
jmock (maintained by: didiksupriadi41)
jmock-2.12.0-11.fc38.src requires mvn(jakarta.xml.ws:jakarta.xml.ws-api) = 2.3.3
mp (maintained by: pcpa, sagitter)
mp-3.1.0-41.20200303git7fd4828.fc38.x86_64 requires jacop = 4.8-10.fc38
maven-shade-plugin (maintained by: deamn, mizdebsk)
maven-shade-plugin-3.4.1-2.fc38.noarch requires mvn(org.vafer:jdependency) =
2.8.0
maven-shade-plugin-3.4.1-2.fc38.src requires mvn(org.vafer:jdependency) = 2.8.0
azure-cli (maintained by: mhayden, python-packagers-sig)
azure-cli-2.44.1-3.fc38.noarch requires
python3.11dist(antlr4-python3-runtime) = 4.10.1
azure-cli-2.44.1-3.fc38.src requires antlr4 = 4.10.1-7.fc38,
python3dist(antlr4-python3-runtime) = 4.10.1
coq (maintained by: amdunn, jjames)
coq-8.16.1-3.fc38.src requires antlr4 = 4.10.1-7.fc38,
python3dist(antlr4-python3-runtime) = 4.10.1
golang-github-google-cel (maintained by: eclipseo, go-sig)
golang-github-google-cel-0.12.4-4.fc38.src requires antlr4 = 4.10.1-7.fc38,
golang(github.com/antlr/antlr4/runtime/Go/antlr) = 4.10.1-7.fc38
golang-github-google-cel-devel-0.12.4-4.fc38.noarch requires
golang(github.com/antlr/antlr4/runtime/Go/antlr) = 4.10.1-7.fc38
lucene (maintained by: dchen, eclipse-sig, jerboaa, mkoncek, rgrunber)
lucene-9.4.0-2.fc38.src requires mvn(org.antlr:antlr4-runtime) = 4.10.1
lucene-expressions-9.4.0-2.fc38.noarch requires mvn(org.antlr:antlr4-runtime)
= 4.10.1
openjfx (maintained by: deamn)
openjfx-3:17.0.0.1-6.fc38.src requires mvn(org.antlr:antlr4-maven-plugin) =
4.10.1
freemarker (maintained by: didiksupriadi41)
freemarker-2.3.31-7.fc38.src requires mvn(rhino:js) = 1.7.14
coin-or-Bonmin (maintained by: pcpa, sagitter)
coin-or-Bonmin-1.8.8-11.fc38.src requires mp-devel =
3.1.0-41.20200303git7fd4828.fc38
coin-or-Bonmin-1.8.8-11.fc38.x86_64 requires libasl.so.3()(64bit)
coin-or-Cbc (maintained by: pcpa)
coin-or-Cbc-2.10.5-12.fc38.src requires mp-devel =
3.1.0-41.20200303git7fd4828.fc38
coin-or-Cbc-2.10.5-12.fc38.x86_64 requires libasl.so.3()(64bit)
coin-or-Couenne (maintained by: pcpa, sagitter)
coin-or-Couenne-0.5.8-11.fc38.src requires mp-devel =
3.1.0-41.20200303git7fd4828.fc38
coin-or-Couenne-0.5.8-11.fc38.x86_64 requires libasl.so.3()(64bit)
coin-or-Dip (maintained by: pcpa)
coin-or-Dip-0.95.0-8.fc38.src requires mp-devel =
3.1.0-41.20200303git7fd4828.fc38
coin-or-Ipopt (maintained by: pcpa, sagitter)
coin-or-Ipopt-3.14.9-2.fc38.src requires mp-devel =
3.1.0-41.20200303git7fd4828.fc38
coin-or-Ipopt-3.14.9-2.fc38.x86_64 requires libasl.so.3()(64bit)
coin-or-Ipopt-mpich-3.14.9-2.fc38.x86_64 requires libasl.so.3()(64bit),
libmp.so.3()(64bit)
coin-or-Ipopt-openmpi-3.14.9-2.fc38.x86_64 requires libasl.so.3()(64bit),
libmp.so.3()(64bit)
coin-or-OS (maintained by: pcpa, sagitter)
coin-or-OS-2.10.3-4.fc38.src requires mp-devel = 3.1.0-41.20200303git7fd4828.fc38
coin-or-OS-2.10.3-4.fc38.x86_64 requires libasl.so.3()(64bit)
Too many dependencies for maven-scm, not all listed here
Depending on: ortp (3)
libeXosip2 (maintained by: orphan)
libeXosip2-3.6.0-29.fc38.src requires ortp-devel = 2:0.23.0-8.fc35
linphone (maintained by: orphan, sdgathman)
linphone-3.6.1-50.fc38.i686 requires libeXosip2.so.7, libortp.so.9,
ortp(x86-32) = 2:0.23.0-8.fc35
linphone-3.6.1-50.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38,
ortp-devel = 2:0.23.0-8.fc35
linphone-3.6.1-50.fc38.x86_64 requires libeXosip2.so.7()(64bit),
libortp.so.9()(64bit), ortp(x86-64) = 2:0.23.0-8.fc35
linphone-devel-3.6.1-50.fc38.i686 requires pkgconfig(ortp) = 0.23.0
linphone-devel-3.6.1-50.fc38.x86_64 requires pkgconfig(ortp) = 0.23.0
linphone-mediastreamer-3.6.1-50.fc38.i686 requires libortp.so.9
linphone-mediastreamer-3.6.1-50.fc38.x86_64 requires libortp.so.9()(64bit)
linphone-mediastreamer-devel-3.6.1-50.fc38.i686 requires ortp-devel(x86-32) =
2:0.23.0-8.fc35, pkgconfig(ortp) = 0.23.0
linphone-mediastreamer-devel-3.6.1-50.fc38.x86_64 requires ortp-devel(x86-64)
= 2:0.23.0-8.fc35, pkgconfig(ortp) = 0.23.0
sipwitch (maintained by: nucleo, smani)
sipwitch-1.9.15-19.fc38.src requires libeXosip2-devel = 3.6.0-29.fc38
sipwitch-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit)
sipwitch-runtime-1.9.15-19.fc38.i686 requires libeXosip2.so.7
sipwitch-runtime-1.9.15-19.fc38.x86_64 requires libeXosip2.so.7()(64bit)
Depending on: php-laminas-code (40)
php-ocramius-proxy-manager (maintained by: siwinski)
php-ocramius-proxy-manager-2.2.3-4.fc35.noarch requires
php-autoloader(zendframework/zend-code) = 3.5.1
php-ocramius-proxy-manager-2.2.3-4.fc35.src requires
php-autoloader(zendframework/zend-code) = 3.5.1
php-doctrine-doctrine-bundle (maintained by: remi, siwinski)
php-doctrine-doctrine-bundle-1.12.13-6.fc38.src requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-laminas-servicemanager (maintained by: remi)
php-laminas-servicemanager-3.20.0-2.fc38.src requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-symfony (maintained by: remi, siwinski)
php-symfony-2.8.52-10.fc38.src requires php-composer(ocramius/proxy-manager)
= 2.2.3
php-symfony-proxy-manager-bridge-2.8.52-10.fc38.noarch requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-symfony3 (maintained by: remi, siwinski)
php-symfony3-3.4.49-5.fc38.src requires php-composer(ocramius/proxy-manager)
= 2.2.3
php-symfony3-proxy-manager-bridge-3.4.49-5.fc38.noarch requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-laminas-authentication (maintained by: remi)
php-laminas-authentication-2.13.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-authentication-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-barcode (maintained by: remi)
php-laminas-barcode-2.12.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-barcode-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-cache (maintained by: remi)
php-laminas-cache-2.11.3-5.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-cache-2.11.3-5.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-config (maintained by: remi)
php-laminas-config-2.6.0-7.fc35.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-config3 (maintained by: remi)
php-laminas-config3-3.8.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-crypt (maintained by: remi)
php-laminas-crypt-3.9.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-crypt-3.9.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-db (maintained by: remi)
php-laminas-db-2.15.0-2.fc37.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-di (maintained by: remi)
php-laminas-di-2.6.1-10.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-feed (maintained by: remi)
php-laminas-feed-2.20.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-feed-2.20.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-file (maintained by: remi)
php-laminas-file-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-filter (maintained by: remi)
php-laminas-filter-2.31.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-filter-2.31.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-form (maintained by: remi)
php-laminas-form-2.17.1-1.fc36.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-form-2.17.1-1.fc36.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-hydrator (maintained by: remi)
php-laminas-hydrator-2.4.2-9.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-hydrator3 (maintained by: remi)
php-laminas-hydrator3-3.2.1-4.fc37.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-i18n (maintained by: remi)
php-laminas-i18n-2.19.0-1.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-i18n-2.19.0-1.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-inputfilter (maintained by: remi)
php-laminas-inputfilter-2.23.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-inputfilter-2.23.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-log (maintained by: remi)
php-laminas-log-2.16.1-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-log-2.16.1-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mail (maintained by: remi)
php-laminas-mail-2.20.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-modulemanager (maintained by: remi)
php-laminas-modulemanager-2.14.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc (maintained by: remi)
php-laminas-mvc-3.6.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-3.6.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-console (maintained by: remi)
php-laminas-mvc-console-1.3.0-7.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-console-1.3.0-7.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-i18n (maintained by: remi)
php-laminas-mvc-i18n-1.7.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-i18n-1.7.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-plugin-identity (maintained by: remi)
php-laminas-mvc-plugin-identity-1.5.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-plugin-identity-1.5.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-navigation (maintained by: remi)
php-laminas-navigation-2.16.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-paginator (maintained by: remi)
php-laminas-paginator-2.17.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-permissions-acl (maintained by: remi)
php-laminas-permissions-acl-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-router (maintained by: remi)
php-laminas-router-3.11.1-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-router-3.11.1-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-serializer (maintained by: remi)
php-laminas-serializer-2.14.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-servicemanager-di (maintained by: remi)
php-laminas-servicemanager-di-1.2.1-10.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-servicemanager-di-1.2.1-10.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-session (maintained by: remi)
php-laminas-session-2.13.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-session-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-tag (maintained by: remi)
php-laminas-tag-2.9.0-4.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-test (maintained by: remi)
php-laminas-test-3.8.0-4.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-test-3.8.0-4.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-text (maintained by: remi)
php-laminas-text-2.10.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-text-2.10.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-validator (maintained by: remi)
php-laminas-validator-2.26.0-1.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-validator-2.26.0-1.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-view (maintained by: remi)
php-laminas-view-2.25.2-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-view-2.25.2-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
Too many dependencies for php-laminas-code, not all listed here
Depending on: php-laminas-config (23)
php-laminas-barcode (maintained by: remi)
php-laminas-barcode-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-i18n (maintained by: remi)
php-laminas-i18n-2.19.0-1.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-ldap (maintained by: remi)
php-laminas-ldap-2.17.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-modulemanager (maintained by: remi)
php-laminas-modulemanager-2.14.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-modulemanager-2.14.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-navigation (maintained by: remi)
php-laminas-navigation-2.16.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0,
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-paginator (maintained by: remi)
php-laminas-paginator-2.17.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-recaptcha (maintained by: remi)
php-laminas-recaptcha-3.6.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-soap (maintained by: remi)
php-laminas-soap-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-config) = 2.6.0
php-laminas-config (maintained by: remi)
php-laminas-config-2.6.0-7.fc35.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-config3 (maintained by: remi)
php-laminas-config3-3.8.0-2.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-file (maintained by: remi)
php-laminas-file-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-form (maintained by: remi)
php-laminas-form-2.17.1-1.fc36.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-mvc-form (maintained by: remi)
php-laminas-mvc-form-1.2.0-4.fc38.noarch requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-mvc-form-1.2.0-4.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-mvc-i18n (maintained by: remi)
php-laminas-mvc-i18n-1.7.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-mvc-i18n-1.7.0-2.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-mvc-plugin-flashmessenger (maintained by: remi)
php-laminas-mvc-plugin-flashmessenger-1.9.0-2.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-router (maintained by: remi)
php-laminas-router-3.11.1-2.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-test (maintained by: remi)
php-laminas-test-3.8.0-4.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0,
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
php-laminas-validator (maintained by: remi)
php-laminas-validator-2.26.0-1.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0
php-laminas-view (maintained by: remi)
php-laminas-view-2.25.2-2.fc38.src requires
php-autoloader(laminas/laminas-i18n) = 2.19.0,
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
php-laminas-authentication (maintained by: remi)
php-laminas-authentication-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-ldap) = 2.17.0
php-laminas-hydrator3 (maintained by: remi)
php-laminas-hydrator3-3.2.1-4.fc37.src requires
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
php-laminas-mvc (maintained by: remi)
php-laminas-mvc-3.6.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
php-laminas-mvc-3.6.0-2.fc38.src requires
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
php-laminas-mvc-console (maintained by: remi)
php-laminas-mvc-console-1.3.0-7.fc38.noarch requires
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
php-laminas-mvc-console-1.3.0-7.fc38.src requires
php-autoloader(laminas/laminas-modulemanager) = 2.14.0
Too many dependencies for php-laminas-config, not all listed here
Depending on: php-ocramius-proxy-manager (39)
php-doctrine-doctrine-bundle (maintained by: remi, siwinski)
php-doctrine-doctrine-bundle-1.12.13-6.fc38.src requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-laminas-servicemanager (maintained by: remi)
php-laminas-servicemanager-3.20.0-2.fc38.src requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-symfony (maintained by: remi, siwinski)
php-symfony-2.8.52-10.fc38.src requires php-composer(ocramius/proxy-manager)
= 2.2.3
php-symfony-proxy-manager-bridge-2.8.52-10.fc38.noarch requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-symfony3 (maintained by: remi, siwinski)
php-symfony3-3.4.49-5.fc38.src requires php-composer(ocramius/proxy-manager)
= 2.2.3
php-symfony3-proxy-manager-bridge-3.4.49-5.fc38.noarch requires
php-composer(ocramius/proxy-manager) = 2.2.3
php-laminas-authentication (maintained by: remi)
php-laminas-authentication-2.13.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-authentication-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-barcode (maintained by: remi)
php-laminas-barcode-2.12.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-barcode-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-cache (maintained by: remi)
php-laminas-cache-2.11.3-5.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-cache-2.11.3-5.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-config (maintained by: remi)
php-laminas-config-2.6.0-7.fc35.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-config3 (maintained by: remi)
php-laminas-config3-3.8.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-crypt (maintained by: remi)
php-laminas-crypt-3.9.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-crypt-3.9.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-db (maintained by: remi)
php-laminas-db-2.15.0-2.fc37.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-di (maintained by: remi)
php-laminas-di-2.6.1-10.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-feed (maintained by: remi)
php-laminas-feed-2.20.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-feed-2.20.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-file (maintained by: remi)
php-laminas-file-2.12.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-filter (maintained by: remi)
php-laminas-filter-2.31.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-filter-2.31.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-form (maintained by: remi)
php-laminas-form-2.17.1-1.fc36.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-form-2.17.1-1.fc36.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-hydrator (maintained by: remi)
php-laminas-hydrator-2.4.2-9.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-hydrator3 (maintained by: remi)
php-laminas-hydrator3-3.2.1-4.fc37.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-i18n (maintained by: remi)
php-laminas-i18n-2.19.0-1.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-i18n-2.19.0-1.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-inputfilter (maintained by: remi)
php-laminas-inputfilter-2.23.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-inputfilter-2.23.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-log (maintained by: remi)
php-laminas-log-2.16.1-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-log-2.16.1-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mail (maintained by: remi)
php-laminas-mail-2.20.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-modulemanager (maintained by: remi)
php-laminas-modulemanager-2.14.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc (maintained by: remi)
php-laminas-mvc-3.6.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-3.6.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-console (maintained by: remi)
php-laminas-mvc-console-1.3.0-7.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-console-1.3.0-7.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-i18n (maintained by: remi)
php-laminas-mvc-i18n-1.7.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-i18n-1.7.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-plugin-identity (maintained by: remi)
php-laminas-mvc-plugin-identity-1.5.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-mvc-plugin-identity-1.5.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-navigation (maintained by: remi)
php-laminas-navigation-2.16.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-paginator (maintained by: remi)
php-laminas-paginator-2.17.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-permissions-acl (maintained by: remi)
php-laminas-permissions-acl-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-router (maintained by: remi)
php-laminas-router-3.11.1-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-router-3.11.1-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-serializer (maintained by: remi)
php-laminas-serializer-2.14.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-servicemanager-di (maintained by: remi)
php-laminas-servicemanager-di-1.2.1-10.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-servicemanager-di-1.2.1-10.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-session (maintained by: remi)
php-laminas-session-2.13.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-session-2.13.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-tag (maintained by: remi)
php-laminas-tag-2.9.0-4.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-test (maintained by: remi)
php-laminas-test-3.8.0-4.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-test-3.8.0-4.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-text (maintained by: remi)
php-laminas-text-2.10.0-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-text-2.10.0-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-validator (maintained by: remi)
php-laminas-validator-2.26.0-1.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-validator-2.26.0-1.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-view (maintained by: remi)
php-laminas-view-2.25.2-2.fc38.noarch requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
php-laminas-view-2.25.2-2.fc38.src requires
php-autoloader(laminas/laminas-servicemanager) = 3.20.0
Too many dependencies for php-ocramius-proxy-manager, not all listed here
Depending on: php-symfony-security-acl (22)
php-symfony (maintained by: remi, siwinski)
php-symfony-2.8.52-10.fc38.src requires php-composer(doctrine/cache) =
1.13.0, php-composer(symfony/security-acl) = 2.8.0
php-symfony-security-2.8.52-10.fc38.noarch requires
php-composer(symfony/security-acl) = 2.8.0
php-symfony-security-bundle-2.8.52-10.fc38.noarch requires
php-composer(symfony/security-acl) = 2.8.0
php-symfony-framework-bundle-2.8.52-10.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-symfony-serializer-2.8.52-10.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-symfony-validator-2.8.52-10.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-symfony3 (maintained by: remi, siwinski)
php-symfony3-3.4.49-5.fc38.src requires php-composer(doctrine/cache) =
1.13.0, php-composer(symfony/security-acl) = 2.8.0
php-symfony3-class-loader-3.4.49-5.fc38.noarch requires
php-symfony-class-loader = 2.8.52-10.fc38
php-symfony4 (maintained by: remi, siwinski)
php-symfony4-4.4.47-1.fc38.src requires php-composer(doctrine/cache) =
1.13.0, php-composer(symfony/security-acl) = 2.8.0
php-symfony4-framework-bundle-4.4.47-1.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-cache (maintained by: remi, siwinski)
php-doctrine-cache-1.13.0-3.fc38.src requires
php-composer(symfony/var-exporter) = 4.4.47
php-doctrine-datafixtures (maintained by: remi, siwinski)
php-doctrine-datafixtures-1.6.3-1.fc38.src requires php-symfony4-cache =
4.4.47-1.fc38
php-doctrine-doctrine-bundle (maintained by: remi, siwinski)
php-doctrine-doctrine-bundle-1.12.13-6.fc38.src requires php-symfony4-cache =
4.4.47-1.fc38, php-symfony4-config = 4.4.47-1.fc38, php-symfony4-console =
4.4.47-1.fc38, php-symfony4-dependency-injection = 4.4.47-1.fc38,
php-symfony4-doctrine-bridge = 4.4.47-1.fc38, php-symfony4-framework-bundle =
4.4.47-1.fc38, php-symfony4-property-info = 4.4.47-1.fc38,
php-symfony4-proxy-manager-bridge = 4.4.47-1.fc38, php-symfony4-twig-bridge =
4.4.47-1.fc38, php-symfony4-validator = 4.4.47-1.fc38,
php-symfony4-web-profiler-bundle = 4.4.47-1.fc38, php-symfony4-yaml = 4.4.47-1.fc38
php-doctrine-doctrine-bundle2 (maintained by: remi)
php-doctrine-doctrine-bundle2-2.7.2-2.fc38.src requires
php-composer(doctrine/cache) = 1.13.0, php-symfony4-cache = 4.4.47-1.fc38,
php-symfony4-config = 4.4.47-1.fc38, php-symfony4-console = 4.4.47-1.fc38,
php-symfony4-dependency-injection = 4.4.47-1.fc38, php-symfony4-doctrine-bridge
= 4.4.47-1.fc38, php-symfony4-framework-bundle = 4.4.47-1.fc38,
php-symfony4-property-info = 4.4.47-1.fc38, php-symfony4-proxy-manager-bridge =
4.4.47-1.fc38, php-symfony4-twig-bridge = 4.4.47-1.fc38, php-symfony4-validator
= 4.4.47-1.fc38, php-symfony4-web-profiler-bundle = 4.4.47-1.fc38,
php-symfony4-yaml = 4.4.47-1.fc38
php-doctrine-doctrine-bundle2-2.7.2-2.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-orm (maintained by: remi, siwinski)
php-doctrine-orm-2.14.1-2.fc38.src requires php-composer(doctrine/cache) =
1.13.0, php-composer(symfony/var-exporter) = 4.4.47
php-doctrine-orm-2.14.1-2.fc38.noarch requires php-composer(doctrine/cache) =
1.13.0
php-nyholm-psr7 (maintained by: remi)
php-nyholm-psr7-1.5.1-3.fc38.src requires php-composer(symfony/error-handler)
= 4.4.47
php-phpspec (maintained by: remi)
php-phpspec-7.3.0-2.fc38.noarch requires php-symfony4-console =
4.4.47-1.fc38, php-symfony4-event-dispatcher = 4.4.47-1.fc38,
php-symfony4-finder = 4.4.47-1.fc38, php-symfony4-process = 4.4.47-1.fc38,
php-symfony4-yaml = 4.4.47-1.fc38
php-phpunit-DbUnit (maintained by: remi)
php-phpunit-DbUnit-2.0.3-15.fc38.noarch requires php-symfony4-yaml =
4.4.47-1.fc38
php-phpunit-PHPUnit (maintained by: remi)
php-phpunit-PHPUnit-5.7.27-18.fc37.noarch requires php-symfony4-yaml =
4.4.47-1.fc38
php-phpunit-PHPUnit-5.7.27-18.fc37.src requires php-symfony4-yaml = 4.4.47-1.fc38
php-sebastian-diff3 (maintained by: remi)
php-sebastian-diff3-3.0.3-7.fc38.src requires php-symfony4-process =
4.4.47-1.fc38
php-sebastian-diff4 (maintained by: remi)
php-sebastian-diff4-4.0.4-6.fc38.src requires php-symfony4-process =
4.4.47-1.fc38
php-symfony-polyfill (maintained by: siwinski)
php-symfony-polyfill-1.27.0-2.fc38.src requires php-symfony4-intl =
4.4.47-1.fc38, php-symfony4-var-dumper = 4.4.47-1.fc38
php-doctrine-annotations (maintained by: remi, siwinski)
php-doctrine-annotations-1.14.2-2.fc38.src requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-common (maintained by: remi, siwinski)
php-doctrine-common-1:2.13.3-5.fc35.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-common-1:2.13.3-5.fc35.src requires php-composer(doctrine/cache)
= 1.13.0
php-doctrine-dbal (maintained by: lcts, remi)
php-doctrine-dbal-2.13.9-3.fc38.noarch requires php-composer(doctrine/cache)
= 1.13.0
php-doctrine-dbal-2.13.9-3.fc38.src requires php-composer(doctrine/cache) =
1.13.0
php-doctrine-dbal3 (maintained by: remi)
php-doctrine-dbal3-3.5.3-2.fc38.noarch requires php-composer(doctrine/cache)
= 1.13.0
php-doctrine-dbal3-3.5.3-2.fc38.src requires php-composer(doctrine/cache) =
1.13.0
php-doctrine-doctrine-cache-bundle (maintained by: remi, siwinski)
php-doctrine-doctrine-cache-bundle-1.4.0-7.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-persistence (maintained by: remi)
php-doctrine-persistence-1.3.8-6.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-persistence-1.3.8-6.fc38.src requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-persistence2 (maintained by: remi)
php-doctrine-persistence2-2.5.6-2.fc38.noarch requires
php-composer(doctrine/cache) = 1.13.0
php-doctrine-persistence2-2.5.6-2.fc38.src requires
php-composer(doctrine/cache) = 1.13.0
Too many dependencies for php-symfony-security-acl, not all listed here
Depending on: portlet-2.0-api (1)
apache-commons-fileupload (maintained by: jerboaa, jjelen, mizdebsk, spike)
apache-commons-fileupload-1.4-8.fc36.src requires
mvn(javax.portlet:portlet-api) = 1.0
Depending on: simde (1)
bwa (maintained by: jaruga, verdurin)
bwa-0.7.17-9.fc38.src requires simde-devel = 0.7.3-1.git3378ab3.fc35
Depending on: xml-security-c (3)
libdigidocpp (maintained by: cserpentis, germano)
libdigidocpp-3.14.10-3.fc38.i686 requires libxml-security-c.so.20
libdigidocpp-3.14.10-3.fc38.src requires xml-security-c-devel = 2.0.2-9.fc35
libdigidocpp-3.14.10-3.fc38.x86_64 requires libxml-security-c.so.20()(64bit)
qdigidoc (maintained by: cserpentis, germano)
qdigidoc-4.2.12-3.fc38.src requires libdigidocpp-devel = 3.14.10-3.fc38
qdigidoc-4.2.12-3.fc38.x86_64 requires libdigidocpp.so.1()(64bit)
open-eid (maintained by: cserpentis, germano)
open-eid-17.12-13.fc38.noarch requires qdigidoc = 4.2.12-3.fc38
Affected (co)maintainers
ajax: waffle
amdunn: maven-scm
andymenderunix: wdune
arcress: ipmiutil
atim: howl
avsej: libmobi
brouhaha: free42
bruno: xml-security-c
cheeselee: golang-gonum-1-plot, golang-github-jung-kurt-gofpdf, golang-github-latex
chkr: nall
copr-sig: libmodulemd1
cquad: maven-scm
cserpentis: xml-security-c
davidcornette: kguitar
dcavalca: golang-sigs-k8s-controller-runtime, golang-helm-3,
golang-sigs-k8s-application
dchen: maven-scm
deamn: maven-scm
deepinde-sig: golang-gonum-1-plot, golang-github-jung-kurt-gofpdf,
golang-github-latex
didiksupriadi41: maven-scm
ebaron: maven-scm
eclipse-sig: maven-scm
eclipseo: golang-github-mholt-certmagic-0.8, golang-github-aws-sdk-2-0.24,
golang-sigs-k8s-controller-runtime, maven-scm, golang-github-jung-kurt-gofpdf,
golang-github-maruel-panicparse, golang-github-latex, golang-gonum-1-plot,
golang-github-dave-dst, golang-istio-pkg, golang-sigs-k8s-application,
golang-github-mattermost-xml-roundtrip-validator, golang-github-gopherjs,
golang-github-maruel-panicparse-2, golang-github-adroll-goamz,
golang-github-cockroachdb-gostdlib, golang-github-docker-licensing,
golang-github-aphistic-sweet, golang-github-cheekybits-genny
fab: golang-github-gdamore-optopia, nodejs-tape, ArpON, goddi, ccrypt
felixonmars: golang-gonum-1-plot, golang-github-jung-kurt-gofpdf,
golang-github-latex
frostyx: libmodulemd1
germano: xml-security-c
go-sig: goddi, golang-github-mholt-certmagic-0.8, golang-github-aws-sdk-2-0.24,
golang-sigs-k8s-controller-runtime, maven-scm, golang-github-jung-kurt-gofpdf,
golang-github-maruel-panicparse, golang-github-gdamore-optopia,
golang-github-latex, golang-gonum-1-plot, golang-github-dave-dst,
golang-istio-pkg, golang-sigs-k8s-application,
golang-github-mattermost-xml-roundtrip-validator, golang-github-gopherjs,
golang-github-maruel-panicparse-2, golang-github-adroll-goamz,
golang-github-cockroachdb-gostdlib, golang-github-cosmos72-gomacro,
golang-github-docker-licensing, golang-github-aphistic-sweet,
golang-github-cheekybits-genny, golang-helm-3
jaruga: bowtie, simde
jchaloup: golang-github-gopherjs, golang-github-jung-kurt-gofpdf
jerboaa: portlet-2.0-api, maven-scm
jhladky: datamash
jistone: llvm9.0
jjames: maven-scm
jjelen: portlet-2.0-api, maven-scm
jonathanspw: cave9
jussilehtola: IQmol
jvanek: maven-scm
kalev: libmodulemd1
kde-sig: kjots
kloczek: xml-security-c
kwizart: libyami-utils, libyami
lbazan: irssi-xmpp
lcts: php-symfony-security-acl
lkundrak: btkbdd
lupinix: opencl-utils
maha: irssi-xmpp
mhayden: maven-scm
mizdebsk: portlet-2.0-api, maven-scm
mkoncek: maven-scm
msuchy: libmodulemd1
mzavalavz: tpm2-tss-engine
nonamedotc: gtkhash
nphilipp: libmodulemd1
nucleo: ortp
patches: nodejs-tape
pbrobinson: mimic
pcpa: maven-scm
peter: erlpmd
petersen: llvm9.0, llvm10, llvm12
pgordon: lucidlife
praiskup: libmodulemd1
pwalter: howl
python-packagers-sig: maven-scm
qulogic: golang-github-cosmos72-gomacro
remi: php-laminas-config, php-doctrine-common, php-hamcrest, php-laminas-code,
php-symfony-security-acl, php-ocramius-proxy-manager
rgrunber: maven-scm
sagarun: ArpON
sagitter: maven-scm
schlupov: libmodulemd1
sdgathman: ortp, openas2, cjdns
sergesanspaille: llvm10, llvm12
sergiodj: rnetclient
sergiomb: maven-scm
sgallagh: libmodulemd1
siwinski: php-doctrine-common, php-ocramius-proxy-manager, php-laminas-code,
php-symfony-security-acl
slaanesh: percona-xtrabackup
smani: ortp
spike: portlet-2.0-api
susmit: libndn-cxx
tartina: phasex
teuf: frogr
thunderbirdtr: kjots
trawets: maven-scm
tstellar: llvm9.0, llvm10, llvm12
verdurin: bowtie, simde
zsun: golang-gonum-1-plot, golang-github-jung-kurt-gofpdf, golang-github-latex
zyga: zmk
18 hours, 48 minutes
Schedule for Tuesday's FESCo Meeting (2023-01-31)
by Zbigniew Jędrzejewski-Szmek
Following is the list of topics that will be discussed in the
FESCo meeting Tuesday at 17:00UTC in #fedora-meeting on
irc.libera.chat.
To convert UTC to your local time, take a look at
http://fedoraproject.org/wiki/UTCHowto
or run:
date -d '2023-01-31 17:00 UTC'
Links to all issues to be discussed can be found at:
https://pagure.io/fesco/report/meeting_agenda
= Discussed and Voted in the Ticket =
#2942 Change: IPP-USB as a weak dependency of CUPS and sane-airscan
https://pagure.io/fesco/issue/2942
APPROVED (+3,0,-0)
#2941 Go 1.19 in Fedora 36
https://pagure.io/fesco/issue/2941
APPROVED (+4, 0, 0)
#2939 Change: Unfiltered Flathub
https://pagure.io/fesco/issue/2939
APPROVED (+3,1,-0)
#2938 Change: Noto CJK Variable Fonts
https://pagure.io/fesco/issue/2938
APPROVED (+3,0,-0)
= Followups =
= New business =
#2934 Restore Provides: singularity to apptainer packaging
https://pagure.io/fesco/issue/2934
= Open Floor =
For more complete details, please visit each individual
issue. The report of the agenda items can be found at
https://pagure.io/fesco/report/meeting_agenda
If you would like to add something to this agenda, you can
reply to this e-mail, file a new issue at
https://pagure.io/fesco, e-mail me directly, or bring it
up at the end of the meeting, during the open floor topic. Note
that added topics may be deferred until the following meeting.
1 day, 12 hours
HEADS-UP: Upcoming retirement of long-term-unused packages for Rust crates
by Fabio Valentini
Hi all,
I've been collecting data about the dependency graph of Rust packages
in Fedora for over a year now, and I would like to start the process
of removing some accumulated cruft. In particular, I've been keeping
track of which packages for *library* packages (i.e. they ship only
source code but no binaries) have been leaf packages.
List of Rust library-only packages, which no other package in Fedora
has depended on, for over a year (365 days+):
- rust-compiletest_rs
- rust-constant_time_eq
- rust-conv
- rust-counted-array
- rust-dbus-tokio
- rust-defmac
- rust-dialoguer
- rust-enumset
- rust-failure-tools
- rust-fake-simd
- rust-fbthrift_codegen_includer_proc_macro
- rust-fdlimit
- rust-hamcrest2
- rust-html2pango
- rust-imgref
- rust-ioctl-rs
- rust-lipsum
- rust-listenfd
- rust-loggerv
- rust-lzw
- rust-macro-attr
- rust-mdl
- rust-mktemp
- rust-mnt
- rust-newtype_derive
- rust-odds
- rust-osstrtools
- rust-parse_cfg
- rust-permutate
- rust-piper
- rust-podio
- rust-proc-quote-impl
- rust-process_path
- rust-progress-streams
- rust-protoc-rust
- rust-quickersort
- rust-rand_jitter
- rust-rand_os
- rust-read_input
- rust-relay
- rust-rustc_tools_util
- rust-rustdoc-stripper
- rust-rustfilt
- rust-safe-transmute
- rust-scoped-tls-hkt
- rust-serde-pickle
- rust-serial-core
- rust-sluice
- rust-smallstr
- rust-spinning_top
- rust-spmc
- rust-ssh-key-dir
- rust-stb_truetype
- rust-string_cache_shared
- rust-strings
- rust-sudo_plugin
- rust-sxd-document
- rust-synom
- rust-sysctl
- rust-tabwriter
- rust-take
- rust-timerfd
- rust-tower-test
- rust-tower-util
- rust-ucd-util
- rust-unic-ucd-category
- rust-url_serde
- rust-urlocator
- rust-utf8-ranges
- rust-watchman_client
Some of these packages are dependencies of things that will be worked
on at some point in the future (for example, packaging of GStreamer
plugins that are written in Rust), but others look very much like
accumulated cruft.
If you see a package on this list that you would like to keep for some
reason, please speak up, and I will exclude it from future dependency
graph analysis. Otherwise I will soon start retiring packages that
have been unused for over a year.
The packages that would be in the list above, but which I *know* will
get some use soon, are:
- rust-curve25519-dalek
- rust-gstreamer-audio
- rust-gstreamer-editing-services
- rust-gstreamer-player
I will probably start the cleanup process with packages for crates
that no longer have any dependent crates listed on the crates.io
registry (which is a good indicator that they are indeed obsolete),
and then continue with crates for which the longest amount of time has
passed since the last upstream release (which is "more than 5 years
ago" for some crates ...).
Fabio
2 days, 14 hours
Proposal: explicitly require full process to resubmit rejected
proposals to FESCo
by Ben Cotton
As a result of concerns about how the re-vote on the frame pointers
Change, it makes sense to clarify the requirements for FESCo
re-considering rejected proposals. FESCo #action bcotton'ed in the 10
January meeting[1] to develop a proposal.
I have drafted a proposal that you can find as fesco-docs#71[2] and
presented here for convenience:
> Proposals that are rejected may be submitted by reconsideration, but they must go through whatever process was originally required before FESCo begins voting. For example, this means a rejected Change proposal must be resubmitted to the Change Wrangler as outlined in the Changes process.
I intentionally wrote this to apply to all proposals generally instead
of Changes specifically. It makes sense to me that we address the
general case instead of waiting until another process needs a similar
policy adjustment. However, I can see this potentially being a poor
fit for long-fuse processes like the inactive maintainers policy
(although it seems less likely that a request would be rejected and
immediately be resubmitted).
Anyway, the proposal is presented here for comment. I'll open a FESCo
ticket in a week for formal approval.
[1] https://meetbot.fedoraproject.org/fedora-meeting/2023-01-10/fesco.2023-01...
[2] https://pagure.io/fesco/fesco-docs/pull-request/71
--
Ben Cotton
He / Him / His
Fedora Program Manager
Red Hat
TZ=America/Indiana/Indianapolis
4 days, 10 hours
Orphaning lizardfs
by Jonathan Dieter
I've just orphaned lizardfs. Lizardfs is a clustered network
filesystem that has very efficient small file / metadata performance,
but hasn't seen any upstream point releases since the end of 2017 and
now FTBFS in the latest mass rebuild.
Jonathan
5 days, 8 hours
-fno-omit-frame-pointer does not work as advertised
by Kevin Kofler
Hi,
to those who are pushing the -fno-omit-frame-pointer change: Are you aware
that neither that flag nor even -mno-omit-leaf-frame-pointer actually
guarantee that every leaf function is going to carry a frame pointer, as
required for your backtraces?
See for yourself:
https://godbolt.org/z/TjzTsWoWT
The only way to get GCC to generate a frame pointer for this function is to
not use any optimization at all (-O0, or just leave the flags empty, which
unfortunately defaults to -O0 in GCC).
I have tried:
* just -O2
* -O2 -fno-omit-frame-pointer
* -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
and all of them produce just imul+mov+ret, which means that an unwinder
based purely on frame pointers will NOT be able to locate the caller of this
function if the profiler snapshots it in the middle.
Another issue is that even if the function does have a frame pointer, it
takes time to set up the frame pointer (push rbp; mov rbp, rsp), and it also
needs to be popped at the end (pop rbp) before returning (ret), so a
randomly sampled snapshot can always happen to be taken in the short time
window where the frame pointer is not ready, which will also lead to the
caller being unable to be located. This inherently makes purely frame-
pointer-based unwinding unreliable.
Frame pointers sound like a simple solution to unwinding, but they are not.
They are no complete replacement for unwinding information.
Kevin Kofler
5 days, 11 hours