gentoo.git
8 years agonet-libs/gnutls: version bump
Alon Bar-Lev [Wed, 3 Feb 2016 20:33:08 +0000 (22:33 +0200)]
net-libs/gnutls: version bump

Package-Manager: portage-2.2.26

8 years agodev-db/mysql: arm stable, bug #572870
Markus Meier [Wed, 3 Feb 2016 20:45:54 +0000 (21:45 +0100)]
dev-db/mysql: arm stable, bug #572870

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agomedia-sound/ncmpcpp: Old.
Jeroen Roovers [Wed, 3 Feb 2016 20:44:37 +0000 (21:44 +0100)]
media-sound/ncmpcpp: Old.

Package-Manager: portage-2.2.27

8 years agodev-libs/nss: arm stable, bug #571086
Markus Meier [Wed, 3 Feb 2016 20:44:32 +0000 (21:44 +0100)]
dev-libs/nss: arm stable, bug #571086

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agonet-misc/ntp: arm stable, bug #572452
Markus Meier [Wed, 3 Feb 2016 20:43:31 +0000 (21:43 +0100)]
net-misc/ntp: arm stable, bug #572452

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agomedia-video/ffmpeg: arm stable, bug #571868
Markus Meier [Wed, 3 Feb 2016 20:42:29 +0000 (21:42 +0100)]
media-video/ffmpeg: arm stable, bug #571868

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agomedia-libs/x265: arm stable, bug #570878
Markus Meier [Wed, 3 Feb 2016 20:39:58 +0000 (21:39 +0100)]
media-libs/x265: arm stable, bug #570878

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agomedia-sound/ncmpcpp: arm stable, bug #570562
Markus Meier [Wed, 3 Feb 2016 20:38:54 +0000 (21:38 +0100)]
media-sound/ncmpcpp: arm stable, bug #570562

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agodev-perl/Filter: arm stable, bug #572136
Markus Meier [Wed, 3 Feb 2016 20:37:35 +0000 (21:37 +0100)]
dev-perl/Filter: arm stable, bug #572136

Package-Manager: portage-2.2.27
RepoMan-Options: --include-arches="arm"

8 years agonet-libs/nghttp2: version bump to 1.7.0 #573748
Mike Frysinger [Wed, 3 Feb 2016 18:37:07 +0000 (13:37 -0500)]
net-libs/nghttp2: version bump to 1.7.0 #573748

8 years agonet-libs/nghttp2: drop old <1.6.0 versions
Mike Frysinger [Wed, 3 Feb 2016 18:09:41 +0000 (13:09 -0500)]
net-libs/nghttp2: drop old <1.6.0 versions

8 years agonet-libs/nghttp2: mark 1.6.0 arm/arm64/m68k/s390/sh stable #569518
Mike Frysinger [Wed, 3 Feb 2016 18:05:10 +0000 (13:05 -0500)]
net-libs/nghttp2: mark 1.6.0 arm/arm64/m68k/s390/sh stable #569518

8 years agoapp-shells/bash: rev bump to push out bashrc updates
Mike Frysinger [Wed, 3 Feb 2016 18:37:53 +0000 (13:37 -0500)]
app-shells/bash: rev bump to push out bashrc updates

8 years agoapp-shells/bash: bashrc: avoid always exporting default LS_COLORS
Mike Frysinger [Tue, 2 Feb 2016 22:11:11 +0000 (17:11 -0500)]
app-shells/bash: bashrc: avoid always exporting default LS_COLORS

We've long been exporting the LS_COLORS variable to the default env,
but in practice, there's no reason to be doing this in the majority
of cases.  The value we most often load is equivalent to the default
which means we're polluting the env and adding overhead for no gain.
Add a little more code (and one extra `dircolors` exec unfortunately)
to check to see if the LS_COLORS value we found is the default.  If
so, don't bother exporting it anymore.

8 years agoapp-shells/bash: bashrc: drop custom parsing of dircolors databases #572582
Mike Frysinger [Tue, 2 Feb 2016 22:08:19 +0000 (17:08 -0500)]
app-shells/bash: bashrc: drop custom parsing of dircolors databases #572582

