gentoo.git
7 years agoapp-vim/vimoutliner: clean up old.
Patrice Clement [Sun, 28 May 2017 19:52:16 +0000 (21:52 +0200)]
app-vim/vimoutliner: clean up old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

7 years agoapp-vim/vimoutliner: stable for amd64. mark stable for the remaining arches using...
Patrice Clement [Sun, 28 May 2017 19:51:34 +0000 (21:51 +0200)]
app-vim/vimoutliner: stable for amd64. mark stable for the remaining arches using the ALLARCHES policy.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

7 years agoapp-vim/vimclojure: version bump.
Patrice Clement [Sun, 28 May 2017 19:48:46 +0000 (21:48 +0200)]
app-vim/vimclojure: version bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

7 years agodev-perl/Net-DNS: Bump to version 1.100.0
Kent Fredric [Mon, 29 May 2017 23:24:14 +0000 (11:24 +1200)]
dev-perl/Net-DNS: Bump to version 1.100.0

Upstream:
- Fix issues with Win32 support
- Restore support for EBCDIC character encoding

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agokde-frameworks/kio: Fix patch name
Andreas Sturmlechner [Mon, 29 May 2017 23:16:47 +0000 (01:16 +0200)]
kde-frameworks/kio: Fix patch name

Package-Manager: Portage-2.3.5, Repoman-2.3.1

7 years agokde-frameworks/kio: Drop 5.34.0-r1
Andreas Sturmlechner [Mon, 29 May 2017 22:58:12 +0000 (00:58 +0200)]
kde-frameworks/kio: Drop 5.34.0-r1

Package-Manager: Portage-2.3.5, Repoman-2.3.1

7 years agokde-frameworks/kio: Fix kioclient5 exec with PIE binaries
Andreas Sturmlechner [Mon, 29 May 2017 22:57:36 +0000 (00:57 +0200)]
kde-frameworks/kio: Fix kioclient5 exec with PIE binaries

See also: https://bugs.kde.org/show_bug.cgi?id=350018

Package-Manager: Portage-2.3.5, Repoman-2.3.1

7 years agoxfce-extra/tumbler: Bump to 0.1.92.1
Michał Górny [Mon, 29 May 2017 21:13:22 +0000 (23:13 +0200)]
xfce-extra/tumbler: Bump to 0.1.92.1

7 years agopython-r1.eclass: Add python_gen_any_dep, to create any-of deps
Michał Górny [Fri, 19 May 2017 18:35:43 +0000 (20:35 +0200)]
python-r1.eclass: Add python_gen_any_dep, to create any-of deps

Add a python_gen_any_dep() function similar to the one in python-any-r1
to facilitate creating any-of dependencies for the new python_setup
syntax.

7 years agopython-r1.eclass: Support python_check_deps() in python_setup
Michał Górny [Fri, 19 May 2017 18:17:57 +0000 (20:17 +0200)]
python-r1.eclass: Support python_check_deps() in python_setup

Provide an alternate mode for python_setup() that behaves similarly to
python-any-r1 eclass. If python_check_deps() function is declared
by the ebuild, the python_setup logic switches to accepting any
implementation that is in PYTHON_COMPAT, installed and satisfies
python_check_deps() independently of USE flags.

This new logic makes it possible to replace some of the existing
REQUIRED_USE constraints for build-time dependencies with more friendly
any-of dependencies. For example, if a package supports both Python 2 &
Python 3 but has a purely Python 2 build-time dependency (e.g. for
building documentation) we had to force Python 2 being enabled via
REQUIRED_USE. Using python_check_deps() with appropriate any-of
dependency, we can use Python 2 for this task without actually forcing
the user to change USE flags or install the package for Python 2.

7 years agopython-r1.eclass: Inline implementation loop logic into python_setup
Michał Górny [Fri, 19 May 2017 17:23:22 +0000 (19:23 +0200)]
python-r1.eclass: Inline implementation loop logic into python_setup

Inline the logic needed to iterate over implementations directly into
python_setup instead of using python_foreach_impl. This is mostly NFC,
except that we iterate in reverse order now -- that is, we start at
the newest implementation and stop at the first one that works for us.
Previously we (implicitly) started at the oldest implementation, checked
all implementation and used the last one (i.e. the newest) that worked.

More importantly, the new code makes it possible to alter the logic more
easily and avoid relying on implementation of python_foreach_impl().

