Fedora 31 System-Wide Change proposal: perl 5.30
by Ben Cotton
https://fedoraproject.org/wiki/Changes/perl5.30
== Summary ==
A new ''perl 5.30'' version brings a lot of changes done over a year
of development. Perl 5.30 should be released at the end of May 2019.
See [https://metacpan.org/pod/release/XSAWYERX/perl-5.30.0-RC1/pod/perldelta.pod
5.30.0 perldelta] for more details about preparing release.
== Owner ==
* Name: [[User:Jplesnik| Jitka Plesníková]]
* Email: <jplesnik(a)redhat.com>
* Name: [[User:Ppisar| Petr Písař]]
* Email: <ppisar(a)redhat.com>
=== Completed Items ===
=== Items in Progress ===
=== Items to Be Done ===
* Upstream to release Perl 5.30
* Get dedicated build-root from rel-engs (''f31-perl'')
* Define perl_bootstrap in perl-srpm-macros
* Rebase perl to 5.30.0
* Build new perl 5.30 keeping old COMPAT Provides
* Rebuild dual-lived packages (otherwise dnf recommends --skip-broken and fails)
* Rebuild packages needed for minimal build-root
* Rebuild packages needed for building source packages from git repository
* Remove old perl(:MODULE_COMPAT_5.28.*) from perl
* Undefine perl_bootstrap
* Rebuild other packages: Use Fedora::Rebuild dependency solver
* Rebuild packages having perl_bootstrap condition in spec file
* Rebuild all updated packages
* Merge dedicated build-root to rawhide and remove the dedicated one by rel-engs
* Synchronize packages upgraded in ''f31'' build root
* Rebuilt Perl packages: 0 of 3186 done (0.00 %)
* Failed builds (0):
* Unsatisfied dependencies (0):
== Detailed Description ==
New perl is released every year and updates containing mainly bug
fixes follow during the year. The 5.30.0 version is stable release
this year.
In addition, Perl ''site'' paths will be made ABI-specific. CPAN
modules intended for an installation under /usr/local/ will be
installed to /usr/local/{share,lib*}/perl5/5.30 paths. This will
prevent from breaking Perl with old locally installed modules after a
Fedora upgrade.
== Benefit to Fedora ==
Up-to-date and latest perl release will be delivered to Fedora users.
== Scope ==
Every Perl package will be rebuilt in a dedicated ''f31-perl''
build-root against perl 5.30.0 and then if no major problem emerges
the packages will be merged back to ''f31'' build-root.
* Proposal owners:
New perl and all packages requiring perl or a Perl module will be
rebuilt into ''f31-perl'' build-root.
* Other developers: Owners of packages that fail to rebuild, mainly
perl-sig users, will be asked using Bugzilla to fix or remove their
packages from the distribution.
* Release engineering: [https://pagure.io/releng/issue/8368 #8368] (a
check of an impact with Release Engineering is needed)
Release engineers will be asked for new ''f31-perl'' build-root
inheriting from ''f31'' build-root. After successful finishing the
rebuild, they will be asked to merge ''f31-perl'' packages back to
''f31'' build-root.
* Policies and guidelines:
No policies have to be modified to complete this change.
== Upgrade/Compatibility Impact ==
Vast majority of functionality will be preserved. Only the packages
that failed to build against perl 5.30 will be removed from the
distribution. That will require to remove those packages from existing
systems otherwise package manager will encounter unsatisfied
dependencies. Modules installed locally into /usr/local will become
unavailable and users will need to reinstall them.
== How to Test ==
Try upgrading from Fedora 30 to 31. Try some Perl application to
verify they work as expected. Try embedded perl in slapd or snmpd.
== User Experience ==
There should not be any remarkable change in user experience. With the
exception that previously locally installed modules with a CPAN
clients will need a reinstalation.
== Dependencies ==
There is more than 3100 packages depending on perl. Most of them are
expected not to break. Finishing this change can be endangered only by
critical changes in a toolchain.
== Contingency Plan ==
If we find perl 5.30 is not suitable for Fedora 31, we will revert
back to perl 5.28 and we drop the temporary build-root with already
rebuilt packages.
* Contingency deadline: branching Fedora 31 from Rawhide.
* Blocks release? No.
== Documentation ==
* [https://metacpan.org/pod/release/XSAWYERX/perl-5.30.0-RC1/pod/perldelta.pod
5.30.0 perldelta]
* An announcement on the perl-devel mailing list
* [https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproj...
Making Perl site paths ABI-specific] discussion on perl-devel mailing
list
== Release Notes ==
=== Important Changes ===
* Unicode 11, 12 and draft 12.1 is supported
* The upper limit "n" specifiable in a regular expression quantifier
of the form "{m,n}" has been doubled to 65534
* Wildcards in Unicode property value specifications are now partially supported
* qr'\N{name}' is now supported
* It is now possible to compile perl to always use thread-safe locale
operations.
* Limited variable length lookbehind in regular expression pattern
matching is now experimentally supported
* Use faster method to convert to UTF-8
* Turkic UTF-8 locales are now seamlessly supported
* Eliminate opASSIGN macro usage from core
* -Drv now means something on -DDEBUGGING builds
=== Removed Features and Incompatible Changes ===
* Removed modules: Math::BigInt::CalcEmu, arybase, Locale::Code, B::Debug
* Pattern delimiters now must be graphemes
* Delimiters must now be graphemes
* Some formerly deprecated uses of an unescaped left brace "{" in
regular expression patterns are now illegal
* Assigning non-zero to $[ is fatal
* Previously deprecated sysread()/syswrite() on :utf8 handles now fatal
* my() in false conditional prohibited
* Fatalize $* and $#
* Fatalize unqualified use of dump()
* Remove File::Glob::glob()
* pack() no longer can return malformed UTF-8
* Any set of digits in the Common script are legal in a script run of
another script
* JSON::PP enable allow_nonref by default
* Site paths moved from /usr/local/…/perl5 to /usr/local/…/perl5/5.30
=== Deprecated Features ===
* In XS code, use of various macros dealing with UTF-8.
--
Ben Cotton
He / Him / His
Fedora Program Manager
Red Hat
TZ=America/Indiana/Indianapolis
4 years, 4 months
Fedora 31 System-Wide Change proposal: Disable Root Password Login in SSH
by Ben Cotton
https://fedoraproject.org/wiki/Changes/DisableRootPasswordLoginInSshd
== Summary ==
The upstream OpenSSH disabled password logins for root back in 2015.
The Fedora should follow to keep security expectation and avoid users
surprises with this configuration.
== Owner ==
* Name: [[User:jjelen| Jakub Jelen]], OpenSSH maintainer
* Email: jjelen(a)redhat.com
== Detailed Description ==
The OpenSSH server configuration contains a configuration option
`PermitRootLogin`, which controls whether the root user is allowed to
login using passwords or using public key authentication. The root
login is target of most of the random or targeted attack on Linux
systems and password is usually the weakest part. For that reason, the
upstream OpenSSH changed this option in 2015 to `prohibit-password`,
which still allows public-key authentication, but prevents the
password logins. Fedora was for many practical reasons keeping the old
configuration since then, but the difference is no longer bearable and
might confuse users expecting the root logins will not be enabled out
of the box.
On the other hand, there is still a lot of infrastructure, installers
and test instances that simply might depend on this configuration and
therefore this change needs to go through the system-wide change so
everyone is onboard.
== Benefit to Fedora ==
This will provide more secure Fedora installations out of the box and
prevent inadvertently accessible root logins in the wild.
== Scope ==
* Proposal owners: Modify the default shipped sshd configuration in
`sshd_config` to no longer include the `PermitRootLogin yes` option
and advertise this change throughout Fedora.
* Other developers: Make sure their workflow does not include logging
in as a root to ssh, otherwise modify that workflow
* Release engineering: [https://pagure.io/releng/issues/8342]
* Policies and guidelines: none
* Trademark approval: none
== Upgrade/compatibility impact ==
The updates of previously-modified `sshd_config` will not be affected
and create a `.rpmnew` configuration file.
The updates of default `sshd_config` will be updated and the
modification needs to be listed in release notes to prevent surprises.
== How To Test ==
* Make sure you have root user with password and you can login to this
user using `su`
* Make sure the sshd_config does not contain `PermitRootLogin yes` option
* Restart sshd service: `systemctl restart sshd`
* Try to connect to root user: `ssh
-oPreferredAuthentications=password root@localhost`
* Should fail
Other authentication methods (publickey, gssapi should not be affected)
== User Experience ==
Nothing in production should really depend on root password logins in
2019. If it does, it is the time to change that (or explicitly allow
it on the affected systems).
== Dependencies ==
Installer and kickstarts depending on this functionality.
== Contingency Plan ==
* Contingency mechanism: (What to do? Who will do it?) Maintainer
will revert the change to sshd_config if needed.
* Contingency deadline: Beta freeze
* Blocks release? no
* Blocks product? no
== Documentation ==
OpenSSH in Fedora 31 does not allow root logins using passwords by default.
Upstream release notes: http://www.openssh.com/txt/release-7.0
== Release Notes ==
OpenSSH in Fedora 31 does not allow root logins using passwords by default.
--
Ben Cotton
He / Him / His
Fedora Program Manager
Red Hat
TZ=America/Indiana/Indianapolis
4 years, 4 months
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 be retired when the affected package gets retired.
Packages retired today: rubygem-jnunemaker-matchy rubygem-kaminari rubygem-map
Request ownership at: https://pagure.io/releng/issues
See this report online:
https://churchyard.fedorapeople.org/orphans-2019-05-13.txt
Package (co)maintainers Status Change
================================================================================
Ray orphan 6 weeks ago
aeskulap orphan 4 weeks ago
ahkab orphan 5 weeks ago
ceph-deploy branto, fsimonce, ktdreyer, 1 weeks ago
orphan, trhoden
clpbar dcantrel, orphan 1 weeks ago
compat-openssl10-pkcs11-helper orphan, rdieter 0 weeks ago
cwiid orphan 6 weeks ago
dvdbackup cicku, orphan 4 weeks ago
emacs-pymacs orphan 4 weeks ago
gnome-dvb-daemon orphan 4 weeks ago
gnome-shell-extension-panel-osd orphan 4 weeks ago
gnue-common orphan 6 weeks ago
gpart dcantrel, orphan 1 weeks ago
h2 akurtakov, dchen, lef, orphan 1 weeks ago
jam-control orphan 6 weeks ago
jwebunit orphan 0 weeks ago
ltspfs enslaver, orphan 3 weeks ago
ninja-ide echevemaster, orphan 3 weeks ago
plague dcbw, orphan 2 weeks ago
prover9 orphan 6 weeks ago
python-deltasigma orphan 5 weeks ago
python-django-notifications-hq orphan 6 weeks ago
python-jabberbot orphan 6 weeks ago
python-port-for orphan 6 weeks ago
pywebkitgtk ivazquez, orphan, walters 3 weeks ago
rubygem-chunky_png mmorsi, orphan 4 weeks ago
rubygem-codemirror-rails orphan 3 weeks ago
rubygem-commander maxamillion, orphan, tdawson 1 weeks ago
rubygem-compass-960-plugin orphan 4 weeks ago
rubygem-jnunemaker-matchy orphan, tdawson 7 weeks ago
rubygem-jquery-ui-rails orphan 1 weeks ago
rubygem-kaminari orphan 7 weeks ago
rubygem-map orphan 7 weeks ago
rubygem-paranoia orphan 0 weeks ago
rubygem-sprite-factory orphan 5 weeks ago
rubygem-webrat mmorsi, orphan 4 weeks ago
system-config-firewall orphan, twoerner 1 weeks ago
testoob orphan 0 weeks ago
thermald dbenoit, orphan 5 weeks ago
The following packages require above mentioned packages:
Depending on: compat-openssl10-pkcs11-helper (1), status change: 2019-05-06 (0
weeks ago)
gnupg-pkcs11-scd (maintained by: mikep)
gnupg-pkcs11-scd-0.9.1-5.fc30.i686 requires libpkcs11-helper.so.100
Depending on: h2 (21), status change: 2019-04-30 (1 weeks ago)
bitcoinj (maintained by: jonny)
bitcoinj-0.14.3-6.fc29.src requires mvn(com.h2database:h2) = 1.4.196
hibernate3 (maintained by: gil, lef)
hibernate3-3.6.10-22.fc27.src requires h2 = 1.4.196-6.fc29
jberet (maintained by: gil, goldmann, lef)
jberet-1.2.1-6.fc30.src requires mvn(com.h2database:h2) = 1.4.196
johnzon (maintained by: gil, lef)
johnzon-0.9.4-7.fc30.src requires mvn(com.h2database:h2) = 1.4.196
junit-benchmarks (maintained by: gil)
junit-benchmarks-0.7.2-10.fc29.src requires mvn(com.h2database:h2) = 1.4.196
openas2 (maintained by: sdgathman)
openas2-2.6.3-2.fc30.src requires mvn(com.h2database:h2) = 1.4.196
openas2-lib-2.6.3-2.fc30.noarch requires mvn(com.h2database:h2) = 1.4.196
picketlink (maintained by: gil, goldmann, lef)
picketlink-2.7.1-7.fc30.src requires mvn(com.h2database:h2) = 1.4.196
springframework (maintained by: dchen, gil, lef)
springframework-3.2.18-4.fc28.src requires mvn(com.h2database:h2) = 1.4.196,
mvn(org.hibernate:hibernate-core:3) = 3.6.10.Final
springframework-orm-3.2.18-4.fc28.noarch requires
mvn(org.hibernate:hibernate-core:3) = 3.6.10.Final
springframework-batch (maintained by: gil)
springframework-batch-2.2.7-8.fc30.src requires mvn(com.h2database:h2) = 1.4.196
springframework-integration (maintained by: gil)
springframework-integration-3.0.7-10.fc29.noarch requires
mvn(com.h2database:h2) = 1.4.196
springframework-integration-3.0.7-10.fc29.src requires mvn(com.h2database:h2)
= 1.4.196
springframework-social (maintained by: gil)
springframework-social-1.0.3-9.fc30.src requires mvn(com.h2database:h2) = 1.4.196
tika (maintained by: gil, lef)
tika-1.17-4.fc30.src requires mvn(com.h2database:h2) = 1.4.196
tika-eval-1.17-4.fc30.noarch requires mvn(com.h2database:h2) = 1.4.196
wildfly (maintained by: dchen, gil, goldmann, lef)
wildfly-10.1.0-13.fc29.noarch requires mvn(com.h2database:h2) = 1.4.196
wildfly-10.1.0-13.fc29.src requires mvn(com.h2database:h2) = 1.4.196,
mvn(org.jberet:jberet-core) = 1.2.1.Final
wildfly-lib-10.1.0-13.fc29.noarch requires mvn(org.jberet:jberet-core) =
1.2.1.Final
multibit-commons (maintained by: jonny)
multibit-commons-1.1.0-6.fc30.noarch requires mvn(org.bitcoinj:bitcoinj-core)
= 0.14.3
multibit-commons-1.1.0-6.fc30.src requires mvn(org.bitcoinj:bitcoinj-core) =
0.14.3
dozer (maintained by: gil)
dozer-5.5.1-9.fc30.src requires hibernate3 = 3.6.10-22.fc27
ehcache-core (maintained by: gil, lef)
ehcache-core-2.6.11-7.fc30.noarch requires hibernate3 = 3.6.10-22.fc27,
mvn(org.hibernate:hibernate-core:3) = 3.6.10.Final
ehcache-core-2.6.11-7.fc30.src requires mvn(org.hibernate:hibernate-core:3) =
3.6.10.Final
ehcache2 (maintained by: gil, lef)
ehcache2-2.10.2.2.21-3.fc27.src requires mvn(org.hibernate:hibernate-core:3) =
3.6.10.Final
jasperreports (maintained by: gil, lef)
jasperreports-6.2.2-3.fc26.src requires mvn(org.hibernate:hibernate-core:3) =
3.6.10.Final
jipijapa (maintained by: gil, lef)
jipijapa-1.0.1-7.fc30.src requires mvn(org.hibernate:hibernate-core:3) =
3.6.10.Final
picketbox (maintained by: gil, lef, ricardo)
picketbox-4.9.6-8.fc30.noarch requires mvn(org.hibernate:hibernate-core:3) =
3.6.10.Final
picketbox-4.9.6-8.fc30.src requires mvn(org.hibernate:hibernate-core:3) =
3.6.10.Final
artemis (maintained by: gil, lef)
artemis-1.4.0-10.fc30.src requires mvn(org.apache.johnzon:johnzon-core) = 0.9.4
artemis-core-client-1.4.0-10.fc30.noarch requires
mvn(org.apache.johnzon:johnzon-core) = 0.9.4
artemis-jms-server-1.4.0-10.fc30.noarch requires
mvn(org.apache.johnzon:johnzon-core) = 0.9.4
Too many dependencies for h2, not all listed here
Depending on: python-jabberbot (1), status change: 2019-03-28 (6 weeks ago)
pysysbot (maintained by: fab)
pysysbot-0.1.3-10.fc30.noarch requires python-jabberbot = 0.15-4.fc23
Depending on: python-port-for (1), status change: 2019-03-25 (6 weeks ago)
python-sphinx-autobuild (maintained by: suanand)
python-sphinx-autobuild-0.7.1-13.fc31.noarch requires python3-port-for =
0.4-8.fc31, python3.7dist(port-for) = 0.4
python-sphinx-autobuild-0.7.1-13.fc31.src requires python3-port-for = 0.4-8.fc31
Depending on: pywebkitgtk (3), status change: 2019-04-17 (3 weeks ago)
gscribble (maintained by: roshansingh)
gscribble-0.1.2-16.fc29.noarch requires pywebkitgtk = 1.1.8-13.fc26
nested (maintained by: aeperezt, potty)
nested-1.2.2-22.fc29.noarch requires pywebkitgtk = 1.1.8-13.fc26
wordgroupz (maintained by: rtnpro)
wordgroupz-0.3.1-17.fc30.noarch requires pywebkitgtk = 1.1.8-13.fc26
Depending on: rubygem-chunky_png (4), status change: 2019-04-11 (4 weeks ago)
rubygem-compass (maintained by: mmorsi, tdawson)
rubygem-compass-1.0.1-3.fc24.noarch requires rubygem(chunky_png) = 1.2.7,
rubygem(chunky_png) = 1.2.7-1
rubygem-compass-1.0.1-3.fc24.src requires rubygem(chunky_png) = 1.2.7,
rubygem(chunky_png) = 1.2.7-1
rubygem-sprite-factory (maintained by: orphan)
rubygem-sprite-factory-1.7.1-1.fc31.src requires rubygem(chunky_png) = 1.2.7,
rubygem(chunky_png) = 1.2.7-1
rubygem-compass-960-plugin (maintained by: orphan)
rubygem-compass-960-plugin-0.10.4-15.fc30.noarch requires rubygem(compass) =
1.0.1-1
rubygem-compass-rails (maintained by: tdawson)
rubygem-compass-rails-2.0.4-7.fc30.noarch requires rubygem(compass) = 1.0.1-1
Depending on: rubygem-commander (1), status change: 2019-05-03 (1 weeks ago)
rubygem-rhc (maintained by: gomix, tdawson)
rubygem-rhc-1.38.7-7.fc30.noarch requires rubygem(commander) = 4.3.0
Affected (co)maintainers
aeperezt: pywebkitgtk
akurtakov: h2
branto: ceph-deploy
cicku: dvdbackup
dbenoit: thermald
dcantrel: clpbar, gpart
dcbw: plague
dchen: h2
echevemaster: ninja-ide
enslaver: ltspfs
fab: python-jabberbot
fsimonce: ceph-deploy
gil: h2
goldmann: h2
gomix: rubygem-commander
ivazquez: pywebkitgtk
jonny: h2
ktdreyer: ceph-deploy
lef: h2
maxamillion: rubygem-commander
mikep: compat-openssl10-pkcs11-helper
mmorsi: rubygem-chunky_png, rubygem-webrat
potty: pywebkitgtk
rdieter: compat-openssl10-pkcs11-helper
ricardo: h2
roshansingh: pywebkitgtk
rtnpro: pywebkitgtk
sdgathman: h2
suanand: python-port-for
tdawson: rubygem-chunky_png, rubygem-jnunemaker-matchy, rubygem-commander
trhoden: ceph-deploy
twoerner: system-config-firewall
walters: pywebkitgtk
Orphans (39): Ray aeskulap ahkab ceph-deploy clpbar
compat-openssl10-pkcs11-helper cwiid dvdbackup emacs-pymacs
gnome-dvb-daemon gnome-shell-extension-panel-osd gnue-common gpart
h2 jam-control jwebunit ltspfs ninja-ide plague prover9
python-deltasigma python-django-notifications-hq python-jabberbot
python-port-for pywebkitgtk rubygem-chunky_png
rubygem-codemirror-rails rubygem-commander
rubygem-compass-960-plugin rubygem-jnunemaker-matchy
rubygem-jquery-ui-rails rubygem-kaminari rubygem-map
rubygem-paranoia rubygem-sprite-factory rubygem-webrat
system-config-firewall testoob thermald
Orphans (dependend on) (7): compat-openssl10-pkcs11-helper h2
python-jabberbot python-port-for pywebkitgtk rubygem-chunky_png
rubygem-commander
Orphans (rawhide) for at least 6 weeks (dependend on) (2):
python-jabberbot python-port-for
Orphans (rawhide) (not depended on) (32): Ray aeskulap ahkab
ceph-deploy clpbar cwiid dvdbackup emacs-pymacs gnome-dvb-daemon
gnome-shell-extension-panel-osd gnue-common gpart jam-control
jwebunit ltspfs ninja-ide plague prover9 python-deltasigma
python-django-notifications-hq rubygem-codemirror-rails
rubygem-compass-960-plugin rubygem-jnunemaker-matchy
rubygem-jquery-ui-rails rubygem-kaminari rubygem-map
rubygem-paranoia rubygem-sprite-factory rubygem-webrat
system-config-firewall testoob thermald
Orphans (rawhide) for at least 6 weeks (not dependend on) (9): Ray
cwiid gnue-common jam-control prover9
python-django-notifications-hq rubygem-jnunemaker-matchy
rubygem-kaminari rubygem-map
Depending packages (rawhide) (32): artemis bitcoinj dozer ehcache-core
ehcache2 gnupg-pkcs11-scd gscribble hibernate3 jasperreports
jberet jipijapa johnzon junit-benchmarks multibit-commons nested
openas2 picketbox picketlink pysysbot python-sphinx-autobuild
rubygem-compass rubygem-compass-960-plugin rubygem-compass-rails
rubygem-rhc rubygem-sprite-factory springframework
springframework-batch springframework-integration
springframework-social tika wildfly wordgroupz
Packages depending on packages orphaned (rawhide) for more than 6
weeks (2): pysysbot python-sphinx-autobuild
--
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/master/f/scripts/find_unblocked_orphans.py
--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
4 years, 4 months
Fedora 31 System-Wide Change proposal: MinGW environment and
toolchain update
by Ben Cotton
https://fedoraproject.org/wiki/Changes/MingwEnvToolchainUpdate
== Summary ==
Update the MinGW base environment and toolchain to the latest upstream
stable releases.
== Owner ==
* Name: [[User:smani|Sandro Mani]]
* Email: manisandro(a)gmail.com
== Detailed Description ==
The following packages will be updated
* mingw-gcc to version 9.1.0
* mingw-w64-tools to version 6.0.0
* mingw-winpthreads to version 6.0.0
* mingw-crt to version 6.0.0
* mingw-headers to version 6.0.0
* mingw-binutils to version 2.32
Packages for early testing are available here:
https://copr.fedorainfracloud.org/coprs/smani/mingw-gcc9/builds/
== Benefit to Fedora ==
Ship the latest available MinGW environment and GNU toolchain.
== Scope ==
* Proposal owners:
The above mentioned packages will be updated. Build failures following
the mass rebuild will be inspected.
* Other developers:
Help with build failures may be requested.
* Release engineering: Impact check [https://pagure.io/releng/issues/8340]
* Release engineering: Mass rebuild requested
* Policies and guidelines: No policies need to be changed
== Upgrade/compatibility impact ==
No impact
== How To Test ==
Update the system once the updated packages land, look out for new
build failures etc.
== User Experience ==
The features of the newest MinGW environment and GNU Toolchain will be
available to the users.
== Dependencies ==
None
== Contingency Plan ==
* Contingency mechanism: Revert to older versions of environment /
toolchain, mass rebuild mingw packages again
* Contingency deadline: Before release
* Blocks release? Yes
* Blocks product? No
== Documentation ==
* http://gcc.gnu.org/gcc-9/
* https://mingw-w64.org/doku.php/versions
== Release Notes ==
Fedora 31 comes with the mingw-w64-6.0.0 environment, mingw-gcc-9.1
and mingw-binutils 2.32.
--
Ben Cotton
He / Him / His
Fedora Program Manager
Red Hat
TZ=America/Indiana/Indianapolis
4 years, 4 months
Fedora 30 Elections: Nomination period open
by Ben Cotton
Today we are starting the Nomination & Campaign period during which we
accept nominations to the "steering bodies" of the following teams:
* FESCo (Engineering) (4 seats) [1]
* Fedora Council (1 seat) [2]
* Mindshare (1 seat) [3]
This period is open until 2019-05-22 at 23:59:59 UTC.
Candidates may self-nominate. If you nominate someone else, please
check with them to ensure that they are willing to be nominated before
submitting their name.
The steering bodies are currently selecting interview questions for
the candidates.
Nominees submit their questionnaire answers via a private Pagure
issue. The Election Wrangler or their backup will publish the
interviews to the Community Blog before the start of the voting
period. Fedora Podcast episodes will be recorded and published as
well.
Please note that the interview is mandatory for all nominees. Nominees
not having their interview ready by end of the Interview period
(2019-05-29) will be disqualified and removed from the election.
As part of the campaign people may also ask questions to specific
candidates on the appropriate mailing list.
The full schedule of the elections is available on the Elections
schedule[4]. For more information about the elections process, see the
wiki[5].
[1] https://fedoraproject.org/wiki/Development/SteeringCommittee/Nominations
[2] https://fedoraproject.org/wiki/Council/Nominations
[3] https://fedoraproject.org/wiki/Mindshare/Nominations
[4] https://fedorapeople.org/groups/schedule/f-30/f-30-elections.html
[5] https://fedoraproject.org/wiki/Elections
--
Ben Cotton
He / Him / His
Fedora Program Manager
Red Hat
TZ=America/Indiana/Indianapolis
4 years, 4 months
Orphaned packages seeking 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 be retired when the affected package gets retired.
Grep this for you FAS name and follow the dependencies:
See https://churchyard.fedorapeople.org/orphans-2019-05-06.txt
Request unorphaning or unretirement via:
https://pagure.io/releng/issues
Package (co)maintainers Status Change
================================================================================
Ray orphan 5 weeks ago
aeskulap orphan 3 weeks ago
ahkab orphan 4 weeks ago
ceph-deploy branto, fsimonce, ktdreyer, 0 weeks ago
orphan, trhoden
clpbar dcantrel, orphan 0 weeks ago
cwiid orphan 5 weeks ago
dvdbackup cicku, orphan 3 weeks ago
emacs-pymacs orphan 3 weeks ago
gnome-dvb-daemon orphan 3 weeks ago
gnome-shell-extension- orphan 3 weeks ago
openweather
gnome-shell-extension-panel-osd orphan 3 weeks ago
gnue-common orphan 5 weeks ago
gpart dcantrel, orphan 0 weeks ago
h2 akurtakov, dchen, lef, orphan 0 weeks ago
jam-control orphan 5 weeks ago
ltspfs enslaver, orphan 2 weeks ago
ninja-ide echevemaster, orphan 2 weeks ago
nodejs-after nodejs-sig, orphan 7 weeks ago
nodejs-alter nodejs-sig, orphan 7 weeks ago
nodejs-ansi-font nodejs-sig, orphan 7 weeks ago
nodejs-ansidiff nodejs-sig, orphan 7 weeks ago
nodejs-archiver nodejs-sig, orphan 7 weeks ago
nodejs-archiver-utils nodejs-sig, orphan 7 weeks ago
nodejs-ast-traverse nodejs-sig, orphan 7 weeks ago
nodejs-ast-types nodejs-sig, orphan 7 weeks ago
nodejs-astral nodejs-sig, orphan 7 weeks ago
nodejs-astral-angular-annotate nodejs-sig, orphan 7 weeks ago
nodejs-astral-pass nodejs-sig, orphan 7 weeks ago
nodejs-async-cache nodejs-sig, orphan 7 weeks ago
nodejs-async-each nodejs-sig, orphan 7 weeks ago
nodejs-aws-sign2 nodejs-sig, orphan 7 weeks ago
nodejs-base64-js nodejs-sig, orphan 7 weeks ago
nodejs-basic-auth-parser nodejs-sig, orphan 7 weeks ago
nodejs-bl nodejs-sig, orphan 7 weeks ago
nodejs-breakable nodejs-sig, orphan 7 weeks ago
nodejs-camel-case nodejs-sig, orphan 7 weeks ago
nodejs-caniuse-db nodejs-sig, orphan 7 weeks ago
nodejs-change-case nodejs-sig, orphan 7 weeks ago
nodejs-clone nodejs-sig, orphan 7 weeks ago
nodejs-cls nodejs-sig, orphan 7 weeks ago
nodejs-co nodejs-sig, orphan 7 weeks ago
nodejs-commoner nodejs-sig, orphan 7 weeks ago
nodejs-compress-commons nodejs-sig, orphan 7 weeks ago
nodejs-console-browserify nodejs-sig, orphan 7 weeks ago
nodejs-constant-case nodejs-sig, orphan 7 weeks ago
nodejs-crc32-stream nodejs-sig, orphan 7 weeks ago
nodejs-dashdash nodejs-sig, orphan 7 weeks ago
nodejs-date-now nodejs-sig, orphan 7 weeks ago
nodejs-deferred nodejs-sig, orphan 7 weeks ago
nodejs-defs nodejs-sig, orphan 7 weeks ago
nodejs-degenerator nodejs-sig, orphan 7 weeks ago
nodejs-dom-serializer nodejs-sig, orphan 7 weeks ago
nodejs-domelementtype nodejs-sig, orphan 7 weeks ago
nodejs-domhandler nodejs-sig, orphan 7 weeks ago
nodejs-domutils nodejs-sig, orphan 7 weeks ago
nodejs-dot-case nodejs-sig, orphan 7 weeks ago
nodejs-dreamopt nodejs-sig, orphan 7 weeks ago
nodejs-each-async nodejs-sig, orphan 7 weeks ago
nodejs-entities nodejs-sig, orphan 7 weeks ago
nodejs-etag nodejs-sig, orphan 7 weeks ago
nodejs-extend nodejs-sig, orphan 7 weeks ago
nodejs-extsprintf nodejs-sig, orphan 7 weeks ago
nodejs-far nodejs-sig, orphan 7 weeks ago
nodejs-fd nodejs-sig, orphan 7 weeks ago
nodejs-fg-lodash nodejs-sig, orphan 7 weeks ago
nodejs-file-uri-to-path nodejs-sig, orphan 7 weeks ago
nodejs-fn-name nodejs-sig, orphan 7 weeks ago
nodejs-fs2 nodejs-sig, orphan 7 weeks ago
nodejs-ftp nodejs-sig, orphan 7 weeks ago
nodejs-generate-function nodejs-sig, orphan 7 weeks ago
nodejs-generate-object-property nodejs-sig, orphan 7 weeks ago
nodejs-get-stdin nodejs-sig, orphan 7 weeks ago
nodejs-get-uri nodejs-sig, orphan 7 weeks ago
nodejs-grunt-angular-templates nodejs-sig, orphan 7 weeks ago
nodejs-grunt-contrib-connect nodejs-sig, orphan 7 weeks ago
nodejs-grunt-contrib-cssmin nodejs-sig, orphan 7 weeks ago
nodejs-grunt-contrib-htmlmin nodejs-sig, orphan 7 weeks ago
nodejs-grunt-contrib-less nodejs-sig, orphan 7 weeks ago
nodejs-grunt-contrib-requirejs nodejs-sig, orphan 7 weeks ago
nodejs-grunt-saucelabs nodejs-sig, orphan 7 weeks ago
nodejs-grunt-util-args nodejs-sig, orphan 7 weeks ago
nodejs-grunt-util-options nodejs-sig, orphan 7 weeks ago
nodejs-grunt-util-process nodejs-sig, orphan 7 weeks ago
nodejs-grunt-util-property nodejs-sig, orphan 7 weeks ago
nodejs-har-validator nodejs-sig, orphan 7 weeks ago
nodejs-hash_file nodejs-sig, orphan 7 weeks ago
nodejs-hock nodejs-sig, orphan 7 weeks ago
nodejs-html-minifier nodejs-sig, orphan 7 weeks ago
nodejs-https-proxy-agent nodejs-sig, orphan 7 weeks ago
nodejs-install nodejs-sig, orphan 7 weeks ago
nodejs-is-lower-case nodejs-sig, orphan 7 weeks ago
nodejs-is-my-json-valid nodejs-sig, orphan 7 weeks ago
nodejs-is-property nodejs-sig, orphan 7 weeks ago
nodejs-is-typedarray nodejs-sig, orphan 7 weeks ago
nodejs-is-upper-case nodejs-sig, orphan 7 weeks ago
nodejs-isstream nodejs-sig, orphan 7 weeks ago
nodejs-istanbul nodejs-sig, orphan 7 weeks ago
nodejs-jison nodejs-sig, orphan 7 weeks ago
nodejs-jsonpointer nodejs-sig, orphan 7 weeks ago
nodejs-log-symbols nodejs-sig, orphan 7 weeks ago
nodejs-lower-case nodejs-sig, orphan 7 weeks ago
nodejs-lower-case-first nodejs-sig, orphan 7 weeks ago
nodejs-mkfiletree nodejs-sig, orphan 7 weeks ago
nodejs-multiline nodejs-sig, orphan 7 weeks ago
nodejs-next nodejs-sig, orphan 7 weeks ago
nodejs-onetime nodejs-sig, orphan 7 weeks ago
nodejs-oop nodejs-sig, orphan 7 weeks ago
nodejs-opn nodejs-sig, orphan 7 weeks ago
nodejs-pac-proxy-agent nodejs-sig, orphan 7 weeks ago
nodejs-pac-resolver nodejs-sig, orphan 7 weeks ago
nodejs-param-case nodejs-sig, orphan 7 weeks ago
nodejs-parserlib nodejs-sig, orphan 7 weeks ago
nodejs-pascal-case nodejs-sig, orphan 7 weeks ago
nodejs-path-case nodejs-sig, orphan 7 weeks ago
nodejs-pend nodejs-sig, orphan 7 weeks ago
nodejs-pify nodejs-sig, orphan 7 weeks ago
nodejs-portscanner nodejs-sig, orphan 7 weeks ago
nodejs-private nodejs-sig, orphan 7 weeks ago
nodejs-proxy nodejs-sig, orphan 7 weeks ago
nodejs-recast nodejs-sig, orphan 7 weeks ago
nodejs-regenerator nodejs-sig, orphan 7 weeks ago
nodejs-relateurl nodejs-sig, orphan 7 weeks ago
nodejs-requestretry nodejs-sig, orphan 7 weeks ago
nodejs-require-directory nodejs-sig, orphan 7 weeks ago
nodejs-run-parallel-limit nodejs-sig, orphan 7 weeks ago
nodejs-safe-buffer nodejs-sig, orphan, pnemade 7 weeks ago
nodejs-sauce-tunnel nodejs-sig, orphan 7 weeks ago
nodejs-saucelabs nodejs-sig, orphan 7 weeks ago
nodejs-sentence-case nodejs-sig, orphan 7 weeks ago
nodejs-smart-buffer nodejs-sig, orphan 7 weeks ago
nodejs-snake-case nodejs-sig, orphan 7 weeks ago
nodejs-socks-client nodejs-sig, orphan 7 weeks ago
nodejs-socks-proxy-agent nodejs-sig, orphan 7 weeks ago
nodejs-st nodejs-sig, orphan 7 weeks ago
nodejs-std-mocks nodejs-sig, orphan 7 weeks ago
nodejs-stream-equal nodejs-sig, orphan 7 weeks ago
nodejs-stream-to-array nodejs-sig, orphan 7 weeks ago
nodejs-streamsink nodejs-sig, orphan 7 weeks ago
nodejs-stringstream nodejs-sig, orphan 7 weeks ago
nodejs-strip-indent nodejs-sig, orphan 7 weeks ago
nodejs-swap-case nodejs-sig, orphan 7 weeks ago
nodejs-tar-stream nodejs-sig, orphan 7 weeks ago
nodejs-title-case nodejs-sig, orphan 7 weeks ago
nodejs-tough-cookie nodejs-sig, orphan 7 weeks ago
nodejs-upper-case nodejs-sig, orphan 7 weeks ago
nodejs-upper-case-first nodejs-sig, orphan 7 weeks ago
nodejs-vary nodejs-sig, orphan 7 weeks ago
nodejs-verror nodejs-sig, orphan 7 weeks ago
nodejs-xregexp nodejs-sig, orphan 7 weeks ago
nodejs-zip-stream nodejs-sig, orphan 7 weeks ago
plague dcbw, orphan 1 weeks ago
prover9 orphan 5 weeks ago
python-deltasigma orphan 4 weeks ago
python-django-notifications-hq orphan 6 weeks ago
python-jabberbot orphan 5 weeks ago
python-port-for orphan 6 weeks ago
pywebkitgtk ivazquez, orphan, walters 2 weeks ago
rubygem-chunky_png mmorsi, orphan 3 weeks ago
rubygem-codemirror-rails orphan 2 weeks ago
rubygem-commander maxamillion, orphan, tdawson 0 weeks ago
rubygem-compass-960-plugin orphan 3 weeks ago
rubygem-jnunemaker-matchy orphan, tdawson 6 weeks ago
rubygem-jquery-ui-rails orphan 0 weeks ago
rubygem-kaminari orphan 7 weeks ago
rubygem-map orphan 6 weeks ago
rubygem-paranoia orphan 0 weeks ago
rubygem-sprite-factory orphan 4 weeks ago
rubygem-webrat mmorsi, orphan 3 weeks ago
system-config-firewall orphan, twoerner 0 weeks ago
thermald dbenoit, orphan 4 weeks ago
The following packages require above mentioned packages:
(omitted here for length)
See https://churchyard.fedorapeople.org/orphans-2019-05-06.txt
(grep for your FAS name and follow the dependency chain)
Affected (co)maintainers
adamwill: nodejs-clone
aeperezt: pywebkitgtk
akurtakov: h2
branto: ceph-deploy
cicku: dvdbackup
dbenoit: thermald
dcallagh: nodejs-clone
dcantrel: gpart, clpbar
dcbw: plague
dchen: h2
echevemaster: ninja-ide
enslaver: ltspfs
eseyman: nodejs-clone
fab: python-jabberbot
fsimonce: ceph-deploy
gil: h2
goldmann: h2
gomix: rubygem-commander
humaton: nodejs-clone
itamarjp: nodejs-clone
ivazquez: pywebkitgtk
jamielinux: nodejs-tough-cookie, nodejs-vary, nodejs-entities, nodejs-aws-sign2,
nodejs-clone, nodejs-is-property, nodejs-isstream,
nodejs-generate-object-property, nodejs-is-typedarray, nodejs-bl, nodejs-etag,
nodejs-istanbul, nodejs-stream-to-array, nodejs-co, nodejs-require-directory,
nodejs-hash_file, nodejs-stringstream, nodejs-requestretry,
nodejs-is-my-json-valid, nodejs-generate-function, nodejs-after,
nodejs-dreamopt, nodejs-fg-lodash, nodejs-safe-buffer, nodejs-jsonpointer,
nodejs-extend, nodejs-har-validator
jdeluyck: nodejs-archiver, nodejs-tar-stream, nodejs-archiver-utils,
nodejs-crc32-stream, nodejs-compress-commons, nodejs-zip-stream
jonny: h2
jsmith: nodejs-tough-cookie, nodejs-vary, nodejs-alter, nodejs-entities,
nodejs-aws-sign2, nodejs-fs2, nodejs-private, nodejs-clone, nodejs-is-property,
nodejs-isstream, nodejs-log-symbols, nodejs-dom-serializer,
nodejs-generate-object-property, nodejs-is-typedarray, nodejs-ast-types,
nodejs-bl, nodejs-istanbul, nodejs-stream-to-array, nodejs-breakable, nodejs-co,
nodejs-next, nodejs-onetime, nodejs-cls, nodejs-commoner, nodejs-oop,
nodejs-require-directory, nodejs-get-stdin, nodejs-hash_file,
nodejs-stringstream, nodejs-verror, nodejs-extsprintf, nodejs-far,
nodejs-recast, nodejs-strip-indent, nodejs-ast-traverse, nodejs-domhandler,
nodejs-deferred, nodejs-is-my-json-valid, nodejs-generate-function,
nodejs-each-async, nodejs-after, nodejs-dreamopt, nodejs-parserlib,
nodejs-safe-buffer, nodejs-domelementtype, nodejs-jsonpointer,
nodejs-async-each, nodejs-extend, nodejs-defs, nodejs-har-validator,
nodejs-regenerator, nodejs-pify, nodejs-domutils
ktdreyer: ceph-deploy
kumarpraveen: nodejs-clone
kwizart: nodejs-clone
lef: h2
martinkg: nodejs-after
maxamillion: rubygem-commander
mmorsi: rubygem-webrat, rubygem-chunky_png
mrunge: nodejs-clone
mso: nodejs-clone
patches: nodejs-tough-cookie, nodejs-vary, nodejs-entities, nodejs-aws-sign2,
nodejs-clone, nodejs-is-property, nodejs-isstream,
nodejs-generate-object-property, nodejs-is-typedarray, nodejs-bl, nodejs-etag,
nodejs-istanbul, nodejs-stream-to-array, nodejs-co, nodejs-require-directory,
nodejs-hash_file, nodejs-stringstream, nodejs-is-my-json-valid,
nodejs-generate-function, nodejs-after, nodejs-dreamopt, nodejs-safe-buffer,
nodejs-jsonpointer, nodejs-extend, nodejs-har-validator
piotrp: nodejs-generate-function, nodejs-generate-object-property,
nodejs-is-typedarray, nodejs-require-directory, nodejs-bl, nodejs-dreamopt,
nodejs-hash_file, nodejs-stringstream, nodejs-aws-sign2, nodejs-tough-cookie,
nodejs-jsonpointer, nodejs-extend, nodejs-har-validator, nodejs-is-property,
nodejs-isstream, nodejs-is-my-json-valid
pjp: nodejs-clone
pnemade: nodejs-tough-cookie, nodejs-aws-sign2, nodejs-is-property,
nodejs-isstream, nodejs-generate-object-property, nodejs-is-typedarray,
nodejs-bl, nodejs-istanbul, nodejs-stream-to-array, nodejs-require-directory,
nodejs-hash_file, nodejs-stringstream, nodejs-is-my-json-valid,
nodejs-generate-function, nodejs-dreamopt, nodejs-safe-buffer,
nodejs-jsonpointer, nodejs-extend, nodejs-har-validator
potty: pywebkitgtk
rathann: nodejs-clone
ricardo: h2
roshansingh: pywebkitgtk
rtnpro: pywebkitgtk
sdgathman: h2
sgallagh: nodejs-clone
suanand: python-port-for
sundaram: nodejs-clone
tc01: nodejs-tough-cookie, nodejs-aws-sign2, nodejs-is-property,
nodejs-isstream, nodejs-generate-object-property, nodejs-is-typedarray,
nodejs-bl, nodejs-istanbul, nodejs-stream-to-array, nodejs-require-directory,
nodejs-hash_file, nodejs-stringstream, nodejs-is-my-json-valid,
nodejs-generate-function, nodejs-dreamopt, nodejs-safe-buffer,
nodejs-jsonpointer, nodejs-extend, nodejs-har-validator
tchaikov: nodejs-clone
tdawson: rubygem-jnunemaker-matchy, nodejs-tough-cookie, nodejs-aws-sign2,
rubygem-commander, nodejs-is-property, nodejs-isstream,
nodejs-generate-object-property, nodejs-is-typedarray, nodejs-bl,
nodejs-require-directory, nodejs-hash_file, nodejs-stringstream,
rubygem-chunky_png, nodejs-is-my-json-valid, nodejs-generate-function,
nodejs-safe-buffer, nodejs-jsonpointer, nodejs-extend, nodejs-har-validator
tomh: nodejs-tough-cookie, nodejs-aws-sign2, nodejs-clone, nodejs-is-property,
nodejs-isstream, nodejs-generate-object-property, nodejs-is-typedarray,
nodejs-bl, nodejs-etag, nodejs-stream-to-array, nodejs-co,
nodejs-require-directory, nodejs-hash_file, nodejs-stringstream,
nodejs-requestretry, nodejs-is-my-json-valid, nodejs-generate-function,
nodejs-fg-lodash, nodejs-jsonpointer, nodejs-extend, nodejs-har-validator
trhoden: ceph-deploy
twoerner: system-config-firewall
vjancik: nodejs-stream-to-array, nodejs-clone, nodejs-safe-buffer
walters: pywebkitgtk
xavierb: nodejs-grunt-contrib-cssmin
zvetlik: nodejs-dreamopt, nodejs-safe-buffer, nodejs-istanbul,
nodejs-stream-to-array, nodejs-clone
Packages listed here but already retired today:
nodejs-after nodejs-alter nodejs-ansi-font nodejs-ansidiff nodejs-archiver
nodejs-archiver-utils nodejs-ast-traverse nodejs-ast-types nodejs-astral
nodejs-astral-angular-annotate nodejs-astral-pass nodejs-async-cache
nodejs-async-each nodejs-aws-sign2 nodejs-base64-js nodejs-basic-auth-parser
nodejs-bl nodejs-breakable nodejs-camel-case nodejs-caniuse-db
nodejs-change-case nodejs-clone nodejs-cls nodejs-co nodejs-commoner
nodejs-compress-commons nodejs-console-browserify nodejs-constant-case
nodejs-crc32-stream nodejs-dashdash nodejs-date-now nodejs-deferred
nodejs-defs nodejs-degenerator nodejs-dom-serializer nodejs-domelementtype
nodejs-domhandler nodejs-domutils nodejs-dot-case nodejs-dreamopt
nodejs-each-async nodejs-entities nodejs-etag nodejs-extend nodejs-extsprintf
nodejs-far nodejs-fd nodejs-fg-lodash nodejs-file-uri-to-path nodejs-fn-name
nodejs-fs2 nodejs-ftp nodejs-generate-function nodejs-generate-object-property
nodejs-get-stdin nodejs-get-uri nodejs-grunt-angular-templates
nodejs-grunt-contrib-connect nodejs-grunt-contrib-cssmin
nodejs-grunt-contrib-htmlmin nodejs-grunt-contrib-less
nodejs-grunt-contrib-requirejs nodejs-grunt-saucelabs nodejs-grunt-util-args
nodejs-grunt-util-options nodejs-grunt-util-process nodejs-grunt-util-property
nodejs-har-validator nodejs-hash_file nodejs-hock nodejs-html-minifier
nodejs-https-proxy-agent nodejs-install nodejs-is-lower-case
nodejs-is-my-json-valid nodejs-is-property nodejs-is-typedarray
nodejs-is-upper-case nodejs-isstream nodejs-istanbul nodejs-jison
nodejs-jsonpointer nodejs-log-symbols nodejs-lower-case
nodejs-lower-case-first nodejs-mkfiletree nodejs-multiline nodejs-next
nodejs-onetime nodejs-oop nodejs-opn nodejs-pac-proxy-agent nodejs-pac-resolver
nodejs-param-case nodejs-parserlib nodejs-pascal-case nodejs-path-case
nodejs-pend nodejs-pify nodejs-portscanner nodejs-private nodejs-proxy
nodejs-recast nodejs-regenerator nodejs-relateurl nodejs-requestretry
nodejs-require-directory nodejs-run-parallel-limit nodejs-safe-buffer
nodejs-sauce-tunnel nodejs-saucelabs nodejs-sentence-case nodejs-smart-buffer
nodejs-snake-case nodejs-socks-client nodejs-socks-proxy-agent
nodejs-st nodejs-std-mocks nodejs-stream-equal nodejs-stream-to-array
nodejs-streamsink nodejs-stringstream nodejs-strip-indent nodejs-swap-case
nodejs-tar-stream nodejs-title-case nodejs-tough-cookie nodejs-upper-case
nodejs-upper-case-first nodejs-vary nodejs-verror nodejs-xregexp
nodejs-zip-stream
--
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/master/f/scripts/find_unblocked_orphans.py
--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
4 years, 4 months