Fedora EPEL 7 updates-testing report

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The following Fedora EPEL 7 Security updates need testing:
 Age  URL
   5  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-dadb629ab0   xrdp-0.9.18-5.el7
   3  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-f762e66b0d   nodejs-16.14.0-2.el7
   0  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2022-93154093e5   radare2-5.6.0-2.el7


The following builds have been pushed to Fedora EPEL 7 updates-testing

    AMF-1.4.23-2.el7
    colordiff-1.0.20-1.el7
    tcpreplay-4.4.1-1.el7
    tio-1.33-1.el7

Details about builds:


================================================================================
 AMF-1.4.23-2.el7 (FEDORA-EPEL-2022-5d0ac4be1b)
 Advanced Media Framework (AMF) SDK
--------------------------------------------------------------------------------
Update Information:

New package.
--------------------------------------------------------------------------------
ChangeLog:

* Sun Feb 13 2022 Simone Caronni <negativo17@xxxxxxxxx> - 1.4.23-2
- Remove Thirdparty folder from sources and provide script to recreate tarball.
- Remove duplicated docs in samples subpackage.
* Thu Feb 10 2022 Simone Caronni <negativo17@xxxxxxxxx> - 1.4.23-1
- First build.
--------------------------------------------------------------------------------


================================================================================
 colordiff-1.0.20-1.el7 (FEDORA-EPEL-2022-55591145ac)
 Color terminal highlighter for diff files
--------------------------------------------------------------------------------
Update Information:

Update to new version 1.0.20. From the changelog:  >  Some improvements to
reading command-line options and Makefile portability.  Support for Windows
configurations, thanks Rafael Kitover; and for Octopus git/merge thanks Kiyoshi
Ohgishi.  See also
https://github.com/daveewart/colordiff/compare/v1.0.19...v1.0.20
--------------------------------------------------------------------------------
ChangeLog:

* Sun Feb 13 2022 Richard Fearn <richardfearn@xxxxxxxxx> - 1.0.20-1
- Update to 1.0.20 (#2053847)
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #2053847 - colordiff-1.0.20 is available
        https://bugzilla.redhat.com/show_bug.cgi?id=2053847
--------------------------------------------------------------------------------


================================================================================
 tcpreplay-4.4.1-1.el7 (FEDORA-EPEL-2022-7e780013dd)
 Replay captured network traffic
--------------------------------------------------------------------------------
Update Information:

This is Tcpreplay suite 4.4.1  This release contains bug fixes only. What's
Changed   - Bug #708 fix support for feeding PCAP files from STDIN by @fklassen
in #709  - Bug #705 fix Debian/kfreebsd build by @fklassen in #707  - Bug #704
fix typos by @fklassen in #710  - Bug #703 safeguard against corrupt packet
lengths in checksum functions by @f  - Bug #702 fix double free in Juniper DLT
by @fklassen in #711
--------------------------------------------------------------------------------
ChangeLog:

* Sun Feb 13 2022 Bojan Smojver <bojan@rexursive com> - 4.4.1-1
- bump up to 4.4.1
--------------------------------------------------------------------------------


================================================================================
 tio-1.33-1.el7 (FEDORA-EPEL-2022-f13197da71)
 Simple TTY terminal I/O application
--------------------------------------------------------------------------------
Update Information:

# tio v1.33    * Show auto connect status in show configuration    * Use
`#pragma once` in all headers    * Improve printed output      Get rid of
inconsistencies in the printed output (error printing, colors, etc.).
Prepare for user configurable color.    * Rename option `-i` to `-L`    *
Shorten timestamp     * Shorten timestamp description      We do not need the
date part of the timestamp. It simply takes up too much precious line space. In
case of logging to file, one can easily conclude the date from the file date
information.    * Replace Travis with circleCI    * Replace autotools with meson
To introduce much simpler build configuration which is also easier to maintain.
* Add list serial devices feature      For convenience, add a `--list-devices`
option which lists the available serial devices.    * Cleanup: Use dot notation
for default options struct    * Update `AUTHORS`    * Add command to show
version      The key sequence ctrl-t v will now show the version of tio.    *
Align format of timestamps     * Add Sylvain as official co-maintainer    * Add
`-t` option description for time stamping.    * Add description for time
stamping.    * Added timestamps in log file if enabled.    * Refine timestamps
with milliseconds and ISO-8601 format.      * Show milliseconds too in the
timestamp and log file     * Change timestamp format to ISO-8601.    * Output
newline on stdout with hex print mode      The timestamp will always be printed
at the beginning of line:      ```     [10:25:56] Switched to hexadecimal mode
0d 0a 0d [10:25:57] 41 43 52 4e 3a 5c 3e 0d 0a 0d [10:25:58] 41     ```      is
changed to:      ```     [12:34:56] 45 72 72 6f 72 3a 20 49 6e 76 61 6c 69 64 20
[12:34:56] 41 43 52 4e 3a 5c 3e     [12:34:56] 41 43 52 4e 3a 5c 3e
[12:34:57] 41 43 52 4e 3a 5c 3e 6c 73     ```   * Make comparison POSIX
compliant      String comparison with `==` is not POSIX compliant and can fail
with e.g. dash.    * Add bash completion of tty devices.    * Add
`-t`/`--timestamp` to bash completion script.    * Local echo: show character by
character even if stdout buffered.    * Show error when failing to open a tty
* Fix out of tree builds      Out of tree builds are currently broken because
`$(top_srcdir)src/include` is not in the search path. In tree builds are working
because `autconf` add `$(top_builddir)/src/include` to the search path for the
generated `config.h`. As `$(top_builddir)` and `$(top_srcdir)` are identical
during in tree builds the search path still end up beeing somehow correct.
To fix this add `-I$(srcdir)/include` to the `CPPFLAGS` in `Makefile.am`.    *
src/setspeed2.c: fix redefinition of termio      Include `ioctls.h` and
`termbits.h` from asm-generic instead of asm to avoid build failures.    * Exit
if output speed cannot be set.    * `fflush()` after `putchar()` for print_hex
and print_normal      In order for local echo to work properly, we have to
either call `fflush(stdout)` after every character or just disable line
buffering.     This change calls `fflush()` after `putchar()`.    * Disable line
buffering in stdout      In order for local echo to work properly, we have to
either call `fflush(stdout)` after every character or just disable line
buffering.      This change uses `setbuf(stdout, NULL)` to do the latter.    *
Don't show line state if ioctl failed    * Add serial lines manual control    *
Flush every local echo char      Flush stdout at every char in case it happens
to be buffered.    * Newline: handle booth `NL` and `CR`      Flag `ONLCRNL`
expects code `\n` after press Enter, but on some systems `\r` is send instead.
--------------------------------------------------------------------------------
ChangeLog:

* Sun Feb 13 2022 Robert Scheck <robert@xxxxxxxxxxxxxxxxx> 1.33-1
- Upgrade to 1.33 (#2053967)
* Sat Jan 22 2022 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.32-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.32-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Wed Jan 27 2021 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.32-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Wed Jul 29 2020 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.32-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jan 31 2020 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.32-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sat Jul 27 2019 Fedora Release Engineering <releng@xxxxxxxxxxxxxxxxx> - 1.32-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #2053967 - tio-1.33 is available
        https://bugzilla.redhat.com/show_bug.cgi?id=2053967
--------------------------------------------------------------------------------

_______________________________________________
epel-devel mailing list -- epel-devel@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to epel-devel-leave@xxxxxxxxxxxxxxxxxxxxxxx
Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: https://lists.fedoraproject.org/archives/list/epel-devel@xxxxxxxxxxxxxxxxxxxxxxx
Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure




[Index of Archives]     [Fedora Announce]     [Fedora News]     [Fedora Cloud]     [Fedora Advisory Board]     [Fedora Education]     [Fedora Security]     [Fedora Scitech]     [Fedora Robotics]     [Fedora Maintainers]     [Fedora Infrastructure]     [Fedora Websites]     [Anaconda Devel]     [Fedora Devel Java]     [Fedora Legacy]     [Fedora Desktop]     [Fedora Fonts]     [ATA RAID]     [Fedora Marketing]     [Fedora Management Tools]     [Fedora Mentors]     [Fedora Package Announce]     [SSH]     [Fedora Package Review]     [Fedora R Devel]     [Fedora PHP Devel]     [Kickstart]     [Fedora Music]     [Fedora Packaging]     [Centos]     [Fedora SELinux]     [Fedora Legal]     [Fedora Kernel]     [Fedora QA]     [Fedora Triage]     [Fedora OCaml]     [Coolkey]     [Virtualization Tools]     [ET Management Tools]     [Yum Users]     [Tux]     [Yosemite News]     [Linux Apps]     [Gnome Users]     [KDE Users]     [Fedora Tools]     [Fedora Art]     [Fedora Docs]     [Maemo Users]     [Asterisk PBX]     [Fedora Sparc]     [Fedora Universal Network Connector]     [Fedora ARM]

  Powered by Linux