[gentoo-commits] repo/gentoo:master commit in: games-mud/gnome-mud/, games-mud/gnome-mud/files/

2017-07-19 Thread Mart Raudsepp
commit: b745232aa6d172768731cd9e0839730c5c17760c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Jul 19 16:24:03 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Jul 19 16:24:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b745232a

games-mud/gnome-mud: Use gstreamer 1.x and fix telnet option renegotiation

Gentoo-bug: 616000
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 games-mud/gnome-mud/files/0.11.2-gst1.patch| 42 +++
 .../gnome-mud/files/0.11.2-telopts-reenable.patch  | 35 +
 games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild | 60 ++
 3 files changed, 137 insertions(+)

diff --git a/games-mud/gnome-mud/files/0.11.2-gst1.patch 
b/games-mud/gnome-mud/files/0.11.2-gst1.patch
new file mode 100644
index 000..64c6682c672
--- /dev/null
+++ b/games-mud/gnome-mud/files/0.11.2-gst1.patch
@@ -0,0 +1,42 @@
+From 15c37855ab3559efaeffcef651c98ed971ae84bb Mon Sep 17 00:00:00 2001
+From: Steven Jackson
+Date: Wed, 19 Apr 2017 20:02:57 +0100
+Subject: [PATCH] gstreamer: Upgrade to 1.0 from 0.10
+---
+ configure.ac  | 6 +++---
+ gnome-mud.spec.in | 4 ++--
+ 2 files changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 50c4c81..125b054 100644
+--- a/configure.ac
 b/configure.ac
+@@ -76,7 +76,7 @@ LIBGNET_REQUIRED=0.22
+ VTE_REQUIRED=0.11.00
+ PCRE_REQUIRED=6.0.0
+ GCONF_REQUIRED=0.20
+-GSTREAMER_REQUIRED=0.10
++GSTREAMER_REQUIRED=1.0
+ 
+ PKG_CHECK_MODULES(GMUD, gtk+-2.0 >= $GTK_REQUIRED vte >= $VTE_REQUIRED 
libglade-2.0 >= $LIBGLADE_REQUIRED libpcre >= $PCRE_REQUIRED gmodule-2.0 >= 
$GMODULE_REQUIRED gnet-2.0 >= $LIBGNET_REQUIRED gconf-2.0 >= $GCONF_REQUIRED)
+ AC_SUBST(GMUD_CFLAGS)
+@@ -114,14 +114,14 @@ AC_ARG_ENABLE(gstreamer,
+  [Enable GStreamer used for MSP (Mud Sound Protocol) 
Default=auto]),,
+   enable_gstreamer=auto)
+ if test "x$enable_gstreamer" != "xno"; then
+-  PKG_CHECK_EXISTS(gstreamer-0.10, have_gst=yes, have_gst=no) 
++  PKG_CHECK_EXISTS(gstreamer-1.0, have_gst=yes, have_gst=no)
+   if test "x$have_gst" = "xno" -a "x$enable_gstreamer" = "xyes"; then
+ AC_MSG_ERROR([Gstreamer support explicitly requested but libgstreamer 
was not found])
+   fi
+   if test "x$have_gst" = "xyes"; then
+ AC_DEFINE(ENABLE_GST, 1, [Define if GStreamer should be enabled])
+ enable_gstreamer=yes
+-PKG_CHECK_MODULES(MSP, gstreamer-0.10 >= $GSTREAMER_REQUIRED)
++PKG_CHECK_MODULES(MSP, gstreamer-1.0 >= $GSTREAMER_REQUIRED)
+   fi
+ fi
+ AM_CONDITIONAL(USE_GSTREAMER, test "x$enable_gstreamer" = xyes)
+-- 
+2.10.2
+

diff --git a/games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch 
b/games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch
new file mode 100644
index 000..ebafe30c4cf
--- /dev/null
+++ b/games-mud/gnome-mud/files/0.11.2-telopts-reenable.patch
@@ -0,0 +1,35 @@
+From 62b043beedc14741a000e848a004ba44982b28b8 Mon Sep 17 00:00:00 2001
+From: Steven Jackson
+Date: Wed, 19 Apr 2017 10:38:18 +
+Subject: [PATCH] mud-telnet: Fix re-enabling disabled TELOPTS
+
+When the server disabled a TELOPT it wasn't possible for it to
+re-enable it, as it should.
+
+Enabling and disabling MSP and CHARSET in the preferences window
+doesn't control the MudTelnetHandler enabled field, so this change
+doesn't break that. Those preferences are used at a higher level,
+in mud-window-view.c.
+
+Thanks to shentino for reporting and assisting with the fix.
+
+Bug report: https://bugzilla.gnome.org/show_bug.cgi?id=781452
+---
+ src/mud-telnet.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/mud-telnet.c b/src/mud-telnet.c
+index 052ba04..0fe274a 100644
+--- a/src/mud-telnet.c
 b/src/mud-telnet.c
+@@ -939,7 +939,7 @@ mud_telnet_handle_positive_nego(MudTelnet *telnet,
+   // his state to YES and send DO; otherwise send DONT
+   // FIXME-US/HIM
+   // FIXME: What to do in the opposite "him" gint value case?
+-  if (mud_telnet_isenabled(telnet, opt_no, him))
++  if (mud_telnet_get_index_by_option(telnet, opt_no) != -1)
+   {
+   mud_telnet_set_telopt_state(opt, TELOPT_STATE_YES, bitshift);
+   mud_telnet_send_iac(telnet, affirmative, opt_no);
+--
+1.9.1

diff --git a/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild 
b/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild
new file mode 100644
index 000..e5a061831eb
--- /dev/null
+++ b/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME_TARBALL_SUFFIX="bz2"
+GNOME2_EAUTORECONF="yes"
+
+inherit gnome2
+
+DESCRIPTION="GNOME MUD client"
+HOMEPAGE="https://wiki.gnome.org/Apps/GnomeMud;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+IUSE="gstreamer"
+
+RDEPEND="virtual/libintl
+   dev-libs/libpcre
+  

[gentoo-commits] repo/gentoo:master commit in: app-misc/glimpse/

2017-07-19 Thread Tobias Klausmann
commit: 3bd945fa5cc0445a7f39acdcadc3da1a90a69acf
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:42 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bd945fa

app-misc/glimpse-4.18.6-r1: amd64 stable

Gentoo-Bug: 617680

 app-misc/glimpse/glimpse-4.18.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/glimpse/glimpse-4.18.6-r1.ebuild 
b/app-misc/glimpse/glimpse-4.18.6-r1.ebuild
index d4069ba809c..c57a14ef5b3 100644
--- a/app-misc/glimpse/glimpse-4.18.6-r1.ebuild
+++ b/app-misc/glimpse/glimpse-4.18.6-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://webglimpse.net/trial/${P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos"
 IUSE="static"
 
 RDEPEND="!dev-libs/tre



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

2017-07-19 Thread Tobias Klausmann
commit: 6688c0476b73ef38a0e324c4210fc2010fd23d06
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:43 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6688c047

dev-util/geany-1.30.1-r0: amd64 stable

Gentoo-Bug: 622002

 dev-util/geany/geany-1.30.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/geany/geany-1.30.1.ebuild 
b/dev-util/geany/geany-1.30.1.ebuild
index 2dbe5634afa..b8723796a19 100644
--- a/dev-util/geany/geany-1.30.1.ebuild
+++ b/dev-util/geany/geany-1.30.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://download.geany.org/${P}.tar.bz2;
 
 LICENSE="GPL-2+ HPND"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
 IUSE="gtk3 +vte"
 
 RDEPEND=">=dev-libs/glib-2.32:2



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/colorsvn/

2017-07-19 Thread Tobias Klausmann
commit: 7965b733db37ed7d07ebb22f79696051603963d2
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:41 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7965b733

dev-vcs/colorsvn-0.3.3-r0: amd64 stable

Gentoo-Bug: 617620

 dev-vcs/colorsvn/colorsvn-0.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild 
b/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild
index 2ca2efecbd4..0f62e9c0dba 100644
--- a/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild
+++ b/dev-vcs/colorsvn/colorsvn-0.3.3.ebuild
@@ -9,7 +9,7 @@ SRC_URI="${HOMEPAGE}/files/documents/4414/49311/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~x86 ~x64-macos ~x86-macos"
 IUSE=""
 
 RDEPEND="dev-lang/perl



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

2017-07-19 Thread Tobias Klausmann
commit: 3f2dab28bb290b48aad0fd458851ba86c19dc9f9
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:45 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f2dab28

dev-python/pyev-0.9.0-r0: amd64 stable

Gentoo-Bug: 625044

 dev-python/pyev/pyev-0.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyev/pyev-0.9.0.ebuild 
b/dev-python/pyev/pyev-0.9.0.ebuild
index 9c02b72ccb2..284c4b777fa 100644
--- a/dev-python/pyev/pyev-0.9.0.ebuild
+++ b/dev-python/pyev/pyev-0.9.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/p/pyev/${P}.tar.gz"
 
 LICENSE="|| ( BSD GPL-2 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE=""
 
 RDEPEND="dev-libs/libev"



[gentoo-commits] repo/gentoo:master commit in: app-arch/zoo/

2017-07-19 Thread Tobias Klausmann
commit: 573e3f9bd7e4a81197d5ed478bba57f78a9e9985
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:42 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573e3f9b

app-arch/zoo-2.10-r5: amd64 stable

Gentoo-Bug: 617678

 app-arch/zoo/zoo-2.10-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/zoo/zoo-2.10-r5.ebuild b/app-arch/zoo/zoo-2.10-r5.ebuild
index 68ba0e6602c..817d9f5aae8 100644
--- a/app-arch/zoo/zoo-2.10-r5.ebuild
+++ b/app-arch/zoo/zoo-2.10-r5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://http.debian.net/debian/pool/main/z/${PN}/${PN}_${PV}.orig.tar.gz
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~m68k-mint ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~m68k-mint ~sparc-solaris ~x86-solaris"
 IUSE=""
 
 S="${WORKDIR}/${P}.orig"



[gentoo-commits] repo/gentoo:master commit in: app-misc/pwsafe/

2017-07-19 Thread Tobias Klausmann
commit: 2e730b3318f79eba38d27f3497432c43c25dc0f6
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:48 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e730b33

app-misc/pwsafe-0.2.0-r4: amd64 stable

Gentoo-Bug: 625588

 app-misc/pwsafe/pwsafe-0.2.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/pwsafe/pwsafe-0.2.0-r4.ebuild 
b/app-misc/pwsafe/pwsafe-0.2.0-r4.ebuild
index d789863bdfd..0ced0a097b8 100644
--- a/app-misc/pwsafe/pwsafe-0.2.0-r4.ebuild
+++ b/app-misc/pwsafe/pwsafe-0.2.0-r4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://nsd.dyndns.org/pwsafe/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 IUSE="X libressl readline"
 



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

2017-07-19 Thread Tobias Klausmann
commit: d8ef76dc783f7821b4a5b12ef30f493f79061e92
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:47 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8ef76dc

dev-db/couchdb-1.6.1-r3: amd64 stable

Gentoo-Bug: 625498

 dev-db/couchdb/couchdb-1.6.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/couchdb/couchdb-1.6.1-r3.ebuild 
b/dev-db/couchdb/couchdb-1.6.1-r3.ebuild
index da41e04265f..f3c1f34da35 100644
--- a/dev-db/couchdb/couchdb-1.6.1-r3.ebuild
+++ b/dev-db/couchdb/couchdb-1.6.1-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="mirror://apache/couchdb/source/${PV}/apache-${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="libressl selinux test"
 
 RDEPEND=">=dev-libs/icu-4.3.1:=



[gentoo-commits] repo/gentoo:master commit in: media-fonts/terminus-font/

2017-07-19 Thread Tobias Klausmann
commit: a22e49c8b2f19d0343f4881fe4f4cf6444f174b1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:46 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a22e49c8

media-fonts/terminus-font-4.40-r0: amd64 stable

Gentoo-Bug: 625398

 media-fonts/terminus-font/terminus-font-4.40.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/terminus-font/terminus-font-4.40.ebuild 
b/media-fonts/terminus-font/terminus-font-4.40.ebuild
index 7bbb2352a85..4ebcc342f10 100644
--- a/media-fonts/terminus-font/terminus-font-4.40.ebuild
+++ b/media-fonts/terminus-font/terminus-font-4.40.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"
 
 LICENSE="OFL-1.1 GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="a-like-o +center-tilde distinct-l +pcf +pcf-unicode-only +psf quote
raw-font-data ru-dv +ru-g ru-i ru-k"
 



[gentoo-commits] repo/gentoo:master commit in: media-tv/v4l-dvb-saa716x/

2017-07-19 Thread Tobias Klausmann
commit: 7d66810d2b86c1fa4e4a6d940be0227ac519d242
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:44 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d66810d

media-tv/v4l-dvb-saa716x-0.0.1_p20170225-r0: amd64 stable

Gentoo-Bug: 624692

 media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20170225.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20170225.ebuild 
b/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20170225.ebuild
index bf52baeeac2..e5bf0fcf5e4 100644
--- a/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20170225.ebuild
+++ b/media-tv/v4l-dvb-saa716x/v4l-dvb-saa716x-0.0.1_p20170225.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://bitbucket.org/powARman/v4l-dvb-saa716x/get/${HG_REVISION}.tar.g
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+firmware"
 
 DEPEND=""



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

2017-07-19 Thread Tobias Klausmann
commit: e93fa3a1e51bd49cc747dd0c235d8e10156b3ab1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:41 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e93fa3a1

media-video/mpv-0.25.0-r2: amd64 stable

Gentoo-Bug: 617608

 media-video/mpv/mpv-0.25.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/mpv/mpv-0.25.0-r2.ebuild 
b/media-video/mpv/mpv-0.25.0-r2.ebuild
index 6030435b78e..f7dc596b438 100644
--- a/media-video/mpv/mpv-0.25.0-r2.ebuild
+++ b/media-video/mpv/mpv-0.25.0-r2.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} != ** ]]; then
https://github.com/mpv-player/mpv/archive/v${PV}.tar.gz -> 
${P}.tar.gz

https://dev.gentoo.org/~kensington/distfiles/${P}-patches-${PR}.tar.xz
"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
+   KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
DOCS=( RELEASE_NOTES )
 else
