[gentoo-commits] repo/gentoo:master commit in: net-misc/wget/files/, net-misc/wget/

2016-10-31 Thread Lars Wendler
commit: 98185b2fdd2323a4242c46a396174e9eb5409b17
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Oct 31 07:11:21 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Oct 31 07:11:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98185b2f

net-misc/wget: Removed vulnerable version.

Package-Manager: portage-2.3.2
Signed-off-by: Lars Wendler  gentoo.org>

 net-misc/wget/Manifest |  1 -
 .../wget/files/wget-1.17.1-progress-bar-segv.patch | 35 
 net-misc/wget/wget-1.17.1-r1.ebuild| 95 --
 3 files changed, 131 deletions(-)

diff --git a/net-misc/wget/Manifest b/net-misc/wget/Manifest
index cdb1bc4..209346e 100644
--- a/net-misc/wget/Manifest
+++ b/net-misc/wget/Manifest
@@ -1,2 +1 @@
-DIST wget-1.17.1.tar.xz 1894140 SHA256 
fe559b61eb9cc01635ac6206a14e02cb51591838c35fa83c7a4aacae0bdd97c9 SHA512 
aa13584c94d0911268aeee9d6c7b1a7de259e0ec0f9daebe767e1f45afba097a6e9de09f370e55ead7acc9faa68f189063ac9e3d2d4a8d490f0b4edb6adc19ba
 WHIRLPOOL 
3efbac1862cb6537ea08eeb95dea2f34ca29f6a170c80961ef3037d411458ac343dfd13f2ff056b528e6591fb282eaf4bf1c2113939b25764c39630510b35cf0
 DIST wget-1.18.tar.xz 1922376 SHA256 
b5b55b75726c04c06fe253daec9329a6f1a3c0c1878e3ea76ebfebc139ea9cc1 SHA512 
a3f6fe2f44a8d797659d55cffaf81eb82b770c96222a0ee29bc4931b13846f8d8b9a07806f2197723c873a1248922d59cca5a81869661d9c6c3107447c184338
 WHIRLPOOL 
a9e467f8bd17909485329103c17a27da345421257ce82fdf77ff2e00bdae50b13570506a1887300868e99b608c71598596ee260d86879aaeddad14cbb5ec634d

diff --git a/net-misc/wget/files/wget-1.17.1-progress-bar-segv.patch 
b/net-misc/wget/files/wget-1.17.1-progress-bar-segv.patch
deleted file mode 100644
index 5cfd41f..
--- a/net-misc/wget/files/wget-1.17.1-progress-bar-segv.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 7099f4899880eaefc2c40a3dc7693ab4174a819b Mon Sep 17 00:00:00 2001
-From: Darshit Shah 
-Date: Mon, 22 Feb 2016 15:08:15 +0100
-Subject: [PATCH] Sanitize value sent to memset to prevent SEGFAULT
-

- src/progress.c | 5 +
- 1 file changed, 5 insertions(+)
-
-diff --git a/src/progress.c b/src/progress.c
-index 93f6246..8a5df21 100644
 a/src/progress.c
-+++ b/src/progress.c
-@@ -1164,6 +1164,8 @@ create_image (struct bar_progress *bp, double 
dl_total_time, bool done)
- }
- 
-   padding = bp->width - count_cols (bp->buffer);
-+  assert (padding > 0 && "Padding length became non-positive!");
-+  padding = padding > 0 ? padding : 0;
-   memset (p, ' ', padding);
-   p += padding;
-   *p = '\0';
-@@ -1174,6 +1176,9 @@ create_image (struct bar_progress *bp, double 
dl_total_time, bool done)
-* from the release code since we do not want Wget to crash and burn when 
the
-* assertion fails. Instead Wget should continue downloading and display a
-* horrible and irritating progress bar that spams the screen with newlines.
-+   *
-+   * By default, all assertions are disabled in a Wget build and are enabled
-+   * only with the --enable-assert configure option.
-*/
-   assert (count_cols (bp->buffer) == bp->width);
- }
--- 
-2.6.2
-

diff --git a/net-misc/wget/wget-1.17.1-r1.ebuild 
b/net-misc/wget/wget-1.17.1-r1.ebuild
deleted file mode 100644
index 056582a..
--- a/net-misc/wget/wget-1.17.1-r1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{3_3,3_4} )
-
-inherit flag-o-matic python-any-r1 toolchain-funcs eutils
-
-DESCRIPTION="Network utility to retrieve files from the WWW"
-HOMEPAGE="https://www.gnu.org/software/wget/";
-SRC_URI="mirror://gnu/wget/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug gnutls idn ipv6 libressl nls ntlm pcre +ssl static test uuid zlib"
-REQUIRED_USE=" ntlm? ( !gnutls ssl ) gnutls? ( ssl )"
-
-LIB_DEPEND="idn? ( net-dns/libidn[static-libs(+)] )
-   pcre? ( dev-libs/libpcre[static-libs(+)] )
-   ssl? (
-   gnutls? ( net-libs/gnutls:0=[static-libs(+)] )
-   !gnutls? (
-   !libressl? ( dev-libs/openssl:0=[static-libs(+)] )
-   libressl? ( dev-libs/libressl[static-libs(+)] )
-   )
-   )
-   uuid? ( sys-apps/util-linux[static-libs(+)] )
-   zlib? ( sys-libs/zlib[static-libs(+)] )"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   virtual/pkgconfig
-   static? ( ${LIB_DEPEND} )
-   test? (
-   ${PYTHON_DEPS}
-   dev-lang/perl
-   dev-perl/HTTP-Daemon
-  

[gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl/files/, dev-libs/openssl/

2016-10-31 Thread Lars Wendler
commit: 246f6b0590667adffa8967d9ba41bc993119a553
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Oct 31 07:10:08 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Oct 31 07:10:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246f6b05

dev-libs/openssl: Removed vulnerable versions.

Package-Manager: portage-2.3.2
Signed-off-by: Lars Wendler  gentoo.org>

 dev-libs/openssl/Manifest  |   2 -
 .../openssl/files/openssl-1.0.0d-windres.patch |  76 -
 .../files/openssl-1.0.2g-parallel-build.patch  | 318 -
 .../files/openssl-1.0.2h-CVE-2016-2177.patch   | 279 --
 .../files/openssl-1.0.2h-CVE-2016-2178.patch   |  28 --
 dev-libs/openssl/openssl-1.0.2h-r2.ebuild  | 254 
 dev-libs/openssl/openssl-1.0.2i.ebuild | 249 
 7 files changed, 1206 deletions(-)

diff --git a/dev-libs/openssl/Manifest b/dev-libs/openssl/Manifest
index 4d20371..3e6411e 100644
--- a/dev-libs/openssl/Manifest
+++ b/dev-libs/openssl/Manifest
@@ -1,5 +1,3 @@
 DIST openssl-0.9.8zh.tar.gz 3818524 SHA256 
f1d9f3ed1b85a82ecf80d0e2d389e1fda3fca9a4dba0bf07adbf231e1a5e2fd6 SHA512 
b97fa2468211f86c0719c68ad1781eff84f772c479ed5193d6da14bac086b4ca706e7d851209d9df3f0962943b5e5333ab0def00110fb2e517caa73c0c6674c6
 WHIRLPOOL 
8ed3362e6aed89cd6ae02438bc3fb58ff3a91afb8a2d401d1d66c1ee4fd96f4befb50558131dd03a60fc15b588172fc1ede5d56bb1f68e184453bfe3b34f9abf
-DIST openssl-1.0.2h.tar.gz 5274412 SHA256 
1d4007e53aad94a5b2002fe045ee7bb0b3d98f1a47f8b2bc851dcd1c74332919 SHA512 
780601f6f3f32f42b6d7bbc4c593db39a3575f9db80294a10a68b2b0bb79448d9bd529ca700b9977354cbdfc65887c76af0aa7b90d3ee421f74ab53e6f15c303
 WHIRLPOOL 
41b6cf0c08b547f1432dc8167a4c7835da0b6907f8932969e0a352fab8bdbb4d8f612a5bf431e415d93ff1c8238652b2ee3ce0bd935cc2f59e8ea4f40fe6b5d6
-DIST openssl-1.0.2i.tar.gz 5308232 SHA256 
9287487d11c9545b6efb287cdb70535d4e9b284dd10d51441d9b9963d000de6f SHA512 
41764debd5d64e4e770945f30d682e2c887d9cefb39b358c5c7f9d2cdce34393ed28d49b24e95c4639db2df01c278cbcde71bed2b03f9aafafc76766b03850e3
 WHIRLPOOL 
ba1a4513aaa1de81e36912acfe0b6cf8e0acf7cc71d32b127b5e54eb2f6fc6ce63f4f61e9fc99fecc9e037cdccc496b9d15ea75b594b0fd8721b4478eab1f31d
 DIST openssl-1.0.2j.tar.gz 5307912 SHA256 
e7aff292be21c259c6af26469c7a9b3ba26e9abaaffd325e3dccc9785256c431 SHA512 
7d6ccae4aa3ccec3a5d128da29c68401cdb1210cba6d212d55235fc3bc63d7085e2f119e2bbee7ddff6b7b5eef07c6196156791724cd2caf313a4c2fef724edd
 WHIRLPOOL 
1f17e80bc10da2eab9d4c1c3a662b0e2b4f7e8bc448aabb44cd98a96ba3d6cd0ef6cf9a3371d44b39a4d11b1a4087c8f0d056272ace6eba5bd2417f7ab9503b7
 DIST openssl-1.1.0b.tar.gz 5162355 SHA256 
a45de072bf9be4dea437230aaf036000f0e68c6a665931c57e76b5b036cef6f7 SHA512 
b6d66261427f1acc049bf5469a0dc668490e752c2ba4802481809e7e35367213eca17ac9fdc3f23ed5f7a53d303abca78b13a48b169f154043199f2680ccf1a4
 WHIRLPOOL 
bc926b2839f2e85751480ac0a6306bd37ca1ac12759b78654fba6861517bb9979245b95676a60900eab9257334ecf2e1b7d9e406c39a6075054a93ffc1f7a76a

diff --git a/dev-libs/openssl/files/openssl-1.0.0d-windres.patch 
b/dev-libs/openssl/files/openssl-1.0.0d-windres.patch
deleted file mode 100644
index 0b360d2..
--- a/dev-libs/openssl/files/openssl-1.0.0d-windres.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-URL: http://rt.openssl.org/Ticket/Display.html?id=2558&user=guest&pass=guest
-Subject: make windres controllable via build env var settings
-
-atm, the windres code in openssl is only usable via the cross-compile prefix 
-option unlike all the other build tools. so add support for the standard $RC 
-/ $WINDRES env vars as well.
-
-Index: Configure
-===
-RCS file: /usr/local/src/openssl/CVSROOT/openssl/Configure,v
-retrieving revision 1.621.2.40
-diff -u -p -r1.621.2.40 Configure
 Configure  30 Nov 2010 22:19:26 -  1.621.2.40
-+++ Configure  4 Jul 2011 23:12:32 -
-@@ -1094,6 +1094,7 @@ my $shared_extension = $fields[$idx_shar
- my $ranlib = $ENV{'RANLIB'} || $fields[$idx_ranlib];
- my $ar = $ENV{'AR'} || "ar";
- my $arflags = $fields[$idx_arflags];
-+my $windres = $ENV{'RC'} || $ENV{'WINDRES'} || "windres";
- my $multilib = $fields[$idx_multilib];
- 
- # if $prefix/lib$multilib is not an existing directory, then
-@@ -1511,12 +1512,14 @@ while ()
-   s/^AR=\s*/AR= \$\(CROSS_COMPILE\)/;
-   s/^NM=\s*/NM= \$\(CROSS_COMPILE\)/;
-   s/^RANLIB=\s*/RANLIB= \$\(CROSS_COMPILE\)/;
-+  s/^WINDRES=\s*/WINDRES= \$\(CROSS_COMPILE\)/;
-   s/^MAKEDEPPROG=.*$/MAKEDEPPROG= \$\(CROSS_COMPILE\)$cc/ if $cc 
eq "gcc";
-   }
-   else{
-   s/^CC=.*$/CC= $cc/;
-   s/^AR=\s*ar/AR= $ar/;
-   s/^RANLIB=.*/RANLIB= $ranlib/;
-+  s/^WINDRES=.*/WINDRES= $windres/;
-   s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $cc eq "gcc";
-   }
-   s/^CFLAG=.*$/CFLAG= $cflag

[gentoo-commits] repo/gentoo:master commit in: dev-util/android-studio/

2016-10-31 Thread Jason Zaman
commit: 2a5b157576415f431f0fb30de29f5df8f77acb76
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 02:09:21 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 07:14:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5b1575

dev-util/android-studio: drop old

Package-Manager: portage-2.3.0

 dev-util/android-studio/Manifest   |  2 -
 .../android-studio-2.1.2.0.143.2915827.ebuild  | 62 --
 .../android-studio-2.1.3.0.143.3101438.ebuild  | 62 --
 3 files changed, 126 deletions(-)

diff --git a/dev-util/android-studio/Manifest b/dev-util/android-studio/Manifest
index caeab40..b922418 100644
--- a/dev-util/android-studio/Manifest
+++ b/dev-util/android-studio/Manifest
@@ -1,4 +1,2 @@
-DIST android-studio-ide-143.2915827-linux.zip 305181285 SHA256 
baaa0555c96b542d047bce3b03ff41e38f422bed9e1a7f1e55fb1c4b3daac160 SHA512 
42f0e6ebd51fc92f64f3bcfa980df3853922e6bff043ae23fbd7564b79cb905b30927bbee534613a52a92d24e60bad89ee577a06e382b301d5f7f773c166ce07
 WHIRLPOOL 
a344331a3b308b2497e68ac5e13f4d1ef224c02e44d2fcf6cd48f0981bd25a4c87c9355f014fda23a5241e76719a5a6f79ed2424387c70fffc7c4cf964e526b9
-DIST android-studio-ide-143.3101438-linux.zip 286664165 SHA256 
722f944124c395d0c82565257d23441ebc5f7fae47099f8cd48c571c9ff6 SHA512 
3890dcec1c773732a4b54e6e6dd90f9f9b63c396fb0d2712fa4a5b2b8487a055e910f983a8c4da8e3e5b103021267415eb6065f291bd35a633c4723e5cb648cb
 WHIRLPOOL 
f81dbb0c9e4f7a4ac6ff93dbf75022ac9d557503fd89901a24dc9afdf2850cb23c931c52a01101e7fbe87cb5e076f998823a2d7b7e2103d682fdbe7c2b9755b9
 DIST android-studio-ide-145.3276617-linux.zip 449256851 SHA256 
b4b6c82c4d60be9887ac219ebc4efd3cba2508d1a2049242cbf1be3ca55dfe0c SHA512 
71310d6b9fb071fc6b9810765389a2311a62cc706cbe71b2fe466167fb2ded7ebcc2441fe49d34a2942bb79d516f6acfcba5e214e1af42c9e2bc988a28c6fb79
 WHIRLPOOL 
19250788e2355fe85a30731da70d89ff7bf62b95afc17dbd18a82eb1e1b80b1d7325b2f57efbd19e107e30aa46b8a164056273aebe2c82f812df4661ed0c2fbd
 DIST android-studio-ide-145.3360264-linux.zip 466765476 SHA256 
95014a19786c076b31f0ea980eb42a163e9738356ec08a0878b7d67b6b7ec76e SHA512 
446db0013b8d815ee89fa800fb5d610507fdc8b41fc3f09f2b94984ec2918e61cd9296920311f2f394c18521be53e4d7d5b44e6b6f60a617d44a451a61df4a7d
 WHIRLPOOL 
814b227a3b22d6b69a70b7d11fd49c399dc8c45973221d07089ccf94ec07b7aa4c453ce54814d420205eeba203687083d152e81bf2f9a753af4ffb607f47b556

diff --git a/dev-util/android-studio/android-studio-2.1.2.0.143.2915827.ebuild 
b/dev-util/android-studio/android-studio-2.1.2.0.143.2915827.ebuild
deleted file mode 100644
index aa1f4cd..
--- a/dev-util/android-studio/android-studio-2.1.2.0.143.2915827.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit eutils versionator
-
-RESTRICT="strip"
-QA_PREBUILT="opt/${PN}/bin/libbreakgen*.so opt/${PN}/bin/fsnotifier*"
-if [[ $(get_version_component_count) -eq 6 ]]; then
-   STUDIO_V=$(get_version_component_range 1-4)
-   BUILD_V=$(get_version_component_range 5-6)
-else
-   STUDIO_V=$(get_version_component_range 1-3)
-   BUILD_V=$(get_version_component_range 4-5)
-fi
-
-DESCRIPTION="A new Android development environment based on IntelliJ IDEA"
-HOMEPAGE="http://developer.android.com/sdk/installing/studio.html";
-SRC_URI="https://dl.google.com/dl/android/studio/ide-zips/${STUDIO_V}/${PN}-ide-${BUILD_V}-linux.zip";
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="selinux"
-KEYWORDS="amd64 x86"
-
-DEPEND="app-arch/zip"
-RDEPEND=">=virtual/jdk-1.7
-   selinux? ( sec-policy/selinux-android )
-   >=app-arch/bzip2-1.0.6-r4[abi_x86_32(-)]
-   >=dev-libs/expat-2.1.0-r3[abi_x86_32(-)]
-   >=dev-libs/libffi-3.0.13-r1[abi_x86_32(-)]
-   >=media-libs/fontconfig-2.10.92[abi_x86_32(-)]
-   >=media-libs/freetype-2.5.5[abi_x86_32(-)]
-   >=media-libs/libpng-1.2.51[abi_x86_32(-)]
-   >=media-libs/mesa-10.2.8[abi_x86_32(-)]
-   || ( >=sys-libs/ncurses-5.9-r3:5/5[abi_x86_32(-)] 
>=sys-libs/ncurses-5.9-r3:0/5[abi_x86_32(-)] )
-   >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)]
-   >=x11-libs/libX11-1.6.2[abi_x86_32(-)]
-   >=x11-libs/libXau-1.0.7-r1[abi_x86_32(-)]
-   >=x11-libs/libXdamage-1.1.4-r1[abi_x86_32(-)]
-   >=x11-libs/libXdmcp-1.1.1-r1[abi_x86_32(-)]
-   >=x11-libs/libXext-1.3.2[abi_x86_32(-)]
-   >=x11-libs/libXfixes-5.0.1[abi_x86_32(-)]
-   >=x11-libs/libXrender-0.9.8[abi_x86_32(-)]
-   >=x11-libs/libXxf86vm-1.1.3[abi_x86_32(-)]
-   >=x11-libs/libdrm-2.4.46[abi_x86_32(-)]
-   >=x11-libs/libxcb-1.9.1[abi_x86_32(-)]
-   >=x11-libs/libxshmfence-1.1[abi_x86_32(-)]"
-S=${WORKDIR}/${PN}
-
-src_install() {
-   local dir="/opt/${PN}"
-
-   insinto "${dir}"
-   doins -r *
-   fperms 755 "${dir}/bin/studio.sh" "${dir}/bin/fsnotifier" 
"${dir}/bin/fsnotifier64"
-
-   newicon "bin/studio.png" "${PN}.pn

[gentoo-commits] repo/gentoo:master commit in: dev-util/android-studio/

2016-10-31 Thread Jason Zaman
commit: 0f2942f6da243334aac2ad1725b5376b0cba5c99
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 02:05:08 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 07:14:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f2942f6

dev-util/android-studio: bump 2.2.2.0.145.3360264

* java_prepare is no longer called, define src_prepare instead.

Package-Manager: portage-2.3.0

 dev-util/android-studio/Manifest   |  1 +
 .../android-studio-2.2.2.0.145.3360264.ebuild  | 96 ++
 2 files changed, 97 insertions(+)

diff --git a/dev-util/android-studio/Manifest b/dev-util/android-studio/Manifest
index ffeb003..caeab40 100644
--- a/dev-util/android-studio/Manifest
+++ b/dev-util/android-studio/Manifest
@@ -1,3 +1,4 @@
 DIST android-studio-ide-143.2915827-linux.zip 305181285 SHA256 
baaa0555c96b542d047bce3b03ff41e38f422bed9e1a7f1e55fb1c4b3daac160 SHA512 
42f0e6ebd51fc92f64f3bcfa980df3853922e6bff043ae23fbd7564b79cb905b30927bbee534613a52a92d24e60bad89ee577a06e382b301d5f7f773c166ce07
 WHIRLPOOL 
a344331a3b308b2497e68ac5e13f4d1ef224c02e44d2fcf6cd48f0981bd25a4c87c9355f014fda23a5241e76719a5a6f79ed2424387c70fffc7c4cf964e526b9
 DIST android-studio-ide-143.3101438-linux.zip 286664165 SHA256 
722f944124c395d0c82565257d23441ebc5f7fae47099f8cd48c571c9ff6 SHA512 
3890dcec1c773732a4b54e6e6dd90f9f9b63c396fb0d2712fa4a5b2b8487a055e910f983a8c4da8e3e5b103021267415eb6065f291bd35a633c4723e5cb648cb
 WHIRLPOOL 
f81dbb0c9e4f7a4ac6ff93dbf75022ac9d557503fd89901a24dc9afdf2850cb23c931c52a01101e7fbe87cb5e076f998823a2d7b7e2103d682fdbe7c2b9755b9
 DIST android-studio-ide-145.3276617-linux.zip 449256851 SHA256 
b4b6c82c4d60be9887ac219ebc4efd3cba2508d1a2049242cbf1be3ca55dfe0c SHA512 
71310d6b9fb071fc6b9810765389a2311a62cc706cbe71b2fe466167fb2ded7ebcc2441fe49d34a2942bb79d516f6acfcba5e214e1af42c9e2bc988a28c6fb79
 WHIRLPOOL 
19250788e2355fe85a30731da70d89ff7bf62b95afc17dbd18a82eb1e1b80b1d7325b2f57efbd19e107e30aa46b8a164056273aebe2c82f812df4661ed0c2fbd
+DIST android-studio-ide-145.3360264-linux.zip 466765476 SHA256 
95014a19786c076b31f0ea980eb42a163e9738356ec08a0878b7d67b6b7ec76e SHA512 
446db0013b8d815ee89fa800fb5d610507fdc8b41fc3f09f2b94984ec2918e61cd9296920311f2f394c18521be53e4d7d5b44e6b6f60a617d44a451a61df4a7d
 WHIRLPOOL 
814b227a3b22d6b69a70b7d11fd49c399dc8c45973221d07089ccf94ec07b7aa4c453ce54814d420205eeba203687083d152e81bf2f9a753af4ffb607f47b556

diff --git a/dev-util/android-studio/android-studio-2.2.2.0.145.3360264.ebuild 
b/dev-util/android-studio/android-studio-2.2.2.0.145.3360264.ebuild
new file mode 100644
index ..19ffb94
--- /dev/null
+++ b/dev-util/android-studio/android-studio-2.2.2.0.145.3360264.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils java-pkg-2 versionator
+
+RESTRICT="strip"
+QA_PREBUILT="opt/${PN}/bin/libbreakgen*.so opt/${PN}/bin/fsnotifier*"
+if [[ $(get_version_component_count) -eq 6 ]]; then
+   STUDIO_V=$(get_version_component_range 1-4)
+   BUILD_V=$(get_version_component_range 5-6)
+else
+   STUDIO_V=$(get_version_component_range 1-3)
+   BUILD_V=$(get_version_component_range 4-5)
+fi
+
+DESCRIPTION="A new Android development environment based on IntelliJ IDEA"
+HOMEPAGE="http://developer.android.com/sdk/installing/studio.html";
+SRC_URI="https://dl.google.com/dl/android/studio/ide-zips/${STUDIO_V}/${PN}-ide-${BUILD_V}-linux.zip";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="selinux"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="app-arch/zip
+   dev-java/commons-logging:0
+   dev-java/log4j:0"
+
+#  dev-java/guava:18
+RDEPEND=">=virtual/jdk-1.7
+   selinux? ( sec-policy/selinux-android )
+   >=app-arch/bzip2-1.0.6-r4
+   dev-java/commons-logging:0
+   dev-java/log4j:0
+   >=dev-libs/expat-2.1.0-r3
+   >=dev-libs/libffi-3.0.13-r1
+   gnome-extra/zenity
+   >=media-libs/fontconfig-2.10.92
+   >=media-libs/freetype-2.5.5
+   >=media-libs/libpng-1.2.51
+   >=media-libs/mesa-10.2.8
+   || ( >=sys-libs/ncurses-5.9-r3:5/5 >=sys-libs/ncurses-5.9-r3:0/5 )
+   >=sys-libs/zlib-1.2.8-r1
+   >=x11-libs/libX11-1.6.2
+   >=x11-libs/libXau-1.0.7-r1
+   >=x11-libs/libXdamage-1.1.4-r1
+   >=x11-libs/libXdmcp-1.1.1-r1
+   >=x11-libs/libXext-1.3.2
+   >=x11-libs/libXfixes-5.0.1
+   >=x11-libs/libXrender-0.9.8
+   >=x11-libs/libXxf86vm-1.1.3
+   >=x11-libs/libdrm-2.4.46
+   >=x11-libs/libxcb-1.9.1
+   >=x11-libs/libxshmfence-1.1"
+S=${WORKDIR}/${PN}
+
+src_prepare() {
+   eapply_user
+   # This is really a bundled jdk not a jre
+   rm -R "${S}/jre" || die "Could not remove bundled jdk"
+
+   # Replace bundled jars with system
+   # has problems with newer jdom:0 not updated to jdom:2
+   cd "${S}/lib"
+   local JARS="commons-logging log4j"
+   local j
+   for j in ${JARS}

[gentoo-commits] repo/gentoo:master commit in: dev-util/android-studio/

2016-10-31 Thread Jason Zaman
commit: b660b779ef040027969dd320c05fc39107ea7b55
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 02:08:29 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 07:14:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b660b779

dev-util/android-studio: stable 2.2.0

Package-Manager: portage-2.3.0

 dev-util/android-studio/android-studio-2.2.0.12.145.3276617-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-util/android-studio/android-studio-2.2.0.12.145.3276617-r1.ebuild 
b/dev-util/android-studio/android-studio-2.2.0.12.145.3276617-r1.ebuild
index f2de707..5a4f0a9 100644
--- a/dev-util/android-studio/android-studio-2.2.0.12.145.3276617-r1.ebuild
+++ b/dev-util/android-studio/android-studio-2.2.0.12.145.3276617-r1.ebuild
@@ -22,7 +22,7 @@ 
SRC_URI="https://dl.google.com/dl/android/studio/ide-zips/${STUDIO_V}/${PN}-ide-
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="selinux"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="app-arch/zip
dev-java/commons-logging:0



[gentoo-commits] repo/gentoo:master commit in: dev-util/ctags/, dev-util/ctags/files/

2016-10-31 Thread Tim Harder
commit: 6635a8c6cb2423209613660b53d8360ebe621a75
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Oct 31 07:30:14 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Oct 31 07:33:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6635a8c6

dev-util/ctags: version bump to 20161028 universal-ctags snapshot

 dev-util/ctags/Manifest|  1 +
 dev-util/ctags/ctags-20161028.ebuild   | 67 ++
 .../files/ctags-20161028-automagic-deps.patch  | 65 +
 dev-util/ctags/metadata.xml|  3 +
 4 files changed, 136 insertions(+)

diff --git a/dev-util/ctags/Manifest b/dev-util/ctags/Manifest
index 53e165a..8c49aa0 100644
--- a/dev-util/ctags/Manifest
+++ b/dev-util/ctags/Manifest
@@ -1,3 +1,4 @@
+DIST ctags-20161028.tar.xz 852108 SHA256 
8c10b3728ed90793fa25e5225e8cf56ee0a01b5da6d2bcdccd97e8ec0db2da4e SHA512 
2b991ca47fc77d26da43f55753624d1b21363dbeec4aff3daa57762ff81df97b18b067e8989f5d92d36dd8c02abc04ad42296dd5da3659ae0c8901001287c75e
 WHIRLPOOL 
ac8b51f9d453c7d5ae52044d711949112f0523c61c5de12827188c694f616c5108ff4af86e2b810da859b88ba9ada1a9f9d36ba52060ebb16ed570f185caea95
 DIST ctags-5.8.tar.gz 479927 SHA256 
0e44b45dcabe969e011e30c246f81abe5d32012db37395eb57d66e9e99c7 SHA512 
981912cd335978cde22864e977947fc75326572fb29518e559cc4a8ac1edc84b3604165218a666e36353f17da4f89f8e967acdb88696f816748eb946d79eaa15
 WHIRLPOOL 
04506a4495025907ee5fe41b9c4ff104dd234fc9ef39bd594158b36c550bf511b6ab5980a98736f9857dc47b99f1718a7ae2928fd4a1d1c0b57dfd3d79fce2ea
 DIST ctags-5.8_p20140919.tar.gz 582289 SHA256 
eebc85bd0206988250d9b24a7d02918bbca751259b086d5f53f31b4b39f571ee SHA512 
3b6ad6e2d1f683dffe9e79c607f9cc222c4aa3c1f5113540cd18ea66d8f862917c9d849ee81d8b33a57ddd09749fa28fde74868d48479269a6e17b6c0451342d
 WHIRLPOOL 
0c4008e914aed33097641fbb517f33e2ccf771a968ae3d1f6288422cdb634dda054ece11dd6204d624c9c78d4a36cecc4bb9d696d07f2bba24f3099aa3758f48
 DIST ctags-ada-mode-4.3.11.tar.bz2 14060 SHA256 
d25a3fd26b356adbd068f10a0b68691d36c154c04b96304b96386e169e4b6b57 SHA512 
51c71e13ef658cd6682f04c94485315c4a702080ef2c7786fc9881b03c86f1c1d43aa1a69c452e4b0b2f7a78383804b66b159542cb4eae0cd309bc1ddbe2eb6e
 WHIRLPOOL 
7e0ded8c97d3651e1afe48ec836697a4a19264baf3b203f6e98c134b88e3ab0eee7ac660789f5b955f0f827128996988694aa6c4bc78f18adf52724c5230da5d

diff --git a/dev-util/ctags/ctags-20161028.ebuild 
b/dev-util/ctags/ctags-20161028.ebuild
new file mode 100644
index ..18e793e
--- /dev/null
+++ b/dev-util/ctags/ctags-20161028.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Exuberant Ctags creates tags files for code browsing in editors"
+HOMEPAGE="https://ctags.io/ https://github.com/universal-ctags/ctags";
+SRC_URI="http://dev.gentoo.org/~radhermit/vim/${P}.tar.xz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-aix ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="json xml yaml"
+
+COMMON_DEPEND="
+   json? ( dev-libs/jansson )
+   xml? ( dev-libs/libxml2:2 )
+   yaml? ( dev-libs/libyaml )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   app-eselect/eselect-ctags
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}"/${P}-automagic-deps.patch )
+
+src_prepare() {
+   default
+   ./autogen.sh || die
+}
+
+src_configure() {
+   econf \
+   $(use_enable json) \
+   $(use_enable xml) \
+   $(use_enable yaml) \
+   --disable-readlib \
+   --disable-etags \
+   --enable-tmpdir="${EPREFIX}"/tmp
+}
+
+src_install() {
+   emake prefix="${ED}"/usr mandir="${ED}"/usr/share/man install
+
+   # namepace collision with X/Emacs-provided /usr/bin/ctags -- we
+   # rename ctags to exuberant-ctags (Mandrake does this also).
+   mv "${ED}"/usr/bin/{ctags,exuberant-ctags} || die
+   mv "${ED}"/usr/share/man/man1/{ctags,exuberant-ctags}.1 || die
+}
+
+pkg_postinst() {
+   eselect ctags update
+
+   if [[ -z "$REPLACING_VERSIONS" ]]; then
+   elog "You can set the version to be started by /usr/bin/ctags 
through"
+   elog "the ctags eselect module. \"man ctags.eselect\" for 
details."
+   fi
+}
+
+pkg_postrm() {
+   eselect ctags update
+}

diff --git a/dev-util/ctags/files/ctags-20161028-automagic-deps.patch 
b/dev-util/ctags/files/ctags-20161028-automagic-deps.patch
new file mode 100644
index ..82daf14
--- /dev/null
+++ b/dev-util/ctags/files/ctags-20161028-automagic-deps.patch
@@ -0,0 +1,65 @@
+Add options to control libxml2, jansson, and libyaml

[gentoo-commits] repo/gentoo:master commit in: sys-apps/ripgrep/

2016-10-31 Thread Tim Harder
commit: 23a0534045ba68ab395fd445c0e60b95ea0988e4
Author: Tim Harder  gentoo  org>
AuthorDate: Mon Oct 31 07:11:34 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Mon Oct 31 07:32:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a05340

sys-apps/ripgrep: initial import

 sys-apps/ripgrep/Manifest |  1 +
 sys-apps/ripgrep/metadata.xml | 11 +++
 sys-apps/ripgrep/ripgrep-0.2.5.ebuild | 30 ++
 3 files changed, 42 insertions(+)

diff --git a/sys-apps/ripgrep/Manifest b/sys-apps/ripgrep/Manifest
new file mode 100644
index ..5c805b9
--- /dev/null
+++ b/sys-apps/ripgrep/Manifest
@@ -0,0 +1 @@
+DIST ripgrep-0.2.5.tar.gz 389606 SHA256 
2e535701ed4c36875a29041b4a47629af514182177b82d681a8e4d0fed4a9767 SHA512 
c5359ab5120ed355c8e72fded34c311440b357244be6b3950732953b8b6cd558d429e4c6e86737983bdea9118f58e4f26048c4b2374559cf8e14146afcc20fec
 WHIRLPOOL 
c5ead5378942cf9f75bd1681e9d18e58704597dc7512c50edfbf3600d326519fa8493fa7d61addef81b19650fdfcd000a5dbfd905f5d50194ad88a062fefe4c4

diff --git a/sys-apps/ripgrep/metadata.xml b/sys-apps/ripgrep/metadata.xml
new file mode 100644
index ..7cecc57
--- /dev/null
+++ b/sys-apps/ripgrep/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+radher...@gentoo.org
+Tim Harder
+  
+  
+BurntSushi/ripgrep
+  
+

diff --git a/sys-apps/ripgrep/ripgrep-0.2.5.ebuild 
b/sys-apps/ripgrep/ripgrep-0.2.5.ebuild
new file mode 100644
index ..bb241f2
--- /dev/null
+++ b/sys-apps/ripgrep/ripgrep-0.2.5.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cargo
+
+DESCRIPTION="a command line search tool that combines usability with raw speed"
+HOMEPAGE="https://github.com/BurntSushi/ripgrep";
+SRC_URI="https://github.com/BurntSushi/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( MIT Unlicense )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-util/cargo"
+
+src_compile() {
+   cargo build --release || die
+}
+
+src_test() {
+   cargo test || die "tests failed"
+}
+
+src_install() {
+   dobin target/release/rg
+   doman doc/rg.1
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/openvpn/files/, net-misc/openvpn/

2016-10-31 Thread Jeroen Roovers
commit: 38a2afc7ae87155bfd6c25fb8c370e1117d13cf4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 31 07:41:40 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 31 07:41:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38a2afc7

net-misc/openvpn: Old.

Package-Manager: portage-2.3.2

 net-misc/openvpn/Manifest  |   1 -
 net-misc/openvpn/files/65openvpn   |   1 -
 net-misc/openvpn/files/openvpn.init|  63 ---
 net-misc/openvpn/files/openvpn.service |  12 ---
 net-misc/openvpn/openvpn-2.3.11.ebuild | 138 -
 5 files changed, 215 deletions(-)

diff --git a/net-misc/openvpn/Manifest b/net-misc/openvpn/Manifest
index 896536c..443bd2e 100644
--- a/net-misc/openvpn/Manifest
+++ b/net-misc/openvpn/Manifest
@@ -1,2 +1 @@
-DIST openvpn-2.3.11.tar.gz 1242816 SHA256 
9117a4434fd35e61cf94f9ee7ef84b7aecbc6fa556f779ff599560f219756163 SHA512 
10273dc2c13a3db4b4d21bdac51c441bd028045d7ad710ce54b58d9713278e1c083f25b0e4842b8cc77ed8b804ce0fa50ed17eb5c05478d2f4e158b892d7c565
 WHIRLPOOL 
899402429458b4da6b528a52de8261393f9ebf3aa9ce76e196c034c406d286f13c62bd30a69f14491c476eb7bfc6d7d1730a30f0d64cc317fb09a8e745ca1cdb
 DIST openvpn-2.3.12.tar.gz 1235262 SHA256 
f5d39b8c55f75b0aab943059b20571452b494146d997b12d48ce9bd753c01cff SHA512 
8de40e9177268cce64906915ddc0d23381b4040ed00e6eefe4784b04d48f50d5c5ce9e99886eb18fe45d22c5c047478b9aa942e4c4eeaf115cc443a1d3ebe631
 WHIRLPOOL 
4adeb0da83a4fbff27bc90a3941b593f97dfdc3f50c3ccf10c113293bb0e4f85ead680b53645a2a078f907026549c8dbf068dcc64c9f89b6a967b3eb919f2c8c

diff --git a/net-misc/openvpn/files/65openvpn b/net-misc/openvpn/files/65openvpn
deleted file mode 100644
index 4ddb034..
--- a/net-misc/openvpn/files/65openvpn
+++ /dev/null
@@ -1 +0,0 @@
-CONFIG_PROTECT="/usr/share/openvpn/easy-rsa"

diff --git a/net-misc/openvpn/files/openvpn.init 
b/net-misc/openvpn/files/openvpn.init
deleted file mode 100644
index 1569394..
--- a/net-misc/openvpn/files/openvpn.init
+++ /dev/null
@@ -1,63 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-VPNDIR="/etc/openvpn"
-VPN="${SVCNAME#*.}"
-if [ -n "${VPN}" ] && [ "${SVCNAME}" != "openvpn" ]; then
-   VPNPID="/var/run/openvpn.${VPN}.pid"
-else
-   VPNPID="/var/run/openvpn.pid"
-fi
-VPNCONF="${VPNDIR}/${VPN}.conf"
-
-depend() {
-   need localmount net
-   before netmount
-   after bootmisc
-}
-
-checktundevice() {
-   if [ ! -e /dev/net/tun ]; then
-   if ! modprobe tun ; then
-   eerror "TUN/TAP support is not available in this kernel"
-   return 1
-   fi
-   fi
-   if [ -h /dev/net/tun ] && [ -c /dev/misc/net/tun ]; then
-   ebegin "Detected broken /dev/net/tun symlink, fixing..."
-   rm -f /dev/net/tun
-   ln -s /dev/misc/net/tun /dev/net/tun
-   eend $?
-   fi
-}
-
-start() {
-   ebegin "Starting ${SVCNAME}"
-
-   checktundevice || return 1
-
-   if [ ! -e "${VPNCONF}" ]; then
-   eend 1 "${VPNCONF} does not exist"
-   return 1
-   fi
-
-   local args=""
-   # If the config file does not specify the cd option, we do
-   # But if we specify it, we override the config option which we do not 
want
-   if ! grep -q "^[]*cd[   ].*" "${VPNCONF}" ; then
-   args="${args} --cd ${VPNDIR}"
-   fi
-
-   start-stop-daemon --start --exec /usr/sbin/openvpn --pidfile 
"${VPNPID}" \
-   -- --config "${VPNCONF}" --writepid "${VPNPID}" --daemon ${args}
-   eend $? "Check your logs to see why startup failed"
-}
-
-stop() {
-   ebegin "Stopping ${SVCNAME}"
-   start-stop-daemon --stop --exec /usr/sbin/openvpn --pidfile "${VPNPID}"
-   eend $?
-}
-
-# vim: ts=4

diff --git a/net-misc/openvpn/files/openvpn.service 
b/net-misc/openvpn/files/openvpn.service
deleted file mode 100644
index 358dcb7..
--- a/net-misc/openvpn/files/openvpn.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=OpenVPN Robust And Highly Flexible Tunneling Application On %I
-After=syslog.target network.target
-
-[Service]
-PrivateTmp=true
-Type=forking
-PIDFile=/var/run/openvpn/%i.pid
-ExecStart=/usr/sbin/openvpn --daemon --writepid /var/run/openvpn/%i.pid --cd 
/etc/openvpn/ --config %i.conf
-
-[Install]
-WantedBy=multi-user.target

diff --git a/net-misc/openvpn/openvpn-2.3.11.ebuild 
b/net-misc/openvpn/openvpn-2.3.11.ebuild
deleted file mode 100644
index ebfc5bd..
--- a/net-misc/openvpn/openvpn-2.3.11.ebuild
+++ /dev/null
@@ -1,138 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit multilib flag-o-matic user systemd linux-info
-
-DESCRIPTION="Robust and highly flexible tunneling application compatible wit

[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql/

2016-10-31 Thread Jeroen Roovers
commit: 22dcddd36c3fe8b35963b2a8b8b2bff2c41bdb03
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Oct 31 07:39:56 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Oct 31 07:39:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22dcddd3

dev-db/mysql: Stable for HPPA (bug #597538).

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

 dev-db/mysql/mysql-5.6.34.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql/mysql-5.6.34.ebuild b/dev-db/mysql/mysql-5.6.34.ebuild
index f3363ac..aa2119a 100644
--- a/dev-db/mysql/mysql-5.6.34.ebuild
+++ b/dev-db/mysql/mysql-5.6.34.ebuild
@@ -15,7 +15,7 @@ inherit mysql-multilib-r1
 IUSE="$IUSE"
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 
 # When MY_EXTRAS is bumped, the index should be revised to exclude these.
 EPATCH_EXCLUDE=''



[gentoo-commits] repo/gentoo:master commit in: sci-physics/yoda/

2016-10-31 Thread David Seifert
commit: 239d0c8bbfff2f258149aed55337c7bb0cf38d71
Author: Gerhard Bräunlich  gmx  net>
AuthorDate: Sat Oct 29 22:35:29 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Oct 31 08:22:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=239d0c8b

sci-physics/yoda: Version bump to 1.6.5 and EAPI bump 5 -> 6

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2698

Signed-off-by: David Seifert  gentoo.org>

 sci-physics/yoda/Manifest  |  1 +
 sci-physics/yoda/yoda-1.6.5.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/sci-physics/yoda/Manifest b/sci-physics/yoda/Manifest
index 4e6f617..47f9f97 100644
--- a/sci-physics/yoda/Manifest
+++ b/sci-physics/yoda/Manifest
@@ -1 +1,2 @@
 DIST YODA-1.4.0.tar.bz2 809432 SHA256 
e76a129f7c2b72b53525fe0b712606eeeab0dc145daa070ebf0728f0384eaf48 SHA512 
f1873888f3d2c28d42ac54fa9f3fa4a98e648a638ebceffce0a2f742c5fb6647fabd0de49c00407741e937600fc8a12d33ca26b8b9cd9b81c28a4d2e11f2bd3a
 WHIRLPOOL 
6c8e0176b729d951351b3b9d574c91add5d6302aa76417241e560f3f3bbf38f4b60f41713d89a03a62b1c4ad3a98bd5342fd05901671e6aedf0c2c11dc36b024
+DIST YODA-1.6.5.tar.bz2 818613 SHA256 
1477fe754cfe2e4e06aa363a773accf18aab960a8b899968b77834368cac14c5 SHA512 
bead0a3ada233c1fbafe66d25e65262c20d9a9dfa6265440320a0fc782e91b3ac6581698e2015d86f2b58dc305dedbc48ed648ff03ec9f6abc11a7fb27938b1a
 WHIRLPOOL 
b6b88832b89357dbf0309641f9e4180f0c0fabf917ec7f36bafe75b811b849f0cf1cf24877b468b50d340f7a1ae1575d07fc63e9ec810a318dda7adb9b9aeed7

diff --git a/sci-physics/yoda/yoda-1.6.5.ebuild 
b/sci-physics/yoda/yoda-1.6.5.ebuild
new file mode 100644
index ..ee66c0a
--- /dev/null
+++ b/sci-physics/yoda/yoda-1.6.5.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit bash-completion-r1 python-single-r1
+
+DESCRIPTION="Yet more Objects for (High Energy Physics) Data Analysis"
+HOMEPAGE="http://yoda.hepforge.org/";
+
+SRC_URI="http://www.hepforge.org/archive/${PN}/${P^^}.tar.bz2";
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="python root static-libs"
+
+RDEPEND="
+   dev-libs/boost:=
+   python? ( ${PYTHON_DEPS} )
+   root? ( sci-physics/root:=[python=,${PYTHON_USEDEP}] )"
+DEPEND="${RDEPEND}
+   python? ( dev-python/cython[${PYTHON_USEDEP}] )"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+S="${WORKDIR}/${P^^}"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   econf \
+   $(use_enable python pyext) \
+   $(use_enable root) \
+   $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+
+   newbashcomp "${ED%/}"/usr/share/YODA/yoda-completion ${PN}
+   rm "${ED%/}"/usr/share/YODA/yoda-completion || die
+}



[gentoo-commits] repo/gentoo:master commit in: sci-physics/meep/

2016-10-31 Thread David Seifert
commit: b8a1d8bb027d111d70808d6456df5662fa1ff4a6
Author: Gerhard Bräunlich  gmx  net>
AuthorDate: Sun Oct 30 12:22:36 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Oct 31 08:04:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8a1d8bb

sci-physics/meep: Version bump to 1.3, EAPI bump 4 -> 6

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2699

Signed-off-by: David Seifert  gentoo.org>

 sci-physics/meep/Manifest|  1 +
 sci-physics/meep/meep-1.3.ebuild | 59 
 2 files changed, 60 insertions(+)

diff --git a/sci-physics/meep/Manifest b/sci-physics/meep/Manifest
index c319320..45eac32 100644
--- a/sci-physics/meep/Manifest
+++ b/sci-physics/meep/Manifest
@@ -1,2 +1,3 @@
 DIST meep-1.1.1.tar.gz 751244 SHA256 
7a97bda1f9ea2ec6eed5c45bd97bcd6ddbd54bdfc181f46c696dffc169f2 SHA512 
cc081b7c63dc4ecda600dd5f55b3833f25fcfd1c1fded0af3a9bbd0471e36f0e54045a78ea52c99ca8aa3beccbe8e6e8afccbbadf869cd5b926a765b0c32618a
 WHIRLPOOL 
2a894c63cb5bf4e907cc3da90ac3c5ff53f181b1e2d9695876806b3b67cb0da5fbc239033ffc33f84d1510bb5851910b33ead9b49dc769ce39e6fd420d990f78
 DIST meep-1.2.tar.gz 807522 SHA256 
2734737b8053a45942bc1a50933d63b6fd18c7dc3cf33e92e0815ece93138942 SHA512 
f7b25183491881d59653ba5bc727a2b4f5deb126d515ff7ed5df7a1f9d31a5161b720348e65f45b9c76004be44714c606c4b8063f855b5cc97ff7757bd5a5656
 WHIRLPOOL 
54940326d8f304a57c2dd69c411ef394f44cd2c57367f16a4a0dd6d3fa6df0ee01e0b0081048b4ec3fd8eff404e76507d6dea5db1b9b975096a40d34d1595080
+DIST meep-1.3.tar.gz 740890 SHA256 
564c1ff1b413a3487cf81048a45deabfdac4243a1a37ce743f4fcf0c055fd438 SHA512 
4ad8d68f27d9971fe6dd4b8440f78d5b141fe747a80c50da55ecbc56a5beb0c2d31441fb46b54cac3c62d4cb34cb1ce6819c06bd2c54bc35f129ba683dc84aea
 WHIRLPOOL 
cc7a5ae88a7c3ccaabd47472ce706465b38d35598288c7d35c237d34ce691d021a5f1ab3c6fe754a0f039ed9cb0ea04cfe883555c2377f7ee2e34f2ab8424944

diff --git a/sci-physics/meep/meep-1.3.ebuild b/sci-physics/meep/meep-1.3.ebuild
new file mode 100644
index ..8d0317c
--- /dev/null
+++ b/sci-physics/meep/meep-1.3.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Simulation software to model electromagnetic systems"
+HOMEPAGE="http://ab-initio.mit.edu/meep/";
+SRC_URI="http://ab-initio.mit.edu/meep/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples hdf5 guile mpi"
+
+RDEPEND="
+   sci-libs/fftw:3.0=
+   sci-libs/gsl:=
+   sci-physics/harminv
+   guile? ( >=sci-libs/libctl-3.2 )
+   hdf5? ( sci-libs/hdf5:= )
+   mpi? ( virtual/mpi )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.2-pc-no-ldflags.patch
+   "${FILESDIR}"/${PN}-1.2-no-auto-mpb.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_with mpi) \
+   $(use_with hdf5) \
+   $(use_with guile libctl)
+}
+
+src_test() {
+   # pml test buggy with optimization on
+   # 
http://thread.gmane.org/gmane.comp.science.electromagnetism.meep.general/4579
+   emake -C tests pml CXXFLAGS="-O0"
+   emake check
+}
+
+src_install() {
+   default
+
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/nbformat/

2016-10-31 Thread David Seifert
commit: 88c6f29ef99834dd37b783072344b6f8d1c032cd
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sun Oct 30 22:30:50 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Oct 31 08:00:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88c6f29e

dev-python/nbformat: Fix test call and dependencies

Gentoo-bug: 597730

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2701

Signed-off-by: David Seifert  gentoo.org>

 dev-python/nbformat/nbformat-4.1.0.ebuild | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-python/nbformat/nbformat-4.1.0.ebuild 
b/dev-python/nbformat/nbformat-4.1.0.ebuild
index 6014a32..4771a06 100644
--- a/dev-python/nbformat/nbformat-4.1.0.ebuild
+++ b/dev-python/nbformat/nbformat-4.1.0.ebuild
@@ -21,7 +21,7 @@ IUSE="doc test"
 RDEPEND="
>=dev-python/jsonschema-2.4.0[${PYTHON_USEDEP}]
dev-python/ipython_genutils[${PYTHON_USEDEP}]
-   dev-python/traitlets[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-4.1[${PYTHON_USEDEP}]
dev-python/jupyter_core[${PYTHON_USEDEP}]
"
 DEPEND="${RDEPEND}
@@ -30,8 +30,9 @@ DEPEND="${RDEPEND}
dev-python/numpydoc[${PYTHON_USEDEP}]
)
test? (
-   dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/testpath[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-cov[${PYTHON_USEDEP}]
)
"
 
@@ -51,7 +52,7 @@ python_compile_all() {
 python_test() {
distutils_install_for_testing
cd "${TEST_DIR}"/lib || die
-   nosetests --with-coverage --cover-package=nbformat nbformat || die
+   py.test -v --cov nbformat nbformat || die
 }
 
 python_install_all() {



[gentoo-commits] repo/gentoo:master commit in: dev-python/nbconvert/

2016-10-31 Thread David Seifert
commit: f55bda7b2e9ea4b3de3cedbac71aaa2784fb09de
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sun Oct 30 22:20:51 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Mon Oct 31 08:00:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f55bda7b

dev-python/nbconvert: Fix test call and dependencies

Gentoo-bug: 597902

Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/2700

Signed-off-by: David Seifert  gentoo.org>

 dev-python/nbconvert/nbconvert-4.2.0.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-python/nbconvert/nbconvert-4.2.0.ebuild 
b/dev-python/nbconvert/nbconvert-4.2.0.ebuild
index 15080a0..3f6e2a0 100644
--- a/dev-python/nbconvert/nbconvert-4.2.0.ebuild
+++ b/dev-python/nbconvert/nbconvert-4.2.0.ebuild
@@ -35,9 +35,11 @@ DEPEND="${RDEPEND}
app-text/pandoc
)
test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/nose[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/testpath[${PYTHON_USEDEP}]
)
"
 
@@ -57,7 +59,7 @@ python_compile_all() {
 python_test() {
distutils_install_for_testing
cd "${TEST_DIR}"/lib || die
-   nosetests --with-coverage --cover-package=nbconvert nbconvert || die
+   py.test --cov nbconvert -v --pyargs nbconvert || die
 }
 
 python_install_all() {



[gentoo-commits] repo/gentoo:master commit in: media-video/gaupol/

2016-10-31 Thread Michał Górny
commit: b66fb5707db37ba00b816f2f80d220dd6dce3f58
Author: Louis Sautier  gmail  com>
AuthorDate: Sat Oct 29 20:06:31 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 09:17:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b66fb570

media-video/gaupol: bump to 1.0

Closes: https://github.com/gentoo/gentoo/pull/2697
Package-Manager: portage-2.3.2

 media-video/gaupol/Manifest  |  1 +
 media-video/gaupol/gaupol-1.0.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/media-video/gaupol/Manifest b/media-video/gaupol/Manifest
index 8efc1c3..3035be0 100644
--- a/media-video/gaupol/Manifest
+++ b/media-video/gaupol/Manifest
@@ -1,2 +1,3 @@
 DIST gaupol-0.91.tar.gz 518493 SHA256 
cb7d2d3fa4dfd321802eb6c3dd0a2f9582a9195a70b153d0ce65f2dfa9048add SHA512 
92459ec0a7d77c8e4a34f44489ae8fc01feeb2d34f6fd152c8bfeaf72b8235c680155698c55e7f9d46ce82bee8274b14313b6a43167f65f784511e583d4858fb
 WHIRLPOOL 
7d46d9bb20d104355f16a966a46e25eb76e8cb72fa5082b9526a6ee3b012312dc1e5a6a74d6fe850cce40d9ce993b4a06471ec93ac907bb1f3de30409217ff43
 DIST gaupol-0.92.tar.gz 519991 SHA256 
790928bb7863d4f1484bcd907f23f8b938f71b491860d51e497e63729e1e3bf8 SHA512 
828bba44b8fbf2c2ab074a1479b1b9cc4e42eee98d87e5f32f049bc2c34ccfbdf9488256b794a134f93d4c01249c42361f72bf9df5819e528d59e9e7285f9dd3
 WHIRLPOOL 
7acb87b80e7a534fee19b40fbebaf99ae586bce49957122211ead814a9c597dbea76bda52c539414f01bfacb5a5e235d7116ac1337b1d30083d5582ef67d4fe3
+DIST gaupol-1.0.tar.gz 520620 SHA256 
bc407489855eb0a7a8bda6f6fcc7fcbe6136582cc588ec081750b8546f311e3b SHA512 
1f6a9ff1bf6722473aa53c9c8e787ce9d25669bbafe19b4c117965bf281307365cb4cd31241af92b0623ead8a9627d38c5811d5b361c8707ac3467d520c1d89c
 WHIRLPOOL 
50cd2546cc48538c8095ad9fbb9eb71efb6ea8cd038fa9ad217cf5a502c6cfee9530e94a8da9f69e60fbd9c511c112c9fbebc62a24edec10049e80b135c7232d

diff --git a/media-video/gaupol/gaupol-1.0.ebuild 
b/media-video/gaupol/gaupol-1.0.ebuild
new file mode 100644
index ..f8e427f
--- /dev/null
+++ b/media-video/gaupol/gaupol-1.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_3,3_4,3_5} )
+
+inherit distutils-r1 gnome2-utils virtualx xdg-utils
+
+DESCRIPTION="A subtitle editor for text-based subtitles"
+HOMEPAGE="http://otsaloma.io/gaupol/";
+SRC_URI="https://github.com/otsaloma/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="spell test"
+
+RDEPEND="app-text/iso-codes
+   dev-python/chardet[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   spell? (
+   app-text/gtkspell:3
+   >=dev-python/pyenchant-1.4[${PYTHON_USEDEP}]
+   )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( AUTHORS.md NEWS.md TODO.md README.md README.aeidon.md )
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+   if [[ -z ${REPLACING_VERSIONS} ]]; then
+   elog "Previewing support needs MPV, MPlayer or VLC."
+
+   if use spell; then
+   elog "Additionally, spell-checking requires a 
dictionary, any of"
+   elog "Aspell/Pspell, Ispell, MySpell, Uspell, Hspell or 
AppleSpell."
+   fi
+   fi
+}
+
+python_test() {
+   virtx py.test
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: net-libs/libssh2/, net-libs/libssh2/files/

2016-10-31 Thread Sergei Trofimovich
commit: 17b438ee01bc4626a203581cf539eebcee394dc1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct 31 09:19:35 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct 31 09:19:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b438ee

net-libs/libssh2: fix USE=gcrypt build failure

$ ./configure --with-libgcrypt
triggered injection of
-Iyes/include
-Lyes/lib
commandline flags.

Fix uses '$with_libgcrypt_prefix' to specify prefix.

Reported-by: Mikhail Pukhlikov  gentoo.org>

Package-Manager: portage-2.3.2

 .../files/libssh2-1.8.0-libgcrypt-prefix.patch | 52 ++
 net-libs/libssh2/libssh2-1.8.0.ebuild  |  2 +
 net-libs/libssh2/libssh2-.ebuild   |  4 +-
 3 files changed, 56 insertions(+), 2 deletions(-)

diff --git a/net-libs/libssh2/files/libssh2-1.8.0-libgcrypt-prefix.patch 
b/net-libs/libssh2/files/libssh2-1.8.0-libgcrypt-prefix.patch
new file mode 100644
index ..38541fe
--- /dev/null
+++ b/net-libs/libssh2/files/libssh2-1.8.0-libgcrypt-prefix.patch
@@ -0,0 +1,52 @@
+From ad5223220aa83e2439657ddce6ffca4445f08f8c Mon Sep 17 00:00:00 2001
+From: Sergei Trofimovich 
+Date: Mon, 31 Oct 2016 09:04:33 +
+Subject: [PATCH] acinclude.m4: fix ./configure --with-libgcrypt
+
+The change fixes passing of bogus gcrypt prefix.
+Reproducible as:
+
+$ ./configure --with-libgcrypt
+$ make V=1
+...
+/bin/sh ../libtool  --tag=CC   --mode=link gcc  -g -O2 -Iyes/include 
-version-info 1:1:0 -no-undefined -export-symbols-regex '^libssh2_.*' -lgcrypt  
-lz -Lyes/lib -o libssh2.la -rpath /usr/local/lib channel.lo comp.lo crypt.lo 
hostkey.lo kex.lo mac.lo misc.lo packet.lo publickey.lo scp.lo session.lo 
sftp.lo userauth.lo transport.lo version.lo knownhost.lo agent.lo libgcrypt.lo 
pem.lo keepalive.lo global.lo   -lgcrypt
+../libtool: line 7475: cd: yes/lib: No such file or directory
+libtool:   error: cannot determine absolute directory name of 'yes/lib'
+
+These
+-Iyes/include
+-Lyes/lib
+come from libgcrypt code autodetection:
+  if test -n "$use_libgcrypt" && test "$use_libgcrypt" != "no"; then
+ LDFLAGS="$LDFLAGS -L$use_libgcrypt/lib"
+ CFLAGS="$CFLAGS -I$use_libgcrypt/include"
+
+I assume it's a typo to use yes/no flag as a prefix and changed
+it to '$with_libgcrypt_prefix'.
+
+Reported-by: Mikhail Pukhlikov 
+Signed-off-by: Sergei Trofimovich 
+---
+ acinclude.m4 | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/acinclude.m4 b/acinclude.m4
+index 734ef07..c78260c 100644
+--- a/acinclude.m4
 b/acinclude.m4
+@@ -412,9 +412,9 @@ AC_DEFUN([LIBSSH2_CHECKFOR_GCRYPT], [
+ 
+   old_LDFLAGS=$LDFLAGS
+   old_CFLAGS=$CFLAGS
+-  if test -n "$use_libgcrypt" && test "$use_libgcrypt" != "no"; then
+-LDFLAGS="$LDFLAGS -L$use_libgcrypt/lib"
+-CFLAGS="$CFLAGS -I$use_libgcrypt/include"
++  if test -n "$with_libgcrypt_prefix" && test "$use_libgcrypt" != "no"; then
++LDFLAGS="$LDFLAGS -L$with_libgcrypt_prefix/lib"
++CFLAGS="$CFLAGS -I$with_libgcrypt_prefix/include"
+   fi
+   AC_LIB_HAVE_LINKFLAGS([gcrypt], [], [
+ #include 
+-- 
+2.10.1
+

diff --git a/net-libs/libssh2/libssh2-1.8.0.ebuild 
b/net-libs/libssh2/libssh2-1.8.0.ebuild
index 023e8a3..36df0cc 100644
--- a/net-libs/libssh2/libssh2-1.8.0.ebuild
+++ b/net-libs/libssh2/libssh2-1.8.0.ebuild
@@ -32,6 +32,8 @@ DOCS=(
README
 )
 
+PATCHES=( "${FILESDIR}"/${PN}-1.8.0-libgcrypt-prefix.patch )
+
 src_prepare() {
sed -i -e 's|mansyntax.sh||g' tests/Makefile.am || die
autotools-multilib_src_prepare

diff --git a/net-libs/libssh2/libssh2-.ebuild 
b/net-libs/libssh2/libssh2-.ebuild
index 8d3718b..29287af 100644
--- a/net-libs/libssh2/libssh2-.ebuild
+++ b/net-libs/libssh2/libssh2-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -28,7 +28,7 @@ RDEPEND="${DEPEND}"
 
 DOCS=( README )
 
-PATCHES=( "${FILESDIR}"/${PN}-1.4.2-pkgconfig.patch )
+PATCHES=( "${FILESDIR}"/${PN}-1.8.0-libgcrypt-prefix.patch )
 
 src_prepare() {
sed -i -e 's|mansyntax.sh||g' tests/Makefile.am || die



[gentoo-commits] repo/gentoo:master commit in: media-gfx/shotwell/

2016-10-31 Thread Pacho Ramos
commit: 7903041e10ee985e5bcc8ae1db35dfbe5655d7d9
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Oct 31 09:50:41 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Oct 31 09:51:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7903041e

media-gfx/shotwell: Version bump, gst-plugins-gdkpixbuf is used (#597968 by 
Fabio Bonfante).

Package-Manager: portage-2.3.2

 media-gfx/shotwell/Manifest   |  1 +
 media-gfx/shotwell/shotwell-0.24.1.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/media-gfx/shotwell/Manifest b/media-gfx/shotwell/Manifest
index 995f2b2..23f26a0 100644
--- a/media-gfx/shotwell/Manifest
+++ b/media-gfx/shotwell/Manifest
@@ -1,2 +1,3 @@
 DIST shotwell-0.23.7.tar.xz 5348360 SHA256 
daa627aa69f17b1b9bef4ad5d4813c32e9a05f5b5aa2762b4f91d837ed14c7aa SHA512 
b3d80d01ec5ac2f3245512926302e6b5e4e1d468e98d7567ec8788d35bdc9ecc839b43eca1a2fa2333deb047c760d165e2f2a9913951f0bcbbcd6404927374dc
 WHIRLPOOL 
6ff8722f7d4007c37d6b7e1da388dd28853921f8e5740f3ac6dd4e70cdc7fe0eafdc889a4c8493948c4643f409847f34c6e915d0b79b4f9039298de8f671d4aa
 DIST shotwell-0.24.0.tar.xz 5344220 SHA256 
95d60e30b52c5f8a9633c98cbbcd1ad0889fe94b7a036bb4880450fa6d44fe75 SHA512 
151ba94b429e41f6ff7085dbecf008679e4522b5be19577a914996e11636ba67ceba978f8b223dd562014bbacefad4bdc1c477e660352c4a963a3c80794b7e32
 WHIRLPOOL 
79ad5052d2fd0ed095be010df061f63b7dab1f118386a659d908df38f884413266d44dca4a670051b9847a6646877c0b419c4dd0938985ffb5bc23cea8310dae
+DIST shotwell-0.24.1.tar.xz 5348976 SHA256 
60359b6203a78fc229d22aca3b643e267f012d4c3c5fe9524084147e3870f0d6 SHA512 
dfb51f6e039329101caa3398c9acc5fe073f8421d179750222a965193789d68b4233a9529ac90fbd8f6642620f29e5390fe5150eb6308edd3592daa8d8349a47
 WHIRLPOOL 
903160b622f540f4809512b1fd00368a63e0f626bb67bb099539f6f95051722f85b2be3cde75b65514e8707ba448016afee18929e92ef17f00b8d1e3b7f80444

diff --git a/media-gfx/shotwell/shotwell-0.24.1.ebuild 
b/media-gfx/shotwell/shotwell-0.24.1.ebuild
new file mode 100644
index ..16ac045
--- /dev/null
+++ b/media-gfx/shotwell/shotwell-0.24.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+VALA_MIN_API_VERSION="0.28"
+
+inherit gnome2 multilib toolchain-funcs vala versionator
+
+MY_PV=$(get_version_component_range 1-2)
+DESCRIPTION="Open source photo manager for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Shotwell";
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND="
+   app-text/gnome-doc-utils
+   >=dev-db/sqlite-3.5.9:3
+   >=dev-libs/glib-2.30.0:2
+   >=dev-libs/json-glib-0.7.6
+   >=dev-libs/libgee-0.8.5:0.8
+   >=dev-libs/libxml2-2.6.32:2
+   >=dev-util/desktop-file-utils-0.13
+   gnome-base/dconf
+   >=media-libs/gexiv2-0.4.90
+   media-libs/gst-plugins-base:1.0
+   media-libs/gst-plugins-good:1.0
+   media-libs/gstreamer:1.0
+   media-libs/lcms:2
+   >=media-libs/libexif-0.6.16:=
+   >=media-libs/libgphoto2-2.5:=
+   >=media-libs/libraw-0.13.2:=
+   media-plugins/gst-plugins-gdkpixbuf:1.0
+   >=net-libs/libsoup-2.26.0:2.4
+   net-libs/webkit-gtk:4
+   virtual/libgudev:=[introspection]
+   >=x11-libs/gtk+-3.12.2:3[X]
+"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.7
+   >=sys-devel/m4-1.4.13
+"
+
+# This probably comes from libraries that
+# shotwell-video-thumbnailer links to.
+# Nothing we can do at the moment. #435048
+QA_FLAGS_IGNORED="/usr/libexec/${PN}/${PN}-video-thumbnailer"
+
+src_prepare() {
+   vala_src_prepare
+   gnome2_src_prepare
+}
+
+src_configure() {
+   gnome2_src_configure --disable-static
+}



[gentoo-commits] proj/gnome:master commit in: games-board/aisleriot/, games-board/aisleriot/files/

2016-10-31 Thread Gilles Dartiguelongue
commit: 2bd5ae6c73645e1da9961bdbbd5002ac287b7229
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sun Oct 30 11:37:21 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 10:28:23 2016 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=2bd5ae6c

games-board/aisleriot: 3.20.2 → 3.22.0

Package-Manager: portage-2.3.2
Manifest-Sign-Key: C6085806

 ...sleriot-.ebuild => aisleriot-3.22.0.ebuild} | 32 ++---
 games-board/aisleriot/aisleriot-.ebuild| 23 ++---
 .../files/aisleriot-3.22.0-detect-svg.patch| 40 ++
 3 files changed, 61 insertions(+), 34 deletions(-)

diff --git a/games-board/aisleriot/aisleriot-.ebuild 
b/games-board/aisleriot/aisleriot-3.22.0.ebuild
similarity index 75%
copy from games-board/aisleriot/aisleriot-.ebuild
copy to games-board/aisleriot/aisleriot-3.22.0.ebuild
index 535d6b4..9e0f323 100644
--- a/games-board/aisleriot/aisleriot-.ebuild
+++ b/games-board/aisleriot/aisleriot-3.22.0.ebuild
@@ -1,26 +1,18 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
-GCONF_DEBUG="yes"
+EAPI=6
 
-inherit autotools eutils gnome-games
-if [[ ${PV} =  ]]; then
-   inherit gnome2-live
-fi
+inherit autotools gnome2
 
 DESCRIPTION="A collection of solitaire card games for GNOME"
 HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Aisleriot";
 
 LICENSE="GPL-3 LGPL-3 FDL-1.1"
 SLOT="0"
-if [[ ${PV} =  ]]; then
-   KEYWORDS=""
-else
-   KEYWORDS="~amd64 ~x86"
-fi
-IUSE="gnome qt4"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug gnome qt5"
 
 # FIXME: quartz support?
 # Does not build with guile-2.0.0 or 2.0.1
@@ -32,24 +24,22 @@ COMMON_DEPEND="
>=x11-libs/cairo-1.10
>=x11-libs/gtk+-3.4:3
gnome? ( >=gnome-base/gconf-2.0:2 )
-   qt4? ( >=dev-qt/qtsvg-4.4:4 )
+   qt5? ( >=dev-qt/qtsvg-5:5 )
 "
 DEPEND="${COMMON_DEPEND}
app-arch/gzip
-   dev-libs/libxml2
+   app-text/yelp-tools
>=dev-util/intltool-0.40.4
-   dev-util/itstool
+   gnome-base/gnome-common
sys-apps/lsb-release
>=sys-devel/gettext-0.12
virtual/pkgconfig
gnome? ( app-text/docbook-xml-dtd:4.3 )
 "
-# dev-util/itstool really needed for help file generation
-# >=app-text/yelp-tools-3.1.1
 
 src_prepare() {
# Fix SVG detection and usage
-   epatch "${FILESDIR}"/${PN}-3.16.2-detect-svg.patch
+   eapply "${FILESDIR}"/${PN}-3.22.0-detect-svg.patch
 
eautoreconf
gnome2_src_prepare
@@ -70,7 +60,7 @@ src_configure() {
)
fi
 
-   if use qt4 ; then
+   if use qt5 ; then
myconf+=(
--with-card-theme-formats=all

--with-kde-card-theme-path="${EPREFIX}"/usr/share/apps/carddecks
@@ -82,9 +72,9 @@ src_configure() {
gnome2_src_configure \
--with-gtk=3.0 \
--with-guile=2.0 \
+   $(usex debug --enable-debug=yes --enable-debug=minimum) \
--enable-sound \

--with-pysol-card-theme-path="${EPREFIX}${GAMES_DATADIR}"/pysolfc \
-   GUILE=$(type -P guile-2.0) \
${myconf[@]}
 }
 

diff --git a/games-board/aisleriot/aisleriot-.ebuild 
b/games-board/aisleriot/aisleriot-.ebuild
index 535d6b4..77df6e2 100644
--- a/games-board/aisleriot/aisleriot-.ebuild
+++ b/games-board/aisleriot/aisleriot-.ebuild
@@ -1,11 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
-GCONF_DEBUG="yes"
+EAPI=6
 
-inherit autotools eutils gnome-games
+inherit autotools gnome2
 if [[ ${PV} =  ]]; then
inherit gnome2-live
 fi
@@ -20,7 +19,7 @@ if [[ ${PV} =  ]]; then
 else
KEYWORDS="~amd64 ~x86"
 fi
-IUSE="gnome qt4"
+IUSE="debug gnome qt5"
 
 # FIXME: quartz support?
 # Does not build with guile-2.0.0 or 2.0.1
@@ -32,24 +31,22 @@ COMMON_DEPEND="
>=x11-libs/cairo-1.10
>=x11-libs/gtk+-3.4:3
gnome? ( >=gnome-base/gconf-2.0:2 )
-   qt4? ( >=dev-qt/qtsvg-4.4:4 )
+   qt5? ( >=dev-qt/qtsvg-5:5 )
 "
 DEPEND="${COMMON_DEPEND}
app-arch/gzip
-   dev-libs/libxml2
+   app-text/yelp-tools
>=dev-util/intltool-0.40.4
-   dev-util/itstool
+   gnome-base/gnome-common
sys-apps/lsb-release
>=sys-devel/gettext-0.12
virtual/pkgconfig
gnome? ( app-text/docbook-xml-dtd:4.3 )
 "
-# dev-util/itstool really needed for help file generation
-# >=app-text/yelp-tools-3.1.1
 
 src_prepare() {
# Fix SVG detection and usage
-   epatch "${FILESDIR}"/${PN}-3.16.2-detect-svg.patch
+   eapply "${FILESDIR}"/${PN}-3.22.0-detect-svg.patch
 
eautoreconf
gnome2_src_prepare
@@ -

[gentoo-commits] repo/gentoo:master commit in: games-board/gnome-mines/

2016-10-31 Thread Gilles Dartiguelongue
commit: dca5cb00141e837a18d6f62b5654cae7782386aa
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Oct 31 10:43:52 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 11:06:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca5cb00

games-board/gnome-mines: version bump 3.20.1 → 3.22.1

Package-Manager: portage-2.3.2

 games-board/gnome-mines/Manifest  |  1 +
 games-board/gnome-mines/gnome-mines-3.22.1.ebuild | 37 +++
 2 files changed, 38 insertions(+)

diff --git a/games-board/gnome-mines/Manifest b/games-board/gnome-mines/Manifest
index 2958650..6b01f4f 100644
--- a/games-board/gnome-mines/Manifest
+++ b/games-board/gnome-mines/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-mines-3.18.2.tar.xz 3193148 SHA256 
7e1e0778eb623bb96063944b0397503f964b898c234d30936c24ca1c9063f347 SHA512 
681495193137e46a1ee97cdc03b1dea43009e277a24d870c0d913d9504f858e8bca14bd75ffc7616120995b40f04b64a9c6d6683e5e86c89d040fd6c8a6abb91
 WHIRLPOOL 
3f6dbd1b4c29a6e86dbbcfb43d0fa3218adc1a26de8f03dab0abdc00b7c542a36b19e53740d4952e210590002a5ee562e1e8d47e0d85d36b477ee669e8924887
 DIST gnome-mines-3.20.1.tar.xz 3147092 SHA256 
5815e886d92817d4127b9e94bf63cb91e2bf371029d18efdf9f195e2400e2b3b SHA512 
cdde771736b9110a416ec68d6e4ce2ce10e3de36915b57905f6f5d86a937c75a2dbfafd1ecc0c5f31dd5e267d13444a8a95d38815f400d4597e2fe73a908bd13
 WHIRLPOOL 
6db289ddf7508fc479586f574e9706f62bc1ac54f1d7543a200c4907f1379b95e7da05bc4ba04e3444c431385563258eb50d99bf18a19b5305ffac9f89309d58
+DIST gnome-mines-3.22.1.tar.xz 1695224 SHA256 
302daf2378729f49adf3652d1c86aa2591784c2f00b3c014e77a977d441ff566 SHA512 
a900929f0e610c9385e0a381b120a28dbc572eda70a77c770d2b55fb79a5a0097037a2e5d17a6d4d60e2b2a32381c842d15a2ba6e9b44650610e03e4bbed0ea0
 WHIRLPOOL 
790b8c44e316fcdb465dfd9c1bcd072fbdb12a7c730ad93b5f1478f86bc71352b2575988abcbcd7418d54d0d770f8fd8ef72e05bb0138b950af9b2fc249c97c2

diff --git a/games-board/gnome-mines/gnome-mines-3.22.1.ebuild 
b/games-board/gnome-mines/gnome-mines-3.22.1.ebuild
new file mode 100644
index ..ffe7e4c
--- /dev/null
+++ b/games-board/gnome-mines/gnome-mines-3.22.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2 vala
+
+DESCRIPTION="Clear hidden mines from a minefield"
+HOMEPAGE="https://wiki.gnome.org/Apps/Mines";
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.40:2
+   dev-libs/libgnome-games-support:1
+   >=gnome-base/librsvg-2.32.0:2
+   >=x11-libs/gtk+-3.12:3
+"
+RDEPEND="${COMMON_DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: net-libs/gnome-online-accounts/

2016-10-31 Thread Gilles Dartiguelongue
commit: 3679756553bcc50413031c8ed73df8221b910d4f
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Oct 31 11:02:36 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 11:06:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36797565

net-libs/gnome-online-accounts: cleanup old revision

Package-Manager: portage-2.3.2

 net-libs/gnome-online-accounts/Manifest|  1 -
 .../gnome-online-accounts-3.18.6.ebuild| 83 --
 2 files changed, 84 deletions(-)

diff --git a/net-libs/gnome-online-accounts/Manifest 
b/net-libs/gnome-online-accounts/Manifest
index 3abb70d..a268133 100644
--- a/net-libs/gnome-online-accounts/Manifest
+++ b/net-libs/gnome-online-accounts/Manifest
@@ -1,3 +1,2 @@
-DIST gnome-online-accounts-3.18.6.tar.xz 1478544 SHA256 
7e7c581b19b213d04c56a080ed7240a90999d7be2daca27d4aa054d205b48fa5 SHA512 
1261596888c0704be8707d58aad381bb715d14a5f1ffd3c2db37b34289343f43feadacf1728dfe57b0ef1a1897dbd3471817f565bf0187b8bc042dd81d40b849
 WHIRLPOOL 
3c31fff5394f8ad65f8fcc230b8dde658ca64b36e48e744281df28f9f1e4ce470d3a2256f0b92a6c99616abcd82bbf5d96f4cb23d03afe84a58829c617bcf67d
 DIST gnome-online-accounts-3.20.4.tar.xz 1387928 SHA256 
d5ca22404d1ef671a99f6b76ee09d4d4377ce9c86748fd1577b0a95a5129fa3f SHA512 
584f7b40006ea55958e8750c0bc1dca5ac014ff4920350d3de5df2a3717fc8845d235dd6ef7fc394b7f07a82b9092486832b7f594bb21b9b53ba23c321bbd5cd
 WHIRLPOOL 
24e2c72e67030682ab80a6570a8bf4056120fda27978eca3bf10a5714691b294be348d8e35a8cb97cd7ee90ecf6dde9ee7f0c6b5c92d056c38b790080b2cb746
 DIST gnome-online-accounts-3.22.1.tar.xz 1408072 SHA256 
83c2b707c0a7908c6fe93db1c415fa45bffb2b1d9fb4648badc749ce69cda50e SHA512 
454e2ff35e186f89dae14a720e4a89691d7161f41b622668fbb32181758211974cf104a45c86ffe3e5caf51a5f6ea9ffa8f1646d8719f96294d95efc9c03d63f
 WHIRLPOOL 
13ee0576fad15eba00271830466736d8aa05d50cbcc689541097cab5b5df261174db8a66f3d99af4f9f1ef65934817de8c86c292e664e478e21efb75cad2f93b

diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-3.18.6.ebuild 
b/net-libs/gnome-online-accounts/gnome-online-accounts-3.18.6.ebuild
deleted file mode 100644
index e723b08..
--- a/net-libs/gnome-online-accounts/gnome-online-accounts-3.18.6.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="GNOME framework for accessing online accounts"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineAccounts";
-
-LICENSE="LGPL-2+"
-SLOT="0/1"
-IUSE="gnome +introspection kerberos" # telepathy"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
-
-# pango used in goaeditablelabel
-# libsoup used in goaoauthprovider
-# goa kerberos provider is incompatible with app-crypt/heimdal, see
-# https://bugzilla.gnome.org/show_bug.cgi?id=692250
-# json-glib-0.16 needed for bug #485092
-RDEPEND="
-   >=dev-libs/glib-2.40:2
-   >=app-crypt/libsecret-0.5
-   >=dev-libs/json-glib-0.16
-   dev-libs/libxml2:2
-   >=net-libs/libsoup-2.42:2.4
-   net-libs/rest:0.7
-   net-libs/telepathy-glib
-   >=net-libs/webkit-gtk-2.7.2:4
-   >=x11-libs/gtk+-3.11.1:3
-   x11-libs/pango
-
-   introspection? ( >=dev-libs/gobject-introspection-0.6.2:= )
-   kerberos? (
-   app-crypt/gcr:0=
-   app-crypt/mit-krb5 )
-"
-#  telepathy? ( net-libs/telepathy-glib )
-# goa-daemon can launch gnome-control-center
-PDEPEND="gnome? ( 
>=gnome-base/gnome-control-center-3.2[gnome-online-accounts(+)] )"
-
-DEPEND="${RDEPEND}
-   dev-libs/libxslt
-   >=dev-util/gtk-doc-am-1.3
-   >=dev-util/gdbus-codegen-2.30.0
-   >=dev-util/intltool-0.50.1
-   sys-devel/gettext
-   virtual/pkgconfig
-
-   dev-libs/gobject-introspection-common
-   gnome-base/gnome-common
-"
-# eautoreconf needs gobject-introspection-common, gnome-common
-
-# Due to sub-configure
-QA_CONFIGURE_OPTIONS=".*"
-
-src_configure() {
-   # TODO: Give users a way to set the G/FB/Windows Live secrets
-   # telepathy optional support is really a badly done, bug #494456
-   gnome2_src_configure \
-   --disable-static \
-   --enable-backend \
-   --enable-documentation \
-   --enable-exchange \
-   --enable-facebook \
-   --enable-flickr \
-   --enable-foursquare \
-   --enable-imap-smtp \
-   --enable-lastfm \
-   --enable-media-server \
-   --enable-owncloud \
-   --enable-pocket \
-   --enable-telepathy \
-   --enable-windows-live \
-   $(use_enable kerberos)
-   #$(use_enable telepathy)
-   # gudev & cheese from sub-configure is overriden
-   # by top level configure, and disabled so leave it like that
-}


[gentoo-commits] repo/gentoo:master commit in: games-arcade/gnome-robots/

2016-10-31 Thread Gilles Dartiguelongue
commit: 16c69478406483c4399aae8c61d4c2165979c70f
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Oct 31 10:20:54 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 11:06:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16c69478

games-arcade/gnome-robots: version bump 3.20.2 → 3.22.0

Package-Manager: portage-2.3.2

 games-arcade/gnome-robots/Manifest |  1 +
 .../gnome-robots/gnome-robots-3.22.0.ebuild| 29 ++
 2 files changed, 30 insertions(+)

diff --git a/games-arcade/gnome-robots/Manifest 
b/games-arcade/gnome-robots/Manifest
index 32f635f..3ea320a 100644
--- a/games-arcade/gnome-robots/Manifest
+++ b/games-arcade/gnome-robots/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-robots-3.18.1.tar.xz 1626872 SHA256 
2e58ffdc4b243a4a3557ba9c84fa1c0129c5ffadbb5c2a20fede48ccf4618090 SHA512 
f03eeeb39692c0c1660c6597aeeae3f05f91bb5e5370ff181a0665820d2d27525fb86623870c786c56cf046bff5516ef1735dcaa93fc3b0946126dac19210e8f
 WHIRLPOOL 
900075412578bc370244c27586ff89ea6205beab921bd2f6b190bae84ffd743a99ea0d39980fac700be5a4052dcbfa2230efe5bb0cfca6c9c76b3658e53bc22b
 DIST gnome-robots-3.20.2.tar.xz 1610556 SHA256 
d98f2ba5a7086e2dc3f3754819b557c12a98a0fb2492efd9912d9dd34ad9cfce SHA512 
74281cf3c53812dc8d4d00e6edffb5dee39bfbf14d3cf3d705b64d54bb22c733e449bdc45f388200b9f69bf2c8f70ce3f9f125e0f07d9d35a51a2bc84ef091ec
 WHIRLPOOL 
0e2c258c286af8dc855470492da44f9ad53a9ea11e9e330ce4d2205de17b25f8c73c930751204ccfbb87afaa978bbd6038cc99ab150de89fd1359cc2116ad5df
+DIST gnome-robots-3.22.0.tar.xz 1623132 SHA256 
ddb02f9d04c970354d1836813f8c0d9ffc3ff509091d2580384e2275663e6f73 SHA512 
64f9d216a4c527e23be764bc2c26fc08df4cc993fa7f91d6adf26ae8faa54871c893bc7dab159313c2dd42bf49fc517981e8276eb8977d05aef4783d7d86
 WHIRLPOOL 
8400cfe07bccc552b2ee4933edfe8ea1f20ed973ccbe0f2b6146f23a4455edf52c88fb59d9645f8e7e51b05ee837d698fbfb47361da0df8abca7bf289f2f8584

diff --git a/games-arcade/gnome-robots/gnome-robots-3.22.0.ebuild 
b/games-arcade/gnome-robots/gnome-robots-3.22.0.ebuild
new file mode 100644
index ..858db39
--- /dev/null
+++ b/games-arcade/gnome-robots/gnome-robots-3.22.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit gnome2
+
+DESCRIPTION="Avoid the robots and make them crash into each other"
+HOMEPAGE="https://wiki.gnome.org/Apps/Robots";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/glib-2.32:2
+   dev-libs/libgnome-games-support:1
+   >=gnome-base/librsvg-2.36.2:2
+   >=media-libs/libcanberra-0.26[gtk3]
+   >=x11-libs/gtk+-3.15:3
+"
+DEPEND="${RDEPEND}
+   app-text/yelp-tools
+   dev-libs/appstream-glib
+   >=dev-util/intltool-0.50
+   sys-devel/gettext
+   virtual/pkgconfig
+"



[gentoo-commits] repo/gentoo:master commit in: net-libs/gnome-online-accounts/

2016-10-31 Thread Gilles Dartiguelongue
commit: 63004184a7c800760f5cd721437a735d9d907aea
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Oct 31 11:01:46 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 11:06:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63004184

net-libs/gnome-online-accounts: version bump 3.20.4 → 3.22.1

Package-Manager: portage-2.3.2

 net-libs/gnome-online-accounts/Manifest|  1 +
 .../gnome-online-accounts-3.22.1.ebuild| 90 ++
 2 files changed, 91 insertions(+)

diff --git a/net-libs/gnome-online-accounts/Manifest 
b/net-libs/gnome-online-accounts/Manifest
index 12c770c..3abb70d 100644
--- a/net-libs/gnome-online-accounts/Manifest
+++ b/net-libs/gnome-online-accounts/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-online-accounts-3.18.6.tar.xz 1478544 SHA256 
7e7c581b19b213d04c56a080ed7240a90999d7be2daca27d4aa054d205b48fa5 SHA512 
1261596888c0704be8707d58aad381bb715d14a5f1ffd3c2db37b34289343f43feadacf1728dfe57b0ef1a1897dbd3471817f565bf0187b8bc042dd81d40b849
 WHIRLPOOL 
3c31fff5394f8ad65f8fcc230b8dde658ca64b36e48e744281df28f9f1e4ce470d3a2256f0b92a6c99616abcd82bbf5d96f4cb23d03afe84a58829c617bcf67d
 DIST gnome-online-accounts-3.20.4.tar.xz 1387928 SHA256 
d5ca22404d1ef671a99f6b76ee09d4d4377ce9c86748fd1577b0a95a5129fa3f SHA512 
584f7b40006ea55958e8750c0bc1dca5ac014ff4920350d3de5df2a3717fc8845d235dd6ef7fc394b7f07a82b9092486832b7f594bb21b9b53ba23c321bbd5cd
 WHIRLPOOL 
24e2c72e67030682ab80a6570a8bf4056120fda27978eca3bf10a5714691b294be348d8e35a8cb97cd7ee90ecf6dde9ee7f0c6b5c92d056c38b790080b2cb746
+DIST gnome-online-accounts-3.22.1.tar.xz 1408072 SHA256 
83c2b707c0a7908c6fe93db1c415fa45bffb2b1d9fb4648badc749ce69cda50e SHA512 
454e2ff35e186f89dae14a720e4a89691d7161f41b622668fbb32181758211974cf104a45c86ffe3e5caf51a5f6ea9ffa8f1646d8719f96294d95efc9c03d63f
 WHIRLPOOL 
13ee0576fad15eba00271830466736d8aa05d50cbcc689541097cab5b5df261174db8a66f3d99af4f9f1ef65934817de8c86c292e664e478e21efb75cad2f93b

diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-3.22.1.ebuild 
b/net-libs/gnome-online-accounts/gnome-online-accounts-3.22.1.ebuild
new file mode 100644
index ..87efca6
--- /dev/null
+++ b/net-libs/gnome-online-accounts/gnome-online-accounts-3.22.1.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="GNOME framework for accessing online accounts"
+HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineAccounts";
+
+LICENSE="LGPL-2+"
+SLOT="0/1"
+IUSE="debug gnome +introspection kerberos" # telepathy"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+# pango used in goaeditablelabel
+# libsoup used in goaoauthprovider
+# goa kerberos provider is incompatible with app-crypt/heimdal, see
+# https://bugzilla.gnome.org/show_bug.cgi?id=692250
+# json-glib-0.16 needed for bug #485092
+RDEPEND="
+   >=dev-libs/glib-2.40:2
+   >=app-crypt/libsecret-0.5
+   >=dev-libs/json-glib-0.16
+   dev-libs/libxml2:2
+   >=net-libs/libsoup-2.42:2.4
+   net-libs/rest:0.7
+   net-libs/telepathy-glib
+   >=net-libs/webkit-gtk-2.7.2:4
+   >=x11-libs/gtk+-3.19.12:3
+   x11-libs/pango
+
+   introspection? ( >=dev-libs/gobject-introspection-0.6.2:= )
+   kerberos? (
+   app-crypt/gcr:0=
+   app-crypt/mit-krb5 )
+"
+#  telepathy? ( net-libs/telepathy-glib )
+# goa-daemon can launch gnome-control-center
+PDEPEND="gnome? ( 
>=gnome-base/gnome-control-center-3.2[gnome-online-accounts(+)] )"
+
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   dev-libs/libxslt
+   >=dev-util/gtk-doc-am-1.3
+   >=dev-util/gdbus-codegen-2.30.0
+   >=dev-util/intltool-0.50.1
+   sys-devel/gettext
+   virtual/pkgconfig
+
+   dev-libs/gobject-introspection-common
+   gnome-base/gnome-common
+"
+# eautoreconf needs gobject-introspection-common, gnome-common
+
+# Due to sub-configure
+QA_CONFIGURE_OPTIONS=".*"
+
+src_prepare() {
+   gnome2_src_prepare
+   vala_src_prepare
+}
+
+src_configure() {
+   # TODO: Give users a way to set the G/FB/Windows Live secrets
+   # telepathy optional support is really a badly one, bug #494456
+   gnome2_src_configure \
+   --disable-static \
+   --enable-backend \
+   --enable-documentation \
+   --enable-exchange \
+   --enable-facebook \
+   --enable-flickr \
+   --enable-foursquare \
+   --enable-imap-smtp \
+   --enable-lastfm \
+   --enable-media-server \
+   --enable-owncloud \
+   --enable-pocket \
+   --enable-telepathy \
+   --enable-windows-live \
+   $(usex debug --enable-debug=yes ' ') \
+   $(use_enable kerbe

[gentoo-commits] repo/gentoo:master commit in: games-board/gnome-mines/

2016-10-31 Thread Gilles Dartiguelongue
commit: 28e236429ee13f1134eea7b88458cb8d5a3027a4
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Oct 31 10:44:30 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 11:06:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e23642

games-board/gnome-mines: cleanup old revision

Package-Manager: portage-2.3.2

 games-board/gnome-mines/Manifest  |  1 -
 games-board/gnome-mines/gnome-mines-3.18.2.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/games-board/gnome-mines/Manifest b/games-board/gnome-mines/Manifest
index 6b01f4f..4ff8897 100644
--- a/games-board/gnome-mines/Manifest
+++ b/games-board/gnome-mines/Manifest
@@ -1,3 +1,2 @@
-DIST gnome-mines-3.18.2.tar.xz 3193148 SHA256 
7e1e0778eb623bb96063944b0397503f964b898c234d30936c24ca1c9063f347 SHA512 
681495193137e46a1ee97cdc03b1dea43009e277a24d870c0d913d9504f858e8bca14bd75ffc7616120995b40f04b64a9c6d6683e5e86c89d040fd6c8a6abb91
 WHIRLPOOL 
3f6dbd1b4c29a6e86dbbcfb43d0fa3218adc1a26de8f03dab0abdc00b7c542a36b19e53740d4952e210590002a5ee562e1e8d47e0d85d36b477ee669e8924887
 DIST gnome-mines-3.20.1.tar.xz 3147092 SHA256 
5815e886d92817d4127b9e94bf63cb91e2bf371029d18efdf9f195e2400e2b3b SHA512 
cdde771736b9110a416ec68d6e4ce2ce10e3de36915b57905f6f5d86a937c75a2dbfafd1ecc0c5f31dd5e267d13444a8a95d38815f400d4597e2fe73a908bd13
 WHIRLPOOL 
6db289ddf7508fc479586f574e9706f62bc1ac54f1d7543a200c4907f1379b95e7da05bc4ba04e3444c431385563258eb50d99bf18a19b5305ffac9f89309d58
 DIST gnome-mines-3.22.1.tar.xz 1695224 SHA256 
302daf2378729f49adf3652d1c86aa2591784c2f00b3c014e77a977d441ff566 SHA512 
a900929f0e610c9385e0a381b120a28dbc572eda70a77c770d2b55fb79a5a0097037a2e5d17a6d4d60e2b2a32381c842d15a2ba6e9b44650610e03e4bbed0ea0
 WHIRLPOOL 
790b8c44e316fcdb465dfd9c1bcd072fbdb12a7c730ad93b5f1478f86bc71352b2575988abcbcd7418d54d0d770f8fd8ef72e05bb0138b950af9b2fc249c97c2

diff --git a/games-board/gnome-mines/gnome-mines-3.18.2.ebuild 
b/games-board/gnome-mines/gnome-mines-3.18.2.ebuild
deleted file mode 100644
index c62a67e..
--- a/games-board/gnome-mines/gnome-mines-3.18.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-GCONF_DEBUG="no"
-VALA_MIN_API_VERSION="0.22"
-
-inherit gnome-games vala
-
-DESCRIPTION="Clear hidden mines from a minefield"
-HOMEPAGE="https://wiki.gnome.org/Apps/Mines";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE=""
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.40:2
-   >=gnome-base/librsvg-2.32.0
-   >=x11-libs/gtk+-3.12:3
-"
-RDEPEND="${COMMON_DEPEND}
-   !

[gentoo-commits] repo/gentoo:master commit in: games-puzzle/gnome-klotski/

2016-10-31 Thread Gilles Dartiguelongue
commit: ec3ba04521c519d42925e96f3c1cc42a53c5d43a
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Mon Oct 31 10:54:52 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Mon Oct 31 11:06:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec3ba045

games-puzzle/gnome-klotski: version bump 3.20.2 → 3.22.0

Package-Manager: portage-2.3.2

 games-puzzle/gnome-klotski/Manifest|  1 +
 .../gnome-klotski/gnome-klotski-3.22.0.ebuild  | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/games-puzzle/gnome-klotski/Manifest 
b/games-puzzle/gnome-klotski/Manifest
index 56aab41..b9bd868 100644
--- a/games-puzzle/gnome-klotski/Manifest
+++ b/games-puzzle/gnome-klotski/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-klotski-3.18.2.tar.xz 1787848 SHA256 
e22b7136c4646b1aa6a9cefa8206bc92aed4ac389e891e48551e1804a2748192 SHA512 
18f8d3e6a36a607d39f6fa5603192631e50df7a10fbdaca5e7f8a383119c518afec1427d4f8c73f5a7833e73f123cda91a9201124fa182be918b3de715eebf72
 WHIRLPOOL 
8ad84f7253cc049c4650bccfca0fbf29a0ca820125b38967e2cfb035f1caec7e80589cb20d0ec6959ca963d60c82a6197c136d33016e04dba606365c1f7f785c
 DIST gnome-klotski-3.20.2.tar.xz 1748852 SHA256 
5c517534da14bb9b8c90dd76b8c7169557a6876318780677a0e451f982028493 SHA512 
2ede92bf6aa016b69e4e5f3dc3059312676e099aef71794195b52db24972d8c1c8f69d1df6dedbd64df3eb61dcbe4c70daadebec6872cba575aff5638700c361
 WHIRLPOOL 
8395ce6279f7ff799b3347bca4eabcf6dcd658a3d2baf46a189126ef89203fff3e1789c58b67dc693b8a17eadc66cdddef38c2e069c385a5251da7356ae3
+DIST gnome-klotski-3.22.0.tar.xz 1420972 SHA256 
25e35369d1b5d2f9e6b92d44568d21df631b5b23dd7b12ca226a04f58cb54700 SHA512 
4a1c1cb8fd820cd94da3a76677d33abb525822bb58ef38fdda268188428034821e3444a208a0b82eaf18171773242b9a8a6088372cfed228f2ff07af63be4c81
 WHIRLPOOL 
a5133277d4ae4ad9856d3a177bdaaa6aeda4ded991f0651a33c018dc163ff8097b1eee429ba7a1d4020fe0fe1ef256fbf1fed614001dcb0e7659f46784fe310c

diff --git a/games-puzzle/gnome-klotski/gnome-klotski-3.22.0.ebuild 
b/games-puzzle/gnome-klotski/gnome-klotski-3.22.0.ebuild
new file mode 100644
index ..6e7ed66
--- /dev/null
+++ b/games-puzzle/gnome-klotski/gnome-klotski-3.22.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+VALA_MIN_API_VERSION="0.28"
+
+inherit gnome2 vala
+
+DESCRIPTION="Slide blocks to solve the puzzle"
+HOMEPAGE="https://wiki.gnome.org/Apps/Klotski";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   >=dev-libs/glib-2.32:2
+   dev-libs/libgee:0.8=
+   dev-libs/libgnome-games-support:1
+   >=gnome-base/librsvg-2.32.0:2
+   >=x11-libs/gtk+-3.19.0:3
+"
+DEPEND="${RDEPEND}
+   $(vala_depend)
+   app-text/yelp-tools
+   dev-libs/appstream-glib
+   >=dev-util/intltool-0.50
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   gnome2_src_prepare
+   vala_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/best_in_place/files/

2016-10-31 Thread Patrice Clement
commit: 09796e648984bbc12242feedd9c895b97196adb5
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:12:01 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09796e64

dev-ruby/best_in_place: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/best_in_place-1.1.0-kramdown.patch   | 35 --
 1 file changed, 35 deletions(-)

diff --git a/dev-ruby/best_in_place/files/best_in_place-1.1.0-kramdown.patch 
b/dev-ruby/best_in_place/files/best_in_place-1.1.0-kramdown.patch
deleted file mode 100644
index 33ae5e0..
--- a/dev-ruby/best_in_place/files/best_in_place-1.1.0-kramdown.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff --git a/Gemfile b/Gemfile
-index 7ae9d6a..5858f12 100644
 a/Gemfile
-+++ b/Gemfile
-@@ -5,4 +5,4 @@ gemspec
- 
- gem 'sqlite3'
- gem 'jquery-rails'
--gem 'rdiscount'
-+gem 'kramdown'
-diff --git a/test_app/Gemfile b/test_app/Gemfile
-index 6d53037..32676b2 100644
 a/test_app/Gemfile
-+++ b/test_app/Gemfile
-@@ -7,7 +7,7 @@ gem 'best_in_place', :path => ".."
- 
- gem 'jquery-rails'
- 
--gem 'rdiscount'
-+gem 'kramdown'
- 
- group :assets do
-   gem 'sass-rails',   '~> 3.2.3'
-diff --git a/test_app/app/models/user.rb b/test_app/app/models/user.rb
-index 604f5ba..7cc9248 100644
 a/test_app/app/models/user.rb
-+++ b/test_app/app/models/user.rb
-@@ -19,6 +19,6 @@ class User < ActiveRecord::Base
-   end
- 
-   def markdown_desc
--RDiscount.new(description).to_html.html_safe
-+Kramdown::Document.new(description).to_html.html_safe
-   end
- end



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rubygems/files/

2016-10-31 Thread Patrice Clement
commit: 25e37e78e2195bb92d1a35b063fe053aa7680950
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:24:09 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:59:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25e37e78

dev-ruby/rubygems: remove unused file.

Closes: https://github.com/gentoo/gentoo/pull/2416

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/rubygems/files/10rubygems | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-ruby/rubygems/files/10rubygems 
b/dev-ruby/rubygems/files/10rubygems
deleted file mode 100644
index f512216..
--- a/dev-ruby/rubygems/files/10rubygems
+++ /dev/null
@@ -1 +0,0 @@
-RUBYOPT="-rauto_gem"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/little-plugger/files/

2016-10-31 Thread Patrice Clement
commit: 153c066d7870f11eaf15b0b96dc4b81ae5e53f92
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:19:29 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153c066d

dev-ruby/little-plugger: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/little-plugger-1.1.3-ruby20-spec.patch  | 11 ---
 1 file changed, 11 deletions(-)

diff --git 
a/dev-ruby/little-plugger/files/little-plugger-1.1.3-ruby20-spec.patch 
b/dev-ruby/little-plugger/files/little-plugger-1.1.3-ruby20-spec.patch
deleted file mode 100644
index 71b9611..
--- a/dev-ruby/little-plugger/files/little-plugger-1.1.3-ruby20-spec.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/spec/little-plugger_spec.rb  2013-12-03 19:30:13.104060898 +
-+++ b/spec/little-plugger_spec.rb  2013-12-03 19:31:18.716236041 +
-@@ -18,7 +18,7 @@
-   it "generates a default plugin module" do
- LittlePlugger.default_plugin_module('little_plugger').should be == 
LittlePlugger
- lambda {LittlePlugger.default_plugin_module('little_plugger/plugins')}.
--should raise_error(NameError, 'uninitialized constant 
LittlePlugger::Plugins')
-+  should raise_error(NameError, /uninitialized constant 
(LittlePlugger::)?Plugins/)
- LittlePlugger.default_plugin_module('process/status').should be == 
Process::Status
-   end
- end



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/bones/files/

2016-10-31 Thread Patrice Clement
commit: 78a8c53343e8a5801ee25e8af1d46e85063cd8c4
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:13:22 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:59:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78a8c533

dev-ruby/bones: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2416

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/bones/files/bones-3.8.1-rdoc-version.patch | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/dev-ruby/bones/files/bones-3.8.1-rdoc-version.patch 
b/dev-ruby/bones/files/bones-3.8.1-rdoc-version.patch
deleted file mode 100644
index afff683..
--- a/dev-ruby/bones/files/bones-3.8.1-rdoc-version.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/bones/metadata   2013-12-04 19:12:17.677881011 +
-+++ b/bones/metadata   2013-12-04 19:14:36.905130687 +
-@@ -28,7 +28,7 @@
-   name: rdoc
-   requirement: !ruby/object:Gem::Requirement
- requirements:
--- - ~>
-+- - '>='
-   - !ruby/object:Gem::Version
- version: '3.0'
-   type: :runtime



[gentoo-commits] repo/gentoo:master commit in: app-vim/surround/

2016-10-31 Thread Patrice Clement
commit: 74d4191f09ea1d22cde73eee8c1c943c48f40ed1
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Oct 30 20:16:12 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:53:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74d4191f

app-vim/surround: clean up old.

Package-Manager: portage-2.3.0

 app-vim/surround/Manifest|  1 -
 app-vim/surround/surround-2.0.ebuild | 15 ---
 app-vim/surround/surround-2.1.ebuild | 14 --
 3 files changed, 30 deletions(-)

diff --git a/app-vim/surround/Manifest b/app-vim/surround/Manifest
index 113d394..ae1f9dd 100644
--- a/app-vim/surround/Manifest
+++ b/app-vim/surround/Manifest
@@ -1,2 +1 @@
-DIST surround-2.0.tar.bz2 8285 SHA256 
4203e827030ebcb782eb2c166b05888036ed060e1a2f2415878a1230041a495c SHA512 
0e9eb05865300ef089217edac474908d0e73a2343069b9806523164a98506cff02a8f2b09425edf9c574f7b6173f57e66cc1017195e1d5aba57e25ac5afe087a
 WHIRLPOOL 
5ba9a1ff43c5578289d2021ef1456d00db2b4c7a37371cf9da640d00fe82b254ff39cfe5763d05f757d67df343fd12c30a6da621dac00595fbafe6283b745de5
 DIST surround-2.1.tar.bz2 8441 SHA256 
0bc6d088294e608fc0fee92af9aebea933b4e3aff441011786d19a11809b45dc SHA512 
2b4283f77dac468ab91cdc941ac2dd5a2b99a35c23d6ffdc1e1c819a04bf45ecb934c5a111898ed45539a02d1f1ce6c702da80685f609944cbec9bdd25a1e22e
 WHIRLPOOL 
f21035d8829c4a41c47d339812769ec11337ae4125622058b1795135d0a77b81294385bd9149b410530407961c6f792dc9a83e8d8541f6d8683bf204a60b2dcb

diff --git a/app-vim/surround/surround-2.0.ebuild 
b/app-vim/surround/surround-2.0.ebuild
deleted file mode 100644
index 0e9fcfc..
--- a/app-vim/surround/surround-2.0.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: Delete/change/add parentheses/quotes/XML-tags/much 
more"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1697";
-LICENSE="vim"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-VIM_PLUGIN_HELPFILES="${PN}"

diff --git a/app-vim/surround/surround-2.1.ebuild 
b/app-vim/surround/surround-2.1.ebuild
deleted file mode 100644
index 214b875..
--- a/app-vim/surround/surround-2.1.ebuild
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: Delete/change/add parentheses/quotes/XML-tags/much 
more"
-HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1697";
-LICENSE="vim"
-KEYWORDS="~amd64 ~x86"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/haml/files/

2016-10-31 Thread Patrice Clement
commit: 018b7b3449ab065dd04cccbefe2de3c77fc20c82
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:18:22 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=018b7b34

dev-ruby/haml: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/haml/files/haml-3.1.6-sass.patch | 20 
 1 file changed, 20 deletions(-)

diff --git a/dev-ruby/haml/files/haml-3.1.6-sass.patch 
b/dev-ruby/haml/files/haml-3.1.6-sass.patch
deleted file mode 100644
index 3868548..
--- a/dev-ruby/haml/files/haml-3.1.6-sass.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 metadata.orig  2012-07-03 07:46:35.0 +0200
-+++ metadata   2012-07-03 07:51:30.917926913 +0200
-@@ -14,6 +14,17 @@
- date: 2012-05-16 00:00:00.0 Z
- dependencies:
- - !ruby/object:Gem::Dependency
-+  name: sass
-+  prerelease: false
-+  requirement: &id003 !ruby/object:Gem::Requirement 
-+none: false
-+requirements: 
-+- - "~>"
-+  - !ruby/object:Gem::Version 
-+version: 3.2.0
-+  type: :runtime
-+  version_requirements: *id003
-+- !ruby/object:Gem::Dependency 
-   name: yard
-   requirement: !ruby/object:Gem::Requirement
- none: false



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/actionview/files/

2016-10-31 Thread Patrice Clement
commit: 0d3b5a3112cde73ea7999ac03947e50805d161f8
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:11:35 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3b5a31

dev-ruby/actionview: remove unused patches.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/actionview-4.1.13-url-helper.patch   | 39 
 .../files/actionview-4.2.4-url-helper.patch| 43 --
 2 files changed, 82 deletions(-)

diff --git a/dev-ruby/actionview/files/actionview-4.1.13-url-helper.patch 
b/dev-ruby/actionview/files/actionview-4.1.13-url-helper.patch
deleted file mode 100644
index 6059557..
--- a/dev-ruby/actionview/files/actionview-4.1.13-url-helper.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-commit e5ba382ccbfe08a1a4681e1b6ac851379eb41c7c
-Author: Rafael Mendonça França 
-Date:   Fri Aug 28 01:36:00 2015 -0300
-
-Merge pull request #21402 from k0kubun/ruby20-url-helper
-
-Fix mail_to to work well with Ruby 2.0
-
-diff --git a/actionview/lib/action_view/helpers/url_helper.rb 
b/actionview/lib/action_view/helpers/url_helper.rb
-index b130457..97e299d 100644
 a/actionview/lib/action_view/helpers/url_helper.rb
-+++ b/actionview/lib/action_view/helpers/url_helper.rb
-@@ -471,7 +471,7 @@ module ActionView
- }.compact
- extras = extras.empty? ? '' : '?' + 
ERB::Util.html_escape(extras.join('&'))
- 
--encoded_email_address = 
ERB::Util.url_encode(email_address).gsub("%40", "@")
-+encoded_email_address = 
ERB::Util.url_encode(email_address.to_str).gsub("%40", "@")
- html_options["href"] = 
"mailto:#{encoded_email_address}#{extras}".html_safe
- 
- content_tag(:a, name || email_address, html_options, &block)
-diff --git a/actionview/test/template/url_helper_test.rb 
b/actionview/test/template/url_helper_test.rb
-index 10195dd..b044ebd 100644
 a/actionview/test/template/url_helper_test.rb
-+++ b/actionview/test/template/url_helper_test.rb
-@@ -505,6 +505,13 @@ class UrlHelperTest < ActiveSupport::TestCase
- )
-   end
- 
-+  def test_mail_to_with_html_safe_string
-+assert_dom_equal(
-+  %{mailto:da...@loudthinking.com";>da...@loudthinking.com},
-+  mail_to("da...@loudthinking.com".html_safe)
-+)
-+  end
-+
-   def test_mail_to_with_img
- assert_dom_equal %{mailto:feedb...@example.com";>},
-   mail_to('feedb...@example.com', ''.html_safe)

diff --git a/dev-ruby/actionview/files/actionview-4.2.4-url-helper.patch 
b/dev-ruby/actionview/files/actionview-4.2.4-url-helper.patch
deleted file mode 100644
index fb6f28e..
--- a/dev-ruby/actionview/files/actionview-4.2.4-url-helper.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 253ba56f5639ffb5ebe98d01c3515604c756a96a Mon Sep 17 00:00:00 2001
-From: Takashi Kokubun 
-Date: Thu, 27 Aug 2015 21:40:11 +0900
-Subject: [PATCH] Fix mail_to to work well with Ruby 2.0
-
-Ruby 2.0's ERB::Util.url_encode crashes ActiveSupport::SafeBuffer.
-Related to 0789e06

- actionview/lib/action_view/helpers/url_helper.rb | 2 +-
- actionview/test/template/url_helper_test.rb  | 7 +++
- 2 files changed, 8 insertions(+), 1 deletion(-)
-
-diff --git a/actionview/lib/action_view/helpers/url_helper.rb 
b/actionview/lib/action_view/helpers/url_helper.rb
-index b724b9c..7485fc0 100644
 a/actionview/lib/action_view/helpers/url_helper.rb
-+++ b/actionview/lib/action_view/helpers/url_helper.rb
-@@ -463,7 +463,7 @@ def mail_to(email_address, name = nil, html_options = {}, 
&block)
- }.compact
- extras = extras.empty? ? '' : '?' + extras.join('&')
- 
--encoded_email_address = 
ERB::Util.url_encode(email_address).gsub("%40", "@")
-+encoded_email_address = 
ERB::Util.url_encode(email_address.to_str).gsub("%40", "@")
- html_options["href"] = "mailto:#{encoded_email_address}#{extras}";
- 
- content_tag(:a, name || email_address, html_options, &block)
-diff --git a/actionview/test/template/url_helper_test.rb 
b/actionview/test/template/url_helper_test.rb
-index 6ca937a..9e09490 100644
 a/actionview/test/template/url_helper_test.rb
-+++ b/actionview/test/template/url_helper_test.rb
-@@ -515,6 +515,13 @@ def test_mail_with_options
- )
-   end
- 
-+  def test_mail_to_with_html_safe_string
-+assert_dom_equal(
-+  %{mailto:da...@loudthinking.com";>da...@loudthinking.com},
-+  mail_to("da...@loudthinking.com".html_safe)
-+)
-+  end
-+
-   def test_mail_to_with_img
- assert_dom_equal %{mailto:feedb...@example.com";>},
-   mail_to('feedb...@example.com', ''.html_safe)



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/mechanize/files/

2016-10-31 Thread Patrice Clement
commit: f329429be76f6262fe681e117cdb657503d964f2
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:19:59 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f329429b

dev-ruby/mechanize: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/mechanize-2.6.0-libxml290.patch  | 34 --
 1 file changed, 34 deletions(-)

diff --git a/dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch 
b/dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch
deleted file mode 100644
index 0b5409f..
--- a/dev-ruby/mechanize/files/mechanize-2.6.0-libxml290.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-commit 43f3b631484a2c0178e6699584471dedd598eca3
-Author: Lee Jarvis 
-Date:   Mon May 6 19:39:25 2013 +0100
-
-Ensure we prefix xpath with // for searching entire document
-
-Tests prior to this commit passed because libxml2 was not so
-strict. Since upgrading to 2.9.0 this issue has been revealed.
-The former test should have been written with this in mind.
-
-Steps to reproduce (on OSX with Homebrew installed):
-
-  gem uninstall nokogiri
-  brew install libxml2
-  LDFLAGS="-L/usr/local/opt/libxml2/lib" \
-CPPFLAGS="-I/usr/local/opt/libxml2/include" \
-gem install nokogiri
-
-closes #308
-
-diff --git a/test/test_mechanize_xml_file.rb b/test/test_mechanize_xml_file.rb
-index 58eb67c..bbe486c 100644
 a/test/test_mechanize_xml_file.rb
-+++ b/test/test_mechanize_xml_file.rb
-@@ -23,7 +23,7 @@ class TestMechanizeXmlFile < Mechanize::TestCase
-   end
- 
-   def test_at
--assert_equal 'Perl', @xml.at('language[2]').text
-+assert_equal 'Perl', @xml.at('//language[2]').text
-   end
- 
- end
-\ No newline at end of file



[gentoo-commits] repo/gentoo:master commit in: app-vim/surround/

2016-10-31 Thread Patrice Clement
commit: 72836f84553ca5bd600743eb94add060c00c84ad
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Oct 30 20:15:46 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:53:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72836f84

app-vim/surround: stable for amd64 and mark stable for x86 whilst at it using 
the ALLARCHES policy.

Vim scripts are platform independant scripts.

Package-Manager: portage-2.3.0

 app-vim/surround/surround-2.1-r1.ebuild | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/app-vim/surround/surround-2.1-r1.ebuild 
b/app-vim/surround/surround-2.1-r1.ebuild
new file mode 100644
index ..c18b554
--- /dev/null
+++ b/app-vim/surround/surround-2.1-r1.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: Delete/change/add parentheses/quotes/XML-tags & much 
more"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1697";
+LICENSE="vim"
+KEYWORDS="amd64 x86"
+
+VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/launchy/files/

2016-10-31 Thread Patrice Clement
commit: 9abe53391ea4f24219ac50e80ae68f0dd18e05f4
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:18:58 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:59:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9abe5339

dev-ruby/launchy: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2416

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/launchy-2.3.0-drop-failing-test.patch| 24 --
 1 file changed, 24 deletions(-)

diff --git a/dev-ruby/launchy/files/launchy-2.3.0-drop-failing-test.patch 
b/dev-ruby/launchy/files/launchy-2.3.0-drop-failing-test.patch
deleted file mode 100644
index 3304a0a..
--- a/dev-ruby/launchy/files/launchy-2.3.0-drop-failing-test.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/spec/applications/browser_spec.rb 
b/spec/applications/browser_spec.rb
-index 8cfa8e7..3886ce3 100644
 a/spec/applications/browser_spec.rb
-+++ b/spec/applications/browser_spec.rb
-@@ -12,19 +12,6 @@ describe Launchy::Application::Browser do
- ENV.delete( 'KDE_FULL_SESSION' )
-   end
- 
--  { 'windows' => 'start /b' ,
--'darwin'  => '/usr/bin/open',
--'cygwin'  => 'cmd /C start /b',
--
--# when running these tests on a linux box, this test will fail
--'linux'   => nil }.each  do |host_os, cmdline|
--it "when host_os is '#{host_os}' the appropriate 'app_list' method is 
called" do
--  Launchy.host_os = host_os
--  browser = Launchy::Application::Browser.new
--  browser.app_list.first.must_equal cmdline
--end
--  end
--
-   %w[ linux windows darwin cygwin ].each do |host_os|
- it "the BROWSER environment variable overrides any host defaults on 
'#{host_os}'" do
-   ENV['BROWSER'] = "my_special_browser --new-tab '%s'"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/hashicorp-checkpoint/

2016-10-31 Thread Patrice Clement
commit: 726ea3e6f3781aced5f1f49bdbd08ee1a884bc56
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri Oct  7 05:30:35 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:58:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=726ea3e6

dev-ruby/hashicorp-checkpoint: add ruby23 support, drop ~x86.

Package-Manager: portage-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/2501

Signed-off-by: Patrice Clement  gentoo.org>

 .../hashicorp-checkpoint-0.1.4-r1.ebuild   | 24 ++
 1 file changed, 24 insertions(+)

diff --git a/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.4-r1.ebuild 
b/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.4-r1.ebuild
new file mode 100644
index ..3f4e996
--- /dev/null
+++ b/dev-ruby/hashicorp-checkpoint/hashicorp-checkpoint-0.1.4-r1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Internal HashiCorp service to check version information"
+HOMEPAGE="http://www.hashicorp.com";
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+ruby_add_bdepend "
+   test? ( dev-ruby/rspec-its )
+"



[gentoo-commits] repo/gentoo:master commit in: app-vim/pydoc/

2016-10-31 Thread Patrice Clement
commit: 1261e9230ac6e7c872976220d74a359e76d4e05b
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Oct 30 20:21:17 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:53:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1261e923

app-vim/pydoc: stable for x86. mark stable for the remaining arches whilst at 
it using the ALLARCHES policy.

Package-Manager: portage-2.3.0

 app-vim/pydoc/pydoc-2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/pydoc/pydoc-2.0.ebuild b/app-vim/pydoc/pydoc-2.0.ebuild
index 3776a04..812413f 100644
--- a/app-vim/pydoc/pydoc-2.0.ebuild
+++ b/app-vim/pydoc/pydoc-2.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="vim plugin: integrates python documentation view 
and search tool"
 HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=910 
https://github.com/fs111/pydoc.vim";
 SRC_URI="https://github.com/fs111/${PN}.vim/tarball/${PV} -> ${P}.tar.gz"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE=""
 
 DEPEND="app-arch/unzip"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/configliere/files/

2016-10-31 Thread Patrice Clement
commit: b06ba00025792188d09a8db7bfc65a6b8cab78b9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:14:10 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b06ba000

dev-ruby/configliere: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/configliere/files/configliere-0.4.17-nobundler.patch | 11 ---
 1 file changed, 11 deletions(-)

diff --git a/dev-ruby/configliere/files/configliere-0.4.17-nobundler.patch 
b/dev-ruby/configliere/files/configliere-0.4.17-nobundler.patch
deleted file mode 100644
index 752bfdc..
--- a/dev-ruby/configliere/files/configliere-0.4.17-nobundler.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-Index: configliere-0.4.17/spec/spec_helper.rb
-===
 configliere-0.4.17.orig/spec/spec_helper.rb
-+++ configliere-0.4.17/spec/spec_helper.rb
-@@ -1,5 +1,5 @@
--require 'bundler/setup' ; Bundler.require(:default, :development, :test)
- require 'rspec/autorun'
-+require 'yaml'
- 
- puts "Running specs in version #{RUBY_VERSION} on #{RUBY_PLATFORM} 
#{RUBY_DESCRIPTION}"
- 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/right_http_connection/files/

2016-10-31 Thread Patrice Clement
commit: a2cd758cc3e969ebc5d51cfada54f4c83deeb2a7
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:22:43 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2cd758c

dev-ruby/right_http_connection: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/right_http_connection-1.2.4+ruby-1.9.patch   | 10 --
 1 file changed, 10 deletions(-)

diff --git 
a/dev-ruby/right_http_connection/files/right_http_connection-1.2.4+ruby-1.9.patch
 
b/dev-ruby/right_http_connection/files/right_http_connection-1.2.4+ruby-1.9.patch
deleted file mode 100644
index 3133194..
--- 
a/dev-ruby/right_http_connection/files/right_http_connection-1.2.4+ruby-1.9.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 lib/right_http_connection.rb.old   2010-01-28 00:35:07.0 +0100
-+++ lib/right_http_connection.rb   2010-02-11 20:20:28.872034048 +0100
-@@ -299,6 +299,7 @@
-   true
- }
- @http.use_ssl = true
-+@http.verify_mode = OpenSSL::SSL::VERIFY_NONE # Looks like Ruby 1.9 
defaults to VERIFY_PEER which doesn't work well
- ca_file = get_param(:ca_file)
- if ca_file
-   @http.verify_mode = OpenSSL::SSL::VERIFY_PEER



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/moneta/files/

2016-10-31 Thread Patrice Clement
commit: ba9e52e8e8cca88f1133533c1c9a7484a009a93b
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:20:24 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba9e52e8

dev-ruby/moneta: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/moneta-0.6.0-optional-memcache.patch | 30 --
 1 file changed, 30 deletions(-)

diff --git a/dev-ruby/moneta/files/moneta-0.6.0-optional-memcache.patch 
b/dev-ruby/moneta/files/moneta-0.6.0-optional-memcache.patch
deleted file mode 100644
index 382d073..
--- a/dev-ruby/moneta/files/moneta-0.6.0-optional-memcache.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-commit f24e8010e01449648f1d1e28cb325bde21bfdaed
-Author: Hans de Graaff 
-Date:   Thu Jul 8 20:37:26 2010 +0200
-
-Fix case where both memcached and memcache are not present.
-
-The second require attempt will also generate a LoadError if memcache is 
not
-present, so this requires an extra block to rescue that error.
-
-diff --git a/lib/moneta/memcache.rb b/lib/moneta/memcache.rb
-index 5cf8c02..4e2f9d6 100644
 a/lib/moneta/memcache.rb
-+++ b/lib/moneta/memcache.rb
-@@ -2,10 +2,12 @@ begin
-   require "memcached"
-   MemCache = Memcached
- rescue LoadError
--  require "memcache"
--rescue
--  puts "You need either the `memcached` or `memcache-client` gem to use the 
Memcache moneta store"
--  exit
-+  begin
-+require "memcache"
-+  rescue LoadError
-+puts "You need either the `memcached` or `memcache-client` gem to use the 
Memcache moneta store"
-+exit
-+  end
- end
- 
- module Moneta



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/eventmachine/files/

2016-10-31 Thread Patrice Clement
commit: e7d2afd54a019937d7cb8dc263f6ad1f4013b18d
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:18:01 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7d2afd5

dev-ruby/eventmachine: remove unused patches.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/eventmachine-0.12.10-gentoo.patch| 62 --
 .../files/eventmachine-0.12.10-https-test.patch| 22 
 2 files changed, 84 deletions(-)

diff --git a/dev-ruby/eventmachine/files/eventmachine-0.12.10-gentoo.patch 
b/dev-ruby/eventmachine/files/eventmachine-0.12.10-gentoo.patch
deleted file mode 100644
index 72b7b72..
--- a/dev-ruby/eventmachine/files/eventmachine-0.12.10-gentoo.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-unchanged:
 a/Rakefile
-+++ b/Rakefile
-@@ -86,7 +86,7 @@
-   s.rdoc_options  = %w(--title EventMachine --main README --line-numbers 
-x lib/em/version -x lib/emva -x lib/evma/ -x lib/pr_eventmachine -x 
lib/jeventmachine)
-   s.extra_rdoc_files  = Dir['README,docs/*']
- 
--  s.files = `git ls-files`.split("\n")
-+  s.files = `git ls-files`.split("\n") rescue Errno::ENOENT
- 
-   s.require_path  = 'lib'
- 
-@@ -301,7 +301,7 @@ rescue LoadError
-   require 'rake/rdoctask'
-   Rake::RDocTask
- end
--df = begin; require 'rdoc/generator/darkfish'; true; rescue LoadError; end
-+df = begin; require 'rdoc/rdoc'; require 'rdoc/generator/darkfish'; true; 
rescue LoadError; end
- rdtask = rdoc_task_type.new do |rd|
-   rd.title = Spec.name
-   rd.rdoc_dir = 'rdoc'
-unchanged:
 a/tests/test_defer.rb
-+++ b/tests/test_defer.rb
-@@ -28,6 +28,7 @@ $:.unshift "../lib"
- require 'eventmachine'
- require 'test/unit'
- 
-+unless RUBY_VERSION >= '1.9.0'
- class TestDeferUsage < Test::Unit::TestCase
- 
-   def test_defers
-@@ -41,7 +42,8 @@ class TestDeferUsage < Test::Unit::TestCase
-   }
- }
- assert_equal( n, n_times )
--  end unless RUBY_VERSION >= '1.9.0'
-+  end
- 
- end
-+end
- 
-only in patch2:
-unchanged:
 a/tests/test_process_watch.rb
-+++ b/tests/test_process_watch.rb
-@@ -2,6 +2,7 @@ $:.unshift "../lib"
- require 'eventmachine'
- require 'test/unit'
- 
-+if EM.kqueue?
- class TestProcessWatch < Test::Unit::TestCase
-   module ParentProcessWatcher
- def process_forked
-@@ -45,4 +46,5 @@ class TestProcessWatch < Test::Unit::TestCase
- assert($exited)
- assert($unbind)
-   end
--end
-\ No newline at end of file
-+end
-+end

diff --git a/dev-ruby/eventmachine/files/eventmachine-0.12.10-https-test.patch 
b/dev-ruby/eventmachine/files/eventmachine-0.12.10-https-test.patch
deleted file mode 100644
index d589d71..
--- a/dev-ruby/eventmachine/files/eventmachine-0.12.10-https-test.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit 63f2debff906a0f51bb807ac8f67c749d72b492d
-Author: Michael S. Klishin 
-Date:   Sun May 23 21:09:03 2010 +0400
-
-Makes HTTPS client tests pass
-
-https://www.amazon.com now redirects to http version. Switching site
-is enough to make the test pass.
-
-diff --git a/tests/test_httpclient2.rb b/tests/test_httpclient2.rb
-index ef72e7c..4705e42 100644
 a/tests/test_httpclient2.rb
-+++ b/tests/test_httpclient2.rb
-@@ -142,7 +142,7 @@ class TestHttpClient2 < Test::Unit::TestCase
-   def test_https_get
- d = nil
- EM.run {
--  http = EM::P::HttpClient2.connect :host => 'www.amazon.com', :port => 
443, :ssl => true
-+  http = EM::P::HttpClient2.connect :host => 'www.apple.com', :port => 
443, :ssl => true
-   d = http.get "/"
-   d.callback {
- EM.stop



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rest-client/files/

2016-10-31 Thread Patrice Clement
commit: 20254dbfd2c5c6c82591aeef23704681d0049157
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:22:17 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20254dbf

dev-ruby/rest-client: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/rest-client-1.6.7-ruby19.patch   | 111 -
 1 file changed, 111 deletions(-)

diff --git a/dev-ruby/rest-client/files/rest-client-1.6.7-ruby19.patch 
b/dev-ruby/rest-client/files/rest-client-1.6.7-ruby19.patch
deleted file mode 100644
index 92ae145..
--- a/dev-ruby/rest-client/files/rest-client-1.6.7-ruby19.patch
+++ /dev/null
@@ -1,111 +0,0 @@
-diff --git a/spec/base.rb b/spec/base.rb
-index 965a6e2..60fb86f 100644
 a/spec/base.rb
-+++ b/spec/base.rb
-@@ -2,8 +2,6 @@ def is_ruby_19?
-   RUBY_VERSION == '1.9.1' or RUBY_VERSION == '1.9.2'
- end
- 
--Encoding.default_internal = Encoding.default_external = "ASCII-8BIT" if 
is_ruby_19?
--
- require 'rubygems'
- require 'spec'
- 
-@@ -14,3 +12,4 @@ rescue LoadError
- end
- 
- require File.dirname(__FILE__) + '/../lib/restclient'
-+require File.join(File.dirname(__FILE__), 'helpers', 'file_content_helper')
-diff --git a/spec/helpers/file_content_helper.rb 
b/spec/helpers/file_content_helper.rb
-new file mode 100644
-index 000..86dd263
 /dev/null
-+++ b/spec/helpers/file_content_helper.rb
-@@ -0,0 +1,3 @@
-+def file_content_helper(path)
-+  IO.respond_to?(:binread) ? IO.binread(path) : IO.read(path)
-+end
-diff --git a/spec/payload_spec.rb b/spec/payload_spec.rb
-index 89ded79..c57b300 100644
 a/spec/payload_spec.rb
-+++ b/spec/payload_spec.rb
-@@ -102,26 +102,28 @@ baz\r
- 
- it "should form properly separated multipart data" do
-   f = File.new(File.dirname(__FILE__) + "/master_shake.jpg")
-+  file_contents = file_content_helper(f.path)
-   m = RestClient::Payload::Multipart.new({:foo => f})
-   m.to_s.should == <<-EOS
- --#{m.boundary}\r
- Content-Disposition: form-data; name="foo"; filename="master_shake.jpg"\r
- Content-Type: image/jpeg\r
- \r
--#{IO.read(f.path)}\r
-+#{file_contents}\r
- --#{m.boundary}--\r
-   EOS
- end
- 
- it "should ignore the name attribute when it's not set" do
-   f = File.new(File.dirname(__FILE__) + "/master_shake.jpg")
-+  file_contents = file_content_helper(f.path)
-   m = RestClient::Payload::Multipart.new({nil => f})
-   m.to_s.should == <<-EOS
- --#{m.boundary}\r
- Content-Disposition: form-data; filename="master_shake.jpg"\r
- Content-Type: image/jpeg\r
- \r
--#{IO.read(f.path)}\r
-+#{file_contents}\r
- --#{m.boundary}--\r
-   EOS
- end
-@@ -130,13 +132,14 @@ Content-Type: image/jpeg\r
-   f = File.new(File.dirname(__FILE__) + "/master_shake.jpg")
-   f.instance_eval "def content_type; 'text/plain'; end"
-   f.instance_eval "def original_filename; 'foo.txt'; end"
-+  file_contents = file_content_helper(f.path)
-   m = RestClient::Payload::Multipart.new({:foo => f})
-   m.to_s.should == <<-EOS
- --#{m.boundary}\r
- Content-Disposition: form-data; name="foo"; filename="foo.txt"\r
- Content-Type: text/plain\r
- \r
--#{IO.read(f.path)}\r
-+#{file_contents}\r
- --#{m.boundary}--\r
-   EOS
- end
-@@ -154,13 +157,14 @@ foo\r
-   f = File.new(File.dirname(__FILE__) + "/master_shake.jpg")
-   f.instance_eval "def content_type; 'text/plain'; end"
-   f.instance_eval "def original_filename; 'foo.txt'; end"
-+  file_contents = file_content_helper(f.path)
-   m = RestClient::Payload::Multipart.new({:foo => {:bar => f}})
-   m.to_s.should == <<-EOS
- --#{m.boundary}\r
- Content-Disposition: form-data; name="foo[bar]"; filename="foo.txt"\r
- Content-Type: text/plain\r
- \r
--#{IO.read(f.path)}\r
-+#{file_contents}\r
- --#{m.boundary}--\r
-   EOS
- end
-diff --git a/spec/response_spec.rb b/spec/response_spec.rb
-index 840698e..d3964a8 100644
 a/spec/response_spec.rb
-+++ b/spec/response_spec.rb
-@@ -90,12 +90,6 @@ describe RestClient::Response do
-   RestClient::Request.execute(:url => 'http://some/resource', :method => 
:get, :user => 'foo', :password => 'bar', :headers => {:accept => 
:json}).body.should == 'Foo'
- end
- 
--it "follows a redirection and keep the cookies" do
--  stub_request(:get, 'http://some/resource').to_return(:body => '', 
:status => 301, :headers => {'Set-Cookie' => CGI::Cookie.new('Foo', 'Bar'), 
'Location' => 'http://new/resource', })
--  stub_request(:get, 'http://new/resource').with(:headers => {'Cookie' => 
'Foo=Bar'}).to_return(:body => 'Qux')
--  RestClient::Request.execute(:url => 'http://some/resource', :method => 
:get).body.should == 'Qux'
--end
--
- it "doesn't follow a 301 when the request is a post" do
-   net_http_res = mock('net http res

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/sinatra/files/

2016-10-31 Thread Patrice Clement
commit: 6573baca3909c895986deba6aac3b63294f19a42
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:25:02 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6573baca

dev-ruby/sinatra: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../sinatra/files/sinatra-1.4.4-fix-tests.patch| 25 --
 1 file changed, 25 deletions(-)

diff --git a/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch 
b/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch
deleted file mode 100644
index 25ed730..
--- a/dev-ruby/sinatra/files/sinatra-1.4.4-fix-tests.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-commit c5c9f6b5501a366d5809faa44e50fad371c14870
-Author: Jon Rowe 
-Date:   Tue Oct 29 14:18:46 2013 +1100
-
-fixes the build by disabling path traversal protection for this test
-
-Seems that this test is in direct competition with the desired
-behaviour of path traversal protection.
-
-diff --git a/test/routing_test.rb b/test/routing_test.rb
-index 410bfda..5584601 100644
 a/test/routing_test.rb
-+++ b/test/routing_test.rb
-@@ -90,7 +90,10 @@ class RoutingTest < Test::Unit::TestCase
-   end
- 
-   it "it handles encoded slashes correctly" do
--mock_app { get("/:a") { |a| a } }
-+mock_app {
-+  set :protection, :except => :path_traversal
-+  get("/:a") { |a| a }
-+}
- get '/foo%2Fbar'
- assert_equal 200, status
- assert_body "foo/bar"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/multipart-post/files/

2016-10-31 Thread Patrice Clement
commit: fdfc28f17bc3a6277af345ae0d1fef0f8ca5c413
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:21:18 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdfc28f1

dev-ruby/multipart-post: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/multipart-post/files/multibyte.txt | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-ruby/multipart-post/files/multibyte.txt 
b/dev-ruby/multipart-post/files/multibyte.txt
deleted file mode 100644
index 24a84b0..
--- a/dev-ruby/multipart-post/files/multibyte.txt
+++ /dev/null
@@ -1 +0,0 @@
-ファイル



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/simple-rss/files/

2016-10-31 Thread Patrice Clement
commit: e848d70e6c115886ee4103285dbf3ab19d2d0d92
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:24:40 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e848d70e

dev-ruby/simple-rss: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/simple-rss-1.2.3-no-media-rss.patch  | 49 --
 1 file changed, 49 deletions(-)

diff --git a/dev-ruby/simple-rss/files/simple-rss-1.2.3-no-media-rss.patch 
b/dev-ruby/simple-rss/files/simple-rss-1.2.3-no-media-rss.patch
deleted file mode 100644
index 9b06898..
--- a/dev-ruby/simple-rss/files/simple-rss-1.2.3-no-media-rss.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-Remove tests depending on media_rss.xml, because it is not shipped in
-the gem and the upstream VCS is not available.
-
-http://rubyforge.org/tracker/index.php?func=detail&aid=28359&group_id=893&atid=3517
-
 test/base/base_test.rb.orig2010-07-08 21:16:48.625863508 +0200
-+++ test/base/base_test.rb 2010-07-08 21:17:06.038612667 +0200
-@@ -3,7 +3,6 @@
-   def setup
-   @rss09 = SimpleRSS.parse open(File.dirname(__FILE__) + 
'/../data/rss09.rdf')
-   @rss20 = SimpleRSS.parse open(File.dirname(__FILE__) + 
'/../data/rss20.xml')
--  @media_rss = SimpleRSS.parse open(File.dirname(__FILE__) + 
'/../data/media_rss.xml')
-   @atom = SimpleRSS.parse open(File.dirname(__FILE__) + 
'/../data/atom.xml')
-   end
-   
-@@ -29,26 +28,6 @@
- assert_equal Time.parse("Fri Sep 09 02:52:31 PDT 2005"), 
@rss09.channel.dc_date
-   end
- 
--  def test_media_rss
--  assert_equal 20, @media_rss.items.size
--  assert_equal "Uploads from herval", @media_rss.title
--  assert_equal "http://www.flickr.com/photos/herval/";, 
@media_rss.channel.link
--  assert_equal "http://www.flickr.com/photos/herval/4671960608/";, 
@media_rss.items.first.link
--  assert_equal "http://www.flickr.com/photos/herval/4671960608/";, 
@media_rss.items.first[:link]
--  assert_equal 
"http://farm5.static.flickr.com/4040/4671960608_10cb945d5c_o.jpg";, 
@media_rss.items.first.media_content_url
--  assert_equal "image/jpeg", 
@media_rss.items.first.media_content_type
--  assert_equal "3168", @media_rss.items.first.media_content_height
--  assert_equal "4752", @media_rss.items.first.media_content_width
--  assert_equal "Woof?", @media_rss.items.first.media_title
--  assert_equal 
"http://farm5.static.flickr.com/4040/4671960608_954d2297bc_s.jpg";, 
@media_rss.items.first.media_thumbnail_url
--  assert_equal "75", @media_rss.items.first.media_thumbnail_height
--  assert_equal "75", @media_rss.items.first.media_thumbnail_width
--  assert_equal "herval", @media_rss.items.first.media_credit
--  assert_equal "photographer", 
@media_rss.items.first.media_credit_role
--  assert_equal "pets frodo", @media_rss.items.first.media_category
--  assert_equal "urn:flickr:tags", 
@media_rss.items.first.media_category_scheme
--  end
--  
-   def test_rss20
-   assert_equal 10, @rss20.items.size
-   assert_equal "Technoblog", @rss20.title
-@@ -69,4 +48,4 @@
-   def test_bad_feed
- assert_raise(SimpleRSSError) { 
SimpleRSS.parse(open(File.dirname(__FILE__) + '/../data/not-rss.xml')) }
-   end
--end
-\ No newline at end of file
-+end



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/termcolor/files/

2016-10-31 Thread Patrice Clement
commit: 977df0d0791df4318ba79e559d85d5e0d5db487e
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:25:25 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=977df0d0

dev-ruby/termcolor: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../termcolor/files/termcolor-1.2.1-fix-spec.patch| 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-ruby/termcolor/files/termcolor-1.2.1-fix-spec.patch 
b/dev-ruby/termcolor/files/termcolor-1.2.1-fix-spec.patch
deleted file mode 100644
index 411f29d..
--- a/dev-ruby/termcolor/files/termcolor-1.2.1-fix-spec.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit c455099b273c514c0ae8e5aad485be207a4e933c
-Author: jugyo 
-Date:   Mon Aug 30 23:59:04 2010 +0900
-
-fixed spec
-
-diff --git a/spec/termcolor_spec.rb b/spec/termcolor_spec.rb
-index 888a13d..50d403c 100644
 a/spec/termcolor_spec.rb
-+++ b/spec/termcolor_spec.rb
-@@ -27,7 +27,7 @@ module TermColor
- it 'should parse 3' do
-   text = 
TermColor.parse('aa<30>bbb<32><90>dddcbaaa')
-   puts text
--  text.should == 
"aa\e[30mbbb\e[32m\e[90mddd\e[0m\e[32mc\e[0m\e[30mb\e[0maaa"
-+  text.should == 
"aa\e[30mbbb\e[32m\e[90mddd\e[0m\e[30m\e[32mc\e[0m\e[30mb\e[0maaa"
- end
- 
- it 'should parse 4' do



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/uuidtools/files/

2016-10-31 Thread Patrice Clement
commit: af97a5a5ef01b3bca5a0420d4dc3982f3e6a3ba9
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:25:48 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af97a5a5

dev-ruby/uuidtools: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../files/uuidtools-2.1.2-macaddress.patch | 71 --
 1 file changed, 71 deletions(-)

diff --git a/dev-ruby/uuidtools/files/uuidtools-2.1.2-macaddress.patch 
b/dev-ruby/uuidtools/files/uuidtools-2.1.2-macaddress.patch
deleted file mode 100644
index b5ebbc4..
--- a/dev-ruby/uuidtools/files/uuidtools-2.1.2-macaddress.patch
+++ /dev/null
@@ -1,71 +0,0 @@
-From d29566188211e5511efece9319c524f7a278655c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= 
-Date: Tue, 10 Jul 2012 01:18:34 -0700
-Subject: [PATCH] specs: do not fail tests if MAC address can't be fetched.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-It's very well possible that depending on the capabilities of the
-process (and user) running the specs, the MAC address is not
-available. In this case, do not fail tests, simply skip over those if
-the mac address is unset.
-
-Solves issue #12.
-
-Signed-off-by: Diego Elio Pettenò 

- spec/uuidtools/mac_address_spec.rb   |6 +-
- spec/uuidtools/uuid_creation_spec.rb |2 +-
- spec/uuidtools/uuid_parsing_spec.rb  |2 +-
- 3 files changed, 3 insertions(+), 7 deletions(-)
-
-diff --git a/spec/uuidtools/mac_address_spec.rb 
b/spec/uuidtools/mac_address_spec.rb
-index 987ae36..f0ee146 100644
 a/spec/uuidtools/mac_address_spec.rb
-+++ b/spec/uuidtools/mac_address_spec.rb
-@@ -1,14 +1,10 @@
- require File.expand_path("../../spec_helper.rb", __FILE__)
- 
--describe UUIDTools::UUID, "when obtaining a MAC address" do
-+describe UUIDTools::UUID, "when obtaining a MAC address", :unless => 
UUIDTools::UUID.mac_address.nil? do
-   before do
- @mac_address = UUIDTools::UUID.mac_address
-   end
- 
--  it "should obtain a MAC address" do
--@mac_address.should_not be_nil
--  end
--
-   it "should cache the MAC address" do
- @mac_address.object_id.should == UUIDTools::UUID.mac_address.object_id
-   end
-diff --git a/spec/uuidtools/uuid_creation_spec.rb 
b/spec/uuidtools/uuid_creation_spec.rb
-index 6f6b497..45b78a2 100644
 a/spec/uuidtools/uuid_creation_spec.rb
-+++ b/spec/uuidtools/uuid_creation_spec.rb
-@@ -13,7 +13,7 @@ describe UUIDTools::UUID, "when generating" do
- ).to_s.should == "15074785-9071-3fe3-89bd-876e4b9e919b"
-   end
- 
--  it "should correctly generate timestamp variant UUIDs" do
-+  it "should correctly generate timestamp variant UUIDs", :unless => 
UUIDTools::UUID.mac_address.nil? do
- UUIDTools::UUID.timestamp_create.should_not be_random_node_id
- UUIDTools::UUID.timestamp_create.to_s.should_not ==
-   UUIDTools::UUID.timestamp_create.to_s
-diff --git a/spec/uuidtools/uuid_parsing_spec.rb 
b/spec/uuidtools/uuid_parsing_spec.rb
-index 56cfeee..fcfafeb 100644
 a/spec/uuidtools/uuid_parsing_spec.rb
-+++ b/spec/uuidtools/uuid_parsing_spec.rb
-@@ -23,7 +23,7 @@ describe UUIDTools::UUID, "when parsing" do
- UUIDTools::UUID.timestamp_create.should_not be_nil_uuid
-   end
- 
--  it "should not treat a timestamp version UUID as a random node UUID" do
-+  it "should not treat a timestamp version UUID as a random node UUID", 
:unless => UUIDTools::UUID.mac_address.nil? do
- UUIDTools::UUID.timestamp_create.should_not be_random_node_id
-   end
- 
--- 
-1.7.8.6
-



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/multi_json/files/

2016-10-31 Thread Patrice Clement
commit: bb66fe5f866c19b8b6d3d00afc914c62a01dfbcd
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:20:51 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb66fe5f

dev-ruby/multi_json: remove unused patches.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 .../multi_json/files/multi_json-0.0.4-gentoo.patch | 24 ---
 .../multi_json/files/multi_json-1.0.3-gentoo.patch | 75 --
 2 files changed, 99 deletions(-)

diff --git a/dev-ruby/multi_json/files/multi_json-0.0.4-gentoo.patch 
b/dev-ruby/multi_json/files/multi_json-0.0.4-gentoo.patch
deleted file mode 100644
index 8736809..
--- a/dev-ruby/multi_json/files/multi_json-0.0.4-gentoo.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/spec/multi_json_spec.rb b/spec/multi_json_spec.rb
-index 2df3350..9d2a376 100644
 a/spec/multi_json_spec.rb
-+++ b/spec/multi_json_spec.rb
-@@ -13,13 +13,17 @@ end
- describe "MultiJson" do
-   context 'engines' do
- it 'should default to the best available gem' do
-+  begin
-   require 'yajl'
-   MultiJson.engine.name.should == 'MultiJson::Engines::Yajl'
-+  rescue LoadError
-+pending "YAJL (or a dependency) not available."
-+  end
- end
- 
- it 'should be settable via a symbol' do
--  MultiJson.engine = :yajl
--  MultiJson.engine.name.should == 'MultiJson::Engines::Yajl'
-+  MultiJson.engine = :json_pure
-+  MultiJson.engine.name.should == 'MultiJson::Engines::JsonPure'
- end
- 
- it 'should be settable via a class' do

diff --git a/dev-ruby/multi_json/files/multi_json-1.0.3-gentoo.patch 
b/dev-ruby/multi_json/files/multi_json-1.0.3-gentoo.patch
deleted file mode 100644
index 2e031e0..
--- a/dev-ruby/multi_json/files/multi_json-1.0.3-gentoo.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-A small part of 
-
-commit d83002691a34a32b6d6d181817af7f8e68524638
-Author: Erik Michaels-Ober 
-Date:   Sat May 14 09:26:31 2011 -0700
-
-Cleanup
-
-diff --git a/spec/multi_json_spec.rb b/spec/multi_json_spec.rb
-index 9be78f4..55238c9 100644
 b/spec/multi_json_spec.rb
-+++ a/spec/multi_json_spec.rb
-@@ -1,9 +1,9 @@
--require 'helper'
-+require 'spec_helper'
- require 'stringio'
--
-+  
- class MockDecoder
-   def self.decode(string, options = {})
--{'abc' => 'def'}
-+{ 'abc' => 'def' }
-   end
- 
-   def self.encode(string)
-@@ -26,10 +26,16 @@
- end
-   end
- end
--
-+
- it 'defaults to the best available gem' do
--  require 'yajl'
--  MultiJson.engine.name.should == 'MultiJson::Engines::Yajl'
-+  # the yajl-ruby gem does not work on jruby, so the best engine is the 
JsonGem engine
-+  if jruby?
-+require 'json'
-+MultiJson.engine.name.should == 'MultiJson::Engines::JsonGem'
-+  else
-+require 'yajl'
-+MultiJson.engine.name.should == 'MultiJson::Engines::Yajl'
-+  end
- end
- 
- it 'is settable via a symbol' do
-@@ -89,7 +95,7 @@
-   encoded_json = MultiJson.encode(:a => 1, :b => {:c => 2})
-   MultiJson.decode(encoded_json).should == { "a" => 1, "b" => { "c" 
=> 2 } }
- end
--
-+
- it "properly decodes valid JSON in StringIOs" do
-   json = StringIO.new('{"abc":"def"}')
-   MultiJson.decode(json).should == { 'abc' => 'def' }
-diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
-deleted file mode 100644
-index a9b66e6..000
 /dev/null
-+++ a/spec/spec_helper.rb
-@@ -0,0 +1,15 @@
-+begin
-+  require 'bundler'
-+rescue LoadError
-+  puts "although not required, it's recommended that you use bundler during 
development"
-+end
-+
-+require 'rspec'
-+require 'rspec/autorun'
-+
-+$VERBOSE = true
-+require 'multi_json'
-+
-+def jruby?
-+  defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby"
-+end



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/plist/files/

2016-10-31 Thread Patrice Clement
commit: 03ce1f6a94fc02d05be33ce2db4d7cd8cb22373a
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:21:54 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 12:00:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03ce1f6a

dev-ruby/plist: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2417

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/plist/files/plist-3.1.0-nordoc.patch | 28 ---
 1 file changed, 28 deletions(-)

diff --git a/dev-ruby/plist/files/plist-3.1.0-nordoc.patch 
b/dev-ruby/plist/files/plist-3.1.0-nordoc.patch
deleted file mode 100644
index 30f289e..
--- a/dev-ruby/plist/files/plist-3.1.0-nordoc.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Index: plist-3.1.0/Rakefile
-===
 plist-3.1.0.orig/Rakefile
-+++ plist-3.1.0/Rakefile
-@@ -15,7 +15,13 @@ require 'rake/testtask'
- require 'rake/packagetask'
- require 'rake/gempackagetask'
- require 'rake/contrib/rubyforgepublisher'
--require 'rdoc/task'
-+begin
-+  require 'rdoc/task'
-+  doctask = RDoc::Task
-+rescue LoadError
-+  require 'rake/rdoctask'
-+  doctask = Rake::RDocTask
-+end
- 
- $:.unshift(File.dirname(__FILE__) + "/lib")
- require 'plist'
-@@ -104,7 +110,7 @@ task :update_rdoc => [ :rdoc ] do
- end
- 
- # Genereate the RDoc documentation
--RDoc::Task.new do |rdoc|
-+doctask.new do |rdoc|
-   rdoc.title = "All-purpose Property List manipulation library"
-   rdoc.main  = "README.rdoc"
- 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/coolio/files/

2016-10-31 Thread Patrice Clement
commit: dce0752f071007ff63b5c141c6b4b0bbdf620cc8
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Sep 26 16:14:53 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 11:59:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dce0752f

dev-ruby/coolio: remove unused patch.

Closes: https://github.com/gentoo/gentoo/pull/2416

Signed-off-by: Patrice Clement  gentoo.org>

 dev-ruby/coolio/files/coolio-1.1.0-rubyio.patch | 32 -
 1 file changed, 32 deletions(-)

diff --git a/dev-ruby/coolio/files/coolio-1.1.0-rubyio.patch 
b/dev-ruby/coolio/files/coolio-1.1.0-rubyio.patch
deleted file mode 100644
index a47e607..
--- a/dev-ruby/coolio/files/coolio-1.1.0-rubyio.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff --git a/ext/cool.io/cool.io.h b/ext/cool.io/cool.io.h
-index 364d4ae..05ce5bc 100644
 a/ext/cool.io/cool.io.h
-+++ b/ext/cool.io/cool.io.h
-@@ -8,7 +8,11 @@
- #define COOLIO_H
- 
- #include "ruby.h"
-+#ifdef HAVE_RUBY_IO_H
-+#include "ruby/io.h"
-+#else
- #include "rubyio.h"
-+#endif
- 
- #ifdef GetReadFile
- #define FPTR_TO_FD(fptr) (fileno(GetReadFile(fptr)))
-diff --git a/ext/cool.io/iowatcher.c b/ext/cool.io/iowatcher.c
-index 09ff87b..ccf6a3f 100644
 a/ext/cool.io/iowatcher.c
-+++ b/ext/cool.io/iowatcher.c
-@@ -5,7 +5,11 @@
-  */
- 
- #include "ruby.h"
-+#ifdef HAVE_RUBY_IO_H
-+#include "ruby/io.h"
-+#else
- #include "rubyio.h"
-+#endif
- 
- #include "ev_wrap.h"
- 



[gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/

2016-10-31 Thread Lars Wendler
commit: 6f55bbc32804fadc5962bb0c64199f037caf3f20
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Oct 31 12:32:18 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Oct 31 12:32:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f55bbc3

www-client/seamonkey: Removed old.

Package-Manager: portage-2.3.2
Signed-off-by: Lars Wendler  gentoo.org>

 www-client/seamonkey/Manifest |  29 --
 www-client/seamonkey/seamonkey-2.39.ebuild| 350 ---
 www-client/seamonkey/seamonkey-2.42.3.0_p0.ebuild | 395 --
 3 files changed, 774 deletions(-)

diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest
index aa9b91c..d95b7bc 100644
--- a/www-client/seamonkey/Manifest
+++ b/www-client/seamonkey/Manifest
@@ -3,37 +3,9 @@ DIST dom-inspector-2.0.16.tar.xz 156844 SHA256 
c71af60db47ee9f4ced1931005325c834
 DIST enigmail-1.8.2.tar.gz 1604159 SHA256 
1d2700799bc52aaa8e8c9f7a0f5111281ff9fbdffc093cdff070657d574eb2a6 SHA512 
51eece988f466aeb4a343719a86dc7d95ec41dfc3ec7e3d8d2f360528675c605f8f2154f10aeea6ef82ed87c784f1d13bfc978e052a9ede0072b5137f6294b11
 WHIRLPOOL 
e12a703899e0e4c98adc58b5f4bf1f74e24a2cf09c1a706a6edca6aca06140041b293f23e6e5b05c507177b4148533ebc3431fb75592aae07d791a899ba2c45c
 DIST enigmail-1.9.1.tar.gz 1736876 SHA256 
0393119725fa5931d9888a2a1c9796d440ee7975ca3d005eb63142768b10f993 SHA512 
5417d7744ff5b8299d9799059f62013e546fb74206782169e5ce6baa0950d96d1c8996c99ec902ca73b241fd1268966e0a7ad30c032a1706a0efbf06fefc311c
 WHIRLPOOL 
80cff68461edc743851de5a83cd04105f6689eb1289f46b72334a96b091dc430399a91b2ab004a39bd7cb04433ab0471dd07b44d39fc2eb3869487b07841fc5a
 DIST firefox-42.0-patches-0.4.tar.xz 13384 SHA256 
e56db95dbf077a05189868b400bc6d6750f9cd816a7f38e29180f07975f4f098 SHA512 
3c51022ab3eb53ae826824a7fd5870b2c639f70c255d461ac454a67e814dc0c61393ddb1a82527a60325c6373a4e1daaef0fbd088109fd2b65ba6d9538feaba4
 WHIRLPOOL 
d6ab99e7525a7d7749d5805d5b9ff0430fff5b57262574a334d48d9ef08ed90784e90ab33f3794ec04308199dddae773f80a3d3c86c880b393924ee64f3dd0cb
-DIST firefox-42.0-patches-02.tar.xz 6424 SHA256 
6c8a89c75ea4a359bf720f011e1bb856b653cd6676767b33ccb9d2f807a089e3 SHA512 
d40266c98aa5bfeed243e3bd42f9146bc73492bd20bd07ac4941df83793a7e3a832220b65fc8c9eeb5f3a00089087251a2b758df5fc0d3dd3403468ec0b9eb53
 WHIRLPOOL 
93356507e31a5dca653a5fcc844c24acc1de6b2a01f3dbd7227c1e23eda4e8799a59cf1a50bb49b721249cb82c744d49f4671bfb7188275101c6de955afdb149
-DIST firefox-45.0-patches-04.tar.xz 18600 SHA256 
2ee0ab58e0a1db7b573dd7ac407dcb9a43a85dd295c5d6d263f72ce629c5290c SHA512 
cf5d4ddfe14dff92950baae066350ace0a503c5bdd9d837e4724fd2fb905a2fb540dcf34971531e79547dd62dfbf217d472f39ccc4802f34a245e24f406fdb5e
 WHIRLPOOL 
1461c61ba7e54b7a91c758fdf91fda22260eaff4148b3cccab8ccfd9d09a3d80c0314e999284d392d9e961c42cd9720d6d30ac190074f74d1e53ecb1afa1b1e3
 DIST firefox-45.0-patches-07.tar.xz 21016 SHA256 
76a70ebb3f9c0515c0632170dfeedf0bfb60f248bee579514940148bb3e2b1c5 SHA512 
304d6ed4b4c9ac58f3762263207167a9a32532fd48f17d9cc86f5106f7ec98273f402e3779b810b455ceea77d84313ffc8f236fa6fdc6cd5ef21e8159beec552
 WHIRLPOOL 
a50d54d1e3b5c0fb0e8b32c8d69cdeb99a8fbfa90ac51dfa01163ab0228499b08d3ef37b27391d0d5179d80e937447029c2f976f014bf97d0da3e4bc1b58eaf7
 DIST mozilla-graphite2-1.3.5-upgrade_patches.tar.xz 92916 SHA256 
6314600c4d19112a51fba1f406eaef34b50df78405aa7cb0080550322d9b9ff9 SHA512 
7fa37fe27587b80aaf4a2625abf7a28553286ecfa837b4c7c7d5a217abf8cf01a2446471f7c320d484325c2f7461161b00df75ff9a5d9efc70140e9723f5ac2f
 WHIRLPOOL 
749ba5919850945f0fe36dfac912206cd38c50ae244703d07e37ea8a99a6b0c4300d0dd443db6c7a7fea22792ac7ccc8f839d598260e3e9f044e03431513f5c8
 DIST seamonkey-2.33-patches-01.tar.xz 944 SHA256 
1612d94dddbd37fa4ce8307c1ba565c8439d082609b63c12b4971e361895566c SHA512 
0132e7d06a1ea5d6c059f23e5b8a20016a1e911e8aa40ae15eaefcd141030b4d245297f1e13e508827d91bab5988db4775c8425e737654afba2ede9c2dee8392
 WHIRLPOOL 
4520c4eaa7e6a25f5c32e9cd1d46472e181fbd769a1c5a59c913834cec5556100eac01423b4abf4a47543d0fbae4bf83b0f4a4d6cec7a058587e2705043bf507
-DIST seamonkey-2.39-be.xpi 845960 SHA256 
289803bc8d1669aa8dc116e55ffbef60a611002c39dbe9e461ad3546d82043d5 SHA512 
2332683e78d8f546fe85a9d7431c295f5f31341d46072eb0eafca6014d527367edc575f5384b332744d3ea9b1c37f5fb86d547f4c78919e4a9310c99c8705cae
 WHIRLPOOL 
4b2fe60315e7146548311c6c8d2c335d21fed1fb0f9057e9c903968bae8dc251b7e60151965f1ca3a4f58dc210e08e6a7677a7f57c41f6d2577e156ef98ed5c0
-DIST seamonkey-2.39-ca.xpi 837800 SHA256 
7cd996abf7027189f6c3fd09501331b1bcf06a61f596cd7042d2a2a66b58e0e2 SHA512 
43eba49530dd7fdef0c197badff904cda164a700a54ece6fd0706867ae72637aa98eea71175e21de9b322c6b0deda5e709970e16f0bb543d56848e08457f129a
 WHIRLPOOL 
47f6966ab587b4d9e33ff7f318e2009155d4f5d64d30020010414e2cb2d4ec05baff58dac2301339685ffadabeaa690bd519766fb6d99627e9e1258cce99b4ca
-DIST seamonkey-2.39-cs.xpi 830007 SHA256 
6204072196d5ef65cfd5a380d7a985f225f17b8bf5c945e7828ca33cdb09b2da SHA512 
b266532512053564d1dbe276e97

[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/

2016-10-31 Thread Brian Evans
commit: 9e87a8e0abaa8e40b11481fbd5b79ee5424e0681
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Oct 31 12:51:50 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Oct 31 12:51:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e87a8e0

dev-db/mariadb: Version bump for 5.5.53

Package-Manager: portage-2.3.2

 dev-db/mariadb/Manifest  |   1 +
 dev-db/mariadb/mariadb-5.5.53.ebuild | 123 +++
 2 files changed, 124 insertions(+)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index d518e37..022107c 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -3,6 +3,7 @@ DIST mariadb-10.0.28.tar.gz 63297461 SHA256 
0a5033d56f1c5403df7fabd519ccbdc4da30
 DIST mariadb-10.1.17.tar.gz 61158134 SHA256 
4ca45ac5e34418761868115ebc8c068d511fed08e283b2cac52559d63ba4aab5 SHA512 
900f019ec7544e315c98aea3647988f6ec257822b116c8a986851db678dd0bf71018dde1d0c90adeaa713af12348344ffc54c292a64869d9565f3f906599396d
 WHIRLPOOL 
e2e4d1294bc64c37d6916dc291d33769fd05c591697efba27fff79cb4debc76cf7a5eaf6e63a9ce3a12c22653ffc9d25082eb5a03f4f402b7395b91cb9ea415d
 DIST mariadb-10.2.1.tar.gz 55721519 SHA256 
90b7a17f3372c92c12dff084b37fcca8c4cf8106f4dcabd35fadc8efbaa348a2 SHA512 
3dde348e4bba2b6837e0a0671e9ec944aa494e4a01ebb4704e067cc8fe71865aef685f4ce368e9a81c5adeb1e8cc4f3a1b4067193a4b1ffc1fc567bf79a0b4ff
 WHIRLPOOL 
cbf33b7f6fb131a834367214ff4ab49bbda8aebb6e6fe449c7be2648934bcdab79c50a043907c07603f51892041701be59ff45984db43e302b2174f6fd40bc31
 DIST mariadb-5.5.52.tar.gz 45745859 SHA256 
e142f9459507b97c5848042863b313ce70750118446bb4e35e5c07fe66007293 SHA512 
76d1c1209aa8b56d6562907cb224d0be4f6bccd46e30d16dfb57f19fee1c60dcba21d8388c70674cac0a09e11361e1c5296d1e79d2ba9edc16bc4f9c7a7733eb
 WHIRLPOOL 
4030f24f9d79fded7eb51a9c84b590f81a58ae07797322a6b6f5c3f6c84ea86975eceeb03922c38acf0bcd18769c8a0759624822e570d7301fc950cffc283631
+DIST mariadb-5.5.53.tar.gz 45739935 SHA256 
4517296f5686af83c3f67bd9183ca1038c73a9c6c5e680389d167f72c644124e SHA512 
43d98de3d392a7598265752433a1443432dd5029ebef22a7b20816194c65a14c480df064cb36875af414b47d994d31f6431c49d6b5988021f314d9518c8af90d
 WHIRLPOOL 
f9fa83d709689f1e2aba116d4c16bc2f1226d4cf1fc74b5b7f6a73d0647aa796bd3e92ff8bcd3e62f41d480e8c56ee1f10e765dd5c320a6385e6a3ecfb0f03da
 DIST mysql-extras-20160629-1442Z.tar.bz2 299152 SHA256 
c90979db927772468f8b398c640469ff4740f950068e740c04ff60500e714766 SHA512 
1de46daf6b4534dadf9d3eff8d5d557778e63b5e04aedb57fe56d3016ba93a9d55d80faee38f77852d23da5169879e4f25b3386abe44ee8d961db7ffc4145715
 WHIRLPOOL 
d8c94e4e43e772307d8d137a28e18991fa24a27b1587ec19ae5bd12c733cc0931e459092de2c43216776e3284c7c416d52030fe20c98a6439388507c5fe5111f
 DIST mysql-extras-20160721-1526Z.tar.bz2 301788 SHA256 
45198f8adb4a61fdd89a5d3c7966ce2fe9241381510e1f7b93e793502a32dfcb SHA512 
c7450039780e4e2684c932ba7c291c1de25dd1a64e4c6e88aa13b790768b4100955f36ae4a3bf983569ea23b43be02da6dad3d5985c1163ec9e8aa91f0efd85d
 WHIRLPOOL 
becdf0d4d7b8b5a269246d2fcf1bc09c4313046468b264f07394ae9f1de2f736ad3fff8cad35e544df7a3623688050e6fb9635dfea3876ea082d19cf9fe88927
 DIST mysql-extras-20160818-1822Z.tar.bz2 302657 SHA256 
7e4f42ea0754af120d2ad6b4a3e40dd9bd5a769913ac141453a2c53419bd6c05 SHA512 
19bd509fd1a37c537ae28919516406735cdf3d3fbc66583f765b64b3d296bd041cf2bc2291004b7274604a2fda3cb399141d6c672ae5d6f8aced3d019ac81826
 WHIRLPOOL 
46b4e3c7f415b2de1440aa9d190805dfbc49a8f4a6ed26be5e4bb3e3e9553885cc7e7e13c83c49fadf71a6081bb8fd9d28d5f4d8372540c89a649f2d913fdd9b

diff --git a/dev-db/mariadb/mariadb-5.5.53.ebuild 
b/dev-db/mariadb/mariadb-5.5.53.ebuild
new file mode 100644
index ..e22d98f
--- /dev/null
+++ b/dev-db/mariadb/mariadb-5.5.53.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+MY_EXTRAS_VER="20160721-1526Z"
+
+# Build system
+BUILD="cmake"
+
+inherit toolchain-funcs mysql-v2
+# only to make repoman happy. it is really set in the eclass
+IUSE="$IUSE"
+
+# REMEMBER: also update eclass/mysql*.eclass before committing!
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+
+# When MY_EXTRAS is bumped, the index should be revised to exclude these.
+EPATCH_EXCLUDE=''
+
+DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )"
+RDEPEND="${RDEPEND}"
+
+# Please do not add a naive src_unpack to this ebuild
+# If you want to add a single patch, copy the ebuild to an overlay
+# and create your own mysql-extras tarball, looking at 000_index.txt
+
+# Official test instructions:
+# USE='embedded extraengine perl ssl static-libs community' \
+# FEATURES='test userpriv -usersandbox' \
+# ebuild mariadb-X.X.XX.ebuild \
+# digest clean package
+src_test() {
+
+   local TESTDIR="${BUILD_DIR}/mysql-test"
+   local retstatus_unit
+   loca

[gentoo-commits] proj/linux-patches: New tag: 4.8-7

2016-10-31 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Mon Oct 31 13:03:57 2016 +

New tag: 4.8-7




[gentoo-commits] repo/gentoo:master commit in: net-misc/dropbox/

2016-10-31 Thread Jason Zaman
commit: fa297a95b0fb4236c70be167678586b2386306ee
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 12:49:48 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 13:11:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa297a95

net-misc/dropbox: Drop old

Package-Manager: portage-2.3.0

 net-misc/dropbox/Manifest  |   2 -
 net-misc/dropbox/dropbox-5.3.18.ebuild | 136 -
 2 files changed, 138 deletions(-)

diff --git a/net-misc/dropbox/Manifest b/net-misc/dropbox/Manifest
index 838ed24..62f87db 100644
--- a/net-misc/dropbox/Manifest
+++ b/net-misc/dropbox/Manifest
@@ -1,4 +1,2 @@
-DIST dropbox-lnx.x86-5.3.18.tar.gz 64490559 SHA256 
b6365d2812640605120bce5773efa2d209695d787a32341c55f8f9e006b1ca98 SHA512 
157badaacdf254f6674b489aec2c2e9993a20378925a2ce69e12ffabd4191d9dc42f2e69c34eae8f0cd55b26f6ab88027a2848311231c31951d9e63c195560ef
 WHIRLPOOL 
da2d8cd829ed6a6d550761e047cd248af432e31deb602d1fe04893117f26b4861a342ee0e4af7f1bcba13feb59d09000a52c2b3d0f44c813e23c0de92c0289a1
 DIST dropbox-lnx.x86-6.3.13.tar.gz 64626579 SHA256 
b68514e73112f13e3c6cd3651bcb1425207c91c2544b2fe642c2e65686d29dd3 SHA512 
5d4ce4c525244ca7e72a15bfcdf4548836b15e29b70d54e051009a03cbbfcbdf7876a48f8225762d02d3f57412ba42b0b20e2a4f51e550fdfab9a47192fb7fab
 WHIRLPOOL 
23b0e606614865ba7ead7b9ef079719b4cdf165235b805750e2d3b29376172bee5a4351bc15498547c0c63741d3cda2650dd862714d67192b63f78e702e3b2cb
-DIST dropbox-lnx.x86_64-5.3.18.tar.gz 68424062 SHA256 
25b746a370d9879665a5dce3d25af27866070adb693ce6d1faab77f761d9ede6 SHA512 
83d62d553cbee2e640e0fb272d3bf18925d001252a6afa4297e3b9a9f9581cbce3e7a1dc8294e125df31cf395f733aad742140d187880019f1fd4fd24250f592
 WHIRLPOOL 
80e92e39d054aa5c7300fad10114d70828988a59e8f870d047ab83ae543e979ed64dad2872ceab1170c371998adc02776e214eab36beec3e15f51d791f468a5b
 DIST dropbox-lnx.x86_64-6.3.13.tar.gz 68557842 SHA256 
3decda5771334db6924f52d550eece66306ddf5553e39e52a5ed831024850b6b SHA512 
c21b0132978376affb5c0da780a6b884a558e6ab84cfa4a889524eb3baff174f1bbefd4839543e5dcda94aef224d8b8a595b79fde3436b8bf4655751dbfd9f22
 WHIRLPOOL 
b89ce4ff83eb2eba9089c185365f9522b67c89dbe6996bdbae2f624d9a3c3cb3674f61bc5c02f39dfd6abc087808c62ae105ed6c12a1add80779a403622bd9d8

diff --git a/net-misc/dropbox/dropbox-5.3.18.ebuild 
b/net-misc/dropbox/dropbox-5.3.18.ebuild
deleted file mode 100644
index 68a29d5..
--- a/net-misc/dropbox/dropbox-5.3.18.ebuild
+++ /dev/null
@@ -1,136 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit eutils gnome2-utils pax-utils systemd
-
-DESCRIPTION="Dropbox daemon (pretends to be GUI-less)"
-HOMEPAGE="http://dropbox.com/";
-SRC_URI="
-   x86? ( 
https://dl.dropboxusercontent.com/u/17/dropbox-lnx.x86-${PV}.tar.gz )
-   amd64? ( 
https://dl.dropboxusercontent.com/u/17/dropbox-lnx.x86_64-${PV}.tar.gz )"
-
-LICENSE="CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-linux"
-IUSE="+librsync-bundled selinux X"
-RESTRICT="mirror strip"
-
-QA_PREBUILT="opt/.*"
-QA_EXECSTACK="opt/dropbox/dropbox"
-
-DEPEND="librsync-bundled? ( dev-util/patchelf )"
-
-# Be sure to have GLIBCXX_3.4.9, #393125
-# USE=X require wxGTK's dependencies. system-library cannot be used due to
-# missing symbol (CtlColorEvent). #443686
-RDEPEND="
-   X? (
-   dev-libs/glib:2
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5[-gles2,xcb]
-   dev-qt/qtopengl:5[-gles2]
-   dev-qt/qtnetwork:5
-   dev-qt/qtprintsupport:5[-gles2]
-   dev-qt/qtwebkit:5
-   dev-qt/qtwidgets:5[-gles2]
-   media-libs/fontconfig
-   media-libs/freetype
-   virtual/jpeg
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXinerama
-   x11-libs/libXxf86vm
-   x11-libs/pango[X]
-   x11-misc/wmctrl
-   x11-themes/hicolor-icon-theme
-   )
-   !librsync-bundled? ( =sys-devel/gcc-4.2.0
-   sys-libs/zlib
-   || (
-   sys-libs/ncurses:5/5
-   sys-libs/ncurses:0/5
-   )"
-
-src_unpack() {
-   unpack ${A}
-   mkdir -p "${S}" || die
-   mv "${WORKDIR}"/.dropbox-dist/* "${S}" || die
-   mv "${S}"/dropbox-lnx.*-${PV}/* "${S}" || die
-   rmdir "${S}"/dropbox-lnx.*-${PV}/ || die
-   rmdir .dropbox-dist || die
-}
-
-src_prepare() {
-   local target=(
-   cryptography-1.0-py2.7-*.egg
-   dropbox_sqlite_ext-0.0-py2.7.egg
-   psutil-3.1.1-py2.7-*.egg
-   setuptools-20.3-py2.7.egg
-   tornado-4.2-py2.7-*.egg
-   )
-
-   eapply_user
-
-   rm -vf libbz2* libpopt.so.0 libpng12.so.0 || die
-   rm -vf libdrm.so.2 libffi.so.6 libGL.so.1 libX11

[gentoo-commits] repo/gentoo:master commit in: net-misc/dropbox/

2016-10-31 Thread Jason Zaman
commit: 7f63799a064f0e60a2268166a460232e004c378d
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 12:48:17 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 13:11:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f63799a

net-misc/dropbox: stable 6.3.13

Package-Manager: portage-2.3.0

 net-misc/dropbox/dropbox-6.3.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dropbox/dropbox-6.3.13.ebuild 
b/net-misc/dropbox/dropbox-6.3.13.ebuild
index c4631a5..3a3f192 100644
--- a/net-misc/dropbox/dropbox-6.3.13.ebuild
+++ b/net-misc/dropbox/dropbox-6.3.13.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-linux"
+KEYWORDS="amd64 x86 ~x86-linux"
 IUSE="+librsync-bundled selinux X"
 RESTRICT="mirror strip"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-keyring/

2016-10-31 Thread Jason Zaman
commit: d3936df28c4bf3183738d923710c69a7dc896bec
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 12:47:03 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 13:11:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3936df2

gnome-base/gnome-keyring: Add selinux policy dep

Package-Manager: portage-2.3.0

 gnome-base/gnome-keyring/gnome-keyring-3.20.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnome-base/gnome-keyring/gnome-keyring-3.20.0.ebuild 
b/gnome-base/gnome-keyring/gnome-keyring-3.20.0.ebuild
index 76321f3..c1c5e52 100644
--- a/gnome-base/gnome-keyring/gnome-keyring-3.20.0.ebuild
+++ b/gnome-base/gnome-keyring/gnome-keyring-3.20.0.ebuild
@@ -24,6 +24,7 @@ RDEPEND="
>=dev-libs/libgcrypt-1.2.2:0=
caps? ( sys-libs/libcap-ng )
pam? ( virtual/pam )
+   selinux? ( sec-policy/selinux-gnome )
>=app-crypt/gnupg-2.0.28:=
 "
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: net-misc/dropbox/

2016-10-31 Thread Jason Zaman
commit: e917961a61c9e9c825893687bed5bea552f1303c
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Oct 31 13:09:42 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct 31 13:11:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e917961a

net-misc/dropbox: bump to 14.3.17

Package-Manager: portage-2.3.0

 net-misc/dropbox/Manifest   |   2 +
 net-misc/dropbox/dropbox-14.3.17.ebuild | 137 
 2 files changed, 139 insertions(+)

diff --git a/net-misc/dropbox/Manifest b/net-misc/dropbox/Manifest
index 62f87db..60dd9e6 100644
--- a/net-misc/dropbox/Manifest
+++ b/net-misc/dropbox/Manifest
@@ -1,2 +1,4 @@
+DIST dropbox-lnx.x86-14.3.17.tar.gz 64815767 SHA256 
7d25ba801aded4dd47731effcb070c8ee1aa0833c7199df28bc5a09c0a0d0546 SHA512 
12a2d1707a557e38eb130c97f98113c8272b04ff7be30f71dffdb1ee6e0975f34d0c63ef84db694a369dd1131987a0ad0f173018e244a1fd734e57703e0046f8
 WHIRLPOOL 
879f7102e2325891acb42b85a848e942a30dc0058b35e4185f012368d3bf093e8cc7392bc7178fa2a4dff3eadd3f0492bd456c77a894ba295491147c07c5760f
 DIST dropbox-lnx.x86-6.3.13.tar.gz 64626579 SHA256 
b68514e73112f13e3c6cd3651bcb1425207c91c2544b2fe642c2e65686d29dd3 SHA512 
5d4ce4c525244ca7e72a15bfcdf4548836b15e29b70d54e051009a03cbbfcbdf7876a48f8225762d02d3f57412ba42b0b20e2a4f51e550fdfab9a47192fb7fab
 WHIRLPOOL 
23b0e606614865ba7ead7b9ef079719b4cdf165235b805750e2d3b29376172bee5a4351bc15498547c0c63741d3cda2650dd862714d67192b63f78e702e3b2cb
+DIST dropbox-lnx.x86_64-14.3.17.tar.gz 68751964 SHA256 
17b62b7470dcd4732794e613fb6d4aad395658d41bd46629d431ec144ac3c1e3 SHA512 
0dc09a3ab9b4f02c006bcbee463caf954354c64764b04b7c5a8276c321b49237ce5a6b5aafe95ef64401a1a55ef44486976fbe692d7790199a2cab73d4f0491b
 WHIRLPOOL 
465b478cfb276d03e3c9036b1c616196e0b01650e2b26ca7d4427aef85bbec12090c170463d87424c9dcc299a96b325ff2d33cdf865a34831b5873dee961e783
 DIST dropbox-lnx.x86_64-6.3.13.tar.gz 68557842 SHA256 
3decda5771334db6924f52d550eece66306ddf5553e39e52a5ed831024850b6b SHA512 
c21b0132978376affb5c0da780a6b884a558e6ab84cfa4a889524eb3baff174f1bbefd4839543e5dcda94aef224d8b8a595b79fde3436b8bf4655751dbfd9f22
 WHIRLPOOL 
b89ce4ff83eb2eba9089c185365f9522b67c89dbe6996bdbae2f624d9a3c3cb3674f61bc5c02f39dfd6abc087808c62ae105ed6c12a1add80779a403622bd9d8

diff --git a/net-misc/dropbox/dropbox-14.3.17.ebuild 
b/net-misc/dropbox/dropbox-14.3.17.ebuild
new file mode 100644
index ..4bf44cb
--- /dev/null
+++ b/net-misc/dropbox/dropbox-14.3.17.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+inherit eutils gnome2-utils pax-utils systemd python-single-r1
+
+DESCRIPTION="Dropbox daemon (pretends to be GUI-less)"
+HOMEPAGE="http://dropbox.com/";
+SRC_URI="
+   x86? ( 
https://dl.dropboxusercontent.com/u/17/dropbox-lnx.x86-${PV}.tar.gz )
+   amd64? ( 
https://dl.dropboxusercontent.com/u/17/dropbox-lnx.x86_64-${PV}.tar.gz )"
+
+LICENSE="CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-linux"
+IUSE="+librsync-bundled selinux X"
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/.*"
+QA_EXECSTACK="opt/dropbox/dropbox"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="librsync-bundled? ( dev-util/patchelf )"
+
+# Be sure to have GLIBCXX_3.4.9, #393125
+# USE=X require wxGTK's dependencies. system-library cannot be used due to
+# missing symbol (CtlColorEvent). #443686
+RDEPEND="${PYTHON_DEPS}
+   X? (
+   dev-libs/glib:2
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5[-gles2,xcb]
+   dev-qt/qtopengl:5[-gles2]
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5[-gles2]
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5[-gles2]
+   media-libs/fontconfig
+   media-libs/freetype
+   virtual/jpeg
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXinerama
+   x11-libs/libXxf86vm
+   x11-libs/pango[X]
+   x11-misc/wmctrl
+   x11-themes/hicolor-icon-theme
+   )
+   !librsync-bundled? ( =sys-devel/gcc-4.2.0
+   sys-libs/zlib
+   || (
+   sys-libs/ncurses:5/5
+   sys-libs/ncurses:0/5
+   )"
+
+src_unpack() {
+   unpack ${A}
+   mkdir -p "${S}" || die
+   mv "${WORKDIR}"/.dropbox-dist/* "${S}" || die
+   mv "${S}"/dropbox-lnx.*-${PV}/* "${S}" || die
+   rmdir "${S}"/dropbox-lnx.*-${PV}/ || die
+   rmdir .dropbox-dist || die
+}
+
+src_prepare() {
+   local target=(
+   cryptography-1.0-py2.7-*.egg
+   dropbox_sqlite_ext-0.0-py2.7.egg
+   psutil-3.1.1-py2.7-*.egg
+   setuptools-20.3-py2.7.egg
+   )
+
+   eapply_user
+
+   rm -vf libbz2* libpopt.so.0 libp

[gentoo-commits] repo/gentoo:master commit in: app-admin/logstash-bin/

2016-10-31 Thread Patrick Lauer
commit: 5a8a7b75014d524e87b54d963f10620679def977
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Oct 31 13:54:55 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Oct 31 13:55:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a8a7b75

app-admin/logstash-bin: Make logstash-plugin tool executable

Package-Manager: portage-2.3.2

 .../{logstash-bin-2.4.0-r2.ebuild => logstash-bin-2.4.0-r3.ebuild}  | 2 +-
 .../{logstash-bin-5.0.0-r1.ebuild => logstash-bin-5.0.0-r2.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/logstash-bin/logstash-bin-2.4.0-r2.ebuild 
b/app-admin/logstash-bin/logstash-bin-2.4.0-r3.ebuild
similarity index 97%
rename from app-admin/logstash-bin/logstash-bin-2.4.0-r2.ebuild
rename to app-admin/logstash-bin/logstash-bin-2.4.0-r3.ebuild
index 992700a..65d79b9 100644
--- a/app-admin/logstash-bin/logstash-bin-2.4.0-r2.ebuild
+++ b/app-admin/logstash-bin/logstash-bin-2.4.0-r3.ebuild
@@ -41,7 +41,7 @@ src_install() {
 
insinto "/opt/${MY_PN}"
doins -r .
-   fperms 0755 "/opt/${MY_PN}/bin/${MY_PN}" 
"/opt/${MY_PN}/vendor/jruby/bin/jruby"
+   fperms 0755 "/opt/${MY_PN}/bin/${MY_PN}" 
"/opt/${MY_PN}/vendor/jruby/bin/jruby" "/opt/${MY_PN}/bin/logstash-plugin"
 
insinto /etc/logrotate.d
newins "${FILESDIR}/${MY_PN}.logrotate" "${MY_PN}"

diff --git a/app-admin/logstash-bin/logstash-bin-5.0.0-r1.ebuild 
b/app-admin/logstash-bin/logstash-bin-5.0.0-r2.ebuild
similarity index 96%
rename from app-admin/logstash-bin/logstash-bin-5.0.0-r1.ebuild
rename to app-admin/logstash-bin/logstash-bin-5.0.0-r2.ebuild
index 669a13e..503f515 100644
--- a/app-admin/logstash-bin/logstash-bin-5.0.0-r1.ebuild
+++ b/app-admin/logstash-bin/logstash-bin-5.0.0-r2.ebuild
@@ -40,7 +40,7 @@ src_install() {
 
insinto "/opt/${MY_PN}"
doins -r .
-   fperms 0755 "/opt/${MY_PN}/bin/${MY_PN}" 
"/opt/${MY_PN}/vendor/jruby/bin/jruby"
+   fperms 0755 "/opt/${MY_PN}/bin/${MY_PN}" 
"/opt/${MY_PN}/vendor/jruby/bin/jruby" "/opt/${MY_PN}/bin/logstash-plugin"
 
insinto /etc/logrotate.d
newins "${FILESDIR}/${MY_PN}.logrotate" "${MY_PN}"



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2016-10-31 Thread Alice Ferrazzi
commit: 92ce9b16c9a722accf2fe38fd2b7a314103f801e
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Mon Oct 31 09:22:28 2016 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Mon Oct 31 09:23:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ce9b16

sys-kernel/gentoo-sources: Linux patch 4.8.6

Package-Manager: portage-2.3.0

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.8.6.ebuild | 29 ++
 2 files changed, 32 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 263c3e3..e9b63ce 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -69,6 +69,9 @@ DIST genpatches-4.8-5.extras.tar.xz 17240 SHA256 
fec9122e60b79bf8d69bf5bc023510c
 DIST genpatches-4.8-6.base.tar.xz 85456 SHA256 
fca1a8eb8b0a07562f39f2931eee645d64700fa3782d9e98434b1a74b53af5c8 SHA512 
9df43752e3d8dc26fd13f99f4dbfaa038d2f0b43cb9b84d5801e00255ce1e7e01bea7ae79dc392f93eb02e1322c802f26a14535b03520ede8bb45946a44ab96b
 WHIRLPOOL 
01229d3f8ce618cf78a758cd5d9d15a883825d72387e4b440e524a1b2825ea7120b0acdbaa08f011edd0d13014849a9caab51bd8778cd2df0e59bcdc48371753
 DIST genpatches-4.8-6.experimental.tar.xz 91996 SHA256 
3c301fcf3c2e62f1d993019460d2614fdfee3f3952ff3de1cc285956d188c04b SHA512 
c0ddfe0fab0f3ed84a721755f1b0a935135b63b22a075077332c22f44def28e5b2a1d3b444bd22e988fe2e40711a475e81ad2396f10f6e7369556ce19a941d57
 WHIRLPOOL 
a5b9dc2f9aaf58844fa2547440751bd9e7a7497b096c72a8829541135a7b1776cee6956c594f57d54b54ce8d0613e8718f31529e15c56b22c163c9039acb9a6c
 DIST genpatches-4.8-6.extras.tar.xz 17244 SHA256 
ae96b0e06f5e8897f68ec17ab0ac32561d2c52cb2423873384af65dc6de58519 SHA512 
b6b0a6b75ffa3d19dc20d45b244a63fb9e9f71187c98ed7d3c346a0ebc5b4863b477727a549e4e52dfba17fe914cae9ec7b84b6f4508858e0ff0b3852fafb4ab
 WHIRLPOOL 
6263175de6016b2c19c00beac8a0f99a3c2991bee8731bf5a7083221699d78d928a8e4cb0871216beffe87fa27b23ff18de87ea28097fb11660c8a8bee3cfea9
+DIST genpatches-4.8-7.base.tar.xz 123604 SHA256 
e60431e2dbe2922b5b578d7401d5efc5fc13ae9d302f755c1980a60e47d24d45 SHA512 
507f1324fab063f4c0e0efadeee87d9c47f6beb00d8d41410f3d90a67f5ae000c11d2981fd3c4a1407160b42c15634971ac9a58425467ca7fdab5d845da98afa
 WHIRLPOOL 
54c58d70c02f3a346a4208962433702f7a7f75755f8ac123df2bf4e67da34f4f9752b0994c6cd04e2e52155e5b9b79948cf8d6a70265b6f5cefb90acf4ac68db
+DIST genpatches-4.8-7.experimental.tar.xz 91972 SHA256 
17de925bba50ab165840774e5fab6485e375181f307e5697bd769748adca021f SHA512 
e9e1dce527554ec3f2c081f0561ab6baf5a4c41d3bb9c1f1595c2d1888b774bc98b4ad6b29ed26e09bc3558b2f3b6846db543630eb5222d3d68d295decc20a4a
 WHIRLPOOL 
657831244c411309d2d1b42b8f6ceffef2aa48f3710d018b6987aea25764a0a528cd4e8f57b770814d59093061e1cca7bd187963e75e95d732c7a1bd4e8dda0c
+DIST genpatches-4.8-7.extras.tar.xz 17232 SHA256 
2f567d87267974fa1957c3361a1b14ac5574a6a23e750f82e74ca3857afa5aba SHA512 
bcb166e60f1a8f71110aeebbe173520ee3c11ec234986dc37d6c2eda4372a49618720989acd752768a6c161aec95d668267e8e14a8ec01ef84ae1d52a278c2d3
 WHIRLPOOL 
45326e8b5f5c3d9ea7c58414475968f155208b27f9478d564411ae4eeba3e87e83e6db040f04b8689fee323ae219834681541516e47b92ebe6ce92823c539845
 DIST linux-3.10.tar.xz 73175088 SHA256 
df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 
5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35
 WHIRLPOOL 
e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053
 DIST linux-3.12.tar.xz 76384600 SHA256 
2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02 SHA512 
4ba5797e0772726d05c9f2eee66dc6dc2a5033c749ef44764c805a83da739ed5d0c6443b76785e38fe1ef74cc7ade787e48144faed0cfcb6f124f05248c700ff
 WHIRLPOOL 
a40195f6b53ba3440cf90a44495f6a59670f750851d1518e2bdfe3b949f0e898d1df5d37e271c31c555087026ddb6cc2c9109b22b9639e3222735e6f650a1417
 DIST linux-3.14.tar.xz 78399152 SHA256 
61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa SHA512 
5730d83a7a81134c1e77c0bf89e42dee4f8251ad56c1ac2be20c59e26fdfaa7bea55f277e7af156b637f22e1584914a46089af85039177cb43485089c74ac26e
 WHIRLPOOL 
5ad07b78c362ba0b21c50b4abb99407cae06bd08576f3fd8f36047b01409eba096263208020da3dcad4977eefc61d66502276754097bc127635df1d7a5817d41

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.8.6.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.8.6.ebuild
new file mode 100644
index ..affa85c
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.8.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="7"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAG

[gentoo-commits] repo/gentoo:master commit in: dev-lang/rust/

2016-10-31 Thread Doug Goldstein
commit: 4f6cd6184c7dd680a1e74dda900b39b2fc03170a
Author: Vasili Bulkin  letterboxes  org>
AuthorDate: Mon Oct 31 14:02:38 2016 +
Commit: Doug Goldstein  gentoo  org>
CommitDate: Mon Oct 31 14:02:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f6cd618

dev-lang/rust: drop need for USE+multitarget on LLVM

Rust no longer needs USE=multitarget when building against the system
LLVM. fixes bug #598144

Gentoo-Bug: 598144
Signed-off-by: Doug Goldstein  gentoo.org>

 dev-lang/rust/rust-1.12.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/rust/rust-1.12.1.ebuild b/dev-lang/rust/rust-1.12.1.ebuild
index 54e3fd4..253cd05 100644
--- a/dev-lang/rust/rust-1.12.1.ebuild
+++ b/dev-lang/rust/rust-1.12.1.ebuild
@@ -42,8 +42,8 @@ IUSE="clang debug doc libcxx +system-llvm"
 REQUIRED_USE="libcxx? ( clang )"
 
 RDEPEND="libcxx? ( sys-libs/libcxx )
-   system-llvm? ( >=sys-devel/llvm-3.8.1-r2:=[multitarget]
-   =sys-devel/llvm-3.8.1-r2
+   

[gentoo-commits] proj/linux-patches:4.4 commit in: /

2016-10-31 Thread Alice Ferrazzi
commit: d6a4da5187587a116e915544681b066c4479c457
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Mon Oct 31 14:09:09 2016 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Mon Oct 31 14:09:09 2016 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=d6a4da51

Linux patch 4.4.29

 _README |4 +
 1028_linux-4.4.29.patch | 2368 +++
 2 files changed, 2372 insertions(+)

diff --git a/_README b/_README
index 356c33e..de6d5fd 100644
--- a/_README
+++ b/_README
@@ -155,6 +155,10 @@ Patch:  1027_linux-4.4.28.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.28
 
+Patch:  1028_linux-4.4.29.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.29
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1028_linux-4.4.29.patch b/1028_linux-4.4.29.patch
new file mode 100644
index 000..0bcb39c
--- /dev/null
+++ b/1028_linux-4.4.29.patch
@@ -0,0 +1,2368 @@
+diff --git a/Documentation/x86/exception-tables.txt 
b/Documentation/x86/exception-tables.txt
+index 32901aa36f0a..e396bcd8d830 100644
+--- a/Documentation/x86/exception-tables.txt
 b/Documentation/x86/exception-tables.txt
+@@ -290,3 +290,38 @@ Due to the way that the exception table is built and 
needs to be ordered,
+ only use exceptions for code in the .text section.  Any other section
+ will cause the exception table to not be sorted correctly, and the
+ exceptions will fail.
++
++Things changed when 64-bit support was added to x86 Linux. Rather than
++double the size of the exception table by expanding the two entries
++from 32-bits to 64 bits, a clever trick was used to store addresses
++as relative offsets from the table itself. The assembly code changed
++from:
++  .long 1b,3b
++to:
++.long (from) - .
++.long (to) - .
++
++and the C-code that uses these values converts back to absolute addresses
++like this:
++
++  ex_insn_addr(const struct exception_table_entry *x)
++  {
++  return (unsigned long)&x->insn + x->insn;
++  }
++
++In v4.6 the exception table entry was expanded with a new field "handler".
++This is also 32-bits wide and contains a third relative function
++pointer which points to one of:
++
++1) int ex_handler_default(const struct exception_table_entry *fixup)
++   This is legacy case that just jumps to the fixup code
++2) int ex_handler_fault(const struct exception_table_entry *fixup)
++   This case provides the fault number of the trap that occurred at
++   entry->insn. It is used to distinguish page faults from machine
++   check.
++3) int ex_handler_ext(const struct exception_table_entry *fixup)
++   This case is used for uaccess_err ... we need to set a flag
++   in the task structure. Before the handler functions existed this
++   case was handled by adding a large offset to the fixup to tag
++   it as special.
++More functions can easily be added.
+diff --git a/Makefile b/Makefile
+index 391294301aaf..19d7d9f68e35 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 28
++SUBLEVEL = 29
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm/crypto/ghash-ce-glue.c b/arch/arm/crypto/ghash-ce-glue.c
+index 03a39fe29246..9d9ba9acdddc 100644
+--- a/arch/arm/crypto/ghash-ce-glue.c
 b/arch/arm/crypto/ghash-ce-glue.c
+@@ -226,6 +226,27 @@ static int ghash_async_digest(struct ahash_request *req)
+   }
+ }
+ 
++static int ghash_async_import(struct ahash_request *req, const void *in)
++{
++  struct ahash_request *cryptd_req = ahash_request_ctx(req);
++  struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
++  struct ghash_async_ctx *ctx = crypto_ahash_ctx(tfm);
++  struct shash_desc *desc = cryptd_shash_desc(cryptd_req);
++
++  desc->tfm = cryptd_ahash_child(ctx->cryptd_tfm);
++  desc->flags = req->base.flags;
++
++  return crypto_shash_import(desc, in);
++}
++
++static int ghash_async_export(struct ahash_request *req, void *out)
++{
++  struct ahash_request *cryptd_req = ahash_request_ctx(req);
++  struct shash_desc *desc = cryptd_shash_desc(cryptd_req);
++
++  return crypto_shash_export(desc, out);
++}
++
+ static int ghash_async_setkey(struct crypto_ahash *tfm, const u8 *key,
+ unsigned int keylen)
+ {
+@@ -274,7 +295,10 @@ static struct ahash_alg ghash_async_alg = {
+   .final  = ghash_async_final,
+   .setkey = ghash_async_setkey,
+   .digest = ghash_async_digest,
++  .import = ghash_async_import,
++  .export = ghash_async_export,
+   .halg.digestsize= GHASH_DIGEST_SIZE,
++  .halg.statesize = sizeof(struct ghash_desc_ctx),
+   .halg.base  = {
+   .cra_name   = "ghash",
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcl3d/

2016-10-31 Thread Amy Winston
commit: 554c576bc9254c46eace4b25eafedc2f81ec634b
Author: Amy Winston  gentoo  org>
AuthorDate: Mon Oct 31 14:24:33 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Mon Oct 31 14:24:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=554c576b

dev-tcltk/tcl3d: add missing dep bug #514300

Package-Manager: portage-2.2.28

 dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild | 1 +
 dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild| 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild 
b/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild
index a5ccdf3..6aa4374 100644
--- a/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild
+++ b/dev-tcltk/tcl3d/tcl3d-0.4.0-r1.ebuild
@@ -22,6 +22,7 @@ RDEPEND="
media-libs/libsdl
media-libs/ftgl
virtual/opengl
+   x11-libs/libXmu
 "
 DEPEND="${RDEPEND}
>=dev-lang/swig-1.3.19"

diff --git a/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild 
b/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild
index d750c1b..6ae6d3a 100644
--- a/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild
+++ b/dev-tcltk/tcl3d/tcl3d-0.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -22,6 +22,7 @@ RDEPEND="
media-libs/libsdl
media-libs/ftgl
virtual/opengl
+   x11-libs/libXmu
 "
 DEPEND="${RDEPEND}
>=dev-lang/swig-1.3.19"



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tcl3d/, dev-tcltk/tcl3d/files/

2016-10-31 Thread Amy Winston
commit: f5fb3bbbabcb12914894e6cd21dc84f929a11bc8
Author: Jonathan Vasquez  gmail  com>
AuthorDate: Mon Oct 24 01:26:47 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Mon Oct 31 14:19:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5fb3bbb

dev-tcltk/tcl3d version bump to 0.5.0 and added x86 support

Gentoo-Bug: 469304,514300

 dev-tcltk/tcl3d/Manifest   |  1 +
 ...tcl3d-0.5.0-include-tk-dir-and-permissive.patch | 72 ++
 dev-tcltk/tcl3d/metadata.xml   |  1 +
 dev-tcltk/tcl3d/tcl3d-0.5.0.ebuild | 71 +
 4 files changed, 145 insertions(+)

diff --git a/dev-tcltk/tcl3d/Manifest b/dev-tcltk/tcl3d/Manifest
index a5c60e4..a1f72dd 100644
--- a/dev-tcltk/tcl3d/Manifest
+++ b/dev-tcltk/tcl3d/Manifest
@@ -1 +1,2 @@
 DIST tcl3d-src-0.4.0.zip 1501305 SHA256 
f98bee3c2ca0189780125b683481949e1499018ee56ad1d21b4e3e594e058496 SHA512 
a8a525693bc45e9fb9e2167e2121d300ff60534f2bced33bb068a1075cfd8e8281dd97bd7fb432b9d6a95cdb37fc3da03c82dd1ee20e368fb8ac249ea54c30a5
 WHIRLPOOL 
cbc1982df7a28b93249ff7877d0376b06b64261bb33f3df8c64b2c80600684529605b9eeff6f593c2e9f7c64c253066b226f0a0dae9cee21bec980f6782c
+DIST tcl3d-src-0.5.0.zip 3936271 SHA256 
a2ecccbdb9c87fd02a7b969cc02abbf43aa51e619bd79e08dbffb8e376b6957c SHA512 
24f799d5cc0ad9daf060b6b723d1197be678c0716b2099287e004221889c56da03f7368d6cd4c47dfe936b0bf65366cd452d3d9c2335cdfbae6ff3860a29
 WHIRLPOOL 
b2a1f3d81be1bed6476652bc6fd4ed2dd3bd85a2b895c950a1298f6ed998b05f0ac02937233f352bf794818112e114f22b3d2123c99be7a6458e464ee33e1604

diff --git 
a/dev-tcltk/tcl3d/files/tcl3d-0.5.0-include-tk-dir-and-permissive.patch 
b/dev-tcltk/tcl3d/files/tcl3d-0.5.0-include-tk-dir-and-permissive.patch
new file mode 100644
index ..58efa18
--- /dev/null
+++ b/dev-tcltk/tcl3d/files/tcl3d-0.5.0-include-tk-dir-and-permissive.patch
@@ -0,0 +1,72 @@
+diff -ru tcl3d/config_Linux tcl3d-m/config_Linux
+--- tcl3d/config_Linux 2010-08-30 15:57:56.0 -0400
 tcl3d-m/config_Linux   2016-10-30 13:28:34.080601812 -0400
+@@ -74,6 +74,8 @@
+ TKINCDIR = $(TKDIR)/include
+ TCLLIBDIR= $(TCLDIR)/lib
+ TKLIBDIR = $(TKDIR)/lib
++TCLLIBINCDIR = $(TCLLIBDIR)/tcl$(TCLVERSION)/include
++TKLIBINCDIR  = $(TCLLIBDIR)/tk$(TCLVERSION)/include
+ TCLSTUBLIBS  = $(TKLIBDIR)/libtkstub$(TCLVERSION)$(LIBEXT) 
$(TCLLIBDIR)/libtclstub$(TCLVERSION)$(LIBEXT)
+ TCLSTDLIBS   = $(TKLIBDIR)/libtk$(TCLVERSION)$(LIBEXT) 
$(TCLLIBDIR)/libtcl$(TCLVERSION)$(LIBEXT)
+ TCLSH= tclsh$(TCLVERSION)
+@@ -84,7 +86,13 @@
+ CPDIR= csh -f cpdir
+ MKDIR= mkdir -p
+ 
+-INCL   = -I. -I$(TCLINCDIR)
++INCL   = \
++  -I. \
++  -I$(TCLINCDIR) \
++  -I$(TCLLIBINCDIR)/generic \
++  -I$(TCLLIBINCDIR)/unix \
++  -I$(TKLIBINCDIR)/generic \
++  -I$(TKLIBINCDIR)/unix
+ 
+ ifdef WITH_STUBS
+ TCLLIBS = $(TCLSTUBLIBS)
+diff -ru tcl3d/config_Linux64 tcl3d-m/config_Linux64
+--- tcl3d/config_Linux64   2010-12-30 16:06:48.0 -0500
 tcl3d-m/config_Linux64 2016-10-30 13:08:33.326771912 -0400
+@@ -74,6 +74,8 @@
+ TKINCDIR = $(TKDIR)/include
+ TCLLIBDIR= $(TCLDIR)/lib64
+ TKLIBDIR = $(TKDIR)/lib64
++TCLLIBINCDIR = $(TCLLIBDIR)/tcl$(TCLVERSION)/include
++TKLIBINCDIR  = $(TCLLIBDIR)/tk$(TCLVERSION)/include
+ TCLSTUBLIBS  = $(TKLIBDIR)/libtkstub$(TCLVERSION)$(LIBEXT) 
$(TCLLIBDIR)/libtclstub$(TCLVERSION)$(LIBEXT)
+ TCLSTDLIBS   = $(TKLIBDIR)/libtk$(TCLVERSION)$(SHLIBEXT) 
$(TCLLIBDIR)/libtcl$(TCLVERSION)$(SHLIBEXT)
+ TCLSH= tclsh$(TCLVERSION)
+@@ -84,7 +86,13 @@
+ CPDIR= csh -f cpdir
+ MKDIR= mkdir -p
+ 
+-INCL   = -I. -I$(TCLINCDIR)
++INCL   = \
++  -I. \
++  -I$(TCLINCDIR) \
++  -I$(TCLLIBINCDIR)/generic \
++  -I$(TCLLIBINCDIR)/unix \
++  -I$(TKLIBINCDIR)/generic \
++  -I$(TKLIBINCDIR)/unix
+ 
+ ifdef WITH_STUBS
+ TCLLIBS = $(TCLSTUBLIBS)
+diff -ru tcl3d/tcl3dOsg/Makefile tcl3d-m/tcl3dOsg/Makefile
+--- tcl3d/tcl3dOsg/Makefile2010-09-30 16:20:28.0 -0400
 tcl3d-m/tcl3dOsg/Makefile  2016-10-30 13:12:53.367593401 -0400
+@@ -308,12 +308,13 @@
+ OPT += /Od
+ endif
+ CFLAGS = $(OPT) $(PPDEFS) -I$(GL_INCDIR) -Iinclude $(INCL)   
++CXXFLAGS = -fpermissive
+ 
+ .SUFFIXES:# Delete the default suffixes.
+ .SUFFIXES: .cpp $(OBJEXT) .h  # Install our own suffixes.
+ 
+ .cpp$(OBJEXT):
+-  $(CXX) $(CFLAGS) $<
++  $(CXX) $(CFLAGS) $(CXXFLAGS) $<
+ 
+ all: osg osganimation osgdb osgfx osgga osgmanipulator osgopenthreads \
+  osgparticle osgsim osgshadow osgterrain osgtext osgutil osgviewer \

diff --git a/dev-tcltk/tcl3d/metadata.xml b/dev-tcltk/tcl3d/metadata.xml
index 5ae050b..851c8cb 100644
--- a/dev-tcltk/tcl3d/metadata.xml
+++ b/dev-tcltk/tcl3d/metadata.xml
@@ -20,6 +20,7 @@ tcl3dSDL  Wrapper for the Simple DirectMedia Library.
 tcl3dFT

[gentoo-commits] repo/gentoo:master commit in: app-backup/bareos/

2016-10-31 Thread Marc Schiffbauer
commit: 7f169de3fdc58e39adbee75ab0afa3274b48cb46
Author: Marc Schiffbauer  gentoo  org>
AuthorDate: Mon Oct 31 14:27:49 2016 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Mon Oct 31 14:28:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f169de3

app-backup/bareos: bump: added version 16.2.4

Package-Manager: portage-2.3.2

 app-backup/bareos/Manifest |   1 +
 app-backup/bareos/bareos-16.2.4.ebuild | 428 +
 2 files changed, 429 insertions(+)

diff --git a/app-backup/bareos/Manifest b/app-backup/bareos/Manifest
index 59faa70..f15e63e 100644
--- a/app-backup/bareos/Manifest
+++ b/app-backup/bareos/Manifest
@@ -2,3 +2,4 @@ DIST bareos-13.2.4.tar.gz 3467542 SHA256 
def68891d074438e55d7a3e570cfaae1c1a8c94
 DIST bareos-14.2.2.tar.gz 3811787 SHA256 
8792fe79689f7a1053ecb493ba52258acb29d0998b71d65178a311d46b7cf2bf SHA512 
be490ab2f8085975f164ac554cac7d6bbef1af01c8350b5816b2033a37827de4a81bead6ce1e699fe5cc44085dce2b6a0330b91239fb87907e22f9c8dc710156
 WHIRLPOOL 
384415d553d61e7aa1eaa22611cc9d9eacf8338df82d911409e52a774e756b0539810c60be3dade91eadcc679794ad7c3bb5a155d7d699171f6a4fdead5a5470
 DIST bareos-14.2.5.tar.gz 3820963 SHA256 
f42bc34afa913cfb4d6b7ef8856c7195d8b13b21c987da1039d46e6c60f06720 SHA512 
600cdf8175b1199b73ddcf8a32df7bca446c294c4c830038f93fe3f053482916745675df3a51bc494cdab00b362d57657a34a94e78bac4bae3acced06347023d
 WHIRLPOOL 
361c0edb411c824f128ccb5e27f4d637ecfdf4f2de7a428a8c4eace6d5c23a33a3868cc1b380dcbf6e06d6c7bb71ff222abad923ea9a0bfb74e78f0445c4058b
 DIST bareos-15.2.2.tar.gz 3928036 SHA256 
f314e7d3e99e92b4261af97888ddcdaaedf513b638745b07270db3e6930e9008 SHA512 
07b11c51695a6ff348317965625e5cdb8e296d4f3a4037718a98e266d94650ed1fb905c220ac791123d8ed92d0aed24854a6ab52887249849dbc00697d3300c3
 WHIRLPOOL 
e43141e1ba670cd13da716739f4e3ed2a5f63e4dd43efbeed0a781429ff3b7cc6ddcb67d8f6ec47508b036f1da4ffc5cdbd4d49887e428de55969250817d529b
+DIST bareos-16.2.4.tar.gz 4275141 SHA256 
9a96d9220150f1db643c932ac529b1e3ad179978ef6b06a2504c06db43b4ff3c SHA512 
91f7f2b3d9889f4faa9834dc414e2250015d3d26bf8bd0c04c1f3fd882a50a4066ced145f7c8609c070e8f74b53574953e3fef344726c6863cd7bbc73c76a88c
 WHIRLPOOL 
7c3192a80680240246b0fa342799fcc4bc4b71ee8255badd950ffbd570b246129e9a68340e2972e0f0e4746f537330d4ebccc3358cc840f5278562d8b97641b1

diff --git a/app-backup/bareos/bareos-16.2.4.ebuild 
b/app-backup/bareos/bareos-16.2.4.ebuild
new file mode 100644
index ..07884d3
--- /dev/null
+++ b/app-backup/bareos/bareos-16.2.4.ebuild
@@ -0,0 +1,428 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads"
+
+inherit eutils multilib python-single-r1 qt4-r2 user
+
+DESCRIPTION="Featureful client/server network backup suite"
+HOMEPAGE="http://www.bareos.org/";
+SRC_URI="https://github.com/${PN}/${PN}/archive/Release/${PV}.tar.gz -> 
${P}.tar.gz"
+RESTRICT="mirror"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X acl cephfs clientonly +director fastlz glusterfs gnutls ipv6 jansson 
lmdb libressl
+   logwatch mysql ndmp postgres python qt4 rados rados-striper readline 
scsi-crypto
+   sql-pooling +sqlite ssl static +storage-daemon tcpd vim-syntax"
+
+DEPEND="
+   !app-backup/bacula
+   cephfs? ( sys-cluster/ceph )
+   rados? ( sys-cluster/ceph )
+   rados-striper? ( >=sys-cluster/ceph-0.94.2 )
+   glusterfs? ( sys-cluster/glusterfs )
+   lmdb? ( dev-db/lmdb )
+   dev-libs/gmp:0
+   !clientonly? (
+   postgres? ( dev-db/postgresql:*[threads] )
+   mysql? ( virtual/mysql )
+   sqlite? ( dev-db/sqlite:3 )
+   director? (
+   virtual/mta
+   jansson? ( dev-libs/jansson )
+   )
+   )
+   qt4? (
+   dev-qt/qtsvg:4
+   x11-libs/qwt:5
+   )
+   fastlz? ( dev-libs/bareos-fastlzlib )
+   logwatch? ( sys-apps/logwatch )
+   tcpd? ( sys-apps/tcp-wrappers )
+   readline? ( sys-libs/readline:0 )
+   static? (
+   acl? ( virtual/acl[static-libs] )
+   sys-libs/zlib[static-libs]
+   dev-libs/lzo[static-libs]
+   sys-libs/ncurses:=[static-libs]
+   ssl? (
+   !gnutls? (
+   !libressl? ( dev-libs/openssl:0=[static-libs] )
+   libressl? ( dev-libs/libressl:0=[static-libs] )
+   )
+   gnutls? ( net-libs/gnutls[static-libs] )
+   )
+   )
+   !static? (
+   acl? ( virtual/acl )
+   dev-libs/lzo
+   ssl? (
+   !gnutls? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+  

[gentoo-commits] data/api:master commit in: files/overlays/

2016-10-31 Thread Michał Górny
commit: 23fb78e33806195b0774bf5036b683041a5ca725
Author: Alexandre Fournier  alexandrefournier  com>
AuthorDate: Sun Oct 30 22:59:07 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 14:29:09 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=23fb78e3

repositories: Add Alexandre Fournier's overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/24

 files/overlays/repositories.xml | 13 +
 1 file changed, 13 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index d9ac463..8eaa6bd 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -122,6 +122,19 @@ FIN
 https://cgit.gentoo.org/user/activehome.git/atom/
 
   
+  
+AlexandreFournier
+Alexandre Fournier's personal overlay
+https://github.com/AlexandreFournier/gentoo-overlay
+
+  gen...@alexandrefournier.com
+  Alexandre Fournier
+
+https://github.com/AlexandreFournier/gentoo-overlay.git
+git://github.com/AlexandreFournier/gentoo-overlay.git
+g...@github.com:AlexandreFournier/gentoo-overlay.git
+
https://github.com/AlexandreFournier/gentoo-overlay/commits/master.atom
+  
   
 ago
 Developer overlay



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2016-10-31 Thread Mike Gilbert
commit: 68b674d3521a1e08d57b51270de888bfff0beeac
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Oct 31 14:36:48 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Oct 31 14:41:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b674d3

app-shells/dash: make dumb-echo patch optional

ACKed by Lars (polynomial-c).

Bug: https://bugs.gentoo.org/590696
Package-Manager: portage-2.3.2_p1

 app-shells/dash/{dash-0.5.9.1.ebuild => dash-0.5.9.1-r1.ebuild} | 6 --
 app-shells/dash/metadata.xml| 3 +++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/app-shells/dash/dash-0.5.9.1.ebuild 
b/app-shells/dash/dash-0.5.9.1-r1.ebuild
similarity index 94%
rename from app-shells/dash/dash-0.5.9.1.ebuild
rename to app-shells/dash/dash-0.5.9.1-r1.ebuild
index 39d1f83..4942b9d 100644
--- a/app-shells/dash/dash-0.5.9.1.ebuild
+++ b/app-shells/dash/dash-0.5.9.1-r1.ebuild
@@ -21,7 +21,7 @@ fi
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="libedit static"
+IUSE="dumb-echo libedit static"
 
 RDEPEND="!static? ( libedit? ( dev-libs/libedit ) )"
 DEPEND="${RDEPEND}
@@ -31,7 +31,6 @@ DEPEND="${RDEPEND}
 #S=${WORKDIR}/${MY_P}
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-0.5.9.1-dumb-echo.patch #337329 #527848
"${FILESDIR}"/${PN}-0.5.8.1-eval-warnx.patch
 )
 
@@ -42,6 +41,9 @@ src_prepare() {
fi
epatch "${PATCHES[@]}"
 
+   #337329 #527848
+   use dumb-echo && epatch "${FILESDIR}"/${PN}-0.5.9.1-dumb-echo.patch
+
# Fix the invalid sort
sed -i -e 's/LC_COLLATE=C/LC_ALL=C/g' src/mkbuiltins
 

diff --git a/app-shells/dash/metadata.xml b/app-shells/dash/metadata.xml
index ce044cc..0a565e1 100644
--- a/app-shells/dash/metadata.xml
+++ b/app-shells/dash/metadata.xml
@@ -8,4 +8,7 @@

cpe:/a:dash:dash

+   
+   Disable echo -n for added fun
+   
 



[gentoo-commits] repo/gentoo:master commit in: app-shells/dash/

2016-10-31 Thread Mike Gilbert
commit: 53bcf576563b432b3dd35b0b46c9a30c3287e30c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Oct 31 14:41:56 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Oct 31 14:41:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53bcf576

app-shells/dash: shorten DESCRIPTION

Package-Manager: portage-2.3.2_p1

 app-shells/dash/dash-0.5.8.2.ebuild| 4 ++--
 app-shells/dash/dash-0.5.9.1-r1.ebuild | 2 +-
 app-shells/dash/dash-0.5.9.ebuild  | 2 +-
 app-shells/dash/metadata.xml   | 4 
 4 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/app-shells/dash/dash-0.5.8.2.ebuild 
b/app-shells/dash/dash-0.5.8.2.ebuild
index 8032179..a169d68 100644
--- a/app-shells/dash/dash-0.5.8.2.ebuild
+++ b/app-shells/dash/dash-0.5.8.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ DEB_PATCH=${PV##*.}
 DEB_PF="${PN}_${DEB_PV}-${DEB_PATCH}"
 MY_P="${PN}-${DEB_PV}"
 
-DESCRIPTION="DASH is a direct descendant of the NetBSD version of ash (the 
Almquist SHell) and is POSIX compliant"
+DESCRIPTION="Debian Almquist Shell"
 HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/";
 SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${PN}-${DEB_PV}.tar.gz
mirror://debian/pool/main/d/dash/${DEB_PF}.diff.gz"

diff --git a/app-shells/dash/dash-0.5.9.1-r1.ebuild 
b/app-shells/dash/dash-0.5.9.1-r1.ebuild
index 4942b9d..a4f7798 100644
--- a/app-shells/dash/dash-0.5.9.1-r1.ebuild
+++ b/app-shells/dash/dash-0.5.9.1-r1.ebuild
@@ -10,7 +10,7 @@ inherit eutils flag-o-matic toolchain-funcs versionator
 DEB_PATCH="" #$(get_version_component_range 4)
 #MY_P="${PN}-${MY_PV}"
 
-DESCRIPTION="DASH is a direct descendant of the NetBSD version of ash (the 
Almquist SHell) and is POSIX compliant"
+DESCRIPTION="Debian Almquist Shell"
 HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/";
 SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${P}.tar.gz";
 if [[ -n "${DEB_PATCH}" ]] ; then

diff --git a/app-shells/dash/dash-0.5.9.ebuild 
b/app-shells/dash/dash-0.5.9.ebuild
index c602b3b..7006ea3 100644
--- a/app-shells/dash/dash-0.5.9.ebuild
+++ b/app-shells/dash/dash-0.5.9.ebuild
@@ -10,7 +10,7 @@ MY_PV="$(get_version_component_range 1-3)"
 DEB_PATCH="$(get_version_component_range 4)"
 MY_P="${PN}-${MY_PV}"
 
-DESCRIPTION="DASH is a direct descendant of the NetBSD version of ash (the 
Almquist SHell) and is POSIX compliant"
+DESCRIPTION="Debian Almquist Shell"
 HOMEPAGE="http://gondor.apana.org.au/~herbert/dash/";
 SRC_URI="http://gondor.apana.org.au/~herbert/dash/files/${MY_P}.tar.gz";
 if [[ -n "${DEB_PATCH}" ]] ; then

diff --git a/app-shells/dash/metadata.xml b/app-shells/dash/metadata.xml
index 0a565e1..7e1b714 100644
--- a/app-shells/dash/metadata.xml
+++ b/app-shells/dash/metadata.xml
@@ -11,4 +11,8 @@

Disable echo -n for added fun

+   
+   DASH is a direct descendant of the NetBSD version of ash (the 
Almquist SHell)
+   and is POSIX compliant.
+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Crypt_GPG/

2016-10-31 Thread Brian Evans
commit: 4eac57b6a955aef3656686f03a6c33947f7fa660
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Oct 31 14:53:05 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Oct 31 14:53:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eac57b6

dev-php/PEAR-Crypt_GPG: Version bump;

Adds support for GnuPG 2.1

Package-Manager: portage-2.3.2

 dev-php/PEAR-Crypt_GPG/Manifest|  1 +
 .../PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild   | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-php/PEAR-Crypt_GPG/Manifest b/dev-php/PEAR-Crypt_GPG/Manifest
index 0ac55b8..725314b 100644
--- a/dev-php/PEAR-Crypt_GPG/Manifest
+++ b/dev-php/PEAR-Crypt_GPG/Manifest
@@ -1,3 +1,4 @@
 DIST Crypt_GPG-1.3.2.tgz 339001 SHA256 
67f77bfb9b21dd428587f5bd336e4b9b2e200a1b62160e7ae0d0dfffd1357899 SHA512 
c045942798f2974d1d200413864708b4476b53d1999b721f1b51fd6cfafb23c05479a391ebc7ebe513f5a88641d63d991e7ba59b7edcbd8397efde365528f999
 WHIRLPOOL 
27124bb96e28d7206f56e0d0fcbee603b3f1516a4d61a98e4a72139cae7e76b357f025bde04baec83530ff4ad6ec2a7d35d92a114ad9269ff198c06c94d63aef
 DIST Crypt_GPG-1.4.0.tgz 348446 SHA256 
5a1d45655c74eb187695cc1a1810256fbbc640fc728481086d64a365dcb1635e SHA512 
a27f24f66271484fe9d837c48c4fd68e53d24ed1d1c6baa55b1942ed5a82e4c8d5e25bed86b112cd5f9927b70ad40caead3fd3e1ddb87e4e2d983dd73302d498
 WHIRLPOOL 
c0f2f076700619b1b680efb3032e9471172880afd237a68b4a87a1211e6c11648564e3da75530cf56a86e827691ee467eac695419b3697180355621c34e0edd7
 DIST Crypt_GPG-1.4.2.tgz 345962 SHA256 
8e1cf98b5bf37fead50745327261c021efac8c1ee2bddd57c38be57e8f1bc969 SHA512 
c0384f0b4a35f8e7d7189b0b08c277c2629e7fa84e13f2c8c92aaafbeace7a60b6e18f2347571e7bcdf4bc504fd9463f080d9c2938063fdfcabc8f44dd7f4950
 WHIRLPOOL 
ea6e2d0dfbfc56cf4bec5bcdfa312a5f43109c305b699b501e102e81908ad1ba350a97525b5d9ada45d6713ef64512744b6e04f208b5dc2f029ad01fedbffb4e
+DIST Crypt_GPG-1.6.0b1.tgz 344406 SHA256 
a69ba79b8e5a75b3b4635045d9af1c83080b5224a1cf34b642aa86e8c50ec851 SHA512 
2ac367edf13fdcccd4c279958fd414ae36cf2cebcc03fe5d561d9c918da7ef663d756c150287c96b5f7316609b1bd744d314c806dd47c7c8c25711d9e4076d29
 WHIRLPOOL 
851b79c95cc55ec07098b605d739ee78c9d0c14dbb6056baa8b57cdf9b773ea635e47185a80229bfdf96da88d179d7e3462960bf9d995f606727fab3a42ddf82

diff --git a/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild 
b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild
new file mode 100644
index ..b5ac777
--- /dev/null
+++ b/dev-php/PEAR-Crypt_GPG/PEAR-Crypt_GPG-1.6.0_beta1.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit php-pear-r1
+
+DESCRIPTION="GNU Privacy Guard (GnuPG)"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+DEPEND=">=dev-lang/php-5.4.8:*[posix,unicode]"
+RDEPEND="${DEPEND}
+   app-crypt/gnupg
+   dev-php/PEAR-Console_CommandLine"



[gentoo-commits] proj/linux-patches: New tag: 4.4-31

2016-10-31 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Mon Oct 31 15:06:42 2016 +

New tag: 4.4-31




[gentoo-commits] repo/gentoo:master commit in: app-benchmarks/sysbench/

2016-10-31 Thread Göktürk Yüksek
commit: c090227bc0dc171fb4653fcd7b4396d22b4ac7d9
Author: Tomas Mozes  gmail  com>
AuthorDate: Mon Oct 31 08:37:30 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Oct 31 15:05:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c090227b

app-benchmarks/sysbench: improve live ebuild

Package-Manager: portage-2.3.1

 app-benchmarks/sysbench/sysbench-.ebuild | 31 +++-
 1 file changed, 21 insertions(+), 10 deletions(-)

diff --git a/app-benchmarks/sysbench/sysbench-.ebuild 
b/app-benchmarks/sysbench/sysbench-.ebuild
index e82c950..f6055be 100644
--- a/app-benchmarks/sysbench/sysbench-.ebuild
+++ b/app-benchmarks/sysbench/sysbench-.ebuild
@@ -12,14 +12,23 @@ HOMEPAGE="https://github.com/akopytov/sysbench";
 EGIT_REPO_URI="https://github.com/akopytov/sysbench.git";
 EGIT_BRANCH="1.0"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS=""
-IUSE="aio mysql"
+IUSE="aio lua mysql postgres test"
 
-DEPEND="aio? ( dev-libs/libaio )
-   mysql? ( virtual/libmysqlclient )"
-RDEPEND="${DEPEND}"
+RDEPEND="aio? ( dev-libs/libaio )
+   lua? ( dev-lang/lua:= )
+   mysql? ( virtual/libmysqlclient )
+   postgres? ( dev-db/postgresql:= )"
+DEPEND="${RDEPEND}
+   sys-devel/libtool:=
+   dev-libs/libxslt
+   test? ( dev-util/cram )"
+
+REQUIRED_USE="
+   mysql? ( lua )
+   postgres? ( lua )"
 
 src_prepare() {
default
@@ -32,15 +41,17 @@ src_prepare() {
 src_configure() {
local myeconfargs=(
$(use_enable aio aio)
+   $(use_with lua lua)
$(use_with mysql mysql)
+   $(use_with postgres pgsql)
+   --without-attachsql
+   --without-drizzle
+   --without-oracle
)
 
econf "${myeconfargs[@]}"
 }
 
-src_install() {
-   default
-
-   insinto /usr/share/${PN}/tests/db
-   doins sysbench/tests/db/*.lua || die
+src_test() {
+   emake check test
 }



[gentoo-commits] repo/gentoo:master commit in: www-apps/airdcpp-webui/

2016-10-31 Thread Göktürk Yüksek
commit: 405bae1b6b0d47a0f8091b2f46923163b438213f
Author: Louis Sautier  gmail  com>
AuthorDate: Sat Oct 29 20:02:03 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Oct 31 15:14:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=405bae1b

www-apps/airdcpp-webui: bump to 1.3.3

Package-Manager: portage-2.3.2

 www-apps/airdcpp-webui/Manifest   |  1 +
 www-apps/airdcpp-webui/airdcpp-webui-1.3.3.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/www-apps/airdcpp-webui/Manifest b/www-apps/airdcpp-webui/Manifest
index ce9281c..d1333c8 100644
--- a/www-apps/airdcpp-webui/Manifest
+++ b/www-apps/airdcpp-webui/Manifest
@@ -1,3 +1,4 @@
 DIST airdcpp-webui-1.3.0.tgz 8832459 SHA256 
97e30029fdb19f242eae06959aedc94b395eb16d902b9e9f87013289fc9bd1c3 SHA512 
2c4bdb9144347a302f5921b7ddec97f1b40ee3dc919a0cd35bd233b5dd2c73295e8b28e7979aa5ec2efe3ac673c6e1cb51f89590b936a23ae214331c5644f403
 WHIRLPOOL 
c6955eff3e54412321fff4415353a4a928ec857431c5f058fcb809e47cc49974e22fe63e9e9bafb7f28984cc8934081da4b3c469b05854b4d6dfee8cdcd06379
 DIST airdcpp-webui-1.3.1.tgz 8835478 SHA256 
a2e8dd98470f5fa661d227a6c935de6c50a257a8c3856e903ecb3f15ade2dd9a SHA512 
56fde2f208d5f95e596633acc0aca0ecb22bf56e44eb8007f301b18000e7a6affd0db4e225af78a8537f3a86f1a29c271280a59aa0e21801f4b58cb5d700d18d
 WHIRLPOOL 
bd3d1109018c488f1e92f34c0f90d1bd4f76044178a7f27553bd0a781bfb06be897ec7120afefece9ea29c379ce3c913475fcc001b7fef4ee54850110da18389
 DIST airdcpp-webui-1.3.2.tgz 7165412 SHA256 
eb0577f0a3e5e22b1b4d4f02e7f99092dabf51e80183de44d26525b8b0e59e58 SHA512 
d81a7355420f9e4ed5f52339f6c4bf320dbcf7e87630f40d8bd871e1126885ecd31340857d45f1766ece7f9ad157713b7a30ac14a73e028fc6da90ed36972fcc
 WHIRLPOOL 
79b64231a9a52b87de499d5e15328fe7efb82b98ac70dabe29d9514749ee8f12ef6e54e95b2355153044e58b2cf382965dcf3dc6621c1368571a090803605509
+DIST airdcpp-webui-1.3.3.tgz 7165509 SHA256 
69cf01e57d085d821e1f29c4cc14456df482324e6c2f09732631343d54e5f13e SHA512 
d2ce7f8d0cda6f6e06b1b461914c4b59d1f572369ecdd5474e52d1b7a66a827df3da7cb46ead9656102cbaa7e9862ee82eee45288912826343f9b610cd8dbabb
 WHIRLPOOL 
4582cf864c63023ca506133774e70ba526f563bc4fe62bb448625a19061feb2d36320b0388297a723a34eb98f57fb60e87d76aa67cfdbdc0d1c7a1ca240b17e1

diff --git a/www-apps/airdcpp-webui/airdcpp-webui-1.3.3.ebuild 
b/www-apps/airdcpp-webui/airdcpp-webui-1.3.3.ebuild
new file mode 100644
index ..37fce6f
--- /dev/null
+++ b/www-apps/airdcpp-webui/airdcpp-webui-1.3.3.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Web interface for airdcpp-webclient"
+HOMEPAGE="https://airdcpp-web.github.io/";
+SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz";
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="=net-p2p/airdcpp-webclient-${PV%.*}*"
+
+S="${WORKDIR}/package"
+
+src_install() {
+   insinto "/usr/share/airdcpp/web-resources"
+   doins -r "${S}/dist"/*
+}



[gentoo-commits] repo/gentoo:master commit in: www-apps/airdcpp-webui/

2016-10-31 Thread Göktürk Yüksek
commit: cda2b5796f5010cec1e32ce13f346d1e2a712c08
Author: Louis Sautier  gmail  com>
AuthorDate: Sat Oct 29 20:02:43 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Oct 31 15:14:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda2b579

www-apps/airdcpp-webui: remove old

Package-Manager: portage-2.3.2

 www-apps/airdcpp-webui/Manifest   |  2 --
 www-apps/airdcpp-webui/airdcpp-webui-1.3.1.ebuild | 23 ---
 www-apps/airdcpp-webui/airdcpp-webui-1.3.2.ebuild | 23 ---
 3 files changed, 48 deletions(-)

diff --git a/www-apps/airdcpp-webui/Manifest b/www-apps/airdcpp-webui/Manifest
index d1333c8..889a503 100644
--- a/www-apps/airdcpp-webui/Manifest
+++ b/www-apps/airdcpp-webui/Manifest
@@ -1,4 +1,2 @@
 DIST airdcpp-webui-1.3.0.tgz 8832459 SHA256 
97e30029fdb19f242eae06959aedc94b395eb16d902b9e9f87013289fc9bd1c3 SHA512 
2c4bdb9144347a302f5921b7ddec97f1b40ee3dc919a0cd35bd233b5dd2c73295e8b28e7979aa5ec2efe3ac673c6e1cb51f89590b936a23ae214331c5644f403
 WHIRLPOOL 
c6955eff3e54412321fff4415353a4a928ec857431c5f058fcb809e47cc49974e22fe63e9e9bafb7f28984cc8934081da4b3c469b05854b4d6dfee8cdcd06379
-DIST airdcpp-webui-1.3.1.tgz 8835478 SHA256 
a2e8dd98470f5fa661d227a6c935de6c50a257a8c3856e903ecb3f15ade2dd9a SHA512 
56fde2f208d5f95e596633acc0aca0ecb22bf56e44eb8007f301b18000e7a6affd0db4e225af78a8537f3a86f1a29c271280a59aa0e21801f4b58cb5d700d18d
 WHIRLPOOL 
bd3d1109018c488f1e92f34c0f90d1bd4f76044178a7f27553bd0a781bfb06be897ec7120afefece9ea29c379ce3c913475fcc001b7fef4ee54850110da18389
-DIST airdcpp-webui-1.3.2.tgz 7165412 SHA256 
eb0577f0a3e5e22b1b4d4f02e7f99092dabf51e80183de44d26525b8b0e59e58 SHA512 
d81a7355420f9e4ed5f52339f6c4bf320dbcf7e87630f40d8bd871e1126885ecd31340857d45f1766ece7f9ad157713b7a30ac14a73e028fc6da90ed36972fcc
 WHIRLPOOL 
79b64231a9a52b87de499d5e15328fe7efb82b98ac70dabe29d9514749ee8f12ef6e54e95b2355153044e58b2cf382965dcf3dc6621c1368571a090803605509
 DIST airdcpp-webui-1.3.3.tgz 7165509 SHA256 
69cf01e57d085d821e1f29c4cc14456df482324e6c2f09732631343d54e5f13e SHA512 
d2ce7f8d0cda6f6e06b1b461914c4b59d1f572369ecdd5474e52d1b7a66a827df3da7cb46ead9656102cbaa7e9862ee82eee45288912826343f9b610cd8dbabb
 WHIRLPOOL 
4582cf864c63023ca506133774e70ba526f563bc4fe62bb448625a19061feb2d36320b0388297a723a34eb98f57fb60e87d76aa67cfdbdc0d1c7a1ca240b17e1

diff --git a/www-apps/airdcpp-webui/airdcpp-webui-1.3.1.ebuild 
b/www-apps/airdcpp-webui/airdcpp-webui-1.3.1.ebuild
deleted file mode 100644
index 37fce6f..
--- a/www-apps/airdcpp-webui/airdcpp-webui-1.3.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-DESCRIPTION="Web interface for airdcpp-webclient"
-HOMEPAGE="https://airdcpp-web.github.io/";
-SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz";
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="=net-p2p/airdcpp-webclient-${PV%.*}*"
-
-S="${WORKDIR}/package"
-
-src_install() {
-   insinto "/usr/share/airdcpp/web-resources"
-   doins -r "${S}/dist"/*
-}

diff --git a/www-apps/airdcpp-webui/airdcpp-webui-1.3.2.ebuild 
b/www-apps/airdcpp-webui/airdcpp-webui-1.3.2.ebuild
deleted file mode 100644
index 37fce6f..
--- a/www-apps/airdcpp-webui/airdcpp-webui-1.3.2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-DESCRIPTION="Web interface for airdcpp-webclient"
-HOMEPAGE="https://airdcpp-web.github.io/";
-SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz";
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-RDEPEND="=net-p2p/airdcpp-webclient-${PV%.*}*"
-
-S="${WORKDIR}/package"
-
-src_install() {
-   insinto "/usr/share/airdcpp/web-resources"
-   doins -r "${S}/dist"/*
-}



[gentoo-commits] repo/gentoo:master commit in: profiles/, net-im/silc-server/files/, x11-terms/xfce4-terminal/, ...

2016-10-31 Thread Michał Górny
commit: ee5596625f4cf2db254c3ea84cf41f68f9d64363
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 15:51:12 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 15:53:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee559662

net-im/silc-server: Remove last-rited pkg, #522916

 net-im/silc-server/Manifest |  1 -
 net-im/silc-server/files/silcd.initd-r1 | 25 
 net-im/silc-server/metadata.xml |  5 --
 net-im/silc-server/silc-server-1.1.18-r1.ebuild | 78 -
 profiles/package.mask   |  4 --
 x11-terms/xfce4-terminal/Manifest   |  1 +
 6 files changed, 1 insertion(+), 113 deletions(-)

diff --git a/net-im/silc-server/Manifest b/net-im/silc-server/Manifest
deleted file mode 100644
index fc4a214..
--- a/net-im/silc-server/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST silc-server-1.1.18.tar.bz2 908188 SHA256 
1a0d4efb5683b3148b3ba91d5b56fff60875bc8bb97e854330714d927986205b SHA512 
bf457a5f75037c56138154cfdba62d7ec27a91bc3606c84760a2103c90dff1ea9beb09c6e86e25074142610c6e14d7dffc24956debfa8355b37a4a1fb5e68e47
 WHIRLPOOL 
297b5a8b673597ea41b45bf46efd746ce49dd7bb514965529b1a8f97bf7765bb668b9ee16383579325fa81eb7e8ddf954e6333c4ff3d2c103f4dbf4ea3677a9b

diff --git a/net-im/silc-server/files/silcd.initd-r1 
b/net-im/silc-server/files/silcd.initd-r1
deleted file mode 100644
index 00a58d4..
--- a/net-im/silc-server/files/silcd.initd-r1
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-description="Server for Secure Internet Live Conferencing"
-pidfile="/run/silcd.pid"
-command="/usr/sbin/silcd"
-command_args="-f /etc/silc/silcd.conf >/dev/null 2>&1"
-start_stop_daemon_args="-w 2000"
-
-depend() {
-   need net
-   use dns
-}
-
-start_pre() {
-   local silcdconf="/etc/silc/silcd.conf"
-
-   if [ ! -f "${silcdconf}" ] ; then
-   eerror "You need to set up a ${silcdconf} file in order to 
start the server."
-   eerror "You can find an example config in 
/usr/share/doc/silc-server*"
-   return 1
-   fi
-}

diff --git a/net-im/silc-server/metadata.xml b/net-im/silc-server/metadata.xml
deleted file mode 100644
index 6f49eba..
--- a/net-im/silc-server/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-
-

diff --git a/net-im/silc-server/silc-server-1.1.18-r1.ebuild 
b/net-im/silc-server/silc-server-1.1.18-r1.ebuild
deleted file mode 100644
index 9611890..
--- a/net-im/silc-server/silc-server-1.1.18-r1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit eutils flag-o-matic user
-
-DESCRIPTION="Server for Secure Internet Live Conferencing"
-SRC_URI="http://www.silcnet.org/download/server/sources/${P}.tar.bz2";
-HOMEPAGE="http://silcnet.org/";
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-IUSE="gmp ipv6 debug"
-
-RDEPEND="!<=net-im/silc-toolkit-0.9.12-r1
-   !<=net-im/silc-client-1.0.1
-   gmp? ( dev-libs/gmp )"
-
-pkg_setup() {
-   enewuser silcd
-}
-
-src_configure() {
-   econf \
-   --datadir=/usr/share/${PN} \
-   --datarootdir=/usr/share/${PN} \
-   --mandir=/usr/share/man \
-   --sysconfdir=/etc/silc \
-   --libdir=/usr/$(get_libdir)/${PN} \
-   --docdir=/usr/share/doc/${PF} \
-   --disable-optimizations \
-   --with-logsdir=/var/log/${PN} \
-   --with-silcd-pid-file=/var/run/silcd.pid \
-   $(use_with gmp) \
-   $(use_enable ipv6) \
-   $(use_enable debug)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   insinto /etc/silc
-   doins doc/silcalgs.conf
-
-   insinto /usr/share/doc/${PF}/examples
-   doins doc/examples/*.conf
-
-   fperms 600 /etc/silc
-   keepdir /var/log/${PN}
-
-   rm -rf \
-   "${D}"/usr/libsilc* \
-   "${D}"/usr/include \
-   "${D}"/etc/silc/silcd.{pub,prv}
-
-   newinitd "${FILESDIR}/silcd.initd-r1" silcd
-   doman doc/silcd.8 doc/silcd.conf.5
-
-   sed -i \
-   -e 's:10.2.1.6:0.0.0.0:' \
-   -e 's:User = "nobody";:User = "silcd";:' \
-   -e 's:/var/run:/run:' \
-   -e 's:lassi.kuo.fi.ssh.com:localhost:' \
-   doc/example_silcd.conf \
-   || die
-   dodoc doc/example_silcd.conf
-}
-
-pkg_postinst() {
-   if [ ! -f "${ROOT}"/etc/silc/silcd.prv ] ; then
-   einfo "Creating key pair in /etc/silc"
-   silcd -C "${ROOT}"/etc/silc
-   chmod 600 "${ROOT}"/etc/silc/silcd.{prv,pub}
-   fi
-}

dif

[gentoo-commits] repo/gentoo:master commit in: x11-terms/xfce4-terminal/

2016-10-31 Thread Michał Górny
commit: 81c7b81f867e69aef20f96209d930e4227c358bb
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:00:04 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:01:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81c7b81f

x11-terms/xfce4-terminal: Revert accidental partial commit

 x11-terms/xfce4-terminal/Manifest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/x11-terms/xfce4-terminal/Manifest 
b/x11-terms/xfce4-terminal/Manifest
index 5f29e43..a7e0bee 100644
--- a/x11-terms/xfce4-terminal/Manifest
+++ b/x11-terms/xfce4-terminal/Manifest
@@ -2,4 +2,3 @@ DIST xfce4-terminal-0.6.3.tar.bz2 815207 SHA256 
912f4716c2395a14a80620ef982b4af1
 DIST xfce4-terminal-0.6.90.tar.bz2 838790 SHA256 
ec540579d2d85111f322ffa08a4c3690c26612699af1b22c8d4f3480e38e70d1 SHA512 
85bacf2184240356f698d9cc0c1f5c4a8b2502abb272a2293574b9cb0641bed3f4be42691f67acee3f6aa54a94a29e9d2304047bbad9435f94d7cad5a25429a5
 WHIRLPOOL 
4d656d2be87a0f36ff86f51ae350ae182c75fa4ee7761ef4bf258b33354afe803f5effbe01cb33ca55adfbc165bb85341fdf4ac61234ef7342c5102b4c4cb955
 DIST xfce4-terminal-0.6.92.tar.bz2 854899 SHA256 
62140f8956d9c9aa4d483cf6cfbf6d76749b0f1feb47fa8413f0972e97461574 SHA512 
79c65752b853f557a0e0a8bee7cef39438623aa5e982ce53a28a520b572a1c0b187010dba0cbc450ee4d10dceadfc32233ca5df7c5e521c0eaf74f6daad33af0
 WHIRLPOOL 
1508cda0139417a475abf0e14976ee18e526b6fd063f6482049a3c0aa9b6e51a61063f6191cf6ecd8dbee9d59da37664fadefaa727f9ef365afc0825a3b8b23b
 DIST xfce4-terminal-0.8.0.tar.bz2 868612 SHA256 
e915c05a3d07b66d153e1ba8614f904f9c12b2dd8372b27d24c0d339743d5b0a SHA512 
88083293a557c28289a0a21b3e52d25c769f9f3a09a0126d0913ab77c299b01bc6c58b685debf956b230344794f3664d6b824db91ea2375e1484801c9c353794
 WHIRLPOOL 
30121af280bf4dd40445c576fcca2b0bed2d9b47a86d5e33052e42d8bfc9fdc4392ca3c306e017feb690b3acf61c8eea5fc26b92be94cf6789507c814f439c74
-DIST xfce4-terminal-0.8.1.tar.bz2 871184 SHA256 
ddfe53a89d315a4a9170ca6d2cee2d33145bd63630062b2e867fb3a5fcde5fdf SHA512 
198f5008da1cee289aa4df7faae622eca5dfefcfc27415522fe4a0ec2d21c036e2bb2e1d0ea7790679085ce4fe013c349434cc2412a3a5773868409d74c12a2b
 WHIRLPOOL 
1f87aa90775169b1c2702105804e7f56af68fb137ad9a13e08fa1462ffe17830f005ed4a71406c557ccdeb2463991f0cb39ad5abbd03397303c5f47d0fbb25f7



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2016-10-31 Thread Alice Ferrazzi
commit: 2e5da7f10f5a70b626b07499c6b2b200c01eeb8f
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Mon Oct 31 16:08:13 2016 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Mon Oct 31 16:08:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e5da7f1

sys-kernel/gentoo-sources: Linux patch 4.4.29

Package-Manager: portage-2.3.0

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.4.29.ebuild| 29 ++
 2 files changed, 32 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index e9b63ce..721dfa2 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -54,6 +54,9 @@ DIST genpatches-4.4-29.extras.tar.xz 16356 SHA256 
c4f0d94bac7dee61b77e75ee706495
 DIST genpatches-4.4-30.base.tar.xz 823044 SHA256 
9c57b8bd64b62a4bf24f8fde252d5bdaf44c3ae86d759836b9ecd46eb1f6bfb5 SHA512 
f50d16367d433b8118082dc1c7e23df1109c52065b09287bc70bd7d811f2ab000a94dd4f62c89a7617417d8d0df65cd2156cbd209687ec42be62cb7a36c5d569
 WHIRLPOOL 
93a2d5dc5da2eccb39c3552b5d56abbf93b1c72936e6101d9d0538d62c01c1452152cf8e7205b7c6391dd258388d469b9f0ebd0ee6c9ed0b95e2d65eba4ef3da
 DIST genpatches-4.4-30.experimental.tar.xz 87764 SHA256 
284dcf0dc30a5845f5a9c82f2130ff4b196f8c92923a6b6053a7d40010b45848 SHA512 
cf74e739520ca8f4fd7108558bd581f61bfd7b73d94dec699d21ac53fac657db0994c5e71017c1cc079855d2699798489b7ca899f904e00a3753c5c154c5
 WHIRLPOOL 
96a94e53cba14b6acb44e1c67b92d8cf20b7fde0a46e99f9cf896c6ff49bb7c2e9682aec46a5e93f2d8c63790ba9817772f0258dbd4a0f85b215d4876e277bf3
 DIST genpatches-4.4-30.extras.tar.xz 16368 SHA256 
5ae402de247df572e8ea70d8ef23808b0c162cf31d4623327897ae54933adbf2 SHA512 
edbd39ca766fc808ac34f868f28b05a0f8275fd5d1e62c8036d5204bfef34694383a07925c3b589d32d5f8ed8ac43fe1391d49071f02d7ac33bdd8249fad6b58
 WHIRLPOOL 
eee136234d33cb39f5956e003eac9449889227f82a17e137dd8dd22a6dd8dfe7ade4973bded4d0130771465aabf4c35b6e69220d20a9b4a002a5a93165e6
+DIST genpatches-4.4-31.base.tar.xz 837740 SHA256 
e225b4bf52cb8765f6a6bf8b74e3c5415b8c221bd8fc4337cffa58f43a4b8dbf SHA512 
f89ac910a91b5272b2ddcc2d68608db6e4c83fd8515f60514aa3bf7fecc00c7adb02fcdfe4d0ad9ea87d675389a2da492cd0d0a037e034d9a3d1a77d29f225ea
 WHIRLPOOL 
517488397cd7fde3db623686ddfc85f7fe47fc5504d6b42112496e475cc79115d76d10d284f4c795d3738f97ecfd9297f0c5ebaa5577b9aeb35b778480b74a8d
+DIST genpatches-4.4-31.experimental.tar.xz 87744 SHA256 
76690688b3c1f0140462547668d4e5bf2447ecae20ceb4cfb46834c1ba12b2dc SHA512 
215b58f1cbcd3692989d0fc5bf80df49696dce73efbbe0892f5bab5a80af7bae75c846df9d5182b6372cde91fdfdd3299d466fd6730ee891b16291001411e2c0
 WHIRLPOOL 
7f37df43e74005a53668eccae839e27d8cacd4eac8a0d097ecec12c2a37f965b567604e3a1d383c140a22db3c327db662e2efb9cd6bdc3565ae98f5e186fc60f
+DIST genpatches-4.4-31.extras.tar.xz 16352 SHA256 
a91fb73fc4a50b6eba05c43120eb13d2b33180c4ea5dc3e3fd69548040c5a15d SHA512 
b50379ff5ce665339e20aaf055add9f182dd96138e0ee4d79b776a3aba56dfa67be7699d2e94334ef40a2a800c8b89db29a273b337c2de99c5069c9661f51c0a
 WHIRLPOOL 
c79e523eb12d5acffa0248f522c8f8bb2a56cb033ac7d0260c9df401936f8a034ef696d6cb17bb23db5fc407cb77d66200463fd0e23599bffd8a52fd02f5fb73
 DIST genpatches-4.7-10.base.tar.xz 246032 SHA256 
8733ad7fb8422aa7fb05b70dc84e91475e1a72a14fa9e2d2d94784053cee7e0b SHA512 
e585a3c5b324dab1855f31c4ad5b879b0a7e46fb2d4884af715719bbd7ced642bd593113cdb88425bf6471b694c8b533ebd6220f7af1c53764891a001523c4aa
 WHIRLPOOL 
95d5929202dce62fe08eba0391733f9e79f8a1875f8e02959b464579f5cad8d38e32f14c2ca36ebaada59c1951a4eb2b7cb8e6977e2d01d55b02d686519b7134
 DIST genpatches-4.7-10.experimental.tar.xz 87016 SHA256 
f5baf4816e4adac0885c3485732cdf0b4dcda8458388959a94ed002d2b4c67e3 SHA512 
7dcf5a4ac69fe1f5db39d8f1b777556587a1695ac16bfa23b82ba60e5f56701b331c552d6efd51a835dba8a74b72a632621369ad6c1305fc9adb6b7fec8478de
 WHIRLPOOL 
83460f7ccac4aa4e926d227bf5161be0fade31401d4ffcca1f6d7410e3c4e8825fa8f10d2b749e2549737efa54c20784b160277a6c9da2c88481d69b30b7a404
 DIST genpatches-4.7-10.extras.tar.xz 17604 SHA256 
4b72e52ab0eb2f8cece60c7298566ef5f17266d42dc9fa709b63dc823e052276 SHA512 
d9a76128401b8cc6fd089f1fbb1c465e8042969e8e15a4d20c94fa2a041447a69c179b4864fd9f74615e2a78b73b046d14dee9559aa9fd32ca69dc4ef563dbed
 WHIRLPOOL 
c35b7eb76e6a99f3583a3ae30fb2e760b68659287087ca01c1a15e97944e57ed178e4c2b840dc480d1ccff5e3f36b7303b8ad159de63b250b9818bd8d5efd3a3

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.29.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.29.ebuild
new file mode 100644
index ..7320f82
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.29.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="31"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 -hppa ~ia64 

[gentoo-commits] repo/gentoo:master commit in: x11-terms/xfce4-terminal/

2016-10-31 Thread Michał Górny
commit: abee3b7392ec91fb7d80b448be927568e68cd32c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:00:35 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:02:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abee3b73

x11-terms/xfce4-terminal: Bump to 0.8.1

 x11-terms/xfce4-terminal/Manifest  |  1 +
 .../xfce4-terminal/xfce4-terminal-0.8.1.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/x11-terms/xfce4-terminal/Manifest 
b/x11-terms/xfce4-terminal/Manifest
index a7e0bee..5f29e43 100644
--- a/x11-terms/xfce4-terminal/Manifest
+++ b/x11-terms/xfce4-terminal/Manifest
@@ -2,3 +2,4 @@ DIST xfce4-terminal-0.6.3.tar.bz2 815207 SHA256 
912f4716c2395a14a80620ef982b4af1
 DIST xfce4-terminal-0.6.90.tar.bz2 838790 SHA256 
ec540579d2d85111f322ffa08a4c3690c26612699af1b22c8d4f3480e38e70d1 SHA512 
85bacf2184240356f698d9cc0c1f5c4a8b2502abb272a2293574b9cb0641bed3f4be42691f67acee3f6aa54a94a29e9d2304047bbad9435f94d7cad5a25429a5
 WHIRLPOOL 
4d656d2be87a0f36ff86f51ae350ae182c75fa4ee7761ef4bf258b33354afe803f5effbe01cb33ca55adfbc165bb85341fdf4ac61234ef7342c5102b4c4cb955
 DIST xfce4-terminal-0.6.92.tar.bz2 854899 SHA256 
62140f8956d9c9aa4d483cf6cfbf6d76749b0f1feb47fa8413f0972e97461574 SHA512 
79c65752b853f557a0e0a8bee7cef39438623aa5e982ce53a28a520b572a1c0b187010dba0cbc450ee4d10dceadfc32233ca5df7c5e521c0eaf74f6daad33af0
 WHIRLPOOL 
1508cda0139417a475abf0e14976ee18e526b6fd063f6482049a3c0aa9b6e51a61063f6191cf6ecd8dbee9d59da37664fadefaa727f9ef365afc0825a3b8b23b
 DIST xfce4-terminal-0.8.0.tar.bz2 868612 SHA256 
e915c05a3d07b66d153e1ba8614f904f9c12b2dd8372b27d24c0d339743d5b0a SHA512 
88083293a557c28289a0a21b3e52d25c769f9f3a09a0126d0913ab77c299b01bc6c58b685debf956b230344794f3664d6b824db91ea2375e1484801c9c353794
 WHIRLPOOL 
30121af280bf4dd40445c576fcca2b0bed2d9b47a86d5e33052e42d8bfc9fdc4392ca3c306e017feb690b3acf61c8eea5fc26b92be94cf6789507c814f439c74
+DIST xfce4-terminal-0.8.1.tar.bz2 871184 SHA256 
ddfe53a89d315a4a9170ca6d2cee2d33145bd63630062b2e867fb3a5fcde5fdf SHA512 
198f5008da1cee289aa4df7faae622eca5dfefcfc27415522fe4a0ec2d21c036e2bb2e1d0ea7790679085ce4fe013c349434cc2412a3a5773868409d74c12a2b
 WHIRLPOOL 
1f87aa90775169b1c2702105804e7f56af68fb137ad9a13e08fa1462ffe17830f005ed4a71406c557ccdeb2463991f0cb39ad5abbd03397303c5f47d0fbb25f7

diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-0.8.1.ebuild 
b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.1.ebuild
new file mode 100644
index ..0860415
--- /dev/null
+++ b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit xfconf
+
+DESCRIPTION="A terminal emulator for the Xfce desktop environment"
+HOMEPAGE="http://www.xfce.org/projects/terminal/";
+SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
+IUSE="debug"
+
+RDEPEND=">=dev-libs/glib-2.26:2=
+   >=x11-libs/gtk+-3.14:3=
+   x11-libs/libX11:=
+   >=x11-libs/vte-0.38:2.91=
+   >=xfce-base/libxfce4ui-4.10:=[gtk3(+)]"
+DEPEND="${RDEPEND}
+   dev-libs/libxml2
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+pkg_setup() {
+   XFCONF=(
+   $(xfconf_use_debug)
+   )
+
+   DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS )
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/, sci-mathematics/agda-executable/

2016-10-31 Thread Michał Górny
commit: 6e639e368bc6440190dd6002aaa9c8daa1c8f025
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:05:22 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:10:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e639e36

sci-mathematics/agda-executable: Remove last-rited pkg

 profiles/package.mask  |  5 ---
 sci-mathematics/agda-executable/Manifest   |  1 -
 .../agda-executable-2.3.0.1-r1.ebuild  | 36 --
 .../agda-executable-2.3.0.1-r2.ebuild  | 35 -
 sci-mathematics/agda-executable/metadata.xml   | 12 
 5 files changed, 89 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 23d4635..d0d191e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -592,11 +592,6 @@ games-action/awesomenauts
 # instead.
 dev-haskell/base64-conduit
 
-# Sergei Trofimovich  (11 Sep 2016)
-# Mask for removal in 30 days. >=sci-mathematics/agda-2.4
-# now provides 'agda' binary.
-sci-mathematics/agda-executable
-
 # Lars Wendler  (06 Sep 2016)
 # Breaks samba's nmbd process (bug #592502)
 # Masked the possible fixed samba version until more testing has been 
performed.

diff --git a/sci-mathematics/agda-executable/Manifest 
b/sci-mathematics/agda-executable/Manifest
deleted file mode 100644
index 3f091e2..
--- a/sci-mathematics/agda-executable/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST Agda-executable-2.3.0.1.tar.gz 1765 SHA256 
614594c414c828c87abb1913741db66447c09617d57b92e58ffe445ceffed694 SHA512 
8abdd2739a36a952bb754c069717be70e9fa74b55fc048c2877f7d0c6791a5a8f7944b3b3a97be754fd00431ff94b9f7c6f35f40b8376155952c4b9b414890b2
 WHIRLPOOL 
84b738ef4fb75d7dcff8c9cc0002509ff2ccc9bdd5e27c04472deed6df960047da907948f7d5e585a5e3e8f6caafc05cf2e25718cd9b575e4cf18a0e1e8cd422

diff --git a/sci-mathematics/agda-executable/agda-executable-2.3.0.1-r1.ebuild 
b/sci-mathematics/agda-executable/agda-executable-2.3.0.1-r1.ebuild
deleted file mode 100644
index b05e061..
--- a/sci-mathematics/agda-executable/agda-executable-2.3.0.1-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# ebuild generated by hackport 0.3.
-
-CABAL_FEATURES="bin"
-inherit haskell-cabal eutils
-
-MY_PN="Agda-executable"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Command-line program for type-checking and compiling Agda 
programs"
-HOMEPAGE="http://wiki.portal.chalmers.se/agda/";
-SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=sci-mathematics/agda-2.3.0.1
-   >=dev-haskell/cabal-1.8
-   >=dev-lang/ghc-6.10.4"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   cabal-mksetup
-   sed -e 's@Agda == 2.3.0.1@Agda >= 2.3.0.1@' \
-   -i "${S}/${MY_PN}.cabal" || die "Could not loosen dependencies"
-}

diff --git a/sci-mathematics/agda-executable/agda-executable-2.3.0.1-r2.ebuild 
b/sci-mathematics/agda-executable/agda-executable-2.3.0.1-r2.ebuild
deleted file mode 100644
index b6bc07a..
--- a/sci-mathematics/agda-executable/agda-executable-2.3.0.1-r2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# ebuild generated by hackport 0.3.
-
-CABAL_FEATURES="bin"
-inherit haskell-cabal eutils
-
-MY_PN="Agda-executable"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Command-line program for type-checking and compiling Agda 
programs"
-HOMEPAGE="http://wiki.portal.chalmers.se/agda/";
-SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=sci-mathematics/agda-2.3.0.1:="
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.8
-   >=dev-lang/ghc-6.10.4"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   cabal-mksetup
-   sed -e 's@Agda == 2.3.0.1@Agda >= 2.3.0.1@' \
-   -i "${S}/${MY_PN}.cabal" || die "Could not loosen dependencies"
-}

diff --git a/sci-mathematics/agda-executable/metadata.xml 
b/sci-mathematics/agda-executable/metadata.xml
deleted file mode 100644
index 029bd13..
--- a/sci-mathematics/agda-executable/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   hask...@gentoo.org
-   
-   
-   This package provides a command-line program for type-checking 
and
-   compiling Agda programs. The program can also generate 
hyperlinked,
-   highlighted HTML files from Agda sources.
-   
-



[gentoo-commits] repo/gentoo:master commit in: dev-lang/regina-rexx/files/, profiles/, dev-lang/regina-rexx/

2016-10-31 Thread Michał Górny
commit: 27b468288bbff5dbcec12c7786efdf4ef5b9bd3e
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:09:18 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:10:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b46828

dev-lang/regina-rexx: Remove buggy 3.6 version (stable, masked), #515944

 .../regina-rexx/files/regina-rexx-3.6-gentoo.patch | 28 -
 dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild | 48 --
 profiles/package.mask  |  5 ---
 3 files changed, 81 deletions(-)

diff --git a/dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch 
b/dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch
deleted file mode 100644
index af4b024..
--- a/dev-lang/regina-rexx/files/regina-rexx-3.6-gentoo.patch
+++ /dev/null
@@ -1,28 +0,0 @@
 a/Makefile.in  2011-12-31 09:50:28.0 +0100
-+++ b/Makefile.in  2012-12-15 18:29:37.691579584 +0100
-@@ -92,6 +92,7 @@
- REXX_BINARY_LIBS = @REXX_BINARY_LIBS@
- REGINA_BINARY_LIBS = @REGINA_BINARY_LIBS@
- LIBREGINA_BINARY_LIBS = @LIBREGINA_BINARY_LIBS@
-+LIBREGUTIL_BINARY_LIBS = @LIBREGINA_BINARY_LIBS@ @REXX_BINARY_LIBS@
- THREADER_BINARY_LIBS = @THREADER_BINARY_LIBS@
- EXECISER_BINARY_LIBS = @EXECISER_BINARY_LIBS@
- STACK_BINARY_LIBS = @STACK_BINARY_LIBS@
-@@ -926,7 +927,7 @@
- # $(CC) -c $(COPT) $(CC2O) $(DYN_COMP) $(regutildir)/regtrig.c
- 
- $(SHLPRE)regutil$(MODPST): $(REGUTILOBJ) $(SHLPRE)$(SHLFILE)$(SHLPST) 
$(REGUTILEXP)
--  $(LD_RXLIB_UTILA) $(REGUTILEXPORTS) $(REGUTILOBJ) $(LD_RXLIB_UTILB) 
$(BOTHLIBS)
-+  $(LD_RXLIB_UTILA) $(REGUTILEXPORTS) $(REGUTILOBJ) $(LD_RXLIB_UTILB) 
$(BOTHLIBS) $(LIBREGUTIL_BINARY_LIBS)
-   $(RANLIB_DYNAMIC)
- 
- 
-@@ -1009,7 +1010,7 @@
-   $(INSTALL) -m 755 -c ./rxqueue$(binarybitprefix)$(EXE) 
$(DESTDIR)$(bindir)/rxqueue$(binarybitprefix)$(EXE)
-   $(INSTALL) -m 755 -c ./rxstack$(binarybitprefix)$(EXE) 
$(DESTDIR)$(bindir)/rxstack$(binarybitprefix)$(EXE)
-   $(INSTALL) -m 755 -c ./regina-config $(DESTDIR)$(bindir)/regina-config
--  -$(INSTALL) -m 755 -c ./rxstack.init.d 
$(DESTDIR)$(sysconfdir)/rc.d/init.d/rxstack
-+  
-   @echo "The system startup/shutdown script; rxstack, may have been 
installed into $(sysconfdir)/rc.d/init.d"
-   @echo "You need to create the appropriate links to this script to start 
and stop rxstack automatically."
-   -$(INSTALL) -m 755 -c ./$(LIBPRE)$(LIBFILE)$(LIBPST) 
$(DESTDIR)$(libdir)/$(LIBPRE)$(LIBFILE)$(LIBPST)

diff --git a/dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild 
b/dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild
deleted file mode 100644
index b3f9548..
--- a/dev-lang/regina-rexx/regina-rexx-3.6-r3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit autotools eutils toolchain-funcs
-
-DESCRIPTION="Portable Rexx interpreter"
-HOMEPAGE="http://regina-rexx.sourceforge.net";
-SRC_URI="mirror://sourceforge/${PN}/Regina-REXX-${PV}.tar.gz"
-
-LICENSE="LGPL-2.1 MPL-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE=""
-
-S=${WORKDIR}/Regina-REXX-${PV}
-
-MAKEOPTS+=" -j1"
-
-DOCS=( BUGS HACKERS.txt README.Unix README_SAFE TODO )
-
-src_prepare() {
-   sed -e 's/CFLAGS=/UPSTREAM_CFLAGS=/' -i common/incdebug.m4 || die
-
-   epatch "${FILESDIR}"/${PN}-3.6-gentoo.patch
-
-   eautoconf
-   tc-export CC #don't move it as tc-getCC
-}
-
-src_compile() {
-   emake LIBEXE="$(tc-getAR)"
-}
-
-src_install() {
-   default
-   newinitd "${FILESDIR}"/rxstack-r1 rxstack
-}
-
-pkg_postinst() {
-   elog "You may want to run"
-   elog
-   elog "\trc-update add rxstack default"
-   elog
-   elog "to enable Rexx queues (optional)."
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index d0d191e..2d3984f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -624,11 +624,6 @@ dev-php/pecl-http:0
 =dev-php/pecl-mailparse-2.1.6-r1
 
 # Pacho Ramos  (21 Aug 2016)
-# Needs fixing (#515944), nothing needs this in the tree. Removal in a
-# month.
-dev-lang/regina-rexx
-
-# Pacho Ramos  (21 Aug 2016)
 # Security issues (#562898)
 =app-admin/lsyncd-2.1.5
 



[gentoo-commits] proj/kde:master commit in: kde-frameworks/kwayland/

2016-10-31 Thread Johannes Huber
commit: 47be3ea7b6041ba6b2b77c8399cda31d59e4ee8c
Author: Elias Probst  eliasprobst  eu>
AuthorDate: Sun Oct 30 22:38:05 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 16:11:17 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=47be3ea7

kde-frameworks/kwayland: DEPEND on dev-qt/{qtgui,qtwayland}[egl]

Otherwise starting any kind of Plasma Wayland session (full, nested)
will fail with the error message:

`Failed to load client buffer integration: wayland-egl`

Package-Manager: portage-2.3.0

Signed-off-by: Johannes Huber  gentoo.org>

 kde-frameworks/kwayland/kwayland-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kwayland/kwayland-.ebuild 
b/kde-frameworks/kwayland/kwayland-.ebuild
index 8a1df23..2147d6f 100644
--- a/kde-frameworks/kwayland/kwayland-.ebuild
+++ b/kde-frameworks/kwayland/kwayland-.ebuild
@@ -16,12 +16,12 @@ IUSE=""
 
 DEPEND="
$(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtgui)
+   $(add_qt_dep qtgui 'egl')
>=dev-libs/wayland-1.7.0
media-libs/mesa[egl]
 "
 RDEPEND="${DEPEND}
-   $(add_qt_dep qtwayland)
+   $(add_qt_dep qtwayland 'egl')
!kde-plasma/kwayland
 "
 



[gentoo-commits] proj/gentoo-bsd:master commit in: dev-util/catalyst/

2016-10-31 Thread Yuta SATOH
commit: 08ac873b4a35c7e24ba3948c4a00d932b745b52e
Author: Yuta SATOH  gmail  com>
AuthorDate: Mon Oct 31 16:12:03 2016 +
Commit: Yuta SATOH  gentoo  gr  jp>
CommitDate: Mon Oct 31 16:12:03 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=08ac873b

dev-util/catalyst-: import from latest tree.

 dev-util/catalyst/catalyst-.ebuild | 63 ++
 1 file changed, 63 insertions(+)

diff --git a/dev-util/catalyst/catalyst-.ebuild 
b/dev-util/catalyst/catalyst-.ebuild
new file mode 100644
index 000..adc1244
--- /dev/null
+++ b/dev-util/catalyst/catalyst-.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+if [[ ${PV} == ** ]]; then
+   SRC_ECLASS="git-2"
+   EGIT_REPO_URI="git://anongit.gentoo.org/proj/catalyst.git"
+   EGIT_BRANCH="master"
+   S="${WORKDIR}/${PN}"
+else
+   SRC_URI="mirror://gentoo/${P}.tar.bz2
+   https://dev.gentoo.org/~dolsen/releases/catalyst/${P}.tar.bz2
+   https://dev.gentoo.org/~jmbsvicetto/distfiles/${P}.tar.bz2
+   https://dev.gentoo.org/~zerochaos/distfiles/${P}.tar.bz2";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
+fi
+
+PYTHON_COMPAT=( python{3_4,3_5} )
+
+inherit distutils-r1 multilib ${SRC_ECLASS}
+
+DESCRIPTION="Release metatool used for creating releases based on Gentoo Linux"
+HOMEPAGE="https://www.gentoo.org/proj/en/releng/catalyst/";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="ccache doc kernel_linux"
+
+DEPEND="
+   app-text/asciidoc
+   >=dev-python/snakeoil-0.6.5[${PYTHON_USEDEP}]
+"
+RDEPEND="
+   =dev-python/pydecomp-[${PYTHON_USEDEP}]
+   app-arch/lbzip2
+   app-crypt/shash
+   app-arch/tar[xattr]
+   virtual/cdrtools
+   amd64? ( >=sys-boot/syslinux-3.72 )
+   ia64? ( sys-fs/dosfstools )
+   x86? ( >=sys-boot/syslinux-3.72 )
+   ccache? ( dev-util/ccache )
+   kernel_linux? ( app-misc/zisofs-tools >=sys-fs/squashfs-tools-2.1 )
+"
+
+python_prepare_all() {
+   echo VERSION="${PV}" "${PYTHON}" setup.py set_version
+   VERSION="${PV}" "${PYTHON}" setup.py set_version
+}
+
+python_compile_all() {
+   # build the man pages and docs
+   emake
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   if use doc; then
+   dodoc files/HOWTO.html files/docbook-xsl.css
+   fi
+}



[gentoo-commits] proj/gentoo-bsd:master commit in: dev-util/catalyst/, dev-util/catalyst/files/

2016-10-31 Thread Yuta SATOH
commit: 5bedc2513a1f3bdc91e0e0793f451f55fca8d6cd
Author: Yuta SATOH  gmail  com>
AuthorDate: Mon Oct 31 16:16:43 2016 +
Commit: Yuta SATOH  gentoo  gr  jp>
CommitDate: Mon Oct 31 16:16:43 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-bsd.git/commit/?id=5bedc251

dev-util/catalyst: added - patches.

 dev-util/catalyst/Manifest|   3 +
 dev-util/catalyst/catalyst-.ebuild|  10 +-
 dev-util/catalyst/files/catalyst--sed.patch   | 302 ++
 dev-util/catalyst/files/catalyst--tmpfs.patch |  40 +++
 4 files changed, 353 insertions(+), 2 deletions(-)

diff --git a/dev-util/catalyst/Manifest b/dev-util/catalyst/Manifest
index b9a8134..5a8318f 100644
--- a/dev-util/catalyst/Manifest
+++ b/dev-util/catalyst/Manifest
@@ -1,9 +1,12 @@
 AUX catalyst-2.0.12.1-fbsd.patch 9713 SHA256 
c66f856b7f3b0b9988984cf7eac1ab332d6103ac4bbcc855dbfdb0f4de8e6692 SHA512 
335b29e7bda61c1875a66694031924a3f04851b056651b6ee8f3572209bf216d5f63520513223ca996f3b9404eeefacf7cfe40d0feddbebd5c3782bf8db36d4d
 WHIRLPOOL 
b63adab3d5ead0950a06d9a6490cfbef9d07ca420e45eaee99b9bef87f3b96d93cdaada2212faa368c1473360f917db094f8319f34bdbc1dd673390fb55cc9bf
 AUX catalyst-2.0.14-fbsd.patch 10559 SHA256 
c4f53aa4a29eceb01a19b76b08b898efab1244b045b7657430c81ac796ebd8f3 SHA512 
344193243bea083c8af3c641f69b70362635af7eaec9887cb0a5aa92957f951b53bbc8ea68f62e66395a2efa63b3b69bb2da7aeac489f88df70abf117a6108b7
 WHIRLPOOL 
3c54e14b0a05e272403ff738c2a5ba25eaa5c034148f35317809c5ccb758f245490ccead2d6554b36ef3f4e6a592faa2988974f901f01096eefe1466de058272
 AUX catalyst-2.0.15-fbsd-extra.patch 5180 SHA256 
3f9cfe533be0050e936d47f2d4392f7ca5110cecb4a5dcd68e7cb79c59b25efb SHA512 
dc930e063cf3870048a395577ba5c7d8fce96a150345af7766c4156109ec9539455e05b59a7c5873dfc596ab240e9d7dde55dc954410054fd85eaf289def7a1c
 WHIRLPOOL 
78be8967fdce9b2c247f720d3389a41ff056d9ce3d270f2951dbd2318e8c93519c91ea4b6c889aced17775ea187180899f7a8a13450334c1b7df76611f944f9f
+AUX catalyst--sed.patch 12970 SHA256 
279d0ba5b32bc7e921e9a6038a85981da2229773edc1b7519e144e05f34614c2 SHA512 
f90d9e64079c88380508c42c5f408a106d7cc6fe07732d25722f92c94ddea84c9a592c61e403585b29e16612c2a8b59f1245e3259e7d7587aeb11881c6e84932
 WHIRLPOOL 
6e4db5701884eb976b2b893dbc3ec73297096ef30319ff7a2dbec43861403ad2444dc0af40fe5b03143f5694ccd7806b6e057a6ab7cc58d59c19aa245ae86eb1
+AUX catalyst--tmpfs.patch 1531 SHA256 
23cdf7e169129343d7a55e62870a70f971b8746c721cf6acf8b19027d8f9cf6e SHA512 
1ff41b0c994336ff73e69c54258f6d0aa75b235fbfe67ebc6c20322b9c27bf7554e6236b0f7376a06e115abdb80e6947b32afe94ff73755290f80b85a68d
 WHIRLPOOL 
8715a0fb31c323ec76e30be6e4dd9fd864d5acdf61c3633e9a194c4355c250d6da6570d99de68bc487e7419eac396ce2f722d44aa639662f5032f3ca59b1c6cd
 DIST catalyst-2.0.12.2.tar.bz2 907893 SHA256 
411d531b6de8c8c1bc9fa9502af3a4882e94e9db8b911bb48e4a0fcfc1efe7e8 SHA512 
12349f6249363a94a72a71d05b2fe6ee13593b5ea67e1cb9a054c5ece896ff68f89d1af6341b98238ba6a6510e2737f81dcc2606649c10681235315663ab04ae
 WHIRLPOOL 
1769a78f615c8e0eec2167dd9d6ab873e24801ecb5e4634037898933c6f5a1dbb189d967a628be6f8811f6769eadc91c5003ddbb6bd58eb05efbbd5110f740c7
 DIST catalyst-2.0.15.tar.bz2 873335 SHA256 
80fc39e6f6b7c32fb84f51333d8bf62a56a1ee068eb83cf2b03cb21c1f163e51 SHA512 
9e61ba61eaa806424041f7edd1680b55dfd69bdea5b292aff305b4b3ef03349d82a47d8ab876baf7bf888e03810d79c6a00d74dc748082a1ed180ec1ed7043bd
 WHIRLPOOL 
03c0f1137f59c57d106df4210104000c498a4c7ff2ae5bcc6e6c7a23d3d0c4c35ed125c036a0468859706da82af799641c1abe1b18c716c230c6ab657b4b765c
 DIST catalyst-2.0.17.tar.bz2 861341 SHA256 
5f4142598d921e5174ff06f9571856760a324e79db5f3b63caf0d1a16adc813c SHA512 
9d7b9ad383dcc5d4ba058596c0b607eb9601b28025d9300f63e68d78cbd5bca8fa3f3e03a81dc6b233021e773ba4301df0bf5cec51ca4368eb3577a68d33a92c
 WHIRLPOOL 
e97fc120141cc4f9f5c297652d8b43313780f615429c0eb3d9b85cba40aeca01dcbc6efb0f8d388cc5e7debabb2563cfc9b5a5aa00e3d00d306aed0f799fc642
 EBUILD catalyst-2.0.12.2.ebuild 3660 SHA256 
4b0714dbb8eb96a9588f6b95e5e9021ddb62144c1a2e47f717111d70a84593a2 SHA512 
f5ca61ec95864928d27e93ac72c2b441fdc04d30a27ebb3cedff6ec327147cee51a213b06d5f8e82bfda50ebc9e2eff51d77f43d3b699018459a4094b691ff4f
 WHIRLPOOL 
1a558bd6eba2f278e4f6fcc4c846d884cf3fe79961204e6cf04bdb41889c96dd5f0af447eb14a6e8d17eac0622d8874cc6be20ff97e59d9632114495c77c2019
 EBUILD catalyst-2.0.15.ebuild 3166 SHA256 
90063f74c89fa79969cfc35c695cadd20aadce8c922dd9d9444d8243b08f974e SHA512 
1e0a83a4c65679c0f2c11b3ccbb96695a7f551f97c875bb0d81453db1f6803873a1ef8838eee884a9b34bb69dd97bbdb80344deac103301882d9e95dd61e8b55
 WHIRLPOOL 
6239a89daa41d5bc983cf020eb2fd6486c3e990ebc5cccd27260ce54ade5fb9a1e20c256d8a6861c728fa9286f54d0f6b7fa7e63949222147f178bcbd2e0a3b7
 EBUILD catalyst-2.0.17.ebuild 3162 SHA256 
1f9aacf9e56f5184fa791583ea7c9d332b7ab4a1504bde50ae77f7f879a17a2c SHA512 
31ab393441dd34eeb030703e75c91c4b01ecb32354728e0bedff40ec1c2a6f70ba4868eeeb1e63ff4f68c500d62abea0d2e2d17743b89c37c000d6cb18b8aa7c
 WHIRLPOOL 
b424423dfaaf07b8df3317e

[gentoo-commits] repo/gentoo:master commit in: net-libs/socket++/, profiles/, net-libs/socket++/files/

2016-10-31 Thread Michał Górny
commit: 875e0674bf9a5c8e72d7658b0cba4b7fd3907d6d
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:21:14 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:24:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=875e0674

net-libs/socket++: Remove last-rited pkg, #595754

 net-libs/socket++/Manifest |  2 --
 .../socket++/files/socket++-1.12.12-gcc47.patch| 20 ---
 net-libs/socket++/files/socket++.pc| 11 --
 net-libs/socket++/metadata.xml |  9 -
 net-libs/socket++/socket++-1.12.12-r2.ebuild   | 41 --
 net-libs/socket++/socket++-1.12.13.ebuild  | 41 --
 profiles/package.mask  |  6 
 7 files changed, 130 deletions(-)

diff --git a/net-libs/socket++/Manifest b/net-libs/socket++/Manifest
deleted file mode 100644
index e524a0f..
--- a/net-libs/socket++/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST socket++-1.12.12.tar.gz 64373 SHA256 
e779cfe92ee2fd73841f91b0192350e5b796bedc11f1e69c4f1d792851cdc28d SHA512 
3cc45721da058114586553e9d758fbbba5a135cd09289b5362dd573a2070aa3330d7b7d08b42a39fbb874314aa7e6f05bf571d36628ef63ba95ff6e1e9b356b6
 WHIRLPOOL 
5e2f2bfc6ef4433db3ab2e26e3c94eeb301c85283602a60b8eeef6379c609dbbd2d649810ca15f822cc4d8774b0d7a59ce04c15692f004d7420ad6bcdafaf67d
-DIST socket++-1.12.13.tar.gz 64263 SHA256 
755cdcac06d40fcca2b221f840e05f89a86298bc3bfc518b51a57b42f0512b19 SHA512 
080f4cc71c4edcf56d81b8574ff357bc24f7a740a6a3c7e92a2dfd7d8910193e919fc270fcc8e96ea769518854b6e45ec79b949ecaef69f30edf821ae4bd625b
 WHIRLPOOL 
c08fd6641089107933f8c91a4b483881a7798aecf88702f17bd83f880698abcbb20f2951c39c4a0e49e495bbf9092ed614cb2aca1c99f86951b4598b6bdfe3d1

diff --git a/net-libs/socket++/files/socket++-1.12.12-gcc47.patch 
b/net-libs/socket++/files/socket++-1.12.12-gcc47.patch
deleted file mode 100644
index 62a62b0..
--- a/net-libs/socket++/files/socket++-1.12.12-gcc47.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 test/thostnames.C~ 2004-06-29 08:47:52.0 +0200
-+++ test/thostnames.C  2013-09-07 10:30:24.159157101 +0200
-@@ -23,7 +23,7 @@
- {
-   public:
-   test () : iosockinet (sockbuf::sock_stream) {
--  cout << "Constructor rdbuf: " << (unsigned int) rdbuf() 
<< endl;
-+  cout << "Constructor rdbuf: " << (size_t) rdbuf() << 
endl;
-   }
- };
- 
-@@ -39,7 +39,7 @@
-   }
- 
-   sio.rdbuf()->setname ("Testsocket");
--  cout << "rdbuf: " << (unsigned int) sio.rdbuf() << "\n";
-+  cout << "rdbuf: " << (size_t) sio.rdbuf() << "\n";
-   cout << "socketname: " << sio.rdbuf()->getname() << endl;
- 
-   try {

diff --git a/net-libs/socket++/files/socket++.pc 
b/net-libs/socket++/files/socket++.pc
deleted file mode 100644
index 4faaa9c..
--- a/net-libs/socket++/files/socket++.pc
+++ /dev/null
@@ -1,11 +0,0 @@
-prefix=/usr
-exec_prefix=/usr/bin
-libdir=/usr/lib
-includedir=/usr/include
-
-Name: socket++
-Version: PV
-Description: A C++ Socket Library
-Requires:
-Libs: -L/usr/lib -lsocket++
-Cflags: -I/usr/include

diff --git a/net-libs/socket++/metadata.xml b/net-libs/socket++/metadata.xml
deleted file mode 100644
index bcdcbde..
--- a/net-libs/socket++/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   c...@gentoo.org
-   Gentoo C++ Project
-   
-   Socket++ library defines a family of C++ classes that 
can be used more effectively than directly calling the underlying low-level 
system functions.
-

diff --git a/net-libs/socket++/socket++-1.12.12-r2.ebuild 
b/net-libs/socket++/socket++-1.12.12-r2.ebuild
deleted file mode 100644
index c223ff7..
--- a/net-libs/socket++/socket++-1.12.12-r2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-utils
-
-DESCRIPTION="C++ Socket Library"
-HOMEPAGE="http://www.linuxhacker.at/socketxx/";
-SRC_URI="http://www.linuxhacker.at/linux/downloads/src/${P}.tar.gz";
-
-LICENSE="freedist GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~mips x86"
-
-IUSE="debug static-libs"
-
-RESTRICT="bindist"
-
-DEPEND="sys-apps/texinfo"
-RDEPEND=""
-
-DOCS=( AUTHORS ChangeLog NEWS README README2 README3 THANKS )
-
-PATCHES=( "${FILESDIR}/${P}-gcc47.patch" )
-
-src_prepare() {
-   # bug #514246
-   sed -i -e 's/@subsection t/@section t/g' doc/socket++.texi || die
-
-   autotools-utils_src_prepare
-}
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable debug)
-   )
-   autotools-utils_src_configure
-}

diff --git a/net-libs/socket++/socket++-1.12.13.ebuild 
b/net-libs/socket++/socket++-1.12.13.ebuild
deleted file mode 100644
index 7fe0dcc..
--- a/net-libs/socket++/socket++-1.12.13.ebuild
+++

[gentoo-commits] repo/gentoo:master commit in: dev-haskell/base64-conduit/, profiles/

2016-10-31 Thread Michał Górny
commit: 2baddf7a5497f2f3ad17b15583d2b9a4cc75aecf
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:17:34 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:24:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2baddf7a

dev-haskell/base64-conduit: Remove last-rited pkg

 dev-haskell/base64-conduit/Manifest|  1 -
 .../base64-conduit/base64-conduit-1.0.0.1.ebuild   | 30 --
 dev-haskell/base64-conduit/metadata.xml| 14 --
 profiles/package.mask  |  6 -
 4 files changed, 51 deletions(-)

diff --git a/dev-haskell/base64-conduit/Manifest 
b/dev-haskell/base64-conduit/Manifest
deleted file mode 100644
index 20c5ff1..
--- a/dev-haskell/base64-conduit/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST base64-conduit-1.0.0.1.tar.gz 2512 SHA256 
e9993085827215538c236b0300a94c57e513e884bf965714011818ef86ddf01f SHA512 
b0041e05d2b90ce0a6611073239f49cf48464da415e52ba6b68b40072a52d0fb0048c734a5dd508e26ebabf98d434ff6d39e49e8bac911fd3d116520df033eaf
 WHIRLPOOL 
f384c989180212a9b728212163644c7c45508bf486d5668778793a739079f5bdff563b10ee470a5cebaca2672fbb0db08648d0ed7b43dfd0b2a4330d685984da

diff --git a/dev-haskell/base64-conduit/base64-conduit-1.0.0.1.ebuild 
b/dev-haskell/base64-conduit/base64-conduit-1.0.0.1.ebuild
deleted file mode 100644
index 7c37dd2..
--- a/dev-haskell/base64-conduit/base64-conduit-1.0.0.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# ebuild generated by hackport 0.3.6.
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Base64-encode and decode streams of bytes. (deprecated)"
-HOMEPAGE="https://github.com/snoyberg/conduit";
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/base64-bytestring-0.1.1.1:=[profile?]
-   >=dev-haskell/conduit-1.0:=[profile?] 
=dev-lang/ghc-6.10.4:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.8
-   test? ( >=dev-haskell/hspec-1.3
-   dev-haskell/quickcheck
-   dev-haskell/transformers )
-"

diff --git a/dev-haskell/base64-conduit/metadata.xml 
b/dev-haskell/base64-conduit/metadata.xml
deleted file mode 100644
index 1ee2bde..
--- a/dev-haskell/base64-conduit/metadata.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   hask...@gentoo.org
-   Gentoo Haskell
-   
-   
-   Base64-encode and decode streams of bytes.
-   
-   
-   snoyberg/conduit
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 2d3984f..0fbb174 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -586,12 +586,6 @@ dev-libs/dbxml
 # and Humble Bundle over 2 years ago. Removal in 60 days. Bug #588110.
 games-action/awesomenauts
 
-# Sergei Trofimovich  (11 Sep 2016)
-# Mask for removal in 30 days. Uses deprecated conduit-1.0*
-# Upstream suggests using dev-haskell/conduit-combinators
-# instead.
-dev-haskell/base64-conduit
-
 # Lars Wendler  (06 Sep 2016)
 # Breaks samba's nmbd process (bug #592502)
 # Masked the possible fixed samba version until more testing has been 
performed.



[gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/

2016-10-31 Thread Matt Turner
commit: b3327d50e6f962340133c4cec801fb206748eee0
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 31 16:23:54 2016 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 31 16:24:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3327d50

media-libs/mesa: Version bump to 13.0.0_rc3.

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-13.0.0_rc3.ebuild | 467 +
 2 files changed, 468 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index f60eee7..f1c66f3 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -7,3 +7,4 @@ DIST mesa-12.0.1.tar.xz 8571144 SHA256 
bab24fb79f78c876073527f515ed871fc9c81d816
 DIST mesa-12.0.3.tar.xz 8577408 SHA256 
1dc86dd9b51272eee1fad3df65e18cda2e556ef1bc0b6e07cd750b9757f493b1 SHA512 
7d6525b5ed75e1361f3586aaf7f058de06b5038900a6379ab5f713ee879a0b3cecd253d6f3fb799673ef097bcd6866d61b46c33c0059f6636bb06fb5ceb5d750
 WHIRLPOOL 
88d77d445aaff7d96f9c44143c4b09763850d7dbffd6b0716a6204f6753ea84d155c97798e7959de0039f0babc8cffddc05845f385b9f39e6eb6f308921d379d
 DIST mesa-13.0.0-rc1.tar.xz 9010476 SHA256 
ae4fcaf51fdb9b81626ded3d44d42fd20437376793d961fb8e1727aae8658625 SHA512 
72ede4c43ad823fc21ed8b68d8de74cbd38d54a0529750432cde6d6f7c886d84d6d8f5eb09bc1925233bdca2a3e87b8fb667ace64230d5aade05cc1d6883f577
 WHIRLPOOL 
80971ed0960e0f33ad5db785a70e3958aa3fdb438a768182df97e4a565b1a5625d600c4bced09b162bb2bf27c4f71b812a54089c7341cfb3e51f10501915a81d
 DIST mesa-13.0.0-rc2.tar.xz 9016756 SHA256 
ef26031a79b915e1643b0ffe5354f8ae774cd445f12b342abac63438f9735a43 SHA512 
76057fae240b3bc1415e7779003d1eddd18effa4fe4e5b1d8568ea5fcf82ccb136209093fcccd92440a2255d6cd6a136dee52aa3e212903a9471bf9687cb63b2
 WHIRLPOOL 
4e4b1e6949260cd7f183b10e2e4b86202e3176b464c6c42ca1588cbab39e06a72a82d02807bdca52972728a2af3da59b6d3774b7795d16c6a36ce28b13a62d23
+DIST mesa-13.0.0-rc3.tar.xz 9135320 SHA256 
4a3ec9e93cc2be964e204a591a88d8aa935d988fcba877a56e66441f1ebe681a SHA512 
596af31614158930b1c2af1606462dc24ae49a28fc702a6795e05464b97cafd414e3aa34844ce425b1e9e672837b95e675a3b97e9588aaf3149de7000ad63855
 WHIRLPOOL 
54227a71a1871ee41ad80b64d0f74350caaca64bbd1975d294049b5bb6299a79295f3b3840a01e6483bb3432492bd04ad371ad064052af592978089b07da20ad

diff --git a/media-libs/mesa/mesa-13.0.0_rc3.ebuild 
b/media-libs/mesa/mesa-13.0.0_rc3.ebuild
new file mode 100644
index ..bfedccc
--- /dev/null
+++ b/media-libs/mesa/mesa-13.0.0_rc3.ebuild
@@ -0,0 +1,467 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"
+
+if [[ ${PV} =  ]]; then
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+fi
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+FOLDER="${PV/_rc*/}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="http://mesa3d.sourceforge.net/";
+
+if [[ $PV ==  ]]; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="!bindist? ( bindist )"
+
+INTEL_CARDS="i915 i965 ilo intel"
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vc4 vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+   +nptl opencl osmesa pax_kernel openmax pic selinux vaapi valgrind
+   vdpau wayland xvmc xa kernel_FreeBSD"
+
+REQUIRED_USE="
+   d3d9?   ( dri3 gallium )
+   llvm?   ( gallium )
+   opencl? ( gallium llvm )
+   openmax? ( gallium )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vaapi? ( gallium )
+   vdpau? ( gallium )
+   wayland? ( egl gbm )
+   xa?  ( gallium )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_ilo?( gallium )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   video_cards_r600?   ( gallium )
+   video_cards_radeonsi?   ( gallium llvm )
+   video_cards_vmware? ( gallium )
+   $

[gentoo-commits] repo/gentoo:master commit in: profiles/, dev-libs/dbxml/files/, dev-libs/dbxml/

2016-10-31 Thread Michał Górny
commit: da253eac667e11739983080fbeb18a08766435cd
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:19:50 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:24:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da253eac

dev-libs/dbxml: Remove last-rited pkg, #594236

 dev-libs/dbxml/Manifest|   1 -
 dev-libs/dbxml/dbxml-2.5.16-r2.ebuild  | 197 -
 .../files/2.5.16-respect-ldflags-no-rpath.patch|  18 --
 dev-libs/dbxml/metadata.xml|   8 -
 profiles/package.mask  |   8 -
 5 files changed, 232 deletions(-)

diff --git a/dev-libs/dbxml/Manifest b/dev-libs/dbxml/Manifest
deleted file mode 100644
index 80a294d..
--- a/dev-libs/dbxml/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST dbxml-2.5.16.tar.gz 52819154 SHA256 
f2423be3805811a9cca71d6877c0b1bdc1941cd76c3f26d6eb011a5724a3edd2 SHA512 
71c7db8dccd8dda64aafc2c8399129f94cb2c5b0b75176b96e3f6c57b5cd9d040418de2fdce9322f0b7f00bcd88a21aca1e2b886cf18aba942c582236d7bdc7b
 WHIRLPOOL 
85a67e577948aebba7dcfb833aa90ab14c0d04a66e003bf878bd5655c62a26e54e7f90279d29f29c77726cb37452e9cbe13b82fe06ce92cb061fdbb119aa7670

diff --git a/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild 
b/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild
deleted file mode 100644
index a816963..
--- a/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild
+++ /dev/null
@@ -1,197 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PYTHON_DEPEND="python? 2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython"
-
-inherit autotools distutils flag-o-matic perl-app eutils versionator libtool 
multilib java-pkg-opt-2
-
-MY_PV="$(get_version_component_range 1-3)"
-MY_P="${PN}-${MY_PV}"
-PATCH_V="$(get_version_component_range 4)"
-PATCH_V="${PATCH_V:-0}"
-DB_VER="4.8"
-
-DESCRIPTION="BerkeleyDB XML, a native XML database from the BerkeleyDB team"
-HOMEPAGE="http://www.oracle.com/technetwork/database/berkeleydb/index-083851.html
-   
http://download.oracle.com/otndocs/products/berkeleydb/html/$(get_version_component_range
 1-2).html"
-SRC_URI="http://download-east.oracle.com/berkeley-db/${MY_P}.tar.gz
-   http://download-west.oracle.com/berkeley-db/${MY_P}.tar.gz
-   http://download-uk.oracle.com/berkeley-db/${MY_P}.tar.gz";
-
-LICENSE="Sleepycat Apache-1.1 BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples java perl python tcl"
-
-RDEPEND="sys-libs/db:${DB_VER}[cxx,java?]
-   >=dev-libs/xerces-c-3
-   =dev-libs/xqilla-2.2*
-   sys-libs/zlib
-   perl? ( dev-lang/perl )
-   python? (
-   >=dev-python/bsddb3-4.8.0 )
-   tcl? ( dev-lang/tcl:0= )
-   java? ( >=virtual/jre-1.5 )"
-DEPEND="${RDEPEND}
-   sys-devel/libtool
-   java? ( >=virtual/jdk-1.5 )"
-
-# return a list of patches calculated using the micro-version
-get_patches() {
-   local patches=""
-   for (( patch_v=1 ; patch_v <= ${PATCH_V} ; patch_v++ )) ; do
-   patches="${patches} patch.${MY_PV}.${patch_v}"
-   done
-   echo ${patches}
-}
-MYPATCHES="$(get_patches)"
-
-for patch in ${MYPATCHES} ; do
-   SRC_URI="${SRC_URI} 
http://www.oracle.com/technology/products/berkeley-db/xml/update/${MY_PV}/${patch}";
-done
-
-S="${WORKDIR}/${MY_P}/dbxml"
-
-src_unpack() {
-   tar xzpf "${DISTDIR}/${MY_P}.tar.gz" ${MY_P}/dbxml || die "unpacking 
package failed"
-   for patch in ${MYPATCHES} ; do
-   cp "${DISTDIR}/${patch}" "${WORKDIR}" || die "copying patch 
${patch} failed"
-   done
-}
-
-src_prepare() {
-   for patch in ${MYPATCHES} ; do
-   edos2unix "${WORKDIR}/${patch}"
-   epatch "${WORKDIR}/${patch}"
-   done
-
-   epatch "${FILESDIR}/${PV}-respect-ldflags-no-rpath.patch"
-
-   # sys-libs/db is slotted on Gentoo
-   sed -i \
-   -e "s:db_version=.*:db_version=${DB_VER}:" \
-   dist/aclocal/options.ac configure || die "sed failed"
-
-   if use java ; then
-   sed -i \
-   -e "s|\$with_berkeleydb/lib/db.jar|$(java-pkg_getjars 
db-${DB_VER})|" \
-   dist/aclocal/options.ac configure || die "sed failed"
-   fi
-
-   # * Fix libraries to link
-   # * Strip "../../build_unix/.libs" from LIBPATH or it'll
-   #   show up in the RPATH entry
-   sed -i \
-   -e "s|dbxml-2|dbxml-$(get_version_component_range 1-2)|" \
-   -e "s|db-4|db-${DB_VER}|" \
-   -e 's|dbxml_home = .*|dbxml_home = "../.."|' \
-   -e 's|"../../build_unix/.libs",||' \
-   src/python/setup.py.in || die "sed failed"
-
-   sed -i \
-   -e "s|dbxml-2|dbxml-$(get_version_component_range 1-2)|" \
-   -e "s|db_cxx-4|db_cxx-${DB_VER}|" \
-   -e "s|@DB_DIR@/lib|/usr/$(get_libdir)|" \
- 

[gentoo-commits] repo/gentoo:master commit in: profiles/targets/desktop/plasma/

2016-10-31 Thread Johannes Huber
commit: 2234afcdaa7a744813b5d2468d64ba5cd7ea60d1
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 16:22:53 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 16:25:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2234afcd

profiles: Update Plasma profile package use

>=kde-frameworks/kwayland-5.28 will require egl on
dev-qt/{qtgui,qtwayland}.

 profiles/targets/desktop/plasma/package.use | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/targets/desktop/plasma/package.use 
b/profiles/targets/desktop/plasma/package.use
index 99d1709..80ad8a1 100644
--- a/profiles/targets/desktop/plasma/package.use
+++ b/profiles/targets/desktop/plasma/package.use
@@ -44,6 +44,10 @@ dev-qt/qtcore icu
 # Required by kde-plasma/kwin
 media-libs/mesa egl wayland
 
+# Required by kde-frameworks/kwayland
+dev-qt/qtgui egl
+dev-qt/qtwayland eql
+
 # Required by kde-apps/kdenlive
 >=media-libs/mlt-0.9.8-r2 kdenlive melt
 



[gentoo-commits] repo/gentoo:master commit in: app-doc/zeal/

2016-10-31 Thread Patrice Clement
commit: 20b8d7f21a2f3de30013699bd88be4bc48911121
Author: soredake  krutt  org>
AuthorDate: Thu Oct 27 12:34:46 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 16:28:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b8d7f2

app-doc/zeal: improvements.

* EAPI bump.
* version bump to 0.3.1.
* keyword for the ~arm platform.

Closes: https://github.com/gentoo/gentoo/pull/2678

Signed-off-by: Patrice Clement  gentoo.org>

 app-doc/zeal/Manifest  |  1 +
 app-doc/zeal/zeal-0.3.1.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/app-doc/zeal/Manifest b/app-doc/zeal/Manifest
index 3d6982e..42bd642 100644
--- a/app-doc/zeal/Manifest
+++ b/app-doc/zeal/Manifest
@@ -1 +1,2 @@
 DIST zeal-0.2.1.tar.gz 914998 SHA256 
994c5fad079cb34952fc05b0663920118489ed7f00f8e5a5887ff2e2bd05861d SHA512 
f17b7ef59649a5c57ef3461aa84dbb2636deed13646d5f73fe05adf1bb9519d317366a18c61d6716417044d6248fd6111cacb8341393fa194567769fd2048c3f
 WHIRLPOOL 
e2ecd8d2a9e712a0e9185eaeca87051529777080a9ff6ff886d7674886e235e0d6ab7daddf439dfbeb2f17154a2b2e14fb17947180e40afb6e8ad50e6b17962a
+DIST zeal-0.3.1.tar.gz 920814 SHA256 
55f8511977818612e00ae87a4fddaa346210189531469690f2e3961bb4c2c318 SHA512 
9d95d9d3a1966c823f4eebe2a389f046df84d27262863dead558e309ac4c0ac8ee5ab1fd8f3559e9745e0ee9248df36aa66de8ca242a5d4662c6bb1d5b722280
 WHIRLPOOL 
6c8e81827dda2a074f086cdd03e7a8e4e8634e971034252380b09730165b3e208912cd0df55a4e3e8b079af77751748a7af3875a246d00fb78807665b6314a43

diff --git a/app-doc/zeal/zeal-0.3.1.ebuild b/app-doc/zeal/zeal-0.3.1.ebuild
new file mode 100644
index ..93e2c87
--- /dev/null
+++ b/app-doc/zeal/zeal-0.3.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit qmake-utils gnome2-utils fdo-mime
+
+DESCRIPTION="Offline documentation browser inspired by Dash"
+HOMEPAGE="https://zealdocs.org/";
+SRC_URI="https://github.com/zealdocs/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+S="${WORKDIR}/${P}/src"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+
+DEPEND="
+   app-arch/libarchive
+   dev-qt/qtconcurrent:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   >=x11-libs/xcb-util-keysyms-0.3.9
+"
+
+RDEPEND="
+   ${DEPEND}
+   x11-themes/hicolor-icon-theme
+"
+
+src_configure() {
+   eqmake5
+   PREFIX="${EPREFIX}/usr"
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" PREFIX="${EPREFIX}/usr" install
+}
+
+pkg_preinst() {
+   gnome2_icon_savelist
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/targets/desktop/plasma/

2016-10-31 Thread Johannes Huber
commit: bd80ce0740b38d24cc7515b7f244576ff4648f6b
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 16:31:44 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 16:32:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd80ce07

profiles: Fix typo in Plasma package use

 profiles/targets/desktop/plasma/package.use | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/targets/desktop/plasma/package.use 
b/profiles/targets/desktop/plasma/package.use
index 80ad8a1..e27339f 100644
--- a/profiles/targets/desktop/plasma/package.use
+++ b/profiles/targets/desktop/plasma/package.use
@@ -46,7 +46,7 @@ media-libs/mesa egl wayland
 
 # Required by kde-frameworks/kwayland
 dev-qt/qtgui egl
-dev-qt/qtwayland eql
+dev-qt/qtwayland egl
 
 # Required by kde-apps/kdenlive
 >=media-libs/mlt-0.9.8-r2 kdenlive melt



[gentoo-commits] repo/gentoo:master commit in: dev-lang/regina-rexx/

2016-10-31 Thread Michał Górny
commit: 59417a87ce9590ff8366d759d581a9a31eadd1f5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:37:56 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:38:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59417a87

dev-lang/regina-rexx: Fix the Manifest

 dev-lang/regina-rexx/Manifest | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-lang/regina-rexx/Manifest b/dev-lang/regina-rexx/Manifest
index 6b6e69b..f49e57e 100644
--- a/dev-lang/regina-rexx/Manifest
+++ b/dev-lang/regina-rexx/Manifest
@@ -1,2 +1 @@
-DIST Regina-REXX-3.6.tar.gz 1140272 SHA256 
687a52327b74e75cf383c427268346ef884c9aed6cdd7d3108feff2171ecfbcc SHA512 
07a65c633da97e2a696c3d038808fa377af05f99fef2322398f4712726f4b7311957afeb9e2c18988feb29392ef06ddae7f7bde1a7574af0b0e8bbd286aa2e8e
 WHIRLPOOL 
be930cd0e8cf96a95eccf61d711ec633d7acfaf7b383f2633ac696bddbf8c01ab2ba2ef4bda8cf0f4f9404128e9f3eabbb3168864a5b93360f46b5f09fa1feb1
 DIST Regina-REXX-3.9.1.tar.gz 1358458 SHA256 
5d13df26987e27f25e7779a2efa87a5775213beeda449a9efac59b57a5d5f3ee SHA512 
679d146d68598ccca28c4e66a12ab898d5bfb77e2e5d64ce5ffc9159b982dcda419815a83b05e5dfbe3acea84f8f59955726a6466defefe1ac24646c46609677
 WHIRLPOOL 
f46e60eb15b290cf8ad0488eae1a4073155051d8be18a7118020937e81de91b4758b08e48f897be0e19dd382f99755b51d9c81368b7d894d2aa373b152921cdc



[gentoo-commits] proj/kde:master commit in: kde-apps/kalzium/

2016-10-31 Thread Johannes Huber
commit: 6211876af04121597fbc222dbe8ed5f7f6a16c68
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 16:55:08 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 16:55:08 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6211876a

kde-apps/kalzium: Franeworks merged to master

Package-Manager: portage-2.3.2

 kde-apps/kalzium/kalzium-5..ebuild | 67 --
 kde-apps/kalzium/kalzium-.ebuild   | 49 ++---
 2 files changed, 35 insertions(+), 81 deletions(-)

diff --git a/kde-apps/kalzium/kalzium-5..ebuild 
b/kde-apps/kalzium/kalzium-5..ebuild
deleted file mode 100644
index 2e727fc..000
--- a/kde-apps/kalzium/kalzium-5..ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-EGIT_BRANCH="frameworks"
-KDE_HANDBOOK="forceoptional"
-inherit kde5 flag-o-matic
-
-DESCRIPTION="Periodic table of the elements"
-HOMEPAGE="https://www.kde.org/applications/education/kalzium
-https://edu.kde.org/kalzium";
-KEYWORDS=""
-IUSE="editor solver"
-
-DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep khtml)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kplotting)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kunitconversion)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_kdeapps_dep libkdegames)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtopengl)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   editor? (
-   dev-cpp/eigen:3
-   sci-chemistry/avogadro
-   sci-chemistry/openbabel
-   )
-   solver? ( dev-ml/facile[ocamlopt] )
-"
-RDEPEND="${DEPEND}
-   sci-chemistry/chemical-mime-data
-"
-
-src_configure(){
-   # Fix missing finite()
-   [[ ${CHOST} == *-solaris* ]] && append-cppflags -DHAVE_IEEEFP_H
-
-   local mycmakeargs=(
-   $(cmake-utils_use_find_package editor Eigen3)
-   $(cmake-utils_use_find_package editor AvogadroLibs)
-   $(cmake-utils_use_find_package editor OpenBabel2)
-   $(cmake-utils_use_find_package solver OCaml)
-   $(cmake-utils_use_find_package solver Libfacile)
-   )
-
-   kde5_src_configure
-}

diff --git a/kde-apps/kalzium/kalzium-.ebuild 
b/kde-apps/kalzium/kalzium-.ebuild
index 36f488c..0974434 100644
--- a/kde-apps/kalzium/kalzium-.ebuild
+++ b/kde-apps/kalzium/kalzium-.ebuild
@@ -4,23 +4,45 @@
 
 EAPI=6
 
-KDE_HANDBOOK="optional"
-CPPUNIT_REQUIRED="optional"
-OPENGL_REQUIRED="always"
-inherit kde4-base flag-o-matic
+KDE_HANDBOOK="forceoptional"
+inherit kde5 flag-o-matic
 
 DESCRIPTION="Periodic table of the elements"
 HOMEPAGE="https://www.kde.org/applications/education/kalzium
 https://edu.kde.org/kalzium";
 KEYWORDS=""
-IUSE="debug editor +plasma solver"
+IUSE="editor solver"
 
 DEPEND="
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep khtml)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kplotting)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kunitconversion)
+   $(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep solid)
+   $(add_kdeapps_dep libkdegames)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtopengl)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
editor? (
dev-cpp/eigen:3
sci-chemistry/avogadro
-   >=sci-chemistry/openbabel-2.2
-   dev-qt/qtopengl:4
+   sci-chemistry/openbabel
)
solver? ( dev-ml/facile[ocamlopt] )
 "
@@ -33,13 +55,12 @@ src_configure(){
[[ ${CHOST} == *-solaris* ]] && append-cppflags -DHAVE_IEEEFP_H
 
local mycmakeargs=(
-   -DBUILD_plasmoid=$(usex plasma)
-   -DWITH_Eigen3=$(usex editor)
-   -D

[gentoo-commits] proj/kde:master commit in: kde-apps/kalzium/

2016-10-31 Thread Johannes Huber
commit: 40b7cda74bc5f1b4fa1ad0d159678fea5ae7a522
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 17:05:43 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 17:05:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=40b7cda7

kde-apps/kalzium: Update dependencies

Package-Manager: portage-2.3.2

 kde-apps/kalzium/kalzium-.ebuild | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/kde-apps/kalzium/kalzium-.ebuild 
b/kde-apps/kalzium/kalzium-.ebuild
index 0974434..57cbddf 100644
--- a/kde-apps/kalzium/kalzium-.ebuild
+++ b/kde-apps/kalzium/kalzium-.ebuild
@@ -14,29 +14,23 @@ KEYWORDS=""
 IUSE="editor solver"
 
 DEPEND="
-   $(add_frameworks_dep karchive)
$(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep khtml)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep khtml)
-   $(add_frameworks_dep knewstuff)
-   $(add_frameworks_dep kparts)
$(add_frameworks_dep kplotting)
$(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kunitconversion)
+   $(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_kdeapps_dep libkdegames)
-   $(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
+   $(add_qt_dep qtscript)
$(add_qt_dep qtsvg)
-   $(add_qt_dep qtopengl)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
editor? (



[gentoo-commits] repo/gentoo:master commit in: app-vim/diffchar/

2016-10-31 Thread Patrice Clement
commit: 199f4362f804c7e0e982c4a2f753afe9478c5172
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Oct 31 17:19:19 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 17:20:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=199f4362

app-vim/diffchar: stable for amd64+x86.

Package-Manager: portage-2.3.0

 app-vim/diffchar/diffchar-6.4.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/app-vim/diffchar/diffchar-6.4.ebuild 
b/app-vim/diffchar/diffchar-6.4.ebuild
index 6215d71..8ca9d18 100644
--- a/app-vim/diffchar/diffchar-6.4.ebuild
+++ b/app-vim/diffchar/diffchar-6.4.ebuild
@@ -3,11 +3,12 @@
 # $Id$
 
 EAPI=6
+
 inherit vim-plugin
 
 DESCRIPTION="vim plugin: highlight the exact differences, based on characters 
and words"
 HOMEPAGE="https://github.com/rickhowe/diffchar.vim 
http://www.vim.org/scripts/script.php?script_id=4932";
 LICENSE="vim.org"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: app-vim/diffchar/

2016-10-31 Thread Patrice Clement
commit: 5f5d86c44e67bd23edf86197fde54425c883f38e
Author: Patrice Clement  gentoo  org>
AuthorDate: Mon Oct 31 17:19:46 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct 31 17:20:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f5d86c4

app-vim/diffchar: clean up old.

Package-Manager: portage-2.3.0

 app-vim/diffchar/Manifest|  1 -
 app-vim/diffchar/diffchar-6.1.ebuild | 13 -
 2 files changed, 14 deletions(-)

diff --git a/app-vim/diffchar/Manifest b/app-vim/diffchar/Manifest
index 5b28631..230f857 100644
--- a/app-vim/diffchar/Manifest
+++ b/app-vim/diffchar/Manifest
@@ -1,2 +1 @@
-DIST diffchar-6.1.tar.bz2 15788 SHA256 
daee0b40c4576a2499452a14c933dd3d6e3d3467d4c9969ddb9c6afccc3f68ff SHA512 
a1a7842be0784d07f018bc403b9450e936e6456dec088e4b8cf1cab25b7bad0eb90439971b129c2f8b06402f9ac8009020bca0cf0806eca8deb553df91f1b487
 WHIRLPOOL 
408cee741506bc5ec6d775c8220b5798aa944ce100ff692c9d757e530a31b91f15a1498552aaa5414d0d930dfd93b33363edceb687debbd7f975badfe2a9c3e3
 DIST diffchar-6.4.tar.bz2 16824 SHA256 
b6d1b21c88119662959263bf717d6559ba38579ffb79a572cf4a6593cbe9ffcc SHA512 
aee6ec2225c80306eabc5e18ad1e29ef0a007fb830608ced27e209c26166990354f156f95c210895dcdd7408ff02415be69528fd2062cbb42751a5c5d87aafd7
 WHIRLPOOL 
f65c1fe819c5aaded4a8ff9c1ec775b44f7a7b3059bcee9f9b4b2d352d0a6f9dfaf618060dde5ed80f2d9ed9e20872d1ff85466b2f03853258a15e07deb0242e

diff --git a/app-vim/diffchar/diffchar-6.1.ebuild 
b/app-vim/diffchar/diffchar-6.1.ebuild
deleted file mode 100644
index b7caa37..
--- a/app-vim/diffchar/diffchar-6.1.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit vim-plugin
-
-DESCRIPTION="vim plugin: highlight the exact differences, based on characters 
and words"
-HOMEPAGE="https://github.com/rickhowe/diffchar.vim 
http://www.vim.org/scripts/script.php?script_id=4932";
-LICENSE="vim.org"
-KEYWORDS="amd64 x86"
-
-VIM_PLUGIN_HELPFILES="${PN}.txt"



[gentoo-commits] repo/gentoo:master commit in: media-gfx/gimp/

2016-10-31 Thread Sebastian Pipping
commit: 9a76e1f129dd7755ad6a0d0a237f55267cd8ea97
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Mon Oct 31 18:44:22 2016 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Mon Oct 31 18:46:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a76e1f1

media-gfx/gimp: Resolve svg use flag (bug #597460)

Related upstream commit:
https://git.gnome.org/browse/gimp/commit/?id=43e218859b09ff648088f4820642d92c57f0ddb6

Package-Manager: portage-2.3.2

 media-gfx/gimp/gimp-2.9.4-r1.ebuild | 8 
 media-gfx/gimp/gimp-.ebuild | 5 ++---
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/media-gfx/gimp/gimp-2.9.4-r1.ebuild 
b/media-gfx/gimp/gimp-2.9.4-r1.ebuild
index 7d4f595..d68dd68 100644
--- a/media-gfx/gimp/gimp-2.9.4-r1.ebuild
+++ b/media-gfx/gimp/gimp-2.9.4-r1.ebuild
@@ -15,7 +15,7 @@ SLOT="2"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86"
 
 LANGS="am ar ast az be bg br ca ca@valencia cs csb da de dz el en_CA en_GB eo 
es et eu fa fi fr ga gl gu he hi hr hu id is it ja ka kk km kn ko lt lv mk ml 
ms my nb nds ne nl nn oc pa pl pt pt_BR ro ru rw si sk sl sr sr@latin sv ta te 
th tr tt uk vi xh yi zh_CN zh_HK zh_TW"
-IUSE="alsa aalib altivec aqua debug doc openexr gnome postscript jpeg2k 
cpu_flags_x86_mmx mng pdf python smp cpu_flags_x86_sse svg udev vector-icons 
webkit wmf xpm"
+IUSE="alsa aalib altivec aqua debug doc openexr gnome postscript jpeg2k 
cpu_flags_x86_mmx mng pdf python smp cpu_flags_x86_sse udev vector-icons webkit 
wmf xpm"
 
 for lang in ${LANGS}; do
IUSE+=" linguas_${lang}"
@@ -59,7 +59,7 @@ RDEPEND=">=dev-libs/glib-2.30.2:2
>=dev-python/pycairo-1.0.2[${PYTHON_USEDEP}]
)
>=media-libs/tiff-3.5.7:0
-   svg? ( >=gnome-base/librsvg-2.36.0:2 )
+   >=gnome-base/librsvg-2.36.0:2
wmf? ( >=media-libs/libwmf-0.2.8 )
x11-libs/libXcursor
sys-libs/zlib
@@ -81,7 +81,7 @@ DOCS="AUTHORS ChangeLog* HACKING NEWS README*"
 
 S="${WORKDIR}"/${PF}
 
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} ) vector-icons? ( svg )"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 pkg_setup() {
G2CONF="--enable-default-binary \
@@ -100,7 +100,7 @@ pkg_setup() {
$(use_enable python) \
$(use_enable smp mp) \
$(use_enable cpu_flags_x86_sse sse) \
-   $(use_with svg librsvg) \
+   --with-librsvg \
$(use_with udev gudev) \
$(use_with wmf) \
--with-xmc \

diff --git a/media-gfx/gimp/gimp-.ebuild b/media-gfx/gimp/gimp-.ebuild
index 7b4220a..4a65274 100644
--- a/media-gfx/gimp/gimp-.ebuild
+++ b/media-gfx/gimp/gimp-.ebuild
@@ -18,7 +18,7 @@ SLOT="2"
 KEYWORDS=""
 
 LANGS="am ar ast az be bg br ca ca@valencia cs csb da de dz el en_CA en_GB eo 
es et eu fa fi fr ga gl gu he hi hr hu id is it ja ka kk km kn ko lt lv mk ml 
ms my nb nds ne nl nn oc pa pl pt pt_BR ro ru rw si sk sl sr sr@latin sv ta te 
th tr tt uk vi xh yi zh_CN zh_HK zh_TW"
-IUSE="alsa aalib altivec aqua debug doc openexr gnome postscript jpeg2k 
cpu_flags_x86_mmx mng pdf python smp cpu_flags_x86_sse svg udev webkit wmf xpm"
+IUSE="alsa aalib altivec aqua debug doc openexr gnome postscript jpeg2k 
cpu_flags_x86_mmx mng pdf python smp cpu_flags_x86_sse udev webkit wmf xpm"
 
 for lang in ${LANGS}; do
IUSE+=" linguas_${lang}"
@@ -60,7 +60,7 @@ RDEPEND=">=dev-libs/glib-2.40.0:2
>=dev-python/pygtk-2.10.4:2[${PYTHON_USEDEP}]
)
>=media-libs/tiff-3.5.7:0
-   svg? ( >=gnome-base/librsvg-2.36.0:2 )
+   >=gnome-base/librsvg-2.36.0:2
wmf? ( >=media-libs/libwmf-0.2.8 )
x11-libs/libXcursor
sys-libs/zlib
@@ -101,7 +101,6 @@ pkg_setup() {
$(use_enable python) \
$(use_enable smp mp) \
$(use_enable cpu_flags_x86_sse sse) \
-   $(use_with svg librsvg) \
$(use_with udev gudev) \
$(use_with wmf) \
--with-xmc \



[gentoo-commits] proj/kde:master commit in: media-gfx/digikam/

2016-10-31 Thread Johannes Huber
commit: 98d44f0a40a6aa23f80390242cda132b2e2c781b
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 18:46:38 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 18:52:14 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=98d44f0a

media-gfx/digikam: Restore application style support

Gentoo-bug: 597734

Package-Manager: portage-2.3.2

 media-gfx/digikam/digikam-.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/media-gfx/digikam/digikam-.ebuild 
b/media-gfx/digikam/digikam-.ebuild
index 521865e..cbd2f47 100644
--- a/media-gfx/digikam/digikam-.ebuild
+++ b/media-gfx/digikam/digikam-.ebuild
@@ -20,16 +20,12 @@ KEYWORDS=""
 IUSE="addressbook calendar gphoto2 jpeg2k +kipi +lensfun marble 
semantic-desktop mysql opengl openmp +panorama scanner video X"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
-
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}
-
SRC_BRANCH=stable
[[ ${PV} =~ beta[0-9]$ ]] && SRC_BRANCH=unstable
SRC_URI="mirror://kde/${SRC_BRANCH}/digikam/${MY_P}.tar.xz"
-
S="${WORKDIR}/${MY_P}/core"
-
 fi
 
 COMMON_DEPEND="
@@ -147,6 +143,7 @@ src_prepare() {
 src_configure() {
# LQR = only allows to choose between bundled/external
local mycmakeargs=(
+   -DENABLE_APPSTYLES=ON
-DENABLE_AKONADICONTACTSUPPORT=$(usex addressbook)
-DENABLE_MYSQLSUPPORT=$(usex mysql)
-DENABLE_MEDIAPLAYER=$(usex video)



[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/

2016-10-31 Thread Johannes Huber
commit: b6a1c64ef009dc58390dc28ce38ee75d600640ce
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 18:48:49 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 18:51:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6a1c64e

media-gfx/digikam: Restore application style support

Gentoo-bug: 597734

Package-Manager: portage-2.3.2

 media-gfx/digikam/digikam-5.2.0.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/media-gfx/digikam/digikam-5.2.0.ebuild 
b/media-gfx/digikam/digikam-5.2.0.ebuild
index 9c3d169..f3e85ba 100644
--- a/media-gfx/digikam/digikam-5.2.0.ebuild
+++ b/media-gfx/digikam/digikam-5.2.0.ebuild
@@ -20,16 +20,12 @@ KEYWORDS="~amd64 ~x86"
 IUSE="addressbook calendar gphoto2 jpeg2k +kipi +lensfun marble 
semantic-desktop mysql opengl openmp +panorama scanner video X"
 
 if [[ ${KDE_BUILD_TYPE} != live ]]; then
-
MY_PV=${PV/_/-}
MY_P=${PN}-${MY_PV}
-
SRC_BRANCH=stable
[[ ${PV} =~ beta[0-9]$ ]] && SRC_BRANCH=unstable
SRC_URI="mirror://kde/${SRC_BRANCH}/digikam/${MY_P}.tar.xz"
-
S="${WORKDIR}/${MY_P}/core"
-
 fi
 
 COMMON_DEPEND="
@@ -147,6 +143,7 @@ src_prepare() {
 src_configure() {
# LQR = only allows to choose between bundled/external
local mycmakeargs=(
+   -DENABLE_APPSTYLES=ON
-DENABLE_AKONADICONTACTSUPPORT=$(usex addressbook)
-DENABLE_MYSQLSUPPORT=$(usex mysql)
-DENABLE_MEDIAPLAYER=$(usex video)



[gentoo-commits] repo/gentoo:master commit in: media-gfx/digikam/, media-gfx/digikam/files/

2016-10-31 Thread Johannes Huber
commit: bab43b50276c5123416de84fdce994ad3a89a7cd
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Oct 31 19:03:48 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Oct 31 19:03:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bab43b50

media-gfx/digikam: Remove 5.1.0 (r1)

Package-Manager: portage-2.3.2

 media-gfx/digikam/Manifest |   1 -
 media-gfx/digikam/digikam-5.1.0-r1.ebuild  | 172 -
 .../files/digikam-5.1.0-albums-crashfix.patch  |  35 -
 .../digikam/files/digikam-5.1.0-i386-gcc61.patch   |  41 -
 .../files/digikam-5.1.0-memalloc-crash.patch   |  95 
 5 files changed, 344 deletions(-)

diff --git a/media-gfx/digikam/Manifest b/media-gfx/digikam/Manifest
index 32c254b..f67754b 100644
--- a/media-gfx/digikam/Manifest
+++ b/media-gfx/digikam/Manifest
@@ -1,4 +1,3 @@
 DIST digikam-4.14.0.tar.bz2 59805228 SHA256 
9d7bcb689d8c29be2e81976f0a043220f442a24f2071284044e7f1a799a7fdad SHA512 
3029e9b67d9d055bd9aee0d6d01e87950702e026f9f44b513155946ba087ec58b300f945a035a418afae45365ed007d8db6a1a90ed1d391e5e0e4cb679168ccf
 WHIRLPOOL 
35a3caedc9a4799f161b26b3b4df51da18a31be50a8a6da5b12a339a353755d73a47f103099087e3dc8e6926f65ae19638efea3585c86f72173a086056bf48ce
 DIST digikam-4.4.0.tar.bz2 68871203 SHA256 
5c68a2d200f5b502706128ea64839319aad333fb79548f49ecc92594e280d4e9 SHA512 
4992fad1e574fc44eac53f3ac8d4ab78ccbf8e04beb54a211a9afc20af1efb6f8bacedea07e403f490e7f70a74ed5ac02d4f9b939dfaf25f64a4a9bda0a7d94a
 WHIRLPOOL 
7a05ab9926227232a1cf52bf68da45b849b982e840b171f702610acce85a1ce8e59967a02e845a0ef19c316daee835861573aca40dc7b28422cf7d6d56119e2c
-DIST digikam-5.1.0.tar.xz 68259780 SHA256 
47915e2e41ded21071309c0b387495bd66f6cc488acbfa647d2d8d57595127f1 SHA512 
aa6b6b2a2f40dc6e1e90549d3b1cdcd2e886d16cfa4bb140093b67366b4aeaa3ebab96f0a28b1aeb969dca1fa64f8377bb8af44da4feeb4356e1f884357aaa86
 WHIRLPOOL 
c09afdcc67fa0643f84f4b026227eb6f6c651369b1452e670d4c4451d967a78c968ec56a39f724d726f251d5fb51411214aa723860a23e936ce282a7285d89bc
 DIST digikam-5.2.0.tar.xz 143583460 SHA256 
cf243fc1518b5bb6e289573c76d89b5fdcc50be89f6312b276af3320763c9260 SHA512 
483c2331f8f1a145ffd04bfdfe3f3e7e68f7ac4458b8b1698339dc89433d7820548fc461a5acf163997bab086b5faed6dd635af996f2503213a6207603603b4d
 WHIRLPOOL 
9df54368afa4c31791102211a334568c9301082899fa7970b88dcec2047ded299c0a4dc92ccc1d6db3c2efc71be7e78349d6289b68414b6cfbe76bcc0c6fb930

diff --git a/media-gfx/digikam/digikam-5.1.0-r1.ebuild 
b/media-gfx/digikam/digikam-5.1.0-r1.ebuild
deleted file mode 100644
index 5527034..
--- a/media-gfx/digikam/digikam-5.1.0-r1.ebuild
+++ /dev/null
@@ -1,172 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-   KDE_HANDBOOK="true"
-   KDE_TEST="true"
-fi
-CMAKE_MAKEFILE_GENERATOR="emake"
-CMAKE_MIN_VERSION="3.0"
-inherit kde5 toolchain-funcs
-
-DESCRIPTION="Digital photo management application"
-HOMEPAGE="https://www.digikam.org/";
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-IUSE="addressbook gphoto2 jpeg2k +kipi +lensfun marble semantic-desktop mysql 
opengl openmp +panorama scanner video X"
-
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-
-   MY_PV=${PV/_/-}
-   MY_P=${PN}-${MY_PV}
-
-   SRC_BRANCH=stable
-   [[ ${PV} =~ beta[0-9]$ ]] && SRC_BRANCH=unstable
-   SRC_URI="mirror://kde/${SRC_BRANCH}/digikam/${MY_P}.tar.xz"
-
-   S="${WORKDIR}/${MY_P}/core"
-
-fi
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_kdeapps_dep libkexiv2)
-   $(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtscript)
-   $(add_qt_dep qtsql 'mysql?')
-   $(add_qt_dep qtwebkit)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   dev-libs/boost[threads]
-   dev-libs/expat
-   media-gfx/exiv2:=
-   media-libs/lcms:2
-   media-libs/liblqr
-   >=media-libs/libpgf-6.12.27
-   media-libs/libpng:0=
-   media-libs/opencv:=[-qt4]
-   || ( =media-libs/opencv-3.1.0 )
-   media-libs/tiff:0
-   virtual/jpeg:0
-   addressbook? (
-   $(add_kdeapps_dep akonadi-contacts)
-   $(add_kdeapps_dep

[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/

2016-10-31 Thread Brian Evans
commit: 13650215333d2c22fc4a0e13add81df01790013a
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Oct 31 19:28:33 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Oct 31 19:28:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13650215

dev-db/mariadb: Version bump for 10.1.18

Package-Manager: portage-2.3.2

 dev-db/mariadb/Manifest   |   1 +
 dev-db/mariadb/mariadb-10.1.18.ebuild | 207 ++
 2 files changed, 208 insertions(+)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 022107c..79d260d 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -1,6 +1,7 @@
 DIST mariadb-10.0.27.tar.gz 63258508 SHA256 
bdf3a0c25aa2bc7a22a47e994eb7c8aa782624810eb3156038cc62bc9085c0cd SHA512 
c3aa415b7fc766dce34c99795cfcfa424a8d7eb7ee19497f1a61cad7c708914b94d66eabb104dff364b2db77d07471ce810d708ec541efb1bed7291ca1ce7364
 WHIRLPOOL 
9a90edc10d482140da818bee7598dd1b468076091478fb63e19f475d8a3af6e059f04d85851b701b6e305b9912aefa7bbfa0b0045c075db8d9f16c30944da584
 DIST mariadb-10.0.28.tar.gz 63297461 SHA256 
0a5033d56f1c5403df7fabd519ccbdc4da308b30a1ecd52e06a19be182a9bab2 SHA512 
af4a0e830902d8916b4727e8d3d70ff5c5b7871b46fedb5d890881b5d22f196a423da0d4b1e9e0e6a25a40cfacd7fb1781d4a85dc1f9b31c89bbde8b50ffabc3
 WHIRLPOOL 
65c889d663f5ccacd9bebf87d5631d4ccb86df2245008db802697efb54f4db99fa461019b6aa58d3e95a76903de184e17590b2c606a1661a9686c6b448ade6aa
 DIST mariadb-10.1.17.tar.gz 61158134 SHA256 
4ca45ac5e34418761868115ebc8c068d511fed08e283b2cac52559d63ba4aab5 SHA512 
900f019ec7544e315c98aea3647988f6ec257822b116c8a986851db678dd0bf71018dde1d0c90adeaa713af12348344ffc54c292a64869d9565f3f906599396d
 WHIRLPOOL 
e2e4d1294bc64c37d6916dc291d33769fd05c591697efba27fff79cb4debc76cf7a5eaf6e63a9ce3a12c22653ffc9d25082eb5a03f4f402b7395b91cb9ea415d
+DIST mariadb-10.1.18.tar.gz 61187451 SHA256 
d7336907e9ff44496d6453f92526b25bd253638a64a051ca879f953499873b73 SHA512 
6cb9d8ae0832323eef940ee7de59ec10d23ec691c0c6af577cac2ba280ecd6300a01ec5442cb7cf3a2a3b0cd9a973d4057aa92bcc71bc914e1e18b14ad7b6a8a
 WHIRLPOOL 
dfefa8e9ee3bb86a0359d732e74c2033cd115acaf3b1ff96cfad982e3847806a1151ace3da31c101339e72ae7935ff43a0bc944e280c475243c47c60629db67a
 DIST mariadb-10.2.1.tar.gz 55721519 SHA256 
90b7a17f3372c92c12dff084b37fcca8c4cf8106f4dcabd35fadc8efbaa348a2 SHA512 
3dde348e4bba2b6837e0a0671e9ec944aa494e4a01ebb4704e067cc8fe71865aef685f4ce368e9a81c5adeb1e8cc4f3a1b4067193a4b1ffc1fc567bf79a0b4ff
 WHIRLPOOL 
cbf33b7f6fb131a834367214ff4ab49bbda8aebb6e6fe449c7be2648934bcdab79c50a043907c07603f51892041701be59ff45984db43e302b2174f6fd40bc31
 DIST mariadb-5.5.52.tar.gz 45745859 SHA256 
e142f9459507b97c5848042863b313ce70750118446bb4e35e5c07fe66007293 SHA512 
76d1c1209aa8b56d6562907cb224d0be4f6bccd46e30d16dfb57f19fee1c60dcba21d8388c70674cac0a09e11361e1c5296d1e79d2ba9edc16bc4f9c7a7733eb
 WHIRLPOOL 
4030f24f9d79fded7eb51a9c84b590f81a58ae07797322a6b6f5c3f6c84ea86975eceeb03922c38acf0bcd18769c8a0759624822e570d7301fc950cffc283631
 DIST mariadb-5.5.53.tar.gz 45739935 SHA256 
4517296f5686af83c3f67bd9183ca1038c73a9c6c5e680389d167f72c644124e SHA512 
43d98de3d392a7598265752433a1443432dd5029ebef22a7b20816194c65a14c480df064cb36875af414b47d994d31f6431c49d6b5988021f314d9518c8af90d
 WHIRLPOOL 
f9fa83d709689f1e2aba116d4c16bc2f1226d4cf1fc74b5b7f6a73d0647aa796bd3e92ff8bcd3e62f41d480e8c56ee1f10e765dd5c320a6385e6a3ecfb0f03da

diff --git a/dev-db/mariadb/mariadb-10.1.18.ebuild 
b/dev-db/mariadb/mariadb-10.1.18.ebuild
new file mode 100644
index ..ba8719a
--- /dev/null
+++ b/dev-db/mariadb/mariadb-10.1.18.ebuild
@@ -0,0 +1,207 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+MY_EXTRAS_VER="20160721-1526Z"
+# The wsrep API version must match between upstream WSREP and 
sys-cluster/galera major number
+WSREP_REVISION="25"
+SUBSLOT="18"
+MYSQL_PV_MAJOR="5.6"
+
+JAVA_PKG_OPT_USE="jdbc"
+
+inherit toolchain-funcs java-pkg-opt-2 mysql-multilib-r1
+
+HOMEPAGE="http://mariadb.org/";
+DESCRIPTION="An enhanced, drop-in replacement for MySQL"
+
+IUSE="bindist cracklib galera kerberos innodb-lz4 innodb-lzo innodb-snappy 
jdbc mroonga odbc oqgraph pam sphinx sst-rsync sst-xtrabackup tokudb systemd 
xml"
+RESTRICT="!bindist? ( bindist )"
+
+REQUIRED_USE="server? ( tokudb? ( jemalloc ) ) static? ( !pam ) "
+
+# REMEMBER: also update eclass/mysql*.eclass before committing!
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+
+MY_PATCH_DIR="${WORKDIR}/mysql-extras-${MY_EXTRAS_VER}"
+
+PATCHES=(
+   "${MY_PATCH_DIR}"/20006_all_cmake_elib-mariadb-10.1.16.patch
+   "${MY_PATCH_DIR}"/20009_all_mariadb_myodbc_symbol_fix-5.5.38.patch
+   "${MY_PATCH_DIR}"/20015_all_mariadb-pkgconfig-location.patch
+   
"${MY_PATCH_DIR}"/20018_all_mariadb-10

[gentoo-commits] data/api:master commit in: files/overlays/

2016-10-31 Thread Michał Górny
commit: afc4a6ce083ddeeccd2e68bc0353d215f6fe1a17
Author: Pavel Šimerda  pavlix  net>
AuthorDate: Sat Sep 10 11:42:10 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 19:41:18 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=afc4a6ce

repositories: Rename fedora overlay to rpm

The overlay has recently been extended to contain `centpkg`, a tool to
access the main CentOS package repository. More tools for more RPM based
distributions are coming and therefore it makes sense to rename the
`fedora` overlay to `rpm`.

Closes: https://github.com/gentoo/api-gentoo-org/pull/23

 files/overlays/repositories.xml | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index c74e280..f27b07b 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1531,16 +1531,6 @@ FIN
 
https://github.com/farmboy0/portage-overlay/commits/master.atom
   
   
-fedora
-Overlay for RPM packagers targeting Fedora, EPEL, 
CentOS and similar distros
-https://github.com/pavlix/gentoo-fedora
-
-  pav...@pavlix.net
-  Pavel Šimerda
-
-https://github.com/pavlix/gentoo-fedora.git
-  
-  
 fidonet
 Overlay of Benny Pedersen
 
@@ -4053,6 +4043,16 @@ FIN
 https://github.com/gled-rs/rs-overlay.git
 https://github.com/gled-rs/rs-overlay/commits/master.atom
   
+  
+rpm
+Overlay for RPM packagers targeting Fedora, EPEL, 
CentOS and similar distros
+https://github.com/pavlix/gentoo-rpm
+
+  pav...@pavlix.net
+  Pavel Šimerda
+
+https://github.com/pavlix/gentoo-rpm.git
+  
   
 ruby
 Experimental ebuilds from the Ruby edge.



[gentoo-commits] data/api:master commit in: files/overlays/

2016-10-31 Thread Michał Górny
commit: 7690cfe3dbcab7f961b62b950e9abb86be40a075
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 19:40:23 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 19:40:42 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=7690cfe3

repositories: Fix ordering for AlexandreFournier

 files/overlays/repositories.xml | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 8eaa6bd..c74e280 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -122,19 +122,6 @@ FIN
 https://cgit.gentoo.org/user/activehome.git/atom/
 
   
-  
-AlexandreFournier
-Alexandre Fournier's personal overlay
-https://github.com/AlexandreFournier/gentoo-overlay
-
-  gen...@alexandrefournier.com
-  Alexandre Fournier
-
-https://github.com/AlexandreFournier/gentoo-overlay.git
-git://github.com/AlexandreFournier/gentoo-overlay.git
-g...@github.com:AlexandreFournier/gentoo-overlay.git
-
https://github.com/AlexandreFournier/gentoo-overlay/commits/master.atom
-  
   
 ago
 Developer overlay
@@ -185,6 +172,19 @@ FIN
 https://github.com/alatarum/alatar-lay/commits/master.atom
   
   
+AlexandreFournier
+Alexandre Fournier's personal overlay
+https://github.com/AlexandreFournier/gentoo-overlay
+
+  gen...@alexandrefournier.com
+  Alexandre Fournier
+
+https://github.com/AlexandreFournier/gentoo-overlay.git
+git://github.com/AlexandreFournier/gentoo-overlay.git
+g...@github.com:AlexandreFournier/gentoo-overlay.git
+
https://github.com/AlexandreFournier/gentoo-overlay/commits/master.atom
+  
+  
 alexcepoi
 Personal User Overlay
 https://cgit.gentoo.org/user/alexcepoi.git/



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libp11/

2016-10-31 Thread Alon Bar-Lev
commit: 118b7db9514830c4e8bb0aef3e78f53256a16908
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Oct 31 19:49:03 2016 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Oct 31 19:50:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=118b7db9

dev-libs/libp11: fix bindist USE

Bug: 598631

Package-Manager: portage-2.3.0

 dev-libs/libp11/libp11-0.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libp11/libp11-0.4.2.ebuild 
b/dev-libs/libp11/libp11-0.4.2.ebuild
index 2451b3e..9b9aba1 100644
--- a/dev-libs/libp11/libp11-0.4.2.ebuild
+++ b/dev-libs/libp11/libp11-0.4.2.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
 IUSE="libressl bindist doc static-libs"
 
 RDEPEND="
-   !libressl? ( dev-libs/openssl:0=[bindist] )
+   !libressl? ( dev-libs/openssl:0=[bindist=] )
libressl? ( dev-libs/libressl:0= )"
 DEPEND="${RDEPEND}
virtual/pkgconfig



[gentoo-commits] data/api:master commit in: files/overlays/

2016-10-31 Thread Michał Górny
commit: d740f72f191bfde089626a8b7a17e1374eba5d55
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 19:50:57 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 19:50:57 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=d740f72f

repositories: Add superposition, #598098

 files/overlays/repositories.xml | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index f27b07b..579f800 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -4670,6 +4670,20 @@ FIN
 https://cgit.gentoo.org/proj/sunrise-reviewed.git/atom/
 
   
+  
+superposition
+Phil's overlay
+https://cgit.gentoo.org/repo/user/superposition.git/
+
+  phil_mi...@yahoo.com
+  Philip Miess
+
+git://anongit.gentoo.org/repo/user/superposition.git
+https://anongit.gentoo.org/git/repo/user/superposition.git
+git+ssh://g...@git.gentoo.org/repo/user/superposition.git
+https://cgit.gentoo.org/repo/user/superposition.git/atom/
+
+  
   
 swegener
 

  1   2   3   4   5   6   7   8   9   10   >