gentoo.git
9 years agox11-libs/qwt: ppc ppc64 stable (bug 611430).
Michael Weber [Wed, 8 Mar 2017 07:19:21 +0000 (08:19 +0100)]
x11-libs/qwt: ppc ppc64 stable (bug 611430).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoapp-emulation/libspectrum: remove inactive proxied maintainer
Göktürk Yüksek [Wed, 8 Mar 2017 07:36:16 +0000 (02:36 -0500)]
app-emulation/libspectrum: remove inactive proxied maintainer

Package-Manager: Portage-2.3.0, Repoman-2.3.1

9 years agoapp-emulation/fuse-utils: remove inactive proxied maintainer
Göktürk Yüksek [Wed, 8 Mar 2017 07:35:07 +0000 (02:35 -0500)]
app-emulation/fuse-utils: remove inactive proxied maintainer

Package-Manager: Portage-2.3.0, Repoman-2.3.1

9 years agoapp-emulation/fuse: remove inactive proxied maintainer
Göktürk Yüksek [Wed, 8 Mar 2017 07:34:14 +0000 (02:34 -0500)]
app-emulation/fuse: remove inactive proxied maintainer

Package-Manager: Portage-2.3.0, Repoman-2.3.1

9 years agoeclass/tests/python-utils-r1: update impl support status
Michał Górny [Wed, 8 Mar 2017 07:33:19 +0000 (08:33 +0100)]
eclass/tests/python-utils-r1: update impl support status

9 years agopython-single-r1.eclass: Add integrity checks for globals
Michał Górny [Wed, 1 Mar 2017 09:11:43 +0000 (10:11 +0100)]
python-single-r1.eclass: Add integrity checks for globals

9 years agopython-single-r1.eclass: Refactor global setter to use locals, NFC
Michał Górny [Wed, 1 Mar 2017 09:08:20 +0000 (10:08 +0100)]
python-single-r1.eclass: Refactor global setter to use locals, NFC

9 years agopython-single-r1.eclass: Remove stale EAPI=4 branch in globals
Michał Górny [Wed, 1 Mar 2017 09:00:58 +0000 (10:00 +0100)]
python-single-r1.eclass: Remove stale EAPI=4 branch in globals

9 years agopython-r1.eclass: Add integrity checks for globals
Michał Górny [Wed, 1 Mar 2017 08:57:12 +0000 (09:57 +0100)]
python-r1.eclass: Add integrity checks for globals

9 years agopython-r1.eclass: Refactor globals to use local vars, NFC
Michał Górny [Wed, 1 Mar 2017 08:44:02 +0000 (09:44 +0100)]
python-r1.eclass: Refactor globals to use local vars, NFC

9 years agopython-r1.eclass: Remove stale EAPI=4 branch in globals
Michał Górny [Wed, 1 Mar 2017 08:36:50 +0000 (09:36 +0100)]
python-r1.eclass: Remove stale EAPI=4 branch in globals

9 years agopython-any-r1.eclass: Add integrity check for globals
Michał Górny [Wed, 1 Mar 2017 08:27:20 +0000 (09:27 +0100)]
python-any-r1.eclass: Add integrity check for globals

9 years agopython-any-r1.eclass: Global setter, refactor for more local vars
Michał Górny [Wed, 1 Mar 2017 08:23:52 +0000 (09:23 +0100)]
python-any-r1.eclass: Global setter, refactor for more local vars

Refactor _python_any_set_globals() to use local variables while
generating all output, and copy it to final vars at the end. This is
in preparation for integrity checks. NFC.

9 years agopython-utils-r1.eclass: _python_set_impls, add integrity check
Michał Górny [Wed, 1 Mar 2017 08:20:12 +0000 (09:20 +0100)]
python-utils-r1.eclass: _python_set_impls, add integrity check

Add integrity check for multi-inherits, i.e. ensure that PYTHON_COMPAT
has not changed between successive calls to _python_set_impls. If it did
(e.g. because of eclass+ebuild setting different values), then we abort
not to give surprising results to the user.