7 years agopython-r1.eclass: Move PYTHON_COMPAT_OVERRIDE warning into flag check
Michał Górny [Fri, 19 May 2017 16:11:48 +0000 (18:11 +0200)]
python-r1.eclass: Move PYTHON_COMPAT_OVERRIDE warning into flag check

Move the PYTHON_COMPAT_OVERRIDE warning from _python_obtain_impls()
to _python_validate_useflags(). Since the latter function is the only
point where the former is called, this is a purely cosmetic change at
the moment. However, it makes it possible to reuse the warning in
additional places without the necessity of setting MULTIBUILD_VARIANTS.

7 years agodistutils-r1.eclass: Reuse python_setup for common phases
Michał Górny [Sat, 20 May 2017 09:48:29 +0000 (11:48 +0200)]
distutils-r1.eclass: Reuse python_setup for common phases

Rewrite the python_*_all() phase running code to reuse python_setup
instead of hacking on top of python_foreach_impl. The resulting code
is a bit simpler but most importantly, it avoids duplication of code
from python-r1 and ensures that distutils-r1 common phases are directly
altered by changes in python_setup.

The code still needs to reimplement some of the internals. However, it
is mostly limited to code specific to distutils-r1, and should be more
maintainable.

7 years agodistutils-r1.eclass: Remove QA-warning for DISTUTILS_NO_PARALLEL_BUILD
Michał Górny [Sat, 20 May 2017 11:42:59 +0000 (13:42 +0200)]
distutils-r1.eclass: Remove QA-warning for DISTUTILS_NO_PARALLEL_BUILD

The variable was deprecated and the warning put in place in Dec 2014. It
is no longer used in any ebuild in ::gentoo.

7 years agopython-r1.eclass: Remove deprecated python_parallel_foreach_impl
Michał Górny [Sat, 20 May 2017 11:39:11 +0000 (13:39 +0200)]
python-r1.eclass: Remove deprecated python_parallel_foreach_impl

The function was (verbosely) deprecated in Dec 2014, and banned since
EAPI 6. It is no longer used by any ebuild in ::gentoo.

7 years agopython-utils-r1.eclass: _python_impl_matches, handle both forms of impl
Michał Górny [Sat, 20 May 2017 07:04:06 +0000 (09:04 +0200)]
python-utils-r1.eclass: _python_impl_matches, handle both forms of impl

Make the pattern matching code in _python_impl_matches() more lax,
allowing (accidental) mixing of PYTHON_COMPAT-style values with
EPYTHON-style values. This is trivial to do, and solves the problem
introduced by complexity-by-limitation of other eclasses -- where
patterns for dependency strings are using PYTHON_COMPAT syntax,
and patterns for python_setup are using EPYTHON syntax.

7 years agodistutils-r1.eclass: Use _python_impl_matches()
Michał Górny [Sat, 20 May 2017 06:59:05 +0000 (08:59 +0200)]
distutils-r1.eclass: Use _python_impl_matches()

Update the missed occurence of pattern matching with the new framework.

7 years agopython-r1.eclass: python_setup, add REQUIRED_USE to the example
Michał Górny [Fri, 19 May 2017 18:34:09 +0000 (20:34 +0200)]
python-r1.eclass: python_setup, add REQUIRED_USE to the example

7 years agopython-any-r1.eclass: python_gen_any_dep, add missing 'local i'
Michał Górny [Fri, 19 May 2017 18:32:05 +0000 (20:32 +0200)]
python-any-r1.eclass: python_gen_any_dep, add missing 'local i'

7 years agosys-apps/systemd: use meson.eclass
Mike Gilbert [Mon, 29 May 2017 20:42:22 +0000 (16:42 -0400)]
sys-apps/systemd: use meson.eclass

Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69

7 years agopackage.mask: Mask app-shells/z for removal
Amadeusz Żołnowski [Mon, 29 May 2017 20:36:34 +0000 (21:36 +0100)]
package.mask: Mask app-shells/z for removal

7 years agodev-libs/appstream-glib: bump to 0.6.13
Mart Raudsepp [Mon, 29 May 2017 20:10:26 +0000 (23:10 +0300)]
dev-libs/appstream-glib: bump to 0.6.13

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agodev-perl/MooseX-Role-Parameterized: Bump to version 1.100.0
Kent Fredric [Mon, 29 May 2017 20:09:08 +0000 (08:09 +1200)]
dev-perl/MooseX-Role-Parameterized: Bump to version 1.100.0

- EAPI6
- Parallel Tests

Upstream:
- Make names of pseudo-anonymous generated roles read similar to
  parameterized role name for better debug output
