--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2015-0307
2015-01-16 17:57:24
--------------------------------------------------------------------------------
Name : python-narcissus-hub
Product : Fedora EPEL 7
Version : 0.9.0.1
Release : 3.el7
URL : http://pypi.python.org/pypi/narcissus.hub
Summary : Hub components for Narcissus, realtime log visualization
Description :
This package contains the "hub" components for narcissus. Narcissus is a web
application that visualizes web server hits as they happen in real time.
Features:
* IP addresses converted to latitude/longitude, then streamed via
WebSockets to `polymaps <http://polymaps.org/>`_.
* Realtime graphs of what countries are downloading what content with `d3
<http://d3js.org>`_.
* `Ømq (zeromq) <http://www.zeromq.org/>`_ on the backend.
* **Fast**. No polling.
You can see a demo running live at http://narcissus.rc.rit.edu
It is visualizing the logs of http://mirror.rit.edu
--------------------------------------------------------------------------------
Update Information:
Branch for epel7.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-narcissus-hub' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0285
2015-01-15 16:35:22
--------------------------------------------------------------------------------
Name : python-geojson
Product : Fedora EPEL 7
Version : 1.0.1
Release : 4.el7
URL : http://pypi.python.org/pypi/geojson
Summary : Encoder/decoder for simple GIS features
Description :
Geojson provides geometry, feature, and collection classes, and supports
pickle-style dump and load of objects that provide the lab's Python geo
interface.
--------------------------------------------------------------------------------
Update Information:
Branch for epel7.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-geojson' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0233
2015-01-13 20:15:16
--------------------------------------------------------------------------------
Name : python-nine
Product : Fedora EPEL 7
Version : 0.3.4
Release : 4.el7
URL : http://pypi.python.org/pypi/nine
Summary : Python 2 / 3 compatibility, like six, but favouring Python 3
Description :
Let's write Python 3 right now!
When the best Python 2/Python 3 compatibility modules -- especially the
famous `*six* library invented by Benjamin Peterson
<https://pypi.python.org/pypi/six>`_ -- were created, they were written
from the point of view of a Python 2 programmer starting to grok Python 3.
When thou writeth Python, thou shalt write Python 3 and, just for a while,
ensure that the thing worketh on Python 2.7 and, possibly, even 2.6.
Just before Python 2 is finally phased out, thine codebase shall look more
like 3 than like 2.
nine facilitates this new point of view. You can write code that is as
3ish as possible while still supporting 2.6. Very comfortable for writing
new projects.
--------------------------------------------------------------------------------
Update Information:
Initial import.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1179804 - Review Request: python-nine - Python 2 / 3 compatibility, like six, but favouring Python 3
https://bugzilla.redhat.com/show_bug.cgi?id=1179804
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-nine' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0314
2015-01-16 17:57:39
--------------------------------------------------------------------------------
Name : python-pygeoip
Product : Fedora EPEL 7
Version : 0.2.6
Release : 5.el7
URL : http://pypi.python.org/pypi/pygeoip
Summary : Pure Python GeoIP API
Description :
Pure Python GeoIP API based on MaxMind's C-based Python API
but the code itself is ported from the Pure PHP GeoIP API.
Create your GeoIP instance with appropriate access flag. `STANDARD` reads
data from disk when needed, `MEMORY_CACHE` loads database into memory on
instantiation and `MMAP_CACHE` loads database into memory using mmap.
import pygeoip
gi = pygeoip.GeoIP('/usr/share/geoip/GeoIP.dat', pygeoip.MEMORY_CACHE)
Country lookup
>>> gi.country_code_by_name('google.com')
'US'
>>> gi.country_code_by_addr('64.233.161.99')
'US'
>>> gi.country_name_by_addr('64.233.161.99')
'United States'
City lookup
>>> gi = pygeoip.GeoIP('/usr/share/geoip/GeoLiteCity.dat')
>>> gi.record_by_addr('64.233.161.99')
{
'city': 'Mountain View',
'region_name': 'CA',
'area_code': 650,
'longitude': -122.0574,
'country_code3': 'USA',
'latitude': 37.419199999999989,
'postal_code': '94043',
'dma_code': 807,
'country_code': 'US',
'country_name': 'United States'
}
>>> gi.time_zone_by_addr('64.233.161.99')
'America/Los_Angeles'
For more information, check out the full API documentation at
http://packages.python.org/pygeoip.
--------------------------------------------------------------------------------
Update Information:
Branch for epel7.
Branch for epel7.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-pygeoip' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0238
2015-01-13 20:15:26
--------------------------------------------------------------------------------
Name : python-nine
Product : Fedora EPEL 6
Version : 0.3.4
Release : 4.el6
URL : http://pypi.python.org/pypi/nine
Summary : Python 2 / 3 compatibility, like six, but favouring Python 3
Description :
Let's write Python 3 right now!
When the best Python 2/Python 3 compatibility modules -- especially the
famous `*six* library invented by Benjamin Peterson
<https://pypi.python.org/pypi/six>`_ -- were created, they were written
from the point of view of a Python 2 programmer starting to grok Python 3.
When thou writeth Python, thou shalt write Python 3 and, just for a while,
ensure that the thing worketh on Python 2.7 and, possibly, even 2.6.
Just before Python 2 is finally phased out, thine codebase shall look more
like 3 than like 2.
nine facilitates this new point of view. You can write code that is as
3ish as possible while still supporting 2.6. Very comfortable for writing
new projects.
--------------------------------------------------------------------------------
Update Information:
Initial import.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1179804 - Review Request: python-nine - Python 2 / 3 compatibility, like six, but favouring Python 3
https://bugzilla.redhat.com/show_bug.cgi?id=1179804
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-nine' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0326
2015-01-16 17:58:09
--------------------------------------------------------------------------------
Name : golang-googlecode-go-decimal-inf
Product : Fedora EPEL 6
Version : 0
Release : 0.1.hg42ca6cd68aa9.el6
URL : https://speter.net/go/exp/math/dec/inf
Summary : Package implementing "infinite-precision" decimal arithmetic
Description :
Package inf (type inf.Dec) implements "infinite-precision" decimal arithmetic.
"Infinite precision" describes two characteristics: practically unlimited
precision for decimal number representation and no support for calculating
with any specific fixed precision.
Although there is no practical limit on precision,
inf.Dec can only represent finite decimals.
This package is currently in experimental stage and the API may change.
--------------------------------------------------------------------------------
Update Information:
First package for Fedora
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1181212 - Review Request: golang-googlecode-go-decimal-inf - Package implementing "infinite-precision" decimal arithmetic
https://bugzilla.redhat.com/show_bug.cgi?id=1181212
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update golang-googlecode-go-decimal-inf' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0310
2015-01-16 17:57:31
--------------------------------------------------------------------------------
Name : golang-github-imdario-mergo
Product : Fedora EPEL 6
Version : 0
Release : 0.1.git6ce7536.el6
URL : https://github.com/imdario/mergo
Summary : Merging Go structs and maps
Description :
Merging Go structs and maps
--------------------------------------------------------------------------------
Update Information:
First package for Fedora
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1181100 - Review Request: golang-github-imdario-mergo - Merging Go structs and maps
https://bugzilla.redhat.com/show_bug.cgi?id=1181100
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update golang-github-imdario-mergo' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0309
2015-01-16 17:57:29
--------------------------------------------------------------------------------
Name : php-ircmaxell-random-lib
Product : Fedora EPEL 7
Version : 1.1.0
Release : 1.el7
URL : https://github.com/ircmaxell/RandomLib
Summary : A Library For Generating Secure Random Numbers
Description :
A library for generating random numbers and strings of various strengths.
This library is useful in security contexts.
--------------------------------------------------------------------------------
Update Information:
Upstream doesn't provide any changelog.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update php-ircmaxell-random-lib' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0334
2015-01-17 18:04:56
--------------------------------------------------------------------------------
Name : python-dbusmock
Product : Fedora EPEL 7
Version : 0.11.1
Release : 1.el7
URL : http://pypi.python.org/pypi/python-dbusmock
Summary : Mock D-Bus objects
Description :
With this program/Python library you can easily create mock objects on
D-Bus. This is useful for writing tests for software which talks to
D-Bus services such as upower, systemd, ConsoleKit, gnome-session or
others, and it is hard (or impossible without root privileges) to set
the state of the real services to what you expect in your tests.
--------------------------------------------------------------------------------
Update Information:
New package in EPEL7 branch
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-dbusmock' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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-2015-0332
2015-01-17 18:04:52
--------------------------------------------------------------------------------
Name : perl-Data-Munge
Product : Fedora EPEL 7
Version : 0.093
Release : 1.el7
URL : http://search.cpan.org/dist/Data-Munge/
Summary : Utility functions for working with perl data structures and code references
Description :
This module defines a few generally useful utility functions that process
perl data structures and code references.
--------------------------------------------------------------------------------
Update Information:
Fix typo in synopsis
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #1167705 - perl-Data-Munge-0.093 is available
https://bugzilla.redhat.com/show_bug.cgi?id=1167705
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update perl-Data-Munge' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
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
--------------------------------------------------------------------------------