9 years agopython-utils-r1.eclass: _python_set_impls, use local vars
Michał Górny [Wed, 1 Mar 2017 08:14:13 +0000 (09:14 +0100)]
python-utils-r1.eclass: _python_set_impls, use local vars

Refactor _python_set_impls to use local variables throughout
the function and assign global values at the end. This prepares it for
double-inherit integrity checks. NFC.

9 years agopython-r1.eclass: localize variable to avoid leaking into the env
Tim Harder [Fri, 3 Mar 2017 20:49:16 +0000 (15:49 -0500)]
python-r1.eclass: localize variable to avoid leaking into the env

9 years agopython-utils-r1.eclass: python_wrapper_setup, fix exporting env
Michał Górny [Sun, 26 Feb 2017 10:02:07 +0000 (11:02 +0100)]
python-utils-r1.eclass: python_wrapper_setup, fix exporting env

Fix python_wrapper_setup function to move setting environment variables
for PATH and PKG_CONFIG_PATH outside the 'if'. Otherwise, they are only
set on the initial invocation of python_wrapper_setup for the particular
impl and do not apply to subsequent invocations (e.g. further
distutils-r1 phases).

9 years agounpacker.eclass: Replace unnecessary eval with array
Michał Górny [Thu, 23 Feb 2017 19:44:28 +0000 (20:44 +0100)]
unpacker.eclass: Replace unnecessary eval with array

Replace the eval used to attempt to construct whitespace-path-safe
utility calls with much simpler bash arrays.

9 years agotoolchain-funcs.eclass: Remove meaningless eval
Michał Górny [Thu, 23 Feb 2017 19:35:52 +0000 (20:35 +0100)]
toolchain-funcs.eclass: Remove meaningless eval

The 'eval' as used does not do anything. The function name is expanded
anyway.

9 years agoruby-ng.eclass: Replace unnecessary 'eval ls' with array fnexp
Michał Górny [Thu, 23 Feb 2017 19:08:24 +0000 (20:08 +0100)]
ruby-ng.eclass: Replace unnecessary 'eval ls' with array fnexp

Replace the unnecessary use of 'eval ls -d ...' with much simpler
and safer filename expansion via bash array. The 'eval' was completely
unnecessary in the original code; however, the late addition of quoting
would have broken it if eval did not implicitly discard the quotes.
The 'ls -d' was unnecessary as well since bash performs filename
expansion before passing the parameter to 'ls'.

Furthermore, a check for accidental multiple expansion has been added.
A complementary check for failed expansion can not be added since
the function is called in src_unpack() as well and the expansion fails
then.

9 years agoruby-fakegem.eclass: Remove completely unnecessary 'eval ls'
Michał Górny [Thu, 23 Feb 2017 18:20:01 +0000 (19:20 +0100)]
ruby-fakegem.eclass: Remove completely unnecessary 'eval ls'

Filename expansion is performed when the variable is referenced unquoted
already. There is really no need to call 'ls' on top of that, and even
less reason to wrap it all in 'eval'.

9 years agoperl-functions.eclass: Replace unnecessary eval with ${!var}
Michał Górny [Thu, 23 Feb 2017 17:01:47 +0000 (18:01 +0100)]
perl-functions.eclass: Replace unnecessary eval with ${!var}

9 years agomysql-multilib-r1.eclass: Replace unnecessary eval with bash array
Michał Górny [Thu, 23 Feb 2017 16:51:40 +0000 (17:51 +0100)]
mysql-multilib-r1.eclass: Replace unnecessary eval with bash array

9 years agojava-ant-2.eclass: Replace unnecessary evals with arrays
Michał Górny [Wed, 22 Feb 2017 19:40:06 +0000 (20:40 +0100)]
java-ant-2.eclass: Replace unnecessary evals with arrays

Replace the horrifying use of evals along with quoting to pass multiple
filenames whitespace-safe with much simpler bash arrays. While at it,
also simplify the find-read loop.