- Add stub node MooseX::Role::Parameterised for ease of discovery

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agonet-libs/libmicrohttpd: version bump to 0.9.55
Anthony G. Basile [Mon, 29 May 2017 20:04:34 +0000 (16:04 -0400)]
net-libs/libmicrohttpd: version bump to 0.9.55

Package-Manager: Portage-2.3.5, Repoman-2.3.1

7 years agomedia-gfx/valentina: add missing inherit for epatch
Davide Pesavento [Mon, 29 May 2017 20:03:45 +0000 (22:03 +0200)]
media-gfx/valentina: add missing inherit for epatch

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-perl/Moose: Bump to version 2.200.500
Kent Fredric [Mon, 29 May 2017 19:52:04 +0000 (07:52 +1200)]
dev-perl/Moose: Bump to version 2.200.500

Upstream:
- Require newer Test::More

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agoqmake-utils.eclass: restore inherit eutils for EAPI < 6
Davide Pesavento [Mon, 29 May 2017 19:44:20 +0000 (21:44 +0200)]
qmake-utils.eclass: restore inherit eutils for EAPI < 6

Needed for in_iuse().
Amends 2340956cb0c43c86e039829712bbed6eae30fb93.

7 years agodev-perl/Mojolicious: Bump to version 7.310.0
Kent Fredric [Mon, 29 May 2017 19:17:14 +0000 (07:17 +1200)]
dev-perl/Mojolicious: Bump to version 7.310.0

Upstream:
- Remove many previously advertised deprecated functions/interfaces
- Fix app generator command where config file name was not based on
  application name

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agodev-libs/glib: Update license to LGPL-2.1+
Mart Raudsepp [Mon, 29 May 2017 19:13:29 +0000 (22:13 +0300)]
dev-libs/glib: Update license to LGPL-2.1+

Upstream glib is converting COPYING to LGPL-2.1+ for next major
release, but meanwhile various individual files were already
claiming 2.1+, though some interpretation says COPYING is the
aggregate license.
Just pre-emptively change from LGPL-2+ to LGPL-2.1+ for us to
be on the safe side and not forget to do it later

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agoapp-emulation/diskimage-builder: bup 2.5.0
Matthew Thode [Mon, 29 May 2017 19:11:27 +0000 (14:11 -0500)]
app-emulation/diskimage-builder: bup 2.5.0

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agosys-libs/cracklib: fix test phase
Mike Gilbert [Mon, 29 May 2017 18:44:21 +0000 (14:44 -0400)]
sys-libs/cracklib: fix test phase

nosetests was used for no reason. Replace with unittest, which requires
no external dependencies.

The test code was loading libcrack.so from the system libdir rather
than the freshly build library.

Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69

7 years agosys-libs/cracklib: enable python3 support
Mike Gilbert [Mon, 29 May 2017 18:23:07 +0000 (14:23 -0400)]
sys-libs/cracklib: enable python3 support

According to NEWS, python3 has been supported since v2.8.19.

Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69

7 years agodev-perl/MIME-Base32: Bump to version 1.303.0
Kent Fredric [Mon, 29 May 2017 17:42:33 +0000 (05:42 +1200)]
dev-perl/MIME-Base32: Bump to version 1.303.0

- EAPI6
- Tests enabled

Upstream:
- Make decoding case insensitive

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agosys-libs/cracklib: make python optional again
Mike Gilbert [Mon, 29 May 2017 18:09:20 +0000 (14:09 -0400)]
sys-libs/cracklib: make python optional again

Package-Manager: Portage-2.3.6_p1, Repoman-2.3.2_p69

7 years agodev-python/pyro: Remove myself from maintainers
Amadeusz Żołnowski [Mon, 29 May 2017 17:52:00 +0000 (18:52 +0100)]
dev-python/pyro: Remove myself from maintainers

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-im/ejabberd: Create directory for PID file
Amadeusz Żołnowski [Mon, 29 May 2017 17:35:05 +0000 (18:35 +0100)]
net-im/ejabberd: Create directory for PID file

And change /var/lock/... to /run/lock/...

Gentoo-Bug: 602236
Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosys-kernel/dracut: use pkg-config at runtime for systemd
Mike Gilbert [Wed, 3 May 2017 19:32:32 +0000 (15:32 -0400)]
sys-kernel/dracut: use pkg-config at runtime for systemd

sys-apps/systemd may be moving from /usr/lib/systemd to /lib/systemd
in a future release. dracut will automatically call pkg-config at run
time if these paths are not in the config file.

Package-Manager: Portage-2.3.5_p31, Repoman-2.3.2_p61