EGIT_REPO_URI=( {https,git}://github.com/mpv-player/mpv.git )



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

2017-07-19 Thread Tobias Klausmann
commit: 60ae0929a105737e3fcf72cfbd263023aafec361
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:48 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60ae0929

dev-python/pygame_sdl2-6.99.12.4-r0: amd64 stable

Gentoo-Bug: 625624

 dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild 
b/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild
index 407191d2049..6af44a88e28 100644
--- a/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild
+++ b/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://www.renpy.org/dl/${PV}/${PYSDL}-for-renpy-${PV}.tar.gz;
 
 LICENSE="LGPL-2.1 ZLIB"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/

2017-07-19 Thread Tobias Klausmann
commit: d5b0a04c56f70a71a138c176551a481cf45f4390
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:44 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5b0a04c

net-dns/c-ares-1.13.0-r0: amd64 stable

Gentoo-Bug: 622278

 net-dns/c-ares/c-ares-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/c-ares/c-ares-1.13.0.ebuild 
b/net-dns/c-ares/c-ares-1.13.0.ebuild
index 0953dcfdfbc..a1713fe493b 100644
--- a/net-dns/c-ares/c-ares-1.13.0.ebuild
+++ b/net-dns/c-ares/c-ares-1.13.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://c-ares.haxx.se/;
 SRC_URI="http://${PN}.haxx.se/download/${P}.tar.gz;
 
 LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
 IUSE="static-libs"
 
 # Subslot = SONAME of libcares.so.2



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

2017-07-19 Thread Tobias Klausmann
commit: 38de01153307295f3103b0ce9513dc2050c7ddbc
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:47 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38de0115

dev-python/rebulk-0.9.0-r0: amd64 stable

Gentoo-Bug: 625414

 dev-python/rebulk/rebulk-0.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rebulk/rebulk-0.9.0.ebuild 
b/dev-python/rebulk/rebulk-0.9.0.ebuild
index d2d95bd81f6..712c0f8e7a6 100644
--- a/dev-python/rebulk/rebulk-0.9.0.ebuild
+++ b/dev-python/rebulk/rebulk-0.9.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"



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

2017-07-19 Thread Tobias Klausmann
commit: f811a76c08d27ea06a154935e0d56dd891179a3f
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:46 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f811a76c

dev-python/guessit-2.1.4-r0: amd64 stable

Gentoo-Bug: 625414

 dev-python/guessit/guessit-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/guessit/guessit-2.1.4.ebuild 
b/dev-python/guessit/guessit-2.1.4.ebuild
index 1451bac158b..c5384cf41f4 100644
--- a/dev-python/guessit/guessit-2.1.4.ebuild
+++ b/dev-python/guessit/guessit-2.1.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="



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

2017-07-19 Thread Tobias Klausmann
commit: 4588b9441173174bca612c8de0507a6ec48e1461
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:49 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4588b944

games-mud/gnome-mud-0.11.2-r2: amd64 stable

Gentoo-Bug: 625646

 games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild 
b/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild
index e5a061831eb..762658ae94b 100644
--- a/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild
+++ b/games-mud/gnome-mud/gnome-mud-0.11.2-r2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/GnomeMud;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~x86 ~x86-fbsd"
 IUSE="gstreamer"
 
 RDEPEND="virtual/libintl



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-geoip/

2017-07-19 Thread Tobias Klausmann
commit: e90d83690f5e159b2676c0e80aa19216f2661cb1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:43 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e90d8369

dev-php/pecl-geoip-1.1.1-r3: amd64 stable

Gentoo-Bug: 621674

 dev-php/pecl-geoip/pecl-geoip-1.1.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r3.ebuild 
b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r3.ebuild
index 8876998ad45..3d3943be9aa 100644
--- a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r3.ebuild
+++ b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r3.ebuild
@@ -9,7 +9,7 @@ USE_PHP="php5-6 php7-0 php7-1"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DESCRIPTION="PHP extension to map IP address to geographic places"
 LICENSE="PHP-3"



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_wsgi/

2017-07-19 Thread Tobias Klausmann
commit: ef69aa9e6e7cee675fe4334b49768f022ea58390
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:45 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef69aa9e

www-apache/mod_wsgi-4.5.13-r0: amd64 stable

Gentoo-Bug: 625096

 www-apache/mod_wsgi/mod_wsgi-4.5.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apache/mod_wsgi/mod_wsgi-4.5.13.ebuild 
b/www-apache/mod_wsgi/mod_wsgi-4.5.13.ebuild
index 0cea82a0669..528cc0df2a0 100644
--- a/www-apache/mod_wsgi/mod_wsgi-4.5.13.ebuild
+++ b/www-apache/mod_wsgi/mod_wsgi-4.5.13.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.t
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



[gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_abl/

2017-07-19 Thread Tobias Klausmann
commit: 6c3e4e41d0db97e5c239dd032f20ea897137cd85
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:47 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3e4e41

sys-auth/pam_abl-0.6.0-r0: amd64 stable

Gentoo-Bug: 625470

 sys-auth/pam_abl/pam_abl-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pam_abl/pam_abl-0.6.0.ebuild 
b/sys-auth/pam_abl/pam_abl-0.6.0.ebuild
index 33ec2002600..38816e5bc6e 100644
--- a/sys-auth/pam_abl/pam_abl-0.6.0.ebuild
+++ b/sys-auth/pam_abl/pam_abl-0.6.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 DEPEND=">=sys-libs/pam-0.78-r2



[gentoo-commits] repo/gentoo:master commit in: games-engines/renpy/

2017-07-19 Thread Tobias Klausmann
commit: 8d7f3ddd94fcd6aa8558000d9f2867de6a42fa22
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:49 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d7f3ddd

games-engines/renpy-6.99.12.4-r3: amd64 stable

Gentoo-Bug: 625624

 games-engines/renpy/renpy-6.99.12.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-engines/renpy/renpy-6.99.12.4-r3.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r3.ebuild
index ccf21fbcc9c..562d711300b 100644
--- a/games-engines/renpy/renpy-6.99.12.4-r3.ebuild
+++ b/games-engines/renpy/renpy-6.99.12.4-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2;
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
 MYSLOT=$(delete_all_version_separators ${SLOT})
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="development doc examples"
 REQUIRED_USE="examples? ( development )"
 



[gentoo-commits] repo/gentoo:master commit in: net-irc/znc/

2017-07-19 Thread Tobias Klausmann
commit: 9792f7661b16dfb74529260cc9b0b61a5d720fe3
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:46 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9792f766

net-irc/znc-1.6.5-r0: amd64 stable

Gentoo-Bug: 625332

 net-irc/znc/znc-1.6.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/znc/znc-1.6.5.ebuild b/net-irc/znc/znc-1.6.5.ebuild
index ae97ab976e8..627cda0361c 100644
--- a/net-irc/znc/znc-1.6.5.ebuild
+++ b/net-irc/znc/znc-1.6.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
http://znc.in/releases/archive/${PN}-${MY_PV}.tar.gz
test? ( ${GTEST_URL} )
 "
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 
 HOMEPAGE="http://znc.in;
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/guilt/

2017-07-19 Thread Tobias Klausmann
commit: 7dc2d5a54c0d9db932aef531e873be92285291f2
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:41 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dc2d5a5

dev-vcs/guilt-0.36-r0: amd64 stable

Gentoo-Bug: 617594

 dev-vcs/guilt/guilt-0.36.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/guilt/guilt-0.36.ebuild b/dev-vcs/guilt/guilt-0.36.ebuild
index d24a5e22fed..10bdef0bae6 100644
--- a/dev-vcs/guilt/guilt-0.36.ebuild
+++ b/dev-vcs/guilt/guilt-0.36.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="${HOMEPAGE}/snapshot/22d785dd24329170f66e7696da38b3e90e033d61.tar.gz ->
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ia64 ~ppc ~sparc ~x86"
 IUSE=""
 
 # Since we need to build the man pages anyway, I don't think it makes



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

2017-07-19 Thread Tobias Klausmann
commit: fe031d19d39cf7255253707fbb6d38d4ae4a2311
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:47 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe031d19

dev-lang/elixir-1.4.5-r0: amd64 stable

Gentoo-Bug: 625500

 dev-lang/elixir/elixir-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/elixir/elixir-1.4.5.ebuild 
b/dev-lang/elixir/elixir-1.4.5.ebuild
index e3d2d5c993e..421593f9fa8 100644
--- a/dev-lang/elixir/elixir-1.4.5.ebuild
+++ b/dev-lang/elixir/elixir-1.4.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0 ErlPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
 IUSE=""
 
 DEPEND=">=dev-lang/erlang-18[ssl]"



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-renpy/

2017-07-19 Thread Tobias Klausmann
commit: b5bac36aca492374022a70fb548b8633c8cc0752
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:48 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5bac36a

app-eselect/eselect-renpy-0.7-r0: amd64 stable

Gentoo-Bug: 625624

 app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild 
b/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild
index 4ee9286df3e..fc8af2ac731 100644
--- a/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild
+++ b/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://www.gentoo.org/proj/en/eselect/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
app-eselect/eselect-lib-bin-symlink



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/allin1/

2017-07-19 Thread Tobias Klausmann
commit: fcc4af7bc0add56ae640805c700c937f105d518c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:40 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcc4af7b

x11-plugins/allin1-0.5.0-r2: amd64 stable

Gentoo-Bug: 616782

 x11-plugins/allin1/allin1-0.5.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/allin1/allin1-0.5.0-r2.ebuild 
b/x11-plugins/allin1/allin1-0.5.0-r2.ebuild
index 0721c811d6b..118da3a03ed 100644
--- a/x11-plugins/allin1/allin1-0.5.0-r2.ebuild
+++ b/x11-plugins/allin1/allin1-0.5.0-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/allinone/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 
 RDEPEND="x11-libs/libX11



[gentoo-commits] repo/gentoo:master commit in: dev-util/geany-plugins/

2017-07-19 Thread Tobias Klausmann
commit: d8848fd60b256716b0e6921dfa4a70869ae4fcfb
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jul 19 17:30:44 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jul 19 18:05:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8848fd6

dev-util/geany-plugins-1.30-r0: amd64 stable

Gentoo-Bug: 622002

 dev-util/geany-plugins/geany-plugins-1.30.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/geany-plugins/geany-plugins-1.30.ebuild 
b/dev-util/geany-plugins/geany-plugins-1.30.ebuild
index 7e5318c2e5b..2cd3a09395f 100644
--- a/dev-util/geany-plugins/geany-plugins-1.30.ebuild
+++ b/dev-util/geany-plugins/geany-plugins-1.30.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://plugins.geany.org/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 IUSE="gtk3 +autoclose +automark +commander ctags debugger +defineformat 
enchant git gpg gtkspell lua multiterm nls +overview python scope soup"
 REQUIRED_USE="



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

2017-07-19 Thread Brian Evans
commit: 762d28d68ea892c1c58d1c0815dd3c38a7d99426
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 16:17:46 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 16:17:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=762d28d6

dev-db/mysql: Version bump for 5.6.37

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-db/mysql/Manifest|   2 +
 dev-db/mysql/mysql-5.6.37.ebuild | 183 +++
 2 files changed, 185 insertions(+)

diff --git a/dev-db/mysql/Manifest b/dev-db/mysql/Manifest
index e931c6f0558..3fd9b95eee9 100644
--- a/dev-db/mysql/Manifest
+++ b/dev-db/mysql/Manifest
@@ -1,6 +1,8 @@
 DIST mysql-5.5.56.tar.gz 21025832 SHA256 
3fd30a24267cef84ee8aeb327a5b08a669d3ab8c4d76d1b1b3b66d26cf777a0a SHA512 
58aec4cfc82abac5bb9d5e5594d2545c979910af5b7bbcfe339f9590d157244c869a83659f89a2cca09254353ecb52d2dcb3e2cd55e117219e2a72c54187a975
 WHIRLPOOL 
5aa01ff21da05a86f5c3d5264afb9c5722001154d36c1042ab88bd38c02b9daae8cba47f933909579eb22872aeafb146e6b2d382f5a4c6319f163e261116de4d
 DIST mysql-5.6.35.tar.gz 32167628 SHA256 
dddcba169b98844d7c65346cbd791c853edf942d78440381685087b84aa35020 SHA512 
106c4b05c52cd2bb5378376e4a453aeb55eda0adce527862c435068597c3e60f44e3c64476011befefd688e6fdf30f2245e28320d57d9fccbb2415d87498e7f2
 WHIRLPOOL 
e8972bba163453e54dc3859a7cfd07b4dc38125e0b5f7b41940afa6f1466820079f18e88769ea198b12645383d105340ab5ea998b32a95d083d08689658510bc
 DIST mysql-5.6.36.tar.gz 32192348 SHA256 
0af81a5538fc7fe2b747295dfa96589ace8831d2a7d4a26660fca456babeb147 SHA512 
b3e3bcb1d1e913994f274f4c6dc72c77f1f52b132389e784c675d1720b5913788ce035f045b99ef3754d1b257db55e8300b5c7622ec79c33afafec5968801c18
 WHIRLPOOL 
628e33a58532dcdca20e489c3120824604b8d51e10d609f1f9c2adb11552124a8f87f206df99766162d288d5877dac22d2cacffdba1458c73fb52b529245a1e6
+DIST mysql-5.6.37.tar.gz 32200158 SHA256 
59c4ed39047279ddccd1bed9e247830d2bfad27d56dc2eb48d0b5695c94a1fbd SHA512 
6935cf11490fb32832468e2a69a9d81a567b1b4ab0afaa0614896e3ddbb95a74b26406284f307637e4b2b9620ef4d96a167128ce7fcb1d338b0ebbc2cef2e597
 WHIRLPOOL 
d5e7f6445bacfa7cb118a805f0efff5f4c22d96e77c174efa7ae2d286f3889ab7975ece8a0abe6232d278994d5991430d0d0ff89769883f278d2fa233341db25
 DIST mysql-extras-20160212-0233Z.tar.bz2 297332 SHA256 
01a52587ef1335b2795197d2e547c0b3a1e4b705db09f96cdfb45d2152b6536b SHA512 
956dbdcb987556c0625944848f97a36d096cd1f1712a2e051dd027f2856d3c6e94a18d23faca71882260c4b12ee329e3a5f569443b877a3c3e5e88146bfac916
 WHIRLPOOL 
e3837d329ddd137be60fe9d0b37f35ed2e0e7fe1383f38ee45617be288ae318a444e6befdfbaf64b07d4a88ec47fec5cd88d733ecd5bb32ce40f3ba8d09573cd
 DIST mysql-extras-20170301-2020Z.tar.bz2 306195 SHA256 
646eb75c838ac4241598cc0638877f50044ec702c82b1fc3ddefb99f1f4b3fae SHA512 
b11b252d11b907e2b3be406e11b9a464092950696100afd575a2be78eac33251a9f56bf128b497beb8c801a2e5d02b11ad37ef78d25aed892a7aa90ca4c9581f
 WHIRLPOOL 
466b18c388160d5c7557ed0e0bddc45eda823b0c1c490540fb61008da759b6559b6012593d7beb3de5123e247521ace925413abc28edd692585c282456d7fbf9
 DIST mysql-extras-20170302-1359Z.tar.bz2 306816 SHA256 
0375bffa8a7b26caab3a13be299b30231f20ad3e8dc82fba9384e5463763a105 SHA512 
2c096c68e0d545c98fb5520f92b9e85f6bbc910853793f60f0e67979ee927410bbecadece3400364fdc2b5682f9105664f6a2de8fa0ee1818fb266e063e82869
 WHIRLPOOL 
6629f0069b77c9add86f4a40168a1dad7bcc0ae18a513f05e44619366a5fdfb82238df2e925de88c358fca2dd50f162ffefd8efea335cb544ccdcf74e73ed25f
+DIST mysql-extras-20170719-1335Z.tar.bz2 311350 SHA256 
725dc29fa4a553cfc0bd07dcc1259e5a38a6d945f757e9f49f554a9a7773abe7 SHA512 
3450725b4cdcf1e330aee775c1c169510bd7f06f19b874a3e94203227d393b136165eca1e77270bfc37c534f4120aeeeb3df8fbd71704312836b79a99d81a122
 WHIRLPOOL 
f1606df56f82847a8b4b332c1b61cb695aba2a51aef895fa9596495d89208535f829b8fa69a6e97a26d0b9171d817115b83ce447c8232197353dda258a6d38d0

diff --git a/dev-db/mysql/mysql-5.6.37.ebuild b/dev-db/mysql/mysql-5.6.37.ebuild
new file mode 100644
index 000..1242f9b3ab3
--- /dev/null
+++ b/dev-db/mysql/mysql-5.6.37.ebuild
@@ -0,0 +1,183 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+MY_EXTRAS_VER="20170719-1335Z"
+MY_PV="${PV//_alpha_pre/-m}"
+MY_PV="${MY_PV//_/-}"
+HAS_TOOLS_PATCH="1"
+SUBSLOT="18"
+#fails to build with ninja
+CMAKE_MAKEFILE_GENERATOR=emake
+
+inherit mysql-multilib-r1
+# 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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+
+DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )"
+RDEPEND="${RDEPEND}"
+
+MY_PATCH_DIR="${WORKDIR}/mysql-extras-${MY_EXTRAS_VER}"
+
+PATCHES

[gentoo-commits] proj/mysql-extras:master commit in: /

2017-07-19 Thread Brian Evans
commit: 9d34c352e6f59d794f2b3b02eb805ce3c19cead2
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 16:29:45 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 16:29:45 2017 +
URL:https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=9d34c352

Update index for last patch

 0_index.txt | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/0_index.txt b/0_index.txt
index 3c8627f..980ddd4 100644
--- a/0_index.txt
+++ b/0_index.txt
@@ -742,7 +742,15 @@
 @@ Remove -Werror from USE="debug" builds
 
 @patch 20008_all_mysql-tzinfo-symlink.patch
-@ver 5.05.36.00 to 5.06.99.99
+@ver 5.05.36.00 to 5.05.56.99
+@ver 5.06.00.00 to 5.06.36.99
+@pn mysql
+@pn percona-server
+@@ Backport tzinfo symlink fix from MariaDB bug 491176
+
+@patch 20008_all_mysql-tzinfo-symlink-5.6.37.patch
+@ver 5.05.57.00 to 5.05.99.99
+@ver 5.06.37.00 to 5.06.99.99
 @pn mysql
 @pn percona-server
 @@ Backport tzinfo symlink fix from MariaDB bug 491176



[gentoo-commits] repo/gentoo:master commit in: dev-util/geany-plugins/

2017-07-19 Thread Patrice Clement
commit: cbcb8b97efae90ed94705d418b7f387a0a4a25f0
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 19 16:29:46 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 19 16:30:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbcb8b97

dev-util/geany-plugins: assign new maintainer.

Gentoo-Bug: https://bugs.gentoo.org/591192

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-util/geany-plugins/metadata.xml | 40 ++---
 1 file changed, 24 insertions(+), 16 deletions(-)

diff --git a/dev-util/geany-plugins/metadata.xml 
b/dev-util/geany-plugins/metadata.xml
index acb02e18c90..479d6c17f1c 100644
--- a/dev-util/geany-plugins/metadata.xml
+++ b/dev-util/geany-plugins/metadata.xml
@@ -1,20 +1,28 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-Use GTK+3 instead of GTK+2
-Enable the autoclose plugin.
-Enable the automark plugin
-Enable the commander plugin which provides a 
command panel for rapid access to any action.
-Enable ctags plugin
-Enable the debugger plugin which interfaces with 
sys-devel/gdb
-Enable the defineformat plugin.
-Enable spell checking using enchant
-Enable geanypg plugin which integrates GPG using 
app-crypt/gpgme
-Use gtkspell for dictionary support in GeanyVC
-Enable the multiterm plugin
-Enable overview plugin
-Enable the scope plugin which is a graphical GDB 
front-end
-Enable updatechecker and geniuspaste plugins which 
require net-libs/libsoup
-  
+   
+   aklh...@gmail.com
+   Chris Mayo
+   
+   
+   proxy-ma...@gentoo.org
+   Gentoo Proxy Maintainers Project
+   
+   
+   Use GTK+3 instead of GTK+2
+   Enable the autoclose plugin.
+   Enable the automark plugin
+   Enable the commander plugin which 
provides a command panel for rapid access to any action.
+   Enable ctags plugin
+   Enable the debugger plugin which 
interfaces with sys-devel/gdb
+   Enable the defineformat plugin.
+   Enable spell checking using enchant
+   Enable geanypg plugin which integrates GPG 
using app-crypt/gpgme
+   Use gtkspell for dictionary support in 
GeanyVC
+   Enable the multiterm plugin
+   Enable overview plugin
+   Enable the scope plugin which is a graphical 
GDB front-end
+   Enable updatechecker and geniuspaste plugins 
which require net-libs/libsoup
+   
 



[gentoo-commits] repo/gentoo:master commit in: dev-lang/gprolog/files/, dev-lang/gprolog/

2017-07-19 Thread Keri Harris
commit: 65393f623e12c9c9114567bde5de298d5c82eee9
Author: Keri Harris  gentoo  org>
AuthorDate: Wed Jul 19 15:42:41 2017 +
Commit: Keri Harris  gentoo  org>
CommitDate: Wed Jul 19 15:42:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65393f62

dev-lang/gprolog: apply upstream patch for PIC-aware GPLC. Closes #403693

Package-Manager: Portage-2.3.0, Repoman-2.3.1

 dev-lang/gprolog/files/gprolog-pic-code.patch | 12 
 dev-lang/gprolog/gprolog-1.4.4.ebuild |  6 +-
 2 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/dev-lang/gprolog/files/gprolog-pic-code.patch 
b/dev-lang/gprolog/files/gprolog-pic-code.patch
new file mode 100644
index 000..a85aea0746e
--- /dev/null
+++ b/dev-lang/gprolog/files/gprolog-pic-code.patch
@@ -0,0 +1,12 @@
+diff -ur gprolog-1.4.4.orig/src/Ma2Asm/x86_64_any.c 
gprolog-1.4.4/src/Ma2Asm/x86_64_any.c
+--- gprolog-1.4.4.orig/src/Ma2Asm/x86_64_any.c 2013-04-22 13:52:16.0 
+0200
 gprolog-1.4.4/src/Ma2Asm/x86_64_any.c  2017-07-19 17:27:37.057124771 
+0200
+@@ -204,7 +204,7 @@
+   strcpy(asm_reg_cp, Off_Reg_Bank(MAP_OFFSET_CP));
+ #endif
+ 
+-#ifdef M_x86_64_darwin
++#if defined(M_x86_64_darwin) || defined(M_x86_64_linux)
+   pic_code = 1;   /* NB: on darwin everything is PIC code 
*/
+ #elif defined(_WIN32)
+   pic_code = 0;   /* NB: on MinGW nothing is needed for 
PIC code */

diff --git a/dev-lang/gprolog/gprolog-1.4.4.ebuild 
b/dev-lang/gprolog/gprolog-1.4.4.ebuild
index 7116f2c8c4d..4d915c78666 100644
--- a/dev-lang/gprolog/gprolog-1.4.4.ebuild
+++ b/dev-lang/gprolog/gprolog-1.4.4.ebuild
@@ -20,6 +20,7 @@ RDEPEND=""
 
 src_prepare() {
epatch "${FILESDIR}"/${P}-ldflags.patch
+   epatch "${FILESDIR}"/${P}-pic-code.patch
epatch "${FILESDIR}"/${P}-links.patch
epatch "${FILESDIR}"/${P}-nodocs.patch
epatch "${FILESDIR}"/${P}-txt-file.patch
@@ -31,11 +32,6 @@ src_configure() {
append-flags -fno-strict-aliasing
use debug && append-flags -DDEBUG
 
-   if gcc-specs-pie ; then
-   # gplc generates its own native ASM; disable PIE
-   append-ldflags -nopie
-   fi
-
cd "${S}"/src
econf \
CFLAGS_MACHINE="${CFLAGS_MACHINE}" \



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

2017-07-19 Thread Patrice Clement
commit: 489211301fe77fb0a7cc3b60eb9fda93875fcccd
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 19 16:29:28 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 19 16:30:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48921130

dev-util/lcov: tidy up ebuild.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-util/lcov/lcov-1.13-r1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-util/lcov/lcov-1.13-r1.ebuild 
b/dev-util/lcov/lcov-1.13-r1.ebuild
index 6a4c0d034e7..8baf9478f95 100644
--- a/dev-util/lcov/lcov-1.13-r1.ebuild
+++ b/dev-util/lcov/lcov-1.13-r1.ebuild
@@ -10,10 +10,9 @@ SRC_URI="mirror://sourceforge/ltp/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-linux ~x64-macos"
-IUSE=""
 
-DEPEND=""
-RDEPEND=">=dev-lang/perl-5
+RDEPEND="
+   dev-lang/perl
dev-perl/GD[png]"
 
 src_compile() { :; }



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

2017-07-19 Thread Sebastien Fabbro
commit: a98f903e5e8beae7f03bca467dfee7da41fe32cf
Author: SĂ©bastien Fabbro  gentoo  org>
AuthorDate: Tue Jul 18 16:40:23 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Jul 19 17:00:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a98f903e

dev-python/healpy: added python-3.6

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/healpy/Manifest |  1 -
 dev-python/healpy/healpy-1.10.2.ebuild | 38 --
 dev-python/healpy/healpy-1.10.3.ebuild |  2 +-
 3 files changed, 1 insertion(+), 40 deletions(-)

diff --git a/dev-python/healpy/Manifest b/dev-python/healpy/Manifest
index 4cf3cc8c9d3..f2f5ebae330 100644
--- a/dev-python/healpy/Manifest
+++ b/dev-python/healpy/Manifest
@@ -1,2 +1 @@
-DIST healpy-1.10.2.tar.gz 4018889 SHA256 
210fe8a1d3797e6ebb99125054d35d624229602179b119fc3b73586056307e4d SHA512 
658dac9f9c3dfa8c6f4050138c81fc3f0c3b813ace797a531ea6fc7785d8a2e59ac07f8873a32682f06fde7097710cb91a8181f90bad82acdb04a20191d0601f
 WHIRLPOOL 
216c336652866e3196cf86e073d29a87168f54b891d6b8382227fb49c961e9a28f8d64b3be980d37a006af989d0aa26c8b66deecd07973c8fcdb3f2b94647b6c
 DIST healpy-1.10.3.tar.gz 4018897 SHA256 
43bdccb0081b3b5a72a9c1f523c367bc2cba91f989a60047d8043685a3beb81b SHA512 
c5862fceb597ffbc5c53204479fa9dba19287e3c08744e25edef3eaecfa726e61e8558d50d73e2bf4d19b7d0adc0ac928a38c4808fc92fe855f5eae101e18baa
 WHIRLPOOL 
f3d883f8de8c35573d865ab444818b5b3e3cbeac4176961cd8db39931a09b0d52a7f2fe7c6f3862823d32cd2ec2a569a17f6dc9e1da8510f35940f9ddbb7b66a

diff --git a/dev-python/healpy/healpy-1.10.2.ebuild 
b/dev-python/healpy/healpy-1.10.2.ebuild
deleted file mode 100644
index 03decf3f339..000
--- a/dev-python/healpy/healpy-1.10.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python wrapper for healpix"
-HOMEPAGE="https://github.com/healpy;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   dev-python/astropy[${PYTHON_USEDEP}]
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   sci-astronomy/healpix:=[cxx]
-   sci-libs/cfitsio:="
-DEPEND="${RDEPEND}
-   dev-python/astropy-helpers[${PYTHON_USEDEP}]
-   dev-python/cython[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   virtual/pkgconfig
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-DOCS=( README.rst CHANGELOG.rst CITATION )
-
-python_test() {
-   echo "backend: Agg" > matplotlibrc || die
-   MPLCONFIGDIR=. esetup.py test || die
-   rm matplotlibrc || die
-}

diff --git a/dev-python/healpy/healpy-1.10.3.ebuild 
b/dev-python/healpy/healpy-1.10.3.ebuild
index 0d5b20cd7c7..f84e392eec9 100644
--- a/dev-python/healpy/healpy-1.10.3.ebuild
+++ b/dev-python/healpy/healpy-1.10.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/dmlc-core/, sci-libs/dmlc-core/files/

2017-07-19 Thread Sebastien Fabbro
commit: c54c14fb2f0bc0892d35ab3c07629ea1bc1419e5
Author: SĂ©bastien Fabbro  gentoo  org>
AuthorDate: Wed Jul 19 16:58:23 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Jul 19 17:00:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c54c14fb

sci-libs/dmlc-core: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sci-libs/dmlc-core/Manifest|  1 +
 sci-libs/dmlc-core/dmlc-core-0_p20170719.ebuild| 97 ++
 .../dmlc-core/files/dmlc-core-install-dirs.patch   | 38 +
 sci-libs/dmlc-core/metadata.xml| 19 +
 4 files changed, 155 insertions(+)

diff --git a/sci-libs/dmlc-core/Manifest b/sci-libs/dmlc-core/Manifest
new file mode 100644
index 000..04e132d07b5
--- /dev/null
+++ b/sci-libs/dmlc-core/Manifest
@@ -0,0 +1 @@
+DIST dmlc-core-0_p20170719.tar.gz 160242 SHA256 
7da1167ae29ccfbc0779ada2a00baa6581462dd06d0e6ac2f9eac0173b28dc60 SHA512 
2e2d79800839652772f07deb5ea3aa470cc5a18d2d0e480b8f4a1598aca72443546a438f3309708268cc49cf2d65684c3366cfc6c33c085baf1b804b4c04f02e
 WHIRLPOOL 
77bb23c9f3b3ba5cd1041026e2265caba0daea6235da13de4745ff7d3c2c3f71a616023f84629cb5b62f8a73d44099198ca718af556e81d3640d9b5387637e6b

diff --git a/sci-libs/dmlc-core/dmlc-core-0_p20170719.ebuild 
b/sci-libs/dmlc-core/dmlc-core-0_p20170719.ebuild
new file mode 100644
index 000..351c6e894b2
--- /dev/null
+++ b/sci-libs/dmlc-core/dmlc-core-0_p20170719.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs cmake-utils
+
+DESCRIPTION="Common bricks library for building distributed machine learning."
+HOMEPAGE="https://github.com/dmlc/dmlc-core;
+
+if [[ ${PV} == ** ]] ; then
+   EGIT_REPO_URI="git://github.com/dmlc/dmlc-core.git"
+   inherit git-r3
+   KEYWORDS=""
+else
+   EGIT_COMMIT="54db57d5d1b2a7b93319053011802888b827a539"
+   inherit vcs-snapshot
+   KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+   SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+# hdfs needs big java hdfs not yet in portage
+# azure not yet in portage
+IUSE="doc openmp s3 test"
+
+RDEPEND="net-misc/curl[ssl]"
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )
+   test? ( dev-cpp/gtest )
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-install-dirs.patch )
+
+pkg_pretend() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+pkg_setup() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+src_prepare() {
+   cmake-utils_src_prepare
+   # respect user flags (SSE2 does nothing more than adding -msse2)
+   # also doc install everything so remove
+   sed -e '/-O3/d' \
+   -e '/check_cxx.*SSE2/d' \
+   -i CMakeLists.txt || die
+   # all these hacks below to allow testing
+   sed -e 's|-O3||' -e 's|-lm|-lm -L$(LD_LIBRARY_PATH) -ldmlc|g' -i 
Makefile || die
+   sed -e "s|libdmlc.a||g" \
+   -i test/dmlc_test.mk test/unittest/dmlc_unittest.mk || die
+   cat <<-EOF > config.mk
+   USE_SSE=0
+   WITH_FPIC=1
+   USE_OPENMP=$(use openmp && echo 1 || echo 0)
+   USE_S3=$(use s3 && echo 1 || echo 0)
+   BUILD_TEST=$(use test && echo 1 || echo 0)
+   DMLC_CFLAGS=${CXXFLAGS}
+   DMLC_LDFLAGS=${LDFLAGS}
+   EOF
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   -DUSE_S3="$(usex s3)"
+   -DUSE_OPENMP="$(usex openmp)"
+   )
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+   if use doc; then
+   doxygen doc/Doxyfile || die
+   fi
+}
+
+src_test() {
+   tc-export CXX
+   export LD_LIBRARY_PATH="${BUILD_DIR}"
+   emake test
+   test/unittest/dmlc_unittest || die
+}
+
+src_install() {
+   cmake-utils_src_install
+   if use doc; then
+   insinto /usr/share/doc/${PF}
+   doins -r doc/doxygen/html
+   docompress -x /usr/share/doc/${PF}/html
+   fi
+}

diff --git a/sci-libs/dmlc-core/files/dmlc-core-install-dirs.patch 
b/sci-libs/dmlc-core/files/dmlc-core-install-dirs.patch
new file mode 100644
index 000..06f87f70175
--- /dev/null
+++ b/sci-libs/dmlc-core/files/dmlc-core-install-dirs.patch
@@ -0,0 +1,38 @@
+From 536ba11dfdaa7feacc7fe5726a3a50e4d663da13 Mon Sep 17 00:00:00 2001
+From: Maarten de Vries 
+Date: Fri, 26 May 2017 15:29:29 +0200
+Subject: [PATCH] Use GNUInstallDirs for standard conforming install target.
+
+---
+ CMakeLists.txt | 18 +++---
+ 1 file changed, 7 insertions(+), 11 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 0b3b3ec..316e2f5 100644
+--- a/CMakeLists.txt
 

[gentoo-commits] repo/gentoo:master commit in: dev-python/imexam/, dev-python/imexam/files/

2017-07-19 Thread Sebastien Fabbro
commit: 072da0c6dc2cb8d563b7a02773380fab926580af
Author: SĂ©bastien Fabbro  gentoo  org>
AuthorDate: Tue Jul 18 17:18:11 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Jul 19 17:00:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=072da0c6

dev-python/imexam: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/imexam/Manifest |  1 +
 .../imexam/files/imexam-0.7.1-system-xpa.patch | 52 +
 dev-python/imexam/imexam-0.7.1.ebuild  | 54 ++
 dev-python/imexam/metadata.xml | 21 +
 4 files changed, 128 insertions(+)

diff --git a/dev-python/imexam/Manifest b/dev-python/imexam/Manifest
new file mode 100644
index 000..d9b7fcaf431
--- /dev/null
+++ b/dev-python/imexam/Manifest
@@ -0,0 +1 @@
+DIST imexam-0.7.1.tar.gz 20264259 SHA256 
99579305e71f22fd06e4ed95e0d38edd0474832e9b87ef3f6abcd243ed8ad46f SHA512 
cb09d1764de19333fa6be1bbb9e6efd3d59943fdef4ccac4e8429e436dd615fa5be3a06c9473cc2c3ff1de1a8987d02ef24765de5b36131c31451b013be8d776
 WHIRLPOOL 
6c45aa0006d1217df6fd7fc4c2b0fa01a6cf4efcb26bd8adf16832823b229407ed20394202b3298f9e5433e3330cbd33469eaf215af863523011d6286afff89b

diff --git a/dev-python/imexam/files/imexam-0.7.1-system-xpa.patch 
b/dev-python/imexam/files/imexam-0.7.1-system-xpa.patch
new file mode 100644
index 000..fc90ffef7f3
--- /dev/null
+++ b/dev-python/imexam/files/imexam-0.7.1-system-xpa.patch
@@ -0,0 +1,52 @@
+From: Ole Streicher 
+Date: Fri, 21 Apr 2017 13:40:06 +0200
+Subject: Use external xpa
+
+---
+ setup.py | 15 +++
+ 1 file changed, 3 insertions(+), 12 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index f0dd5d5..f291201 100644
+--- a/setup.py
 b/setup.py
+@@ -121,24 +121,20 @@ if not sys.platform.startswith('win'):
+xpaio.c
+""".split()
+ 
+-XPA_SOURCES = [os.path.join(XPALIB_DIR, c) for c in XPA_FILES]
+-XPALIB_DEFINES = [("HAVE_CONFIG_H", "1")]
++XPA_SOURCES = []
++XPALIB_DEFINES = []
+ XPA_SOURCES.append(CYTHON_SOURCE)
+ 
+ xpa_module = Extension("xpa",
+sources=XPA_SOURCES,
+-   include_dirs=[XPALIB_DIR],
+define_macros=XPALIB_DEFINES,
+-   depends=[CONF_H_NAME],
++   libraries = ['xpa'],
+)
+ if use_cython:
+ ext = cythonize(xpa_module)
+ 
+ class my_clean(clean):
+ def run(self):
+-import subprocess
+-subprocess.call(["make", "clean"],
+-cwd=XPALIB_DIR)
+ if os.access(CONF_H_NAME, os.F_OK):
+ os.remove(CONF_H_NAME)
+ os.remove("wrappers/xpa.c")
+@@ -147,11 +143,6 @@ if not sys.platform.startswith('win'):
+ 
+ class build_ext_with_configure(build_ext):
+ def build_extensions(self):
+-import subprocess
+-subprocess.call(["make", "-f", "Makefile", "clean"],
+-cwd=XPALIB_DIR)
+-subprocess.call(["sh", "./configure"], cwd=XPALIB_DIR)
+-subprocess.call(["make", "-f", "Makefile"], cwd=XPALIB_DIR)
+ build_ext.build_extensions(self)
+ 
+ cmdclass.update({'build_ext': build_ext_with_configure,

diff --git a/dev-python/imexam/imexam-0.7.1.ebuild 
b/dev-python/imexam/imexam-0.7.1.ebuild
new file mode 100644
index 000..65296b55c7c
--- /dev/null
+++ b/dev-python/imexam/imexam-0.7.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+
+inherit distutils-r1 xdg-utils
+
+DESCRIPTION="Simple interactive astronomical image examination and plotting"
+HOMEPAGE="https://imexam.readthedocs.io;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="doc test"
+
+RDEPEND="
+   dev-python/astropy[${PYTHON_USEDEP}]
+   dev-python/ginga[${PYTHON_USEDEP}]
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   sci-libs/scipy[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+
+PATCHES=( "${FILESDIR}"/${P}-system-xpa.patch )
+
+python_prepare_all() {
+   # use system astropy-helpers instead of bundled one
+   sed -i -e '/auto_use/s/True/False/' setup.cfg || die
+   echo "backend: Agg" > "${T}"/matplotlibrc || die
+   xdg_environment_reset
+   

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

2017-07-19 Thread Sebastien Fabbro
commit: e4549f46fb0d5abac1b87ee0ba3c98d8ddd55ed0
Author: SĂ©bastien Fabbro  gentoo  org>
AuthorDate: Tue Jul 18 16:40:01 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Jul 19 17:00:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4549f46

dev-python/pymoc: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/pymoc/Manifest   |  1 +
 dev-python/pymoc/metadata.xml   | 32 
 dev-python/pymoc/pymoc-0.5.0.ebuild | 28 
 3 files changed, 61 insertions(+)

diff --git a/dev-python/pymoc/Manifest b/dev-python/pymoc/Manifest
new file mode 100644
index 000..aa3ac835426
--- /dev/null
+++ b/dev-python/pymoc/Manifest
@@ -0,0 +1 @@
+DIST pymoc-0.5.0.tar.gz 33843 SHA256 
08fd88df8c4013803c8c26b2183816e087c500e1d3b6172fed4d98a48269a8ba SHA512 
cb327bed6fffa6eb4354c06f9b7e056baa9df1010d722b4fade6873fb862c4b27ea0a11647a510ce4007f7b8158e13eee7e146258d4c58ecee82adddf33bf89c
 WHIRLPOOL 
17d56de5ddc63279d597f3a436a8f3a030cc696fb1495ce3cc9ee93c10a7a60aef1dcf77888514308c64945ec76ef7b38f11715606b512c80f3106b16897e0c1

diff --git a/dev-python/pymoc/metadata.xml b/dev-python/pymoc/metadata.xml
new file mode 100644
index 000..0539850fc0b
--- /dev/null
+++ b/dev-python/pymoc/metadata.xml
@@ -0,0 +1,32 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+sci-astron...@gentoo.org
+Gentoo Astronomy Project
+  
+  
+Frequently astronomical survey catalogues or images are sparse and
+cover only a small part of the sky.  In a Multi-Order Coverage map
+the extent of data in a particular dataset is cached as a
+pre-calculated mask image.  The hierarchical nature enables fast
+boolean operations in image space, without needing to perform complex
+geometrical calculations.  Services such as VizieR generally offer the
+MOC masks, allowing a faster experience in graphical applications
+such as Aladin, or for researchers quickly needing to locate which
+datasets may contain overlapping coverage.
+
+The MOC mask image itself is tessellated and stored in NASA HealPix
+format, encoded inside a FITS image container.  Using the HealPix
+(Hierarchical Equal Area isoLatitude Pixelization) tessellation
+method ensures that more precision (pixels) in the mask are available
+when describing complex shapes such as approximating survey or
+polygon edges, while only needing to store a single big cell/pixel
+when an coverage is either completely inside, or outside of the mask.
+Catalogues can be rendered on the mask as circles.
+  
+  
+pymoc
+grahambell/pymoc
+  
+

diff --git a/dev-python/pymoc/pymoc-0.5.0.ebuild 
b/dev-python/pymoc/pymoc-0.5.0.ebuild
new file mode 100644
index 000..98bed1677f2
--- /dev/null
+++ b/dev-python/pymoc/pymoc-0.5.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit distutils-r1 virtualx xdg-utils
+
+DESCRIPTION="Python Multi-Order Coverage maps for Virtual Observatory"
+HOMEPAGE="https://pymoc.readthedocs.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   dev-python/astropy[${PYTHON_USEDEP}]
+   dev-python/healpy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+python_test() {
+   PYTHONPATH=lib "${PYTHON}" -m unittest discover -s test || die
+}



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

2017-07-19 Thread Sebastien Fabbro
commit: 0df06238f5e7ac4679f5ea30039daea7a9e0dd7c
Author: SĂ©bastien Fabbro  gentoo  org>
AuthorDate: Wed Jul 19 15:53:48 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Jul 19 17:00:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df06238

dev-python/sunpy: version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/sunpy/Manifest   |  1 +
 dev-python/sunpy/sunpy-0.7.9.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/sunpy/Manifest b/dev-python/sunpy/Manifest
index 75530262ede..b8120c016da 100644
--- a/dev-python/sunpy/Manifest
+++ b/dev-python/sunpy/Manifest
@@ -1 +1,2 @@
 DIST sunpy-0.7.8.tar.gz 5666138 SHA256 
abb3238b4cfcc67bcb0e81733463e4abb672fc6e8c85684320d4ce552e587916 SHA512 
46b493a823018b8500994cdfed8f8ae736ed471251a3b62d615821f8a9ea4228d2c78d7a9f66274fc49d0a386ad4d3d446547b8c06888157e5633fac844e8638
 WHIRLPOOL 
3939b14eb8452284cb435ace15d666962c801929c36c58748fed612b32cc9f2a7d172dfef588775bda3d21362c0a75be144490dbf89b90b6fe9e714de23d4c42
+DIST sunpy-0.7.9.tar.gz 5690849 SHA256 
359961f62a32df69b2df2cd5390040fa27b7522066fb546469fc9f485d2d0a57 SHA512 
e8322ecf7c797a377fd8ff6962d6d66e147ba893a58e8abbbfa1dad6a391eecc161846a51fba3c92e90a3709125d759da76d444ca3f4ff0878768d23da1f41a3
 WHIRLPOOL 
512e1f5fbc0c4e127c4fc26fcd3f7f2c7ce0944ca5691fcdb938254615e131d14407f4bb160a32b597ad62a520c59201afee2ae6a133021a7c0d7d4cf9298ab9

diff --git a/dev-python/sunpy/sunpy-0.7.9.ebuild 
b/dev-python/sunpy/sunpy-0.7.9.ebuild
new file mode 100644
index 000..9d1336d23d4
--- /dev/null
+++ b/dev-python/sunpy/sunpy-0.7.9.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1 xdg-utils
+
+DESCRIPTION="Software library for solar physics based on Python"
+HOMEPAGE="http://sunpy.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="jpeg2k test"
+
+RDEPEND="
+   

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

2017-07-19 Thread Brian Evans
commit: b20fa1adf162543e09b762123b1dbf2942f7a0cc
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 18:04:22 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 18:04:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20fa1ad

dev-db/mysql: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-db/mysql/Manifest   |   2 -
 dev-db/mysql/mysql-5.5.56.ebuild| 125 -
 dev-db/mysql/mysql-5.6.35-r1.ebuild | 177 
 3 files changed, 304 deletions(-)

diff --git a/dev-db/mysql/Manifest b/dev-db/mysql/Manifest
index 9a1b1ea8c7c..a269145ed5f 100644
--- a/dev-db/mysql/Manifest
+++ b/dev-db/mysql/Manifest
@@ -1,10 +1,8 @@
-DIST mysql-5.5.56.tar.gz 21025832 SHA256 
3fd30a24267cef84ee8aeb327a5b08a669d3ab8c4d76d1b1b3b66d26cf777a0a SHA512 
58aec4cfc82abac5bb9d5e5594d2545c979910af5b7bbcfe339f9590d157244c869a83659f89a2cca09254353ecb52d2dcb3e2cd55e117219e2a72c54187a975
 WHIRLPOOL 
5aa01ff21da05a86f5c3d5264afb9c5722001154d36c1042ab88bd38c02b9daae8cba47f933909579eb22872aeafb146e6b2d382f5a4c6319f163e261116de4d
 DIST mysql-5.5.57.tar.gz 21044615 SHA256 
c1c2bd321e524f92e43fe73d0d6745badd538c984c7561b273ae10e9aef57384 SHA512 
493e6345a2d8ec407fcfc6ed5b67599c77b6351b7cfb1d676b39f68ac9446959cf0822c0d0bcd2206cea07b8c06c85734aa8501c938d6393ffab220f3f5ee6e8
 WHIRLPOOL 
c321bfc26c7b5a1bdaddf2be9de84c174869743034f4d5b483767c0308875bc583f6705982ccb4935794b8ce94a1234b2b8561c933cced5aba11f48e93fbfe15
 DIST mysql-5.6.35.tar.gz 32167628 SHA256 
dddcba169b98844d7c65346cbd791c853edf942d78440381685087b84aa35020 SHA512 
106c4b05c52cd2bb5378376e4a453aeb55eda0adce527862c435068597c3e60f44e3c64476011befefd688e6fdf30f2245e28320d57d9fccbb2415d87498e7f2
 WHIRLPOOL 
e8972bba163453e54dc3859a7cfd07b4dc38125e0b5f7b41940afa6f1466820079f18e88769ea198b12645383d105340ab5ea998b32a95d083d08689658510bc
 DIST mysql-5.6.36.tar.gz 32192348 SHA256 
0af81a5538fc7fe2b747295dfa96589ace8831d2a7d4a26660fca456babeb147 SHA512 
b3e3bcb1d1e913994f274f4c6dc72c77f1f52b132389e784c675d1720b5913788ce035f045b99ef3754d1b257db55e8300b5c7622ec79c33afafec5968801c18
 WHIRLPOOL 
628e33a58532dcdca20e489c3120824604b8d51e10d609f1f9c2adb11552124a8f87f206df99766162d288d5877dac22d2cacffdba1458c73fb52b529245a1e6
 DIST mysql-5.6.37.tar.gz 32200158 SHA256 
59c4ed39047279ddccd1bed9e247830d2bfad27d56dc2eb48d0b5695c94a1fbd SHA512 
6935cf11490fb32832468e2a69a9d81a567b1b4ab0afaa0614896e3ddbb95a74b26406284f307637e4b2b9620ef4d96a167128ce7fcb1d338b0ebbc2cef2e597
 WHIRLPOOL 
d5e7f6445bacfa7cb118a805f0efff5f4c22d96e77c174efa7ae2d286f3889ab7975ece8a0abe6232d278994d5991430d0d0ff89769883f278d2fa233341db25
 DIST mysql-extras-20160212-0233Z.tar.bz2 297332 SHA256 
01a52587ef1335b2795197d2e547c0b3a1e4b705db09f96cdfb45d2152b6536b SHA512 
956dbdcb987556c0625944848f97a36d096cd1f1712a2e051dd027f2856d3c6e94a18d23faca71882260c4b12ee329e3a5f569443b877a3c3e5e88146bfac916
 WHIRLPOOL 
e3837d329ddd137be60fe9d0b37f35ed2e0e7fe1383f38ee45617be288ae318a444e6befdfbaf64b07d4a88ec47fec5cd88d733ecd5bb32ce40f3ba8d09573cd
-DIST mysql-extras-20170301-2020Z.tar.bz2 306195 SHA256 
646eb75c838ac4241598cc0638877f50044ec702c82b1fc3ddefb99f1f4b3fae SHA512 
b11b252d11b907e2b3be406e11b9a464092950696100afd575a2be78eac33251a9f56bf128b497beb8c801a2e5d02b11ad37ef78d25aed892a7aa90ca4c9581f
 WHIRLPOOL 
466b18c388160d5c7557ed0e0bddc45eda823b0c1c490540fb61008da759b6559b6012593d7beb3de5123e247521ace925413abc28edd692585c282456d7fbf9
 DIST mysql-extras-20170302-1359Z.tar.bz2 306816 SHA256 
0375bffa8a7b26caab3a13be299b30231f20ad3e8dc82fba9384e5463763a105 SHA512 
2c096c68e0d545c98fb5520f92b9e85f6bbc910853793f60f0e67979ee927410bbecadece3400364fdc2b5682f9105664f6a2de8fa0ee1818fb266e063e82869
 WHIRLPOOL 
6629f0069b77c9add86f4a40168a1dad7bcc0ae18a513f05e44619366a5fdfb82238df2e925de88c358fca2dd50f162ffefd8efea335cb544ccdcf74e73ed25f
 DIST mysql-extras-20170719-1335Z.tar.bz2 311350 SHA256 
725dc29fa4a553cfc0bd07dcc1259e5a38a6d945f757e9f49f554a9a7773abe7 SHA512 
3450725b4cdcf1e330aee775c1c169510bd7f06f19b874a3e94203227d393b136165eca1e77270bfc37c534f4120aeeeb3df8fbd71704312836b79a99d81a122
 WHIRLPOOL 
f1606df56f82847a8b4b332c1b61cb695aba2a51aef895fa9596495d89208535f829b8fa69a6e97a26d0b9171d817115b83ce447c8232197353dda258a6d38d0
 DIST mysql-extras-20170719-1630Z.tar.bz2 311320 SHA256 
d21f42035850a3208a89d4271d2c544b8ccbb3b8855390b882248561451ae4cc SHA512 
a2369d512b8e490b5859403c4c15cf9d8ff589000e56785f0fb02ad99535af189fe93ba9590035bf0b8cc1d0c7f3656c56d86d94d62ef97fa63cdaeade609f38
 WHIRLPOOL 
aec2eb79350008464499f74cff002589628fc8e4e81970cbcf1d7d3ca0a7714d9ebc6408c7f25e037f452fb0b3397e7885dac83277884692eb3a88a26d6625c4

diff --git a/dev-db/mysql/mysql-5.5.56.ebuild b/dev-db/mysql/mysql-5.5.56.ebuild
deleted file mode 100644
index 483b3462e93..000
--- a/dev-db/mysql/mysql-5.5.56.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General 

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

2017-07-19 Thread Brian Evans
commit: 9cabc4e1ed56d1b97a9959ce7e7dda5bbf20d547
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 18:00:23 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 18:00:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cabc4e1

dev-db/mysql: Version bump to 5.5.57

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-db/mysql/Manifest|   2 +
 dev-db/mysql/mysql-5.5.57.ebuild | 131 +++
 2 files changed, 133 insertions(+)

diff --git a/dev-db/mysql/Manifest b/dev-db/mysql/Manifest
index 3fd9b95eee9..9a1b1ea8c7c 100644
--- a/dev-db/mysql/Manifest
+++ b/dev-db/mysql/Manifest
@@ -1,4 +1,5 @@
 DIST mysql-5.5.56.tar.gz 21025832 SHA256 
3fd30a24267cef84ee8aeb327a5b08a669d3ab8c4d76d1b1b3b66d26cf777a0a SHA512 
58aec4cfc82abac5bb9d5e5594d2545c979910af5b7bbcfe339f9590d157244c869a83659f89a2cca09254353ecb52d2dcb3e2cd55e117219e2a72c54187a975
 WHIRLPOOL 
5aa01ff21da05a86f5c3d5264afb9c5722001154d36c1042ab88bd38c02b9daae8cba47f933909579eb22872aeafb146e6b2d382f5a4c6319f163e261116de4d
+DIST mysql-5.5.57.tar.gz 21044615 SHA256 
c1c2bd321e524f92e43fe73d0d6745badd538c984c7561b273ae10e9aef57384 SHA512 
493e6345a2d8ec407fcfc6ed5b67599c77b6351b7cfb1d676b39f68ac9446959cf0822c0d0bcd2206cea07b8c06c85734aa8501c938d6393ffab220f3f5ee6e8
 WHIRLPOOL 
c321bfc26c7b5a1bdaddf2be9de84c174869743034f4d5b483767c0308875bc583f6705982ccb4935794b8ce94a1234b2b8561c933cced5aba11f48e93fbfe15
 DIST mysql-5.6.35.tar.gz 32167628 SHA256 
dddcba169b98844d7c65346cbd791c853edf942d78440381685087b84aa35020 SHA512 
106c4b05c52cd2bb5378376e4a453aeb55eda0adce527862c435068597c3e60f44e3c64476011befefd688e6fdf30f2245e28320d57d9fccbb2415d87498e7f2
 WHIRLPOOL 
e8972bba163453e54dc3859a7cfd07b4dc38125e0b5f7b41940afa6f1466820079f18e88769ea198b12645383d105340ab5ea998b32a95d083d08689658510bc
 DIST mysql-5.6.36.tar.gz 32192348 SHA256 
0af81a5538fc7fe2b747295dfa96589ace8831d2a7d4a26660fca456babeb147 SHA512 
b3e3bcb1d1e913994f274f4c6dc72c77f1f52b132389e784c675d1720b5913788ce035f045b99ef3754d1b257db55e8300b5c7622ec79c33afafec5968801c18
 WHIRLPOOL 
628e33a58532dcdca20e489c3120824604b8d51e10d609f1f9c2adb11552124a8f87f206df99766162d288d5877dac22d2cacffdba1458c73fb52b529245a1e6
 DIST mysql-5.6.37.tar.gz 32200158 SHA256 
59c4ed39047279ddccd1bed9e247830d2bfad27d56dc2eb48d0b5695c94a1fbd SHA512 
6935cf11490fb32832468e2a69a9d81a567b1b4ab0afaa0614896e3ddbb95a74b26406284f307637e4b2b9620ef4d96a167128ce7fcb1d338b0ebbc2cef2e597
 WHIRLPOOL 
d5e7f6445bacfa7cb118a805f0efff5f4c22d96e77c174efa7ae2d286f3889ab7975ece8a0abe6232d278994d5991430d0d0ff89769883f278d2fa233341db25
@@ -6,3 +7,4 @@ DIST mysql-extras-20160212-0233Z.tar.bz2 297332 SHA256 
01a52587ef1335b2795197d2e
 DIST mysql-extras-20170301-2020Z.tar.bz2 306195 SHA256 
646eb75c838ac4241598cc0638877f50044ec702c82b1fc3ddefb99f1f4b3fae SHA512 
b11b252d11b907e2b3be406e11b9a464092950696100afd575a2be78eac33251a9f56bf128b497beb8c801a2e5d02b11ad37ef78d25aed892a7aa90ca4c9581f
 WHIRLPOOL 
466b18c388160d5c7557ed0e0bddc45eda823b0c1c490540fb61008da759b6559b6012593d7beb3de5123e247521ace925413abc28edd692585c282456d7fbf9
 DIST mysql-extras-20170302-1359Z.tar.bz2 306816 SHA256 
0375bffa8a7b26caab3a13be299b30231f20ad3e8dc82fba9384e5463763a105 SHA512 
2c096c68e0d545c98fb5520f92b9e85f6bbc910853793f60f0e67979ee927410bbecadece3400364fdc2b5682f9105664f6a2de8fa0ee1818fb266e063e82869
 WHIRLPOOL 
6629f0069b77c9add86f4a40168a1dad7bcc0ae18a513f05e44619366a5fdfb82238df2e925de88c358fca2dd50f162ffefd8efea335cb544ccdcf74e73ed25f
 DIST mysql-extras-20170719-1335Z.tar.bz2 311350 SHA256 
725dc29fa4a553cfc0bd07dcc1259e5a38a6d945f757e9f49f554a9a7773abe7 SHA512 
3450725b4cdcf1e330aee775c1c169510bd7f06f19b874a3e94203227d393b136165eca1e77270bfc37c534f4120aeeeb3df8fbd71704312836b79a99d81a122
 WHIRLPOOL 
f1606df56f82847a8b4b332c1b61cb695aba2a51aef895fa9596495d89208535f829b8fa69a6e97a26d0b9171d817115b83ce447c8232197353dda258a6d38d0
+DIST mysql-extras-20170719-1630Z.tar.bz2 311320 SHA256 
d21f42035850a3208a89d4271d2c544b8ccbb3b8855390b882248561451ae4cc SHA512 
a2369d512b8e490b5859403c4c15cf9d8ff589000e56785f0fb02ad99535af189fe93ba9590035bf0b8cc1d0c7f3656c56d86d94d62ef97fa63cdaeade609f38
 WHIRLPOOL 
aec2eb79350008464499f74cff002589628fc8e4e81970cbcf1d7d3ca0a7714d9ebc6408c7f25e037f452fb0b3397e7885dac83277884692eb3a88a26d6625c4

diff --git a/dev-db/mysql/mysql-5.5.57.ebuild b/dev-db/mysql/mysql-5.5.57.ebuild
new file mode 100644
index 000..3fbfb582d1d
--- /dev/null
+++ b/dev-db/mysql/mysql-5.5.57.ebuild
@@ -0,0 +1,131 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+MY_EXTRAS_VER="20170719-1630Z"
+MY_PV="${PV//_alpha_pre/-m}"
+MY_PV="${MY_PV//_/-}"
+
+# Build type
+BUILD="cmake"
+#fails to build with ninja
+CMAKE_MAKEFILE_GENERATOR=emake
+
+inherit toolchain-funcs mysql-v2
+# only to make repoman happy. it is really set in the eclass
+IUSE=&q

[gentoo-commits] proj/mysql-extras: New tag: mysql-extras-20170719-1630Z

2017-07-19 Thread Brian Evans
commit: 
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 16:32:57 2017 +

New tag: mysql-extras-20170719-1630Z




[gentoo-commits] repo/gentoo:master commit in: media-video/kaffeine/, media-video/kaffeine/files/

2017-07-19 Thread Andreas Sturmlechner
commit: a5f5d698cd3e0b449b81004b38d97cd1f635b68e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 19 16:32:51 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 19 16:33:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5f5d698

media-video/kaffeine: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 media-video/kaffeine/Manifest  |  1 -
 .../kaffeine/files/kaffeine-2.0.10-debug.patch | 27 -
 media-video/kaffeine/kaffeine-2.0.10.ebuild| 69 --
 3 files changed, 97 deletions(-)

diff --git a/media-video/kaffeine/Manifest b/media-video/kaffeine/Manifest
index f1bde62a7fc..46a5fe12af9 100644
--- a/media-video/kaffeine/Manifest
+++ b/media-video/kaffeine/Manifest
@@ -1,3 +1,2 @@
-DIST kaffeine-2.0.10.tar.xz 4405388 SHA256 
cc8c0a8a6e360d3a45a1e3ea5b98fa730cad164451b5ed54620d0b91b0f614c3 SHA512 
b06d6c271ad6a7de3798c02d576f520eb8ebaf3b0ab64a84a17441fce059e947c0413963bb5813a92d56a3c4df5a1765cabab8a912ab0e43f154d562b4d6
 WHIRLPOOL 
e03d41cc24cf97e3af6cf511685aae8e3aa804e06d5b1a9d9d4085f8856d46545a54160dd625469a9fcb3f31f0f50088704d2f618febf2ded2a8382468325b9d
 DIST kaffeine-2.0.12.tar.xz 4371652 SHA256 
a19eb8262f1f35b013c3ea5aa66fd7cd99d624643db718d2e9d36d9dd7a796ca SHA512 
e53206095e6c06a7caca3f81ab198dadb68fecf8ac5f762b39d55b22d1fe33dab558617226ea06f740a3ad8bf1693809a2a0b3e2618600a9a33a17273b6aed86
 WHIRLPOOL 
1dc51bcb9f1fc0621adce7e805944c336429583f98980b545b4e8050f37d4bcf253715eaa876921f16d56e70b3adba088bf6cdd584e2b0a8d50013c74cb560e7
 DIST kaffeine-2.0.9.tar.xz 4398832 SHA256 
ac53b697bba4fa97350706698c777908c21c464f7c567fe1a4ce9352e955754f SHA512 
5adf86185aaafce4eadda4cfe40af2e0c867477f51b74a464bf813c018ecf035f9e13f47fffd21c0cd547289825441d2d80298ec7035e260f3cc0414c5fdd0d7
 WHIRLPOOL 
948eecec4957046c6ddee872747959661725f4d9f8408c735803d0dcc82c38dfcc7df6e9e92c46e8fda58e2f53a41ab6cf8c33da4b88f7d89542aa427a486223

diff --git a/media-video/kaffeine/files/kaffeine-2.0.10-debug.patch 
b/media-video/kaffeine/files/kaffeine-2.0.10-debug.patch
deleted file mode 100644
index 97103b8e08e..000
--- a/media-video/kaffeine/files/kaffeine-2.0.10-debug.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 4200dec1afc04b1618b2e7ea916891103473a913 Mon Sep 17 00:00:00 2001
-From: Mauro Carvalho Chehab 
-Date: Sun, 9 Jul 2017 11:59:21 -0300
-Subject: mainwindow: disable debug messages by default
-
-By default, debug messages shouldn't be displayed.
-
-Signed-off-by: Mauro Carvalho Chehab 

- src/mainwindow.cpp | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
-index c5ec7ac..7a18459 100644
 a/src/mainwindow.cpp
-+++ b/src/mainwindow.cpp
-@@ -190,6 +190,8 @@ void MainWindow::run()
-   if (parser->isSet("debug")) {
-   QLoggingCategory::defaultCategory()->setEnabled(QtDebugMsg, 
true);
-   QLoggingCategory::setFilterRules(QStringLiteral(FILTER_RULE));
-+  } else {
-+  
QLoggingCategory::setFilterRules(QStringLiteral("kaffeine.*.debug=false"));
-   }
- 
-   readSettings();
--- 
-cgit v0.11.2

diff --git a/media-video/kaffeine/kaffeine-2.0.10.ebuild 
b/media-video/kaffeine/kaffeine-2.0.10.ebuild
deleted file mode 100644
index 27b32f7051e..000
--- a/media-video/kaffeine/kaffeine-2.0.10.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="optional"
-inherit kde5
-
-DESCRIPTION="Media player with digital TV support by KDE"
-HOMEPAGE="https://kaffeine.kde.org/;
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-2+ handbook? ( FDL-1.3 )"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-CDEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtsql 'sqlite')
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtx11extras)
-   $(add_qt_dep qtxml)
-   media-libs/libv4l
-   media-video/vlc[X]
-   x11-libs/libXScrnSaver
-"
-DEPEND="${CDEPEND}
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   !media-video/kaffeine:4
-"
-
-DOCS=( Changelog NOTES README.md )
-
-PATCHES=( "${FILESDIR}/${P}-debug.patch" )
-
-src_prepare() {
-   kde5_src_prepare
-
-   # unused dependencies incorrectly added during the release process
-   # they do not appear in upstream git
-   sed -i \
-   -e 

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

2017-07-19 Thread Andreas Sturmlechner
commit: a7c7bf6703fa18dcbe7aa5e16b0821999a907981
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 19 16:32:17 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 19 16:33:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7c7bf67

media-video/kaffeine: 2.0.12 version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 media-video/kaffeine/Manifest   |  1 +
 media-video/kaffeine/kaffeine-2.0.12.ebuild | 56 +
 2 files changed, 57 insertions(+)

diff --git a/media-video/kaffeine/Manifest b/media-video/kaffeine/Manifest
index e15f520a3c1..f1bde62a7fc 100644
--- a/media-video/kaffeine/Manifest
+++ b/media-video/kaffeine/Manifest
@@ -1,2 +1,3 @@
 DIST kaffeine-2.0.10.tar.xz 4405388 SHA256 
cc8c0a8a6e360d3a45a1e3ea5b98fa730cad164451b5ed54620d0b91b0f614c3 SHA512 
b06d6c271ad6a7de3798c02d576f520eb8ebaf3b0ab64a84a17441fce059e947c0413963bb5813a92d56a3c4df5a1765cabab8a912ab0e43f154d562b4d6
 WHIRLPOOL 
e03d41cc24cf97e3af6cf511685aae8e3aa804e06d5b1a9d9d4085f8856d46545a54160dd625469a9fcb3f31f0f50088704d2f618febf2ded2a8382468325b9d
+DIST kaffeine-2.0.12.tar.xz 4371652 SHA256 
a19eb8262f1f35b013c3ea5aa66fd7cd99d624643db718d2e9d36d9dd7a796ca SHA512 
e53206095e6c06a7caca3f81ab198dadb68fecf8ac5f762b39d55b22d1fe33dab558617226ea06f740a3ad8bf1693809a2a0b3e2618600a9a33a17273b6aed86
 WHIRLPOOL 
1dc51bcb9f1fc0621adce7e805944c336429583f98980b545b4e8050f37d4bcf253715eaa876921f16d56e70b3adba088bf6cdd584e2b0a8d50013c74cb560e7
 DIST kaffeine-2.0.9.tar.xz 4398832 SHA256 
ac53b697bba4fa97350706698c777908c21c464f7c567fe1a4ce9352e955754f SHA512 
5adf86185aaafce4eadda4cfe40af2e0c867477f51b74a464bf813c018ecf035f9e13f47fffd21c0cd547289825441d2d80298ec7035e260f3cc0414c5fdd0d7
 WHIRLPOOL 
948eecec4957046c6ddee872747959661725f4d9f8408c735803d0dcc82c38dfcc7df6e9e92c46e8fda58e2f53a41ab6cf8c33da4b88f7d89542aa427a486223

diff --git a/media-video/kaffeine/kaffeine-2.0.12.ebuild 
b/media-video/kaffeine/kaffeine-2.0.12.ebuild
new file mode 100644
index 000..eedddad9fe2
--- /dev/null
+++ b/media-video/kaffeine/kaffeine-2.0.12.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+inherit kde5
+
+DESCRIPTION="Media player with digital TV support by KDE"
+HOMEPAGE="https://kaffeine.kde.org/;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-2+ handbook? ( FDL-1.3 )"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+CDEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep solid)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtsql 'sqlite')
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtx11extras)
+   $(add_qt_dep qtxml)
+   media-libs/libv4l
+   media-video/vlc[X]
+   x11-libs/libXScrnSaver
+"
+DEPEND="${CDEPEND}
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   !media-video/kaffeine:4
+"
+
+DOCS=( Changelog NOTES README.md )
+
+src_configure() {
+   # tools working on $HOME directory for a local git checkout
+   local mycmakeargs=(
+   -DBUILD_TOOLS=OFF
+   )
+
+   kde5_src_configure
+}



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

2017-07-19 Thread Manuel RĂŒger
commit: f89419b65985cdaff454830e41c8a4e6fa01ba84
Author: Manuel RĂŒger  gentoo  org>
AuthorDate: Wed Jul 19 17:14:34 2017 +
Commit: Manuel RĂŒger  gentoo  org>
CommitDate: Wed Jul 19 17:14:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f89419b6

sys-apps/yarn: Version bump to 0.27.5

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-apps/yarn/Manifest   |  1 +
 sys-apps/yarn/yarn-0.27.5.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/sys-apps/yarn/Manifest b/sys-apps/yarn/Manifest
index 7baf5551382..1ce76f318ea 100644
--- a/sys-apps/yarn/Manifest
+++ b/sys-apps/yarn/Manifest
@@ -1 +1,2 @@
 DIST yarn-v0.21.3.tar.gz 3408603 SHA256 
0946a4d1abc106c131b700cc31e5c3aa5f2205eb3bb9d17411f8115354a97d5d SHA512 
dad7181c78dd1aaf2b07ff32055a8442b55ff9b68a73cf611f4142d612e95f43dcd376e6f2306a45249680bb82365a7e9ee3160e5c5083f50ee0791a448d
 WHIRLPOOL 
f96e16e6112f23efe1f6609e2f5c674e20e033725374116929cceca319c5dad8f65a3cb667d43f5d00fdf46b46ee41eb4038e6998ffe6f6aea9d13d910258c55
+DIST yarn-v0.27.5.tar.gz 816114 SHA256 
f0f3510246ee74eb660ea06930dcded7b684eac2593aa979a7add84b72517968 SHA512 
a21615f3bf4996d6e2dc84b54c3e9ca8a58143941a80771121f6eb6f5dcf8fd655e1c9b9420e7a0ab3a7c26ecd6bdd3790451d76435d7e3d6fbb5ba8ac729dbd
 WHIRLPOOL 
e21887c715c72c490c58817ca0a6542899f4036ccd81fedfab4f751b13eca6196f82236d206f7a58d550e78f0bff4dac08fbfc44f287e2463ad119042b98a83b

diff --git a/sys-apps/yarn/yarn-0.27.5.ebuild b/sys-apps/yarn/yarn-0.27.5.ebuild
new file mode 100644
index 000..631ba960a31
--- /dev/null
+++ b/sys-apps/yarn/yarn-0.27.5.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Fast, reliable, and secure node dependency management"
+HOMEPAGE="https://yarnpkg.com;
+SRC_URI="https://github.com/yarnpkg/yarn/releases/download/v${PV}/yarn-v${PV}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!dev-util/cmdtest
+   net-libs/nodejs"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/dist"
+
+src_install() {
+   local install_dir="/usr/$(get_libdir)/node_modules/yarn" path
+   insinto "${install_dir}"
+   doins -r .
+   dosym "../$(get_libdir)/node_modules/yarn/bin/yarn.js" "/usr/bin/yarn"
+   fperms a+x "${install_dir}/bin/yarn.js"
+   while read -r -d '' path; do
+   [[ $(head -n1 "${path}") == \#\!* ]] || continue
+   chmod +x "${path}" || die #614094
+   done < <(find "${ED}" -type f -print0)
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcpflow/

2017-07-19 Thread Jeroen Roovers
commit: 4fe5206a7135627bcb2a398f007b035b007c6317
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 18:29:15 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 18:29:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe5206a

net-analyzer/tcpflow: Version bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-analyzer/tcpflow/Manifest   |  1 +
 net-analyzer/tcpflow/tcpflow-1.4.5_p4-r1.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/net-analyzer/tcpflow/Manifest b/net-analyzer/tcpflow/Manifest
index 5ed4cea1e27..d8b44b27b57 100644
--- a/net-analyzer/tcpflow/Manifest
+++ b/net-analyzer/tcpflow/Manifest
@@ -1,2 +1,3 @@
 DIST tcpflow_1.4.5+repack1-1.debian.tar.xz 11144 SHA256 
b917e994ac1cd64cb63f719700b0a9862359779286cab89c9c29f73e64ec2d5b SHA512 
ed2c491595a3d5382ca79fe945467639af3d99658d002353f90e07aa6b1a955e57ab0fbbc3fadf964e9d6d3dba4fd327a02c1b07d6a239efdf90b365928b2a1e
 WHIRLPOOL 
0854405a429bd2f7276b18acc204e5ac5cfde1bbd4a8f5308e6bf667355eb1ea8a98c52b30a5a24aacb4f8f7b8469e75c2c49fc5f187aa87b869fad9c91d025c
+DIST tcpflow_1.4.5+repack1-4.debian.tar.xz 12228 SHA256 
f7207ea03e9aa1c96ec322835aed486a7fde2244d26ce4d9b23cb75d613a0e07 SHA512 
27d8a7a735b06c35cc2985cb26a129a490fc2236eedeede21977afe4c3096a6fde3ea18de1aaa3a1c6a56bc36d332b1e8bd4c7be933d5b031509a69cae189b18
 WHIRLPOOL 
35817c9ca6cfec60d91d4809ae1661f26011c0f4fe020c15a168e82651a6dfa9c63a87188428675dbc7330ab43b0fcdc443b7d7ec954007fbbc8f4f5d9b7df3d
 DIST tcpflow_1.4.5+repack1.orig.tar.gz 725962 SHA256 
1d9b4ce2dd85adc1c608f34ada576b7f5b6d51c686ae6b870c3c277049a24af0 SHA512 
fed8589957e3c790b5b6837b9b578d5dcbde316122ed6b3d4f908d1d73f23c6ed8a11720ee0510e878eaa7a6c559a2f35e7df2c77e3cb1f2810040adf7ac2b85
 WHIRLPOOL 
8743e20cea0fbee37c9ee050e8bbe02871e8a32dba2bbed922b912de457aa4eaf5cd21e8828a08eb3eafbf8d3897541230fc37bc4a15f7126e6b8adfb9fea860

diff --git a/net-analyzer/tcpflow/tcpflow-1.4.5_p4-r1.ebuild 
b/net-analyzer/tcpflow/tcpflow-1.4.5_p4-r1.ebuild
new file mode 100644
index 000..d98e0670e72
--- /dev/null
+++ b/net-analyzer/tcpflow/tcpflow-1.4.5_p4-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils
+
+DESCRIPTION="A tool for monitoring, capturing and storing TCP connections 
flows"
+HOMEPAGE="https://github.com/simsong/tcpflow 
http://packages.qa.debian.org/t/tcpflow.html;
+SRC_URI="
+   mirror://debian/pool/main/t/${PN}/${PN}_${PV/_p*}+repack1.orig.tar.gz
+   
mirror://debian/pool/main/t/${PN}/${PN}_${PV/_p*}+repack1-${PV/*_p}.debian.tar.xz
+"
+
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+SLOT="0"
+IUSE="cairo test"
+
+RDEPEND="
+   app-forensics/afflib
+   dev-libs/boost
+   dev-libs/openssl:=
+   net-libs/http-parser:=
+   net-libs/libpcap
+   sys-libs/zlib
+   cairo? (
+   x11-libs/cairo
+   )
+"
+DEPEND="
+   ${RDEPEND}
+   test? ( sys-apps/coreutils )
+"
+
+S=${WORKDIR}/${PN}
+
+src_prepare() {
+   default 
+
+   eapply "${WORKDIR}"/debian/patches/*.patch
+
+   mv -f README{.md,} || die
+
+   sed -i -e 's:`md5 -q \(.*\)`:`md5sum \1 | cut -f1 -d" "`:' tests/*.sh 
|| die
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(usex cairo --enable-cairo=true --enable-cairo=false) \
+   --without-o3
+}



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2017-07-19 Thread Jeroen Roovers
commit: a9ad726a98f0aa9dae317cee08b789effe1cbffb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 18:33:05 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 18:33:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ad726a

net-analyzer/wireshark: Old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-analyzer/wireshark/Manifest   |   1 -
 net-analyzer/wireshark/wireshark-2.4.0_rc1.ebuild | 266 --
 2 files changed, 267 deletions(-)

diff --git a/net-analyzer/wireshark/Manifest b/net-analyzer/wireshark/Manifest
index dfec7295585..02811d37e39 100644
--- a/net-analyzer/wireshark/Manifest
+++ b/net-analyzer/wireshark/Manifest
@@ -1,4 +1,3 @@
 DIST wireshark-2.2.7.tar.bz2 32309420 SHA256 
689ddf62221b152779d8846ab5b2063cc7fd41ec1a9f04eefab09b5d5486dbb5 SHA512 
417836810eb895b3f2a6ac1cfd138fb0275382ea2edc60fc5f5e5f8ce433b56b8120aa8b58b4f77296986630fdf49e4c5c3859b2c2c5e26b1ce0651393b7d716
 WHIRLPOOL 
0361821da9c113a8de1339cc48cae0291be84bcffb1ba34b1fc3f457b22525329e954a2060f7eef25bca550d0ccdaf4a9e9587d35394b0abd9b0d38bc6023e44
 DIST wireshark-2.2.8.tar.bz2 32331209 SHA256 
ecf02c148c9ab6e809026ad5743fe9be1739a9840ef6fece6837a7ddfbdf7edc SHA512 
71af39c8c212bfb78ec978bbeddb4af41aa142643e2a27e05827b3b46d34ff85772321cb63d863270bee75ef6a6eb3e29d0e6052fca6b072f9981ad1eb924c07
 WHIRLPOOL 
f74083fafd2c3956e11905cf982250f3553a0d091bc1191be7b938b86373ab9dc5e11c34ebf56324bca27424c1652e57e43d0d358f903a65416ab96695552400
-DIST wireshark-2.4.0rc1.tar.xz 29097628 SHA256 
902aa0f7dc9e14af98dbfa1669fe6ee049caeb763571ace426949d52df1dbfde SHA512 
0222e7bd6237a0d1d0c2b21c66aed3995787f5cbc623db40df11ab5e6640fdfebcdd78e1960ee2ebc14cb26b700beefa4e1164504f5aa5424cbd6d62202bc888
 WHIRLPOOL 
988d4643c3f413541106d686aefb4622c780b026d5b97d7dc2872540ff4ce7947ba988e4b03b92d3d26c2dc1bbf681122930be4af01888ee8534d70dbe9842c6
 DIST wireshark-2.4.0rc2.tar.xz 28744512 SHA256 
cb2a1dd25f0eb05c1f2a95012d08b704789b4bf016dfd4b86daa34e2afb7c99e SHA512 
2df36aa6465256d63d95e69137a9e8bb828940c629dacec5afc4f9ceab158bd023d006bf5c44a50e7f6d1d94d704a7c5f7ecf4bf5d34ddfcb9af9ca1abd7887d
 WHIRLPOOL 
c5061779ee6146e5e4ea68e88713bd8bd92bd7a70a8ddf4d63d616db151a162e0e9fe529b6a2563690925a1c8ce4878a109310808304232086b42a1e9b86d502

diff --git a/net-analyzer/wireshark/wireshark-2.4.0_rc1.ebuild 
b/net-analyzer/wireshark/wireshark-2.4.0_rc1.ebuild
deleted file mode 100644
index a7271a99e3f..000
--- a/net-analyzer/wireshark/wireshark-2.4.0_rc1.ebuild
+++ /dev/null
@@ -1,266 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools eutils fcaps flag-o-matic multilib qmake-utils user
-
-DESCRIPTION="A network protocol analyzer formerly known as ethereal"
-HOMEPAGE="https://www.wireshark.org/;
-SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
-IUSE="
-   adns androiddump +caps ciscodump cpu_flags_x86_sse4_2 doc doc-pdf
-   geoip gtk kerberos lua +netlink nghttp2 +pcap portaudio +qt5 sbc selinux
-   smi libssh libxml2 randpkt randpktdump snappy spandsp sshdump ssl 
tfshark
-   zlib
-"
-REQUIRED_USE="
-   ciscodump? ( libssh )
-   sshdump? ( libssh )
-"
-
-S=${WORKDIR}/${P/_/}
-
-CDEPEND="
-   >=dev-libs/glib-2.14:2
-   dev-libs/libgcrypt:0
-   netlink? ( dev-libs/libnl:3 )
-   adns? ( >=net-dns/c-ares-1.5 )
-   caps? ( sys-libs/libcap )
-   geoip? ( dev-libs/geoip )
-   gtk? (
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/pango
-   x11-misc/xdg-utils
-   )
-   kerberos? ( virtual/krb5 )
-   libssh? ( >=net-libs/libssh-0.6 )
-   libxml2? ( dev-libs/libxml2 )
-   lua? ( >=dev-lang/lua-5.1:* )
-   nghttp2? ( net-libs/nghttp2 )
-   pcap? ( net-libs/libpcap )
-   portaudio? ( media-libs/portaudio )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwidgets:5
-   media-libs/speex
-   x11-misc/xdg-utils
-   )
-   sbc? ( media-libs/sbc )
-   smi? ( net-libs/libsmi )
-   snappy? ( app-arch/snappy )
-   spandsp? ( media-libs/spandsp )
-   ssl? ( net-libs/gnutls:= )
-   zlib? ( sys-libs/zlib !=sys-libs/zlib-1.2.4 )
-"
-# We need perl for `pod2html`.  The rest of the perl stuff is to block older
-# and broken installs. #455122
-DEPEND="
-   ${CDEPEND}
-   dev-lang/perl
-   !

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/wireshark/

2017-07-19 Thread Jeroen Roovers
commit: 364b06f781967644d67680b64f6cc248997873cc
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 18:32:26 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 18:32:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=364b06f7

net-analyzer/wireshark: Version bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-analyzer/wireshark/Manifest   |   1 +
 net-analyzer/wireshark/wireshark-2.2.8.ebuild | 259 ++
 2 files changed, 260 insertions(+)

diff --git a/net-analyzer/wireshark/Manifest b/net-analyzer/wireshark/Manifest
index b467df14167..dfec7295585 100644
--- a/net-analyzer/wireshark/Manifest
+++ b/net-analyzer/wireshark/Manifest
@@ -1,3 +1,4 @@
 DIST wireshark-2.2.7.tar.bz2 32309420 SHA256 
689ddf62221b152779d8846ab5b2063cc7fd41ec1a9f04eefab09b5d5486dbb5 SHA512 
417836810eb895b3f2a6ac1cfd138fb0275382ea2edc60fc5f5e5f8ce433b56b8120aa8b58b4f77296986630fdf49e4c5c3859b2c2c5e26b1ce0651393b7d716
 WHIRLPOOL 
0361821da9c113a8de1339cc48cae0291be84bcffb1ba34b1fc3f457b22525329e954a2060f7eef25bca550d0ccdaf4a9e9587d35394b0abd9b0d38bc6023e44
+DIST wireshark-2.2.8.tar.bz2 32331209 SHA256 
ecf02c148c9ab6e809026ad5743fe9be1739a9840ef6fece6837a7ddfbdf7edc SHA512 
71af39c8c212bfb78ec978bbeddb4af41aa142643e2a27e05827b3b46d34ff85772321cb63d863270bee75ef6a6eb3e29d0e6052fca6b072f9981ad1eb924c07
 WHIRLPOOL 
f74083fafd2c3956e11905cf982250f3553a0d091bc1191be7b938b86373ab9dc5e11c34ebf56324bca27424c1652e57e43d0d358f903a65416ab96695552400
 DIST wireshark-2.4.0rc1.tar.xz 29097628 SHA256 
902aa0f7dc9e14af98dbfa1669fe6ee049caeb763571ace426949d52df1dbfde SHA512 
0222e7bd6237a0d1d0c2b21c66aed3995787f5cbc623db40df11ab5e6640fdfebcdd78e1960ee2ebc14cb26b700beefa4e1164504f5aa5424cbd6d62202bc888
 WHIRLPOOL 
988d4643c3f413541106d686aefb4622c780b026d5b97d7dc2872540ff4ce7947ba988e4b03b92d3d26c2dc1bbf681122930be4af01888ee8534d70dbe9842c6
 DIST wireshark-2.4.0rc2.tar.xz 28744512 SHA256 
cb2a1dd25f0eb05c1f2a95012d08b704789b4bf016dfd4b86daa34e2afb7c99e SHA512 
2df36aa6465256d63d95e69137a9e8bb828940c629dacec5afc4f9ceab158bd023d006bf5c44a50e7f6d1d94d704a7c5f7ecf4bf5d34ddfcb9af9ca1abd7887d
 WHIRLPOOL 
c5061779ee6146e5e4ea68e88713bd8bd92bd7a70a8ddf4d63d616db151a162e0e9fe529b6a2563690925a1c8ce4878a109310808304232086b42a1e9b86d502

diff --git a/net-analyzer/wireshark/wireshark-2.2.8.ebuild 
b/net-analyzer/wireshark/wireshark-2.2.8.ebuild
new file mode 100644
index 000..e6842e6fd3b
--- /dev/null
+++ b/net-analyzer/wireshark/wireshark-2.2.8.ebuild
@@ -0,0 +1,259 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils fcaps flag-o-matic multilib qmake-utils user
+
+DESCRIPTION="A network protocol analyzer formerly known as ethereal"
+HOMEPAGE="https://www.wireshark.org/;
+SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="
+   adns androiddump +caps ciscodump cpu_flags_x86_sse4_2 crypt doc doc-pdf
+   geoip +gtk kerberos lua +netlink +pcap portaudio +qt5 sbc selinux smi
+   libssh randpkt randpktdump sshdump ssl tfshark zlib
+"
+REQUIRED_USE="
+   ciscodump? ( libssh )
+   sshdump? ( libssh )
+   ssl? ( crypt )
+"
+
+S=${WORKDIR}/${P/_/}
+
+CDEPEND="
+   >=dev-libs/glib-2.14:2
+   netlink? ( dev-libs/libnl:3 )
+   adns? ( >=net-dns/c-ares-1.5 )
+   crypt? ( dev-libs/libgcrypt:0 )
+   caps? ( sys-libs/libcap )
+   geoip? ( dev-libs/geoip )
+   gtk? (
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/pango
+   x11-misc/xdg-utils
+   )
+   kerberos? ( virtual/krb5 )
+   libssh? ( >=net-libs/libssh-0.6 )
+   lua? ( >=dev-lang/lua-5.1:* )
+   pcap? ( net-libs/libpcap )
+   portaudio? ( media-libs/portaudio )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwidgets:5
+   media-libs/speex
+   x11-misc/xdg-utils
+   )
+   sbc? ( media-libs/sbc )
+   smi? ( net-libs/libsmi )
+   ssl? ( net-libs/gnutls:= )
+   zlib? ( sys-libs/zlib !=sys-libs/zlib-1.2.4 )
+"
+# We need perl for `pod2html`.  The rest of the perl stuff is to block older
+# and broken installs. #455122
+DEPEND="
+   ${CDEPEND}
+   dev-lang/perl
+   !

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

2017-07-19 Thread Hans de Graaff
commit: 80bbf2f3c82c94c78acffd3585a52cd6bffb9adb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:52:43 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:52:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80bbf2f3

dev-ruby/liquid: add 4.0.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/liquid/Manifest|  1 +
 dev-ruby/liquid/liquid-4.0.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ruby/liquid/Manifest b/dev-ruby/liquid/Manifest
index ab742cf5892..d41c7fdb45a 100644
--- a/dev-ruby/liquid/Manifest
+++ b/dev-ruby/liquid/Manifest
@@ -1,2 +1,3 @@
 DIST liquid-2.6.2.gem 46592 SHA256 
eb3b8b674f0b2b0960a9a126ad83d2e35cc4df32ab5d0cc7dee75bfef5e9f4cc SHA512 
bd369fe2e9bd89013f9bbd4a7f721b2db4376ac02c5ea4b4da6a08fa6af24fe782fae38b32d250edde548980f042c7187a673da47fa8d5569ed0959fd1569827
 WHIRLPOOL 
29c48155c7e43c0fd0ec7c3a61960b7fcfee322dbce4e6faf85c25cd75afa0c99e4504027524f92aa9c958be874ffa021c4228174fd1154f01772a3259bd2232
 DIST liquid-3.0.6.tar.gz 88159 SHA256 
c9b69afa97fe1caad78452b43dc5757ebd0f4363dd6bee1e04f22179f0e43ed8 SHA512 
66e1be904f3dcd18e345bf3fedf314fdf4ae84a0e1354859ee8e33f82386e929b4c871ec3c37c2c752358d76017fb5b1fef59f4bad04d3e7e89672146a3f8229
 WHIRLPOOL 
b72ac268e6216f5eb3c1834bd0c164879dd816d79b4973ead8cc2ece71435105ed6173214a25bbe224b302a150e3309584fec5439af23841f3e631811f0f25f1
+DIST liquid-4.0.0.tar.gz 96077 SHA256 
9a17055b72cdc480101a8d53f7728f61f7896dea667a72009b375fdf579d3e5c SHA512 
3aa09813e2c6c3b75b9ab0eb1c11ae83f62e6d3dba19c91d8877bf8162edf867b06fbbc4fc3193116313ff98c1fa964b8a01f0cf58c9fb7ed89338f3bffb9cdb
 WHIRLPOOL 
d00887c14debceff0d7bd9cb75f8fcbdea5a76fdbbac9d7c497d37a9dc84ce4b73df00aa804e8d790855aafbcdcc9c1ef99c89b77cec44df3d3e9e680d4fcb53

diff --git a/dev-ruby/liquid/liquid-4.0.0.ebuild 
b/dev-ruby/liquid/liquid-4.0.0.ebuild
new file mode 100644
index 000..4b1f02b8f2b
--- /dev/null
+++ b/dev-ruby/liquid/liquid-4.0.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="History.md README.md"
+
+inherit ruby-fakegem
+
+SRC_URI="https://github.com/Shopify/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+DESCRIPTION="Template engine for Ruby"
+HOMEPAGE="http://www.liquidmarkup.org/;
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/minitest
+   dev-ruby/spy )"
+
+all_ruby_prepare() {
+   # liquid-c is not packaged
+   sed -i -e '/LIQUID-C/ s:^:#:' Rakefile || die
+}



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

2017-07-19 Thread Hans de Graaff
commit: 26cb954b6c230c8d4a2102744f5e279ae060d747
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 06:50:35 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 06:50:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26cb954b

dev-ruby/certificate_authority: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../certificate_authority-0.1.6.ebuild | 29 --
 1 file changed, 29 deletions(-)

diff --git a/dev-ruby/certificate_authority/certificate_authority-0.1.6.ebuild 
b/dev-ruby/certificate_authority/certificate_authority-0.1.6.ebuild
deleted file mode 100644
index 5275023ea18..000
--- a/dev-ruby/certificate_authority/certificate_authority-0.1.6.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.rdoc"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Managing the core functions outlined in RFC-3280 for PKI"
-HOMEPAGE="https://github.com/cchandler/certificate_authority;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/activemodel-3.0.6:*"
-
-all_ruby_prepare() {
-   # Avoid dependency on dev-libs/engine_pkcs11 that will be hard to
-   # make work on different arches due to hardwired load paths in
-   # specs.
-   rm -f spec/units/pkcs11_key_material_spec.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/

2017-07-19 Thread Jason Zaman
commit: 7d1a93446fe340a2fd2fe61e5e11a52dd32376b2
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Jul 19 07:14:27 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 19 07:17:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d1a9344

sys-auth/consolekit: bump 1.2.0 (bug 625582)

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-auth/consolekit/Manifest|   1 +
 sys-auth/consolekit/consolekit-1.2.0.ebuild | 131 
 2 files changed, 132 insertions(+)

diff --git a/sys-auth/consolekit/Manifest b/sys-auth/consolekit/Manifest
index d60cbef5598..abe77d5d052 100644
--- a/sys-auth/consolekit/Manifest
+++ b/sys-auth/consolekit/Manifest
@@ -3,4 +3,5 @@ DIST ConsoleKit2-1.0.1.tar.bz2 1192681 SHA256 
741c53321a0792b165f386c73c668af256
 DIST ConsoleKit2-1.1.0.tar.bz2 630178 SHA256 
a40d92358aca9f627a224dca674090e310423b00ed63fc06482997611661b69b SHA512 
14ded07d4140e7a31132de21e84c2878475676b8c98f72b42340708972ed384abb9ba9380d74719718fc220c001387c788cf709cd15f8b19d598467dfe8a57df
 WHIRLPOOL 
8f08d81576b5121b2da6cd94b3b5675ea55dce17997b035d0ba451c011b101f9e315e983b20610ee022ee286b50a7b13e2508584b9c08dba0c6cda20b8801a63
 DIST ConsoleKit2-1.1.1.tar.bz2 1372801 SHA256 
795b2cfb766bdffb9187ef7f8beb8d8298e4c38df4a69377115297a0dee3b0d0 SHA512 
168af9760e10914dff5e693d2c3b2e2a35b1662fc2769e2954eec0238f7f313ff154add650fa6f0f59e73e4e0aec2fe63ff62446a3c73c2d4437408e69aa97b6
 WHIRLPOOL 
cef8ac778923671f9bffe87ecd8045b30630578e2599d0ccf37ad8d8070b7c0ca6936e9837abc5fc1f7af5f119edfeae68d9a14199485936677a5faba09b0958
 DIST ConsoleKit2-1.1.2.tar.bz2 1125567 SHA256 
f4b26b45edf7416ed76052b8f85ea05b7b560c744edee8042575667528bc1f24 SHA512 
fadca85e05c176b06ead40fba5c068d497bf69bcc322287363d0c27cdd6627b758295db1ef534b908c0e6240486430d8cb36660b4d71216a60d19a52d6d0db39
 WHIRLPOOL 
b9655418498cb2b63a30d6d1a56f6afe0adf8f6ae3a6aa97fc55da8288fae588deea04ab868f0ef524e185696ad87a35aca6de8eb4e6cb32bc4ba729040e0cbb
+DIST ConsoleKit2-1.2.0.tar.bz2 1125402 SHA256 
d6ea13b306557a76519388de39bf7f1a1ea9010af147fad4fb3131ce634bd8b3 SHA512 
c0f6e629b7229c2ffaafe8da899970b48c8372402447af18560fffd8804d9ab91a4ad2eb82c8f648a14807f8ccc5fb1ab4366de14faa8a2d5fb3767a6a4253f7
 WHIRLPOOL 
46c463fbfafd188dcaecc61f3ce83599a746e18b4c3ea129a205fec24927cc80958decf95913de679ddded0120e15fb631dcdeb08fd09a0029350b70b8b8ecd9
 DIST consolekit_0.4.6-4.debian.tar.gz 12192 SHA256 
6d4dd5e13a76454b4bab27ab6b407718cd77616afd2b1af7cb8d947c1323b802 SHA512 
f7fc5965b1f495d16a8ca167940431bc2569e9bde9e4a356b9c9ed00c2825db61da7b6db3d434d977fff72b3aaef30c455a365b9eba282a887a523753613b58f
 WHIRLPOOL 
961a918c21259e24c68c7a5bf93964825b891ea207c088fecab61f81434012dc8925fca83b74518cfc9cf42f2c4a87eba7518c0829f663716ca0e11e38c856c9

diff --git a/sys-auth/consolekit/consolekit-1.2.0.ebuild 
b/sys-auth/consolekit/consolekit-1.2.0.ebuild
new file mode 100644
index 000..ad224d1d9a6
--- /dev/null
+++ b/sys-auth/consolekit/consolekit-1.2.0.ebuild
@@ -0,0 +1,131 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools libtool linux-info pam xdg-utils
+
+MY_PN=ConsoleKit2
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Framework for defining and tracking users, login sessions and 
seats"
+HOMEPAGE="https://github.com/ConsoleKit2/ConsoleKit2 
https://www.freedesktop.org/wiki/Software/ConsoleKit;
+SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="acl cgroups debug doc evdev kernel_linux pam pm-utils policykit selinux 
test udev"
+
+COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus]
+   >=sys-devel/gettext-0.19
+   sys-apps/dbus
+   sys-libs/zlib:=
+   x11-libs/libX11:=
+   acl? (
+   sys-apps/acl:=
+   >=virtual/udev-200
+   )
+   cgroups? (
+   app-admin/cgmanager
+   >=sys-libs/libnih-1.0.2[dbus]
+   )
+   evdev? ( dev-libs/libevdev:= )
+   udev? (
+   virtual/libudev
+   x11-libs/libdrm:=
+   )
+   pam? ( virtual/pam )
+   policykit? ( >=sys-auth/polkit-0.110 )
+   selinux? ( sys-libs/libselinux )"
+# pm-utils: bug 557432
+RDEPEND="${COMMON_DEPEND}
+   kernel_linux? ( sys-apps/coreutils[acl?] )
+   pm-utils? ( sys-power/pm-utils )
+   selinux? ( sec-policy/selinux-consolekit )"
+DEPEND="${COMMON_DEPEND}
+   dev-libs/libxslt
+   virtual/pkgconfig
+   doc? ( app-text/xmlto )
+   test? (
+   app-text/docbook-xml-dtd:4.1.2
+   app-text/xmlto
+   )"
+
+S=${WORKDIR}/${MY_P}
+
+QA_MULTILIB_PATHS="usr/lib/ConsoleKit/.*"
+
+pkg_setup() {
+   if use kernel_linux; then
+   # This is from https://bugs.gentoo.org/376939
+

[gentoo-commits] repo/gentoo:master commit in: sys-auth/consolekit/

2017-07-19 Thread Jason Zaman
commit: 0c697d58838486acbb4d506a9208264082e31fe6
Author: Jason Zaman  gentoo  org>
AuthorDate: Wed Jul 19 07:16:41 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Wed Jul 19 07:17:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c697d58

sys-auth/consolekit: 1.1.2 stable amd64 x86 (bug 625310)

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-auth/consolekit/consolekit-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/consolekit/consolekit-1.1.2.ebuild 
b/sys-auth/consolekit/consolekit-1.1.2.ebuild
index 94b183899d1..2b422bad51e 100644
--- a/sys-auth/consolekit/consolekit-1.1.2.ebuild
+++ b/sys-auth/consolekit/consolekit-1.1.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${MY_P}.ta
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="acl cgroups debug doc evdev kernel_linux pam pm-utils policykit selinux 
test udev"
 
 COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus]



[gentoo-commits] repo/gentoo:master commit in: sys-libs/lwp/

2017-07-19 Thread Pacho Ramos
commit: bdfac0fba7dca61ca9dd0a32972e3a0985638939
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Jul 19 08:35:34 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Jul 19 08:35:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdfac0fb

sys-libs/lwp: Version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-libs/lwp/Manifest   |  1 +
 sys-libs/lwp/lwp-2.8.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/sys-libs/lwp/Manifest b/sys-libs/lwp/Manifest
index 8ea7a84ffe3..eb5be0f4d69 100644
--- a/sys-libs/lwp/Manifest
+++ b/sys-libs/lwp/Manifest
@@ -1,2 +1,3 @@
 DIST lwp-2.2.tar.gz 376136 SHA256 
64a3570559083bee657551b6673037161f33b71ad55ee45812612c29df2924b0 SHA512 
a5fa52c0483e04fdbface5f0e9cc85bab5db59c4d730a3cb3c538ccaa3a88aaa916b37478e4c5450e77bcc45638987610ba619995a75541d728f138f103c5d7e
 WHIRLPOOL 
93015bf3741508d284cd55482ca5201bf1a0c6d9b880e42c9cd3aa0147727e6bda6266231dc61056b1f6ac8a10a21b0fb874674163fa5866a72a1500407a5ae4
 DIST lwp-2.6.tar.gz 372225 SHA256 
4887fd7f74564552f53dfe42440f4777808a82b1249b2733ecfd062849a4d32d SHA512 
ad8374ddf55ef9fddf9ce0b8d7c2ae0dc206e5108a01f278a37486070ab70e5bd7312f057863254b4fc430cfbed2c36f589807813e6a99067933142d5225395b
 WHIRLPOOL 
205836226f86e77dfbc795bdf667f51b2c40b99cbc7bf5b998361472b6ad46b102c519d88e1afc503b259c9073ac7b155e322d134f5787d770517f3bf3a2e54d
+DIST lwp-2.8.tar.xz 270008 SHA256 
689c1ab8a16dc013fb1aedcc0aa3e4b11074b22efc4cafc251b8f707a1467e5f SHA512 
c56f3b350e888b5bcb2bffb41086f8926e975aafae236be7f1d2153bb178a37564b77d7598db1aa915714ce8e2ed1904663ce2113f5d0853173cf5e189958bf0
 WHIRLPOOL 
3afbd93d0c5c77d067b110243682900e71ef289b6a480c9954305aa096c4f8587517c37c3eb701a78f9cf825696d4c2ea9fc8b17132028e697ea46eb1a88cb7b

diff --git a/sys-libs/lwp/lwp-2.8.ebuild b/sys-libs/lwp/lwp-2.8.ebuild
new file mode 100644
index 000..9f58c389b04
--- /dev/null
+++ b/sys-libs/lwp/lwp-2.8.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit ltprune
+
+DESCRIPTION="Light-weight process library (used by Coda)"
+HOMEPAGE="http://www.coda.cs.cmu.edu/;
+SRC_URI="http://www.coda.cs.cmu.edu/pub/lwp/src/${P}.tar.xz;
+
+LICENSE="LGPL-2.1"
+SLOT="1"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+src_configure() {
+   econf --disable-static
+}
+
+src_install() {
+   default
+   prune_libtool_files
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/btrfsmaintenance/

2017-07-19 Thread MichaƂ Górny
commit: ff72ffaee40bddf9358fb12835e36af057738344
Author: Martin Dummer  ts  fujitsu  com>
AuthorDate: Wed Jun 28 09:58:36 2017 +
Commit: MichaƂ Górny  gentoo  org>
CommitDate: Wed Jul 19 09:38:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff72ffae

sys-fs/btrfsmaintenance: new ebuild, #595762

Maintenance scripts for btrfs file systems

Closes: https://github.com/gentoo/gentoo/pull/5003
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-fs/btrfsmaintenance/Manifest   |  1 +
 .../btrfsmaintenance/btrfsmaintenance-0.3.1.ebuild | 45 ++
 sys-fs/btrfsmaintenance/metadata.xml   | 15 
 3 files changed, 61 insertions(+)

diff --git a/sys-fs/btrfsmaintenance/Manifest b/sys-fs/btrfsmaintenance/Manifest
new file mode 100644
index 000..9516c7df80a
--- /dev/null
+++ b/sys-fs/btrfsmaintenance/Manifest
@@ -0,0 +1 @@
+DIST btrfsmaintenance-0.3.1.tar.gz 19698 SHA256 
e2f6a6cd433a38407c580630e3f4a0c4747390f0e129d5c9d0f91ec461cfb855 SHA512 
89be6da3d6bb3f85f645ac899f173d19cb787e938dd2fc91be16b3202a6784ca33dc4a4d9f9ee78ac6a96468dbaa4f4dc7a2f2e6998d550ea44d7af24198dbfb
 WHIRLPOOL 
ee3c73da6a4b88e6b3cd63660fcb1164599e3d09d378f385b6f1ec3613b287d90d2c8be9b4d66472ea56e1755f6a1091bcaec75cb844d376ec98fc54de882f51

diff --git a/sys-fs/btrfsmaintenance/btrfsmaintenance-0.3.1.ebuild 
b/sys-fs/btrfsmaintenance/btrfsmaintenance-0.3.1.ebuild
new file mode 100644
index 000..d70dc711e30
--- /dev/null
+++ b/sys-fs/btrfsmaintenance/btrfsmaintenance-0.3.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Scripts for btrfs maintenance tasks like periodic scrub, balance, 
trim or defrag"
+HOMEPAGE="https://github.com/kdave/btrfsmaintenance;
+SRC_URI="https://github.com/kdave/btrfsmaintenance/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   sys-fs/btrfs-progs
+   virtual/cron"
+
+src_install() {
+   dodoc README.md CONTRIBUTING.md btrfsmaintenance.changes
+   insinto /etc/default
+   newins sysconfig.btrfsmaintenance btrfsmaintenance
+   insinto /usr/share/btrfsmaintenance
+   doins btrfsmaintenance-functions
+   exeinto /usr/share/btrfsmaintenance
+   doexe btrfs*.sh
+   insinto /usr/lib/systemd/system
+   doins btrfsmaintenance-refresh.service
+}
+
+pkg_postinst() {
+   elog "Installing default btrfsmaintenance scripts"
+   
"${EROOT%/}"/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh || die
+   elog "Now edit cron periods and mount points in 
/etc/default/btrfsmaintenance"
+   elog "then run 
/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh to"
+   elog "update cron symlinks"
+}
+
+pkg_prerm() {
+   if [[ -z ${REPLACED_BY_VERSION} ]] ; then
+   elog "Removing symlinks from btrfsmaintenance cron tasks"
+   
"${EROOT%/}"/usr/share/btrfsmaintenance/btrfsmaintenance-refresh-cron.sh 
uninstall || die
+   fi
+}

diff --git a/sys-fs/btrfsmaintenance/metadata.xml 
b/sys-fs/btrfsmaintenance/metadata.xml
new file mode 100644
index 000..1aba136c273
--- /dev/null
+++ b/sys-fs/btrfsmaintenance/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   kdave/btrfsmaintenance
+   
+



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

2017-07-19 Thread Amy Liffey
commit: 804b37b00efc30b73ebb79024792a05c2bcc75cc
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed Jul 19 09:31:49 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed Jul 19 09:31:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=804b37b0

dev-lang/gforth: remove unactive maintainer

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-lang/gforth/metadata.xml | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/dev-lang/gforth/metadata.xml b/dev-lang/gforth/metadata.xml
index a0b5799a4ee..6f49eba8f49 100644
--- a/dev-lang/gforth/metadata.xml
+++ b/dev-lang/gforth/metadata.xml
@@ -1,12 +1,5 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-cars...@strotmann.de
-Carsten Strotmann
-  
-
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
+
 



[gentoo-commits] repo/gentoo:master commit in: net-nds/yp-tools/

2017-07-19 Thread Pacho Ramos
commit: ffd3db0f2a142486ceec87e1b27c0298f4fb3fc1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Jul 19 08:28:32 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Jul 19 08:30:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffd3db0f

net-nds/yp-tools: Version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-nds/yp-tools/Manifest  |  1 +
 net-nds/yp-tools/yp-tools-4.2.2.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/net-nds/yp-tools/Manifest b/net-nds/yp-tools/Manifest
index 3f60c045fc6..56de8c4eed1 100644
--- a/net-nds/yp-tools/Manifest
+++ b/net-nds/yp-tools/Manifest
@@ -1 +1,2 @@
 DIST yp-tools-2.12.tar.bz2 204228 SHA256 
6ae8321666eea7837da343eea90ea30273fb74943ad111d5a4befd2afb252063 SHA512 
0b62f63d65c7a53e715fb5749c4a7e71cf85e4006fa5e1ec39290e740301d5a8d321007461bb7a6b3bd1aaac283d8b028fa07814e77bd75e13dfd761f74c9218
 WHIRLPOOL 
b4b89857024cc2aa42e6e9dabea25ea81da641d00fbeb3202cd53e81065384d9b1a685e8e0eed547622f4a0649d625cf3ea35217deef7c19536e120813d5b1c4
+DIST yp-tools-4.2.2.tar.bz2 368673 SHA256 
137f19a986382b275bf4a2b1a69eb26689d6f4ac056ddaa21784d6b80eb98faa SHA512 
e2856465e650823de87fcf0e7f18c4875b0540f271b3e564b3afe07d0df35dded7f09ecdf2494d099b31a15e098fc5e9065339f19df45c0489ca91a736c3eac9
 WHIRLPOOL 
9a63839f8d4070e9d7885c3bffab9bebf3557f5d09c9ab0bc0981850239bf3a191aaf7e174a7bc33432d35c8602fffe202c61d63458f1253934f01e3225bc028

diff --git a/net-nds/yp-tools/yp-tools-4.2.2.ebuild 
b/net-nds/yp-tools/yp-tools-4.2.2.ebuild
new file mode 100644
index 000..b208acb3659
--- /dev/null
+++ b/net-nds/yp-tools/yp-tools-4.2.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit systemd
+
+DESCRIPTION="Network Information Service tools"
+HOMEPAGE="http://www.linux-nis.org/nis/;
+SRC_URI="http://www.linux-nis.org/download/yp-tools/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+
+src_configure () {
+   econf \
+   --disable-static \
+   --sysconfdir=/etc/yp \
+   $(use_enable nls)
+}
+
+src_install() {
+   default
+
+   insinto /etc/yp
+   doins etc/nicknames
+
+   systemd_dounit "${FILESDIR}/domainname.service"
+   systemd_install_serviced "${FILESDIR}"/domainname.service.conf
+}



[gentoo-commits] repo/gentoo:master commit in: net-nds/yp-tools/

2017-07-19 Thread Pacho Ramos
commit: 03aa8b3f6fbe71aaa05b545d7073f3a92db28688
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Jul 19 08:29:12 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Jul 19 08:30:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03aa8b3f

net-nds/yp-tools: Fix keywords

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-nds/yp-tools/yp-tools-4.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-nds/yp-tools/yp-tools-4.2.2.ebuild 
b/net-nds/yp-tools/yp-tools-4.2.2.ebuild
index b208acb3659..a566743bf7c 100644
--- a/net-nds/yp-tools/yp-tools-4.2.2.ebuild
+++ b/net-nds/yp-tools/yp-tools-4.2.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.linux-nis.org/download/yp-tools/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="nls"
 
 src_configure () {



[gentoo-commits] repo/gentoo:master commit in: media-libs/raspberrypi-userland/files/, media-libs/raspberrypi-userland/

2017-07-19 Thread Patrice Clement
commit: 9d3fc9e26bf37065b6a435e233a105b34a14184a
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 19 08:03:53 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 19 08:55:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3fc9e2

media-libs/raspberrypi-userland: remove empty file.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 media-libs/raspberrypi-userland/files/wayland-wsys.patch   | 0
 .../raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild | 3 +--
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/media-libs/raspberrypi-userland/files/wayland-wsys.patch 
b/media-libs/raspberrypi-userland/files/wayland-wsys.patch
deleted file mode 100644
index e69de29bb2d..000

diff --git 
a/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild 
b/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild
index e060f168f5d..44af1834f38 100644
--- a/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild
+++ b/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild
@@ -47,8 +47,7 @@ src_prepare() {
sed -i "/DESTINATION \/etc\/init.d/,+2d" 
interface/vmcs_host/linux/vcfiled/CMakeLists.txt || die
 
# wayland egl support
-   epatch "${FILESDIR}"/next-resource-handle.patch \
-   "${FILESDIR}"/wayland-wsys.patch
+   epatch "${FILESDIR}"/next-resource-handle.patch
 }
 
 src_install() {



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

2017-07-19 Thread Patrice Clement
commit: 5f2232110a087c77505b1e19f162c60fe6e33501
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 19 08:13:55 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 19 08:55:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f223211

media-libs/raspberrypi-userland: tidy up ebuild and add missing dies.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../raspberrypi-userland-0_pre20160424.ebuild  | 26 +-
 1 file changed, 15 insertions(+), 11 deletions(-)

diff --git 
a/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild 
b/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild
index 44af1834f38..fb3240d5919 100644
--- a/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild
+++ b/media-libs/raspberrypi-userland/raspberrypi-userland-0_pre20160424.ebuild
@@ -19,9 +19,12 @@ else
S="${WORKDIR}/raspberrypi-userland-${GIT_COMMIT}"
 fi
 
-RDEPEND="!media-libs/raspberrypi-userland-bin
+RDEPEND="
+   !media-libs/raspberrypi-userland-bin
wayland? ( dev-libs/wayland )"
-DEPEND="${RDEPEND}
+
+DEPEND="
+   ${RDEPEND}
wayland? ( virtual/pkgconfig )"
 
 IUSE="examples wayland"
@@ -66,7 +69,7 @@ src_install() {
dosym ../../../opt/vc /usr/lib/opengl/${PN}
 
# tell eselect opengl that we do not have libGL
-   touch "${ED}"/opt/vc/.gles-only
+   touch "${ED}"/opt/vc/.gles-only || die
 
insinto /opt/vc/lib/pkgconfig
doins "${FILESDIR}"/bcm_host.pc
@@ -74,7 +77,7 @@ src_install() {
doins "${FILESDIR}"/glesv2.pc
if use wayland; then
# Missing wayland-egl version from the patch; claim 9.0 (a mesa 
version) for now, so gst-plugins-bad wayland-egl check is happy
-   sed -i -e 's/Version:  /Version: 9.0/' 
"${ED}"/opt/vc/lib/pkgconfig/wayland-egl.pc
+   sed -i -e 's/Version:  /Version: 9.0/' 
"${ED}/opt/vc/lib/pkgconfig/wayland-egl.pc" || die
doins "${ED}"/opt/vc/lib/pkgconfig/wayland-egl.pc # Maybe move?
fi
 
@@ -82,24 +85,25 @@ src_install() {
einfo "Fixing #include \"vcos_platform_types.h\""
for file in $(grep -l "#include \"vcos_platform_types.h\"" 
"${D}"/opt/vc/include/* -r); do
einfo "  Fixing file ${file}"
-   sed -i "s%#include \"vcos_platform_types.h\"%#include 
\"interface/vcos/pthreads/vcos_platform_types.h\"%g" ${file}
+   sed -i "s%#include \"vcos_platform_types.h\"%#include 
\"interface/vcos/pthreads/vcos_platform_types.h\"%g" ${file} || die
done
+
einfo "Fixing #include \"vcos_platform.h\""
for file in $(grep -l "#include \"vcos_platform.h\"" 
"${D}"/opt/vc/include/* -r); do
einfo "  Fixing file ${file}"
-   sed -i "s%#include \"vcos_platform.h\"%#include 
\"interface/vcos/pthreads/vcos_platform.h\"%g" ${file}
+   sed -i "s%#include \"vcos_platform.h\"%#include 
\"interface/vcos/pthreads/vcos_platform.h\"%g" ${file} || die
done
+
einfo "Fixing #include \"vchost_config.h\""
for file in $(grep -l "#include \"vchost_config.h\"" 
"${D}"/opt/vc/include/* -r); do
einfo "  Fixing file ${file}"
-   sed -i "s%#include \"vchost_config.h\"%#include 
\"interface/vmcs_host/linux/vchost_config.h\"%g" ${file}
+   sed -i "s%#include \"vchost_config.h\"%#include 
\"interface/vmcs_host/linux/vchost_config.h\"%g" ${file} || die
done
 
-   if use examples ; then
+   if use examples; then
dodir /usr/share/doc/${PF}/examples
mv "${D}"/opt/vc/src/hello_pi 
"${D}"/usr/share/doc/${PF}/examples/ || die
-   rm -fr "${D}"/opt/vc/src
-   else
-   rm -fr "${D}/opt/vc/src"
fi
+
+   rm -rfv "${D}"/opt/vc/src || die
 }



[gentoo-commits] repo/gentoo:master commit in: media-sound/gejengel/, profiles/, net-voip/homer/, media-sound/gejengel/files/

2017-07-19 Thread Pacho Ramos
commit: 3e01f8995509bf70401e31b784ecc523d1af14c7
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Jul 19 08:21:46 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Jul 19 08:21:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e01f899

Remove hardmasked packages

 media-sound/gejengel/Manifest  |  1 -
 media-sound/gejengel/files/0.1.4-flac_ln.patch | 42 ---
 media-sound/gejengel/files/bckport-debug.patch | 14 
 .../gejengel/files/gejengel-0.1.4-ffmpeg-1.patch   | 36 --
 .../gejengel/files/gejengel-0.1.4-ffmpeg.patch | 13 
 .../gejengel/files/gejengel-0.1.4-ffmpeg2.patch| 24 ---
 .../gejengel/files/gejengel-0.1.4-libav9.patch | 21 --
 .../files/gejengel-0.1.4-libnotify-0.7.patch   | 26 ---
 media-sound/gejengel/gejengel-0.1.4-r2.ebuild  | 75 
 media-sound/gejengel/gejengel-0.1.4-r3.ebuild  | 81 --
 media-sound/gejengel/metadata.xml  | 14 
 net-voip/homer/Manifest|  2 -
 net-voip/homer/homer-0.25-r1.ebuild| 79 -
 net-voip/homer/homer-.ebuild   | 72 ---
 net-voip/homer/metadata.xml| 17 -
 profiles/package.mask  | 10 ---
 16 files changed, 527 deletions(-)

diff --git a/media-sound/gejengel/Manifest b/media-sound/gejengel/Manifest
deleted file mode 100644
index 1c405a2ba19..000
--- a/media-sound/gejengel/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gejengel-0.1.4.tar.gz 473674 SHA256 
036a4ff2520b6ff9f73fc3012d8810939583f0dc25be6bac28689dffb6e9023b SHA512 
584a6250ec87475babbeff86c7f2427cf731b3ec0906dcc6219bf40cf1c5533feaf3f076d0f34daeaa21a1c2596e5fe53e4530820a6d47dbca7f9afd6f489580
 WHIRLPOOL 
0afd7138782f6337bf7aa770ae8dbddf3d037978ffabf6b7f9c5fe6e1a3354714d9d80e7414c27b8250be8f41d7476454f2c1408b8709d063e61774d316f

diff --git a/media-sound/gejengel/files/0.1.4-flac_ln.patch 
b/media-sound/gejengel/files/0.1.4-flac_ln.patch
deleted file mode 100644
index 2d4473e227a..000
--- a/media-sound/gejengel/files/0.1.4-flac_ln.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-Fixes Bug #542708
-The code uses functionality provided by libFLAC and libFLAC++ but only linked 
against libFLAC++.
-Included also is a check for libFLAC availability and added linking against 
libFLAC
 a/gejengel-0.1.4/configure.ac
-+++ b/gejengel-0.1.4/configure.ac
-@@ -129,14 +129,20 @@ AC_ARG_ENABLE(flac,
- [ enable_flac=$enableval ] )
- 
- if test "$enable_flac" != "no"; then
--PKG_CHECK_MODULES(FLAC, flac++, HAVE_FLAC=yes, HAVE_FLAC=no)
-+PKG_CHECK_MODULES(FLAC, flac, HAVE_FLAC=yes, HAVE_FLAC=no)
- if test $HAVE_FLAC = yes; then
--AC_DEFINE(HAVE_FLAC, [1], Flac support enabled)
--AC_SUBST(FLAC_CFLAGS)
--AC_SUBST(FLAC_LIBS)
-+  AC_DEFINE(HAVE_FLAC, [1], Flac found)
-+  AC_SUBST(FLAC_CFLAGS)
-+  AC_SUBST(FLAC_LIBS)
-+PKG_CHECK_MODULES(FLACPP, flac++, HAVE_FLACPP=yes, HAVE_FLACPP=no)
-+if test $HAVE_FLACPP = yes; then
-+AC_DEFINE(HAVE_FLACPP, [1], Flac support enabled)
-+AC_SUBST(FLACPP_CFLAGS)
-+AC_SUBST(FLACPP_LIBS)
-+fi
- fi
- fi
--AM_CONDITIONAL(FLAC, test "$HAVE_FLAC" = "yes")
-+AM_CONDITIONAL(FLAC, test "$HAVE_FLACPP" = "yes")
- 
- 
- # Mad
 a/gejengel-0.1.4/Makefile.am
-+++ b/gejengel-0.1.4/Makefile.am
-@@ -256,7 +256,7 @@ libgejengel_la_LIBADD = libutils.la \
- libmusiclibrary.la \
- libcore.la \
- libplugins.la -lpthread \
--$(FFMPEG_LIBS) $(ALSA_LIBS) $(OPENAL_LIBS) 
$(GLIBMM_LIBS) $(SQLITE3_LIBS) $(TAGLIB_LIBS) $(LASTFM_LIBS) $(LIBNOTIFY_LIBS) 
$(PULSE_LIBS) $(IMAGEMAGICK_LIBS) $(GSTREAMER_LIBS) $(FLAC_LIBS) $(MAD_LIBS) 
$(DBUS_LIBS) $(XDGBASEDIR_LIBS)
-+$(FFMPEG_LIBS) $(ALSA_LIBS) $(OPENAL_LIBS) 
$(GLIBMM_LIBS) $(SQLITE3_LIBS) $(TAGLIB_LIBS) $(LASTFM_LIBS) $(LIBNOTIFY_LIBS) 
$(PULSE_LIBS) $(IMAGEMAGICK_LIBS) $(GSTREAMER_LIBS) $(FLACPP_LIBS) $(FLAC_LIBS) 
$(MAD_LIBS) $(DBUS_LIBS) $(XDGBASEDIR_LIBS)
- 
- bin_PROGRAMS = gejengel
- 

diff --git a/media-sound/gejengel/files/bckport-debug.patch 
b/media-sound/gejengel/files/bckport-debug.patch
deleted file mode 100644
index 76e42bec1bf..000
--- a/media-sound/gejengel/files/bckport-debug.patch
+++ /dev/null
@@ -1,14 +0,0 @@
 src/AudioDecoder/ffmpegdecoder.cpp.orig
-+++ src/AudioDecoder/ffmpegdecoder.cpp
-@@ -98,7 +98,11 @@ void FFmpegDecoder::initialise()
- }
- 
- #ifdef ENABLE_DEBUG
-+#if LIBAVCODEC_VERSION_MAJOR < 53
- dump_format(m_pFormatContext, 0, m_Filepath.c_str(), false);
-+#else
-+av_dump_format(m_pFormatContext, 0, m_Filepath.c_str(), false);
-+#endif
- #endif
- 
- 

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

2017-07-19 Thread Amy Liffey
commit: 5616bbbed51a0890df9577e0aa64f2d5b5489cdd
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed Jul 19 08:55:16 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed Jul 19 08:56:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5616bbbe

dev-tcltk/tls: version bump 1.7.11 bug #605720

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-tcltk/tls/Manifest  |  1 +
 dev-tcltk/tls/tls-1.7.11.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-tcltk/tls/Manifest b/dev-tcltk/tls/Manifest
index da1c6142184..62680efbdc6 100644
--- a/dev-tcltk/tls/Manifest
+++ b/dev-tcltk/tls/Manifest
@@ -1,2 +1,3 @@
+DIST tcltls-1.7.11.tar.gz 158181 SHA256 
6c9ec017751a0bd6546780273f2992cee6786c2199e6798ec2e25367ff577f60 SHA512 
7a9aa33d7ed606ba792b4ff5a817a94f880b7204795ac30ab386299ee5850c7dfde920f35056676afa2db23866ad4fc6cb6c6b9e7a7dfba7385f97f447de2e04
 WHIRLPOOL 
5a1f29bf812332218e5805598dd5bb0a70fd7342b2c5259fc9283457e202bf35399339254cfa10b7622df38e6822ab8cf7652708436f10fa400073762fdbc59e
 DIST tls1.6-src.tar.gz 168043 SHA256 
adec50143a9ad634a671d24f7c7bbf2455487eb5f12d290f41797c32a98b93f3 SHA512 
beaca2653a11924f022e28254cef5071ecb8ab2e2355496d278fcab1bdcc46424aa58d2fe176aea26ec4fbe4416a912b5af8e8e69571c8a5301b7921ecf48383
 WHIRLPOOL 
5769eccd4df94558d7b5cdaa7234f4b248e3d8108686c3104bfa53a709a444088cdbf51b9660ecaa1f213c9391afbf81108ed330fe41bed3409d3c9364ac9790
 DIST tls1.6.7-src.tar.gz 173654 SHA256 
5119de3e5470359b97a8a00d861c9c48433571ee0167af0a952de66c99d3a3b8 SHA512 
f8dbb7fc9890bcb3e3930cad66209ca67cd68c0aa2288caa6a3bb1fd1ad21444f1eb056b4b4585ec86da64079cd9df72cdd6ff201102820d45e6397d6148d21c
 WHIRLPOOL 
3aa6f39995c89569d9365a118d096b628f11c9163be8b90cdd5dbf4f59502c78906da311ba5e47ef97f01e2980992d3a5fa4bfbb6c56dbc804a6d24e1f99439b

diff --git a/dev-tcltk/tls/tls-1.7.11.ebuild b/dev-tcltk/tls/tls-1.7.11.ebuild
new file mode 100644
index 000..7b22e45bf9d
--- /dev/null
+++ b/dev-tcltk/tls/tls-1.7.11.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils
+
+MY_P="tcl${PN}-${PV}"
+
+DESCRIPTION="TLS OpenSSL extension to Tcl"
+HOMEPAGE="http://tls.sourceforge.net/;
+SRC_URI="https://core.tcl.tk/tcltls/uv/tcl${PN}-${PV}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+IUSE="tk"
+
+DEPEND="
+   dev-lang/tcl:0=
+   dev-libs/openssl:0=
+   tk? ( dev-lang/tk:0= )"
+RDEPEND="${DEPEND}"
+
+RESTRICT="test"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf \
+   --with-ssl-dir="${EPREFIX}/usr" \
+   --with-tcl="${EPREFIX}/usr/$(get_libdir)"
+}
+
+src_install() {
+   default
+   dodoc tls.htm
+
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   # this is ugly, but fixing the makefile mess is even worse
+   local loc=usr/$(get_libdir)/tls1.7/libtls1.7.dylib
+   install_name_tool -id "${EPREFIX}"/${loc} "${ED}"/${loc} || die
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-util/include-what-you-use/

2017-07-19 Thread Sergei Trofimovich
commit: 78579a637842b8fbca0df36d32a83183f53fea28
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jul 19 08:27:24 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jul 19 08:27:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78579a63

dev-util/include-what-you-use: bump up to 4.0, clang-4 compatible, bug #625528

Upstream did not yet publish the release on it's site.
We might need to update the ebuild if release re-cut happens.

Reported-by: Daniel M. Weeks
Bug: https://bugs.gentoo.org/625528
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-util/include-what-you-use/Manifest |  1 +
 .../include-what-you-use-4.0.ebuild| 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-util/include-what-you-use/Manifest 
b/dev-util/include-what-you-use/Manifest
index 23c05a1d0b8..78604e47b64 100644
--- a/dev-util/include-what-you-use/Manifest
+++ b/dev-util/include-what-you-use/Manifest
@@ -1 +1,2 @@
 DIST include-what-you-use-3.9.src.tar.gz 446773 SHA256 
bbea3ddbd2e0990f4edd92a994a94ca24e2ee0edba6bd5612f62e872554d777a SHA512 
dd7990fa4112ddb0434807efd9dcf0f77bbecaa61eab51be24428f8e45b9321c7647a979278f3f1266ba9be05c6f1de536fc084613d38638b795248001ce4b44
 WHIRLPOOL 
67b4acabb887cb80c290817ab848a115b2559bcc5187f05e320ea4bdef6e9915766d824069ce1f060058ba3597b85223419fb4d932ebb536d25ef0a6de64aee2
+DIST include-what-you-use-4.0.src.tar.gz 437340 SHA256 
8f6d4a279afcbbfa7247a97a03d9abc1d6834954eec7ba733519401392b328c6 SHA512 
c96b78ec8f8289bfd7830acaf533aea0077bb36311d3b8bb7f31464c1b3a5b3f353b24e81ffc581811b4083d3b5959e4e947e3a3d16cb7c77de00b05b9972a90
 WHIRLPOOL 
63fc4df0ca3be81a8856aec22bffe3dbdebde060a91c85b38ad2e1202d8e20291d006c1739851434cc5c98dc6b3b66b9287623a8576976c741dfd6c08f5677c6

diff --git a/dev-util/include-what-you-use/include-what-you-use-4.0.ebuild 
b/dev-util/include-what-you-use/include-what-you-use-4.0.ebuild
new file mode 100644
index 000..cb7b16cd717
--- /dev/null
+++ b/dev-util/include-what-you-use/include-what-you-use-4.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit cmake-utils flag-o-matic python-single-r1
+
+DESCRIPTION="Find unused include directives in C/C++ programs"
+HOMEPAGE="https://include-what-you-use.org/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/clang_${PV}.tar.gz -> 
${P}.src.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="=sys-devel/llvm-${PV}*
+   =sys-devel/clang-${PV}*
+   ${PYTHON_DEPS}
+"
+DEPEND="${RDEPEND}"
+
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+S=${WORKDIR}/${PN}-clang_${PV}
+
+src_prepare() {
+   python_fix_shebang .
+   default
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DIWYU_LLVM_INCLUDE_PATH=$(llvm-config --includedir)
+   -DIWYU_LLVM_LIB_PATH=$(llvm-config --libdir)
+   )
+   cmake-utils_src_configure
+}
+
+src_test() {
+   "${EPYTHON}" run_iwyu_tests.py
+}



[gentoo-commits] repo/gentoo:master commit in: app-editors/bluefish/

2017-07-19 Thread Amy Liffey
commit: 491c10564445614ba27add4cfa54ddbacfe111e2
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed Jul 19 08:22:21 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed Jul 19 08:26:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=491c1056

app-editors/bluefish: remove redundant dep bug #593232

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-editors/bluefish/bluefish-2.2.10.ebuild | 1 -
 app-editors/bluefish/bluefish-2.2.8.ebuild  | 1 -
 app-editors/bluefish/bluefish-2.2.9.ebuild  | 1 -
 3 files changed, 3 deletions(-)

diff --git a/app-editors/bluefish/bluefish-2.2.10.ebuild 
b/app-editors/bluefish/bluefish-2.2.10.ebuild
index 7247ae901c8..edf1fbd4866 100644
--- a/app-editors/bluefish/bluefish-2.2.10.ebuild
+++ b/app-editors/bluefish/bluefish-2.2.10.ebuild
@@ -20,7 +20,6 @@ IUSE="+gtk3 gucharmap nls python spell"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND="
-   gnome-extra/gucharmap:2.90
sys-libs/zlib
!gtk3? ( x11-libs/gtk+:2 )
gtk3? (

diff --git a/app-editors/bluefish/bluefish-2.2.8.ebuild 
b/app-editors/bluefish/bluefish-2.2.8.ebuild
index 4bf7e1880a7..bf84c0859b2 100644
--- a/app-editors/bluefish/bluefish-2.2.8.ebuild
+++ b/app-editors/bluefish/bluefish-2.2.8.ebuild
@@ -19,7 +19,6 @@ SLOT="0"
 IUSE="gtk2 +gtk3 gucharmap nls python spell"
 
 RDEPEND="
-   gnome-extra/gucharmap:2.90
sys-libs/zlib
gtk2? ( x11-libs/gtk+:2 )
gtk3? ( x11-libs/gtk+:3 )

diff --git a/app-editors/bluefish/bluefish-2.2.9.ebuild 
b/app-editors/bluefish/bluefish-2.2.9.ebuild
index 7247ae901c8..edf1fbd4866 100644
--- a/app-editors/bluefish/bluefish-2.2.9.ebuild
+++ b/app-editors/bluefish/bluefish-2.2.9.ebuild
@@ -20,7 +20,6 @@ IUSE="+gtk3 gucharmap nls python spell"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 
 RDEPEND="
-   gnome-extra/gucharmap:2.90
sys-libs/zlib
!gtk3? ( x11-libs/gtk+:2 )
gtk3? (



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

2017-07-19 Thread Hans de Graaff
commit: 3add991ac754831e672ac4acfd5cf53820461442
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:22:45 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:22:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3add991a

dev-ruby/patron: add 0.9.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/patron/Manifest|  1 +
 dev-ruby/patron/patron-0.9.1.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index c9ccbd3d312..7f063ff81a7 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,3 +1,4 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
 DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139
 DIST patron-0.8.0.gem 57856 SHA256 
954db224e16421c78c55d190b2310c3201c68e72767908faead76a9c5a5159df SHA512 
43d6ae99aa3db3c5dabd2c3ec7fe5371a204d6e6ccec2c50b0cc126878b0db583e8a266b2b8e0f3ce7cdfde046bd36622e26d653e7ccae7b493ec924021b5f16
 WHIRLPOOL 
b176ced2464b52c3a1bd4412e8c5d0ca7c3c8ee6da2c7c59cf4442c04eeefd07cd6c1c76d93cb2c6ba63c51326d8e1c317e760bf7bbf7506f43ca923a105c04a
+DIST patron-0.9.1.gem 59904 SHA256 
6d5d2e89ab551d081dce572d2fbfed4e98ee7e7dccc144a69bcc17c7ad955ef3 SHA512 
649ee01517369d44009ccf5af4ac5f758893df84259b604be2f5015f9a9015a20a60eb2d6de9873ffa800c49a080e458d2a451222af4783261991c6c134785f7
 WHIRLPOOL 
c10234d797e3a52e49fb25a9be6c468066e3792bedd00fe14165b514e91712a9b19accc4a1d5c1741da2ba5cc6541f25e4f62ccab77248fcfd9bac5ec55daf19

diff --git a/dev-ruby/patron/patron-0.9.1.ebuild 
b/dev-ruby/patron/patron-0.9.1.ebuild
new file mode 100644
index 000..aad086404b0
--- /dev/null
+++ b/dev-ruby/patron/patron-0.9.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2017-07-19 Thread Hans de Graaff
commit: af8a796cfef0b05f5224056f5a97fd8f7ed2ec1b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 06:41:23 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 06:41:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af8a796c

dev-ruby/http: move ~x86 keyword forward

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/http/http-0.9.8-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/http/http-0.9.8-r1.ebuild 
b/dev-ruby/http/http-0.9.8-r1.ebuild
index ad8e20596ab..3b7bceb464a 100644
--- a/dev-ruby/http/http-0.9.8-r1.ebuild
+++ b/dev-ruby/http/http-0.9.8-r1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/tarcieri/http;
 
 LICENSE="MIT"
 SLOT="0.8"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_rdepend "



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

2017-07-19 Thread Hans de Graaff
commit: 348a19e22bc8c17bea357ff32dea38072da3bce5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:53:09 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:53:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=348a19e2

dev-ruby/slop: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/slop/slop-3.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/slop/slop-3.6.0.ebuild b/dev-ruby/slop/slop-3.6.0.ebuild
index 62e37cc275b..7528cd58a05 100644
--- a/dev-ruby/slop/slop-3.6.0.ebuild
+++ b/dev-ruby/slop/slop-3.6.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"



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

2017-07-19 Thread Hans de Graaff
commit: 979826d455e0b486922bd33377033f71435d165d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 06:23:22 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 06:23:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=979826d4

dev-ruby/mini_magick: add 4.8.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/mini_magick/Manifest |  1 +
 dev-ruby/mini_magick/mini_magick-4.8.0.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/mini_magick/Manifest b/dev-ruby/mini_magick/Manifest
index 7421a51107d..e7a786c0947 100644
--- a/dev-ruby/mini_magick/Manifest
+++ b/dev-ruby/mini_magick/Manifest
@@ -1 +1,2 @@
 DIST mini_magick-4.5.1.tar.gz 1113157 SHA256 
4222e9c8b84914230669e0a180a2e1d68e6c3d0d2b9e2464faf664bd545e8522 SHA512 
d586f8a33e1050923311bbd26209ba01488b5249335a19898df47479e4dfca25fba33db6dd57da420e73fbc48eab27723fb4937a7a932c1b39143bfd02bea654
 WHIRLPOOL 
623b01092ff2e4647a318ee67025d04cdacba252dcae87139d88a1eef535262af38a80d72f08b49cf6889d0ec95a876bfd2482ef66e5b4242f92ea3075fb0705
+DIST mini_magick-4.8.0.tar.gz 1184374 SHA256 
1fe7d28eeeb5242fd7d0274f796c253c734a3636216b8bfc74d01ac77ea2be09 SHA512 
7c582c967480f51114c42eec2f8c260713755fa3e6078eaf5a296b0cb4502f2edd1dd65d5ef46409226943913b81e8818fc3066a09879e9da7dcb0f9f732f6d4
 WHIRLPOOL 
ed4baf27d9ed3e97f78adb367c4878944a8438662c7f2f069eae7e0a33423427045b0fffa6560996b6e572dd6c4acd822d1a5e0aaa31093b1f645a80dce571d1

diff --git a/dev-ruby/mini_magick/mini_magick-4.8.0.ebuild 
b/dev-ruby/mini_magick/mini_magick-4.8.0.ebuild
new file mode 100644
index 000..cb55de611fe
--- /dev/null
+++ b/dev-ruby/mini_magick/mini_magick-4.8.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="Manipulate images with minimal use of memory"
+HOMEPAGE="https://github.com/minimagick/minimagick;
+SRC_URI="https://github.com/minimagick/minimagick/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="minimagick-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+# It's only used at runtime in this case because this extension only
+# _calls_ the commands. But when we run tests we're going to need tiff
+# and jpeg support at a minimum.
+RDEPEND+=" media-gfx/imagemagick"
+DEPEND+=" test? ( virtual/imagemagick-tools[jpeg,png,tiff] )"
+
+ruby_add_bdepend "test? ( dev-ruby/mocha dev-ruby/posix-spawn dev-ruby/webmock 
)"
+
+all_ruby_prepare() {
+   # remove executable bit from all files
+   find "${S}" -type f -exec chmod -x {} +
+
+   sed -i -e '/\([Bb]undler\|pry\)/ s:^:#:' spec/spec_helper.rb || die
+
+   # Don't force a specific formatter but use overall Gentoo defaults.
+   sed -i -e '/config.formatter/d' spec/spec_helper.rb || die
+
+   # Avoid broken spec that does not assume . in path name
+   sed -i -e '/reformats a layer/,/end/ s:^:#:' 
spec/lib/mini_magick/image_spec.rb || die
+
+   # Avoid failing spec that also fails in upstream Travis
+   sed -i -e '/returns a hash of verbose information/,/^end/ 
s:^:#:' spec/lib/mini_magick/image_spec.rb || die
+
+   # Make spec more lenient to imagemagick quoting
+   sed -i -e "/unable to open image/ s/'foo'/.foo./" 
spec/lib/mini_magick/shell_spec.rb || die
+
+   # Avoid graphicsmagick tests because installing both in parallel for
+   # tests is hard.
+   sed -i -e 's/:graphicsmagick//' spec/spec_helper.rb || die
+   sed -i -e '/identifies when gm exists/,/^end/ s:^:#:' 
spec/lib/mini_magick/utilities_spec.rb || die
+   sed -i -e '/returns GraphicsMagick/,/^end/ s:^:#:' 
spec/lib/mini_magick_spec.rb || die
+}



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

2017-07-19 Thread Hans de Graaff
commit: a8a97c4aaee035ed436db37a5b1948b647e67ba8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:48:23 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:48:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8a97c4a

dev-ruby/spy: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/spy/spy-0.4.5.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-ruby/spy/spy-0.4.5.ebuild b/dev-ruby/spy/spy-0.4.5.ebuild
index 1eb1be41d11..59a323e63e2 100644
--- a/dev-ruby/spy/spy-0.4.5.ebuild
+++ b/dev-ruby/spy/spy-0.4.5.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_DOC="yard"
 RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
@@ -17,9 +17,8 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-ruby_add_bdepend "test? ( dev-ruby/minitest:0
-   dev-ruby/pry )"
+ruby_add_bdepend "test? ( dev-ruby/minitest:0 )"
 
 all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/pry-nav/d" -e "/[Cc]overalls/d" Rakefile 
test/test_helper.rb || die
+   sed -i -e "/bundler/d" -e "/pry/d" -e "/[Cc]overalls/d" Rakefile 
test/test_helper.rb || die
 }



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

2017-07-19 Thread Hans de Graaff
commit: 29a892f4c47ef9c50ab14d76d0b1e70aecf5f179
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:44:52 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:44:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a892f4

dev-ruby/spy: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/spy/Manifest |  2 --
 dev-ruby/spy/spy-0.4.2.ebuild | 25 -
 dev-ruby/spy/spy-0.4.3.ebuild | 25 -
 3 files changed, 52 deletions(-)

diff --git a/dev-ruby/spy/Manifest b/dev-ruby/spy/Manifest
index fdde2f4b140..a86344ea507 100644
--- a/dev-ruby/spy/Manifest
+++ b/dev-ruby/spy/Manifest
@@ -1,3 +1 @@
-DIST spy-0.4.2.gem 32768 SHA256 
6d53785192bf5628a566d6547eed2b78e58d791c9b897996306183c924fa96c3 SHA512 
0c5dd93857c09b55b8e6f6fa8468deadcaf4bd0c5dbddcadb466eba1552996730a57e9e71eb91871dcdde64692b0fec2d683a1e88811cfada8495c5b03f78a8f
 WHIRLPOOL 
e27a35ed8192c16440b8f645133d917a542fc914c264f2c177a60ea0c0fd3b71a36060e65dd041d23b786397500c0b7d4f5ad36cb1992305923ed9733bde5f2b
-DIST spy-0.4.3.gem 32768 SHA256 
24ada060ce2f66da4b9f68bdf90f94c1576f12dcb365f5730146db17cb8594fd SHA512 
0c7a7e68f4e7907f7588bc2c3285903d40d7bcdaf3fbc5194d1e259b8ed53802f28ff66c5829b92debfb700f718aa1bb96cd94a561b2a143a41db0e9c3202469
 WHIRLPOOL 
b9f0951e6204e05307beeb80e3c75f970d49dc29701b11808a5c9ecf9049442d95b1e88c9cfc1fdd30d3c28007a5df6728fbc4c709a2d719995c04b11ab02df2
 DIST spy-0.4.5.gem 32768 SHA256 
dd9c977a9106ec0385e85c294c537abb2bfab23155cf54066ffd11b2131a5567 SHA512 
f006809cbe1118c3f629bff29dae141039d8ec098f6ce217907304d4ab159cdf1b357dc5008e84c44385bb48aea2c36a1b70c8db363d02403316792c7b4e211e
 WHIRLPOOL 
f12fc6282c2483b4c9c3e32dc91a58b2d6aac57ce8fc47346cf6a79b3964ed225a084383f50b0dcf337fe6834531c8c89dd9f1f9c79ccb39d7dee4fc234bdbac

diff --git a/dev-ruby/spy/spy-0.4.2.ebuild b/dev-ruby/spy/spy-0.4.2.ebuild
deleted file mode 100644
index 9dc674c7ba3..000
--- a/dev-ruby/spy/spy-0.4.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="A simple opinionated mocking framework"
-HOMEPAGE="https://github.com/ryanong/spy;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/minitest:0
-   dev-ruby/pry )"
-
-all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/pry-nav/d" -e "/[Cc]overalls/d" Rakefile 
test/test_helper.rb || die
-}

diff --git a/dev-ruby/spy/spy-0.4.3.ebuild b/dev-ruby/spy/spy-0.4.3.ebuild
deleted file mode 100644
index 9dc674c7ba3..000
--- a/dev-ruby/spy/spy-0.4.3.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
-
-inherit multilib ruby-fakegem
-
-DESCRIPTION="A simple opinionated mocking framework"
-HOMEPAGE="https://github.com/ryanong/spy;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_bdepend "test? ( dev-ruby/minitest:0
-   dev-ruby/pry )"
-
-all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/pry-nav/d" -e "/[Cc]overalls/d" Rakefile 
test/test_helper.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/bundler-audit/

2017-07-19 Thread Hans de Graaff
commit: ffc781dbea3ea473b1c138b21c234d45bc5f17e7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:35:40 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:35:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffc781db

dev-ruby/bundler-audit: add 0.6.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/bundler-audit/Manifest   |  1 +
 dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/bundler-audit/Manifest b/dev-ruby/bundler-audit/Manifest
index 3f4ff193826..1cb4b0d83ad 100644
--- a/dev-ruby/bundler-audit/Manifest
+++ b/dev-ruby/bundler-audit/Manifest
@@ -1 +1,2 @@
 DIST bundler-audit-0.5.0.gem 99328 SHA256 
2beb13862bd1ff50f953ac18297da675f5b4516dfef71c8da9473597aa9927bf SHA512 
c618912f7d22b1a60dfeeaf8a278abccc3c0ec8d8dd2ea5988a0b04d6992015decf852dd507e7acd3abd19c8a62ac21f099a49aecfe04e3499a76879afb63fb7
 WHIRLPOOL 
719c04df9ddaf83a9d6083f5fb60a2eb5f6724880029421a508da204c372a2152db7d6bbab47eb8c21c0b633e99d0b42d70f7d568c3bf5ac998b1a988977e2d0
+DIST bundler-audit-0.6.0.gem 108544 SHA256 
a2d88bba72c0683b8277f95e3246bbf6c0e1a7f86474cd74d40761a3642708ad SHA512 
28213df41bba20b41b7398a2ac8f2086c5d2b80a7b31340a29b6e7c3818337f11e486284b14f000c590aaea6bb541222c4c5b71421e36a0e0a7c02e0feec9d7a
 WHIRLPOOL 
fbc7c12fcd2773fefe61711ed747d1e5783874ae4eaf36913af2bbcbfad6c3cc4f665806287adf1de3033f00c3bdebc08d221fddf8c339c3e8b26b08eaa96fae

diff --git a/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild 
b/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild
new file mode 100644
index 000..03ab87eaa10
--- /dev/null
+++ b/dev-ruby/bundler-audit/bundler-audit-0.6.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides patch-level verification for Bundled apps"
+HOMEPAGE="https://github.com/rubysec/bundler-audit;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="test"
+
+#tests are trying to download AND have some odd failures
+#rspec ./spec/database_spec.rb:113 # Bundler::Audit::Database#size should eq 
323
+#rspec ./spec/database_spec.rb:117 # Bundler::Audit::Database#advisories 
should return a list of all advisories.
+RESTRICT=test
+
+ruby_add_rdepend "
+   >=dev-ruby/thor-0.18:0
+   >=dev-ruby/bundler-1.2:0
+"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
+
+   # Avoid specs that require network access via 'bundle install'
+   rm spec/{integration,scanner}_spec.rb || die
+
+   # Avoid specs that only work when the source is a git repository
+   sed -i -e '/describe "path"/,/^  end/ s:^:#:' \
+   -e '/describe "update!"/,/^  end/ s:^:#:' \
+   spec/database_spec.rb || die
+}



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

2017-07-19 Thread Hans de Graaff
commit: f98db6596a691e83fca1c91827155278d2c7eed0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 06:54:29 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 06:54:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f98db659

dev-ruby/certificate_authority: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../certificate_authority-0.1.6-r2.ebuild  | 29 ++
 1 file changed, 29 insertions(+)

diff --git 
a/dev-ruby/certificate_authority/certificate_authority-0.1.6-r2.ebuild 
b/dev-ruby/certificate_authority/certificate_authority-0.1.6-r2.ebuild
new file mode 100644
index 000..037269cd4b8
--- /dev/null
+++ b/dev-ruby/certificate_authority/certificate_authority-0.1.6-r2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.rdoc"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Managing the core functions outlined in RFC-3280 for PKI"
+HOMEPAGE="https://github.com/cchandler/certificate_authority;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/activemodel-3.0.6:*"
+
+all_ruby_prepare() {
+   # Avoid dependency on dev-libs/engine_pkcs11 that will be hard to
+   # make work on different arches due to hardwired load paths in
+   # specs.
+   rm -f spec/units/pkcs11_key_material_spec.rb || die
+}



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

2017-07-19 Thread Hans de Graaff
commit: 0bd283c5277e7d828e3d4764c1bedc64b318945e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:47:41 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:47:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bd283c5

dev-ruby/pry: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/pry/Manifest  |  1 -
 dev-ruby/pry/pry-0.10.3.ebuild | 48 --
 2 files changed, 49 deletions(-)

diff --git a/dev-ruby/pry/Manifest b/dev-ruby/pry/Manifest
index 4ccf1362665..e2f17bb4ec3 100644
--- a/dev-ruby/pry/Manifest
+++ b/dev-ruby/pry/Manifest
@@ -1,2 +1 @@
-DIST pry-0.10.3.tar.gz 204253 SHA256 
55760dd7ead762deda51a2acb5340e41d15056eb590c8ea03e46482e59cdde87 SHA512 
5efec76414e6acf6e1f26f39296087a29a72b65b3fc365ad4ebd610b25d109253f2d325fe91508c8bd6eca67bdfe812b74dba8cf687a0fc4e0a5f9f6f6a93c7e
 WHIRLPOOL 
5c6e04e4d89237d0ce7f46e15757c3b4f702cd967a467c0b8ea732124c12a1ff5b4d4de493ca5b5f7512e19394c85c9b240133c3516c79f40b77a1d79754be58
 DIST pry-0.10.4.tar.gz 204296 SHA256 
8c4afb4e2c3fea9ed8b9f17323b5a670db08f9995f2031fe52b3c0c4b41dcd67 SHA512 
0c455945125b210efce7dcde3d7bfbec5d03687847910084c0befd466191ac34446c62a884c6424cd6760d573d1de490de4dacd97b31c87553e32787d99a3687
 WHIRLPOOL 
b402150a090fa9370753e6c9e7cde718e05cfa78b25b4d713c3667aadd466f4238d0a2c86aec36c8619cd0344aaa84d000b729dc25a3dff2268238f01a429c8c

diff --git a/dev-ruby/pry/pry-0.10.3.ebuild b/dev-ruby/pry/pry-0.10.3.ebuild
deleted file mode 100644
index f589cc61d05..000
--- a/dev-ruby/pry/pry-0.10.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
-RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec
-
-inherit ruby-fakegem
-
-DESCRIPTION="Pry is a powerful alternative to the standard IRB shell for Ruby"
-HOMEPAGE="https://github.com/pry/pry/wiki;
-SRC_URI="https://github.com/pry/pry/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-IUSE=""
-SLOT="ruby19"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
-
-ruby_add_rdepend "
-   >=dev-ruby/coderay-1.1.0 =dev-ruby/coderay-1.1*
-   >=dev-ruby/slop-3.4.1:3
-   >=dev-ruby/method_source-0.8.1 =dev-ruby/method_source-0.8*"
-
-ruby_add_bdepend "
-   test? (
-   >=dev-ruby/open4-1.3
-   >=dev-ruby/rake-0.9
-   >=dev-ruby/mocha-1.0
-   )"
-
-all_ruby_prepare() {
-   # Avoid unneeded dependency on git.
-   # Loosen coderay dependency.
-   sed -e '/git ls-files/d' \
-   -e '/coderay/s/~>/>=/' \
-   -e '/bundler/d' \
-   -i ${RUBY_FAKEGEM_GEMSPEC} || die
-   sed -e '/[Bb]undler/d' -e "1irequire 'mocha/api'\ " -i spec/helper.rb 
|| die
-   sed -e "1irequire 'ostruct'\ " -i spec/hooks_spec.rb || die
-   sed -e '/of Class after the singleton classes/,+4d' -i 
spec/method_spec.rb || die
-   # Out of date tests
-   rm spec/commands/gist_spec.rb || die
-}



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

2017-07-19 Thread Hans de Graaff
commit: e272146d426e344fff5740fd12e3bf5f6641b200
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:59:14 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:59:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e272146d

dev-ruby/pry: document ruby24 status

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/pry/pry-0.10.4.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/pry/pry-0.10.4.ebuild b/dev-ruby/pry/pry-0.10.4.ebuild
index 213ad182afc..595f1646912 100644
--- a/dev-ruby/pry/pry-0.10.4.ebuild
+++ b/dev-ruby/pry/pry-0.10.4.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+# ruby24 -> fails tests
+USE_RUBY="ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_RECIPE_DOC="yard"
 RUBY_FAKEGEM_RECIPE_TEST="rspec"



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

2017-07-19 Thread Hans de Graaff
commit: 4c630178325f064caf26ce79865fdadfec72ea29
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Jul 19 05:19:12 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Jul 19 05:19:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c630178

dev-ruby/patron: move ~ppc keyword forward

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/patron/patron-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/patron/patron-0.8.0.ebuild 
b/dev-ruby/patron/patron-0.8.0.ebuild
index f3351b157ed..3e80646fee9 100644
--- a/dev-ruby/patron/patron-0.8.0.ebuild
+++ b/dev-ruby/patron/patron-0.8.0.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://toland.github.com/patron/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND+=" net-misc/curl"



[gentoo-commits] repo/gentoo:master commit in: app-misc/tracker/

2017-07-19 Thread Alexis Ballier
commit: f1d87c66e28364c5d4e5820766ccba3f363c02d4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 19 11:29:19 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 19 11:36:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1d87c66

app-misc/tracker: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-misc/tracker/tracker-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/tracker/tracker-1.10.5.ebuild 
b/app-misc/tracker/tracker-1.10.5.ebuild
index 125892043ce..2f4122fd787 100644
--- a/app-misc/tracker/tracker-1.10.5.ebuild
+++ b/app-misc/tracker/tracker-1.10.5.ebuild
@@ -16,7 +16,7 @@ IUSE="cue elibc_glibc exif ffmpeg firefox-bookmarks flac gif 
gsf gstreamer
 gtk iptc +iso +jpeg libav +miner-fs mp3 nautilus networkmanager pdf playlist
 rss seccomp stemmer test thunderbird +tiff upnp-av upower +vorbis +xml xmp xps"
 
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 REQUIRED_USE="
?? ( gstreamer ffmpeg )



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/nautilus-tracker-tags/

2017-07-19 Thread Alexis Ballier
commit: ab44f450be6b910cf50ecc2f2632e1c8c4d26055
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 19 11:36:09 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 19 11:36:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab44f450

gnome-extra/nautilus-tracker-tags: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.10.5.ebuild 
b/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.10.5.ebuild
index 95c9968c27d..c3c94b391c3 100644
--- a/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.10.5.ebuild
+++ b/gnome-extra/nautilus-tracker-tags/nautilus-tracker-tags-1.10.5.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Tracker;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 COMMON_DEPEND="



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

2017-07-19 Thread Alexis Ballier
commit: 9ae1b0b7ad1fc87873e6e74fa008a498cb37aec7
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 19 11:49:18 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 19 11:49:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ae1b0b7

media-gfx/ufraw: Add patch to fix build on arm. Bug #622484

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 .../ufraw/files/ufraw-0.22-fix-unsigned-char.patch   | 20 
 media-gfx/ufraw/ufraw-0.22-r1.ebuild |  1 +
 2 files changed, 21 insertions(+)

diff --git a/media-gfx/ufraw/files/ufraw-0.22-fix-unsigned-char.patch 
b/media-gfx/ufraw/files/ufraw-0.22-fix-unsigned-char.patch
new file mode 100644
index 000..a5397260ffb
--- /dev/null
+++ b/media-gfx/ufraw/files/ufraw-0.22-fix-unsigned-char.patch
@@ -0,0 +1,20 @@
+Description: Fix unsigned char declaration of src[]
+Author: John Paul Adrian Glaubitz 
+Last-Update: 2017-02-27
+
+https://bugs.gentoo.org/show_bug.cgi?id=622484
+https://sourceforge.net/p/ufraw/bugs/417/
+https://src.fedoraproject.org/cgit/rpms/ufraw.git/tree/05_fix_build_due_to_unsigned_char.patch
+https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=856227
+
+--- ufraw-0.22.orig/dcraw.cc
 ufraw-0.22/dcraw.cc
+@@ -2285,7 +2285,7 @@ void CLASS quicktake_100_load_raw()
+ 
+ void CLASS kodak_radc_load_raw()
+ {
+-  static const char src[] = {
++  static const signed char src[] = {
+ 1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
+ 1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
+ 2,1, 2,3, 3,0, 3,2, 3,4, 4,6, 5,5, 6,7, 6,8,

diff --git a/media-gfx/ufraw/ufraw-0.22-r1.ebuild 
b/media-gfx/ufraw/ufraw-0.22-r1.ebuild
index 155af1ce170..e8bb0325f6c 100644
--- a/media-gfx/ufraw/ufraw-0.22-r1.ebuild
+++ b/media-gfx/ufraw/ufraw-0.22-r1.ebuild
@@ -41,6 +41,7 @@ PATCHES=(
"${FILESDIR}"/${P}-jasper-automagic.patch
"${FILESDIR}"/${P}-crashfix.patch
"${FILESDIR}"/${P}-drop_superfluous_abs.patch
+   "${FILESDIR}"/${P}-fix-unsigned-char.patch
 )
 
 src_prepare() {



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

2017-07-19 Thread Alexis Ballier
commit: 8b353eba771045b2ecbea0a5a5c7da4f6eeba41d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 19 12:25:11 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 19 12:25:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b353eba

media-libs/plotutils: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 media-libs/plotutils/plotutils-2.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/plotutils/plotutils-2.6-r1.ebuild 
b/media-libs/plotutils/plotutils-2.6-r1.ebuild
index 8a3a030e560..5e78143d10b 100644
--- a/media-libs/plotutils/plotutils-2.6-r1.ebuild
+++ b/media-libs/plotutils/plotutils-2.6-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/plotutils/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ppc ppc64 ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="+png static-libs X"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/, www-client/chromium/files/

2017-07-19 Thread PaweƂ Hajdan
commit: c38ed01caecf5bccbf40c542dc4a4816e1b3119b
Author: Pawel Hajdan, Jr  gentoo  org>
AuthorDate: Wed Jul 19 19:03:00 2017 +
Commit: PaweƂ Hajdan  gentoo  org>
CommitDate: Wed Jul 19 19:03:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38ed01c

www-client/chromium: dev channel bump (61.0.3159.5)

Add system-icu USE flag (enabled by default). This will
help users with icu-59, which chromium does not work with yet.

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

 www-client/chromium/Manifest|  2 +-
 0.3141.7.ebuild => chromium-61.0.3159.5.ebuild} | 21 ++---
 www-client/chromium/files/chromium-gcc-r1.patch | 14 ++
 .../chromium/files/chromium-gn-bootstrap-r13.patch  | 18 ++
 www-client/chromium/metadata.xml|  1 +
 5 files changed, 48 insertions(+), 8 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 41100ffa649..aea984c4045 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,5 +1,5 @@
 DIST chromium-59.0.3071.104.tar.xz 531895868 SHA256 
a949fa166cdcdbd8419fbdb4583804613d9845130f0c851e4c647d79a4c300d0 SHA512 
419cf5bafa80f190cd301c2933502351929c1ef1d5cfedc720ce6762674a0e6af3b4246a8f92e0c29743420338b056061d4e7f9f4a4066a5bdd4d2ee8db3ddbf
 WHIRLPOOL 
ab2fbd1beeb485a5c07743a5a84c850b5ad8178a1f97421a0aa0573817b474e633a6ac65ad43f7db67d35d257183ea4eceacd12b4cad63f88cd9777cfa498e68
 DIST chromium-60.0.3112.32.tar.xz 537426032 SHA256 
d972469bfc26a3d135a1863c22b88e23a9f00096841f6392dbb83b75ad0d17f1 SHA512 
625bac567f0717d1077ac77023c87bdd2ad1244d63c50ce6935bcb41b85aab4c06b05fda7e0f48cc7305c331080a350a16592adb37583c13736c97a55404d6ab
 WHIRLPOOL 
78af7bbf83466c044428f294209512c27ed649e746829df083edf8e8fc4eddb23618606ec8571bc4eb433a7d67e921236c562c2c175f3685017ef2576b3f7802
 DIST chromium-60.0.3112.40.tar.xz 537575476 SHA256 
4fdc590fc6ef4af16cc72d790b9eaa50829cd8193893a9ec0719481b03f328d3 SHA512 
0e121887f7158d47a9fdb7c0be43a0b1cb32d19a893f99cfc13e2ce146e553e6428fdd82815180bacb430eace42f8bf83595073cf449f49e963633e8414b07ef
 WHIRLPOOL 
b7b2b62f61c18ed77890383ba1ac2d25094e14c12042fa1b1af50fa1f8d69807673a036fdb54078622e92b32eb7211040fda3513cb079598e3caf1219c594631
-DIST chromium-61.0.3141.7.tar.xz 545315208 SHA256 
3cc9039cb3db48bdd6e1ba74e600fa59c9b7b25fa29f66a6304e1674fde3b12d SHA512 
976c440f9cf5243deb8308b293d7de9c4edfa55ff2635d782d3dc819a344a4fbffd8faef30d2705a3f037a145860181d746cda52116be2d26d1ff3180ce5498e
 WHIRLPOOL 
7122d4f1978cddcc92e7127e42553e92d18196cb128fd98c06847f935ef7a0925ac56b5008dad16dbd96151a6957c0f58bd1675c21810f29d9c13287f5ad4218
 DIST chromium-61.0.3153.4.tar.xz 545739052 SHA256 
ef48c114fed9a9977b731296cf099e62f1b50df07835709b41868c44363c6ec1 SHA512 
693f8f31fb97eb57277a23c2b2f88d055d9f06ed89004874449332186e8e2e7ed63af6566e884ee52c963e8cda0a2b95caae9ebba486b279daca3c9355cda711
 WHIRLPOOL 
be65fe3342a761cc0150d3d42708b9055442e2f5f8619a7d956be173b1abef0cb7b4a0bc4f0e55be0990461665fc2ba1e3b899bdffe328b8d3adc1624b15ea03
+DIST chromium-61.0.3159.5.tar.xz 546362372 SHA256 
34e0e62f5c30df110bd8d5f872021a8a0ee21fc4b6c2d4efcb8a2232612f6e0a SHA512 
325312223a1486fef1ca9d19c215147bdb37d7ab83437a6e38a076099bf450b79fbfba4060234307cba6385f9d82bf9d66c7a178f3ca33eeb0be1acee71e03f0
 WHIRLPOOL 
cecab851eb6b247e7e381cfcac94d43d2b30d38631160ba1393920e241803e3b54402f719677b608ac15734c21ad6e762925e18f92b1b3e40f3aea93886aa721

diff --git a/www-client/chromium/chromium-61.0.3141.7.ebuild 
b/www-client/chromium/chromium-61.0.3159.5.ebuild
similarity index 98%
rename from www-client/chromium/chromium-61.0.3141.7.ebuild
rename to www-client/chromium/chromium-61.0.3159.5.ebuild
index 5573566a78f..0543445d68c 100644
--- a/www-client/chromium/chromium-61.0.3141.7.ebuild
+++ b/www-client/chromium/chromium-61.0.3159.5.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="component-build cups gnome-keyring +gtk3 +hangouts kerberos neon pic 
+proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-libvpx 
+tcmalloc widevine"
+IUSE="component-build cups gnome-keyring +gtk3 +hangouts kerberos neon pic 
+proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu 
+system-libvpx +tcmalloc widevine"
 RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
 
 # Native Client binaries are compiled with different set of flags, bug #452066.
@@ -32,7 +32,7 @@ COMMON_DEPEND="
cups? ( >=net-print/cups-1.3.11:= )
dev-libs/expat:=
dev-libs/glib:2
-   dev-libs/icu:=
+   system-icu? ( dev-libs/icu:= )
dev-libs/libxslt:=
dev-libs/nspr:=
>=dev-libs/nss-3.14.3:=
@@ -186,7 +186,8 @@ src_prepare() {
local PATCHES=(
"${FILESDIR}/${PN}-widevine-r1.patch"
"${FILESDIR}/${PN}-FORTIFY_SOURCE-r2.patch"
-

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

2017-07-19 Thread Brian Evans
SHA512 
5bf7938bfa5989da85216fbca4575397fc05c83e1afac76bd6c0b338a876caf37194f53a2a933d6f69eb31727ca005be617e53a8fdd0a95d8f1f68684c4ba68c
 WHIRLPOOL 
701871ff554970adef8e5eb1e2e966a09c4b59ac7931df125f78a4fcfa415e87767184a9d3418013d27410ad0482673942f1df48d5e5de68917f49e1efa96689
+DIST mysql-extras-20170719-0113Z.tar.bz2 36 SHA256 
30b7e5f981a110ec8e1582939c59ea037559fa1519771d487d591f022b6a148d SHA512 
5e470562e629bd1d104cd1d85e2b57f82b56c8f1f8236d666aca564ed577be50a5818312d8cb2a6a5f18a9c6c6792932fb15f56fd0baac6fadee4411b278f3ce
 WHIRLPOOL 
a5764ea0b9ba33d4a4982b24eeefddbaea4367d9e58b866fa9145e65d53369820762a27d36271c522ea3ad214637d28c3d0db3477d47e68647afada7a3dbbd75

diff --git a/dev-db/mariadb/files/my.cnf-10.2 b/dev-db/mariadb/files/my.cnf-10.2
new file mode 100644
index 000..80b47714b8f
--- /dev/null
+++ b/dev-db/mariadb/files/my.cnf-10.2
@@ -0,0 +1,3 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration 
file.
+
+!includedir @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mariadb.d

diff --git a/dev-db/mariadb/files/my.cnf.distro-client 
b/dev-db/mariadb/files/my.cnf.distro-client
new file mode 100644
index 000..4bbe0f976c6
--- /dev/null
+++ b/dev-db/mariadb/files/my.cnf.distro-client
@@ -0,0 +1,21 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-client.cnf: The global mysql 
configuration file.
+
+# The following options will be passed to all MySQL clients
+[client]
+socket = 
@GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
+character-sets-dir = 
@GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb/charsets
+default-character-set=utf8
+
+[mysql]
+# uncomment the next directive if you are not familiar with SQL
+#safe-updates
+
+[mysqldump]
+quick
+max_allowed_packet = 16M
+
+[myisamchk]
+character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb/charsets
+
+[myisampack]
+character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb/charsets

diff --git a/dev-db/mariadb/files/my.cnf.distro-server 
b/dev-db/mariadb/files/my.cnf.distro-server
new file mode 100644
index 000..eaf80be0a15
--- /dev/null
+++ b/dev-db/mariadb/files/my.cnf.distro-server
@@ -0,0 +1,28 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-server.cnf: The global mysql 
configuration file.
+
+# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations
+[mysqld]
+character-set-server   = utf8
+user   = mysql
+port   = 3306
+socket = 
@GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock
+pid-file   = 
@GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mariadb.pid
+log-error  = 
@GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err
+basedir= 
@GENTOO_PORTAGE_EPREFIX@/usr
+datadir= @DATADIR@
+skip-external-locking
+lc_messages_dir= 
@GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb
+#Set this to your desired error message language
+lc_messages= en_US
+
+# security:
+# using "localhost" in connects uses sockets by default
+# skip-networking
+bind-address   = 127.0.0.1
+
+log-bin
+server-id  = 1
+
+# point the following paths to different dedicated disks
+tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/
+#log-update= 
@GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname

diff --git a/dev-db/mariadb/mariadb-10.2.7.ebuild 
b/dev-db/mariadb/mariadb-10.2.7.ebuild
new file mode 100644
index 000..2c2b8659427
--- /dev/null
+++ b/dev-db/mariadb/mariadb-10.2.7.ebuild
@@ -0,0 +1,401 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+MY_EXTRAS_VER="20170719-0113Z"
+# 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 prefix toolchain-funcs \
+   multilib-minimal mysql-multilib-r1
+
+HOMEPAGE="http://mariadb.org/;
+DESCRIPTION="An enhanced, drop-in replacement for MySQL"
+LICENSE="GPL-2 LGPL-2.1+"
+
+IUSE="+backup bindist cracklib galera kerberos innodb-lz4 innodb-lzo 
innodb-snappy jdbc mroonga odbc oqgraph pam rocksdb sphinx sst-rsync 
sst-xtrabackup tokudb systemd xml"
+RESTRICT="!bindist? ( bindist )"
+
+REQUIRED_USE="jdbc? ( extraengine server !static ) server? ( tokudb? ( 
jemalloc !tcmalloc ) ) static? ( !pam )"
+
+# REMEMBER: also update eclass/mysql*.eclass before committing!
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia

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

2017-07-19 Thread Brian Evans
commit: d33e2fec84a5a392bd203a1f24fc56290d6cb243
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 20:05:42 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 20:17:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d33e2fec

dev-db/mariadb: Version bump for 5.5.57

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index fe6b29069f7..23caadc681f 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -6,6 +6,7 @@ DIST mariadb-10.1.24.tar.gz 61780687 SHA256 
b3df99ae5b1ec8cf6cede4cbc4ae3f54ce66
 DIST mariadb-10.1.25.tar.gz 61790542 SHA256 
7205ecaa6f1bc16335ad88faa5c46be52b3ac628a5e795cb942a3f4335b2a0d6 SHA512 
ae88e02a74f4f8c3b41686a0d46d4232210571072168f6645481d83ed5255ce1fec189827507106898e677d2d9749639d22b139f183ef24dab367b5d81002310
 WHIRLPOOL 
3a28463d4048723110a64c60cb72d07ffd1946a0a68c3e7dcdb085bb7ad0cb3c3b32579fa0587b5895f9c8224aa9414fd0bd55e0a8af6f8401e52ac5a37782fd
 DIST mariadb-10.2.1.tar.gz 55721519 SHA256 
90b7a17f3372c92c12dff084b37fcca8c4cf8106f4dcabd35fadc8efbaa348a2 SHA512 
3dde348e4bba2b6837e0a0671e9ec944aa494e4a01ebb4704e067cc8fe71865aef685f4ce368e9a81c5adeb1e8cc4f3a1b4067193a4b1ffc1fc567bf79a0b4ff
 WHIRLPOOL 
cbf33b7f6fb131a834367214ff4ab49bbda8aebb6e6fe449c7be2648934bcdab79c50a043907c07603f51892041701be59ff45984db43e302b2174f6fd40bc31
 DIST mariadb-5.5.56.tar.gz 45777456 SHA256 
950c3422cb262b16ce133caadbc342219f50f9b45dcc71b8db78fc376a971726 SHA512 
c3d12bf7d78618f3567f9c428800419510fddc62ae8c6715c809dd2cf205689ca910c27adb12033744f8e827a5d824aa2cac4d9ecdee59356bb776a22d45a97b
 WHIRLPOOL 
c4ceef2d653cbc65e8a367194a99e19f87925df8113affd04d66ecc263cb6708ec54382989867376038b4ce7e545daa2a696682fe9b5651fe214932f734970a7
+DIST mariadb-5.5.57.tar.gz 45783940 SHA256 
5dbde98d7e4a5a1721b6cbed7898b2549a88866247951cf586057975c6cea641 SHA512 
5d6350abd6f0ba98326633a36bb7ec67525e34e08cbe43f79c9b30bf0b872b0a8f9f0bfd5f3a4c2800a52d25b9c6f3a3a4a62e0f41574153bbf4b881f5347c71
 WHIRLPOOL 
c2af12fb71b3fcc9989cd2208a44dc81401fe1387ae2d03981fd5d00277d480a35f23bdb8f1564f91b4c345bdb18a610b46ee91f47772ba5de1baf8f808eaec3
 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.57.ebuild 
b/dev-db/mariadb/mariadb-5.5.57.ebuild
new file mode 100644
index 000..aa0132d8a7b
--- /dev/null
+++ b/dev-db/mariadb/mariadb-5.5.57.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+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 ~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
+  

[gentoo-commits] repo/gentoo:master commit in: net-libs/wvstreams/

2017-07-19 Thread Jeroen Roovers
commit: 9b4f1b3401421175797f0b7680916cfc9fc2c92e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 19:22:16 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 19:24:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b4f1b34

net-libs/wvstreams: Maintain.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-libs/wvstreams/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-libs/wvstreams/metadata.xml b/net-libs/wvstreams/metadata.xml
index 048f0f83eb3..bc7e4818799 100644
--- a/net-libs/wvstreams/metadata.xml
+++ b/net-libs/wvstreams/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+
+j...@gentoo.org
+
   
 wvstreams
   



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

2017-07-19 Thread Jeroen Roovers
commit: 4c8f12c3c76d7f1da818bf09891fe2cd4e9266de
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 19:23:43 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 19:24:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c8f12c3

gentoo/profiles: Drop preposterous package.mask entry.

 profiles/package.mask | 7 ---
 1 file changed, 7 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index c6d7c563905..72e70751743 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -185,13 +185,6 @@ app-admin/kedpm
 app-misc/relevation
 
 # Pacho Ramos  (14 Jul 2017)
-# Dead, unmaintained and with multiple bugs (#614810, #611028). Removal in a
-# month.
-net-dialup/wvdial
-net-libs/wvstreams
-net-dialup/qtwvdialer
-
-# Pacho Ramos  (14 Jul 2017)
 # Buggy and needs someone to take care of trying to bump it (#614860).
 # Removal in a month.
 sci-astronomy/skychart



[gentoo-commits] repo/gentoo:master commit in: net-dialup/wvdial/

2017-07-19 Thread Jeroen Roovers
commit: e4687e2630e48008f6e5d1fc57e0fb24e8f56e11
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 19:21:48 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 19:24:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4687e26

net-dialup/wvdial: Maintain.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-dialup/wvdial/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-dialup/wvdial/metadata.xml b/net-dialup/wvdial/metadata.xml
index 1dd65a58001..0d0a7d6c0c4 100644
--- a/net-dialup/wvdial/metadata.xml
+++ b/net-dialup/wvdial/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+
+j...@gentoo.org
+

wvstreams




[gentoo-commits] repo/gentoo:master commit in: app-emulation/libguestfs/

2017-07-19 Thread Ian Stakenvicius
commit: eced2e3ab130ab3dcd346160d77c6d196739bea4
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Wed Jul 19 20:08:42 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Wed Jul 19 20:10:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eced2e3a

app-emulation/libguestfs: bump to EAPI6

The EAPI bump also happens to address the globbing of patches that caused
bug 623516

Bug: http://bugs.gentoo.org/623516

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 28.5-r2.ebuild => libguestfs-1.28.5-r3.ebuild} | 64 --
 1 file changed, 24 insertions(+), 40 deletions(-)

diff --git a/app-emulation/libguestfs/libguestfs-1.28.5-r2.ebuild 
b/app-emulation/libguestfs/libguestfs-1.28.5-r3.ebuild
similarity index 79%
rename from app-emulation/libguestfs/libguestfs-1.28.5-r2.ebuild
rename to app-emulation/libguestfs/libguestfs-1.28.5-r3.ebuild
index b2059211770..44eebef32e9 100644
--- a/app-emulation/libguestfs/libguestfs-1.28.5-r2.ebuild
+++ b/app-emulation/libguestfs/libguestfs-1.28.5-r3.ebuild
@@ -1,15 +1,13 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI=6
 
 WANT_LIBTOOL=latest
 WANT_AUTOMAKE=1.14
-AUTOTOOLS_IN_SOURCE_BUILD=1
 PYTHON_COMPAT=( python{2_7,3_{4,5}} )
 
-inherit python-single-r1 autotools-utils autotools versionator eutils \
-multilib linux-info perl-module base
+inherit python-single-r1 autotools versionator linux-info perl-module
 
 MY_PV_1="$(get_version_component_range 1-2)"
 MY_PV_2="$(get_version_component_range 2)"
@@ -48,54 +46,52 @@ COMMON_DEPEND="
>=app-admin/augeas-1.0.0
sys-fs/squashfs-tools:*
dev-libs/libconfig
-   sys-libs/readline:=
+   sys-libs/readline:0=
>=sys-libs/db-4.6:*
app-arch/xz-utils
app-arch/lzma
app-crypt/gnupg
app-arch/unzip[natspec]
perl? ( virtual/perl-ExtUtils-MakeMaker
-   >=dev-perl/Sys-Virt-0.2.4
-   virtual/perl-Getopt-Long
-   virtual/perl-Data-Dumper
-   dev-perl/libintl-perl
-   >=app-misc/hivex-1.3.1[perl?]
-   dev-perl/String-ShellQuote
-   )
+   >=dev-perl/Sys-Virt-0.2.4
+   virtual/perl-Getopt-Long
+   virtual/perl-Data-Dumper
+   dev-perl/libintl-perl
+   >=app-misc/hivex-1.3.1[perl?]
+   dev-perl/String-ShellQuote
+   )
python? ( ${PYTHON_DEPS} )
-   fuse? ( sys-fs/fuse )
+   fuse? ( sys-fs/fuse:= )
introspection? (
>=dev-libs/gobject-introspection-1.30.0:=
dev-libs/gjs
-   )
+   )
selinux? ( sys-libs/libselinux  sys-libs/libsemanage )
systemtap? ( dev-util/systemtap )
ocaml? ( dev-lang/ocaml[ocamlopt]
-   dev-ml/findlib[ocamlopt]
-   dev-ml/ocaml-gettext
-   )
+   dev-ml/findlib[ocamlopt]
+   dev-ml/ocaml-gettext
+   )
erlang? ( dev-lang/erlang )
inspect-icons? ( media-libs/netpbm
-   media-gfx/icoutils
-   )
+   media-gfx/icoutils
+   )
virtual/acl
sys-libs/libcap
lua? ( dev-lang/lua:* )
>=app-shells/bash-completion-2.0
-   dev-libs/yajl"
+   dev-libs/yajl
+   "
 
 DEPEND="${COMMON_DEPEND}
dev-util/gperf
doc? ( app-text/po4a )
ruby? ( dev-lang/ruby virtual/rubygems dev-ruby/rake )
-   ${AUTOTOOLS_DEPEND}
"
 RDEPEND="${COMMON_DEPEND}
app-emulation/libguestfs-appliance
"
 
-PATCHES=( "${FILESDIR}/${MY_PV_1}"/*.patch  )
-
 DOCS=( AUTHORS BUGS ChangeLog HACKING README TODO )
 
 pkg_setup () {
@@ -106,14 +102,14 @@ pkg_setup () {
 }
 
 src_prepare() {
-   base_src_prepare
+   eapply "${FILESDIR}"/${MY_PV_1}
+   eapply_user
eaclocal
eautomake
eautoconf
 }
 
 src_configure() {
-
# Disable feature test for kvm for more reason
# i.e: not loaded module in __build__ time,
# build server not supported kvm, etc. ...
@@ -122,7 +118,7 @@ src_configure() {
# configured kernel.
export vmchannel_test=no
 
-   local myeconfargs=(
+   econf \
$(use_enable test werror)
--with-libvirt
--with-default-backend=libvirt
@@ -143,28 +139,16 @@ src_configure() {
$(use_enable erlang)
$(use_enable systemtap probes)
$(use_enable lua)
-   )
-   autotools-utils_src_configure
-}
-
-src_compile() {
-   autotools-utils_src_compile
-
-}
-
-src_test() {
-   autotools-utils_src_test
 }
 
 src_install() {
strip-linguas -i po
-   autotools-utils_src_install 

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

2017-07-19 Thread Brian Evans
commit: ef86f04e787fbe10d169caf6f45b219e6f42a387
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 20:07:35 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 20:17:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef86f04e

dev-db/mariadb: Drop old 5.5.56

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-db/mariadb/Manifest  |   1 -
 dev-db/mariadb/mariadb-5.5.56.ebuild | 122 ---
 2 files changed, 123 deletions(-)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 23caadc681f..c03f90cff44 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -5,7 +5,6 @@ DIST mariadb-10.1.23.tar.gz 61772244 SHA256 
54d8114e24bfa5e3ebdc7d69e071ad147191
 DIST mariadb-10.1.24.tar.gz 61780687 SHA256 
b3df99ae5b1ec8cf6cede4cbc4ae3f54ce66464549cba6d56d9ff4d24e4d551e SHA512 
0b8d81b53f6866a81f33559ce57ebf956fec3ba25da0bd58c8bee3b2ecc00a6c37034209d18463f84501d3ba35994b51ef99224616c37cd38d2fc87b73e9
 WHIRLPOOL 
91261a05e3d8b0cad925c382e0cf9a40fcfd3d35ae320c4a9860db110cb5655d1e1f992f9dea8987e50a07dd4a66aa42c9a3470a7acb3d0d706bcef7bc890122
 DIST mariadb-10.1.25.tar.gz 61790542 SHA256 
7205ecaa6f1bc16335ad88faa5c46be52b3ac628a5e795cb942a3f4335b2a0d6 SHA512 
ae88e02a74f4f8c3b41686a0d46d4232210571072168f6645481d83ed5255ce1fec189827507106898e677d2d9749639d22b139f183ef24dab367b5d81002310
 WHIRLPOOL 
3a28463d4048723110a64c60cb72d07ffd1946a0a68c3e7dcdb085bb7ad0cb3c3b32579fa0587b5895f9c8224aa9414fd0bd55e0a8af6f8401e52ac5a37782fd
 DIST mariadb-10.2.1.tar.gz 55721519 SHA256 
90b7a17f3372c92c12dff084b37fcca8c4cf8106f4dcabd35fadc8efbaa348a2 SHA512 
3dde348e4bba2b6837e0a0671e9ec944aa494e4a01ebb4704e067cc8fe71865aef685f4ce368e9a81c5adeb1e8cc4f3a1b4067193a4b1ffc1fc567bf79a0b4ff
 WHIRLPOOL 
cbf33b7f6fb131a834367214ff4ab49bbda8aebb6e6fe449c7be2648934bcdab79c50a043907c07603f51892041701be59ff45984db43e302b2174f6fd40bc31
-DIST mariadb-5.5.56.tar.gz 45777456 SHA256 
950c3422cb262b16ce133caadbc342219f50f9b45dcc71b8db78fc376a971726 SHA512 
c3d12bf7d78618f3567f9c428800419510fddc62ae8c6715c809dd2cf205689ca910c27adb12033744f8e827a5d824aa2cac4d9ecdee59356bb776a22d45a97b
 WHIRLPOOL 
c4ceef2d653cbc65e8a367194a99e19f87925df8113affd04d66ecc263cb6708ec54382989867376038b4ce7e545daa2a696682fe9b5651fe214932f734970a7
 DIST mariadb-5.5.57.tar.gz 45783940 SHA256 
5dbde98d7e4a5a1721b6cbed7898b2549a88866247951cf586057975c6cea641 SHA512 
5d6350abd6f0ba98326633a36bb7ec67525e34e08cbe43f79c9b30bf0b872b0a8f9f0bfd5f3a4c2800a52d25b9c6f3a3a4a62e0f41574153bbf4b881f5347c71
 WHIRLPOOL 
c2af12fb71b3fcc9989cd2208a44dc81401fe1387ae2d03981fd5d00277d480a35f23bdb8f1564f91b4c345bdb18a610b46ee91f47772ba5de1baf8f808eaec3
 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

diff --git a/dev-db/mariadb/mariadb-5.5.56.ebuild 
b/dev-db/mariadb/mariadb-5.5.56.ebuild
deleted file mode 100644
index aa0132d8a7b..000
--- a/dev-db/mariadb/mariadb-5.5.56.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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 ~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
-   local 

[gentoo-commits] repo/gentoo:master commit in: app-misc/recoll/

2017-07-19 Thread Patrice Clement
commit: 3dae50fef8ae6e03cdeef601fd82d9629d3c838f
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 19 15:36:55 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 19 15:51:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dae50fe

app-misc/recoll: version bump.

Gentoo-Bug: https://bugs.gentoo.org/625262

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-misc/recoll/Manifest |   1 +
 app-misc/recoll/recoll-1.23.2.ebuild | 133 +++
 2 files changed, 134 insertions(+)

diff --git a/app-misc/recoll/Manifest b/app-misc/recoll/Manifest
index 55e40de6010..665fd5c00b3 100644
--- a/app-misc/recoll/Manifest
+++ b/app-misc/recoll/Manifest
@@ -1 +1,2 @@
 DIST recoll-1.22.4.tar.gz 2511949 SHA256 
8211e1ccc6e576b0c21e5bfb4f49a0b69990a44bd5a3ce6eae4ff16aaf23412f SHA512 
90d258c854972a41adbb3eef71b08d25c5aea24ed6fc830245d19e273112c016b66b0359e1d83143992d07b5a67226216e8f406ac135c21da6b86c7ffde31225
 WHIRLPOOL 
2dac2936e4c13448b6f8cb0c6d9d0d6d1d7c14b47a6761b6115762d734f91cfd8652186627b8ab55149c14ff5b00260838b0e62962f32ecbd4d2bef1f25e44ba
+DIST recoll-1.23.2.tar.gz 2546793 SHA256 
0e93e6be0dc2225b03a4850887bd29da47a61e07652fde51be254ef9f8310048 SHA512 
0f3d6bae73da066e92e328f963129979f43a12a622120c26d66debde66e569e19e3e8b61154ee77386ad93e968d88262d3e22a679b618bcb8bf468fa16a46769
 WHIRLPOOL 
fec47a74d48c2ae0f93e56964bbfa53b62a0be7d57d602ddb36bb03cc2eb7293c4ffa589a967bc70a76e2478fb315f189cfdab72618a32439c357c1a440e9ff6

diff --git a/app-misc/recoll/recoll-1.23.2.ebuild 
b/app-misc/recoll/recoll-1.23.2.ebuild
new file mode 100644
index 000..c17511e0620
--- /dev/null
+++ b/app-misc/recoll/recoll-1.23.2.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit linux-info python-single-r1 qmake-utils
+
+DESCRIPTION="A personal full text search package"
+HOMEPAGE="http://www.lesbonscomptes.com/recoll/;
+SRC_URI="http://www.lesbonscomptes.com/recoll/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="camelcase doc +inotify qt4 qt5 session +spell"
+REQUIRED_USE="session? ( inotify ) ${PYTHON_REQUIRED_USE}"
+
+CDEPEND="
+   dev-libs/xapian:=
+   sys-libs/zlib
+   virtual/libiconv
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwebkit:5
+   )
+   !qt5? ( qt4? (
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   ) )
+   session? (
+   inotify? ( x11-libs/libSM x11-libs/libICE )
+   )
+   spell? ( app-text/aspell )
+   ${PYTHON_DEPS}
+"
+
+DEPEND="
+   ${CDEPEND}
+   qt5? ( dev-qt/linguist-tools:5 )
+"
+
+RDEPEND="
+   ${CDEPEND}
+   app-arch/unzip
+   sys-apps/sed
+   virtual/awk
+"
+
+pkg_setup() {
+   if has_version "

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

2017-07-19 Thread Patrice Clement
commit: e6c751a680bdff4b8804bcd4ba2fc37839cc2e5c
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Jul 19 15:50:11 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Jul 19 15:51:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6c751a6

dev-util/lcov: assign new maintainer.

Gentoo-Bug: https://bugs.gentoo.org/587120

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-util/lcov/metadata.xml | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/dev-util/lcov/metadata.xml b/dev-util/lcov/metadata.xml
index eda4f71dc55..6657b444b7b 100644
--- a/dev-util/lcov/metadata.xml
+++ b/dev-util/lcov/metadata.xml
@@ -1,7 +1,15 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   marb...@gmail.com
+   Marcin BaczyƄski
+   Proxy-Maintainer. Assign bugs to him
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

ltp




[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocaml-redis/

2017-07-19 Thread Alexis Ballier
commit: 9e7e22aa543b3b7f30c9b54c1e726c9721f39228
Author: Alexis Ballier  gentoo  org>
AuthorDate: Wed Jul 19 17:42:49 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Wed Jul 19 17:43:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e7e22aa

dev-ml/ocaml-redis: add missing lwt test dep, bug #625570

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild 
b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
index 5133ae440d4..80c9ad7b4ef 100644
--- a/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
+++ b/dev-ml/ocaml-redis/ocaml-redis-0.3.5.ebuild
@@ -22,7 +22,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
dev-ml/jbuilder
dev-ml/opam
-   test? ( dev-ml/ounit dev-db/redis )"
+   test? ( dev-ml/ounit dev-db/redis dev-ml/lwt )"
 
 src_compile() {
jbuilder build -p redis || die



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

2017-07-19 Thread Bernard Cafarelli
commit: ea63f3012f4a52c845483d19c359696f3366d528
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Tue Jul 18 22:00:29 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jul 19 09:43:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea63f301

net-misc/nextcloud-client: 2.3.2 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-misc/nextcloud-client/Manifest |   2 +
 .../nextcloud-client/nextcloud-client-2.3.2.ebuild | 106 +
 2 files changed, 108 insertions(+)

diff --git a/net-misc/nextcloud-client/Manifest 
b/net-misc/nextcloud-client/Manifest
index 15197637558..eaeab7a64a4 100644
--- a/net-misc/nextcloud-client/Manifest
+++ b/net-misc/nextcloud-client/Manifest
@@ -1,2 +1,4 @@
 DIST nextcloud-client-2.3.1.tar.gz 654810 SHA256 
5fc6f9f981d68110982ab006cdf9d68caa0c59015e57f4491b9a705fb6c83dd6 SHA512 
f8210c8cc08e0bfb80e63b18af305c2a8e2309f673caca5bc748c130d960d444ab2db3fad3e43dbfffbe072748c85e15a50d0ebe1fd491dec7553ac8d9552cfe
 WHIRLPOOL 
5a38a708647758ddb54d7d47dd30a71e59b03c3c45e6cfd9ac218c013da9dfc56d07b247982056f58e083d82c138576679525d994665717c739cc9f5cdd0238b
+DIST nextcloud-client-2.3.2.tar.gz 671944 SHA256 
fbebbcfc538654d7a5373062d2165638a9bd9e5dbe62b5f4552a942b0b931617 SHA512 
0447a3e5ee3338cb98b9d503a94d32c926f9092a25fee11e3686e5d662362137dce09865350cdc3c9af62ac8a6ebfa7fcd00f817edbb10189512a6df8e587628
 WHIRLPOOL 
f5bf0526ffad6eb12be7169f8b61b35be31e01b44bb5fee4ab03c5d3449e3e30496719cc4f84c587b62a0638d99a70fd2fa1723231f6f7fa9c7ba80d095daeec
 DIST owncloudclient-2.3.1.tar.xz 12260696 SHA256 
93143752234a0bc4c9798b69d8239996d92130eecdc1d93b75e3d49b899f3914 SHA512 
2dec3d4b452faca32e15c1a461d3fec97fc1c2e85bbfe2cb02035371a5426b8458be1382ed6b4a1102a4f38241580c3d49980ea388344365297a4a84f8dc9add
 WHIRLPOOL 
49abeb9b9843a024338cd2d7c3a87625f7cd4f832db03513dc4d7b0d5d1908a5691d6f1e7b7437175084c30a5e3e18d837785afa5647971fdcb8e963db2d54b5
+DIST owncloudclient-2.3.2.tar.xz 12266008 SHA256 
a1199d2b957a28081aff11a2a7e471ca09c965bbb1b51b1b7b7a8706304f5f09 SHA512 
8abe071c28b365c100eb30ed91610640a25a7385f4347f5527289f4664788bda375e9618396ffa3e441c7e473da55bdaf7a5cdd99c8fd5801de78cb945fabb9c
 WHIRLPOOL 
099c963940b6fec67d5d14b8d3a62eaf378617a7e8a73ca9b82c6f82451a6e80a6da4f0f0ea44e6064d5fceada68f6e1591e499e3ea2f6dfe14c6e0efa01537a

diff --git a/net-misc/nextcloud-client/nextcloud-client-2.3.2.ebuild 
b/net-misc/nextcloud-client/nextcloud-client-2.3.2.ebuild
new file mode 100644
index 000..d9fccadedd1
--- /dev/null
+++ b/net-misc/nextcloud-client/nextcloud-client-2.3.2.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Nextcloud themed desktop client"
+HOMEPAGE="https://github.com/nextcloud/client_theming;
+SRC_URI="http://download.owncloud.com/desktop/stable/owncloudclient-${PV}.tar.xz
+   https://github.com/nextcloud/client_theming/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="CC-BY-3.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc dolphin nautilus samba +sftp shibboleth test"
+
+COMMON_DEPEND=">=dev-db/sqlite-3.4:3
+   dev-libs/qtkeychain[qt5]
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsql:5
+   dev-qt/qtwidgets:5
+   sys-fs/inotify-tools
+   virtual/libiconv
+   dolphin? (
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/kio:5
+   )
+   nautilus? ( dev-python/nautilus-python )
+   samba? ( >=net-fs/samba-3.5 )
+   sftp? ( >=net-libs/libssh-0.5 )
+   shibboleth? ( dev-qt/qtwebkit:5 )
+"
+RDEPEND="${COMMON_DEPEND}
+   !net-misc/ocsync
+   !net-misc/owncloud-client
+"
+DEPEND="${COMMON_DEPEND}
+   dev-qt/linguist-tools:5
+   doc? (
+   dev-python/sphinx
+   dev-texlive/texlive-latexextra
+   virtual/latex-base
+   )
+   dolphin? ( kde-frameworks/extra-cmake-modules )
+   test? (
+   dev-util/cmocka
+   dev-qt/qttest:5
+   )
+"
+
+S=${WORKDIR}/client_theming-${PV}
+
+src_unpack() {
+   default
+
+   rmdir "${S}"/client || die
+   mv "${WORKDIR}"/owncloudclient-${PV} "${S}"/client \
+   || die
+}
+
+src_prepare() {
+   CMAKE_USE_DIR="${S}"/client
+   # Keep tests in ${T}
+   sed -i -e "s#\"/tmp#\"${T}#g" client/test/test*.cpp || die
+   # Fix icon name
+   sed -e "/^Icon.*=/s/@APPLICATION_EXECUTABLE@/Nextcloud/" \
+   -i client/mirall.desktop.in || die
+
+   if ! use nautilus; then
+   pushd client/shell_integration > /dev/null || die
+   cmake_comment_add_subdirectory nautilus
+   popd > /dev/null || die
+   fi
+
+   default
+}
+
+src_configure() {
+   local mycmakeargs=(
+   

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

2017-07-19 Thread Bernard Cafarelli
commit: 37a5f6a19e3ad5d2bf9cc47c6f858ddd565ff3f9
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jul 19 09:42:24 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jul 19 09:44:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37a5f6a1

dev-libs/libfilezilla: 0.10.0 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/libfilezilla/Manifest   |  1 +
 dev-libs/libfilezilla/libfilezilla-0.10.0.ebuild | 30 
 2 files changed, 31 insertions(+)

diff --git a/dev-libs/libfilezilla/Manifest b/dev-libs/libfilezilla/Manifest
index 09f57d5e0f5..6ef31cb8075 100644
--- a/dev-libs/libfilezilla/Manifest
+++ b/dev-libs/libfilezilla/Manifest
@@ -1,2 +1,3 @@
+DIST libfilezilla-0.10.0.tar.bz2 394078 SHA256 
bd10176c44f421a20c92c66d85a7a277dcc0d1c4b57cf20b7b6ba24cb4493382 SHA512 
b21efe77e7555fbed29ff798a19c922d12446295467af38683009770d6db753518fb5b2d8f14a77803e2559bc4038e5794c1750544527351f9526170ff591800
 WHIRLPOOL 
b47187271509ec7b72ff84cdd2baf48498b9296086e947414cbc7bf79644259c90cd67c3a5e19cec41d638101e800568b741afc018d4fa14d2085059eaf48d3a
 DIST libfilezilla-0.9.1.tar.bz2 383315 SHA256 
18b2391771f330cccab2c55a66197b9098f236e616f26f86326795b900913b1a SHA512 
bbcd826675e9c3e2f8cf1cea4da01434a66359ae816efdc5c981fbfebde0b73ce44a6d37546196fc00cb118d9b4d7772b73e30f8d5a78294f97b9899e9ba3393
 WHIRLPOOL 
cbe3c1b30cd4dad6d6806c01921fe4bd15a8797f7dcf92737b34d04e3d35954a584d9155ea8385beecf52b176ac41b114814047f1b570791ff2a4314fa787a58
 DIST libfilezilla-0.9.2.tar.bz2 383522 SHA256 
c162e8a23555b3bbc707cf240b0b4122ea2975d6d8b10744325b968f656b3be3 SHA512 
f825d116e252786801115189f9966ba7ab8663863d921cce530569a172ab33dbc31234d6286b0b3e6edc19ec0a5ba009788382ec5d5359f97a9cb10f30715f88
 WHIRLPOOL 
16adf902b1a27766f86221e08e3599f84e64da30893ca3f67d3e467ef74c00eaa9db6abaef360a8a4ba4c47ebbfb92239344335a0fedd4cb9263b2542fde8147

diff --git a/dev-libs/libfilezilla/libfilezilla-0.10.0.ebuild 
b/dev-libs/libfilezilla/libfilezilla-0.10.0.ebuild
new file mode 100644
index 000..221991c1845
--- /dev/null
+++ b/dev-libs/libfilezilla/libfilezilla-0.10.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit flag-o-matic
+
+DESCRIPTION="C++ library offering some basic functionality for 
platform-independent programs"
+HOMEPAGE="https://lib.filezilla-project.org/;
+SRC_URI="mirror://sourceforge/filezilla/${P}.tar.bz2
+   http://download.filezilla-project.org/${PN}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~x86"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   test? ( dev-util/cppunit )"
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   if ! test-flag-CXX -std=c++14; then
+   eerror "${P} requires C++14-capable C++ compiler. Your 
current compiler"
+   eerror "does not seem to support -std=c++14 option. 
Please upgrade your compiler"
+   eerror "to gcc-4.9 or an equivalent version supporting 
C++14."
+   die "Currently active compiler does not support 
-std=c++14"
+   fi
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-irc/polari/

2017-07-19 Thread Mart Raudsepp
commit: 451297745f37cab282b041ebf610cc37d3bacf19
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Jul 19 07:07:04 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Jul 19 10:12:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45129774

net-irc/polari: bump to 3.24.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-irc/polari/Manifest   | 2 +-
 net-irc/polari/{polari-3.24.1.ebuild => polari-3.24.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/polari/Manifest b/net-irc/polari/Manifest
index 26e5abc0f29..1d1acecde42 100644
--- a/net-irc/polari/Manifest
+++ b/net-irc/polari/Manifest
@@ -1,2 +1,2 @@
 DIST polari-3.22.2.tar.xz 617316 SHA256 
c7b4c382a9bae8094a576dbd9d022de0a90e186a36529a2eab914fe9d9b0045f SHA512 
36bc3b506c73f5d27c32430a19134c2b147f6344840d3cd3ee2bee14369f4c8fc87b30445fbb8186e0dc79fbc8336985d6ef2e018c9a1f8809f06ee7ac68c876
 WHIRLPOOL 
2b7da35e441d4a3f55803f9ba59c150d559fbd87d092c0c3cf89b4d0c72ffc683c865be447c806b96603d5988875132271a70be6a5e112466d9eef6991df6d87
-DIST polari-3.24.1.tar.xz 780300 SHA256 
3a106160cd988d28620a27692c1f41073e3d140a264dd301d55933508533d7cc SHA512 
dd4f41ae6b8de001df69cea894880eae3f4dac52ceff0b8f7793b6f4bdf892cb38e2391e07ae0d747b4dc6222b241991b7067f921c34c6020e129525e8fa0dbb
 WHIRLPOOL 
9df617ba3f3942237a8be80dbfeee49d6ed7bd519f7372bc3a848c778c54d07de554429250fb0e0024acfa6fed216b2064b4ca4ce78ba0e918eada4ee676f902
+DIST polari-3.24.2.tar.xz 804160 SHA256 
3e1884000fda5cf6293e21ca1c028ec0b13d5baab5a79b8c11e4728c3238bb42 SHA512 
23a475d657556e7f4e93dde8e545bf7bede227635d540bd006b85b068923d87e713bd05f14d8ccde458bf6efd4920665bca02ea41c4de870680581ebfa595f0e
 WHIRLPOOL 
12f6b4d4059d3606d4c254b34299ef8355180447eececaa869dd73dd3020714b5bc6669597656c30327e1e79a76c73d29ea29ce12206d9dcd43b78f92a22f96d

diff --git a/net-irc/polari/polari-3.24.1.ebuild 
b/net-irc/polari/polari-3.24.2.ebuild
similarity index 100%
rename from net-irc/polari/polari-3.24.1.ebuild
rename to net-irc/polari/polari-3.24.2.ebuild



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

2017-07-19 Thread Bernard Cafarelli
commit: b62ee2015d5faa6efb9b89021bfb6273f4628922
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jul 19 12:49:09 2017 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jul 19 12:56:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b62ee201

media-video/devedeng: 4.8.9 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-video/devedeng/Manifest  |  1 +
 media-video/devedeng/devedeng-4.8.9.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/media-video/devedeng/Manifest b/media-video/devedeng/Manifest
index 1b60e676df7..96a03f84447 100644
--- a/media-video/devedeng/Manifest
+++ b/media-video/devedeng/Manifest
@@ -1,2 +1,3 @@
 DIST devedeng-4.8.7.tar.gz 1883405 SHA256 
f699fa129fe41acf277cae05d92768c7ca7ac4021baaffd2a7b5d6ce58a33a79 SHA512 
30e40f93c51b576e283de15d2526d686d3b8e3f04795aac6aa25ee4b418e1d44c2b80e880446f66494197f26e8f036e7def0c26e168a0553c454ccd859876ba6
 WHIRLPOOL 
a3d4c86b09a5b205ced1036255c724a141d9e6e01b86870aeba68d1566089955005e4c5a898c5236876b2be39d95ac22f3481462ee14262ade40e0c3cef3c964
 DIST devedeng-4.8.8.tar.gz 1883468 SHA256 
3650751da3d9764e767725b6a744b16395bfce43b6243a75b2b8a1ea6dfcbd56 SHA512 
b4ab241a0cf5e1bfd2da4709528fa361ceed660688384a0f2cf965c45bb865d94aa19f8e282477e8e0d3fc43213fb42da2dd75dbe9e26e4811593d7b773386df
 WHIRLPOOL 
b2984ee56b0d681ef882d0cb9e8611a20938eec13dcf6c0dc6bcefbf3e85603106a1bc61191c23b42d2b9d9be804adb8572d095002c7754d1261c41f1cb3659c
+DIST devedeng-4.8.9.tar.gz 1883507 SHA256 
e1b41689f93c398af11529ba857df68dc982a3979bc2c675a9f44fdedf77b30c SHA512 
224a10886ea7f8a0e2cd3fdeed9c7b0ef5413892f4b800194d957a764b90220fed7b2f3d6bfa416798acb89024a95d678604f3d23fb19cccb8a11e2734a92b7a
 WHIRLPOOL 
0aa94cf3a440b3ae9f98d8e5ac82156f2ea4eb9bbe1ce60447eb5b0db9ea4c8d7d22c066385fb73e8cd123f79ff31abf2a316df450e4def1370c53bbe4121bc6

diff --git a/media-video/devedeng/devedeng-4.8.9.ebuild 
b/media-video/devedeng/devedeng-4.8.9.ebuild
new file mode 100644
index 000..d10522edca2
--- /dev/null
+++ b/media-video/devedeng/devedeng-4.8.9.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5} )
+
+inherit distutils-r1
+
+DESCRIPTION="DevedeNG is a program to create video DVDs and CDs (VCD, sVCD or 
CVD)"
+HOMEPAGE="http://www.rastersoft.com/programas/devede.html;
+SRC_URI="https://github.com/rastersoft/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="libav"
+
+RDEPEND="dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3
+   || ( media-video/vlc media-video/mpv media-video/mplayer )
+   !libav? ( media-video/ffmpeg )
+   libav? ( media-video/libav )
+   media-video/dvdauthor
+   media-video/vcdimager
+   virtual/cdrtools
+   || ( app-cdr/brasero kde-apps/k3b )"
+
+DEPEND="${PYTHON_DEPS}"



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

2017-07-19 Thread Lars Wendler
commit: c2d6258bf26291e43561a3789d7f90a547532117
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jul 19 13:22:28 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jul 19 13:22:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d6258b

dev-libs/volume_key: No need to depend on specific autoconf slot (bug #625630).

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-libs/volume_key/volume_key-0.3.9.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-libs/volume_key/volume_key-0.3.9.ebuild 
b/dev-libs/volume_key/volume_key-0.3.9.ebuild
index 178d87ac1cf..e725b1514c1 100644
--- a/dev-libs/volume_key/volume_key-0.3.9.ebuild
+++ b/dev-libs/volume_key/volume_key-0.3.9.ebuild
@@ -25,7 +25,6 @@ COMMON_DEPEND="
 DEPEND="
${COMMON_DEPEND}
app-crypt/gpgme
-   sys-devel/autoconf:2.63
sys-fs/cryptsetup
test? ( dev-libs/nss[utils] )
"



[gentoo-commits] proj/mysql-extras:master commit in: /

2017-07-19 Thread Brian Evans
commit: 7e790fc6dc1d92178aaf2299a370ab0d7d2d8b1c
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jul 19 13:35:43 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 13:35:43 2017 +
URL:https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=7e790fc6

Respin tzinfo patch for 5.6.37

 20008_all_mysql-tzinfo-symlink-5.6.37.patch | 103 
 1 file changed, 103 insertions(+)

diff --git a/20008_all_mysql-tzinfo-symlink-5.6.37.patch 
b/20008_all_mysql-tzinfo-symlink-5.6.37.patch
new file mode 100644
index 000..1c6ed0f
--- /dev/null
+++ b/20008_all_mysql-tzinfo-symlink-5.6.37.patch
@@ -0,0 +1,103 @@
+=== modified file 'sql/tztime.cc'
+--- a/sql/tztime.cc2013-05-07 11:05:09 +
 b/sql/tztime.cc2013-11-13 15:16:35 +
+@@ -2494,7 +2494,7 @@
+ 
+ */
+ my_bool
+-scan_tz_dir(char * name_end)
++scan_tz_dir(char * name_end, uint symlink_recursion_level)
+ {
+   MY_DIR *cur_dir;
+   char *name_end_tmp;
+@@ -2514,7 +2514,32 @@
+ 
+   if (MY_S_ISDIR(cur_dir->dir_entry[i].mystat->st_mode))
+   {
+-if (scan_tz_dir(name_end_tmp))
++my_bool is_symlink;
++if ((is_symlink= my_is_symlink(fullname, NULL)) &&
++symlink_recursion_level > 0)
++{
++  /*
++The timezone definition data in some Linux distributions
++ (e.g. the "timezone-data-2013f" package in Gentoo)
++may have synlimks like:
++  /usr/share/zoneinfo/posix/ -> /usr/share/zoneinfo/,
++so the same timezone files are available under two names
++(e.g. "CET" and "posix/CET").
++
++We allow one level of symlink recursion for backward
++compatibility with earlier timezone data packages that have
++duplicate copies of the same timezone files inside the root
++directory and the "posix" subdirectory (instead of symlinking).
++This makes "posix/CET" still available, but helps to avoid
++following such symlinks infinitely:
++  /usr/share/zoneinfo/posix/posix/posix/.../posix/
++  */
++  fflush(stdout);
++  fprintf(stderr, "Warning: Skipping directory '%s': "
++  "to avoid infinite symlink recursion.\n", fullname);
++  continue;
++}
++if (scan_tz_dir(name_end_tmp, symlink_recursion_level + is_symlink))
+ {
+   my_dirend(cur_dir);
+   return 1;
+@@ -2526,14 +2551,20 @@
+ if (!tz_load(fullname, _info, _storage))
+   print_tz_as_sql(root_name_end + 1, _info);
+ else
++{
++  fflush(stdout);
+   fprintf(stderr,
+   "Warning: Unable to load '%s' as time zone. Skipping it.\n",
+   fullname);
++}
+ free_root(_storage, MYF(0));
+   }
+   else
++  {
++fflush(stdout);
+ fprintf(stderr, "Warning: '%s' is not regular file or directory\n",
+ fullname);
++  }
+ }
+   }
+ 
+@@ -2566,8 +2597,9 @@
+ printf("TRUNCATE TABLE time_zone_transition;\n");
+ printf("TRUNCATE TABLE time_zone_transition_type;\n");
+ 
+-if (scan_tz_dir(root_name_end))
++if (scan_tz_dir(root_name_end, 0))
+ {
++  fflush(stdout);
+   fprintf(stderr, "There were fatal errors during processing "
+   "of zoneinfo directory\n");
+   return 1;
+@@ -2586,6 +2618,7 @@
+ {
+   if (tz_load(argv[2], _info, _storage))
+   {
++fflush(stdout);
+ fprintf(stderr, "Problems with zoneinfo file '%s'\n", argv[2]);
+ return 1;
+   }
+@@ -2595,6 +2628,7 @@
+ {
+   if (tz_load(argv[1], _info, _storage))
+   {
++fflush(stdout);
+ fprintf(stderr, "Problems with zoneinfo file '%s'\n", argv[2]);
+ return 1;
+   }
+@@ -2604,6 +2638,7 @@
+ free_root(_storage, MYF(0));
+   }
+ 
++  my_end(0);
+   return 0;
+ }
+ 
+



[gentoo-commits] proj/mysql-extras: New tag: mysql-extras-20170719-1335Z

2017-07-19 Thread Brian Evans
commit: 
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jul 19 13:36:07 2017 +

New tag: mysql-extras-20170719-1335Z




[gentoo-commits] repo/gentoo:master commit in: app-crypt/scute/

2017-07-19 Thread Alon Bar-Lev
commit: 8e05689dbc96788c8935dc6de57348a800413422
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Wed Jul 19 13:52:12 2017 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Wed Jul 19 13:52:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e05689d

app-crypt/scute: version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-crypt/scute/Manifest   |  1 +
 app-crypt/scute/scute-1.5.0.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/app-crypt/scute/Manifest b/app-crypt/scute/Manifest
index 1d6282f4220..249e07038a6 100644
--- a/app-crypt/scute/Manifest
+++ b/app-crypt/scute/Manifest
@@ -1 +1,2 @@
 DIST scute-1.4.0.tar.bz2 772986 SHA256 
bd698a853375324c4ff590899c1994be83d8d0a1400fcaf489529646965fb745 SHA512 
7961679ce3195aeb3ed1508557c767b59970cd221b569c0fa00cd419e4017b84a851f1fbe46323a4ffb6256c6b91bb037f93edb4f4f7f9f6e0add672b9cc2015
 WHIRLPOOL 
6e4bc0852d389ac2103edb5bb0c0c260642dcc596862fec55db3ffd51a5fc6cd0752a81d864b36db4544c5b1efbf944f76672806bcaa8305ccf07bb9f817459e
+DIST scute-1.5.0.tar.bz2 991598 SHA256 
6199d28d8ce17f979f67059b461ab55a2276fc390eaa45e5ce6ff615bf81ab96 SHA512 
ad1dbdba5681a92696c851eca7e2bfb61f7bf84f5e02728efc1f72cd25c4ee2dc18fe975e2903d1a85c635d16be1e2085ff2305827b48d80e18c9354e555b39a
 WHIRLPOOL 
008d0f6d306898fe64ae7c9a689178f246b3380f07f6d1e1b2f423552eff74d6133cbe71a5337ec90cacd0c91525219d1ba1d2fb20c80891b921b1de5b06fe3e

diff --git a/app-crypt/scute/scute-1.5.0.ebuild 
b/app-crypt/scute/scute-1.5.0.ebuild
new file mode 100644
index 000..85adede2192
--- /dev/null
+++ b/app-crypt/scute/scute-1.5.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit ltprune
+
+DESCRIPTION="A PKCS #11 module for OpenPGP smartcards"
+HOMEPAGE="http://www.scute.org/;
+SRC_URI="mirror://gnupg/scute/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+# configure script try to check the version of gpgsm and gpg-agent when
+# non-crosscompiling so we need to have them as build-time dependency as
+# well as runtime.  Require a version of gnupg that is patched to have
+# gpgsm-gencert.sh working (as that's what the documentation describe).
+DEPEND="
+   >=dev-libs/libgpg-error-1.4
+   >=dev-libs/libassuan-2.0.0
+   >=app-crypt/pinentry-0.7.0
+   >=app-crypt/gnupg-2.0.17-r1[smartcard]"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   econf \
+   --libdir=/usr/$(get_libdir)/pkcs11 \
+   --with-gpgsm=/usr/bin/gpgsm
+}
+
+src_install() {
+   default
+   prune_libtool_files --modules
+}



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

2017-07-19 Thread Alon Bar-Lev
commit: 8f51b98ef781174c33af1e0d92ec8def54ec0be2
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Wed Jul 19 13:46:05 2017 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Wed Jul 19 13:52:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f51b98e

dev-libs/opensc: version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-libs/opensc/Manifest|   1 +
 dev-libs/opensc/files/opensc-0.17.0-build.patch | 100 
 dev-libs/opensc/opensc-0.17.0.ebuild|  60 ++
 3 files changed, 161 insertions(+)

diff --git a/dev-libs/opensc/Manifest b/dev-libs/opensc/Manifest
index c55f52e15fd..f8e3c0ca396 100644
--- a/dev-libs/opensc/Manifest
+++ b/dev-libs/opensc/Manifest
@@ -1 +1,2 @@
 DIST opensc-0.16.0.tar.gz 1760418 SHA256 
3ac8c29542bb48179e7086d35a1b8907a4e86aca3de3323c2f48bd74eaaf5729 SHA512 
15f7d62388dde6dad226acab3cd54f8e2f2f53684dc0cb976c6fc6fbdb4487be931ca69bf965ab07c51efd16be64d5411f10bacea11a07fc823c92dd7bb25139
 WHIRLPOOL 
8207606e4994d7744fc93cc6aef1b0cde8a2073e791aebf71e82669013d261f82abc6e41ddf971fb136d4580c21ea475bb2e36bbdec600b354f5e1decec4b02a
+DIST opensc-0.17.0.tar.gz 1900483 SHA256 
4cd8928c5c5787dd8beee6c77be25032996dedaa4df8bfdd369bcbcde9980bd1 SHA512 
64c4f44be64e315fba96974c23331b06805b258ea6296bcc741b8f50b35bba4ab5aace8137f2642e114210465e6312a38e83d3261952b56ab7c06a43d475a7f7
 WHIRLPOOL 
d48e591ec47589945dd8b4b358ce5c51c980ec75f7ab0724884fa2fe28cedeeacbc575a5ae4b0a354afcc5ffc608e0502c28244c8f3ebd3867dd7e5b7f270259

diff --git a/dev-libs/opensc/files/opensc-0.17.0-build.patch 
b/dev-libs/opensc/files/opensc-0.17.0-build.patch
new file mode 100644
index 000..8a51d7ac445
--- /dev/null
+++ b/dev-libs/opensc/files/opensc-0.17.0-build.patch
@@ -0,0 +1,100 @@
+From 65b302e33b710833d4d14bf8eaf00acdaa436c39 Mon Sep 17 00:00:00 2001
+From: Frank Morgner 
+Date: Wed, 19 Jul 2017 00:09:36 +0200
+Subject: [PATCH] sc-hsm: fixed building with --disable-sm
+
+Closes https://github.com/OpenSC/OpenSC/pull/1103
+---
+ src/libopensc/card-sc-hsm.c | 21 -
+ 1 file changed, 20 insertions(+), 1 deletion(-)
+
+diff --git a/src/libopensc/card-sc-hsm.c b/src/libopensc/card-sc-hsm.c
+index cfa084a06..1f61e0138 100644
+--- a/src/libopensc/card-sc-hsm.c
 b/src/libopensc/card-sc-hsm.c
+@@ -284,7 +284,9 @@ static int sc_hsm_soc_select_minbioclient(sc_card_t *card)
+   };
+ 
+   /* Select MinBioClient */
++#ifdef ENABLE_SM
+   sc_sm_stop(card);
++#endif
+   sc_format_apdu(card, , SC_APDU_CASE_3_SHORT, 0xA4, 0x04, 0x0C);
+   apdu.data = minBioClient_aid.value;
+   apdu.datalen = minBioClient_aid.len;
+@@ -533,7 +535,9 @@ static int sc_hsm_pin_cmd(sc_card_t *card, struct 
sc_pin_cmd_data *data,
+   sc_hsm_private_data_t *priv = (sc_hsm_private_data_t *) card->drv_data;
+   sc_apdu_t apdu;
+   u8 cmdbuff[16];
++#ifdef ENABLE_SM
+   u8 rbuf[SC_MAX_APDU_BUFFER_SIZE];
++#endif
+   int r;
+   int cmd = data->cmd;
+   size_t pin2_len = data->pin2.len;
+@@ -563,7 +567,10 @@ static int sc_hsm_pin_cmd(sc_card_t *card, struct 
sc_pin_cmd_data *data,
+   if ((card->type == SC_CARD_TYPE_SC_HSM_SOC || card->reader->uid.len
+   || cmd == SC_PIN_CMD_GET_SESSION_PIN)
+   && (data->cmd != SC_PIN_CMD_GET_INFO)
+-  && card->sm_ctx.sm_mode != SM_MODE_TRANSMIT) {
++#ifdef ENABLE_SM
++  && card->sm_ctx.sm_mode != SM_MODE_TRANSMIT
++#endif
++  ) {
+   LOG_TEST_RET(card->ctx,
+   sc_hsm_perform_chip_authentication(card),
+   "Could not perform chip authentication");
+@@ -604,6 +611,7 @@ static int sc_hsm_pin_cmd(sc_card_t *card, struct 
sc_pin_cmd_data *data,
+   data->apdu = 
+   }
+ 
++#ifdef ENABLE_SM
+   if ((data->cmd == SC_PIN_CMD_GET_INFO)
+   && (card->sm_ctx.sm_mode == SM_MODE_TRANSMIT)) {
+   /* JCOP's SM accelerator is incapable of using case 1 
APDU in SM */
+@@ -612,6 +620,7 @@ static int sc_hsm_pin_cmd(sc_card_t *card, struct 
sc_pin_cmd_data *data,
+   apdu.resplen = sizeof rbuf;
+   data->apdu = 
+   }
++#endif
+ 
+   data->pin1.offset = 5;
+   data->pin1.length_offset = 4;
+@@ -627,11 +636,17 @@ static int sc_hsm_pin_cmd(sc_card_t *card, struct 
sc_pin_cmd_data *data,
+   data->cmd = SC_PIN_CMD_GET_SESSION_PIN;
+   if (data->pin_reference == 0x81) {
+   u8 recvbuf[SC_MAX_APDU_BUFFER_SIZE];
++#ifdef ENABLE_SM
+   if (card->sm_ctx.sm_mode != SM_MODE_TRANSMIT) {
+   sc_debug(card->ctx, SC_LOG_DEBUG_NORMAL,
+   "Session PIN generation only 

[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/files/

2017-07-19 Thread Andreas Sturmlechner
commit: 3ee9d86e27337f3581bf52cc693adbf77c25f517
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 19 18:49:47 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 19 18:53:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ee9d86e

kde-plasma/plasma-workspace: Drop obsolete patch

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../plasma-workspace-5.7.90-baloo-optional.patch   | 41 --
 1 file changed, 41 deletions(-)

diff --git 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.7.90-baloo-optional.patch
 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.7.90-baloo-optional.patch
deleted file mode 100644
index 34f7142dfdf..000
--- 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.7.90-baloo-optional.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-commit 7ea5034dda3d7a497be8c8d1adea08897c165916
-Author: Andreas Sturmlechner 
-Date:   Thu Sep 15 00:22:38 2016 +0200
-
-Make KF5Baloo optional
-
-
https://mail.kde.org/pipermail/kde-frameworks-devel/2016-September/037734.html
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e57cb73..49584d9 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -26,8 +26,13 @@ find_package(KF5XmlRpcClient REQUIRED)
- find_package(KF5 REQUIRED COMPONENTS PlasmaQuick)
- find_package(KF5 REQUIRED COMPONENTS SysGuard)
- find_package(KF5 REQUIRED COMPONENTS Package)
--# Baloo has a different version scheme than KF5 for now
--find_package(KF5 5.1 REQUIRED COMPONENTS Baloo)
-+
-+find_package(KF5Baloo)
-+set_package_properties(KF5Baloo PROPERTIES DESCRIPTION "File Searching"
-+   TYPE OPTIONAL
-+   PURPOSE "Needed for the File Search runner."
-+  )
-+
- find_package(KF5TextEditor)
- find_package(KWinDBusInterface CONFIG REQUIRED)
- 
-diff --git a/runners/CMakeLists.txt b/runners/CMakeLists.txt
-index 48cc379..d7656c8 100644
 a/runners/CMakeLists.txt
-+++ b/runners/CMakeLists.txt
-@@ -1,5 +1,7 @@
- add_subdirectory(activities)
--add_subdirectory(baloo)
-+if(KF5Baloo_FOUND)
-+ add_subdirectory(baloo)
-+endif()
- add_subdirectory(bookmarks)
- add_subdirectory(calculator)
- add_subdirectory(locations)



[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/

2017-07-19 Thread Andreas Sturmlechner
commit: 86054c17af12f51b32cd13879a193e4d18ab321f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 19 18:39:51 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 19 18:53:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86054c17

sci-libs/gdal: Sort USE in metadata.xml

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sci-libs/gdal/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/gdal/metadata.xml b/sci-libs/gdal/metadata.xml
index 9693d637f04..7088f71ba0f 100644
--- a/sci-libs/gdal/metadata.xml
+++ b/sci-libs/gdal/metadata.xml
@@ -21,9 +21,9 @@
Enable support for 
dev-libs/xerces-c C++ API
Add support for the Hierarchical Data Format 
v5 (sci-libs/hdf5)
Enable support for Microsoft Access 
database
-   Enable Spatial DBMS over sqlite 
dev-db/spatialite
-   Enable OpenCL support
Enable support for the open geographic 
datastore interface (sci-libs/ogdi)
+   Enable OpenCL support
+   Enable Spatial DBMS over sqlite 
dev-db/spatialite
Add the dev-libs/freexl library for 
xls import support

 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/files/, sci-libs/gdal/

2017-07-19 Thread Andreas Sturmlechner
commit: 9c20aad4922fb94a82abaf786056b8ac3d2add93
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 19 18:35:14 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 19 18:53:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c20aad4

sci-libs/gdal: Drop 1.11 versions

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sci-libs/gdal/Manifest |   2 -
 .../gdal/files/gdal-1.10.0-ruby-makefile.patch |  47 ---
 sci-libs/gdal/files/gdal-1.11-swig-3.0.6.patch |  22 --
 .../files/gdal-1.11.1-poppler-0.31.0-support.patch | 119 ---
 sci-libs/gdal/files/gdal-1.11.1-swig-3.0.3.patch   | 161 --
 sci-libs/gdal/gdal-1.11.1-r4.ebuild| 352 -
 sci-libs/gdal/gdal-1.11.2-r1.ebuild| 349 
 7 files changed, 1052 deletions(-)

diff --git a/sci-libs/gdal/Manifest b/sci-libs/gdal/Manifest
index 109dfbf2dcb..d601fb10b32 100644
--- a/sci-libs/gdal/Manifest
+++ b/sci-libs/gdal/Manifest
@@ -1,4 +1,2 @@
-DIST gdal-1.11.1.tar.gz 10731242 SHA256 
f46b5944a8cabc8516673f231f466131cdfd2cdc6677dbee5d96ec7fc58a3340 SHA512 
17214ae17a5199d73477d17cf8680396aee8a28d4333cf55818bdd869548dc6a4d7535d7e05949696db31a7be4a511c5ca73199af3dda48d9a40d5640618e9c3
 WHIRLPOOL 
1f07ee4acccf58552ddef6b5a306b9dbe832014f6890d353f195ab0d47dfc4e81164b7c8b9cefc9915035d113d2f28818f05e89918728eadb0e80e43e7220b5b
-DIST gdal-1.11.2.tar.gz 10746847 SHA256 
66bc8192d24e314a66ed69285186d46e6999beb44fc97eeb9c76d82a117c0845 SHA512 
f1f025de5a618cc2458b6d1f066647341ad4ded1cc2a08e4b78756d96d38715ddd8ba34b7c263369bde66cb20c7919195e13b60a1ecadee25ef80db79f3eb7da
 WHIRLPOOL 
77274f6f9b9bb29fc21c6f274512bccebc7748420c31e3e626d26087194f69b9606354603b393b77903451b073d034f2508403193fdf738f5b099d7808771653
 DIST gdal-2.0.2.tar.gz 11643726 SHA256 
db7722caf8d9dd798ec18012b9cacf40a518918466126a88b9fd277bd7d40cc4 SHA512 
b3fedc8d1d0522d2a6fd22fbc722c551ebf2e4326f64b76c9c43cd3848f7c97a0636c691ee383b3f3c872dc79cd0e216527d3985c6aac3103395fde657db1266
 WHIRLPOOL 
889b35d0c2d972681d30eb33b731498b58951ed64a37d0152b15f8d9c3e414703158498cc6eb1bc75a3cd598a567738e4e937fffa6a55cdff2b6cf87338e25e6
 DIST gdal-2.0.3.tar.gz 11589011 SHA256 
af661066a0bcac733521d66a73375dbe70b0e87d234a99af9f8f1d034c127914 SHA512 
3ed2a084fa146fab8d5f5e039480ab935edaefebe9e55f85bf637a4487a3f56951c93055395850e7bf35d5a6d6e901f741ae01ad64be87597aabfad52f1c5e90
 WHIRLPOOL 
15bc985dc9a8543e3cc7caaca36e41bb9891558adaea2c3883af3d58d5059d01eacda9e8e79b6051c230dd84d08b93b9a8c778758b8fab14d146d42bfba22659

diff --git a/sci-libs/gdal/files/gdal-1.10.0-ruby-makefile.patch 
b/sci-libs/gdal/files/gdal-1.10.0-ruby-makefile.patch
deleted file mode 100644
index cc89200c526..000
--- a/sci-libs/gdal/files/gdal-1.10.0-ruby-makefile.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-diff -Naurw gdal-1.10.0.orig/swig/ruby/RubyMakefile.mk 
gdal-1.10.0/swig/ruby/RubyMakefile.mk
 gdal-1.10.0.orig/swig/ruby/RubyMakefile.mk 2013-04-24 18:55:26.0 
+
-+++ gdal-1.10.0/swig/ruby/RubyMakefile.mk  2013-06-25 23:58:06.464518830 
+
-@@ -37,13 +37,13 @@
- 
- ifeq ("$(shell uname -s)", "Darwin")
- RUBY_MODULES=$(RUBY_MODULES_MAC)
--LDFLAGS += -Xcompiler -bundle -L$(RUBY_LIB_DIR)
--RUBY_LIB := -l$(RUBY_SO_NAME)
- else
- RUBY_MODULES=$(RUBY_MODULES_LIN)
--LDFLAGS += -Xcompiler -shared -L$(RUBY_LIB_DIR)
--RUBY_LIB := -l$(RUBY_SO_NAME)
- endif
-+LDFLAGS += -fPIC -DPIC -shared -L$(RUBY_LIB_DIR)
-+CFLAGS += -fPIC -DPIC
-+CXXFLAGS += -fPIC -DPIC
-+RUBY_LIB := -l$(RUBY_SO_NAME)
- 
- build: $(RUBY_MODULES)
- 
-@@ -56,10 +56,10 @@
- veryclean: clean
-   rm -f *_wrap.cpp
- 
--$(INSTALL_DIR):
-+$(DESTDIR)$(INSTALL_DIR):
-   mkdir -p $(DESTDIR)$(INSTALL_DIR)
- 
--install: $(INSTALL_DIR)
-+install: $(DESTDIR)$(INSTALL_DIR) $(RUBY_MODULES)
-   for i in $(RUBY_MODULES) ; do $(INSTALL) $$i $(DESTDIR)$(INSTALL_DIR) ; 
done
- 
- $(RUBY_MODULES_MAC): %.bundle: %_wrap.o
-@@ -69,10 +69,10 @@
-   $(LD) $(LDFLAGS) $(LIBS) $(GDAL_SLIB_LINK) $(RUBY_LIB) $< -o $@
- 
- %.o: %.cpp
--  $(CXX) $(CFLAGS) $(GDAL_INCLUDE) $(RUBY_INCLUDE)  -c $<
-+  $(CXX) $(CXXFLAGS) $(GDAL_INCLUDE) $(RUBY_INCLUDE)  -c $<
- 
- %.o: %.cxx
--  $(CXX) $(CFLAGS) $(GDAL_INCLUDE) $(RUBY_INCLUDE) -c $<
-+  $(CXX) $(CXXFLAGS) $(GDAL_INCLUDE) $(RUBY_INCLUDE) -c $<
- 
- %.o: %.c
-   $(CC) $(CFLAGS) $(GDAL_INCLUDE)  $(RUBY_INCLUDE) -c $<

diff --git a/sci-libs/gdal/files/gdal-1.11-swig-3.0.6.patch 
b/sci-libs/gdal/files/gdal-1.11-swig-3.0.6.patch
deleted file mode 100644
index 4f4e80b84f9..000
--- a/sci-libs/gdal/files/gdal-1.11-swig-3.0.6.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 gdal/swig/include/python/ogr_python.i
-+++ gdal/swig/include/python/ogr_python.i
-@@ -67,7 +67,7 @@
- def __getitem__(self, value):
- """Support dictionary, list, and slice -like access to the datasource.
--ds[0] would return the first layer on the datasource.
--ds['aname'] would 

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gdal/

2017-07-19 Thread Andreas Sturmlechner
commit: 77a9549215ef5b2b2956e6e82cb99c2f982c6283
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jul 19 18:36:53 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Jul 19 18:53:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77a95492

sci-libs/gdal: Drop old 2.0.2 revisions

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sci-libs/gdal/gdal-2.0.2-r1.ebuild | 315 
 sci-libs/gdal/gdal-2.0.2-r2.ebuild | 317 -
 2 files changed, 632 deletions(-)

diff --git a/sci-libs/gdal/gdal-2.0.2-r1.ebuild 
b/sci-libs/gdal/gdal-2.0.2-r1.ebuild
deleted file mode 100644
index 4493f7a8728..000
--- a/sci-libs/gdal/gdal-2.0.2-r1.ebuild
+++ /dev/null
@@ -1,315 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-WANT_AUTOCONF="2.5"
-
-GENTOO_DEPEND_ON_PERL="no"
-PYTHON_COMPAT=( python2_7 python3_4 )
-DISTUTILS_OPTIONAL=1
-
-inherit autotools eutils libtool perl-module distutils-r1 python-r1 
toolchain-funcs java-pkg-opt-2
-
-DESCRIPTION="Translator library for raster geospatial data formats (includes 
OGR support)"
-HOMEPAGE="http://www.gdal.org/;
-SRC_URI="http://download.osgeo.org/${PN}/${PV}/${P}.tar.gz;
-
-SLOT="0/2"
-LICENSE="BSD Info-ZIP MIT"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos"
-IUSE="armadillo +aux_xml curl debug doc fits geos gif gml hdf5 java jpeg 
jpeg2k mdb mysql netcdf odbc ogdi opencl pdf perl png postgres python 
spatialite sqlite threads xls"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/json-c
-   dev-libs/libpcre
-   dev-libs/libxml2
-   media-libs/tiff:0=
-   sci-libs/libgeotiff
-   sys-libs/zlib[minizip(+)]
-   armadillo? ( sci-libs/armadillo[lapack] )
-   curl? ( net-misc/curl )
-   fits? ( sci-libs/cfitsio )
-   geos?   ( >=sci-libs/geos-2.2.1 )
-   gif? ( media-libs/giflib:= )
-   gml? ( >=dev-libs/xerces-c-3 )
-   hdf5? ( >=sci-libs/hdf5-1.6.4[szip] )
-   java? ( >=virtual/jre-1.6:* )
-   jpeg? ( virtual/jpeg:0= )
-   jpeg2k? ( media-libs/jasper:= )
-   mysql? ( virtual/mysql )
-   netcdf? ( sci-libs/netcdf )
-   odbc?   ( dev-db/unixODBC )
-   ogdi? ( sci-libs/ogdi )
-   opencl? ( virtual/opencl )
-   pdf? ( >=app-text/poppler-0.24.3:= )
-   perl? ( dev-lang/perl:= )
-   png? ( media-libs/libpng:0= )
-   postgres? ( >=dev-db/postgresql-8.4:= )
-   python? (
-   ${PYTHON_DEPS}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   )
-   sqlite? ( dev-db/sqlite:3 )
-   spatialite? ( dev-db/spatialite )
-   xls? ( dev-libs/freexl )
-"
-
-DEPEND="${RDEPEND}
-   doc? ( app-doc/doxygen )
-   java? ( >=virtual/jdk-1.6 )
-   perl? ( dev-lang/swig:0 )
-   python? ( dev-lang/swig:0 )"
-
-AT_M4DIR="${S}/m4"
-MAKEOPTS+=" -j1"
-
-REQUIRED_USE="
-   spatialite? ( sqlite )
-   mdb? ( java )
-   python? ( ${PYTHON_REQUIRED_USE} )
-"
-
-pkg_setup() {
-   java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-   java-pkg-opt-2_src_prepare
-
-   # fix datadir and docdir placement
-   sed -i \
-   -e "s:@datadir@:@datadir@/gdal:" \
-   -e "s:@exec_prefix@/doc:@exec_prefix@/share/doc/${PF}/html:g" \
-   "${S}"/GDALmake.opt.in || die
-
-   # the second sed expression should fix bug 371075
-   sed -i \
-   -e "s:setup.py install:setup.py install --root=\$(DESTDIR):" \
-   -e "s:--prefix=\$(DESTDIR):--prefix=:" \
-   "${S}"/swig/python/GNUmakefile || die
-
-   # -soname is only accepted by GNU ld/ELF
-   [[ ${CHOST} == *-darwin* ]] \
-   && epatch "${FILESDIR}"/${PN}-1.5.0-install_name.patch \
-   || epatch "${FILESDIR}"/${PN}-1.5.0-soname.patch
-
-   # Fix spatialite/sqlite include issue
-   sed -i \
-   -e 's:spatialite/sqlite3.h:sqlite3.h:g' \
-   ogr/ogrsf_frmts/sqlite/ogr_sqlite.h || die
-
-   # Fix freexl configure check
-   sed -i \
-   -e 's:FREEXL_LIBS=missing):FREEXL_LIBS=missing,-lm):g' \
-   configure.in || die
-
-   sed \
-   -e "s: /usr/: \"${EPREFIX}\"/usr/:g" \
-   -i configure.in || die
-
-   sed \
-   -e 's:^ar:$(AR):g' \
-   -i ogr/ogrsf_frmts/sdts/install-libs.sh || die
-
-   tc-export AR RANLIB
-
-   eautoreconf
-
-   prepare_python() {
-   mkdir -p "${BUILD_DIR}" || die
-   find "${S}" -type d -maxdepth 1 -exec ln -s {} "${BUILD_DIR}"/ 
\; ||die
-   find "${S}" -type f -maxdepth 1 -exec cp 
--target="${BUILD_DIR}"/ {} + ||die
-#  mkdir -p "${BUILD_DIR}"/swig/python || die
-#  mkdir -p "${BUILD_DIR}"/apps || 

[gentoo-commits] repo/gentoo:master commit in: net-libs/wvstreams/

2017-07-19 Thread Jeroen Roovers
commit: c75e574ad8877c5c367129cc33838afdc1c6dcdb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jul 19 19:24:31 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jul 19 19:24:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c75e574a

net-libs/wvstreams: Old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild | 104 ---
 1 file changed, 104 deletions(-)

diff --git a/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild 
b/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild
deleted file mode 100644
index c819b3b2714..000
--- a/net-libs/wvstreams/wvstreams-4.6.1-r2.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit autotools eutils flag-o-matic toolchain-funcs versionator
-
-DESCRIPTION="A network programming library in C++"
-HOMEPAGE="http://alumnit.ca/wiki/?WvStreams;
-SRC_URI="https://wvstreams.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc sparc x86"
-IUSE="pam doc +ssl +dbus debug"
-
-#Tests fail if openssl is not compiled with -DPURIFY. Gentoo's isn't. FAIL!
-RESTRICT="test"
-
-#QA Fail: xplc is compiled as a part of wvstreams.
-#It'll take a larger patching effort to get it extracted, since upstream 
integrated it
-#more tightly this time. Probably for the better since upstream xplc seems 
dead.
-
-RDEPEND="sys-libs/readline
-   sys-libs/zlib
-   dbus? ( >=sys-apps/dbus-1.4.20 )
-   dev-libs/openssl:0
-   pam? ( sys-libs/pam )"
-DEPEND="${RDEPEND}
-   || ( >=sys-devel/gcc-4.1 >=dev-libs/boost-1.34.0 )
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )"
-
-DOCS="ChangeLog README*"
-
-pkg_setup() {
-   if has_version '>=sys-devel/gcc-4.1' && ! has_version 
'>=dev-libs/boost-1.34.1'
-   then
-   if ! version_is_at_least 4.1 "$(gcc-fullversion)"
-   then
-   eerror "This package requires the active gcc to be at 
least version 4.1"
-   eerror "or >=dev-libs/boost-1.34.1 must be installed."
-   die "Please activate >=sys-devel/gcc-4.1 with 
gcc-config."
-   fi
-   fi
-}
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${P}-parallel-make.patch \
-   "${FILESDIR}"/${P}-openssl-1.0.0.patch \
-   "${FILESDIR}"/${P}-glibc212.patch \
-   "${FILESDIR}"/${P}-gcc47.patch
-
-   sed -i \
-   -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
-   -e 's:AM_PROG_CC_STDC:AC_PROG_CC:' \
-   configure.ac argp/configure.ac || die
-
-   eautoreconf
-   pushd argp >/dev/null
-   eautoreconf
-   popd >/dev/null
-}
-
-src_configure() {
-   append-flags -fno-strict-aliasing
-   append-flags -fno-tree-dce -fno-optimize-sibling-calls #421375
-
-   tc-export CXX
-
-   econf \
-   --localstatedir=/var \
-   $(use_enable debug) \
-   --disable-optimization \
-   $(use_with dbus) \
-   --with-openssl \
-   $(use_with pam) \
-   --without-tcl \
-   --without-qt \
-   --with-zlib \
-   --without-valgrind
-}
-
-src_compile() {
-   default
-
-   if use doc; then
-   doxygen || die
-   fi
-}
-
-src_test() {
-   emake test
-}
-
-src_install() {
-   default
-
-   if use doc; then
-   #the list of files is too big for dohtml -r Docs/doxy-html/*
-   cd Docs/doxy-html
-   dohtml -r *
-   fi
-}



  1   2   >