9 years agoflag-o-matic.eclass: Replace unnecessary evals
Michał Górny [Wed, 22 Feb 2017 19:20:10 +0000 (20:20 +0100)]
flag-o-matic.eclass: Replace unnecessary evals

Replace the evals used to export variables with plain export calls. Bash
expands variable references for exported variable name anyway, rendering
the eval completely unnecessary.

Replace the single eval used for indirect variable reference with the
${!...} substitution which serves that exact purpose in bash.

9 years agocvs.eclass: Replace unnecessary eval with bash arrays
Michał Górny [Wed, 22 Feb 2017 19:09:29 +0000 (20:09 +0100)]
cvs.eclass: Replace unnecessary eval with bash arrays

Replace the eval used to pass quoted password in with simpler and safer
bash arrays. Using eval is strongly discouraged as it is error-prone
and confusing.

9 years agoapp-crypt/mit-krb5: version bump to 1.15.1
Eray Aslan [Wed, 8 Mar 2017 07:34:55 +0000 (10:34 +0300)]
app-crypt/mit-krb5: version bump to 1.15.1

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoapp-crypt/mit-krb5: version bump to 1.14.5
Eray Aslan [Wed, 8 Mar 2017 07:33:48 +0000 (10:33 +0300)]
app-crypt/mit-krb5: version bump to 1.14.5

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoprofiles: add initial GNOME 3.24 mask
Mart Raudsepp [Wed, 8 Mar 2017 07:26:12 +0000 (09:26 +0200)]
profiles: add initial GNOME 3.24 mask

9 years agodev-ruby/childprocess: add 0.6.2
Hans de Graaff [Wed, 8 Mar 2017 06:32:33 +0000 (07:32 +0100)]
dev-ruby/childprocess: add 0.6.2

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agodev-ruby/bunny: add 2.6.4
Hans de Graaff [Wed, 8 Mar 2017 06:28:47 +0000 (07:28 +0100)]
dev-ruby/bunny: add 2.6.4

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agodev-libs/pkcs11-helper: arm stable, bug #611514
Markus Meier [Wed, 8 Mar 2017 06:03:41 +0000 (07:03 +0100)]
dev-libs/pkcs11-helper: arm stable, bug #611514

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

9 years agoapp-crypt/mhash: arm stable, bug #611476
Markus Meier [Wed, 8 Mar 2017 06:02:36 +0000 (07:02 +0100)]
app-crypt/mhash: arm stable, bug #611476

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

9 years agoapp-crypt/gpgme: arm stable, bug #611470
Markus Meier [Wed, 8 Mar 2017 06:01:41 +0000 (07:01 +0100)]
app-crypt/gpgme: arm stable, bug #611470

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

9 years agodev-libs/geoip: arm stable, bug #611286
Markus Meier [Wed, 8 Mar 2017 05:59:26 +0000 (06:59 +0100)]
dev-libs/geoip: arm stable, bug #611286

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

9 years agoapp-editors/gvim: arm stable, bug #611386
Markus Meier [Wed, 8 Mar 2017 05:58:28 +0000 (06:58 +0100)]
app-editors/gvim: arm stable, bug #611386

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

9 years agonet-analyzer/wireshark: arm stable, bug #609646
Markus Meier [Wed, 8 Mar 2017 05:56:38 +0000 (06:56 +0100)]
net-analyzer/wireshark: arm stable, bug #609646

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