7 years agosys-apps/iucode_tool: version bump to 2.1.2
Ulrich Réale [Sun, 21 May 2017 06:01:39 +0000 (10:01 +0400)]
sys-apps/iucode_tool: version bump to 2.1.2

Package-Manager: Portage-2.3.5, Repoman-2.3.1
(cherry picked from commit 42842402404cfd04e8973185de57834cfb617870)
Fixes: https://github.com/gentoo/gentoo/pull/4698
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
7 years agokde-plasma/plasma-desktop: Drop old
Andreas Sturmlechner [Mon, 29 May 2017 17:07:54 +0000 (19:07 +0200)]
kde-plasma/plasma-desktop: Drop old

Package-Manager: Portage-2.3.5, Repoman-2.3.1

7 years agokde-plasma/plasma-desktop: 5.8.7.1 version bump for critical bugfix
Andreas Sturmlechner [Mon, 29 May 2017 17:07:01 +0000 (19:07 +0200)]
kde-plasma/plasma-desktop: 5.8.7.1 version bump for critical bugfix

Package-Manager: Portage-2.3.5, Repoman-2.3.1

7 years agodev-perl/MCE: Bump to version 1.829.0
Kent Fredric [Mon, 29 May 2017 16:58:36 +0000 (04:58 +1200)]
dev-perl/MCE: Bump to version 1.829.0

Upstream:
- Reduce memory consumption
- Disable Queue barriers on Windows
- Fix tmp_file script path in ::Flock
- Use posix_exit for Curses and Prima
- Allow hashes as input_data for Core, Flow, Loop & Step
- Improve IPC and signal handling
- Make tmp_dir and sess_dir on demand.
- Load Fcntl, File::Path and Symbol on demand

Package-Manager: Portage-2.3.5, Repoman-2.3.2