Starting with coreutils-8.24, the dircolors TERM entries are run through
fnmatch rather than being a plain text string.  This means our parsing
logic no longer works because we assumed fixed strings.  It isn't easy to
process a list of path globs in bash, so rework the code to always run
the dircolors tool.  We were doing this anyways in the majority of cases,
so it's not like we're adding that much overhead.  The only people who
are negatively impacted are interactive colorless terminals.

Reported-by: Bernd Feige <Bernd.Feige@gmx.net>
8 years agoapp-shells/bash: bashrc: quote the output of dircolors #572582#8
Mike Frysinger [Tue, 2 Feb 2016 21:32:36 +0000 (16:32 -0500)]
app-shells/bash: bashrc: quote the output of dircolors #572582#8

The output of dircolors generally shouldn't be problematic even when it's
unquoted (as it tends to be a long dense string w/out whitespace), but add
quotes anyways just to be safe.

Reported-by: konsolebox@gmail.com
8 years agoapp-shells/bash: bashrc: enable colors for all TERMS that end in "color"
Mike Frysinger [Tue, 2 Feb 2016 20:24:44 +0000 (15:24 -0500)]
app-shells/bash: bashrc: enable colors for all TERMS that end in "color"

A bunch of terms end in values like "-256color" and "-color" to indicate
the variant that supports color.  Match all of those in the fallback case.

8 years agoapp-shells/bash: bashrc: enable fallback TERM color checking for everyone
Mike Frysinger [Tue, 2 Feb 2016 20:23:37 +0000 (15:23 -0500)]
app-shells/bash: bashrc: enable fallback TERM color checking for everyone

We provide rudimentary TERM checking for BSD which doesn't have dircolors,
but this logic works just as well for all systems such as embedded.  Make
this code run whenever dircolors does not exist.

8 years agoapp-shells/bash: bashrc: simplify/unify TERM checking slightly
Mike Frysinger [Tue, 2 Feb 2016 20:21:30 +0000 (15:21 -0500)]
app-shells/bash: bashrc: simplify/unify TERM checking slightly

We've got two cases that check TERM with many common entries,
so make the leading parts look the same.

8 years agoemul-linux-x86.eclass: Remove lastrited (removal due 2015-11-24)
Michał Górny [Wed, 3 Feb 2016 18:44:40 +0000 (19:44 +0100)]
emul-linux-x86.eclass: Remove lastrited (removal due 2015-11-24)

8 years agobash-completion.eclass: Remove lastrited (removal due 2015-11-24)
Michał Górny [Wed, 3 Feb 2016 18:38:25 +0000 (19:38 +0100)]
bash-completion.eclass: Remove lastrited (removal due 2015-11-24)

8 years agodev-libs/libusb: revbump to fix static-libs bug #515204 for stable users
Zero_Chaos [Wed, 3 Feb 2016 17:32:51 +0000 (12:32 -0500)]
dev-libs/libusb: revbump to fix static-libs bug #515204 for stable users

Package-Manager: portage-2.2.27
RepoMan-Options: --force

8 years agotargets/systemd/package.use.mask: mask dev-libs/libusb[static-libs]
Zero_Chaos [Wed, 3 Feb 2016 17:24:33 +0000 (12:24 -0500)]
targets/systemd/package.use.mask: mask dev-libs/libusb[static-libs]

8 years agodev-libs/libusb: bump for new rev and fix static-libs support bug #515204
Zero_Chaos [Wed, 3 Feb 2016 17:23:36 +0000 (12:23 -0500)]
dev-libs/libusb: bump for new rev and fix static-libs support bug #515204

Package-Manager: portage-2.2.27

8 years agosys-auth/keystone: remove the badness
Matthew Thode [Wed, 3 Feb 2016 17:05:02 +0000 (11:05 -0600)]
sys-auth/keystone: remove the badness

Package-Manager: portage-2.2.26

