--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-3ff0c03d0d
2022-06-27 01:55:35.640291
--------------------------------------------------------------------------------
Name : unrealircd
Product : Fedora EPEL 9
Version : 6.0.4
Release : 1.el9
URL : https://www.unrealircd.org/
Summary : Open Source IRC server
Description :
UnrealIRCd is an Open Source IRC server based on the branch of IRCu called
Dreamforge, formerly used by the DALnet IRC network. Since the beginning of
development on UnrealIRCd in May of 1999, it has become a highly advanced
IRCd with a strong focus on modularity, an advanced and highly configurable
configuration file. Key features include SSL/TLS, cloaking, advanced anti-
flood and anti-spam systems, swear filtering and module support.
--------------------------------------------------------------------------------
Update Information:
# UnrealIRCd 6.0.4 This release comes with lots of features and enhancements. In
particular, security groups and mask items now allow you to write cleaner and
more flexible configuration files. There are also JSON logging enhancements and
several bug fixes. ## Enhancements * Show security groups in `WHOIS` * The
[security-group](https://www.unrealircd.org/docs/Security-group_block) block has
been expanded and the same functionality is now available in [mask
items](https://www.unrealircd.org/docs/Mask_item) too: * This means the
existing options like `identified`, `webirc`, `tls` and `reputation-score` can
be used in `allow::mask` etc. * New options (in both security-group and
mask) are: * `connect-time`: time a user is connected to IRC *
`security-group`: to check another security group * `account`: services
account name * `country`: country code, as found by GeoIP *
`realname`: realname (gecos) of the user * `certfp`: certificate
fingerprint * Every option also has an exclude- variant, e.g. `exclude-
country`. If a user matches any `exclude-` option then it is considered not a
match. * The modules
[connthrottle](https://www.unrealircd.org/docs/Connthrottle), [restrict-
commands](https://www.unrealircd.org/docs/Set_block#set::restrict-commands) and
[antirandom](https://www.unrealircd.org/docs/Set_block#set::antirandom) now use
the new `except` sub-block which is a mask item. The old syntax (e.g.
`set::antirandom::except-webirc`) is still accepted by UnrealIRCd and converted
to the appropriate new setting behind the scenes
(`set::antirandom::except::webirc`). * The modules
[blacklist](https://www.unrealircd.org/docs/Blacklist_block) and
[antimixedutf8](https://www.unrealircd.org/docs/Set_block#set::antimixedutf8)
now also support the `except` block (a mask item). * Other than that the
extended functionality is available in these blocks: `allow`, `oper`, `tld`,
`vhost`, `deny channel`, `allow channel`. * Example of direct use in a
::mask item: ``` /* Spanish MOTD for Spanish speaking countries */ tld {
mask { country { ES; AR; BO; CL; CO; CR; DO; EC; SV; GT; HN; MX; NI; PA; PY; PE;
PR; UY; VE; } } motd "motd.es.txt"; rules "rules.es.txt"; } ``` *
Example of defining a security group and using it in a mask item later: ```
security-group irccloud { mask { ip1; ip2; ip3; ip4; } } allow { mask {
security-group irccloud; } class clients; maxperip 128; } except ban {
mask { security-group irccloud; } type { blacklist; connect-flood;
handshake-data-flood; } } ``` * Because the mask item is so powerful now, the
`password` in the [oper block](https://www.unrealircd.org/docs/Oper_block) is
optional now. * We now support `oper::auto-login`, which means the user will
become IRCOp automatically if they match the conditions on-connect. This can be
used in combination with [certificate
fingerprint](https://www.unrealircd.org/docs/Certificate_fingerprint)
authentication for example: ``` security-group Syzop { certfp "1234etc."; } oper
Syzop { auto-login yes; mask { security-group Syzop; } operclass
netadmin-with-override; class opers; } except ban { mask { security-
group Syzop; } type all; } ``` * For [JSON
logging](https://www.unrealircd.org/docs/JSON_logging) a number of fields were
added when a client is expanded: * `geoip`: with subitem `country_code`
(e.g. NL) * `tls`: with subitems `cipher` and `certfp` * Under subitem
`users`: * `vhost`: if the visible host differs from the realhost then
this is set (thus for both vhost and cloaked host) * `cloakedhost`: this
is always set (except for e.g. services users), even if the user is not cloaked
so you can easily search on a cloaked host. * `idle_since`: last time the
user has spoken (local clients only) * `channels`: list of channels
(array), with a maximum of 384 chars. * The JSON logging now also strips ASCII
below 32, so color- and control codes. * Support IRCv3 `+draft/channel-
context` * Add `example.es.conf` (Spanish example configuration file) * The
country of users is now communicated in the [message-
tag](https://www.unrealircd.org/docs/Message_tags) `unrealircd.org/geoip` (only
to IRCOps). * Add support for linking servers via UNIX domain sockets
(`link::outgoing::file`). ## Fixes * Crash in `except ban` with `~security-
group:xyz` * Crash if hideserver module was loaded but `LINKS` was not
blocked. * Infinite loop if one security-group referred to another. *
Duplicate entries in the `+beI` lists of `+P` channels. * Regular users were
able to `-o` a service bot (that has umode `+S`) * Module manager did not stop
on compile error * [`set::modes-on-
join`](https://www.unrealircd.org/docs/Set_block#set::modes-on-join) did not
work with `+f` + timed bans properly, e.g. `[3t#b1]:10` * Several log messages
were missing some information. * Reputation syncing across servers had a small
glitch. Fix is mostly useful for servers that were not linked to the network for
days or weeks. ## Changes * Clarified that UnrealIRCd is licensed as "GPLv2
or later" * Fix use of variables in [`set::reject-
message`](https://www.unrealircd.org/docs/Set_block#set::reject-message) and in
[`blacklist::reason`](https://www.unrealircd.org/docs/Blacklist_block):
previously short forms of variables were (unintentionally) expanded as well,
such as `$serv` for `$server`. This is no longer supported, you need to use the
correct full variable names. ## Developers and protocol * The `creationtime`
is now communicated of users. Until now this information was only known locally
(the thing that was communicated that came close was "last nick change" but that
is not the same). This is synced via (early) moddata across servers. Module
coders can use `get_connected_time()`. * The `RPL_HOSTHIDDEN` is now sent from
`userhost_changed()` so you don't explicitly send it yourself anymore. * The
`SVSO` command is back, so services can make people IRCOp again. See `HELPOP
SVSO` or [the commit](https://github.com/unrealircd/unrealircd/commit/50e5d91c79
8e7d07ca0c68d9fca302a6b6610786) for more information. * Due to last change the
`HOOKTYPE_LOCAL_OPER` parameters were changed. * Module coders can enhance the
[JSON logging](https://www.unrealircd.org/docs/JSON_logging) expansion items for
clients and channels via new hooks like `HOOKTYPE_JSON_EXPAND_CLIENT`. This is
used by the geoip and tls modules.
--------------------------------------------------------------------------------
ChangeLog:
* Sat Jun 18 2022 Robert Scheck <robert(a)fedoraproject.org> 6.0.4-1
- Upgrade to 6.0.4 (#2090417)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2090417 - unrealircd-6.0.4 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2090417
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update unrealircd' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-d8f302157d
2022-06-27 01:55:35.640279
--------------------------------------------------------------------------------
Name : mold
Product : Fedora EPEL 9
Version : 1.3.0
Release : 1.el9
URL : https://github.com/rui314/mold
Summary : A Modern Linker
Description :
mold is a faster drop-in replacement for existing Unix linkers.
It is several times faster than the LLVM lld linker.
mold is designed to increase developer productivity by reducing
build time, especially in rapid debug-edit-rebuild cycles.
--------------------------------------------------------------------------------
Update Information:
Bump version to 1.3.0 (#2098316)
--------------------------------------------------------------------------------
ChangeLog:
* Sat Jun 18 2022 Christoph Erhardt <fedora(a)sicherha.de> - 1.3.0-1
- Bump version to 1.3.0 (#2098316)
- Drop upstreamed patches
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2098316 - mold-1.3.0 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2098316
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update mold' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-fa5f15ae7c
2022-06-27 01:55:35.640222
--------------------------------------------------------------------------------
Name : dkms
Product : Fedora EPEL 9
Version : 3.0.4
Release : 1.el9
URL : http://linux.dell.com/dkms
Summary : Dynamic Kernel Module Support Framework
Description :
This package contains the framework for the Dynamic Kernel Module Support (DKMS)
method for installing module RPMS as originally developed by Dell.
--------------------------------------------------------------------------------
Update Information:
Various bugfixes.
--------------------------------------------------------------------------------
ChangeLog:
* Sat Jun 18 2022 Simone Caronni <negativo17(a)gmail.com> - 3.0.4-1
- Update to 3.0.4.
* Thu Jan 20 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.0.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update dkms' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-10ec3d1b92
2022-06-26 01:36:04.073667
--------------------------------------------------------------------------------
Name : testcloud
Product : Fedora EPEL 8
Version : 0.8.0
Release : 1.el8
URL : https://pagure.io/testcloud
Summary : Tool for running cloud images locally
Description :
testcloud is a relatively simple system which is capable of booting images
designed for cloud systems on a local system with minimal configuration.
testcloud is designed to be (and remain) somewhat simple, trading fancy cloud
system features for ease of use and sanity in development.
--------------------------------------------------------------------------------
Update Information:
- Bump CentOS Stream versions - Build seed image with genisoimage (mpitt) -
Reduce libvirt dependencies (mpitt) - Drop libguestfs from Requires to Suggests
(mpitt) - util: except also requests.exceptions.JSONDecodeError -
_needs_legacy_net: try to guess based on image name with missing guestfs - add
coreos aarch64 support (lnie) - Allow to configure download progress verbosity
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jun 24 2022 Frantisek Zatloukal <fzatlouk(a)redhat.com> - 0.8.0-1
- Bump CentOS Stream versions
- Build seed image with genisoimage (mpitt)
- Reduce libvirt dependencies (mpitt)
- Drop libguestfs from Requires to Suggests (mpitt)
- util: except also requests.exceptions.JSONDecodeError
- _needs_legacy_net: try to guess based on image name with missing guestfs
- add coreos aarch64 support (lnie)
- Allow to configure download progress verbosity
* Mon Jun 13 2022 Python Maint <python-maint(a)redhat.com> - 0.7.1-2
- Rebuilt for Python 3.11
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2093717 - Please lower or drop python3-libguestfs dependency
https://bugzilla.redhat.com/show_bug.cgi?id=2093717
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update testcloud' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-e4694ae704
2022-06-26 01:36:04.073655
--------------------------------------------------------------------------------
Name : libmongocrypt
Product : Fedora EPEL 8
Version : 1.4.1
Release : 1.el8
URL : https://github.com/mongodb/libmongocrypt
Summary : The companion C library for client side encryption in drivers
Description :
The companion C library for client side encryption in drivers.
--------------------------------------------------------------------------------
Update Information:
**Version 1.4.1** Fixed - Add missing MONGOCRYPT_EXPORT to
mongocrypt_ctx_provide_kms_providers ---- **Version 1.4.0*** New Features -
Support on-demand credentials with `MONGOCRYPT_CTX_NEED_KMS_CREDENTIALS` state
and `mongocrypt_ctx_provide_kms_providers`.
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jun 17 2022 Remi Collet <remi(a)remirepo.net> - 1.4.1-1
- update to 1.4.1
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update libmongocrypt' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-c94aaa43db
2022-06-26 01:36:04.073599
--------------------------------------------------------------------------------
Name : uglify-js3
Product : Fedora EPEL 8
Version : 3.16.1
Release : 1.el8
URL : https://github.com/mishoo/UglifyJS
Summary : JavaScript parser, mangler/compressor and beautifier toolkit
Description :
JavaScript parser, mangler/compressor and beautifier toolkit.
This package ships the uglifyjs command-line tool and a library suitable for
use within Node.js.
--------------------------------------------------------------------------------
Update Information:
Uglify-JS 3.16.1
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jun 17 2022 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 3.16.1-1
- Update to 3.16.1
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2083888 - uglify-js-3.16.1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2083888
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update uglify-js3' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-33f26e2e77
2022-06-26 00:57:08.130529
--------------------------------------------------------------------------------
Name : uglify-js
Product : Fedora EPEL 7
Version : 3.16.1
Release : 1.el7
URL : https://github.com/mishoo/UglifyJS
Summary : JavaScript parser, mangler/compressor and beautifier toolkit
Description :
JavaScript parser, mangler/compressor and beautifier toolkit.
This package ships the uglifyjs command-line tool and a library suitable for
use within Node.js.
--------------------------------------------------------------------------------
Update Information:
Uglify-JS 3.16.1
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jun 17 2022 Mattias Ellert <mattias.ellert(a)physics.uu.se> - 3.16.1-1
- Update to 3.16.1
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2083888 - uglify-js-3.16.1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=2083888
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update uglify-js' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-2e985b428a
2022-06-26 00:33:12.938033
--------------------------------------------------------------------------------
Name : testcloud
Product : Fedora EPEL 9
Version : 0.8.0
Release : 1.el9
URL : https://pagure.io/testcloud
Summary : Tool for running cloud images locally
Description :
testcloud is a relatively simple system which is capable of booting images
designed for cloud systems on a local system with minimal configuration.
testcloud is designed to be (and remain) somewhat simple, trading fancy cloud
system features for ease of use and sanity in development.
--------------------------------------------------------------------------------
Update Information:
- Bump CentOS Stream versions - Build seed image with genisoimage (mpitt) -
Reduce libvirt dependencies (mpitt) - Drop libguestfs from Requires to Suggests
(mpitt) - util: except also requests.exceptions.JSONDecodeError -
_needs_legacy_net: try to guess based on image name with missing guestfs - add
coreos aarch64 support (lnie) - Allow to configure download progress verbosity
--------------------------------------------------------------------------------
ChangeLog:
* Fri Jun 24 2022 Frantisek Zatloukal <fzatlouk(a)redhat.com> - 0.8.0-1
- Bump CentOS Stream versions
- Build seed image with genisoimage (mpitt)
- Reduce libvirt dependencies (mpitt)
- Drop libguestfs from Requires to Suggests (mpitt)
- util: except also requests.exceptions.JSONDecodeError
- _needs_legacy_net: try to guess based on image name with missing guestfs
- add coreos aarch64 support (lnie)
- Allow to configure download progress verbosity
* Mon Jun 13 2022 Python Maint <python-maint(a)redhat.com> - 0.7.1-2
- Rebuilt for Python 3.11
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2093717 - Please lower or drop python3-libguestfs dependency
https://bugzilla.redhat.com/show_bug.cgi?id=2093717
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update testcloud' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-f05818d4da
2022-06-26 00:33:12.938022
--------------------------------------------------------------------------------
Name : golang-github-kballard-shellquote
Product : Fedora EPEL 9
Version : 0
Release : 0.20.20190629git95032a8.el9
URL : https://github.com/kballard/go-shellquote
Summary : Go utilities for performing shell-like word splitting/joining
Description :
Shellquote provides utilities for joining/splitting strings using sh's
word-splitting rules.
--------------------------------------------------------------------------------
Update Information:
golang-github-kballard-shellquote: provide epel9 package
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jan 20 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.20
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Thu Jul 22 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.19
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jan 26 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.18
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Sat Aug 1 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.17
- Second attempt - Rebuilt for
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Mon Jul 27 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.16
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jan 29 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2065848 - golang-github-kballard-shellquote: please provide epel9 package
https://bugzilla.redhat.com/show_bug.cgi?id=2065848
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update golang-github-kballard-shellquote' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2022-fd28f49e1a
2022-06-26 00:33:12.938012
--------------------------------------------------------------------------------
Name : golang-github-anmitsu-shlex
Product : Fedora EPEL 9
Version : 0
Release : 0.11.20200723git38f4b40.el9
URL : https://github.com/anmitsu/go-shlex
Summary : Library to make a lexical analyzer like Unix shell for Go
Description :
Package Shlex provides a simple lexical analysis like Unix shell.
--------------------------------------------------------------------------------
Update Information:
golang-github-anmitsu-shlex: provide epel9 package
--------------------------------------------------------------------------------
ChangeLog:
* Thu Jan 20 2022 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Thu Jul 22 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jan 26 2021 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Mon Jul 27 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Thu Jul 23 2020 Robert-Andr�� Mauchin <zebob.m(a)gmail.com> - 0-0.7.20200723git38f4b40
- Bump to commit 38f4b401e2be5955e3e00b843d96e3c406f5094d
* Tue Jan 28 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0-0.6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #2065847 - golang-github-anmitsu-shlex: please provide epel9 package
https://bugzilla.redhat.com/show_bug.cgi?id=2065847
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update golang-github-anmitsu-shlex' at the command line.
For more information, refer to "YUM", available at
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7\
/html/System_Administrators_Guide/ch-yum.html
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------