7 years agosys-process/iotop: Support newer python
Pacho Ramos [Mon, 29 May 2017 16:33:53 +0000 (18:33 +0200)]
sys-process/iotop: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosys-libs/libapparmor: Support newer python
Pacho Ramos [Mon, 29 May 2017 16:28:07 +0000 (18:28 +0200)]
sys-libs/libapparmor: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosys-block/blocks: Support newer python
Pacho Ramos [Mon, 29 May 2017 15:52:26 +0000 (17:52 +0200)]
sys-block/blocks: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosci-physics/lhapdf: Support newer python
Pacho Ramos [Mon, 29 May 2017 15:36:51 +0000 (17:36 +0200)]
sci-physics/lhapdf: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosci-libs/libsigrokdecode: Support newer python
Pacho Ramos [Mon, 29 May 2017 15:11:50 +0000 (17:11 +0200)]
sci-libs/libsigrokdecode: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosci-libs/Shapely: Support newer python
Pacho Ramos [Mon, 29 May 2017 15:10:38 +0000 (17:10 +0200)]
sci-libs/Shapely: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosci-geosciences/gpxpy: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:59:56 +0000 (16:59 +0200)]
sci-geosciences/gpxpy: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agosci-chemistry/nmrglue: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:59:01 +0000 (16:59 +0200)]
sci-chemistry/nmrglue: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-misc/httpie: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:58:01 +0000 (16:58 +0200)]
net-misc/httpie: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-libs/pacparser: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:43:15 +0000 (16:43 +0200)]
net-libs/pacparser: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-dns/bind: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:35:43 +0000 (16:35 +0200)]
net-dns/bind: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agowww-client/ripe-atlas-cousteau: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:27:38 +0000 (16:27 +0200)]
www-client/ripe-atlas-cousteau: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-libs/ripe-atlas-sagan: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:26:01 +0000 (16:26 +0200)]
net-libs/ripe-atlas-sagan: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-analyzer/pypacker: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:22:16 +0000 (16:22 +0200)]
net-analyzer/pypacker: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agognome-extra/cinnamon-screensaver: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:18:56 +0000 (16:18 +0200)]
gnome-extra/cinnamon-screensaver: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/send2trash: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:16:11 +0000 (16:16 +0200)]
dev-python/send2trash: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/zc-buildout: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:12:12 +0000 (16:12 +0200)]
dev-python/zc-buildout: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/yubiotp: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:10:20 +0000 (16:10 +0200)]
dev-python/yubiotp: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/twilio: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:08:00 +0000 (16:08 +0200)]
dev-python/twilio: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/tweepy: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:06:37 +0000 (16:06 +0200)]
dev-python/tweepy: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/tpg: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:03:46 +0000 (16:03 +0200)]
dev-python/tpg: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/testify: Support newer python
Pacho Ramos [Mon, 29 May 2017 14:00:36 +0000 (16:00 +0200)]
dev-python/testify: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/sphinxcontrib-doxylink: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:57:31 +0000 (15:57 +0200)]
dev-python/sphinxcontrib-doxylink: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/roman: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:54:05 +0000 (15:54 +0200)]
dev-python/roman: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/python-cluster: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:50:13 +0000 (15:50 +0200)]
dev-python/python-cluster: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pytest-django: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:49:21 +0000 (15:49 +0200)]
dev-python/pytest-django: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/manuel: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:40:56 +0000 (15:40 +0200)]
dev-python/manuel: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pyglet: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:38:56 +0000 (15:38 +0200)]
dev-python/pyglet: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pydispatcher: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:32:08 +0000 (15:32 +0200)]
dev-python/pydispatcher: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pycuda: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:31:15 +0000 (15:31 +0200)]
dev-python/pycuda: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pycollada: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:28:34 +0000 (15:28 +0200)]
dev-python/pycollada: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pycallgraph: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:27:12 +0000 (15:27 +0200)]
dev-python/pycallgraph: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/polygon: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:25:51 +0000 (15:25 +0200)]
dev-python/polygon: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pmw: Support newer python
Pacho Ramos [Mon, 29 May 2017 13:24:58 +0000 (15:24 +0200)]
dev-python/pmw: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pastescript: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:53:04 +0000 (14:53 +0200)]
dev-python/pastescript: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/natgrid: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:51:25 +0000 (14:51 +0200)]
dev-python/natgrid: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mockredispy: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:47:30 +0000 (14:47 +0200)]
dev-python/mockredispy: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mockldap: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:42:42 +0000 (14:42 +0200)]
dev-python/mockldap: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/pyldap: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:42:25 +0000 (14:42 +0200)]
dev-python/pyldap: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mkdocs: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:40:29 +0000 (14:40 +0200)]
dev-python/mkdocs: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mkdocs-bootstrap: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:39:17 +0000 (14:39 +0200)]
dev-python/mkdocs-bootstrap: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mkdocs-bootswatch: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:38:42 +0000 (14:38 +0200)]
dev-python/mkdocs-bootswatch: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mecab-python: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:36:21 +0000 (14:36 +0200)]
dev-python/mecab-python: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/keepassx: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:34:43 +0000 (14:34 +0200)]
dev-python/keepassx: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/json-tools: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:31:31 +0000 (14:31 +0200)]
dev-python/json-tools: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/jaraco-utils: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:27:35 +0000 (14:27 +0200)]
dev-python/jaraco-utils: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/hgtools: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:27:06 +0000 (14:27 +0200)]
dev-python/hgtools: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/ipdbplugin: Support newer python
Pacho Ramos [Mon, 29 May 2017 12:19:55 +0000 (14:19 +0200)]
dev-python/ipdbplugin: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/imapclient: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:35:42 +0000 (12:35 +0200)]
dev-python/imapclient: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/placefinder: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:28:36 +0000 (12:28 +0200)]
dev-python/placefinder: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/flask-themes: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:24:45 +0000 (12:24 +0200)]
dev-python/flask-themes: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/mimerender: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:22:17 +0000 (12:22 +0200)]
dev-python/mimerender: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/flask-sqlalchemy: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:20:59 +0000 (12:20 +0200)]
dev-python/flask-sqlalchemy: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/envoy: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:14:33 +0000 (12:14 +0200)]
dev-python/envoy: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/deform: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:13:11 +0000 (12:13 +0200)]
dev-python/deform: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/crumbs: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:08:18 +0000 (12:08 +0200)]
dev-python/crumbs: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agodev-python/bashate: Support newer python
Pacho Ramos [Mon, 29 May 2017 10:05:31 +0000 (12:05 +0200)]
dev-python/bashate: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agoapp-text/openlp: Support newer python
Pacho Ramos [Mon, 29 May 2017 09:33:57 +0000 (11:33 +0200)]
app-text/openlp: Support newer python

Package-Manager: Portage-2.3.6, Repoman-2.3.2

7 years agonet-im/gajim: Fix CVE-2016-10376
Amadeusz Żołnowski [Mon, 29 May 2017 16:24:07 +0000 (17:24 +0100)]
net-im/gajim: Fix CVE-2016-10376

Gentoo-Bug: 620146
Package-Manager: Portage-2.3.5, Repoman-2.3.2