8 years agodev-python/keystonemiddleware: remove the badness
Matthew Thode [Wed, 3 Feb 2016 17:03:27 +0000 (11:03 -0600)]
dev-python/keystonemiddleware: remove the badness

Package-Manager: portage-2.2.26

8 years agonet-dns/pdns: Version bump
Sven Wegener [Wed, 3 Feb 2016 17:04:09 +0000 (17:04 +0000)]
net-dns/pdns: Version bump

Package-Manager: portage-2.2.26

8 years agonet-dns/pdns: Remove unused local USE flag remote-http
Sven Wegener [Wed, 3 Feb 2016 17:03:57 +0000 (17:03 +0000)]
net-dns/pdns: Remove unused local USE flag remote-http

Package-Manager: portage-2.2.26

8 years agowww-servers/nginx: x86 stable wrt bug #573046
Agostino Sarubbo [Wed, 3 Feb 2016 16:54:31 +0000 (17:54 +0100)]
www-servers/nginx: x86 stable wrt bug #573046

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agosys-auth/keystone: x86 stable wrt bug #573658
Agostino Sarubbo [Wed, 3 Feb 2016 16:54:24 +0000 (17:54 +0100)]
sys-auth/keystone: x86 stable wrt bug #573658

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agodev-python/keystonemiddleware: x86 stable wrt bug #573660
Agostino Sarubbo [Wed, 3 Feb 2016 16:54:15 +0000 (17:54 +0100)]
dev-python/keystonemiddleware: x86 stable wrt bug #573660

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agonet-misc/socat: x86 stable wrt bug #573602
Agostino Sarubbo [Wed, 3 Feb 2016 16:54:05 +0000 (17:54 +0100)]
net-misc/socat: x86 stable wrt bug #573602

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agonet-analyzer/cacti: x86 stable wrt bug #568400
Agostino Sarubbo [Wed, 3 Feb 2016 16:53:59 +0000 (17:53 +0100)]
net-analyzer/cacti: x86 stable wrt bug #568400

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agowww-servers/nginx: amd64 stable wrt bug #573046
Agostino Sarubbo [Wed, 3 Feb 2016 16:52:55 +0000 (17:52 +0100)]
www-servers/nginx: amd64 stable wrt bug #573046

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agosys-auth/keystone: amd64 stable wrt bug #573658
Agostino Sarubbo [Wed, 3 Feb 2016 16:52:47 +0000 (17:52 +0100)]
sys-auth/keystone: amd64 stable wrt bug #573658

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agodev-python/keystonemiddleware: amd64 stable wrt bug #573660
Agostino Sarubbo [Wed, 3 Feb 2016 16:52:38 +0000 (17:52 +0100)]
dev-python/keystonemiddleware: amd64 stable wrt bug #573660

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agonet-misc/socat: amd64 stable wrt bug #573602
Agostino Sarubbo [Wed, 3 Feb 2016 16:52:27 +0000 (17:52 +0100)]
net-misc/socat: amd64 stable wrt bug #573602

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agonet-analyzer/cacti: amd64 stable wrt bug #568400
Agostino Sarubbo [Wed, 3 Feb 2016 16:52:20 +0000 (17:52 +0100)]
net-analyzer/cacti: amd64 stable wrt bug #568400

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago@gentoo.org>
8 years agonet-libs/courier-authlib: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 16:38:46 +0000 (17:38 +0100)]
net-libs/courier-authlib: add alpha keyword

Gentoo-Bug: 572744

Package-Manager: portage-2.2.27

8 years agosys-block/fio: fix bug 572446 caused by newer kernel headers, also version bump.
Robin H. Johnson [Wed, 3 Feb 2016 16:32:14 +0000 (08:32 -0800)]
sys-block/fio: fix bug 572446 caused by newer kernel headers, also version bump.

Package-Manager: portage-2.2.27

8 years agomedia-radio/cwdaemon: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 16:22:42 +0000 (17:22 +0100)]
media-radio/cwdaemon: add alpha keyword

Gentoo-Bug: 572692