9 years agoapp-text/mupdf: Stable for HPPA (bug #611444).
Jeroen Roovers [Wed, 8 Mar 2017 05:30:15 +0000 (06:30 +0100)]
app-text/mupdf: Stable for HPPA (bug #611444).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --ignore-arches

9 years agosys-process/fcron: Stable for HPPA (bug #605328).
Jeroen Roovers [Wed, 8 Mar 2017 05:29:22 +0000 (06:29 +0100)]
sys-process/fcron: Stable for HPPA (bug #605328).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --ignore-arches

9 years agonet-analyzer/nagios-core: Stable for HPPA (bug #585914).
Jeroen Roovers [Wed, 8 Mar 2017 05:15:58 +0000 (06:15 +0100)]
net-analyzer/nagios-core: Stable for HPPA (bug #585914).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --ignore-arches

9 years agonet-analyzer/nagios: Stable for HPPA (bug #585914).
Jeroen Roovers [Wed, 8 Mar 2017 05:15:40 +0000 (06:15 +0100)]
net-analyzer/nagios: Stable for HPPA (bug #585914).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --ignore-arches

9 years agomedia-plugins/gst-plugins-libav: Stable for HPPA PPC64 (bug #610810).
Jeroen Roovers [Wed, 8 Mar 2017 05:13:07 +0000 (06:13 +0100)]
media-plugins/gst-plugins-libav: Stable for HPPA PPC64 (bug #610810).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --ignore-arches

9 years agonet-analyzer/darkstat: Old.
Jeroen Roovers [Wed, 8 Mar 2017 05:02:58 +0000 (06:02 +0100)]
net-analyzer/darkstat: Old.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agosys-apps/dtc: Version bump.
Jeroen Roovers [Wed, 8 Mar 2017 04:59:02 +0000 (05:59 +0100)]
sys-apps/dtc: Version bump.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agomedia-libs/mesa: Build radeonsi if only VIDEO_CARDS="radeon" is selected.
Matt Turner [Wed, 8 Mar 2017 04:57:08 +0000 (20:57 -0800)]
media-libs/mesa: Build radeonsi if only VIDEO_CARDS="radeon" is selected.

Bug: https://bugs.gentoo.org/611928

9 years agomedia-libs/mesa: Fix libdrm dependencies.
Matt Turner [Wed, 8 Mar 2017 04:40:10 +0000 (20:40 -0800)]
media-libs/mesa: Fix libdrm dependencies.

9 years agoapp-admin/sshguard: Old.
Jeroen Roovers [Wed, 8 Mar 2017 04:47:22 +0000 (05:47 +0100)]
app-admin/sshguard: Old.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoapp-admin/sshguard: Version bump.
Jeroen Roovers [Wed, 8 Mar 2017 04:45:28 +0000 (05:45 +0100)]
app-admin/sshguard: Version bump.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoapp-arch/dpkg: Version bump.
Jeroen Roovers [Wed, 8 Mar 2017 04:32:09 +0000 (05:32 +0100)]
app-arch/dpkg: Version bump.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoapp-crypt/p11-kit: version bump to 0.23.5
Tim Harder [Wed, 8 Mar 2017 03:09:58 +0000 (22:09 -0500)]
app-crypt/p11-kit: version bump to 0.23.5

9 years agodev-python/passlib: Add python3_6 to PYTHON_COMPAT
Patrick McLean [Wed, 8 Mar 2017 02:53:28 +0000 (18:53 -0800)]
dev-python/passlib: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-python/bcrypt: Add python3_6 to PYTHON_COMPAT
Patrick McLean [Wed, 8 Mar 2017 02:51:46 +0000 (18:51 -0800)]
dev-python/bcrypt: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-python/scrypt: Add python3_6 to PYTHON_COMPAT
Patrick McLean [Wed, 8 Mar 2017 02:48:58 +0000 (18:48 -0800)]
dev-python/scrypt: Add python3_6 to PYTHON_COMPAT

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agogames-util/atlas: Version bump (hg snapshot), masked due to bug 611980
Maciej Mrozowski [Wed, 8 Mar 2017 02:40:01 +0000 (03:40 +0100)]
games-util/atlas: Version bump (hg snapshot), masked due to bug 611980

9 years agoapp-admin/mcelog: Version bump to 148.
Matt Turner [Wed, 8 Mar 2017 01:58:13 +0000 (17:58 -0800)]
app-admin/mcelog: Version bump to 148.

Bug: https://bugs.gentoo.org/571002

9 years agox11-drivers/xf86-video-openchrome: Version bump to 0.6.0.
Matt Turner [Wed, 8 Mar 2017 01:31:23 +0000 (17:31 -0800)]
x11-drivers/xf86-video-openchrome: Version bump to 0.6.0.

9 years agoapp-misc/anki: version bump to 2.0.43
Mike Frysinger [Wed, 8 Mar 2017 01:22:44 +0000 (17:22 -0800)]
app-misc/anki: version bump to 2.0.43

9 years agodev-php/PEAR-MDB2: Drop old revision
Brian Evans [Wed, 8 Mar 2017 00:28:45 +0000 (19:28 -0500)]
dev-php/PEAR-MDB2: Drop old revision

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2: Revbump for new EAPI and eclass
Brian Evans [Wed, 8 Mar 2017 00:23:57 +0000 (19:23 -0500)]
dev-php/PEAR-MDB2: Revbump for new EAPI and eclass

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_pgsql: Drop old revision
Brian Evans [Wed, 8 Mar 2017 00:14:48 +0000 (19:14 -0500)]
dev-php/PEAR-MDB2_Driver_pgsql: Drop old revision

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_pgsql: Revbump for new EAPI and eclass, update deps
Brian Evans [Wed, 8 Mar 2017 00:14:13 +0000 (19:14 -0500)]
dev-php/PEAR-MDB2_Driver_pgsql: Revbump for new EAPI and eclass, update deps

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_mysqli: Drop old revision
Brian Evans [Wed, 8 Mar 2017 00:11:34 +0000 (19:11 -0500)]
dev-php/PEAR-MDB2_Driver_mysqli: Drop old revision

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_mysqli: Revbump for new EAPI and eclass, update deps
Brian Evans [Wed, 8 Mar 2017 00:10:59 +0000 (19:10 -0500)]
dev-php/PEAR-MDB2_Driver_mysqli: Revbump for new EAPI and eclass, update deps

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_mssql: Drop old revision
Brian Evans [Wed, 8 Mar 2017 00:07:20 +0000 (19:07 -0500)]
dev-php/PEAR-MDB2_Driver_mssql: Drop old revision

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_mssql: Revbump for new EAPI and eclass
Brian Evans [Wed, 8 Mar 2017 00:06:29 +0000 (19:06 -0500)]
dev-php/PEAR-MDB2_Driver_mssql: Revbump for new EAPI and eclass

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_mysql: Drop old revision
Brian Evans [Wed, 8 Mar 2017 00:01:32 +0000 (19:01 -0500)]
dev-php/PEAR-MDB2_Driver_mysql: Drop old revision

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_mysql: Revbump for new EAPI and eclass, update deps
Brian Evans [Wed, 8 Mar 2017 00:00:59 +0000 (19:00 -0500)]
dev-php/PEAR-MDB2_Driver_mysql: Revbump for new EAPI and eclass, update deps

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_oci8: Drop old revision
Brian Evans [Tue, 7 Mar 2017 23:54:05 +0000 (18:54 -0500)]
dev-php/PEAR-MDB2_Driver_oci8: Drop old revision

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-MDB2_Driver_oci8: Revision bump for latest EAPI and eclass
Brian Evans [Tue, 7 Mar 2017 23:53:29 +0000 (18:53 -0500)]
dev-php/PEAR-MDB2_Driver_oci8: Revision bump for latest EAPI and eclass

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-ruby/travis: version bump
Christoph Junghans [Tue, 7 Mar 2017 23:31:24 +0000 (16:31 -0700)]
dev-ruby/travis: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agodev-lang/crystal: bump up to 0.21.1
Sergei Trofimovich [Tue, 7 Mar 2017 22:28:32 +0000 (22:28 +0000)]
dev-lang/crystal: bump up to 0.21.1

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agonet-libs/rb_libtorrent: Fix tests with boost-1.62
Andreas Sturmlechner [Tue, 7 Mar 2017 22:13:14 +0000 (23:13 +0100)]
net-libs/rb_libtorrent: Fix tests with boost-1.62

Gentoo-bug: 608864

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agonet-libs/rb_libtorrent: 1.0.11 version bump, fix tests, ABI break
Andreas Sturmlechner [Tue, 7 Mar 2017 21:12:31 +0000 (22:12 +0100)]
net-libs/rb_libtorrent: 1.0.11 version bump, fix tests, ABI break

Dropped eutils.eclass.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agomedia-tv/kodi: Add dependency on dev-libs/libfmt
Craig Andrews [Mon, 6 Mar 2017 21:40:25 +0000 (16:40 -0500)]
media-tv/kodi: Add dependency on dev-libs/libfmt

Bug: https://bugs.gentoo.org/show_bug.cgi?id=611802
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4144

9 years agodev-libs/libfmt: Small, safe and fast formatting library
Craig Andrews [Mon, 6 Mar 2017 20:46:32 +0000 (15:46 -0500)]
dev-libs/libfmt: Small, safe and fast formatting library

Bug: https://bugs.gentoo.org/show_bug.cgi?id=611804
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4143

9 years agodev-java/icedtea-bin: Version bump to 7.2.6.9 wrt security bug #609562
James Le Cuirot [Tue, 7 Mar 2017 21:55:35 +0000 (21:55 +0000)]
dev-java/icedtea-bin: Version bump to 7.2.6.9 wrt security bug #609562

This also uses the OpenJDK EC code instead of NSS to address #605430
as was done for 3.3.0.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-java/icedtea: Remove vulnerable 7.2.6.8 wrt security bug #609562
James Le Cuirot [Tue, 7 Mar 2017 21:52:26 +0000 (21:52 +0000)]
dev-java/icedtea: Remove vulnerable 7.2.6.8 wrt security bug #609562

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-java/icedtea: Version bump to 7.2.6.9 wrt security bug #609562
James Le Cuirot [Tue, 7 Mar 2017 21:50:38 +0000 (21:50 +0000)]
dev-java/icedtea: Version bump to 7.2.6.9 wrt security bug #609562

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agowww-apps/wordpress: remove older version, bug #611956
Anthony G. Basile [Tue, 7 Mar 2017 21:40:19 +0000 (16:40 -0500)]
www-apps/wordpress: remove older version, bug #611956

Package-Manager: portage-2.3.3

9 years agoapp-emulation/docker-machine: fix SRC_URI for 0.10.0
Zac Medico [Tue, 7 Mar 2017 21:24:46 +0000 (13:24 -0800)]
app-emulation/docker-machine: fix SRC_URI for 0.10.0

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-php/PEAR-XML_RSS: Version bump to 1.1.0
Brian Evans [Tue, 7 Mar 2017 21:21:33 +0000 (16:21 -0500)]
dev-php/PEAR-XML_RSS: Version bump to 1.1.0

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agosys-apps/yarn: delete non-working 9999 version
soredake [Tue, 7 Mar 2017 20:43:33 +0000 (22:43 +0200)]
sys-apps/yarn: delete non-working 9999 version

npm install' or 'yarn install' is not suitable for ebuild

9 years agosys-apps/yarn: version bump to 0.21.3
soredake [Fri, 10 Feb 2017 12:31:51 +0000 (14:31 +0200)]
sys-apps/yarn: version bump to 0.21.3

9 years agosys-devel/binutils: mark 2.26.1 arm64/m68k/s390/sh stable
Mike Frysinger [Tue, 7 Mar 2017 20:55:12 +0000 (12:55 -0800)]
sys-devel/binutils: mark 2.26.1 arm64/m68k/s390/sh stable

9 years agoapp-benchmarks/sysbench: sync live ebuild
Tomas Mozes [Mon, 6 Mar 2017 06:17:58 +0000 (07:17 +0100)]
app-benchmarks/sysbench: sync live ebuild

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agoapp-benchmarks/sysbench: bump to 1.0.3, drop old
Tomas Mozes [Mon, 6 Mar 2017 06:16:45 +0000 (07:16 +0100)]
app-benchmarks/sysbench: bump to 1.0.3, drop old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agodev-libs/concurrencykit: bump to 0.6.0
Tomas Mozes [Mon, 6 Mar 2017 06:24:29 +0000 (07:24 +0100)]
dev-libs/concurrencykit: bump to 0.6.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agodev-libs/libprelude: Fix #611550
Thomas Andrejak [Fri, 3 Mar 2017 22:33:13 +0000 (23:33 +0100)]
dev-libs/libprelude: Fix #611550

9 years agodev-libs/opensc: arm ppc ppc64 stable (bug 611512).
Michael Weber [Tue, 7 Mar 2017 20:17:39 +0000 (21:17 +0100)]
dev-libs/opensc: arm ppc ppc64 stable (bug 611512).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-python/isodate: arm stable (bug 606196).
Michael Weber [Tue, 7 Mar 2017 20:04:47 +0000 (21:04 +0100)]
dev-python/isodate: arm stable (bug 606196).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-python/pydotplus: new package
Horea Christian [Mon, 13 Feb 2017 23:52:55 +0000 (00:52 +0100)]
dev-python/pydotplus: new package

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agonet-proxy/dante: arm stable (bug 597980).
Michael Weber [Tue, 7 Mar 2017 19:51:05 +0000 (20:51 +0100)]
net-proxy/dante: arm stable (bug 597980).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agoapp-crypt/gnupg: clean up 2.1.19
Kristian Fiskerstrand [Tue, 7 Mar 2017 19:48:38 +0000 (20:48 +0100)]
app-crypt/gnupg: clean up 2.1.19

Package-Manager: Portage-2.3.3, Repoman-2.3.1

9 years agowww-plugins/chrome-binary-plugins: automated update (58.0.3026.3, 57.0.2987.88)
Mike Gilbert [Tue, 7 Mar 2017 14:30:57 +0000 (09:30 -0500)]
www-plugins/chrome-binary-plugins: automated update (58.0.3026.3, 57.0.2987.88)

Package-Manager: Portage-2.3.3_p79, Repoman-2.3.1_p72

9 years agowww-client/google-chrome-beta: automated update (57.0.2987.88)
Mike Gilbert [Tue, 7 Mar 2017 14:30:48 +0000 (09:30 -0500)]
www-client/google-chrome-beta: automated update (57.0.2987.88)

Package-Manager: Portage-2.3.3_p79, Repoman-2.3.1_p72

9 years agowww-client/google-chrome-unstable: automated update (58.0.3026.3)
Mike Gilbert [Tue, 7 Mar 2017 14:30:06 +0000 (09:30 -0500)]
www-client/google-chrome-unstable: automated update (58.0.3026.3)

Package-Manager: Portage-2.3.3_p79, Repoman-2.3.1_p72

9 years agodev-libs/libtasn1: arm arm64 ppc ppc64 stable (bug 611510).
Michael Weber [Tue, 7 Mar 2017 19:35:12 +0000 (20:35 +0100)]
dev-libs/libtasn1: arm arm64 ppc ppc64 stable (bug 611510).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-libs/libp11: arm ppc ppc64 stable (bug 611508).
Michael Weber [Tue, 7 Mar 2017 19:17:18 +0000 (20:17 +0100)]
dev-libs/libp11: arm ppc ppc64 stable (bug 611508).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

9 years agodev-libs/libmcrypt: arm ppc ppc64 stable (bug 611506).
Michael Weber [Tue, 7 Mar 2017 19:09:00 +0000 (20:09 +0100)]
dev-libs/libmcrypt: arm ppc ppc64 stable (bug 611506).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

9 years agodev-libs/botan: ppc ppc64 stable (bug 611498)
Michael Weber [Tue, 7 Mar 2017 19:07:42 +0000 (20:07 +0100)]
dev-libs/botan: ppc ppc64 stable (bug 611498)

Package-Manager: Portage-2.3.4, Repoman-2.3.2