The following Fedora EPEL 7 Security updates need testing:
 Age  URL
 954  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-1087   
dokuwiki-0-0.24.20140929c.el7
 716  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2015-dac7ed832f   
mcollective-2.8.4-1.el7
 298  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2016-04bc9dd81d   
libbsd-0.8.3-1.el7
 196  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-d241156dfe   
mod_cluster-1.3.3-10.el7
 193  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-7ecb12e378   
python-XStatic-jquery-ui-1.12.0.1-1.el7
  28  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-e27758bd23   
libmspack-0.6-0.1.alpha.el7
  25  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-52b8147c68   
openvpn-auth-ldap-2.0.3-15.el7
  11  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-17b77b3268   
botan-1.10.17-1.el7
  11  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-3c06a7eecf   
nagios-4.3.4-3.el7
   9  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-9e6a789af9   
check-mk-1.2.8p26-1.el7
   4  https://bodhi.fedoraproject.org/updates/FEDORA-EPEL-2017-853d71e01b   
tnef-1.4.15-1.el7


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

    argbash-2.5.0-1.el7
    fedfind-3.6.4-1.el7
    gpaste-3.22.4-2.el7
    kobo-0.7.0-1.el7
    meta-test-family-0.7.4-3.el7
    python-structlog-17.2.0-1.el7
    python3-mysql-1.3.12-1.el7
    statsd-0.7.2-10.el7
    tio-1.25-1.el7
    yamllint-1.9.0-1.el7

Details about builds:


================================================================================
 argbash-2.5.0-1.el7 (FEDORA-EPEL-2017-938c06956c)
 Bash argument parsing code generator
--------------------------------------------------------------------------------
Update Information:

[argbash](https://argbash.io) =============================  [![Build
Status](https://travis-ci.org/matejak/argbash.svg)](https://travis-
ci.org/matejak/argbash) [![Documentation Status](https://readthedocs.org/project
s/argbash/badge/?version=latest)](https://readthedocs.org/projects/argbash/?badg
e=latest)  ![argbash logo](resources/logo/argbash.png)  * Do you write `Bash`
scripts that should accept arguments? * But they don't since arguments support
is a daunting task, because ... * `getopt` is discouraged, `getopts` doesn't
support long options, there is no widely-accepted `Bash` module to do the task
and some solutions don't work on all platforms (Linux, OSX, MSW)...  Give a
`Argbash` a try and stop being terrorized by those pesky arguments! With
Argbash, you will get:  * Fast, minimalistic declaration of arguments your
script expects (see below for supported argument types). * Scripts generated
from definitions once that can be used on all platforms that have `bash`. *
Definitions embedded in few lines of the script itself (so you can use `Argbash`
to regenerate the parsing part of your script easily). * Ability to re-use low-
level `Argbash`-aware scripts by wrapping them by higher-level `Argbash`-aware
ones conveniently, without duplicating code. * Easy installation (optional).
Just [grab a release](https://github.com/matejak/argbash/releases), unzip it, go
inside and run `cd resources && make install` (you may want to run `sudo make
install PREFIX=/usr` for a system-wide installation). *
[Documentation](http://argbash.readthedocs.org/en/latest/) and
[examples](resources/examples).  Make your existing script powered by `Argbash`
[in a couple of
minutes](http://argbash.readthedocs.io/en/latest/#generating-a-template).
Explore various Argbash flavours:  Flavour               | Target group -------
| ------------ [Argbash online](https://argbash.io/generate) | Use it if you
want to try Argbash without installing it and you have permanent access to the
Internet. [Argbash CLI](https://github.com/matejak/argbash/releases/tag/2.5.0) |
Install the package to have `argbash` ready locally all the time. [Argbash
Docker](https://hub.docker.com/r/matejak/argbash/) | Pretty much like Argbash
CLI, but you don't have to install it, you just download the image.   What it is
----------  Argbash is not a parsing library, but it is rather a code generator
that generates a bash library tailor-made for your script. It lets you to
describe arguments your script should take and then, you can generate the `bash`
parsing code. It stays in your script by default, but you can have it generated
to a separate file and let `Argbash` to include it in your script for you. In
any case, you won't need `Argbash` to run the script.  `Argbash` is very simple
to use and the generated code is relatively nice to read. Moreover, argument
definitions stay embedded in the script, so when you need to update the parsing
logic, you just re-run the `argbash` script on the already generated script.  So
by writing few comments to your script and running the Argbash's `bin/argbash`
over it, you will get a `bash` script with argument parsing. See the [simple
example source template](resources/examples/simple.m4) and [simple example
script](resources/examples/simple.sh) for the result. If you are not into long
reading, let `bin/argbash-init` generate the template for you.  Following
argument types are supported:  - Positional arguments (defaults supported,
possibiliy of fixed, variable or infinite number of arguments), - optional
arguments that take one value, - boolean optional arguments, - repeated (i.e.
non-overwriting) optional arguments, - incrementing (such as `--verbose`)
optional arguments and - action optional arguments (such as `--version`,
`--help`).  The utility has been inspired by Python's `argparse` and the
`shflags` project.  **[Read the docs (latest stable
version)](http://argbash.readthedocs.org/en/stable/) for more info**
Requirements ------------  - `bash` that can work with arrays (most likely `bash
>= 3.0`) (the only requirement for *users* - i.e. people that only execute
scripts and don't make them) - `autom4te` utility that can work with sets (part
of `autoconf >= 2.63` suite) - basic utilities s.a. `sed`, `grep`, `cat`,
`test`.
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #1430364 - Review Request: argbash - Bash argument parsing code 
generator
        https://bugzilla.redhat.com/show_bug.cgi?id=1430364
--------------------------------------------------------------------------------


================================================================================
 fedfind-3.6.4-1.el7 (FEDORA-EPEL-2017-c0be6372ac)
 Fedora compose and image finder
--------------------------------------------------------------------------------
Update Information:

This new release of fedfind fixes use of the `expected_images` property (and
hence `check_expected()` method) with modular composes. In 3.6.2 and earlier, it
caused a crash.
--------------------------------------------------------------------------------


================================================================================
 gpaste-3.22.4-2.el7 (FEDORA-EPEL-2017-cfc55bc900)
 Clipboard management system
--------------------------------------------------------------------------------
Update Information:

This update provides the latest maintained version of GPaste. It provides,
amongst several bug fixes, enhanced support for GNOME 3.22, as provided by RHEL
7.4.
--------------------------------------------------------------------------------


================================================================================
 kobo-0.7.0-1.el7 (FEDORA-EPEL-2017-aae46bec4f)
 Python modules for tools development
--------------------------------------------------------------------------------
Update Information:

New upstream release 0.7.0; supports python 3
--------------------------------------------------------------------------------


================================================================================
 meta-test-family-0.7.4-3.el7 (FEDORA-EPEL-2017-7421f7d69d)
 Tool to test components of a modular Fedora
--------------------------------------------------------------------------------
Update Information:

Fix EPEL dependencies  ----  Replacement with modularity-testing-framework
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #1477154 - Re-Review Request: meta-test-family - a tool to test 
components of a modular Fedora
        https://bugzilla.redhat.com/show_bug.cgi?id=1477154
--------------------------------------------------------------------------------


================================================================================
 python-structlog-17.2.0-1.el7 (FEDORA-EPEL-2017-348ffb56f0)
 Painless structural logging
--------------------------------------------------------------------------------
Update Information:

Update to 17.2.0
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #1502060 - structlog 17.2.0 is available
        https://bugzilla.redhat.com/show_bug.cgi?id=1502060
--------------------------------------------------------------------------------


================================================================================
 python3-mysql-1.3.12-1.el7 (FEDORA-EPEL-2017-ac50d5d324)
 An interface to MySQL
--------------------------------------------------------------------------------
Update Information:

New package in EPEL.
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #1502769 - Review Request: python3-mysql - An interface to MySQL
        https://bugzilla.redhat.com/show_bug.cgi?id=1502769
--------------------------------------------------------------------------------


================================================================================
 statsd-0.7.2-10.el7 (FEDORA-EPEL-2017-296c3acddd)
 A simple, lightweight network daemon to collect metrics over UDP
--------------------------------------------------------------------------------
Update Information:

Add "Wants=network.target" to unitfile RHBZ#1502746
--------------------------------------------------------------------------------
References:

  [ 1 ] Bug #1502746 - statsd can start before network and use 
localhost.localdomain as a hostname
        https://bugzilla.redhat.com/show_bug.cgi?id=1502746
--------------------------------------------------------------------------------


================================================================================
 tio-1.25-1.el7 (FEDORA-EPEL-2017-35ec1c0f1c)
 Simple TTY terminal I/O application
--------------------------------------------------------------------------------
Update Information:

tio v1.25 =========    * Fix error applying new stdout settings      On Fedora
26 tio will quit with the following error message:      "Error: Could not apply
new stdout settings (Invalid argument)"      In case of Fedora, it turns out
that the new stdout settings used are a bit too agressive because an empty
termios structure is used. To remedy this we reuse the existing stdout settings
and only reconfigure the specific options we need to make a "raw" stdout
configuration.    * Remove unused pkgconfig in configure    * Code cleanup
Remove unused variable.
--------------------------------------------------------------------------------


================================================================================
 yamllint-1.9.0-1.el7 (FEDORA-EPEL-2017-0b22be685a)
 A linter for YAML files
--------------------------------------------------------------------------------
Update Information:

Update to latest upstream version
--------------------------------------------------------------------------------
_______________________________________________
epel-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to