Package-Manager: portage-2.2.27

8 years agomedia-radio/unixcw: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 16:05:45 +0000 (17:05 +0100)]
media-radio/unixcw: add alpha keyword

Gentoo-Bug: 572690

Package-Manager: portage-2.2.27

8 years agodev-db/postgresql: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 15:59:09 +0000 (16:59 +0100)]
dev-db/postgresql: add alpha keyword

Gentoo-Bug: 572656

Package-Manager: portage-2.2.27

8 years agodev-db/postgresql: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 15:58:02 +0000 (16:58 +0100)]
dev-db/postgresql: add alpha keyword

Gentoo-Bug: 572656

Package-Manager: portage-2.2.27

8 years agopackage.mask: Removed mask for =sys-apps/sysvinit-2.88-r8
Lars Wendler [Wed, 3 Feb 2016 15:18:42 +0000 (16:18 +0100)]
package.mask: Removed mask for =sys-apps/sysvinit-2.88-r8

(no longer in the tree)

Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
8 years agosys-apps/sysvinit: Removed old.
Lars Wendler [Wed, 3 Feb 2016 15:17:52 +0000 (16:17 +0100)]
sys-apps/sysvinit: Removed old.

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
8 years agodev-lang/rakudo: Bump, java bits not working, moarvm bits still have path issues
Patrick Lauer [Wed, 3 Feb 2016 15:13:13 +0000 (16:13 +0100)]
dev-lang/rakudo: Bump, java bits not working, moarvm bits still have path issues

Package-Manager: portage-2.2.27

8 years agodev-lang/nqp: Bump, temporarily remove broken parrot bindings
Patrick Lauer [Wed, 3 Feb 2016 14:49:30 +0000 (15:49 +0100)]
dev-lang/nqp: Bump, temporarily remove broken parrot bindings

Package-Manager: portage-2.2.27

8 years agosys-apps/sysvinit: Revbump to fix bug #573668
Lars Wendler [Wed, 3 Feb 2016 15:10:31 +0000 (16:10 +0100)]
sys-apps/sysvinit: Revbump to fix bug #573668

Bumped to EAPI-5. Minor ebuild improvements.

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
8 years agodev-tex/latexdiff: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 15:09:23 +0000 (16:09 +0100)]
dev-tex/latexdiff: add alpha keyword

Gentoo-Bug: 572632

Package-Manager: portage-2.2.27

8 years agonet-ftp/lftp: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 15:02:13 +0000 (16:02 +0100)]
net-ftp/lftp: add alpha keyword

Gentoo-Bug: 572562

Package-Manager: portage-2.2.27

8 years agonet-fs/samba: Removed old.
Lars Wendler [Wed, 3 Feb 2016 14:55:55 +0000 (15:55 +0100)]
net-fs/samba: Removed old.

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
8 years agonet-fs/samba: Bump to version 4.2.8
Lars Wendler [Wed, 3 Feb 2016 14:54:56 +0000 (15:54 +0100)]
net-fs/samba: Bump to version 4.2.8

Package-Manager: portage-2.2.27
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
8 years agomail-client/mutt: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:46:48 +0000 (15:46 +0100)]
mail-client/mutt: add alpha keyword

Gentoo-Bug: 572342

Package-Manager: portage-2.2.27

8 years agosys-apps/man-db: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:39:58 +0000 (15:39 +0100)]
sys-apps/man-db: add alpha keyword

Gentoo-Bug: 572214

Package-Manager: portage-2.2.27

