How to support python 3.8 from RHEL 8.2 in EPEL?
by Orion Poplawski
Folks -
Looks like RHEL 8.2 will have python 3.8 in addition to python 3.6. From
the 8.2 beta:
Red Hat Enterprise Linux 8 for x86_64 - AppStream Beta (RPMs)
Name Stream Profiles Summary
python27 2.7 [d][e] common [d] Python programming
language, version 2.7
python36 3.6 [d][e] build, common [d] Python programming
language, version 3.6
python38 3.8 [d][e] build, common [d] Python programming
language, version 3.8
Currently, %python_pkgversion is set to 3 in
/usr/lib/rpm/macros.d/macros.python-srpm from python-srpm-macros.
python3-devel is still provided only by python36-devel, so presumably all
EPEL8 python packages will continue to be built against python 3.6. But I
imagine that people will soon be asking for python 3.8 versions of EPEL
packages. How can we provide those? Does this have to be done in some
modular fashion - which seems to come back to the discussion of whether or not
every package has to become its own module or whether to group them together
somehow. Or since both python modules are "default" modules and we can
install both python36-devel and python38-devel at the same time, perhaps we
can define the python3_other* macros again for python38 and just go that way?
Thoughts?
--
Orion Poplawski
Manager of NWRA Technical Systems 720-772-5637
NWRA, Boulder/CoRA Office FAX: 303-415-9702
3380 Mitchell Lane orion(a)nwra.com
Boulder, CO 80301 https://www.nwra.com/
1 year, 2 months
gcc-gnat
by Erick Wittman
Hi EPEL developers.
I am using CentOS 8 and am using various packages in the EPEL
repository. I am interested in seeing gcc-gnat added to EPEL.
I cannot find a current Fedora maintainer listed for this package, but
it is available in Fedora (at least in version 32). Are there any
EPEL
maintainers who are interested in creating an EPEL version of this package?
Thank you
1 year, 10 months
Continuing playground discussion
by Troy Dawson
We were having a good discussion about epel8-playground in the
Steering Committee meeting this week. Since we ran out of time I'd
like to continue it via email.
Most everyone agreed that playground is currently a bit of a mess and
it's hard to explain to end users what it is for, or when to use it.
It was also agreed that we need to decide on a plan of "this is what
playground is for" and then work to setup/cleanup/document things.
There seemed to be two main opinions of what to set the plan to.
A) epel8-playground is meant for package development and testing for
major changes. We stop doing the "build on both epel8 and
epel8-playground", and epel8-playground packages only get built from
the epel8-playground dist-git branch.
B) epel8-playground is meant for future RHEL/CentOS testing, and thus
everything built in epel8-playground get's built off CentOS Stream.
We would continue the "build on both epel8 and epel8-playground" and
this would make sure packages would be able to build on the newer
RHEL.
Both of these plans would require epel8-playground cleanup, and
re-implementation. Both would require work. But the work would be
quite different with the different plans. So until we decide which
way to go, we don't know what to do.
Thoughts on which plan to choose? Or if there is something different?
Troy
2 years, 8 months
Re: Fedora 33 System-Wide Change proposal: CMake to do out-of-source builds
by Neal Gompa
On Tue, Jul 7, 2020 at 1:57 PM Orion Poplawski <orion(a)nwra.com> wrote:
>
> On 6/15/20 1:47 PM, Ben Cotton wrote:
> > https://fedoraproject.org/wiki/Changes/CMake_to_do_out-of-source_builds
> >
> > == Summary ==
> > <code>%cmake</code> macro will be adjusted (<code>-B</code> parameter)
> > to use separate build folder (already standardized
> > <code>%{_vpath_builddir}</code> macro). Additionally,
> > <code>%cmake_build</code>, <code>%cmake_install</code> and
> > <code>%ctest</code> macro will be created (and backported to the older
> > supported Fedora releases) to perform various operations that are
> > commonly used with CMake in a backend-agnostic (Makefiles, Ninja,
> > etc.) way.
> >
> > Packages that will stop building are trivial to fix and will be
> > adjusted either by maintainers or change owners.
> >
> > == Owner ==
> > * Name: [[User:ignatenkobrain|Igor Raits]], [[User:besser82|Björn
> > Esser]], [[User:ngompa|Neal Gompa]]
> > * Email: ignatenkobrain(a)fedoraproject.org, besser82(a)fedoraproject.org,
> > ngompa13(a)gmail.com
> >
> > == Detailed Description ==
> > Historically, software builds had a singular build configuration and
> > required running the build within the project root. Nowadays, there
> > are many build modes and options that can be configured in projects,
> > different build settings (e.g. compiler flags) / types (release,
> > debug) that can be applied and different tools that can be used to
> > actually execute builds (compilers like gcc/clang, build job
> > schedulers like make/ninja, and so on). Thus, CMake upstream strongly
> > discourages users of doing in-source builds and recommends doing
> > out-of-source builds.
> >
> > From <code>cmake.1</code>:
> >
> > <pre>
> > To maintain a pristine source tree, perform an out-of-source build by
> > using a separate dedicated build tree. An in-source build in which the
> > build tree is placed in the same directory as the source tree is also
> > supported, but discouraged.
> > </pre>
> >
> > The other part of the change is introduction of additional macros is
> > creation of set of macro that can build, install and run tests in a
> > backend-agnostic, vpath-aware (out-of-source, in-source) way.
> >
> > === Migration ===
> >
> > ==== <code>%cmake</code> + <code>%(make|ninja)_(build|install)</code> ====
> >
> > There are multiple paths to complete the migration:
> >
> > * Add <code>-C "%{_vpath_builddir}"</code> to the <code>%(make|ninja)_*</code>
> > * Replace <code>%(make|ninja)_build</code> and
> > <code>%(make|ninja)_install</code> with <code>%cmake_build</code> and
> > <code>%cmake_install</code> respectively
> > * Redefine vpath builddir <code>%global _vpath_builddir .</code> to
> > continue performing in-source builds (and optionally converting to the
> > <code>%cmake_*</code>)
> >
> > Depending on the package, one of these options may be used to adapt to
> > this change.
> >
> > ==== <code>%cmake -B builddir</code> +
> > <code>%(make|ninja)_(build|install) -C builddir</code> ====
> >
> > No changes are needed.
> >
> > == Benefit to Fedora ==
> > * Follow CMake upstream recommendations when building packages
> > * Brings Fedora package builds more in-line with how upstream projects
> > expect them to be built
> > * Improve compatibility with other RPM distributions that already do this
> > * Support backend-agnostic way of building CMake projects
> >
> > == Scope ==
> > * Proposal owners: Implement necessary macros, try to build packages
> > that <code>BuildRequires: cmake</code> in a side tag, analyze failures
> > and fix the relevant ones (introduced by this change).
> > * Other developers: While proposal owners will try to fix all affected
> > packages, there might be some cases where package is already FTBFS so
> > the fix can't be performed. Other package maintainers will have to fix
> > the issue themselves after they fix FTBFS.
> > * Release engineering: [https://pagure.io/releng/issue/9524 #9524]
> > * Policies and guidelines: CMake page will be adjusted to mention
> > newly created macros and the documentation about relevant VPATH macros
> > needs to be restructured a bit (they are already documented on the
> > Meson page, they need to be moved to the separate page and referenced
> > both from CMake and Meson page).
> > * Trademark approval: N/A (not needed for this Change)
> >
> > == Upgrade/compatibility impact ==
> > Existing packages can (and most likely will) become FTBFS, but
> > proposal owners will fix as many Fedora packages as possible. However
> > fixing third-party packages is not possible and out of scope.
> > Third-party packagers will need to adapt based on the recommendations
> > noted in this Change.
>
> What's the plan for EPEL8/7 compatibility?
>
I need to talk to EPEL folks about how to handle this. I'm not sure
exactly what strategy we should take here. I could override the macros
entirely with epel-rpm-macros, which is probably the easiest way to do
it.
--
真実はいつも一つ!/ Always, there's only one truth!
2 years, 9 months
Fedora EPEL 8 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 8 Security updates need testing:
Age URL
13 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-31b5963358 tor-0.4.3.6-1.el8
13 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-a0f28fffcf bashtop-0.9.24-1.el8
12 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-cf34e230c7 clamav-0.102.4-1.el8
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-0d4ceeda8e java-latest-openjdk-14.0.2.12-1.rolling.el8
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-cf43d780cc chromium-84.0.4147.89-1.el8
0 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-88b5647c18 radare2-4.5.0-1.el8
The following builds have been pushed to Fedora EPEL 8 updates-testing
fpc-3.2.0-1.el8
lazarus-2.0.10-1.el8
rpki-client-6.7p1-1.el8
Details about builds:
================================================================================
fpc-3.2.0-1.el8 (FEDORA-EPEL-2020-8d9e841a99)
Free Pascal Compiler
--------------------------------------------------------------------------------
Update Information:
Update FPC to 3.2.0 (the official release - no longer using SVN snapshots) and
build Lazarus 2.0.10
--------------------------------------------------------------------------------
ChangeLog:
* Sat Jun 27 2020 Artur Iwicki <fedora(a)svgames.pl> - 3.2.0-1
- Update to v3.2.0 (official release - no longer using SVN snapshots)
- Drop Patch3 (missing consts - merged upstream)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794634 - Adding fpc and lazarus to EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794634
--------------------------------------------------------------------------------
================================================================================
lazarus-2.0.10-1.el8 (FEDORA-EPEL-2020-8d9e841a99)
Lazarus Component Library and IDE for Freepascal
--------------------------------------------------------------------------------
Update Information:
Update FPC to 3.2.0 (the official release - no longer using SVN snapshots) and
build Lazarus 2.0.10
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794634 - Adding fpc and lazarus to EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794634
--------------------------------------------------------------------------------
================================================================================
rpki-client-6.7p1-1.el8 (FEDORA-EPEL-2020-2b702ad070)
OpenBSD RPKI validator
--------------------------------------------------------------------------------
Update Information:
* Security fix: Incorrect use of `EVP_PKEY_cmp` allowed an authentication
bypass
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Robert Scheck <robert(a)fedoraproject.org> 6.7p1-1
- Upgrade to 6.7p1 (#1861137)
* Wed Jul 29 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 6.7p0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1861137 - rpki-client-6.7p1 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1861137
--------------------------------------------------------------------------------
2 years, 10 months
Fedora EPEL 6 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 6 Security updates need testing:
Age URL
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-713ebad0a1 golang-1.13.14-1.el6
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-d1b24a2a25 snmptt-1.4.2-1.el6
The following builds have been pushed to Fedora EPEL 6 updates-testing
dmlite-1.14.0-3.el6
Details about builds:
================================================================================
dmlite-1.14.0-3.el6 (FEDORA-EPEL-2020-d9050ddf02)
Lcgdm grid data management and storage framework
--------------------------------------------------------------------------------
Update Information:
dmlite 1.14.0 ---- dmlite 1.14.0 ---- dmlite 1.14.0.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Jul 28 2020 Oliver Keeble <oliver.keeble(a)cern.ch> - 1.14.0-3
- New upstream release 1.14.0
--------------------------------------------------------------------------------
2 years, 10 months
Fedora EPEL 7 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 7 Security updates need testing:
Age URL
715 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2018-3c9292b62d condor-8.6.11-1.el7
455 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2019-bc0182548b bubblewrap-0.3.3-2.el7
164 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-fa8a2e97c6 python-waitress-1.4.3-1.el7
12 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-192ef0b5e1 hostapd-2.9-3.el7
12 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-3d8bba637d clamav-0.102.4-1.el7
9 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-2c80eb66b5 libASL-0.1.7-6.el7 matio-1.5.17-3.el7 openmeeg-2.4-0.4.rc4.el7
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-489c36a241 snmptt-1.4.2-1.el7
6 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-90cbb3a9ff golang-1.13.14-1.el7
5 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-452d014b82 java-latest-openjdk-14.0.2.12-1.rolling.el7
5 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-c9e7aa6a08 chromium-84.0.4147.89-1.el7
The following builds have been pushed to Fedora EPEL 7 updates-testing
bullet-2.82-3.el7
cekit-3.7.0-1.el7
ceres-solver-1.12.0-5.el7
dmlite-1.14.0-3.el7
fail2ban-0.11.1-9.el7.2
python-colcon-cmake-0.2.24-1.el7
python34-3.4.10-6.el7
Details about builds:
================================================================================
bullet-2.82-3.el7 (FEDORA-EPEL-2020-8af9097046)
3D Collision Detection and Rigid Body Dynamics Library
--------------------------------------------------------------------------------
Update Information:
Apply upstream patch for compiler warnings (rhbz#1856910)
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Rich Mattes <richmattes(a)gmail.com> - 2.82-3
- Apply upstream patch for compiler warnings (rhbz#1856910)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1856910 - Please update bullet in EPEL 7
https://bugzilla.redhat.com/show_bug.cgi?id=1856910
--------------------------------------------------------------------------------
================================================================================
cekit-3.7.0-1.el7 (FEDORA-EPEL-2020-1e7ebbaa0e)
Container image creation tool
--------------------------------------------------------------------------------
Update Information:
Release 3.7.0
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Marek Goldmann <mgoldman(a)redhat.com> - 3.7.0-1
- Release 3.7.0
* Mon Jul 27 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.6.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Miro Hron��ok <mhroncok(a)redhat.com> - 3.6.0-3
- Rebuilt for Python 3.9
* Tue Jan 28 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.6.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
ceres-solver-1.12.0-5.el7 (FEDORA-EPEL-2020-8acc2111eb)
A non-linear least squares minimizer
--------------------------------------------------------------------------------
Update Information:
Rebuild for eigen3-3.3.7
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Rich Mattes <richmattes(a)gmail.com> - 1.12.0-5
- Rebuild for eigen3-3.3.7
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1861564 - Please rebuild ceres-solver for Eigen3
https://bugzilla.redhat.com/show_bug.cgi?id=1861564
--------------------------------------------------------------------------------
================================================================================
dmlite-1.14.0-3.el7 (FEDORA-EPEL-2020-3d7350a059)
Lcgdm grid data management and storage framework
--------------------------------------------------------------------------------
Update Information:
dmlite 1.14.0
--------------------------------------------------------------------------------
ChangeLog:
* Tue Jul 28 2020 Oliver Keeble <oliver.keeble(a)cern.ch> - 1.14.0-3
- New upstream release 1.14.0
--------------------------------------------------------------------------------
================================================================================
fail2ban-0.11.1-9.el7.2 (FEDORA-EPEL-2020-ed5493877c)
Daemon to ban hosts that cause multiple authentication errors
--------------------------------------------------------------------------------
Update Information:
Update EPEL 7 to the latest release, 0.11.1.
--------------------------------------------------------------------------------
ChangeLog:
* Tue Jul 28 2020 Richard Shaw <hobbes1069(a)gmail.com> - 0.11.1-9.2
- Fix python2 requires for EPEL 7.
* Mon Jul 27 2020 Richard Shaw <hobbes1069(a)gmail.com> - 0.11.1-9
- Add conditonals back for EL 7 as it's being brought up to date.
- Add patch to deal with nftables not accepting ":" as a port separator.
* Mon Jul 27 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.11.1-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Miro Hron��ok <mhroncok(a)redhat.com> - 0.11.1-7
- Rebuilt for Python 3.9
* Thu Apr 16 2020 Richard Shaw <hobbes1069(a)gmail.com> - 0.11.1-6
- Change default firewalld backend from ipset to rich-rules as ipset causes
firewalld to use legacy iptables. Fixes RHBZ#1823746.
- Remove conditionals for EL versions less than 7.
* Thu Mar 19 2020 Richard Shaw <hobbes1069(a)gmail.com> - 0.11.1-5
- Update for Python 3.9.
* Wed Feb 26 2020 Orion Poplawski <orion(a)nwra.com> - 0.11.1-4
- Add SELinux policy
* Tue Jan 28 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 0.11.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1850816 - Manual entries are not persistant
https://bugzilla.redhat.com/show_bug.cgi?id=1850816
--------------------------------------------------------------------------------
================================================================================
python-colcon-cmake-0.2.24-1.el7 (FEDORA-EPEL-2020-3a34135212)
Extension for colcon to support CMake packages
--------------------------------------------------------------------------------
Update Information:
Update to the latest `colcon-cmake` release
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Scott K Logan <logans(a)cottsay.net> - 0.2.24-1
- Update to 0.2.24 (rhbz#1860172)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1860172 - python-colcon-cmake-0.2.24 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1860172
--------------------------------------------------------------------------------
================================================================================
python34-3.4.10-6.el7 (FEDORA-EPEL-2020-2a93add193)
Version 3 of the Python programming language aka Python 3000
--------------------------------------------------------------------------------
Update Information:
Fix CVE-2020-14422 and CVE-2019-20907 - CVE-2020-14422: DoS via inefficiency in
IPv{4,6}Interface classes - CVE-2019-20907: infinite loop in the tarfile module
via crafted TAR archive
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Petr Viktorin <pviktori(a)redhat.com> - 3.4.10-6
- Fix CVE-2020-14422 and CVE-2019-20907
Resolves: rhbz#1854926
Resolves: rhbz#1856481
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1854930 - CVE-2020-14422 python34: python: DoS via inefficiency in IPv{4,6}Interface classes [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=1854930
[ 2 ] Bug #1856483 - CVE-2019-20907 python34: python: infinite loop in the tarfile module via crafted TAR archive [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=1856483
--------------------------------------------------------------------------------
2 years, 10 months
Fedora EPEL 8 updates-testing report
by updates@fedoraproject.org
The following Fedora EPEL 8 Security updates need testing:
Age URL
13 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-31b5963358 tor-0.4.3.6-1.el8
13 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-a0f28fffcf bashtop-0.9.24-1.el8
12 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-cf34e230c7 clamav-0.102.4-1.el8
5 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-0d4ceeda8e java-latest-openjdk-14.0.2.12-1.rolling.el8
5 https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2020-cf43d780cc chromium-84.0.4147.89-1.el8
The following builds have been pushed to Fedora EPEL 8 updates-testing
aqbanking-6.1.4-1.el8
cekit-3.7.0-1.el8
ghc-8.2.2-68.3.el8
gnucash-4.1-1.el8
gnucash-docs-4.1-1.el8
golie-0.1.2-1.gitv0.1.2.el8
gwenhywfar-5.3.0-2.el8
ktoblzcheck-1.49-3.el8
libofx-0.9.13-4.el8
oval-graph-1.1.1-4.el8
perl-DateTime-Format-DateParse-0.05-24.el8
perl-XMLRPC-Lite-0.717-19.el8
python-colcon-cmake-0.2.24-1.el8
python-tree-format-0.1.2-10.el8
radare2-4.5.0-1.el8
tmt-0.20-1.el8
Details about builds:
================================================================================
aqbanking-6.1.4-1.el8 (FEDORA-EPEL-2020-b1c000c190)
A library for online banking functions and financial data import/export
--------------------------------------------------------------------------------
Update Information:
This is the initial build of GnuCash for EPEL 8, and is the latest upstream
version, 4.1.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794161 - Request to package gnucash for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794161
[ 2 ] Bug #1828052 - Please build gwenhywfar for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828052
[ 3 ] Bug #1828053 - Please build aqbanking for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828053
--------------------------------------------------------------------------------
================================================================================
cekit-3.7.0-1.el8 (FEDORA-EPEL-2020-02b3c13b6b)
Container image creation tool
--------------------------------------------------------------------------------
Update Information:
Release 3.7.0
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Marek Goldmann <mgoldman(a)redhat.com> - 3.7.0-1
- Release 3.7.0
* Mon Jul 27 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 3.6.0-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Tue May 26 2020 Miro Hron��ok <mhroncok(a)redhat.com> - 3.6.0-3
- Rebuilt for Python 3.9
--------------------------------------------------------------------------------
================================================================================
ghc-8.2.2-68.3.el8 (FEDORA-EPEL-2020-c24419cb8d)
Glasgow Haskell Compiler
--------------------------------------------------------------------------------
Update Information:
Rebuild the ghc from the RHEL 8 Buildroot Note this is not going to be the
final stable ghc version in EPEL8: there will also be modules.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
================================================================================
gnucash-4.1-1.el8 (FEDORA-EPEL-2020-b1c000c190)
Finance management application
--------------------------------------------------------------------------------
Update Information:
This is the initial build of GnuCash for EPEL 8, and is the latest upstream
version, 4.1.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794161 - Request to package gnucash for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794161
[ 2 ] Bug #1828052 - Please build gwenhywfar for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828052
[ 3 ] Bug #1828053 - Please build aqbanking for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828053
--------------------------------------------------------------------------------
================================================================================
gnucash-docs-4.1-1.el8 (FEDORA-EPEL-2020-b1c000c190)
Help files and documentation for the GnuCash personal finance manager
--------------------------------------------------------------------------------
Update Information:
This is the initial build of GnuCash for EPEL 8, and is the latest upstream
version, 4.1.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794161 - Request to package gnucash for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794161
[ 2 ] Bug #1828052 - Please build gwenhywfar for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828052
[ 3 ] Bug #1828053 - Please build aqbanking for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828053
--------------------------------------------------------------------------------
================================================================================
golie-0.1.2-1.gitv0.1.2.el8 (FEDORA-EPEL-2020-de3e986812)
A client/server implementation of ROLIE written in GO
--------------------------------------------------------------------------------
Update Information:
new version ---- Update to the latest upstram release
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
================================================================================
gwenhywfar-5.3.0-2.el8 (FEDORA-EPEL-2020-b1c000c190)
A multi-platform helper library for other libraries
--------------------------------------------------------------------------------
Update Information:
This is the initial build of GnuCash for EPEL 8, and is the latest upstream
version, 4.1.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794161 - Request to package gnucash for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794161
[ 2 ] Bug #1828052 - Please build gwenhywfar for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828052
[ 3 ] Bug #1828053 - Please build aqbanking for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828053
--------------------------------------------------------------------------------
================================================================================
ktoblzcheck-1.49-3.el8 (FEDORA-EPEL-2020-b1c000c190)
A library to check account numbers and bank codes of German banks
--------------------------------------------------------------------------------
Update Information:
This is the initial build of GnuCash for EPEL 8, and is the latest upstream
version, 4.1.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794161 - Request to package gnucash for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794161
[ 2 ] Bug #1828052 - Please build gwenhywfar for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828052
[ 3 ] Bug #1828053 - Please build aqbanking for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828053
--------------------------------------------------------------------------------
================================================================================
libofx-0.9.13-4.el8 (FEDORA-EPEL-2020-b1c000c190)
A library for supporting Open Financial Exchange (OFX)
--------------------------------------------------------------------------------
Update Information:
This is the initial build of GnuCash for EPEL 8, and is the latest upstream
version, 4.1.
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1794161 - Request to package gnucash for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1794161
[ 2 ] Bug #1828052 - Please build gwenhywfar for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828052
[ 3 ] Bug #1828053 - Please build aqbanking for EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1828053
--------------------------------------------------------------------------------
================================================================================
oval-graph-1.1.1-4.el8 (FEDORA-EPEL-2020-879de64812)
Tool for visualization of SCAP rule evaluation results
--------------------------------------------------------------------------------
Update Information:
Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
--------------------------------------------------------------------------------
ChangeLog:
* Tue Jul 28 2020 Fedora Release Engineering <releng(a)fedoraproject.org> - 1.1.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
--------------------------------------------------------------------------------
================================================================================
perl-DateTime-Format-DateParse-0.05-24.el8 (FEDORA-EPEL-2020-4e78eb6d88)
Parse Date::Parse compatible formats
--------------------------------------------------------------------------------
Update Information:
Add the package to EPEL 8
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1810831 - Please build an EPEL8 build for perl-DateTime-Format-DateParse
https://bugzilla.redhat.com/show_bug.cgi?id=1810831
--------------------------------------------------------------------------------
================================================================================
perl-XMLRPC-Lite-0.717-19.el8 (FEDORA-EPEL-2020-3a5d900fe6)
Client and server implementation of XML-RPC protocol
--------------------------------------------------------------------------------
Update Information:
Added the package to EPEL 8
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1853722 - Include perl-XMLRPC-Lite in EPEL 8
https://bugzilla.redhat.com/show_bug.cgi?id=1853722
--------------------------------------------------------------------------------
================================================================================
python-colcon-cmake-0.2.24-1.el8 (FEDORA-EPEL-2020-7e1c22960b)
Extension for colcon to support CMake packages
--------------------------------------------------------------------------------
Update Information:
Update to the latest `colcon-cmake` release
--------------------------------------------------------------------------------
ChangeLog:
* Wed Jul 29 2020 Scott K Logan <logans(a)cottsay.net> - 0.2.24-1
- Update to 0.2.24 (rhbz#1860172)
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1860172 - python-colcon-cmake-0.2.24 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1860172
--------------------------------------------------------------------------------
================================================================================
python-tree-format-0.1.2-10.el8 (FEDORA-EPEL-2020-8a9613e948)
Python library to generate nicely formatted trees, like the UNIX tree command
--------------------------------------------------------------------------------
Update Information:
new package python-tree-format
--------------------------------------------------------------------------------
ChangeLog:
--------------------------------------------------------------------------------
================================================================================
radare2-4.5.0-1.el8 (FEDORA-EPEL-2020-88b5647c18)
The reverse engineering framework
--------------------------------------------------------------------------------
Update Information:
Rebase to radare2-4.5.0
--------------------------------------------------------------------------------
ChangeLog:
* Mon Jul 20 2020 Riccardo Schirone <rschirone91(a)gmail.com> - 4.5.0-1
- Rebase to upstream version 4.5.0
* Fri May 8 2020 Riccardo Schirone <rschirone91(a)gmail.com> - 4.4.0-2
- Just re-build
* Mon May 4 2020 Riccardo Schirone <rschirone91(a)gmail.com> - 4.4.0-1
- Rebase to upstream version 4.4.0
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1859144 - CVE-2020-15121 radare2: malformed PDB file names in the PDB server path cause shell injection [epel-all]
https://bugzilla.redhat.com/show_bug.cgi?id=1859144
--------------------------------------------------------------------------------
================================================================================
tmt-0.20-1.el8 (FEDORA-EPEL-2020-905861e503)
Test Management Tool
--------------------------------------------------------------------------------
Update Information:
Libraries improvements, Guest cleanup, variables from files...
--------------------------------------------------------------------------------
ChangeLog:
* Tue Jul 28 2020 Petr ��pl��chal <psplicha(a)redhat.com> - 0.20-1
- Move libraries handling into a separate module
- Adjust loading variables from YAML files [#316]
- Support environment variables from YAML files
- Give a nice error for expired kerberos [fix #57]
- Merge Guest relocation and documentation [#307]
- Describe essential Guest methods in more detail
- Update test import story and documentation
- Merge extra-task as summary in test export [#304]
- Move default plan handling into a single method
- Move the Guest class from base to steps.provision
- Save root in run.yaml
- Document L1 metadata defined in the discover step
- Improve Makefile editing during test import
- Use extra-task as summary in test export
- Mention default methods in the step help message
- Handle invalid url when library provided as fmf id
- Allow library git clone to fail
--------------------------------------------------------------------------------
2 years, 10 months