8 years agodev-perl/PPIx-Regexp: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:35:16 +0000 (15:35 +0100)]
dev-perl/PPIx-Regexp: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/perltidy: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:35:07 +0000 (15:35 +0100)]
dev-perl/perltidy: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Test-SubCalls: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:58 +0000 (15:34 +0100)]
dev-perl/Test-SubCalls: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Test-Object: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:50 +0000 (15:34 +0100)]
dev-perl/Test-Object: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Test-Memory-Cycle: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:40 +0000 (15:34 +0100)]
dev-perl/Test-Memory-Cycle: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/String-Format: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:31 +0000 (15:34 +0100)]
dev-perl/String-Format: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Readonly: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:22 +0000 (15:34 +0100)]
dev-perl/Readonly: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Pod-Spell: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:12 +0000 (15:34 +0100)]
dev-perl/Pod-Spell: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Perl-Critic-Dynamic: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:34:03 +0000 (15:34 +0100)]
dev-perl/Perl-Critic-Dynamic: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Perl-Critic: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:33:54 +0000 (15:33 +0100)]
dev-perl/Perl-Critic: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/PadWalker: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:33:45 +0000 (15:33 +0100)]
dev-perl/PadWalker: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/PPIx-Utilities: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:33:36 +0000 (15:33 +0100)]
dev-perl/PPIx-Utilities: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/PPI: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:33:27 +0000 (15:33 +0100)]
dev-perl/PPI: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Mozilla-CA: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:33:18 +0000 (15:33 +0100)]
dev-perl/Mozilla-CA: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Module-Build-Tiny: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:33:10 +0000 (15:33 +0100)]
dev-perl/Module-Build-Tiny: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Hook-LexWrap: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:59 +0000 (15:32 +0100)]
dev-perl/Hook-LexWrap: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/ExtUtils-InstallPaths: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:50 +0000 (15:32 +0100)]
dev-perl/ExtUtils-InstallPaths: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/ExtUtils-Helpers: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:40 +0000 (15:32 +0100)]
dev-perl/ExtUtils-Helpers: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/ExtUtils-Config: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:30 +0000 (15:32 +0100)]
dev-perl/ExtUtils-Config: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Devel-Cycle: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:19 +0000 (15:32 +0100)]
dev-perl/Devel-Cycle: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/B-Keywords: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:11 +0000 (15:32 +0100)]
dev-perl/B-Keywords: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-perl/Finance-Quote: add alpha keyword
Tobias Klausmann [Wed, 3 Feb 2016 14:32:01 +0000 (15:32 +0100)]
dev-perl/Finance-Quote: add alpha keyword

Gentoo-Bug: 572140

Package-Manager: portage-2.2.27

8 years agodev-python/pip: Add reference to GH bug for setuptools blocker
Justin Lecher [Wed, 3 Feb 2016 14:13:59 +0000 (15:13 +0100)]
dev-python/pip: Add reference to GH bug for setuptools blocker

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-lang/go: Bump to 1.6_rc1
Patrick Lauer [Wed, 3 Feb 2016 14:00:00 +0000 (15:00 +0100)]
dev-lang/go: Bump to 1.6_rc1

Package-Manager: portage-2.2.27

8 years agodev-python/setuptools: Version Bump
Justin Lecher [Wed, 3 Feb 2016 13:50:32 +0000 (14:50 +0100)]
dev-python/setuptools: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agomail-mta/exim: add patch to avoid TMPDIR issues with distcc, bug #63420
Fabian Groffen [Wed, 3 Feb 2016 13:48:23 +0000 (14:48 +0100)]
mail-mta/exim: add patch to avoid TMPDIR issues with distcc, bug #63420

Package-Manager: portage-2.2.20-prefix

8 years agonet-nds/phpldapadmin: Add eutils inherit for bug 573742
Brian Evans [Wed, 3 Feb 2016 13:43:39 +0000 (08:43 -0500)]
net-nds/phpldapadmin: Add eutils inherit for bug 573742

epatch fails because depend.php inherit was removed
eutils was a secondary inherit

Package-Manager: portage-2.2.27

8 years agonet-analyzer/greenbone-security-assistant: Security bump, fix #573770
Hanno [Wed, 3 Feb 2016 13:20:30 +0000 (14:20 +0100)]
net-analyzer/greenbone-security-assistant: Security bump, fix #573770

Package-Manager: portage-2.2.27

8 years agodev-lang/moarvm: Bump
Patrick Lauer [Wed, 3 Feb 2016 12:51:19 +0000 (13:51 +0100)]
dev-lang/moarvm: Bump

Package-Manager: portage-2.2.27

8 years agonet-misc/x2goserver: stricter dependency on sys-apps/iproute2
Bernard Cafarelli [Wed, 3 Feb 2016 12:31:14 +0000 (13:31 +0100)]
net-misc/x2goserver: stricter dependency on sys-apps/iproute2

This fixes local desktop sharing,
thanks Uwe Sauter <uwe@sauter-gechingen.de> in bug #572318
Bump EAPI
Fix pid file path in init script

Package-Manager: portage-2.2.27

8 years agodev-vcs/rapidsvn: Downgrade EAPI as wxwidgets.eclass doesn't support it
Justin Lecher [Wed, 3 Feb 2016 09:52:56 +0000 (10:52 +0100)]
dev-vcs/rapidsvn: Downgrade EAPI as wxwidgets.eclass doesn't support it

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agowxwidgets.eclass: Add EAPI support
Justin Lecher [Mon, 1 Feb 2016 10:53:14 +0000 (11:53 +0100)]
wxwidgets.eclass: Add EAPI support

Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agowxwidgets.eclass: Only inherit eclass once
Justin Lecher [Mon, 1 Feb 2016 10:50:38 +0000 (11:50 +0100)]
wxwidgets.eclass: Only inherit eclass once

Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agowxwidgets.eclass: unset unneeded variables in global scope after usage
Justin Lecher [Mon, 1 Feb 2016 10:57:31 +0000 (11:57 +0100)]
wxwidgets.eclass: unset unneeded variables in global scope after usage

Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agowxwidgets.eclass: Fix whitespaces
Justin Lecher [Mon, 1 Feb 2016 10:50:19 +0000 (11:50 +0100)]
wxwidgets.eclass: Fix whitespaces

Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agowxwidgets.eclass: Update Copyright year
Justin Lecher [Mon, 1 Feb 2016 10:47:03 +0000 (11:47 +0100)]
wxwidgets.eclass: Update Copyright year

Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/nose: KEYWORD under ALLARCHES policy
Justin Lecher [Wed, 3 Feb 2016 09:42:45 +0000 (10:42 +0100)]
dev-python/nose: KEYWORD under ALLARCHES policy

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/ipython: Version Bump
Justin Lecher [Wed, 3 Feb 2016 09:40:07 +0000 (10:40 +0100)]
dev-python/ipython: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/rpy: Version Bump
Justin Lecher [Wed, 3 Feb 2016 09:24:28 +0000 (10:24 +0100)]
dev-python/rpy: Version Bump

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agosys-apps/i2c-tools: Fix metadata.xml.
Patrice Clement [Wed, 3 Feb 2016 09:38:10 +0000 (09:38 +0000)]
sys-apps/i2c-tools: Fix metadata.xml.

Package-Manager: portage-2.2.26
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
8 years agodev-python/networkx: Use python2.7 for doc building
Justin Lecher [Wed, 3 Feb 2016 09:05:09 +0000 (10:05 +0100)]
dev-python/networkx: Use python2.7 for doc building

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=571044

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/pyrsistent: Clean whitespaces
Justin Lecher [Wed, 3 Feb 2016 09:00:58 +0000 (10:00 +0100)]
dev-python/pyrsistent: Clean whitespaces

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/nose: Backport fix for python3.5
Justin Lecher [Wed, 3 Feb 2016 08:58:10 +0000 (09:58 +0100)]
dev-python/nose: Backport fix for python3.5

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=570044

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/nose: Propargate latest changes to live ebuild
Justin Lecher [Wed, 3 Feb 2016 08:45:19 +0000 (09:45 +0100)]
dev-python/nose: Propargate latest changes to live ebuild

clean old patches

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
8 years agodev-python/nose: Drop old
Justin Lecher [Wed, 3 Feb 2016 08:34:20 +0000 (09:34 +0100)]
dev-python/nose: Drop old

obsoletes:

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=449748
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=449748
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=462126
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=466080
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=485022

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>