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

2018-02-09 Thread Andreas Sturmlechner
commit: 1513c21b7365ba12d7d334f859f19b36626487c5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 22:24:40 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1513c21b

media-libs/mediastreamer: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../files/mediastreamer-2.7.3-ffmpeg-0.11.patch|  94 -
 .../files/mediastreamer-2.7.3-sdl-build.patch  | 220 -
 .../files/mediastreamer-2.7.3-v4l-automagic.patch  |  40 
 .../files/mediastreamer-2.7.3-videoenc_282.patch   | 130 
 .../mediastreamer/mediastreamer-2.7.3-r3.ebuild| 129 
 .../mediastreamer/mediastreamer-2.9.0.ebuild   | 171 
 6 files changed, 784 deletions(-)

diff --git 
a/media-libs/mediastreamer/files/mediastreamer-2.7.3-ffmpeg-0.11.patch 
b/media-libs/mediastreamer/files/mediastreamer-2.7.3-ffmpeg-0.11.patch
deleted file mode 100644
index c242b5fe139..000
--- a/media-libs/mediastreamer/files/mediastreamer-2.7.3-ffmpeg-0.11.patch
+++ /dev/null
@@ -1,94 +0,0 @@
-Fix build with recent ffmpeg releases.
-https://bugs.gentoo.org/show_bug.cgi?id=419453
-
-Index: mediastreamer-2.7.3/src/videoenc.c
-===
 mediastreamer-2.7.3.orig/src/videoenc.c
-+++ mediastreamer-2.7.3/src/videoenc.c
-@@ -53,7 +53,6 @@ void ms_ffmpeg_log_callback(void* ptr, i
- 
- void ms_ffmpeg_check_init(){
-   if(!avcodec_initialized){
--  avcodec_init();
-   avcodec_register_all();
-   avcodec_initialized=TRUE;
- #ifdef ENABLE_LOG_FFMPEG
-@@ -107,6 +106,7 @@ typedef struct EncState{
-   uint32_t framenum;
-   VideoStarter starter;
-   bool_t req_vfu;
-+  AVDictionary * ff_opts;
- }EncState;
- 
- static int enc_set_fps(MSFilter *f, void *arg){
-@@ -214,6 +214,7 @@ static void enc_init(MSFilter *f, enum C
-   s->req_vfu=FALSE;
-   s->framenum=0;
-   s->av_context.codec=NULL;
-+  s->ff_opts = NULL;
- }
- 
- static void enc_h263_init(MSFilter *f){
-@@ -300,9 +301,9 @@ static void prepare_h263(EncState *s){
-   if (s->profile==0){
-   s->codec=CODEC_ID_H263;
-   }else{
--  c->flags|=CODEC_FLAG_H263P_UMV;
-+  av_dict_set(&(s->ff_opts), "umv", "1", 0);
-   c->flags|=CODEC_FLAG_AC_PRED;
--  c->flags|=CODEC_FLAG_H263P_SLICE_STRUCT;
-+  av_dict_set(&(s->ff_opts), "structured_slices", "1", 0);
-   /*
-   c->flags|=CODEC_FLAG_OBMC;
-   c->flags|=CODEC_FLAG_AC_PRED;
-@@ -342,9 +343,9 @@ static void enc_preprocess(MSFilter *f){
-   ms_error("could not find encoder for codec id %i",s->codec);
-   return;
-   }
--  error=avcodec_open(>av_context, s->av_codec);
-+  error=avcodec_open2(>av_context, s->av_codec, &(s->ff_opts));
-   if (error!=0) {
--  ms_error("avcodec_open() failed: %i",error);
-+  ms_error("avcodec_open2() failed: %i",error);
-   return;
-   }
-   video_starter_init(>starter);
-@@ -372,7 +373,7 @@ static void add_rfc2190_header(mblk_t **
-   // assume video size is CIF or QCIF
-   if (context->width == 352 && context->height == 288) header->b_wptr[1] 
= 0x60;
-   else header->b_wptr[1] = 0x40;
--  if (context->coded_frame->pict_type != FF_I_TYPE) header->b_wptr[1] |= 
0x10;
-+  if (context->coded_frame->pict_type != AV_PICTURE_TYPE_I) 
header->b_wptr[1] |= 0x10;
-   header->b_wptr += 4;
-   header->b_cont = *packet;
-   *packet = header;
-@@ -779,7 +780,7 @@ static void process_frame(MSFilter *f, m
-   s->req_vfu=TRUE;
-   }
-   if (s->req_vfu){
--  pict.pict_type=FF_I_TYPE;
-+  pict.pict_type=AV_PICTURE_TYPE_I;
-   s->req_vfu=FALSE;
-   }
-   comp_buf->b_rptr=comp_buf->b_wptr=comp_buf->b_datap->db_base;
-@@ -799,7 +800,7 @@ static void process_frame(MSFilter *f, m
-   if (s->framenum==1){
-   video_starter_first_frame (>starter,f->ticker->time);
-   }
--  if (c->coded_frame->pict_type==FF_I_TYPE){
-+  if (c->coded_frame->pict_type==AV_PICTURE_TYPE_I){
-   ms_message("Emitting I-frame");
-   }
-   comp_buf->b_wptr+=error;
-Index: mediastreamer-2.7.3/src/h264dec.c
-===
 mediastreamer-2.7.3.orig/src/h264dec.c
-+++ mediastreamer-2.7.3/src/h264dec.c
-@@ -46,7 +46,6 @@ typedef struct _DecData{
- static void ffmpeg_init(){
-   static bool_t done=FALSE;
-   if (!done){
--  avcodec_init();
-   avcodec_register_all();
-   done=TRUE;
-   }

diff --git 

[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-02-09 Thread Andreas Sturmlechner
commit: f230d6966808ccdbbfe4555d56153d5522e85999
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 09:46:49 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f230d696

app-office/libreoffice: 6.0.1.1 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-office/libreoffice/Manifest | 2 ++
 .../{libreoffice-6.0..ebuild => libreoffice-6.0.1.1.ebuild} | 2 +-
 app-office/libreoffice/libreoffice-6.0..ebuild  | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index 923a2ad780c..44fd5d30cdc 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -7,6 +7,8 @@ DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 
BLAKE2B 51db6bd9058
 DIST libreoffice-5.4.4.2.tar.xz 193657116 BLAKE2B 
1be8565481bbdf930f6bbbd894dbe5d0be7faeba068517e15a2b23acfd2d8d06960e5991fd9d990c49ad13857177020e22fdb5c272587bc25cac4bdf23bb7fa1
 SHA512 
f7142fd73aa037b0bbffd3fa5af58049ab6688900976296ba2e53956227aef8920cb229aad4eec05ff36c8dde584415f7893893cc81cac72b305f67b80e36882
 DIST libreoffice-6.0.0.3-patchset-01.tar.xz 33032 BLAKE2B 
1fad88d703b9ff097a6870d6f74731de3e6bd5f7b91938e674b28bf82bae0b075d910a930b2e3c82fc1ff5dff81f13575fed351f8165cec67903e8949e06b9d4
 SHA512 
2fb4f02e93b648fbf611b62ad8bfe93fd4b228bee84612a9d62e9bc061cabf51ae76d7d9cbfbad186669db109fe829765c816eb27960f97ca37e7fe0536d72e9
 DIST libreoffice-6.0.0.3.tar.xz 203284136 BLAKE2B 
2d8190499439afa017f12b22c4b80001169af5021a546cdbf5eaea3c47a2ac1d190e98efe5022050431805417824c29295068631ec596a6357b13528c52d
 SHA512 
2b2c0fafec5db23317a2c3236b482b0cef9c0edfabab94495a0fd3007b271eaa1dbfa97711819b3b8fb2e2375fbdfb4c662df4ffc8c519255ac84357b4c45e62
+DIST libreoffice-6.0.1.1.tar.xz 203420780 BLAKE2B 
80478e0627843abcf61c067592f3220f83ae43123d95dcab82197389f538f843001a6fabdc0d67e3cbca734cf68f2effdc09fa7d15e7b49c719f26d9ebf70791
 SHA512 
dc9dbef56a5c1df0ac0a4418a42e9200fe1a2e52d3708ad9d86ad1b35171c258fa9a88a4427992aeae83f5e0f22613cf885f068c99e76e5fe376888f4edf7855
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
 DIST libreoffice-help-5.4.4.2.tar.xz 2343352 BLAKE2B 
d94528f6dcc85730f2443f3a84beff0cd113bb9c423d767c74d831649e56b0c92279474a0f1169ebc0ffd7804d57dba86aaa352e7fd1d9df9721f3ff6059047c
 SHA512 
55abdde1cf0f62d213a897cc30b92ae04960c9b1e6e69c4f86242d2beecd787f44be9c3d0c8684d775ffe40b17d685a71739c9c2f08753649c4e1298fdf94226
 DIST libreoffice-help-6.0.0.3.tar.xz 2972556 BLAKE2B 
6805f6a28cf29c6d55732051763f12ad2dc2c76c27c518dc40b85f2ef8f7ad4943de3a55629da4de77ee1ebd3b62a8e225e0ee260081f3c25cbffc60a21970c1
 SHA512 
9058edf71e34e55e23f5559af94d12d5f12c38385b30d75919283f435eac07dfc790d116b556aca0d0aa30f5119aea39f07a123a1f1e5ad172f5b19b3f7dc4b0
+DIST libreoffice-help-6.0.1.1.tar.xz 1009 BLAKE2B 
b91ece81445b84d8ad06108c7a06ee6618ae96a36f11900ec46019c66f159f6e8f32a10677153201992c1b69bbfd6c323ab9d43f544471e373277bf6281ffcd1
 SHA512 
3437e1cd6063183a5786acdff677180540285ca1a56fcb6690e6c3c6a6b432811c2a0b6b4667cc18acb45020fce7982e43cc3ef0db42aa6303f841da964b8914

diff --git a/app-office/libreoffice/libreoffice-6.0..ebuild 
b/app-office/libreoffice/libreoffice-6.0.1.1.ebuild
similarity index 99%
copy from app-office/libreoffice/libreoffice-6.0..ebuild
copy to app-office/libreoffice/libreoffice-6.0.1.1.ebuild
index e8f137c5599..73e251cb02e 100644
--- a/app-office/libreoffice/libreoffice-6.0..ebuild
+++ b/app-office/libreoffice/libreoffice-6.0.1.1.ebuild
@@ -70,7 +70,7 @@ $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})"
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${PV} == ** ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip

diff --git a/app-office/libreoffice/libreoffice-6.0..ebuild 
b/app-office/libreoffice/libreoffice-6.0..ebuild
index e8f137c5599..73e251cb02e 100644
--- a/app-office/libreoffice/libreoffice-6.0..ebuild
+++ b/app-office/libreoffice/libreoffice-6.0..ebuild
@@ -70,7 +70,7 @@ $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})"
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${PV} == ** ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip



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

2018-02-09 Thread Michał Górny
commit: aac8265c6fbc04f5ecb07da99948a197436615e1
Author: Alexander "Ananace" Olofsson  haxalot  com>
AuthorDate: Fri Feb  9 22:37:03 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  9 23:23:43 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=aac8265c

repositories: Update URLs for ace overlay

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

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

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 728ab45..6fb29bf 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -100,15 +100,15 @@ FIN
   
 ace
 Personal overlay with ebuilds that were missing at 
one point or another
-https://github.com/ace13/overlay
+https://github.com/ananace/overlay
 
   a...@haxalot.com
   Alexander Olofsson
 
-https://github.com/ace13/overlay.git
-git://github.com/ace13/overlay.git
-g...@github.com:ace13/overlay.git
-https://github.com/ace13/overlay/commits/master.atom
+https://github.com/ananace/overlay.git
+git://github.com/ananace/overlay.git
+g...@github.com:ananace/overlay.git
+https://github.com/ananace/overlay/commits/master.atom
   
   
 activehome



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

2018-02-09 Thread Thomas Deutschmann
commit: a56c629d2078433c399ee21c5af02ce78dbb62dc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Feb  9 23:19:33 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Feb  9 23:21:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a56c629d

x86/package.use.mask: dev-libs/mongo-c-driver[test]

dev-libs/mongo-c-driver[test] requires dev-db/mongodb which has dropped
x86 support.

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

 profiles/arch/x86/package.use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/x86/package.use.mask 
b/profiles/arch/x86/package.use.mask
index 321519c..62757ad8fc6 100644
--- a/profiles/arch/x86/package.use.mask
+++ b/profiles/arch/x86/package.use.mask
@@ -3,6 +3,10 @@
 
 # This file requires >=portage-2.1.1
 
+# Thomas Deutschmann  (10 Feb 2018)
+# Requires dev-db/mongodb which has dropped x86 support
+>=dev-libs/mongo-c-driver-1.8.2 test
+
 # Thomas Deutschmann  (05 Jan 2018)
 # Requires dev-python/neovim-remote, which is not keyworded on x86.
 app-editors/neovim remote



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

2018-02-09 Thread Michał Górny
commit: ea7665a7165ea08e10e12740b9e680fb59b1ffcd
Author: Christian Segundo  gmail  com>
AuthorDate: Wed Feb  7 02:59:49 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  9 20:54:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea7665a7

www-client/uget: version bump to 2.2.0

Closes: https://github.com/gentoo/gentoo/pull/7102
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Signed-off-by: Christian Segundo  gmail.com>

 www-client/uget/Manifest  |  1 +
 www-client/uget/metadata.xml  | 13 +++-
 www-client/uget/uget-2.2.0.ebuild | 62 +++
 3 files changed, 75 insertions(+), 1 deletion(-)

diff --git a/www-client/uget/Manifest b/www-client/uget/Manifest
index 2809072a29a..57e25959dc5 100644
--- a/www-client/uget/Manifest
+++ b/www-client/uget/Manifest
@@ -1,3 +1,4 @@
 DIST uget-1.10.3.tar.gz 484395 BLAKE2B 
53ef428559cae0d8a924c3ac75bec874cd39de0034e105dc34e9848c56906bc0f75482b023181a3567d17e82a92b128613b55b94e41a2f87a6bcb039c18151a3
 SHA512 
c939832ad2b635e5b1d1e448bf075c13362e3f69f708e6669ad435f6467b258441d5adef34cea176082fa107865c2edd3ceb54c5b9074f0d71f94496e4995a34
 DIST uget-1.10.4.tar.gz 576147 BLAKE2B 
92c599d1ae23b6e457b08c457d1145856c1ba34ced958d1cd6b459a0878e07a91479dea5c1f5d5bf4af9cdcf29d98ca90ee6c26fa9e002bfbfd1df2a65f49a48
 SHA512 
013654ea6d06e8075bb216082dd85e7a4d1ed8510af4ecaf49c816dbf127f1adb157ca275a574f87900d7980cbe70e1e918fe54f0ceb4d0115da0ba07d4f2273
 DIST uget-1.8.0.tar.gz 426031 BLAKE2B 
ad4b5f664d62c2259a236ee7df7b3880092d957e91584370a39ba546ecba431271a12c3ec3e005db39aacfa6e2b409279befcf83fb6134f004f0f7ef8fec0cac
 SHA512 
c68c591b3c513c4829dfee735cbe8d4ee2c47aed0c5962002de9462c6c12b731e51756785e834aadaef1cb47182b9e560dd836d2e4861f053ec1f2f447c2c68d
+DIST uget-2.2.0.tar.gz 997012 BLAKE2B 
4b6207edbb3e5871c5a8d179856920fa5985e65d9655c0d42e7ff9f1d34dfd6489bb1b75615e12432b5d5bbadb3be503bb605eb5256ba3566465ef4e07559466
 SHA512 
c3e7f0b7cc31df9d1a6c3717f65ad9b14c9e60acb756997b6f6b94f464257c7fb120be5e15bd1d871b89f6485160fb095bd120fb27abc81bd0ee29e57edde468

diff --git a/www-client/uget/metadata.xml b/www-client/uget/metadata.xml
index 07f024846f8..de4e8c07850 100644
--- a/www-client/uget/metadata.xml
+++ b/www-client/uget/metadata.xml
@@ -1,6 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   chn2guev...@gmail.com
+   Christian Segundo
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Uget is a download manager. It allows you to classify URLs 
before downloading
them, and allows you to import URLs from HTML files. Every 
category has an
@@ -10,8 +18,11 @@

Enable support for net-misc/aria2 
through xmlrpc.
You'll find the plugin in the app's settings.
-   Make temporary files that are used 
while downloading hidden.
+   Enable JSON-RPC over unix domain 
socket
Use x11-libs/gtk+:3 instead of 
x11-libs/gtk+:2
+   Make temporary files that are used 
while downloading hidden.
+   Use dev-libs/openssl instead of 
net-libs/gnutls
+   Enable uGet feed messages


urlget

diff --git a/www-client/uget/uget-2.2.0.ebuild 
b/www-client/uget/uget-2.2.0.ebuild
new file mode 100644
index 000..de8df075331
--- /dev/null
+++ b/www-client/uget/uget-2.2.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit gnome2-utils xdg-utils
+
+DESCRIPTION="Download manager using gtk+ and libcurl"
+HOMEPAGE="http://www.ugetdm.com;
+SRC_URI="mirror://sourceforge/urlget/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="aria2 ayatana control-socket +gnutls gstreamer libnotify nls openssl rss"
+REQUIRED_USE="^^ ( gnutls openssl )"
+
+RDEPEND="
+   >=net-misc/curl-7.19.1
+   dev-libs/libpcre
+   >=dev-libs/glib-2.32:2
+   >=x11-libs/gtk+-3.4:3
+   gnutls? (
+   net-libs/gnutls
+   dev-libs/libgcrypt:0
+   )
+   aria2? ( net-misc/aria2[xmlrpc] )
+   ayatana? ( dev-libs/libappindicator:3 )
+   gstreamer? ( media-libs/gstreamer:1.0 )
+   libnotify? ( x11-libs/libnotify )
+   openssl? ( dev-libs/openssl:0 )
+   "
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   sys-devel/gettext
+   "
+
+src_configure() {
+   local myconf=(
+   $(use_enable ayatana appindicator)
+   $(use_enable control-socket unix_socket)
+   $(use_enable gstreamer)
+   $(use_enable libnotify notify)
+   $(use_enable nls)
+   $(use_enable rss rss_notify)
+   $(use_with gnutls)
+   $(use_with openssl)
+   )
+
+   econf 

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

2018-02-09 Thread Brian Evans
commit: df9d1cdb0344cdb1af068aadee25a0c65c5b6d3d
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Feb  9 21:51:47 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Feb  9 21:51:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9d1cdb

dev-db/mariadb: Backport NUMA enabling changes from 10.2 to 10.1.31

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-db/mariadb/Manifest   | 1 +
 dev-db/mariadb/mariadb-10.1.31.ebuild | 7 +--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 440bc168c01..543b842b461 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -17,3 +17,4 @@ DIST mysql-extras-20170310-1426Z.tar.bz2 307052 BLAKE2B 
2c364678301c97ae5c88551a
 DIST mysql-extras-20170316-1355Z.tar.bz2 308933 BLAKE2B 
e515f5926a0cbba86fdaaa9295e9d1f7d5f36e401f73de0d9d3c837a7f2d2a4f48c8a1bb5dadefad73a1aa676c9c5aee3571342d594644918cfca2861f2ba253
 SHA512 
5bf7938bfa5989da85216fbca4575397fc05c83e1afac76bd6c0b338a876caf37194f53a2a933d6f69eb31727ca005be617e53a8fdd0a95d8f1f68684c4ba68c
 DIST mysql-extras-20170830-1210Z.tar.bz2 312079 BLAKE2B 
821451c88ee812d6debed56f62102824370568999d16a469830c3ed84e9eb1aec7f823c8a422db60c9a74d20f19581178fc06ee0a483a6ea31ef408a882a8db6
 SHA512 
3de3bb93b09c29ff411c135ff2762edad3498d9e8fb844df349ce8ab864969668f2bbc3ba99e2217cc20f1c9155443794c301ca064d09a1b45ddead567c8
 DIST mysql-extras-20170926-1321Z.tar.bz2 312466 BLAKE2B 
3e3e19a905961570cea9c1eb14dec3780da80409e996b1aeddb08625da875f5d08798a862cb1b80566b0d8be0d9ec2aab0a390ca90f991203c9871538b11f00a
 SHA512 
556e782ccc40d8cffb2fde8c46038c90023440c07785ec667f898afdb8c802faeb4dbfe8b3918a1e563b46d1dc8c0de1172f7843ce08ee1ded435b344f8f0cf5
+DIST mysql-extras-20180209-2142Z.tar.bz2 315130 BLAKE2B 
4e3b1de9fdbb455f318962dabb4867e1f987fc5e921c9184171d0cca2176306c0153b17d600db809d5f25405edd52079873071ff5fda94fe1ea6f840c575f87e
 SHA512 
d750020428bfff81a4275d92bb19a22804e6f4a3f60153d1fc8a31df40491f4b52d534c6123d2862737443e91d4b76741c7ec8c2aaac17eba481301243718107

diff --git a/dev-db/mariadb/mariadb-10.1.31.ebuild 
b/dev-db/mariadb/mariadb-10.1.31.ebuild
index b191b1e8769..70cf9d93025 100644
--- a/dev-db/mariadb/mariadb-10.1.31.ebuild
+++ b/dev-db/mariadb/mariadb-10.1.31.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
-MY_EXTRAS_VER="20170926-1321Z"
+MY_EXTRAS_VER="20180209-2142Z"
 # The wsrep API version must match between upstream WSREP and 
sys-cluster/galera major number
 WSREP_REVISION="25"
 SUBSLOT="18"
@@ -15,7 +15,7 @@ inherit toolchain-funcs java-pkg-opt-2 mysql-multilib-r1
 HOMEPAGE="http://mariadb.org/;
 DESCRIPTION="An enhanced, drop-in replacement for MySQL"
 
-IUSE="+backup bindist cracklib galera kerberos innodb-lz4 innodb-lzo 
innodb-snappy jdbc mroonga odbc oqgraph pam sphinx sst-rsync sst-mariabackup 
sst-xtrabackup tokudb systemd xml"
+IUSE="+backup bindist cracklib galera kerberos innodb-lz4 innodb-lzo 
innodb-snappy jdbc mroonga numa odbc oqgraph pam sphinx sst-rsync 
sst-mariabackup sst-xtrabackup tokudb systemd xml"
 RESTRICT="!bindist? ( bindist )"
 
 REQUIRED_USE="jdbc? ( extraengine server !static ) server? ( tokudb? ( 
jemalloc !tcmalloc ) ) static? ( !pam )"
@@ -31,6 +31,7 @@ PATCHES=(
"${MY_PATCH_DIR}"/20015_all_mariadb-pkgconfig-location.patch

"${MY_PATCH_DIR}"/20018_all_mariadb-10.1.16-without-clientlibs-tools.patch
"${MY_PATCH_DIR}"/20025_all_mariadb-10.1.26-gssapi-detect.patch
+   "${MY_PATCH_DIR}"/20029_all_mariadb-10.1.31-enable-numa.patch
 )
 
 COMMON_DEPEND="
@@ -51,6 +52,7 @@ COMMON_DEPEND="
innodb-lz4? ( app-arch/lz4 )
innodb-lzo? ( dev-libs/lzo )
innodb-snappy? ( app-arch/snappy )
+   numa? ( sys-process/numactl )
oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
pam? ( virtual/pam:0= )
systemd? ( sys-apps/systemd:= )
@@ -141,6 +143,7 @@ src_configure(){
-DPLUGIN_AUTH_GSSAPI=$(usex kerberos YES NO)
-DWITH_MARIABACKUP=$(usex backup ON OFF)
-DWITH_LIBARCHIVE=$(usex backup ON OFF)
+   -DWITH_NUMA=$(usex numa ON OFF)
)
fi
mysql-multilib-r1_src_configure



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

2018-02-09 Thread Lars Wendler
commit: 8efd0609578b6f5d5a653228850fd9513f166b0e
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Feb  9 22:18:19 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Feb  9 22:18:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8efd0609

sys-apps/man-db: Bump to version 2.8.1

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-apps/man-db/Manifest|   1 +
 sys-apps/man-db/man-db-2.8.1.ebuild | 122 
 2 files changed, 123 insertions(+)

diff --git a/sys-apps/man-db/Manifest b/sys-apps/man-db/Manifest
index 05aa8e84537..6aac29c0fb1 100644
--- a/sys-apps/man-db/Manifest
+++ b/sys-apps/man-db/Manifest
@@ -1,2 +1,3 @@
 DIST man-db-2.7.6.1.tar.xz 1541316 BLAKE2B 
ea3aa7e90ea8af4882bd99d99374cc37d9c0c7f70bb970973eb3f2178aa4323bcdebc7f39f142ec0144dbe55a9f86aba15d9fe281d2662d280b8e6dca9452f24
 SHA512 
623c5e7f8b7c289908b2c926f8777293b8d39aeceef0d2509d701a8b0bfa81408650f655c8608318221786c751a79ee91124b07993de5298cd7fa6d8bb737301
 DIST man-db-2.8.0.tar.xz 1620344 BLAKE2B 
abb2879848f4db187d28bb3d8359ecfab0033ea3a5333ebd1a837733de563972d97153f11c08e8669553dc5cddea12ca774117985b32d218a30db407437717f3
 SHA512 
06f52ecd6e7ced858a32117ea4be3ed5fc3d4428cb810d31b85dd75556e999f5badc6eb81f642b56afe2a697462ccca9fd8cc5ecfbd40f132d5a74f84f316d39
+DIST man-db-2.8.1.tar.xz 1621664 BLAKE2B 
94496c1ca912e7cea2c98be8443d5b13dd685c5af86e9996b625fae44384f4cacf24a4196d77a080da10baa385b5e63d8b090c2bfcc492f2a41757d7a3840468
 SHA512 
82e75df32eb8575f47c3f36b5f2bbc827776747abfa39af589802e6566636c0771df0ee3197cb2bec3318c3055ff4e9d04c7da13b3bc6ea8a1ea1b1340554ef0

diff --git a/sys-apps/man-db/man-db-2.8.1.ebuild 
b/sys-apps/man-db/man-db-2.8.1.ebuild
new file mode 100644
index 000..627b8941479
--- /dev/null
+++ b/sys-apps/man-db/man-db-2.8.1.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit ltprune user versionator
+
+DESCRIPTION="a man replacement that utilizes berkdb instead of flat files"
+HOMEPAGE="http://www.nongnu.org/man-db/;
+if [[ "${PV}" = * ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://git.savannah.gnu.org/git/man-db.git;
+else
+   SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="berkdb +gdbm +manpager nls seccomp selinux static-libs zlib"
+
+CDEPEND="
+   !sys-apps/man
+   >=dev-libs/libpipeline-1.5.0
+   sys-apps/groff
+   berkdb? ( sys-libs/db:= )
+   gdbm? ( sys-libs/gdbm:= )
+   !berkdb? ( !gdbm? ( sys-libs/gdbm:= ) )
+   seccomp? ( sys-libs/libseccomp )
+   zlib? ( sys-libs/zlib )
+"
+DEPEND="
+   ${CDEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? (
+   >=app-text/po4a-0.45
+   sys-devel/gettext
+   )
+"
+RDEPEND="
+   ${CDEPEND}
+   selinux? ( sec-policy/selinux-mandb )
+"
+PDEPEND="manpager? ( app-text/manpager )"
+
+pkg_setup() {
+   # Create user now as Makefile in src_install does setuid/chown
+   enewgroup man 15
+   enewuser man 13 -1 /usr/share/man man
+
+   if (use gdbm && use berkdb) || (use !gdbm && use !berkdb) ; then #496150
+   ewarn "Defaulting to USE=gdbm due to ambiguous berkdb/gdbm USE 
flag settings"
+   fi
+}
+
+src_configure() {
+   export ac_cv_lib_z_gzopen=$(usex zlib)
+   local myeconfargs=(
+   --docdir='$(datarootdir)'/doc/${PF}
+   --with-systemdtmpfilesdir="${EPREFIX}"/usr/lib/tmpfiles.d
+   --enable-setuid
+   --enable-cache-owner=man
+   --with-sections="1 1p 8 2 3 3p 4 5 6 7 9 0p tcl n l p o 1x 2x 
3x 4x 5x 6x 7x 8x"
+   $(use_enable nls)
+   $(use_enable static-libs static)
+   $(use_with seccomp libseccomp)
+   --with-db=$(usex gdbm gdbm $(usex berkdb db gdbm))
+   )
+   econf "${myeconfargs[@]}"
+
+   # Disable color output from groff so that the manpager can add it. 
#184604
+   sed -i \
+   -e '/^#DEFINE.*\<[nt]roff\>/{s:^#::;s:$: -c:}' \
+   src/man_db.conf || die
+}
+
+src_install() {
+   default
+   dodoc docs/{HACKING,TODO}
+   prune_libtool_files
+
+   exeinto /etc/cron.daily
+   newexe "${FILESDIR}"/man-db.cron man-db #289884
+}
+
+pkg_preinst() {
+   local cachedir="${EROOT}var/cache/man"
+   # If the system was already exploited, and the attacker is hiding in the
+   # cachedir of the old man-db, let's wipe them out.
+   # see bug  #602588 comment 18
+   local _replacing_version=
+   local _setgid_vuln=0
+   for _replacing_version in ${REPLACING_VERSIONS}; do
+   if version_is_at_least '2.7.6.1-r2' "${_replacing_version}"; 
then
+   

[gentoo-commits] repo/gentoo:master commit in: sys-block/partitionmanager/

2018-02-09 Thread Michael Palimaka
commit: 26df1d54ce66e675417848d03825ba2601be0d3f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Feb  9 23:55:20 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Feb  9 23:57:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26df1d54

sys-block/partitionmanager: stabilise 3.3.1 for amd64/x86

Bug: https://bugs.gentoo.org/647052
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-block/partitionmanager/partitionmanager-3.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/partitionmanager/partitionmanager-3.3.1.ebuild 
b/sys-block/partitionmanager/partitionmanager-3.3.1.ebuild
index 8cb8b959b18..95a72ca23d5 100644
--- a/sys-block/partitionmanager/partitionmanager-3.3.1.ebuild
+++ b/sys-block/partitionmanager/partitionmanager-3.3.1.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
 [[ ${KDE_BUILD_TYPE} == release ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
 
 LICENSE="GPL-3"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] proj/qt:master commit in: dev-qt/qtnetwork/

2018-02-09 Thread Michael Palimaka
commit: 1badf7a1bca143d3819cb076932a7d33778aaf79
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Feb 10 02:49:08 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Feb 10 02:49:45 2018 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=1badf7a1

dev-qt/qtnetwork: introduce libressl support

This commit deliberately only targets 5.9. until I can complete testing on
later versions.

Bug: https://bugs.gentoo.org/562050
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-qt/qtnetwork/qtnetwork-5.9..ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-qt/qtnetwork/qtnetwork-5.9..ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.9..ebuild
index 3cb59340..94849a21 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.9..ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.9..ebuild
@@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
-IUSE="bindist connman libproxy networkmanager +ssl"
+IUSE="bindist connman libproxy libressl networkmanager +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
@@ -19,7 +19,10 @@ DEPEND="
connman? ( ~dev-qt/qtdbus-${PV} )
libproxy? ( net-libs/libproxy )
networkmanager? ( ~dev-qt/qtdbus-${PV} )
-   ssl? ( dev-libs/openssl:0=[bindist=] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[bindist=] )
+   libressl? ( dev-libs/libressl:0= )
+   )
 "
 RDEPEND="${DEPEND}
connman? ( net-misc/connman )



[gentoo-commits] proj/qt:master commit in: eclass/

2018-02-09 Thread Davide Pesavento
commit: 11c7453a9a179803362ba0318304798258ee12e5
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sat Feb 10 00:00:13 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Feb 10 00:00:13 2018 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=11c7453a

qt5-build.eclass: fix comment

 eclass/qt5-build.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index dde08fdb..69566c42 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -841,7 +841,7 @@ qt5_install_module_config() {
)
fi
 
-   # install also the original qconfig.pri
+   # install the original {qconfig,qmodule}.pri from qtcore
[[ ${PN} == qtcore && ${QT5_MINOR_VERSION} -ge 9 ]] && (
insinto "${QT5_ARCHDATADIR#${EPREFIX}}"/mkspecs/gentoo
newins "${D}${QT5_ARCHDATADIR}"/mkspecs/qconfig.pri 
qconfig-qtcore.pri



[gentoo-commits] proj/kde:master commit in: kde-misc/kdeconnect/

2018-02-09 Thread Michael Palimaka
commit: 544c412299614743a54ec22698bc42ff52c19ef6
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Feb 10 00:11:19 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Feb 10 00:11:41 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=544c4122

kde-misc/kdeconnect: raise frameworks minimal version

Upstream-commit: c46b88cc7a2f8a801634f34f7e7c5eb9216ebbd2
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 kde-misc/kdeconnect/kdeconnect-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-misc/kdeconnect/kdeconnect-.ebuild 
b/kde-misc/kdeconnect/kdeconnect-.ebuild
index b4621cea66..4591f92bc0 100644
--- a/kde-misc/kdeconnect/kdeconnect-.ebuild
+++ b/kde-misc/kdeconnect/kdeconnect-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=6
 
+FRAMEWORKS_MINIMAL="5.42.0"
 KDE_HANDBOOK="optional"
 KDE_TEST="true"
 KMNAME="${PN}-kde"



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

2018-02-09 Thread Michael Palimaka
commit: 88f90d2a83daa4c7755c80c822b6ffbcf1e0b987
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Feb  9 23:53:44 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Feb  9 23:57:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f90d2a

sys-libs/kpmcore: stabilise 3.3.0 for amd64/x86

Bug: https://bugs.gentoo.org/647052
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-libs/kpmcore/kpmcore-3.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/kpmcore/kpmcore-3.3.0.ebuild 
b/sys-libs/kpmcore/kpmcore-3.3.0.ebuild
index d61de3d54ff..975b1eb5e03 100644
--- a/sys-libs/kpmcore/kpmcore-3.3.0.ebuild
+++ b/sys-libs/kpmcore/kpmcore-3.3.0.ebuild
@@ -7,7 +7,7 @@ inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 DESCRIPTION="Library for managing partitions"



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

2018-02-09 Thread Michael Palimaka
commit: f8b29442417e2e7c83525c6d7a15574b51636cb2
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Feb 10 00:42:14 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Feb 10 00:42:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b29442

app-backup/kbackup: remove 1.0

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-backup/kbackup/Manifest   |  1 -
 app-backup/kbackup/kbackup-1.0.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/app-backup/kbackup/Manifest b/app-backup/kbackup/Manifest
index c3df406d98a..67da26cbad2 100644
--- a/app-backup/kbackup/Manifest
+++ b/app-backup/kbackup/Manifest
@@ -1,2 +1 @@
 DIST kbackup-1.0.1.tar.xz 471784 BLAKE2B 
b700df053423d820ee545953b5303b1223c446185b80cbbd19fecb287316cb29156625490166d005231ceae9a068bf2da5b9a599ca8795d16cdcf90454cc8c2e
 SHA512 
1b398a88ce0d109733ad9efd73b3e5770278203a751612749d747352fb05d278a92faeb713fdc82b5cafe9ca1532896a57065b75a9aad1596a34caf4426a18fb
-DIST kbackup-1.0.tar.bz2 500638 BLAKE2B 
949e96c18d3e1ffdf208813e2051af82f85d2eddb11165cffd439956f20ef0796b2f06345459aa3c28c3ea130fbf6dde73404075c7ea6e4c2bc5256dc6246060
 SHA512 
9c85b018d926dfdc9d33e89e4f605d529639471a685e6e20cc4fe3515c9c125f47a2c34f2f0dec299753892d68f24a9bc38346aef85cf41f6e8eaf86b43a

diff --git a/app-backup/kbackup/kbackup-1.0.ebuild 
b/app-backup/kbackup/kbackup-1.0.ebuild
deleted file mode 100644
index 02bc12893b0..000
--- a/app-backup/kbackup/kbackup-1.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="Program that lets you back up any directories or files"
-HOMEPAGE="https://www.linux-apps.com/content/show.php/KBackup?content=44998;
-SRC_URI="http://members.aon.at/m.koller/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-CDEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-"
-DEPEND="${CDEPEND}
-   x11-misc/shared-mime-info
-"
-RDEPEND="${CDEPEND}
-   !app-backup/kbackup:4
-"



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

2018-02-09 Thread Michael Palimaka
commit: 3f3b14bf16de76bc14a37bd23b887bcdbddaa776
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Feb 10 00:41:51 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Feb 10 00:42:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f3b14bf

app-backup/kbackup: stabilise 1.0.1 for amd64

Bug: https://bugs.gentoo.org/647058
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-backup/kbackup/kbackup-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-backup/kbackup/kbackup-1.0.1.ebuild 
b/app-backup/kbackup/kbackup-1.0.1.ebuild
index 30e7971cb84..1c3f1d0d3de 100644
--- a/app-backup/kbackup/kbackup-1.0.1.ebuild
+++ b/app-backup/kbackup/kbackup-1.0.1.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://www.linux-apps.com/content/show.php/KBackup?content=44998;
 [[ ${KDE_BUILD_TYPE} = release ]] && 
SRC_URI="http://members.aon.at/m.koller/${P}.tar.xz;
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 CDEPEND="



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

2018-02-09 Thread Brian Evans
commit: 944053161547f5e85b8afe6815d4e7ba48f8073f
Author: Brian Evans  gentoo  org>
AuthorDate: Sat Feb 10 03:27:35 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Sat Feb 10 03:27:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94405316

dev-db/mariadb-galera: Drop old vulnerable version

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-db/mariadb-galera/Manifest |   2 -
 .../mariadb-galera/mariadb-galera-10.0.32.ebuild   | 181 -
 2 files changed, 183 deletions(-)

diff --git a/dev-db/mariadb-galera/Manifest b/dev-db/mariadb-galera/Manifest
index af0a4ea7812..c74b3336a5f 100644
--- a/dev-db/mariadb-galera/Manifest
+++ b/dev-db/mariadb-galera/Manifest
@@ -1,4 +1,2 @@
-DIST mariadb-galera-10.0.32.tar.gz 63961466 BLAKE2B 
98e98364e32cd6196b40c112f805d57b014d5cbb7d2d266f7730ba5a5f91e86f9c9902ac97e5ff1bfe3b421e3a0ced0204d24edc1ebdfd7fcf715255282ca836
 SHA512 
3f17c4baaa06a51e037c96bc9a44fb612d6e492f9212664a7b9b7a70be49e7657626cd10b89ec312d4062ddf44bbc1d2ca6b044269af0507669e86bdc683fabb
 DIST mariadb-galera-10.0.34.tar.gz 69661677 BLAKE2B 
a905e24c217843e04d35393af9eee06e2e42d6b6d4f7202645a795dd17ee60394b19228332dca9f0d078748f5d02893ad3f367c8c449147811abf78e502b7997
 SHA512 
e0226e6032d5ff0080a97ea486726a44d8e1b977b93c8d07b517be70098df4149d119d325ebcba6c6affa95a586c94ec8f99a5e5a74a7d2314311748029dc7ab
-DIST mysql-extras-20160629-1442Z.tar.bz2 299152 BLAKE2B 
171733eba8579b222b20ccabfc93aec666c60ea8498be3daec030e4217fde0e6112a2bcef48996c44817a6c6e8f7e9b255fe96e02553b042d3d9630a0a5a17ba
 SHA512 
1de46daf6b4534dadf9d3eff8d5d557778e63b5e04aedb57fe56d3016ba93a9d55d80faee38f77852d23da5169879e4f25b3386abe44ee8d961db7ffc4145715
 DIST mysql-extras-20170926-1321Z.tar.bz2 312466 BLAKE2B 
3e3e19a905961570cea9c1eb14dec3780da80409e996b1aeddb08625da875f5d08798a862cb1b80566b0d8be0d9ec2aab0a390ca90f991203c9871538b11f00a
 SHA512 
556e782ccc40d8cffb2fde8c46038c90023440c07785ec667f898afdb8c802faeb4dbfe8b3918a1e563b46d1dc8c0de1172f7843ce08ee1ded435b344f8f0cf5

diff --git a/dev-db/mariadb-galera/mariadb-galera-10.0.32.ebuild 
b/dev-db/mariadb-galera/mariadb-galera-10.0.32.ebuild
deleted file mode 100644
index 61a1c209dde..000
--- a/dev-db/mariadb-galera/mariadb-galera-10.0.32.ebuild
+++ /dev/null
@@ -1,181 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-MY_EXTRAS_VER="20160629-1442Z"
-# 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"
-
-SERVER_URI="https://downloads.mariadb.org/interstitial/${P}/source/${P}.tar.gz;
-MY_SOURCEDIR="${PN%%-galera}-${PV}"
-JAVA_PKG_OPT_USE="jdbc"
-
-inherit toolchain-funcs java-pkg-opt-2 mysql-multilib-r1
-
-HOMEPAGE="http://mariadb.org/;
-DESCRIPTION="An enhanced, drop-in replacement for MySQL with Galera 
Replication"
-
-IUSE="bindist jdbc odbc oqgraph pam sphinx sst-rsync sst-xtrabackup tokudb xml"
-RESTRICT="!bindist? ( bindist )"
-
-REQUIRED_USE="server? ( tokudb? ( jemalloc !tcmalloc ) ) static? ( !pam )"
-
-# REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS="~amd64 ~x86"
-
-MY_PATCH_DIR="${WORKDIR}/mysql-extras-${MY_EXTRAS_VER}"
-PATCHES=(
-   "${MY_PATCH_DIR}/01050_all_mariadb_mysql_config_cleanup-5.5.41.patch"
-   "${MY_PATCH_DIR}/20006_all_cmake_elib-mariadb-10.0.26.patch"
-   "${MY_PATCH_DIR}/20009_all_mariadb_myodbc_symbol_fix-5.5.38.patch"
-   
"${MY_PATCH_DIR}/20018_all_mariadb-galera-10.0.20-without-clientlibs-tools.patch"
-)
-COMMON_DEPEND="
-   !bindist? ( >=sys-libs/readline-4.1:0=  )
-   server? (
-   extraengine? (
-   odbc? ( dev-db/unixODBC:0= )
-   xml? ( dev-libs/libxml2:2= )
-   )
-   oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
-   pam? ( virtual/pam:0= )
-   tokudb? ( app-arch/snappy )
-   )
-   >=dev-libs/libpcre-8.35:3=
-"
-DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )
-   server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.6 ) ) )
-   ${COMMON_DEPEND}"
-RDEPEND="${RDEPEND} ${COMMON_DEPEND}
-   sys-apps/iproute2
-   =sys-cluster/galera-${WSREP_REVISION}*
-   sst-rsync? ( sys-process/lsof )
-   sst-xtrabackup? ( net-misc/socat[ssl] )
-   perl? ( !dev-db/mytop
-   virtual/perl-Getopt-Long
-   dev-perl/TermReadKey
-   virtual/perl-Term-ANSIColor
-   virtual/perl-Time-HiRes )
-   server? ( extraengine? ( jdbc? ( >=virtual/jre-1.6 ) ) )
-"
-# xtrabackup-bin causes a circular dependency if DBD-mysql is not already 
installed
-PDEPEND="sst-xtrabackup? ( || ( >=dev-db/xtrabackup-bin-2.2.4 
dev-db/percona-xtrabackup ) )"
-
-MULTILIB_WRAPPED_HEADERS+=( /usr/include/mysql/mysql_version.h )
-
-pkg_setup() {
-   java-pkg-opt-2_pkg_setup
-   

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

2018-02-09 Thread Brian Evans
commit: 547c610317331a04ac15bb675ea39e10d6e0b461
Author: Brian Evans  gentoo  org>
AuthorDate: Sat Feb 10 03:26:41 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Sat Feb 10 03:26:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=547c6103

dev-db/mariadb-galera: Version bump for 10.0.34

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-db/mariadb-galera/Manifest |   2 +
 .../mariadb-galera/mariadb-galera-10.0.34.ebuild   | 183 +
 2 files changed, 185 insertions(+)

diff --git a/dev-db/mariadb-galera/Manifest b/dev-db/mariadb-galera/Manifest
index 6ba47c1c7be..af0a4ea7812 100644
--- a/dev-db/mariadb-galera/Manifest
+++ b/dev-db/mariadb-galera/Manifest
@@ -1,2 +1,4 @@
 DIST mariadb-galera-10.0.32.tar.gz 63961466 BLAKE2B 
98e98364e32cd6196b40c112f805d57b014d5cbb7d2d266f7730ba5a5f91e86f9c9902ac97e5ff1bfe3b421e3a0ced0204d24edc1ebdfd7fcf715255282ca836
 SHA512 
3f17c4baaa06a51e037c96bc9a44fb612d6e492f9212664a7b9b7a70be49e7657626cd10b89ec312d4062ddf44bbc1d2ca6b044269af0507669e86bdc683fabb
+DIST mariadb-galera-10.0.34.tar.gz 69661677 BLAKE2B 
a905e24c217843e04d35393af9eee06e2e42d6b6d4f7202645a795dd17ee60394b19228332dca9f0d078748f5d02893ad3f367c8c449147811abf78e502b7997
 SHA512 
e0226e6032d5ff0080a97ea486726a44d8e1b977b93c8d07b517be70098df4149d119d325ebcba6c6affa95a586c94ec8f99a5e5a74a7d2314311748029dc7ab
 DIST mysql-extras-20160629-1442Z.tar.bz2 299152 BLAKE2B 
171733eba8579b222b20ccabfc93aec666c60ea8498be3daec030e4217fde0e6112a2bcef48996c44817a6c6e8f7e9b255fe96e02553b042d3d9630a0a5a17ba
 SHA512 
1de46daf6b4534dadf9d3eff8d5d557778e63b5e04aedb57fe56d3016ba93a9d55d80faee38f77852d23da5169879e4f25b3386abe44ee8d961db7ffc4145715
+DIST mysql-extras-20170926-1321Z.tar.bz2 312466 BLAKE2B 
3e3e19a905961570cea9c1eb14dec3780da80409e996b1aeddb08625da875f5d08798a862cb1b80566b0d8be0d9ec2aab0a390ca90f991203c9871538b11f00a
 SHA512 
556e782ccc40d8cffb2fde8c46038c90023440c07785ec667f898afdb8c802faeb4dbfe8b3918a1e563b46d1dc8c0de1172f7843ce08ee1ded435b344f8f0cf5

diff --git a/dev-db/mariadb-galera/mariadb-galera-10.0.34.ebuild 
b/dev-db/mariadb-galera/mariadb-galera-10.0.34.ebuild
new file mode 100644
index 000..2279222e828
--- /dev/null
+++ b/dev-db/mariadb-galera/mariadb-galera-10.0.34.ebuild
@@ -0,0 +1,183 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+MY_EXTRAS_VER="20170926-1321Z"
+# 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"
+
+SERVER_URI="https://downloads.mariadb.org/interstitial/${P}/source/${P}.tar.gz;
+MY_SOURCEDIR="${PN%%-galera}-${PV}"
+JAVA_PKG_OPT_USE="jdbc"
+
+inherit toolchain-funcs java-pkg-opt-2 mysql-multilib-r1
+
+HOMEPAGE="http://mariadb.org/;
+DESCRIPTION="An enhanced, drop-in replacement for MySQL with Galera 
Replication"
+
+IUSE="bindist jdbc odbc oqgraph pam sphinx sst-rsync sst-xtrabackup tokudb xml"
+RESTRICT="!bindist? ( bindist )"
+
+REQUIRED_USE="server? ( tokudb? ( jemalloc !tcmalloc ) ) static? ( !pam )"
+
+KEYWORDS="~amd64 ~x86"
+
+MY_PATCH_DIR="${WORKDIR}/mysql-extras-${MY_EXTRAS_VER}"
+PATCHES=(
+   "${MY_PATCH_DIR}/01050_all_mariadb_mysql_config_cleanup-5.5.41.patch"
+   "${MY_PATCH_DIR}/20006_all_cmake_elib-mariadb-10.0.33.patch"
+   "${MY_PATCH_DIR}/20009_all_mariadb_myodbc_symbol_fix-5.5.38.patch"
+   
"${MY_PATCH_DIR}/20018_all_mariadb-galera-10.0.20-without-clientlibs-tools.patch"
+)
+COMMON_DEPEND="
+   !bindist? ( >=sys-libs/readline-4.1:0=  )
+   server? (
+   extraengine? (
+   odbc? ( dev-db/unixODBC:0= )
+   xml? ( dev-libs/libxml2:2= )
+   )
+   oqgraph? ( >=dev-libs/boost-1.40.0:0= dev-libs/judy:0= )
+   pam? ( virtual/pam:0= )
+   tokudb? ( app-arch/snappy )
+   )
+   >=dev-libs/libpcre-8.35:3=
+"
+DEPEND="|| ( >=sys-devel/gcc-3.4.6 >=sys-devel/gcc-apple-4.0 )
+   server? ( extraengine? ( jdbc? ( >=virtual/jdk-1.6 ) ) )
+   ${COMMON_DEPEND}"
+RDEPEND="${RDEPEND} ${COMMON_DEPEND}
+   sys-apps/iproute2
+   =sys-cluster/galera-${WSREP_REVISION}*
+   sst-rsync? ( sys-process/lsof )
+   sst-xtrabackup? ( net-misc/socat[ssl] )
+   perl? ( !dev-db/mytop
+   virtual/perl-Getopt-Long
+   dev-perl/TermReadKey
+   virtual/perl-Term-ANSIColor
+   virtual/perl-Time-HiRes )
+   server? ( extraengine? ( jdbc? ( >=virtual/jre-1.6 ) ) )
+"
+# xtrabackup-bin causes a circular dependency if DBD-mysql is not already 
installed
+PDEPEND="sst-xtrabackup? ( || ( >=dev-db/xtrabackup-bin-2.2.4 
dev-db/percona-xtrabackup ) )"
+
+MULTILIB_WRAPPED_HEADERS+=( /usr/include/mysql/mysql_version.h )
+
+pkg_setup() {
+   java-pkg-opt-2_pkg_setup
+   mysql-multilib-r1_pkg_setup
+}
+
+pkg_preinst() {
+   

[gentoo-commits] repo/gentoo:master commit in: sys-block/partitionmanager/

2018-02-09 Thread Michael Palimaka
commit: 36320a0b7ef930f33637cfb53c06f5dacc81aa3f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Feb  9 23:56:30 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Feb  9 23:57:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36320a0b

sys-block/partitionmanager: remove 3.2.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-block/partitionmanager/Manifest|  1 -
 .../partitionmanager/partitionmanager-3.2.1.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/sys-block/partitionmanager/Manifest 
b/sys-block/partitionmanager/Manifest
index 1469b14a7ea..0a2a184e7f3 100644
--- a/sys-block/partitionmanager/Manifest
+++ b/sys-block/partitionmanager/Manifest
@@ -1,2 +1 @@
-DIST partitionmanager-3.2.1.tar.xz 1331440 BLAKE2B 
4a7127407d7304690f3484aca54f991e8eeac2095a72418c082abcc28e7d3286169726be8005323f77ea7465e7d10f3ad0afc2e508de37dd3cb33c4acb8bcdca
 SHA512 
799518ac78d906959512bebf63d3e8277f5fcbc7f13efd6b6ad5f3342f0e08da98340dc778a6e89923af99b03d099fb0e4d11abb2751ac4defa38060bb511df3
 DIST partitionmanager-3.3.1.tar.xz 1332860 BLAKE2B 
ba258efd7cebae907fdb1bcca4863300f3af21e4fb533cd5a07e8a1978f07add5f863d4be0d711346074e2d6fa4e96a85f8824aded9eae717c820892a13284ab
 SHA512 
9189004c27a118510ddf7f148d2a245a7e17d0d0c038ea7486fc50638f2897f947ef2a2a92f0196c277b14e8dafb2f1e2f20978cce5927c04299232ecf8260b0

diff --git a/sys-block/partitionmanager/partitionmanager-3.2.1.ebuild 
b/sys-block/partitionmanager/partitionmanager-3.2.1.ebuild
deleted file mode 100644
index d0198d9b98a..000
--- a/sys-block/partitionmanager/partitionmanager-3.2.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="KDE utility for management of partitions and file systems"
-HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
-[[ ${KDE_BUILD_TYPE} == release ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-3"
-KEYWORDS="amd64 ~arm x86"
-IUSE=""
-
-DEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kjobwidgets)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   sys-apps/util-linux
-   >=sys-libs/kpmcore-3.2.0:5=
-"
-RDEPEND="${DEPEND}
-   $(add_plasma_dep kde-cli-tools kdesu)
-"



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

2018-02-09 Thread Michael Palimaka
commit: 9915cb713972c71068201acd53eeb48d1f2ade89
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Feb  9 23:57:32 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Feb  9 23:58:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9915cb71

sys-libs/kpmcore: remove 3.2.1

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 sys-libs/kpmcore/Manifest |  1 -
 sys-libs/kpmcore/kpmcore-3.2.1.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/sys-libs/kpmcore/Manifest b/sys-libs/kpmcore/Manifest
index d23f1eb739a..dedbd7747bb 100644
--- a/sys-libs/kpmcore/Manifest
+++ b/sys-libs/kpmcore/Manifest
@@ -1,2 +1 @@
-DIST kpmcore-3.2.1.tar.xz 408356 BLAKE2B 
9cc48cc1383345c05484f19f344eaef9e0c30b942574b19f8d11591d8a581ccd489e832f14b787394f6ae9342180704816e6855775919c544d0f2c8206b93ba9
 SHA512 
f7a198a1632f96f092b937275ffc779ac1997c9ea6973906a2e08d6f7852aaaffc5abc480bec88d41a793ed8f5b364f7150f40aab1187fbbf33915a01cdc61e5
 DIST kpmcore-3.3.0.tar.xz 412648 BLAKE2B 
c8e5bf8d20108b8c3164466bf4b08ec9e58808a20134e27b188f0b85809bf1dffabe293f7b1f53d96a6291d4a5d9c1945a496763aa5f72eaccde83f4fcc62c8b
 SHA512 
62a0a341fbbec426291e2c9dd183a20466fce48ffaa360dd816c58402ee03c1f61c4ef7887d0a66c4693d77c2183a5da3477b828ba4ac2ed405f684ffb27125e

diff --git a/sys-libs/kpmcore/kpmcore-3.2.1.ebuild 
b/sys-libs/kpmcore/kpmcore-3.2.1.ebuild
deleted file mode 100644
index 9afb1bae933..000
--- a/sys-libs/kpmcore/kpmcore-3.2.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit kde5
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-DESCRIPTION="Library for managing partitions"
-HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
-LICENSE="GPL-3"
-SLOT="5/6"
-IUSE=""
-
-RDEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   dev-libs/libatasmart
-   >=sys-apps/util-linux-2.30
-   >=sys-block/parted-3
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kdeconnect/

2018-02-09 Thread Michael Palimaka
commit: 1680fd397ac256ca28a7ed80fb32fd60dc17b283
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Feb 10 00:14:13 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Feb 10 00:14:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1680fd39

kde-misc/kdeconnect: raise frameworks minimal version

Closes: https://bugs.gentoo.org/647190
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../kdeconnect/{kdeconnect-1.2.1.ebuild => kdeconnect-1.2.1-r1.ebuild}   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-misc/kdeconnect/kdeconnect-1.2.1.ebuild 
b/kde-misc/kdeconnect/kdeconnect-1.2.1-r1.ebuild
similarity index 98%
rename from kde-misc/kdeconnect/kdeconnect-1.2.1.ebuild
rename to kde-misc/kdeconnect/kdeconnect-1.2.1-r1.ebuild
index c213b832402..c3a0b78cf03 100644
--- a/kde-misc/kdeconnect/kdeconnect-1.2.1.ebuild
+++ b/kde-misc/kdeconnect/kdeconnect-1.2.1-r1.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=6
 
+FRAMEWORKS_MINIMAL="5.42.0"
 KDE_HANDBOOK="optional"
 KDE_TEST="true"
 KMNAME="${PN}-kde"



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

2018-02-09 Thread Thomas Deutschmann
commit: 489b1a614374c0b9d4eed87aa2c926b9b4e57a8e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:28:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489b1a61

dev-libs/liblognorm: x86 stable (bug #645870)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild 
b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
index ab37a2ee9ce..d4da8907192 100644
--- a/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
+++ b/dev-libs/liblognorm/liblognorm-2.0.4.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="http://www.liblognorm.com/files/download/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~x86 ~amd64-linux"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa x86 ~amd64-linux"
 fi
 
 LICENSE="LGPL-2.1 Apache-2.0"



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

2018-02-09 Thread Thomas Deutschmann
commit: a7bd4eeea7f2a04ba10ae94a36bcc319c4bec092
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:18:42 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:18:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7bd4eee

dev-libs/icu-layoutex: x86 stable (bug #641130)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild 
b/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild
index 3f019e7deb0..33cbe8eaf7d 100644
--- a/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild
+++ b/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild
@@ -13,7 +13,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="debug static-libs"
 
 RDEPEND="



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

2018-02-09 Thread Thomas Deutschmann
commit: 93635b9eb98002bbee39c403f782c1c53f81aa36
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:23:06 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93635b9e

app-arch/p7zip: x86 stable (bug #645500)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-arch/p7zip/p7zip-16.02-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/p7zip/p7zip-16.02-r2.ebuild 
b/app-arch/p7zip/p7zip-16.02-r2.ebuild
index 75216baf110..e6a89fe7a15 100644
--- a/app-arch/p7zip/p7zip-16.02-r2.ebuild
+++ b/app-arch/p7zip/p7zip-16.02-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src_all.tar.bz2"
 
 LICENSE="LGPL-2.1 rar? ( unRAR )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~ppc ~ppc64 ~s390 ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
 IUSE="abi_x86_x32 doc kde +pch rar static wxwidgets"
 
 REQUIRED_USE="kde? ( wxwidgets )"



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

2018-02-09 Thread Thomas Deutschmann
commit: f2970b80e10a6ab8982044ae0ba0fb5d71eaa3da
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:16:07 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:16:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2970b80

net-analyzer/dnstracer: x86 stable (bug #620928)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-analyzer/dnstracer/dnstracer-1.9-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/dnstracer/dnstracer-1.9-r2.ebuild 
b/net-analyzer/dnstracer/dnstracer-1.9-r2.ebuild
index e7252d9c62c..a9bb6c81b70 100644
--- a/net-analyzer/dnstracer/dnstracer-1.9-r2.ebuild
+++ b/net-analyzer/dnstracer/dnstracer-1.9-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.mavetju.org/download/${P}.tar.gz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux"
 IUSE="ipv6"
 
 DOCS=( CHANGES README )



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

2018-02-09 Thread Thomas Deutschmann
commit: 253aad642506647d25a3ae18e480738cb7cbfd3f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:21:24 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:21:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=253aad64

app-admin/logsentry: x86 stable (bug #646970)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-admin/logsentry/logsentry-1.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/logsentry/logsentry-1.1.1-r2.ebuild 
b/app-admin/logsentry/logsentry-1.1.1-r2.ebuild
index f12985bdccc..2e228cc 100644
--- a/app-admin/logsentry/logsentry-1.1.1-r2.ebuild
+++ b/app-admin/logsentry/logsentry-1.1.1-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~s390 ~sh sparc ~x86"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~s390 ~sh sparc x86"
 IUSE=""
 
 DEPEND=">=sys-apps/sed-4"



[gentoo-commits] repo/gentoo:master commit in: app-doc/linux-kernel-in-a-nutshell/

2018-02-09 Thread Thomas Deutschmann
commit: d6b053d29e7dfc60250049b3aa9fe6ef69abac0e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:22:32 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6b053d2

app-doc/linux-kernel-in-a-nutshell: x86 stable (bug #646978)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild 
b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild
index 6a7deec9084..e832e47a2c0 100644
--- a/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild
+++ b/app-doc/linux-kernel-in-a-nutshell/linux-kernel-in-a-nutshell-1-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://kernel/linux/kernel/people/gregkh/lkn/lkn_pdf.tar.bz2
 
 LICENSE="CC-BY-SA-2.5"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86"
 IUSE=""
 
 RDEPEND=""



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

2018-02-09 Thread Thomas Deutschmann
commit: 5f4d2f10f3fb826805e865e86900f536f01aa49d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:20:21 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:20:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f4d2f10

media-libs/libextractor: x86 stable (bug #635362)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-libs/libextractor/libextractor-1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libextractor/libextractor-1.6.ebuild 
b/media-libs/libextractor/libextractor-1.6.ebuild
index 6c5ae4ca713..d58d7c9b37d 100644
--- a/media-libs/libextractor/libextractor-1.6.ebuild
+++ b/media-libs/libextractor/libextractor-1.6.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
 IUSE="apparmor +archive +bzip2 ffmpeg flac gif gsf gstreamer gtk jpeg +magic 
midi mp4 mpeg tidy tiff vorbis +zlib" # test
 
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/gnuserv/

2018-02-09 Thread Thomas Deutschmann
commit: 30599795fcc51652e4e046e2a26a41067e3c1868
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:18:08 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:18:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30599795

app-emacs/gnuserv: x86 stable (bug #647122)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-emacs/gnuserv/gnuserv-3.12.8-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/gnuserv/gnuserv-3.12.8-r3.ebuild 
b/app-emacs/gnuserv/gnuserv-3.12.8-r3.ebuild
index 680dce5508d..e3f052adc7a 100644
--- a/app-emacs/gnuserv/gnuserv-3.12.8-r3.ebuild
+++ b/app-emacs/gnuserv/gnuserv-3.12.8-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://meltin.net/hacks/emacs/src/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-linux ~ppc-macos"
+KEYWORDS="~amd64 ~ppc x86 ~x86-linux ~ppc-macos"
 IUSE="X"
 
 DEPEND=">=app-eselect/eselect-emacs-1.15



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

2018-02-09 Thread Thomas Deutschmann
commit: 03710e18836ec082d198e7b6ace182edfcbce22b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:17:45 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:17:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03710e18

app-crypt/gnupg: x86 stable (bug #646934)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-crypt/gnupg/gnupg-2.2.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/gnupg/gnupg-2.2.4-r2.ebuild 
b/app-crypt/gnupg/gnupg-2.2.4-r2.ebuild
index 73881ec3b1b..53564c8ef6e 100644
--- a/app-crypt/gnupg/gnupg-2.2.4-r2.ebuild
+++ b/app-crypt/gnupg/gnupg-2.2.4-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/gnupg/${MY_P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc ldap nls readline selinux +smartcard ssl tofu tools usb 
wks-server"
 
 COMMON_DEPEND_LIBS="



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

2018-02-09 Thread Thomas Deutschmann
commit: 48dfbb6e05a68cb5231c1c8d06c56718b4ce595c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:29:24 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48dfbb6e

dev-libs/librdkafka: x86 stable (bug #645870)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/librdkafka/librdkafka-0.11.3.ebuild 
b/dev-libs/librdkafka/librdkafka-0.11.3.ebuild
index 109a714b521..00872b0eadc 100644
--- a/dev-libs/librdkafka/librdkafka-0.11.3.ebuild
+++ b/dev-libs/librdkafka/librdkafka-0.11.3.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/edenhill/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc x86"
 fi
 
 LICENSE="BSD-2"



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

2018-02-09 Thread Thomas Deutschmann
commit: 36de7ed2ef843d367b685671ffc98306fe8abd52
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:19:09 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:19:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36de7ed2

app-doc/jargon: x86 stable (bug #646976)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-doc/jargon/jargon-4.4.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-doc/jargon/jargon-4.4.7-r1.ebuild 
b/app-doc/jargon/jargon-4.4.7-r1.ebuild
index 26860cbf415..cca105a6df4 100644
--- a/app-doc/jargon/jargon-4.4.7-r1.ebuild
+++ b/app-doc/jargon/jargon-4.4.7-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://www.catb.org/~esr/jargon/${P}.tar.gz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 hppa ~ia64 ~mips ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 src_prepare() {



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

2018-02-09 Thread Thomas Deutschmann
commit: be6dacc3f9d6dcb178852a78414ad029c5e8ed05
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:19:38 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:19:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be6dacc3

app-backup/kbackup: x86 stable (bug #647058)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-backup/kbackup/kbackup-1.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-backup/kbackup/kbackup-1.0.1.ebuild 
b/app-backup/kbackup/kbackup-1.0.1.ebuild
index 71775a2631a..30e7971cb84 100644
--- a/app-backup/kbackup/kbackup-1.0.1.ebuild
+++ b/app-backup/kbackup/kbackup-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://www.linux-apps.com/content/show.php/KBackup?content=44998;
 [[ ${KDE_BUILD_TYPE} = release ]] && 
SRC_URI="http://members.aon.at/m.koller/${P}.tar.xz;
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 CDEPEND="



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

2018-02-09 Thread Thomas Deutschmann
commit: b3a202cfca62bd932673628073b50cf51ce9af0b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:31:04 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3a202cf

app-admin/rsyslog: x86 stable (bug #645870)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-admin/rsyslog/rsyslog-8.32.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/rsyslog/rsyslog-8.32.0-r3.ebuild 
b/app-admin/rsyslog/rsyslog-8.32.0-r3.ebuild
index 33668a1674d..98dbd8a57f8 100644
--- a/app-admin/rsyslog/rsyslog-8.32.0-r3.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.32.0-r3.ebuild
@@ -40,7 +40,7 @@ else
unset _tmp_last_index
unset _tmp_suffix
else
-   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa x86"
fi
 
SRC_URI="



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

2018-02-09 Thread Thomas Deutschmann
commit: 8e7183eaadf23fd3cf4ecf2a9ef8f84604883f64
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:16:59 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:16:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e7183ea

sys-libs/glibc: x86 stable (bug #647062)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 sys-libs/glibc/glibc-2.25-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.25-r10.ebuild 
b/sys-libs/glibc/glibc-2.25-r10.ebuild
index 60207d18911..c24a5861d63 100644
--- a/sys-libs/glibc/glibc-2.25-r10.ebuild
+++ b/sys-libs/glibc/glibc-2.25-r10.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="GNU libc6 (also called glibc2) C library"
 HOMEPAGE="https://www.gnu.org/software/libc/libc.html;
 
 LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86"
 RESTRICT="strip" # strip ourself #46186
 EMULTILIB_PKG="true"
 



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

2018-02-09 Thread Thomas Deutschmann
commit: fc9065a02765a34a9000841bf26059fc490ca59e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:30:08 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc9065a0

dev-libs/libbson: x86 stable (bug #645870)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/libbson/libbson-1.8.2.ebuild 
b/dev-libs/libbson/libbson-1.8.2.ebuild
index 7a17bcdd3ea..674823edaf7 100644
--- a/dev-libs/libbson/libbson-1.8.2.ebuild
+++ b/dev-libs/libbson/libbson-1.8.2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~x86"
+KEYWORDS="amd64 ~hppa x86"
 IUSE="debug examples static-libs"
 
 src_configure() {



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

2018-02-09 Thread Thomas Deutschmann
commit: addb001ca7aa9a228258e6d0d3fe40f90e86583a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:30:28 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=addb001c

dev-libs/libfastjson: x86 stable (bug #645870)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/libfastjson/libfastjson-0.99.8.ebuild 
b/dev-libs/libfastjson/libfastjson-0.99.8.ebuild
index ec9759901f8..f30662c8cac 100644
--- a/dev-libs/libfastjson/libfastjson-0.99.8.ebuild
+++ b/dev-libs/libfastjson/libfastjson-0.99.8.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://www.rsyslog.com/tag/libfastjson/;
 SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz;
 LICENSE="MIT"
 SLOT="0/4.2.0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~sparc x86"
 IUSE="static-libs"
 
 DEPEND=">=sys-devel/autoconf-archive-2015.02.04"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/mongo-c-driver/

2018-02-09 Thread Thomas Deutschmann
commit: fea8d58bb660d3ec36b8c04dd37f11f81b3145d1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:29:53 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:31:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fea8d58b

dev-libs/mongo-c-driver: x86 stable (bug #645870)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild 
b/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild
index 256c3356f43..1ea4eb35a6d 100644
--- a/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild
+++ b/dev-libs/mongo-c-driver/mongo-c-driver-1.8.2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~x86"
+KEYWORDS="amd64 ~hppa x86"
 IUSE="debug examples libressl sasl ssl static-libs test"
 
 RDEPEND="app-arch/snappy:=



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

2018-02-09 Thread Thomas Deutschmann
commit: 67da2df3be00ce770c037f7bba344459c09cb173
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:15:37 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:15:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67da2df3

app-crypt/xor-analyze: x86 stable (bug #646974)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild 
b/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild
index 379db39defb..1b00a0add70 100644
--- a/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild
+++ b/app-crypt/xor-analyze/xor-analyze-0.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="http://www.habets.pp.se/synscan/files/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 src_compile() {



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

2018-02-09 Thread Thomas Deutschmann
commit: bd4d29dceb84e3bf6fd76dec71c8bf12cf7431e1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:20:54 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:20:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd4d29dc

dev-libs/libpqxx: x86 stable (bug #641128)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

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

diff --git a/dev-libs/libpqxx/libpqxx-6.0.0.ebuild 
b/dev-libs/libpqxx/libpqxx-6.0.0.ebuild
index a8e36af55d9..b7616bb1764 100644
--- a/dev-libs/libpqxx/libpqxx-6.0.0.ebuild
+++ b/dev-libs/libpqxx/libpqxx-6.0.0.ebuild
@@ -6,7 +6,7 @@ EAPI="6"
 PYTHON_COMPAT=( python2_7 )
 inherit python-any-r1
 
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 
 DESCRIPTION="Standard front-end for writing C++ programs that use PostgreSQL"
 SRC_URI="https://github.com/jtv/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"



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

2018-02-09 Thread Thomas Deutschmann
commit: 5bbd555df48cc8ed974e590fec532e50fd78eefc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Feb 10 00:15:21 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Feb 10 00:15:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bbd555d

www-client/conkeror: x86 stable (bug #647120)

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 www-client/conkeror/conkeror-1.0.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/conkeror/conkeror-1.0.4.ebuild 
b/www-client/conkeror/conkeror-1.0.4.ebuild
index 8c764671199..da0f8a16c9e 100644
--- a/www-client/conkeror/conkeror-1.0.4.ebuild
+++ b/www-client/conkeror/conkeror-1.0.4.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz
 # CC-BY-SA-3.0 for conkeror.png
 LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 ) CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="|| ( ( >=www-client/firefox-5.0 =www-client/firefox-bin-23.0 

[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtnetwork/

2018-02-09 Thread Michael Palimaka
commit: a18e99a64734c9970ae93f101990a28fb44bcae1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Feb 10 02:50:07 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Feb 10 02:50:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18e99a6

dev-qt/qtnetwork: introduce libressl support

Bug: https://bugs.gentoo.org/562050
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-qt/qtnetwork/qtnetwork-5.9.4.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-qt/qtnetwork/qtnetwork-5.9.4.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.9.4.ebuild
index 3cb593402d3..94849a21a39 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.9.4.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.9.4.ebuild
@@ -11,7 +11,7 @@ if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
-IUSE="bindist connman libproxy networkmanager +ssl"
+IUSE="bindist connman libproxy libressl networkmanager +ssl"
 
 DEPEND="
~dev-qt/qtcore-${PV}
@@ -19,7 +19,10 @@ DEPEND="
connman? ( ~dev-qt/qtdbus-${PV} )
libproxy? ( net-libs/libproxy )
networkmanager? ( ~dev-qt/qtdbus-${PV} )
-   ssl? ( dev-libs/openssl:0=[bindist=] )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0=[bindist=] )
+   libressl? ( dev-libs/libressl:0= )
+   )
 "
 RDEPEND="${DEPEND}
connman? ( net-misc/connman )



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

2018-02-09 Thread Alon Bar-Lev
commit: 99ecfe707ddc6b3dee17702291f973ac91b51421
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Feb  9 19:03:07 2018 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Sat Feb 10 07:17:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99ecfe70

app-arch/deltarpm: fix HOMEPAGE

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

 app-arch/deltarpm/deltarpm-3.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/deltarpm/deltarpm-3.6.ebuild 
b/app-arch/deltarpm/deltarpm-3.6.ebuild
index 9b3d7f88bae..3a60c4ea7da 100644
--- a/app-arch/deltarpm/deltarpm-3.6.ebuild
+++ b/app-arch/deltarpm/deltarpm-3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit toolchain-funcs python-single-r1
 
 DESCRIPTION="tools to create and apply deltarpms"
-HOMEPAGE="http://gitorious.org/deltarpm/deltarpm;
+HOMEPAGE="https://github.com/rpm-software-management/deltarpm;
 
SRC_URI="http://pkgs.fedoraproject.org/repo/pkgs/${PN}/${P}.tar.bz2/2cc2690bd1088cfc3238c25e59aaaec1/${P}.tar.bz2;
 
 LICENSE="BSD"



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

2018-02-09 Thread Hans de Graaff
commit: c50ecc3e6eb92de6dd2f13aaae1fb887955383ab
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:09:01 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c50ecc3e

dev-ruby/ruby-hmac: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-hmac/ruby-hmac-0.4.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-hmac/ruby-hmac-0.4.0-r1.ebuild 
b/dev-ruby/ruby-hmac/ruby-hmac-0.4.0-r1.ebuild
index 328949746fc..591b8610cfa 100644
--- a/dev-ruby/ruby-hmac/ruby-hmac-0.4.0-r1.ebuild
+++ b/dev-ruby/ruby-hmac/ruby-hmac-0.4.0-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="History.txt README.txt"



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

2018-02-09 Thread Hans de Graaff
commit: df7b41740ee2e9804e36cc5a0128d8ab2358b103
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:19:13 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df7b4174

dev-ruby/robots: add ruby24, ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/robots/robots-0.10.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/robots/robots-0.10.1-r2.ebuild 
b/dev-ruby/robots/robots-0.10.1-r2.ebuild
index d9de856a4c6..d358be2a949 100644
--- a/dev-ruby/robots/robots-0.10.1-r2.ebuild
+++ b/dev-ruby/robots/robots-0.10.1-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README"
 



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

2018-02-09 Thread Hans de Graaff
commit: 1e323fcd2bac2f1c3aa90d486ddf15cd852791e8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:15:02 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e323fcd

dev-ruby/ruby-net-ldap: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-net-ldap/Manifest|  1 -
 dev-ruby/ruby-net-ldap/ruby-net-ldap-0.16.0.ebuild | 28 --
 2 files changed, 29 deletions(-)

diff --git a/dev-ruby/ruby-net-ldap/Manifest b/dev-ruby/ruby-net-ldap/Manifest
index 5f0b774ad24..493a9d59bb4 100644
--- a/dev-ruby/ruby-net-ldap/Manifest
+++ b/dev-ruby/ruby-net-ldap/Manifest
@@ -1,2 +1 @@
-DIST net-ldap-0.16.0.gem 103936 BLAKE2B 
51915c7b19c368519a091b72dda9450174bafc43d617ccf2103eafb94f9f99cfa69995ade9b6930bde5bd1fb6b0ed46d08090027edb37092410e75fd7a0aa448
 SHA512 
5257d379700ac0e1ec8d490ab440b4d18801603db8ee800633cfa47e784006ebdcb9af91e47ed7b9c22f20509c9800275a1fc4d27613a11d27d500cf662ec31c
 DIST net-ldap-0.16.1.gem 103936 BLAKE2B 
cea22a78314cdcf5a31a39fdb7b0af2caf32e836e21b77e34c566acfe1426740a1534de9646b90ea26696ea3eac4744a62c05e444c0326ff11ac00b25b570d02
 SHA512 
08d7fa7a55144dc98ad22b3824deb469dd67d755d4e7655f2fadd71c245ae6496487fc75e974352866a5325b76f3468aed813286b07f19597b6d60507e1362fa

diff --git a/dev-ruby/ruby-net-ldap/ruby-net-ldap-0.16.0.ebuild 
b/dev-ruby/ruby-net-ldap/ruby-net-ldap-0.16.0.ebuild
deleted file mode 100644
index 29f870867a2..000
--- a/dev-ruby/ruby-net-ldap/ruby-net-ldap-0.16.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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_TASK_TEST="test spec"
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="Contributors.rdoc History.rdoc README.rdoc"
-
-RUBY_FAKEGEM_NAME="net-ldap"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Pure ruby LDAP client implementation"
-HOMEPAGE="https://github.com/ruby-ldap/ruby-net-ldap;
-LICENSE="MIT"
-
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="test"
-
-ruby_add_bdepend "test? ( >=dev-ruby/flexmock-1.3.0 )"
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test:. -e 'Dir["test/**/test_*.rb"].each{|f| require f}' 
|| die
-}



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

2018-02-09 Thread Hans de Graaff
commit: a6b46e876c59c172bb0afec647c36ade99abaeb4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:35:31 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b46e87

dev-ruby/ruby-openid: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild 
b/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild
index f5eeb16d36a..a7868666e68 100644
--- a/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild
+++ b/dev-ruby/ruby-openid/ruby-openid-2.7.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md NOTICE UPGRADE.md"



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

2018-02-09 Thread Hans de Graaff
commit: 90c8f6f728e6ec0a49f2afdbeebf877a8b3a5187
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:04:27 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c8f6f7

dev-ruby/rkelly-remix: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/rkelly-remix/rkelly-remix-0.0.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rkelly-remix/rkelly-remix-0.0.7.ebuild 
b/dev-ruby/rkelly-remix/rkelly-remix-0.0.7.ebuild
index d28d09a4102..798c44fc5aa 100644
--- a/dev-ruby/rkelly-remix/rkelly-remix-0.0.7.ebuild
+++ b/dev-ruby/rkelly-remix/rkelly-remix-0.0.7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



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

2018-02-09 Thread Hans de Graaff
commit: 69ff99f95c9b4e1b996dbdb4a5c08485a9c7ac90
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 05:59:17 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69ff99f9

dev-ruby/rjb: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/rjb/rjb-1.5.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rjb/rjb-1.5.5.ebuild b/dev-ruby/rjb/rjb-1.5.5.ebuild
index 524297c5ca0..a74a3e9d558 100644
--- a/dev-ruby/rjb/rjb-1.5.5.ebuild
+++ b/dev-ruby/rjb/rjb-1.5.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2018-02-09 Thread Hans de Graaff
commit: 95afe554408346da48e2578162b98f698c6a415a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:20:40 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95afe554

dev-ruby/rubyntlm: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/rubyntlm/Manifest  |  1 -
 dev-ruby/rubyntlm/rubyntlm-0.6.1.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-ruby/rubyntlm/Manifest b/dev-ruby/rubyntlm/Manifest
index cd66f728f85..9d77479e033 100644
--- a/dev-ruby/rubyntlm/Manifest
+++ b/dev-ruby/rubyntlm/Manifest
@@ -1,2 +1 @@
-DIST rubyntlm-0.6.1.gem 31232 BLAKE2B 
1ef6029595b9c0a363332493c9aebd8cc046e7784dc4edea0c398667efa0ae8d9ebbce68e1b77741f89a4a649af47aab9ec8501849b1dfd036d055c7aafd59bc
 SHA512 
a497c1a8ffe8499ba29f9bfe531f94a4179743c04fb1fd351f0382d78ea184cdc07ee31a04df904f7e71b8c2ee1f7c851595028f870ce167026ab81386ce0043
 DIST rubyntlm-0.6.2.gem 32768 BLAKE2B 
2459dc14c5eaa00c8728bafc0e30fbc1ad09a1fe012e4c6e428028f6232045ddd34fda1654e7b8ebcbc9349cbe24f6f6e44dc4af34c86e6b219e86d3a0caff88
 SHA512 
11c5a4affc47ac9c4207718856549e202946a0d75f40b508d9dbdde4f5792de0737e03342c653a0cb06f8ca91a260859cd386d6349c909c7ea99c31c77fd6bb3

diff --git a/dev-ruby/rubyntlm/rubyntlm-0.6.1.ebuild 
b/dev-ruby/rubyntlm/rubyntlm-0.6.1.ebuild
deleted file mode 100644
index aeab22eddd4..000
--- a/dev-ruby/rubyntlm/rubyntlm-0.6.1.ebuild
+++ /dev/null
@@ -1,24 +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 ruby23"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby/NTLM provides message creator and parser for the NTLM 
authentication."
-HOMEPAGE="https://github.com/winrb/rubyntlm;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-all_ruby_prepare() {
-   sed -i -e '/simplecov/ s:^:#:' spec/spec_helper.rb || die
-}



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

2018-02-09 Thread Hans de Graaff
commit: 152e5e73c099b7aa393878433d159bf294f20985
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:28:31 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=152e5e73

dev-ruby/ruby-augeas: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-augeas/ruby-augeas-0.5.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-augeas/ruby-augeas-0.5.0-r3.ebuild 
b/dev-ruby/ruby-augeas/ruby-augeas-0.5.0-r3.ebuild
index 6aa2fe433ca..fd694aa1c42 100644
--- a/dev-ruby/ruby-augeas/ruby-augeas-0.5.0-r3.ebuild
+++ b/dev-ruby/ruby-augeas/ruby-augeas-0.5.0-r3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_DOCDIR="doc/site/api"
 RUBY_FAKEGEM_EXTRADOC="NEWS README.rdoc"



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

2018-02-09 Thread Hans de Graaff
commit: 380ec8f5cc112ba86f6397104ebdaa00c1042f31
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:23:36 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=380ec8f5

dev-ruby/ruby-odbc: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-odbc/ruby-odbc-0.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-odbc/ruby-odbc-0.8.ebuild 
b/dev-ruby/ruby-odbc/ruby-odbc-0.8.ebuild
index 79f657765ee..31c808eaa54 100644
--- a/dev-ruby/ruby-odbc/ruby-odbc-0.8.ebuild
+++ b/dev-ruby/ruby-odbc/ruby-odbc-0.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_TASK_DOC=""



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

2018-02-09 Thread Hans de Graaff
commit: 3bb1a484663850b18d8876b33857ecc83db94748
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:11:51 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb1a484

dev-ruby/ruby-mp3info: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-mp3info/Manifest  |  1 -
 dev-ruby/ruby-mp3info/ruby-mp3info-0.8.9.ebuild | 26 -
 2 files changed, 27 deletions(-)

diff --git a/dev-ruby/ruby-mp3info/Manifest b/dev-ruby/ruby-mp3info/Manifest
index cc361e458c8..bdb3da54e1a 100644
--- a/dev-ruby/ruby-mp3info/Manifest
+++ b/dev-ruby/ruby-mp3info/Manifest
@@ -1,2 +1 @@
 DIST ruby-mp3info-0.8.10-git.tgz 89178 BLAKE2B 
fb9a046890851f3325a80bd47f6adc6c0bd7af74955b277a1a38d3727599e2fa0686b662419e1a8265a23aa7d4d102bbd26b97d5f2fa28e1d84df52484a46c0f
 SHA512 
778d7cf80783385c2889a42eaf821a8544e1fa26d7bed743c52852c137ac5cff84483f638ffb931edd6df528c613ea5ac62ea2e4f0ee8ccc31d77846297e3291
-DIST ruby-mp3info-0.8.9-git.tgz 89364 BLAKE2B 
5f2aad783c962b5a02a6e18bd646ae193fc1707425feff240c64082037ef755278784ce3394cfaa668369730dcd1b06b3bde724282ce7d68354bb27e1259f3f7
 SHA512 
ff1911c9468271126e5bc4bb5bcb03ffae9c25bfae7b73d49bc7ea35f42561d9e335cc08476d229b683ebed5fe4aa65647de3586efab6c81644d5ee7983995a2

diff --git a/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.9.ebuild 
b/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.9.ebuild
deleted file mode 100644
index b1c9c6fe867..000
--- a/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.9.ebuild
+++ /dev/null
@@ -1,26 +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 ruby23"
-
-RUBY_FAKEGEM_TASK_DOC="docs"
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="History.txt README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure Ruby library for access to mp3 files (internal infos and 
tags)"
-HOMEPAGE="http://rubyforge.org/projects/ruby-mp3info/;
-SRC_URI="https://github.com/moumar/${PN}/archive/v${PV}.tar.gz -> ${P}-git.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE=""
-
-DEPEND+=" test? ( media-sound/id3v2 )"
-
-ruby_add_bdepend "doc? ( dev-ruby/hoe )"
-ruby_add_bdepend "test? ( dev-ruby/hoe dev-ruby/test-unit:2 )"



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

2018-02-09 Thread Hans de Graaff
commit: cc321a41816be9c2402cb413ce5e13e7be4a5c21
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:10:53 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc321a41

dev-ruby/ruby-ldap: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild 
b/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild
index f366747ecc0..f9c9a1c2b0d 100644
--- a/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild
+++ b/dev-ruby/ruby-ldap/ruby-ldap-0.9.19.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 inherit multilib ruby-fakegem
 



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

2018-02-09 Thread Hans de Graaff
commit: 2ec49c9f9e83ad575195d9de14c37f201c58f169
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:17:14 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ec49c9f

dev-ruby/roadie: add ruby24

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/roadie/roadie-3.2.2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/roadie/roadie-3.2.2.ebuild 
b/dev-ruby/roadie/roadie-3.2.2.ebuild
index b7f0d2a9ca4..b9901f6690a 100644
--- a/dev-ruby/roadie/roadie-3.2.2.ebuild
+++ b/dev-ruby/roadie/roadie-3.2.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24"
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="yard"
@@ -22,7 +22,7 @@ KEYWORDS="~amd64"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/nokogiri-1.5.0
-   >=dev-ruby/css_parser-1.4.5 =dev-ruby/css_parser-1.4*"
+   >=dev-ruby/css_parser-1.4.5 =dev-ruby/css_parser-1*"
 ruby_add_bdepend "test? ( dev-ruby/rspec-collection_matchers dev-ruby/webmock 
)"
 
 all_ruby_prepare() {



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

2018-02-09 Thread Hans de Graaff
commit: 5c9ab3ba1dbbf0322c992525730bc0c7b4be6839
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:14:19 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c9ab3ba

dev-ruby/ruby-mp3info: add ruby24, ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-mp3info/ruby-mp3info-0.8.10.ebuild | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.10.ebuild 
b/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.10.ebuild
index b1c9c6fe867..51c4f427cf3 100644
--- a/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.10.ebuild
+++ b/dev-ruby/ruby-mp3info/ruby-mp3info-0.8.10.ebuild
@@ -1,11 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
-RUBY_FAKEGEM_TASK_DOC="docs"
-RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="History.txt README.md"
 
 inherit ruby-fakegem
@@ -22,5 +21,4 @@ IUSE=""
 
 DEPEND+=" test? ( media-sound/id3v2 )"
 
-ruby_add_bdepend "doc? ( dev-ruby/hoe )"
 ruby_add_bdepend "test? ( dev-ruby/hoe dev-ruby/test-unit:2 )"



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

2018-02-09 Thread Hans de Graaff
commit: b89039d1f50dac01fe5ca46755bea53da9d65534
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:32:10 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b89039d1

dev-ruby/ruby-opengl: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-opengl/ruby-opengl-0.10.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-opengl/ruby-opengl-0.10.0.ebuild 
b/dev-ruby/ruby-opengl/ruby-opengl-0.10.0.ebuild
index d589bed47c6..32197eb096d 100644
--- a/dev-ruby/ruby-opengl/ruby-opengl-0.10.0.ebuild
+++ b/dev-ruby/ruby-opengl/ruby-opengl-0.10.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



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

2018-02-09 Thread Hans de Graaff
commit: 4fe2e0fb25d067b2f7512f3a4c9e86ccdd76b1ac
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:06:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe2e0fb

dev-ruby/ruby-filemagic: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild 
b/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild
index 08d5186dea2..36d97b8c3ed 100644
--- a/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild
+++ b/dev-ruby/ruby-filemagic/ruby-filemagic-0.7.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="ChangeLog README TODO"



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

2018-02-09 Thread Hans de Graaff
commit: 0330786f54569abfd245a6ebf0051c244c23462d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 07:29:07 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:39:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0330786f

dev-ruby/ruby-ole: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-ole/ruby-ole-1.2.12.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-ole/ruby-ole-1.2.12.1.ebuild 
b/dev-ruby/ruby-ole/ruby-ole-1.2.12.1.ebuild
index f3021a05fde..6e64098dc80 100644
--- a/dev-ruby/ruby-ole/ruby-ole-1.2.12.1.ebuild
+++ b/dev-ruby/ruby-ole/ruby-ole-1.2.12.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 # Avoid the complexity of the "rake" recipe and run testrb-2 manually.
 RUBY_FAKEGEM_RECIPE_TEST=none



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

2018-02-09 Thread Michał Górny
commit: f5c82fbe8fe653d016875efa07c2bdae32f8c205
Author: tharvik  users  noreply  github  com>
AuthorDate: Fri Feb  9 17:35:55 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Feb 10 07:29:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c82fbe

dev-python/paho-mqtt: fix use of undef var

Closes: https://github.com/gentoo/gentoo/pull/7139
Package-Manager: Paludis-2.6.0, Repoman-2.3.6

 dev-python/paho-mqtt/paho-mqtt-1.2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/paho-mqtt/paho-mqtt-1.2.3.ebuild 
b/dev-python/paho-mqtt/paho-mqtt-1.2.3.ebuild
index ad2fcc144bc..dde4d1c6b56 100644
--- a/dev-python/paho-mqtt/paho-mqtt-1.2.3.ebuild
+++ b/dev-python/paho-mqtt/paho-mqtt-1.2.3.ebuild
@@ -15,7 +15,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND=""
-DEPEND="dev-python/setuptools[${MULTILIB_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 
 S="${WORKDIR}/paho.mqtt.python-${PV}"
 



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

2018-02-09 Thread Hans de Graaff
commit: abd9fca1a278cc8e85ad66453e10a28ba0c2c6c4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:59:01 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abd9fca1

dev-ruby/ruby-feedparser: add ruby24

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby-feedparser/ruby-feedparser-0.9.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby-feedparser/ruby-feedparser-0.9.4.ebuild 
b/dev-ruby/ruby-feedparser/ruby-feedparser-0.9.4.ebuild
index 4184e69d1fb..240fc23984e 100644
--- a/dev-ruby/ruby-feedparser/ruby-feedparser-0.9.4.ebuild
+++ b/dev-ruby/ruby-feedparser/ruby-feedparser-0.9.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="ChangeLog.md README"



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

2018-02-09 Thread Hans de Graaff
commit: 2c3d3bd0d92da09c60847beb9ad33d2997438de6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:05:42 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c3d3bd0

dev-ruby/roadie: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/roadie/Manifest   |  1 -
 dev-ruby/roadie/roadie-3.2.1-r1.ebuild | 31 ---
 dev-ruby/roadie/roadie-3.2.1-r2.ebuild | 33 -
 dev-ruby/roadie/roadie-3.2.1.ebuild| 28 
 4 files changed, 93 deletions(-)

diff --git a/dev-ruby/roadie/Manifest b/dev-ruby/roadie/Manifest
index aa12cbca585..b103b1565b3 100644
--- a/dev-ruby/roadie/Manifest
+++ b/dev-ruby/roadie/Manifest
@@ -1,2 +1 @@
-DIST roadie-3.2.1.tar.gz 45484 BLAKE2B 
db3056a5ab4d9fd28820d08a8485dc96918b0464c911aa6bf39d9f7a004a292e32eb3a3d057df0b7d677f7d78a99d38419e3ccfcb320e0cc54bf9c26923a9742
 SHA512 
01f96e661212c67f4e7a30703730ac92691c339900f35ea767db1e5458cbb1336063424c176927608afe3e72b91313164bb4e1b5f929ad43ad2270659dd25891
 DIST roadie-3.2.2.tar.gz 45511 BLAKE2B 
3dba057930f330a1c35c6df6b0bdd341b78dfd548e492e2e831847fe6475c4d108a15c2d3077c26b60e8b2b72b9c68d88cc2fd3394ac3a09e0d411cfd58d7888
 SHA512 
484133fccdb6485c00265f62c0ccd88819eb12acc6fe10233740c8b7d1418511d5b7d1cc67f222a5484205bfd7e8616c614136205e75cf85875296b37ecd603e

diff --git a/dev-ruby/roadie/roadie-3.2.1-r1.ebuild 
b/dev-ruby/roadie/roadie-3.2.1-r1.ebuild
deleted file mode 100644
index 53b5ccada52..000
--- a/dev-ruby/roadie/roadie-3.2.1-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Making HTML emails comfortable for the Rails rockstars"
-HOMEPAGE="https://github.com/Mange/roadie;
-SRC_URI="https://github.com/Mange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/nokogiri-1.5.0
-   >=dev-ruby/css_parser-1.4.5 =dev-ruby/css_parser-1.4*"
-ruby_add_bdepend "test? ( dev-ruby/rspec-collection_matchers dev-ruby/webmock 
)"
-
-all_ruby_prepare() {
-   sed -i -e "/[Bb]undler/d" Rakefile || die
-   sed -i -e 's/git ls-files/find . -type f -print/' 
${RUBY_FAKEGEM_GEMSPEC} || die
-}

diff --git a/dev-ruby/roadie/roadie-3.2.1-r2.ebuild 
b/dev-ruby/roadie/roadie-3.2.1-r2.ebuild
deleted file mode 100644
index b7f0d2a9ca4..000
--- a/dev-ruby/roadie/roadie-3.2.1-r2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# 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_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Making HTML emails comfortable for the Rails rockstars"
-HOMEPAGE="https://github.com/Mange/roadie;
-SRC_URI="https://github.com/Mange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/nokogiri-1.5.0
-   >=dev-ruby/css_parser-1.4.5 =dev-ruby/css_parser-1.4*"
-ruby_add_bdepend "test? ( dev-ruby/rspec-collection_matchers dev-ruby/webmock 
)"
-
-all_ruby_prepare() {
-   sed -i -e "/[Bb]undler/d" Rakefile || die
-   sed -i -e 's/git ls-files/find . -type f -print/' \
-   -e '/test_files/d' \
-   -e '/css_parser/ s/~>/>=/' ${RUBY_FAKEGEM_GEMSPEC} || die
-}

diff --git a/dev-ruby/roadie/roadie-3.2.1.ebuild 
b/dev-ruby/roadie/roadie-3.2.1.ebuild
deleted file mode 100644
index 249ebb73be0..000
--- a/dev-ruby/roadie/roadie-3.2.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby21 ruby22 ruby23"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Making HTML emails comfortable for the Rails rockstars"
-HOMEPAGE="https://github.com/Mange/roadie;
-SRC_URI="https://github.com/Mange/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend ">=dev-ruby/nokogiri-1.5.0
-   >=dev-ruby/css_parser-1.4.5 =dev-ruby/css_parser-1.4*"
-ruby_add_bdepend "test? ( dev-ruby/rspec-collection_matchers dev-ruby/webmock 
)"
-
-all_ruby_prepare() {
-   sed -i -e "/[Bb]undler/d" Rakefile || die
-}



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

2018-02-09 Thread Hans de Graaff
commit: e3e4ca74bbe3c2f0c85a923ad3aa5724e8966ea0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 05:53:56 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e4ca74

dev-ruby/autoprefixer-rails: cleanup

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/autoprefixer-rails/Manifest   |  3 --
 .../autoprefixer-rails-7.1.2.6.ebuild  | 36 --
 .../autoprefixer-rails-7.1.4.ebuild| 36 --
 .../autoprefixer-rails-7.2.1.ebuild| 36 --
 4 files changed, 111 deletions(-)

diff --git a/dev-ruby/autoprefixer-rails/Manifest 
b/dev-ruby/autoprefixer-rails/Manifest
index 273d509cf19..8514c9c82f3 100644
--- a/dev-ruby/autoprefixer-rails/Manifest
+++ b/dev-ruby/autoprefixer-rails/Manifest
@@ -1,6 +1,3 @@
 DIST autoprefixer-rails-6.7.7.2.gem 354816 BLAKE2B 
4f572e2e6a33825f69764737c756eb39e4773b252574920d97ce8f4fc4de95db936886c6bd065f5fc3450af74bd6ccf2a8e3e9fb0f3fb92f5ef5048f54c95a74
 SHA512 
5027da925da376fa271eded6792ed754aa34a2b12ae41ca0fd7cb0938f14b530a4ee16b02b62c22d00454da96b839201ea0e60e14e270f4a0f54c5e7105cf5db
-DIST autoprefixer-rails-7.1.2.6.gem 199168 BLAKE2B 
4922a2110262029ca3375de4bb93b4520bd7a2eebdd426d7cc458a2bf3b93a3cb74c611cde96b0d60b915eb57d630ee6b0400d3fd2827b6cac594bd28f34e5d4
 SHA512 
0ff25be410656a5a9b27097b05ca60c779dedaab96a39fc9a95b336194283c5e7fd75fe80cce06237c3965214c3469a06591834c2bd0b5c4786ea51849273e8b
-DIST autoprefixer-rails-7.1.4.gem 188416 BLAKE2B 
bbf495989890c5f5bfdb2998372d5f32dcb114350f1debff2cdafaa6b3f25a29816a2fad8fa0ddf98eca4c7403be7e2041389b68e9e602c1da5574555eeccc19
 SHA512 
08068f4b6d1ea41a1a64aaf2b3dc895389b0b9ebebd60e2db4f961e4d02b2dcc75cc98eb5e349672ac840e53d504d78dec00b30c3f24699d86c059efd304622e
 DIST autoprefixer-rails-7.1.6.gem 190976 BLAKE2B 
071db0c97fbfa5ab7f62dc4a58064056297b37ceacfe51183b8f8cb8385f10a5a3fedf1599bbd47518dd29c89a8fb8d6e12ae2ccd711f5e255964baf1cdaf5bb
 SHA512 
832626700f6a61d44b0fb3721d29121cda858f80aa8a13d134af874cc3e71eb27360f8d9e6de618fe9400d966d2e0afbd2e8a82772f96f34d6f78171574be536
-DIST autoprefixer-rails-7.2.1.gem 195072 BLAKE2B 
c96da1d177ef1fa70842dd69fb01776f70d8f10532e2839628e20aedfddcb35fe2103a6d0f35ed2b416244f2250129dd830bc189f004b9b0508573d7dc0d5713
 SHA512 
2a080644309b1784b34e8a8493beab1c6fc610ad1a67c690845b87ebf8a4cc6689c5b8193e6cae2a2787899cb4ec1c6dc70385920fa8c137618becfc3c6875b6
 DIST autoprefixer-rails-7.2.3.gem 195072 BLAKE2B 
fa7f215239c2e326019f6fa65d8a6c7fa02c0ba46a24935dde80130035e2b22016b300ef1be0c8b116d1a5f2b8c56fd02d9183ab49e80ca5218b18638d1c5f7b
 SHA512 
adb1fb174a49ac3e26ac6be18339e69d65a6afe132cf4c73f33c3c13a675cd473844f8e8f3e15dc5948530886e6da5cac5aaab6566bed6916ea376d8e812a940

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-7.1.2.6.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-7.1.2.6.ebuild
deleted file mode 100644
index 7f614030fe5..000
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-7.1.2.6.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="vendor"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
-HOMEPAGE="https://github.com/ai/autoprefixer-rails;
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="7"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/execjs:*"
-
-ruby_add_bdepend "test? (
-   dev-ruby/rails
-   dev-ruby/rake
-   dev-ruby/rspec-rails
-)"
-
-all_ruby_prepare() {
-   sed -i -e "/bundler/d" -e "/BUNDLE/d" spec/app/config/boot.rb || die
-   sed -i -e "/Bundler/,+3d" spec/app/config/application.rb || die
-   rm spec/rails_spec.rb spec/compass_spec.rb || die
-}

diff --git a/dev-ruby/autoprefixer-rails/autoprefixer-rails-7.1.4.ebuild 
b/dev-ruby/autoprefixer-rails/autoprefixer-rails-7.1.4.ebuild
deleted file mode 100644
index 7f614030fe5..000
--- a/dev-ruby/autoprefixer-rails/autoprefixer-rails-7.1.4.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_EXTRAINSTALL="vendor"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Add vendor prefixes to CSS rules using values from the Can I Use 
website"
-HOMEPAGE="https://github.com/ai/autoprefixer-rails;
-LICENSE="MIT"
-
-KEYWORDS="~amd64"
-SLOT="7"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/execjs:*"
-
-ruby_add_bdepend "test? (
-   dev-ruby/rails
-   dev-ruby/rake
-   dev-ruby/rspec-rails
-)"

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

2018-02-09 Thread Hans de Graaff
commit: 7a640c64a4db36af9b7197ba57db2b193ac28bf9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:35:50 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a640c64

dev-ruby/ruby_dep: add ruby25

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild 
b/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild
index 7bfbf484abd..d4fac76eabc 100644
--- a/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild
+++ b/dev-ruby/ruby_dep/ruby_dep-1.5.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2018-02-09 Thread Hans de Graaff
commit: 59c432c77f253628f89776fc6e85e0160264aac2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Feb 10 06:23:06 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Feb 10 07:38:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c432c7

dev-ruby/rqrcode: add ruby24

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-ruby/rqrcode/rqrcode-0.10.1.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild 
b/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild
index c5e8f5c1525..b2141cf85da 100644
--- a/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild
+++ b/dev-ruby/rqrcode/rqrcode-0.10.1.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby22 ruby23 ruby24"
 
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
 



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

2018-02-09 Thread Patrick Lauer
commit: b328e6558aef5447dfabfd7ef9afcfb0589ea1c5
Author: Patrick Lauer  gentoo  org>
AuthorDate: Fri Feb  9 21:15:44 2018 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Fri Feb  9 21:15:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b328e655

dev-db/postgresql: Bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-db/postgresql/Manifest |   5 +
 dev-db/postgresql/postgresql-10.2.ebuild   | 460 +++
 dev-db/postgresql/postgresql-9.3.21.ebuild | 450 ++
 dev-db/postgresql/postgresql-9.4.16.ebuild | 482 
 dev-db/postgresql/postgresql-9.5.11.ebuild | 488 
 dev-db/postgresql/postgresql-9.6.7.ebuild  | 493 +
 6 files changed, 2378 insertions(+)

diff --git a/dev-db/postgresql/Manifest b/dev-db/postgresql/Manifest
index 41ffc2abdd3..832d9d58e96 100644
--- a/dev-db/postgresql/Manifest
+++ b/dev-db/postgresql/Manifest
@@ -1,5 +1,6 @@
 DIST postgresql-10.0.tar.bz2 19639147 BLAKE2B 
9d4ae9b0091da96075531d0ca2e7a25527b8f0526d8ff7126c4e97384184204f6f3754745d6d330f9077f0a4cb0918b93c19d24b06f92a5f3d8f50b5b3f3d788
 SHA512 
88295af13db77a85a604c925aa627d383fdac62c1185119bba87753ce4167a13aed0f055a7a1329b3051f8757c6ba7529baed00a564ef0cfbee685720f282678
 DIST postgresql-10.1.tar.bz2 19669989 BLAKE2B 
2fbe782023b6d55c6fadaba38e517c60038b3b7b0a14fa8793043f7b9c4719a692440f286bb1f898045b5f56ef1c064f97f36e821990755077dc8d9bb0dbd639
 SHA512 
06050d353aa43f32e0de0199d833d8a4652aff893b718b1c40ed31837838f73fe4d977ac0f2164ab97b3eeff4aae3409f440601740898a893877d96bc0ed1882
+DIST postgresql-10.2.tar.bz2 19901836 BLAKE2B 
ea626774dc11463418b3d0126d04bd2d8eb7e8bb299551bff0c30c7f999f37a1f48e6bbfcde1ee15c0e0519e222bfe14f14d985503fe517a06f127009148ae98
 SHA512 
bac61644c12c31e2dce97ec0134902a2a7141e922619015425961b963961b21210ca840f59ba585d3d75c7e34cb640f2ebeaa2b25c4a866db68f5e73a8f8a448
 DIST postgresql-9.2.19.tar.bz2 16466698 BLAKE2B 
ca5e84ac33923b36639bee403935c14c87bf37cd8061eb1d82bc1816449910ebe1373f74c2467850650fb7c3cadfe049a168ddc4a7e64ce54515731df552992a
 SHA512 
d3b4c5578bf6d6580028e775bff81a921258cb53b6b06567d96a352d14f3b63063adb480b2f5e2029baf8a034e14b5cd75eebc04f1ed7b16c849e1a5ec1f4867
 DIST postgresql-9.2.22.tar.bz2 16531224 BLAKE2B 
2d3b73db5c3082872df824b8e14e65c6cf4f7389f88b7ed577ddf59570294e74a6392a27f78e77c5da2c974566b38deaa979511649a6e95f5323d3961c587f78
 SHA512 
3e5ab04c2be2719579b2ebbf64b220522acfd9ea74029dd2ed699f60230da224bdc99de4ee5529b513e5586de0377764c4e54deb3dd93d5c53c4d666dce2b6b7
 DIST postgresql-9.2.23.tar.bz2 16531436 BLAKE2B 
df12276856e17693f0f1b2623a96ca15cfea95dc6e67e349391a60ba49d9a252ee94448bc07cbc0290f29546ba8b87fa24f62ca8f27cde41d4400c3aa275d778
 SHA512 
9715cb9aa34921f7d246837c6c516d588f88fda543ad635520e9575a5ea448ad39062f2c89c086c7f129cc5f61f4dca33e4f5fd94e1df39da428507c56a81ba3
@@ -8,14 +9,18 @@ DIST postgresql-9.3.15.tar.bz2 17059932 BLAKE2B 
c5afbdf3b1ffe457e137495001eb2f57
 DIST postgresql-9.3.18.tar.bz2 17194269 BLAKE2B 
1039125a1b946ba6bd6b4ef8456f3bf9be024faf4f5c61d6237c0de9743895a754a73867775379077a56925e0c36b6ebcb39c4445515c4d21a39c5458761a0fc
 SHA512 
df3f2e0bb396cac74021fcc1a989d04515c12e73846b7392ae859c32668d73ae0027607426072672b6228d7533cc512f72b5729bf5c8f7b0e8d0270727784455
 DIST postgresql-9.3.19.tar.bz2 17190203 BLAKE2B 
c0c8d229c63c787b9e5d714eb9b103c2c08826dca8e7087946724f430baaa60aeba9f552b6f3174ef2806354c2df0c3cc8983d0aba19210a9a87dac08adaac48
 SHA512 
7293d75b97255720c30d342e1de6032e14e9112e283d2668e80320f76906038d7419ffa7a12eba1fcf9f9274595db10e372db4999b0845cb55998d47f683ebb1
 DIST postgresql-9.3.20.tar.bz2 17197360 BLAKE2B 
2b07f6ee78294a490a8902d0129ac6b5e729e2d9a30631becc193cb7561294354a779ffc62bd61e807b1f540f01ce095e8ae4ad77adf2ea135389143809c9d48
 SHA512 
40098661bf00b64ad2d773b242613c44fe269b5ae984ad8990f85ce705b27138b127493c507103052fb6705d52f2e63a1df6692c7024d43c3c6b18154f2ef407
+DIST postgresql-9.3.21.tar.bz2 17014472 BLAKE2B 
7735e7150c0418f979110cef083235959d22f4b63756cf76b9715862cc409b89f51b3e49bad9a33771b4df3ed39c515cf356c2ed69b77a3c7cb8d3448c83a024
 SHA512 
4c34ddf140a28b7095f8853f85c85cdc4ac44e4e5062ef66542c3082ada8509a201e0037e75d880e7909e1b41d0e3577713ad981cea8e693fb87644a0dce9929
 DIST postgresql-9.4.10.tar.bz2 17802812 BLAKE2B 
6f93a348ef51979b02c096d2c8fe980ce00e9fd1f9cf0766f3b06fa1ba9f52a146cffc205e7708c7bd16e0686486b21118734f4a1cd9823837abeee2e6fc9175
 SHA512 
2fcf47769b22c69bc82c9d6edc317e18dfcb4a96534e012bae4355e5088afa83da98b21e08a07766794f0a166888acbd16705a806464ea11711ed97c3b4012fb
 DIST postgresql-9.4.13.tar.bz2 17867502 BLAKE2B 
d3062d8d8172acf673a090943ba57476bbf9fffbd3b0a7888f9136cb3fc5a372cd0d3d48a29a86449f3e75f4ca71f313fef76728a458bc6043b926585fef1e63
 SHA512 
98e5721ab1ebc88070a5c2c9ef10e4fc21825de495db71f011577aa15fdd31c2dc0429d48e1624f7161c9d31dd75de4d8cf4ed2e34006ed6d1852f04a948e932
 DIST postgresql-9.4.14.tar.bz2 17873740 BLAKE2B 

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

2018-02-09 Thread Andreas Sturmlechner
commit: e36480f861b6023e0fb14f814d846801d527bc03
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 22:50:42 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e36480f8

app-editors/kile: Add 2.9.91_p20180208 snapshot

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-editors/kile/Manifest |  1 +
 app-editors/kile/kile-2.9.91_p20180208.ebuild | 73 +++
 2 files changed, 74 insertions(+)

diff --git a/app-editors/kile/Manifest b/app-editors/kile/Manifest
index 8e9da89d7bd..95ec48b0920 100644
--- a/app-editors/kile/Manifest
+++ b/app-editors/kile/Manifest
@@ -1 +1,2 @@
 DIST kile-2.9.91_p20171209.tar.gz 3624273 BLAKE2B 
d6e4798869b8f5be7a2a6b00b1b067957245373f560a7485334ce1f3f932670a0cb8ef0b551fde2eea1d54a6114e8405025dbd3daea587a2d30b74fe614d332e
 SHA512 
b7e4a6e434057cf04e8712f543cdd74a40659843b1e2777d0a031b5a665e1de34e36ec9b3f5d9bd3bf9202f9dca8595fcee9a81ab4875bc4b6da3a2fb449b2c6
+DIST kile-2.9.91_p20180208.tar.gz 3635083 BLAKE2B 
0579dac072a97f152009a4462759f40bfcdff4d4b6d463affcba7d71cda023f8c43d2173511bd268be22f2cc4412f091ec7ab70793e16781f5cf2023b1303db0
 SHA512 
24bc9221524f2213b0651d96273f35871a5fdf5c65edc4a5d72cb6e2635b1d23e55549ba60172a94691b7793d0a57e116cd94010be28e61231b8ee59b3f369dd

diff --git a/app-editors/kile/kile-2.9.91_p20180208.ebuild 
b/app-editors/kile/kile-2.9.91_p20180208.ebuild
new file mode 100644
index 000..61b5aa39876
--- /dev/null
+++ b/app-editors/kile/kile-2.9.91_p20180208.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+COMMIT=be912e1b8644053d80e5e37d3ccd07448670fb10
+KDE_HANDBOOK="forceoptional"
+inherit kde5 vcs-snapshot
+
+DESCRIPTION="Latex Editor and TeX shell based on KDE Frameworks"
+HOMEPAGE="https://kile.sourceforge.io/;
+SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="FDL-1.2 GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="+pdf +png"
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kdoctools)
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep khtml)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kinit)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep ktexteditor)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_kdeapps_dep okular)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtscript)
+   $(add_qt_dep qttest)
+   $(add_qt_dep qtwidgets)
+   pdf? ( app-text/poppler[qt5] )
+"
+RDEPEND="${DEPEND}
+   !app-editors/kile:4
+   $(add_kdeapps_dep konsole)
+   $(add_kdeapps_dep okular 'pdf?')
+   virtual/latex-base
+   virtual/tex-base
+   pdf? (
+   >=app-text/texlive-core-2014
+   app-text/ghostscript-gpl
+   )
+   png? (
+   app-text/dvipng
+   virtual/imagemagick-tools[png?]
+   )
+"
+
+DOCS=( kile-remote-control.txt )
+
+src_prepare() {
+   kde5_src_prepare
+
+   # I know upstream wants to help us but it doesn't work..
+   sed -e '/INSTALL( FILES AUTHORS/s/^/#DISABLED /' \
+   -i CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package pdf Poppler)
+   )
+
+   kde5_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-l10n/, app-office/libreoffice/

2018-02-09 Thread Andreas Sturmlechner
commit: 41905d6c132d2d94c39dcc5f127c19f6947c1b5c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 10:16:50 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41905d6c

app-office/libreoffice-l10n: 6.0.1.1 version bump

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-office/libreoffice-l10n/Manifest   | 168 +
 .../libreoffice-l10n-6.0.1.1.ebuild|  88 +++
 app-office/libreoffice/Manifest|   2 +-
 3 files changed, 257 insertions(+), 1 deletion(-)

diff --git a/app-office/libreoffice-l10n/Manifest 
b/app-office/libreoffice-l10n/Manifest
index c13c71cbe63..0d51d0a4453 100644
--- a/app-office/libreoffice-l10n/Manifest
+++ b/app-office/libreoffice-l10n/Manifest
@@ -502,3 +502,171 @@ DIST LibreOffice_6.0.0.3_Linux_x86_rpm_langpack_xh.tar.gz 
295493 BLAKE2B 5c461c2
 DIST LibreOffice_6.0.0.3_Linux_x86_rpm_langpack_zh-CN.tar.gz 794478 BLAKE2B 
6474fd4284e4088c32e7b69c88647240bccb21f0a5b1fb800cd8640e303d8706372d3c842ba81200622a7c3541b28601cd41ef37dc0f2a2f17a7e3ba99cef6ec
 SHA512 
b55dcab36661dae6f85ed5b6bf1a31bcb552286deae781db7346ffa5192dd5b687782a2c32490c3aed19145d134d0233b8d44683f95dd785e80f941a10c7fa14
 DIST LibreOffice_6.0.0.3_Linux_x86_rpm_langpack_zh-TW.tar.gz 795551 BLAKE2B 
7faa1bb5798357610c61c4bf3e53ea178c4d3bc5706651f903a5754172c8afa38bdcf40ebc6d4b9f41cae4d928857a8982a5b6547caefe420d19e767c021037b
 SHA512 
b63cf9aa1fd749c1c7dc14202ef89c9c55c7581f55424a680d30092752eb21153875d736dfc557dd7ea160e5562489c3f202745bea47c7931256a89abbb66afb
 DIST LibreOffice_6.0.0.3_Linux_x86_rpm_langpack_zu.tar.gz 326199 BLAKE2B 
31073f39e05680cf851e6e35b6a41d28b72305d4fbf7b3ed19c9174330d4cb4ac2cd221948e95d8b4065536ff88eb7d7801b1b42d8d10ea91007d4b0259ab2bb
 SHA512 
6f2dbbad9802eac72eba74b7fbd6161b03bd594a1cea11413e1bb5c48433265e524fb09d3789d7bebb470d4207ce9a75701d2a76bd27342a6955a05783e38981
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_am.tar.gz 7989966 BLAKE2B 
820ce2b4b4b2da0d564cc0df01d524ebad44826a55758ed87635f7c237f527a6596a9985d506e775aa33002df7576d04da94488c6a1579c1333efc91535e4570
 SHA512 
022f94b3b7f19c1f9d3c442fc221f9c7196519d04e2f973a4026209a316211721a849c2835cd4c1f5726b13eea4285f9a5f78f1e347acdb17c80e6c4f8370d9c
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_ast.tar.gz 7905012 BLAKE2B 
b5e23992a3d12b800d000a5981969f0dfd5bd1bef01dcd434db026a57a252da7e027f02cc672d940d1f645c8158080640a4865cc0f2a364eea9789248a8b
 SHA512 
d7a140a5881018ff143ddfc58e1ff68fa2f930dd10e9e842c1a3bc97a8680f49ac4faf53c6433c9aac35bac3af98aa5d09e5c2aebddee4787bd786e3fa1c51b1
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_bg.tar.gz 8466809 BLAKE2B 
6ad336f598390f8a67608049a888f266bdfa09f908dc7b481781448a718a4d96b76c1404b43403cc5bed459dbce87dd5ee6687b54e3ff87e3011d48591bffd1e
 SHA512 
ea66bead83bbdbf03231c7144fa973849dcd06c5c7a811ce86ef97feabfadc2f5e86c8c89a18e0e2c4886790477bab026659bb2643c844eac8f366c1d8c1eeb1
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_bn-IN.tar.gz 9145037 BLAKE2B 
8da47695e9655c69b708e1bdac387b42affbcae07af0ac3d1e2c572aaefda796838a5a58dea42b844a150c3c554c32675e3949f5984f8a67dfdf8aba04ac2b0f
 SHA512 
2c268ecb08f124d6d5237bcc00476479c0ddb4d3b18b1c0123e549b8d4045ff13935108f922c93544e174bb40a9fcbd31cad5349bf8eabd70f0319278ac968bb
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_bn.tar.gz 9145259 BLAKE2B 
36fd025a995a093171f4b9886a2f5125a44a858c902ccad92fac114e0867cdc39b01fc43f1d7ed57f41cd07ba89529df33bb00bd953351ddef919c1994f4e599
 SHA512 
b200eedb0df12ba97e6abd64403b4e0dea633ef864def4dfe84dfb6eb753cb9483796cd6c397303445b2537fe6c7f0dca3445396514e1e2d23b23a6c988f5f4e
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_bo.tar.gz 8891322 BLAKE2B 
37ff333b3ff6625678f3f93a11b435fdce23d6c4e8e21d13a58ede448b5b4bd3b4024c72da0936e88dc6fe321e777a9663811388b2eef55139829770cb47b505
 SHA512 
237c19238935842f440eb64581e83d4f455a45009068aa7e8e12dfae87a91a4bc7def4b80968a843742d9ea8ca9cd8b04c110a00e30a4c807d783f0eb704bb8d
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_bs.tar.gz 7211127 BLAKE2B 
e441a6ff7bf3bd5d0d24f5f6fb05e309266293232e6ed8d17537545c8484690648e91fe596674766eef3e5329deffca75cc8f7383dca9b7c98328dc2876034c3
 SHA512 
54b23db78e4aaafb49bd70004e8dd629505cc6f21a88dee3e45f295ac51d2855a1c8ac657b807b6df64485a445a0f1c1ed59481083692b9292fe12cc658c7f72
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_ca-valencia.tar.gz 8092436 
BLAKE2B 
bb04dca565e3483e9613cbaa461425d09fec67ed0a23eaa6f3bdf987d8aabce3e36f32208216d7c794682de4f820ff4e01b1f90d6f54852eb38cc9758486a10b
 SHA512 
1e9bf0eec825aa7e1707c7b6f2e4709ee844959e81b8bb29ef5592b96b3efe92e21e801f36b4e30687e7d9bf5ca8d13b41745fe1da04b9669f4311eb9fd2
+DIST LibreOffice_6.0.1.1_Linux_x86_rpm_helppack_ca.tar.gz 8094065 BLAKE2B 
4b99aecff07c32ac09b9f699c3d73debdf8e598684775e9f6f85cd8ab5d6819f1bdca4e89affbb44a0c6841a22e15b24d50be99dd73dc625948a65df96a99346
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: media-plugins/mediastreamer-x264/

2018-02-09 Thread Andreas Sturmlechner
commit: ef90419c1f2ee7b61d6cc44a09ced9ff54ec70c1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 22:19:36 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef90419c

media-plugins/mediastreamer-x264: Switch to https

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-plugins/mediastreamer-x264/mediastreamer-x264-1.4.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-plugins/mediastreamer-x264/mediastreamer-x264-1.4.2-r1.ebuild 
b/media-plugins/mediastreamer-x264/mediastreamer-x264-1.4.2-r1.ebuild
index 11aa80a4c0e..d2f820181b6 100644
--- a/media-plugins/mediastreamer-x264/mediastreamer-x264-1.4.2-r1.ebuild
+++ b/media-plugins/mediastreamer-x264/mediastreamer-x264-1.4.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,7 +6,7 @@ EAPI=5
 MY_P="msx264-${PV}"
 
 DESCRIPTION="mediastreamer plugin: add H264 support"
-HOMEPAGE="http://www.linphone.org/;
+HOMEPAGE="https://www.linphone.org/;
 SRC_URI="mirror://nongnu/linphone/plugins/sources/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kopete/

2018-02-09 Thread Andreas Sturmlechner
commit: 8f79aee3d58f6da652174ebd736992892a644024
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 21:52:04 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f79aee3

kde-apps/kopete: Re-add jingle support w/ snapshot 17.08.3_p20180202

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 kde-apps/kopete/Manifest|   1 +
 kde-apps/kopete/kopete-17.08.3_p20180202.ebuild | 184 
 2 files changed, 185 insertions(+)

diff --git a/kde-apps/kopete/Manifest b/kde-apps/kopete/Manifest
index 97d019b5275..95b37146c7b 100644
--- a/kde-apps/kopete/Manifest
+++ b/kde-apps/kopete/Manifest
@@ -1 +1,2 @@
 DIST kopete-17.08.3_p20171029.tar.gz 8004208 BLAKE2B 
d58fefa127021e2d3c07d55fbe461b958351e2e712922de620f46b20fd8e503bb065b42f93bd81d0a4d109e90bd6cbada80b507d2e6140b97b123c0a15bc801d
 SHA512 
bb70dac4f1336502fb79564e132785d3d6faf01520126441e7cde902b75ae8ac36ae796e0d24318f16e6fffeaa0ec1833a6582731ec734a86fd495dd7252fcb8
+DIST kopete-17.08.3_p20180202.tar.gz 8001099 BLAKE2B 
9aa6bbfc5cba762e4f7e2b789bc393fc3ecc021d9751e3c498326c08a536aa6ece9ccf7b513cd81d0191705a03bc6afce00cb6dd035fa54287e9f065758596f0
 SHA512 
20077588db4eaf4b46723f131a6d0e159ac4a53ab47ca802b4fa8c66a9adea866b5bddb06b0e0eb7e54e34c31726c752875bb98441b1184f80a3483e72e4ca35

diff --git a/kde-apps/kopete/kopete-17.08.3_p20180202.ebuild 
b/kde-apps/kopete/kopete-17.08.3_p20180202.ebuild
new file mode 100644
index 000..bb3b1049171
--- /dev/null
+++ b/kde-apps/kopete/kopete-17.08.3_p20180202.ebuild
@@ -0,0 +1,184 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+COMMIT=059df228e4e08da83a528dfcc6ace2f1231b7382
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="forceoptional"
+inherit kde5 vcs-snapshot
+
+DESCRIPTION="Multi-protocol IM client based on KDE Frameworks"
+HOMEPAGE="https://kopete.kde.org 
https://www.kde.org/applications/internet/kopete;
+SRC_URI="https://github.com/KDE/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="ssl v4l"
+
+# tests hang, last checked for 4.2.96
+RESTRICT+=" test"
+
+# Available plugins
+#
+#  addbookmarks: NO DEPS
+#  alias: NO DEPS (disabled upstream)
+#  autoreplace: NO DEPS
+#  contactnotes: NO DEPS
+#  highlight: NO DEPS
+#  history: NO DEPS
+#  latex: virtual/latex as RDEPEND
+#  nowlistening: NO DEPS
+#  otr: libotr
+#  pipes: NO DEPS
+#  privacy: NO DEPS
+#  statistics: dev-db/sqlite:3
+#  texteffect: NO DEPS
+#  translator: NO DEPS
+#  urlpicpreview: NO DEPS
+#  webpresence: libxml2 libxslt
+# NOTE: By default we enable all plugins that don't have any dependencies
+PLUGINS="+addbookmarks +autoreplace +contactnotes +highlight history latex 
nowlistening
+otr pipes +privacy +statistics +texteffect translator +urlpicpreview 
webpresence"
+
+# Available protocols
+#
+#  gadu: net-libs/libgadu @since 4.3
+#  groupwise: app-crypt/qca:2
+#  irc: NO DEPS, probably will fail so inform user about it
+#  xmpp: net-dns/libidn app-crypt/qca:2 ENABLED BY DEFAULT NETWORK
+#  jingle: media-libs/speex net-libs/ortp DISABLED BY UPSTREAM
+#  meanwhile: net-libs/meanwhile
+#  oscar: NO DEPS
+#  telepathy: net-libs/decibel
+#  testbed: NO DEPS
+#  winpopup: NO DEPS (we're adding samba as RDEPEND so it works)
+#  yahoo: media-libs/jasper
+#  zeroconf (bonjour): NO DEPS
+# DISABLED until fixed: skype sms
+PROTOCOLS="gadu groupwise jingle meanwhile oscar
+testbed winpopup +xmpp yahoo zeroconf"
+
+# disabled protocols
+#  telepathy: net-libs/decibel
+#  irc: NO DEPS
+#  msn: net-libs/libmsn
+#  qq: NO DEPS
+
+IUSE="${IUSE} ${PLUGINS} ${PROTOCOLS}"
+
+COMMONDEPEND="
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep khtml)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kemoticons)
+   $(add_frameworks_dep khtml)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep ktexteditor)
+   $(add_kdeapps_dep kcontacts)
+   $(add_kdeapps_dep kidentitymanagement)
+   $(add_kdeapps_dep libkleo)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtsql)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   app-crypt/gpgme[cxx,qt5]
+   dev-libs/libpcre
+   media-libs/phonon[qt5(+)]
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   gadu? ( >=net-libs/libgadu-1.8.0[threads] )
+   groupwise? ( app-crypt/qca:2[qt5] )
+   jingle? (
+   dev-libs/expat
+  

[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-02-09 Thread Andreas Sturmlechner
commit: c5e46d000969def333b8265e2569079ce443c0ce
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Feb  9 09:35:05 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Feb  9 23:08:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5e46d00

app-office/libreoffice: DEPEND on dev-libs/boost[nls]

Closes: https://bugs.gentoo.org/646564
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-office/libreoffice/libreoffice-6.0..ebuild | 2 +-
 app-office/libreoffice/libreoffice-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-6.0..ebuild 
b/app-office/libreoffice/libreoffice-6.0..ebuild
index 95d104f0bb3..e8f137c5599 100644
--- a/app-office/libreoffice/libreoffice-6.0..ebuild
+++ b/app-office/libreoffice/libreoffice-6.0..ebuild
@@ -96,7 +96,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
=dev-cpp/libcmis-0.5*
dev-db/unixODBC
dev-lang/perl
-   dev-libs/boost:=
+   dev-libs/boost:=[nls]
dev-libs/expat
dev-libs/hyphen
dev-libs/icu:=

diff --git a/app-office/libreoffice/libreoffice-.ebuild 
b/app-office/libreoffice/libreoffice-.ebuild
index 59c64ab8a1c..319eeddd277 100644
--- a/app-office/libreoffice/libreoffice-.ebuild
+++ b/app-office/libreoffice/libreoffice-.ebuild
@@ -96,7 +96,7 @@ COMMON_DEPEND="${PYTHON_DEPS}
=dev-cpp/libcmis-0.5*
dev-db/unixODBC
dev-lang/perl
-   dev-libs/boost:=
+   dev-libs/boost:=[nls]
dev-libs/expat
dev-libs/hyphen
dev-libs/icu:=



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosnode/

2018-02-09 Thread Alexis Ballier
commit: 0b354158f82dd19d94873ccb8a82767246b1f470
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:30 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b354158

dev-ros/rosnode: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosnode/Manifest  |  1 +
 dev-ros/rosnode/rosnode-1.13.6.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/rosnode/Manifest b/dev-ros/rosnode/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosnode/Manifest
+++ b/dev-ros/rosnode/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosnode/rosnode-1.13.6.ebuild 
b/dev-ros/rosnode/rosnode-1.13.6.ebuild
new file mode 100644
index 000..e55999df9ca
--- /dev/null
+++ b/dev-ros/rosnode/rosnode-1.13.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit ros-catkin
+
+DESCRIPTION="Command-line tool for displaying debug information about ROS 
nodes"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/genmsg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosmsg/

2018-02-09 Thread Alexis Ballier
commit: 44599f14b6ad49da24b712a6a2ef79db65409c56
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:26 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44599f14

dev-ros/rosmsg: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosmsg/Manifest |  1 +
 dev-ros/rosmsg/rosmsg-1.13.6.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/rosmsg/Manifest b/dev-ros/rosmsg/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosmsg/Manifest
+++ b/dev-ros/rosmsg/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosmsg/rosmsg-1.13.6.ebuild 
b/dev-ros/rosmsg/rosmsg-1.13.6.ebuild
new file mode 100644
index 000..7189f2bbf44
--- /dev/null
+++ b/dev-ros/rosmsg/rosmsg-1.13.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit ros-catkin
+
+DESCRIPTION="Command-line tools for displaying information about message and 
services"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/genmsg[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rosbag[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rospy/

2018-02-09 Thread Alexis Ballier
commit: 7c9150bb96204bbff9950e4942bd74479dc9f169
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:54 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9150bb

dev-ros/test_rospy: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rospy/Manifest |  1 +
 dev-ros/test_rospy/test_rospy-1.13.6.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/test_rospy/Manifest b/dev-ros/test_rospy/Manifest
index d30f25310ca..cc83755e11e 100644
--- a/dev-ros/test_rospy/Manifest
+++ b/dev-ros/test_rospy/Manifest
@@ -4,3 +4,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rospy/test_rospy-1.13.6.ebuild 
b/dev-ros/test_rospy/test_rospy-1.13.6.ebuild
new file mode 100644
index 000..c681d244b91
--- /dev/null
+++ b/dev-ros/test_rospy/test_rospy-1.13.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs dev-ros/test_rosmaster"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rospy"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/std_msgs[${PYTHON_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   
dev-ros/test_rosmaster[${PYTHON_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/rosunit[${PYTHON_USEDEP}]
+   test? (
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-ros/rosbuild
+   dev-ros/rosgraph[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang/

2018-02-09 Thread Michał Górny
commit: 5faf112ea6bab97c5559e749098d92dce31cd644
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  9 12:58:16 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  9 12:58:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5faf112e

sys-devel/clang: Restore calling cmake-utils_src_prepare

Fixes: a1b84f8898 (sys-devel/clang: add prefix includes patch for darwin too)

 sys-devel/clang/clang-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/clang/clang-5.0.1.ebuild 
b/sys-devel/clang/clang-5.0.1.ebuild
index 375aedcf55a..e07848fcd49 100644
--- a/sys-devel/clang/clang-5.0.1.ebuild
+++ b/sys-devel/clang/clang-5.0.1.ebuild
@@ -113,7 +113,7 @@ src_unpack() {
 }
 
 src_prepare() {
-   default
+   cmake-utils_src_prepare
eprefixify lib/Frontend/InitHeaderSearch.cpp
 }
 



[gentoo-commits] repo/gentoo:master commit in: app-portage/gemato/

2018-02-09 Thread Michał Górny
commit: a8e750c14019c92612d16d57701d20d6cc78808a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  9 11:24:25 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb  9 11:26:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8e750c1

app-portage/gemato: Bump to 11.1

Bump to the 11.1 bugfix release that fixes wiping environment for
isolated GnuPG mode, which in turn fixes Prefix support.

Closes: https://bugs.gentoo.org/646882

 app-portage/gemato/Manifest   |  1 +
 app-portage/gemato/gemato-11.1.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
index 33b150489ef..2711fb7c8e0 100644
--- a/app-portage/gemato/Manifest
+++ b/app-portage/gemato/Manifest
@@ -1,2 +1,3 @@
 DIST gemato-10.3.tar.gz 63279 BLAKE2B 
317c98c3989399e3a87cd5452edc509da86b17ecb41d295feca4071141d3ff1ba95a86544d64c786726f2148a899c1597020dde3513a913b1bc1811e2117337e
 SHA512 
dd2b47238ac0707984358bd763ce0dfb23d8b09561939d22aae2e60386de388af9c5e67faa89a6ab9da4f0b334ee8486eeda66e5eb83bd2a26241b8a2b88128d
 DIST gemato-11.0.tar.gz 64123 BLAKE2B 
c1020368eca1f8914c2377e23b27e953e06268e70754e2265af6d31defb2960263371aa6cbfb22b046d1bbdf549c948b62858d09055e8813fc9148a28c264a81
 SHA512 
c9ba297950a96fc7c07f88b8dcda33c3f351043ca062c354425be43ce4915b5ee37d6a28122797cfc01152546e72eda647e27f764b53345bfef87b292dd893e7
+DIST gemato-11.1.tar.gz 64338 BLAKE2B 
672816956115bcf9a8f4832d8ca6af290d5ea2db213fbf485e969ec6f1c79e1f9a42590a8b88e7c204608ee8a1e2d2e7935b02a046fc08730dac667e5e371d09
 SHA512 
518f2728564a70e1758c3ee1290b01a27815fb51a64e632ad08fc6481becc0bf03756270aa2eed3fc3403557226c00a3f6099e73cd110532455ead515b37e109

diff --git a/app-portage/gemato/gemato-11.1.ebuild 
b/app-portage/gemato/gemato-11.1.ebuild
new file mode 100644
index 000..6dd1dc95ea5
--- /dev/null
+++ b/app-portage/gemato/gemato-11.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# pyblake2 & pysha3 are broken with pypy3
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+PYTHON_REQ_USE='threads(+)'
+inherit distutils-r1
+
+DESCRIPTION="Stand-alone Manifest generation & verification tool"
+HOMEPAGE="https://github.com/mgorny/gemato;
+SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+blake2 bzip2 +gpg lzma sha3 test"
+
+MODULE_RDEPEND="
+   blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' 
python{2_7,3_4,3_5} pypy{,3}) )
+   bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' 
python2_7 pypy) )
+   gpg? ( app-crypt/gnupg )
+   lzma? ( $(python_gen_cond_dep 
'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) )
+   sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' 
python{2_7,3_4,3_5} pypy{,3}) )"
+
+RDEPEND="${MODULE_RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( ${MODULE_RDEPEND} )"
+
+python_test() {
+   esetup.py test
+}



[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2018-02-09 Thread Lars Wendler
commit: ea46544c30b2f76bf00e9244dd65ccc09cdfa3fb
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Feb  9 11:31:27 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Feb  9 11:31:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea46544c

net-fs/samba: Added net-libs/libtirpc to DEPEND.

Closes: https://bugs.gentoo.org/647002
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-fs/samba/samba-4.7.4.ebuild | 5 +
 net-fs/samba/samba-4.7.5.ebuild | 5 +
 net-fs/samba/samba-4.8.0_rc2.ebuild | 1 +
 3 files changed, 11 insertions(+)

diff --git a/net-fs/samba/samba-4.7.4.ebuild b/net-fs/samba/samba-4.7.4.ebuild
index eecd9a2607e..477428fd681 100644
--- a/net-fs/samba/samba-4.7.4.ebuild
+++ b/net-fs/samba/samba-4.7.4.ebuild
@@ -83,6 +83,11 @@ DEPEND="${CDEPEND}
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
virtual/pkgconfig
+   net-libs/libtirpc
+   || (
+   net-libs/rpcsvc-proto
+   =sys-libs/nss_wrapper-1.1.3

diff --git a/net-fs/samba/samba-4.7.5.ebuild b/net-fs/samba/samba-4.7.5.ebuild
index eb49c8229c3..981e4b7d154 100644
--- a/net-fs/samba/samba-4.7.5.ebuild
+++ b/net-fs/samba/samba-4.7.5.ebuild
@@ -83,6 +83,11 @@ DEPEND="${CDEPEND}
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
virtual/pkgconfig
+   net-libs/libtirpc
+   || (
+   net-libs/rpcsvc-proto
+   =sys-libs/nss_wrapper-1.1.3

diff --git a/net-fs/samba/samba-4.8.0_rc2.ebuild 
b/net-fs/samba/samba-4.8.0_rc2.ebuild
index 28420233a0a..f0c7f58ce66 100644
--- a/net-fs/samba/samba-4.8.0_rc2.ebuild
+++ b/net-fs/samba/samba-4.8.0_rc2.ebuild
@@ -82,6 +82,7 @@ DEPEND="${CDEPEND}
${PYTHON_DEPS}
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
+   net-libs/libtirpc
virtual/pkgconfig
|| (
net-libs/rpcsvc-proto



[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebengine/files/

2018-02-09 Thread Michael Palimaka
commit: 057656398bd8e729e47d983151e510c6ecca18ee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Feb  9 11:39:40 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Feb  9 11:39:53 2018 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=05765639

dev-qt/qtwebengine: fix typo in patch

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-qt/qtwebengine/files/qtwebengine-5.10.0-jpeg-9.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.10.0-jpeg-9.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.10.0-jpeg-9.patch
index 21e147db..e70d64c7 100644
--- a/dev-qt/qtwebengine/files/qtwebengine-5.10.0-jpeg-9.patch
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.10.0-jpeg-9.patch
@@ -30,7 +30,7 @@ Fix build with jpeg-9. Bug #646456
cinfo.image_width = m_OrigWidth;
cinfo.image_height = m_OrigHeight;
 -  int ret = jpeg_read_header(, true);
-+  int ret = jpeg_read_header(, TUE);
++  int ret = jpeg_read_header(, TRUE);
if (ret != JPEG_HEADER_OK)
  return false;
  



[gentoo-commits] repo/gentoo:master commit in: ros-meta/ros_comm/

2018-02-09 Thread Alexis Ballier
commit: 342e5f89b8d4beb31066ec4ec5a765629957e857
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:02:14 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=342e5f89

ros-meta/ros_comm: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 ros-meta/ros_comm/Manifest   |  1 +
 ros-meta/ros_comm/ros_comm-1.13.6.ebuild | 59 
 2 files changed, 60 insertions(+)

diff --git a/ros-meta/ros_comm/Manifest b/ros-meta/ros_comm/Manifest
index 0afadfcde6d..9f21d381430 100644
--- a/ros-meta/ros_comm/Manifest
+++ b/ros-meta/ros_comm/Manifest
@@ -1,3 +1,4 @@
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/ros-meta/ros_comm/ros_comm-1.13.6.ebuild 
b/ros-meta/ros_comm/ros_comm-1.13.6.ebuild
new file mode 100644
index 000..7302c050fcf
--- /dev/null
+++ b/ros-meta/ros_comm/ros_comm-1.13.6.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="ROS communications-related packages"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+# utilities subdir
+RDEPEND="
+   dev-ros/roslz4
+   dev-ros/xmlrpcpp
+   dev-ros/roswtf
+   dev-ros/message_filters
+"
+# tools subdir
+RDEPEND="${RDEPEND}
+   dev-ros/rosbag
+   dev-ros/rosbag_storage
+   dev-ros/rosconsole
+   dev-ros/rosgraph
+   dev-ros/roslaunch
+   dev-ros/rosmaster
+   dev-ros/rosmsg
+   dev-ros/rosnode
+   dev-ros/rosout
+   dev-ros/rosparam
+   dev-ros/rosservice
+   dev-ros/rostest
+   dev-ros/rostopic
+   dev-ros/topic_tools
+"
+# clients subdir
+RDEPEND="${RDEPEND}
+   dev-ros/roscpp
+   dev-ros/rospy
+"
+# test subdir
+RDEPEND="${RDEPEND}
+   dev-ros/test_rosbag
+   dev-ros/test_rosbag_storage
+   dev-ros/test_roscpp
+   dev-ros/test_rosgraph
+   dev-ros/test_roslaunch
+   dev-ros/test_roslib_comm
+   dev-ros/test_rosmaster
+   dev-ros/test_rosparam
+   dev-ros/test_rospy
+   dev-ros/test_rosservice
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_roscpp/

2018-02-09 Thread Alexis Ballier
commit: 02aecf8c3f278bf9550a6558a4895759e9b373f3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:20 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02aecf8c

dev-ros/test_roscpp: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_roscpp/Manifest  |  1 +
 dev-ros/test_roscpp/test_roscpp-1.13.6.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-ros/test_roscpp/Manifest b/dev-ros/test_roscpp/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_roscpp/Manifest
+++ b/dev-ros/test_roscpp/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_roscpp/test_roscpp-1.13.6.ebuild 
b/dev-ros/test_roscpp/test_roscpp-1.13.6.ebuild
new file mode 100644
index 000..74f15fb4247
--- /dev/null
+++ b/dev-ros/test_roscpp/test_roscpp-1.13.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+CATKIN_HAS_MESSAGES=yes
+PYTHON_COMPAT=( python2_7 )
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/rosgraph_msgs dev-ros/std_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for roscpp"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-ros/roscpp
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/rosunit[${PYTHON_USEDEP}]
+   dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/boost:=[threads]
+   test? (
+   dev-cpp/gtest
+   )
+"
+REQUIRED_USE="test? ( ros_messages_cxx )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rosservice/

2018-02-09 Thread Alexis Ballier
commit: 164773493a678520f21d4fe057282a722ae0942c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:02:02 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16477349

dev-ros/test_rosservice: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rosservice/Manifest   |  1 +
 .../test_rosservice/test_rosservice-1.13.6.ebuild  | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ros/test_rosservice/Manifest b/dev-ros/test_rosservice/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_rosservice/Manifest
+++ b/dev-ros/test_rosservice/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rosservice/test_rosservice-1.13.6.ebuild 
b/dev-ros/test_rosservice/test_rosservice-1.13.6.ebuild
new file mode 100644
index 000..e129fbdc99e
--- /dev/null
+++ b/dev-ros/test_rosservice/test_rosservice-1.13.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rospy"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/std_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   test? (
+   dev-ros/test_rosmaster[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rospy/

2018-02-09 Thread Alexis Ballier
commit: b50a3d2fa959a3c0e27ef5dd7504da09aa17d864
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:06 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50a3d2f

dev-ros/rospy: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rospy/Manifest|  1 +
 dev-ros/rospy/rospy-1.13.6.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/rospy/Manifest b/dev-ros/rospy/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rospy/Manifest
+++ b/dev-ros/rospy/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rospy/rospy-1.13.6.ebuild 
b/dev-ros/rospy/rospy-1.13.6.ebuild
new file mode 100644
index 000..6491d58ff8b
--- /dev/null
+++ b/dev-ros/rospy/rospy-1.13.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+CATKIN_HAS_MESSAGES=yes
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+ROS_SUBDIR=clients/${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Python client library for ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rosgraph[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-ros/roscpp[${PYTHON_USEDEP}]
+   dev-ros/rosgraph_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+src_install() {
+   ros-catkin_src_install
+   # Other tests need these nodes
+   exeinto /usr/share/${PN}
+   doexe test_nodes/*
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/live/

2018-02-09 Thread Alexis Ballier
commit: cd1a5cb6ab0c1684078c59805e8a6713c56841d2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:04:53 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd1a5cb6

media-plugins/live: bump to 2018.01.29

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 media-plugins/live/Manifest   |   1 +
 media-plugins/live/live-2018.01.29.ebuild | 128 ++
 2 files changed, 129 insertions(+)

diff --git a/media-plugins/live/Manifest b/media-plugins/live/Manifest
index c83b652e2b4..58aec57ed77 100644
--- a/media-plugins/live/Manifest
+++ b/media-plugins/live/Manifest
@@ -4,3 +4,4 @@ DIST live.2017.06.04.tar.gz 629288 BLAKE2B 
df2e99ab348b92de1b3ac60b53e9f80a41a83
 DIST live.2017.07.18.tar.gz 629395 BLAKE2B 
79a7a31b65d6a116ab36f6f9c590df0957ce84810cb4ac6ae101ae6185bbe80cbbea68a45a0119cb2acb75f7f7647b4f4006449e82b5f02b597f3048bf322d58
 SHA512 
49e164203a73a94629e66fcf48fde5f937b2c4724a0d4026b1970a8118039ce5cec393b777dea7439c09d3b0789f9f9d7f6f8a5328c4a3dd78a95e05b6525586
 DIST live.2017.09.12.tar.gz 629538 BLAKE2B 
6f2b08d6b73a287663ec2c40faa7ff8b955aea7ca261d3eec69d85ea77f26ee951d14c3aedac48d84be0bdaafccc7a721d83974ce0fc8693aecc63984f377fbe
 SHA512 
09b18b5f5dce28519b6c7cd8d52eb3448711939df051f84c8d6dce0b88d05c982711059f2ce13efccd326b2dbfeb93b88c4e03fe4a88bbd8fcefcb25e51d107d
 DIST live.2017.10.28.tar.gz 629858 BLAKE2B 
a1d862ae1356b46fcd4e5ef7e27c47d3fb3abac35add6feb7955f60ddbd93e9242a84102393de67dda0d39c09632a0cc9a5f54d30c9f91d005696d3a566258bd
 SHA512 
eea5bdb8d89e76c8b6aeb6ec04b77af3048cb41f228d230ba4da6045e9bc691a456023d44d8650fe690b08143567ed5af5b633f5b6522debff79344a813dc7d0
+DIST live.2018.01.29.tar.gz 630144 BLAKE2B 
dd58865636a44ccabd0e3b02e1679393f17fb09d82455188d49d4fcb321b21e136a168c0f4c407c1dba3afcb5b541192cd2c5181d7a7710d39d4727526fc39cf
 SHA512 
dfdfcac67acd28f651807de423c6aed00190cfc38ecd361b76d37d8cc27ee2fa91a42a5b8835045680fd7f65c847e41747b948c2c71e6530a3c7e89421c60227

diff --git a/media-plugins/live/live-2018.01.29.ebuild 
b/media-plugins/live/live-2018.01.29.ebuild
new file mode 100644
index 000..bc3998e3bd5
--- /dev/null
+++ b/media-plugins/live/live-2018.01.29.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit flag-o-matic eutils toolchain-funcs multilib multilib-minimal
+
+DESCRIPTION="Libraries for standards-based RTP/RTCP/RTSP multimedia streaming"
+HOMEPAGE="http://www.live555.com/;
+SRC_URI="http://www.live555.com/liveMedia/public/${P/-/.}.tar.gz
+   mirror://gentoo/${P/-/.}.tar.gz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+IUSE="examples static-libs"
+DOCS=( "live-shared/README" )
+
+# Alexis Ballier 
+# Be careful, bump this everytime you bump the package and the ABI has changed.
+# If you don't know, ask someone.
+LIVE_ABI_VERSION=7
+SLOT="0/${LIVE_ABI_VERSION}"
+
+src_unpack() {
+   unpack ${A}
+   mkdir -p "${S}"
+   mv "${WORKDIR}/live" "${S}/" || die
+}
+
+src_prepare() {
+   epatch "${FILESDIR}/${PN}-recursive3.patch"
+
+   if use static-libs ; then
+   cp -pPR live live-shared
+   mv live live-static
+   else
+   mv live live-shared
+   fi
+
+   use static-libs && cp "${FILESDIR}/config.gentoo-r1" 
live-static/config.gentoo
+   cp "${FILESDIR}/config.gentoo-so-r2" live-shared/config.gentoo-so-r1
+
+   case ${CHOST} in
+   *-solaris*)
+   use static-libs && { sed -i \
+   -e '/^COMPILE_OPTS /s/$/ -DSOLARIS 
-DXLOCALE_NOT_USED/' \
+   -e '/^LIBS_FOR_CONSOLE_APPLICATION /s/$/ 
-lsocket -lnsl/' \
+   live-static/config.gentoo \
+   || die ; }
+   sed -i \
+   -e '/^COMPILE_OPTS /s/$/ -DSOLARIS 
-DXLOCALE_NOT_USED/' \
+   -e '/^LIBS_FOR_CONSOLE_APPLICATION /s/$/ 
-lsocket -lnsl/' \
+   live-shared/config.gentoo-so-r1 \
+   || die
+   ;;
+   *-darwin*)
+   use static-libs && { sed -i \
+   -e '/^COMPILE_OPTS /s/$/ -DBSD=1 
-DHAVE_SOCKADDR_LEN=1/' \
+   -e '/^LINK /s/$/ /' \
+   -e '/^LIBRARY_LINK /s/$/ /' \
+   -e '/^LIBRARY_LINK_OPTS /s/-Bstatic//' \
+   live-static/config.gentoo \
+   || die static ; }
+   sed -i \
+   -e 

[gentoo-commits] repo/gentoo:master commit in: dev-ros/topic_tools/

2018-02-09 Thread Alexis Ballier
commit: 858cdeaaf9b0984260ee574ae87e410ebe7417cd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:57 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=858cdeaa

dev-ros/topic_tools: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/topic_tools/Manifest  |  1 +
 dev-ros/topic_tools/topic_tools-1.13.6.ebuild | 33 +++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/topic_tools/Manifest b/dev-ros/topic_tools/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/topic_tools/Manifest
+++ b/dev-ros/topic_tools/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/topic_tools/topic_tools-1.13.6.ebuild 
b/dev-ros/topic_tools/topic_tools-1.13.6.ebuild
new file mode 100644
index 000..227b9521dac
--- /dev/null
+++ b/dev-ros/topic_tools/topic_tools-1.13.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+CATKIN_HAS_MESSAGES=yes
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python2_7 )
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="Tools for directing, throttling and selecting ROS topics"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cpp_common
+   dev-ros/rosconsole
+   dev-ros/roscpp
+   dev-ros/rostime
+   dev-ros/xmlrpcpp
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/rosunit[${PYTHON_USEDEP}]
+   dev-cpp/gtest
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rosmaster/

2018-02-09 Thread Alexis Ballier
commit: 9c8e4318aca35355f07dca829863475686b30543
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:37 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c8e4318

dev-ros/test_rosmaster: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rosmaster/Manifest|  1 +
 .../test_rosmaster/test_rosmaster-1.13.6.ebuild| 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ros/test_rosmaster/Manifest b/dev-ros/test_rosmaster/Manifest
index d30f25310ca..cc83755e11e 100644
--- a/dev-ros/test_rosmaster/Manifest
+++ b/dev-ros/test_rosmaster/Manifest
@@ -4,3 +4,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rosmaster/test_rosmaster-1.13.6.ebuild 
b/dev-ros/test_rosmaster/test_rosmaster-1.13.6.ebuild
new file mode 100644
index 000..f9547e8381b
--- /dev/null
+++ b/dev-ros/test_rosmaster/test_rosmaster-1.13.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+CATKIN_HAS_MESSAGES=yes
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rosmaster"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-ros/rosgraph[${PYTHON_USEDEP}]
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/std_msgs[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/roslib[${PYTHON_USEDEP}] )
+"
+
+mycatkincmakeargs=( "-DCATKIN_ENABLE_TESTING=ON" )
+
+src_install() {
+   ros-catkin_src_install
+   dodir /usr/share/${PN}
+   cp -a test "${ED}//usr/share/${PN}/" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rosbag_storage/

2018-02-09 Thread Alexis Ballier
commit: ecd049c2de6cc411302c1f6a48a835f527d26df3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:15 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecd049c2

dev-ros/test_rosbag_storage: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rosbag_storage/Manifest   |  1 +
 .../test_rosbag_storage-1.13.6.ebuild  | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-ros/test_rosbag_storage/Manifest 
b/dev-ros/test_rosbag_storage/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_rosbag_storage/Manifest
+++ b/dev-ros/test_rosbag_storage/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rosbag_storage/test_rosbag_storage-1.13.6.ebuild 
b/dev-ros/test_rosbag_storage/test_rosbag_storage-1.13.6.ebuild
new file mode 100644
index 000..31f2c38f62c
--- /dev/null
+++ b/dev-ros/test_rosbag_storage/test_rosbag_storage-1.13.6.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rosbag_storage"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-ros/rosbag_storage
+   dev-ros/std_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/boost:=
+   test? ( dev-cpp/gtest )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosparam/

2018-02-09 Thread Alexis Ballier
commit: eebd0363cfb76474168e4d5abe4d19cdf32c3357
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:39 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eebd0363

dev-ros/rosparam: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosparam/Manifest   |  1 +
 dev-ros/rosparam/rosparam-1.13.6.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-ros/rosparam/Manifest b/dev-ros/rosparam/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosparam/Manifest
+++ b/dev-ros/rosparam/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosparam/rosparam-1.13.6.ebuild 
b/dev-ros/rosparam/rosparam-1.13.6.ebuild
new file mode 100644
index 000..8f4a32442ac
--- /dev/null
+++ b/dev-ros/rosparam/rosparam-1.13.6.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+inherit ros-catkin
+
+DESCRIPTION="Command-line tool for getting and setting ROS Parameters on the 
parameter server"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rosgraph[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rosbag/

2018-02-09 Thread Alexis Ballier
commit: 71fe7686ed812bdb09b83c5a4ac2fd9e0dadd7a4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:11 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71fe7686

dev-ros/test_rosbag: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rosbag/Manifest  |  1 +
 dev-ros/test_rosbag/test_rosbag-1.13.6.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ros/test_rosbag/Manifest b/dev-ros/test_rosbag/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_rosbag/Manifest
+++ b/dev-ros/test_rosbag/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rosbag/test_rosbag-1.13.6.ebuild 
b/dev-ros/test_rosbag/test_rosbag-1.13.6.ebuild
new file mode 100644
index 000..e1c88499733
--- /dev/null
+++ b/dev-ros/test_rosbag/test_rosbag-1.13.6.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+PYTHON_COMPAT=( python2_7 )
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/rosgraph_msgs dev-ros/std_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rosbag"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/message_generation
+   dev-ros/rosbag[${PYTHON_USEDEP}]
+   dev-ros/rosconsole
+   dev-ros/roscpp
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/rosunit[${PYTHON_USEDEP}]
+   dev-ros/topic_tools[${PYTHON_USEDEP}]
+   dev-ros/xmlrpcpp
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-libs/boost[threads]
+   app-arch/bzip2
+   dev-ros/rosout
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-cpp/gtest
+   )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_roslaunch/

2018-02-09 Thread Alexis Ballier
commit: 3dbeeb84e255b17861b4d5a9e6ae11a21dbfc452
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:28 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dbeeb84

dev-ros/test_roslaunch: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_roslaunch/Manifest|  1 +
 .../test_roslaunch/test_roslaunch-1.13.6.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-ros/test_roslaunch/Manifest b/dev-ros/test_roslaunch/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_roslaunch/Manifest
+++ b/dev-ros/test_roslaunch/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_roslaunch/test_roslaunch-1.13.6.ebuild 
b/dev-ros/test_roslaunch/test_roslaunch-1.13.6.ebuild
new file mode 100644
index 000..04a9794a2d4
--- /dev/null
+++ b/dev-ros/test_roslaunch/test_roslaunch-1.13.6.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for roslaunch"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   test? (
+   dev-ros/roslaunch[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_roslib_comm/

2018-02-09 Thread Alexis Ballier
commit: d25db6f96c979092c0584f96cb90ccaca9d57b2f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:32 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d25db6f9

dev-ros/test_roslib_comm: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_roslib_comm/Manifest  |  1 +
 .../test_roslib_comm-1.13.6.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/test_roslib_comm/Manifest 
b/dev-ros/test_roslib_comm/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_roslib_comm/Manifest
+++ b/dev-ros/test_roslib_comm/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_roslib_comm/test_roslib_comm-1.13.6.ebuild 
b/dev-ros/test_roslib_comm/test_roslib_comm-1.13.6.ebuild
new file mode 100644
index 000..25cb9086d14
--- /dev/null
+++ b/dev-ros/test_roslib_comm/test_roslib_comm-1.13.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/rosgraph_msgs dev-ros/std_msgs"
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for roslib"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   test? ( dev-ros/roslib[${PYTHON_USEDEP}] 
dev-python/nose[${PYTHON_USEDEP}] dev-ros/test_rosmaster )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rosparam/

2018-02-09 Thread Alexis Ballier
commit: b886914c32869d46a4b5ce83202b2ec7e6048252
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:45 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b886914c

dev-ros/test_rosparam: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rosparam/Manifest|  1 +
 dev-ros/test_rosparam/test_rosparam-1.13.6.ebuild | 26 +++
 2 files changed, 27 insertions(+)

diff --git a/dev-ros/test_rosparam/Manifest b/dev-ros/test_rosparam/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_rosparam/Manifest
+++ b/dev-ros/test_rosparam/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rosparam/test_rosparam-1.13.6.ebuild 
b/dev-ros/test_rosparam/test_rosparam-1.13.6.ebuild
new file mode 100644
index 000..1c24d77d570
--- /dev/null
+++ b/dev-ros/test_rosparam/test_rosparam-1.13.6.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+CATKIN_HAS_MESSAGES=yes
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rosparam"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   test? (
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-ros/rosparam[${PYTHON_USEDEP}]
+   )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/roslaunch/

2018-02-09 Thread Alexis Ballier
commit: 83463097fe4e0d7e4e159e08be45d15a0a87b584
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:17 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83463097

dev-ros/roslaunch: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/roslaunch/Manifest|  1 +
 dev-ros/roslaunch/roslaunch-1.13.6.ebuild | 63 +++
 2 files changed, 64 insertions(+)

diff --git a/dev-ros/roslaunch/Manifest b/dev-ros/roslaunch/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/roslaunch/Manifest
+++ b/dev-ros/roslaunch/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/roslaunch/roslaunch-1.13.6.ebuild 
b/dev-ros/roslaunch/roslaunch-1.13.6.ebuild
new file mode 100644
index 000..4a273f61dd4
--- /dev/null
+++ b/dev-ros/roslaunch/roslaunch-1.13.6.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+inherit ros-catkin user
+
+DESCRIPTION="Tool for easily launching multiple ROS nodes"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   dev-ros/rosclean[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-ros/rosgraph_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/rosparam[${PYTHON_USEDEP}]
+   dev-ros/rosmaster[${PYTHON_USEDEP}]
+   dev-ros/rosout
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-util/rosdep[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-ros/test_rosmaster
+   )"
+PATCHES=( "${FILESDIR}/timeout.patch" )
+
+src_test() {
+   rosdep update
+   ros-catkin_src_test
+}
+
+src_install() {
+   ros-catkin_src_install
+
+   dodir /etc/ros
+   sed -e "s/@PKG_VERSION@/${PV}/" "${FILESDIR}/roscore.xml.in" > 
"${ED}/etc/ros/roscore.xml" || die
+
+   newinitd "${FILESDIR}/roscore.initd" roscore
+   newconfd "${FILESDIR}/roscore.confd" roscore
+
+   newinitd "${FILESDIR}/roslaunch.initd" roslaunch
+   newconfd "${FILESDIR}/roslaunch.confd" roslaunch
+
+   doenvd "${FILESDIR}/40roslaunch"
+
+   # Needed by test_roslaunch
+   insinto /usr/share/${PN}
+   doins test/xml/noop.launch
+}
+
+pkg_preinst() {
+   enewgroup ros
+   enewuser ros -1 -1 /home/ros ros
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_rosgraph/

2018-02-09 Thread Alexis Ballier
commit: 558355df8029066cf02713e88541a8ed81e6b56b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:24 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558355df

dev-ros/test_rosgraph: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/test_rosgraph/Manifest|  1 +
 dev-ros/test_rosgraph/test_rosgraph-1.13.6.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/test_rosgraph/Manifest b/dev-ros/test_rosgraph/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/test_rosgraph/Manifest
+++ b/dev-ros/test_rosgraph/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/test_rosgraph/test_rosgraph-1.13.6.ebuild 
b/dev-ros/test_rosgraph/test_rosgraph-1.13.6.ebuild
new file mode 100644
index 000..e901f1348a6
--- /dev/null
+++ b/dev-ros/test_rosgraph/test_rosgraph-1.13.6.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=test/${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Unit tests for rosgraph"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="dev-ros/rostest[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rosgraph[${PYTHON_USEDEP}] )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosgraph/

2018-02-09 Thread Alexis Ballier
commit: 20c78b0375993f7fd1c47166f37969d930a4ad8c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:12 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c78b03

dev-ros/rosgraph: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosgraph/Manifest   |  1 +
 dev-ros/rosgraph/rosgraph-1.13.6.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-ros/rosgraph/Manifest b/dev-ros/rosgraph/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosgraph/Manifest
+++ b/dev-ros/rosgraph/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosgraph/rosgraph-1.13.6.ebuild 
b/dev-ros/rosgraph/rosgraph-1.13.6.ebuild
new file mode 100644
index 000..85373fac595
--- /dev/null
+++ b/dev-ros/rosgraph/rosgraph-1.13.6.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+ROS_SUBDIR=tools/${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Prints information about the ROS Computation Graph"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-python/netifaces[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( dev-python/mock[${PYTHON_USEDEP}] 
dev-python/nose[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/roscpp/

2018-02-09 Thread Alexis Ballier
commit: 21c6da934f2e2faf261f780883422c110379abb4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:01:01 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21c6da93

dev-ros/roscpp: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/roscpp/Manifest |  1 +
 dev-ros/roscpp/roscpp-1.13.6.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ros/roscpp/Manifest b/dev-ros/roscpp/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/roscpp/Manifest
+++ b/dev-ros/roscpp/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/roscpp/roscpp-1.13.6.ebuild 
b/dev-ros/roscpp/roscpp-1.13.6.ebuild
new file mode 100644
index 000..6be640b77dc
--- /dev/null
+++ b/dev-ros/roscpp/roscpp-1.13.6.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+CATKIN_HAS_MESSAGES=yes
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+ROS_SUBDIR=clients/${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="C++ implementation of ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cpp_common
+   dev-ros/rosconsole
+   dev-ros/roscpp_serialization
+   dev-ros/roscpp_traits
+   dev-ros/rostime
+   dev-ros/xmlrpcpp
+   dev-libs/boost:=
+   dev-ros/std_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/rosgraph_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosout/

2018-02-09 Thread Alexis Ballier
commit: 3e74db71a714bfc69b147a2e2a01df369189d746
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:34 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e74db71

dev-ros/rosout: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosout/Manifest |  1 +
 dev-ros/rosout/rosout-1.13.6.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/rosout/Manifest b/dev-ros/rosout/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosout/Manifest
+++ b/dev-ros/rosout/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosout/rosout-1.13.6.ebuild 
b/dev-ros/rosout/rosout-1.13.6.ebuild
new file mode 100644
index 000..73aa43ce3f3
--- /dev/null
+++ b/dev-ros/rosout/rosout-1.13.6.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="System-wide logging mechanism for messages sent to the /rosout 
topic"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roscpp
+   dev-ros/rosgraph_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosmaster/

2018-02-09 Thread Alexis Ballier
commit: f7d2f49d10a6d80a0ad93fbb16078cdeb1a450de
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:22 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7d2f49d

dev-ros/rosmaster: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosmaster/Manifest|  1 +
 dev-ros/rosmaster/rosmaster-1.13.6.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ros/rosmaster/Manifest b/dev-ros/rosmaster/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosmaster/Manifest
+++ b/dev-ros/rosmaster/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosmaster/rosmaster-1.13.6.ebuild 
b/dev-ros/rosmaster/rosmaster-1.13.6.ebuild
new file mode 100644
index 000..fed9f60bade
--- /dev/null
+++ b/dev-ros/rosmaster/rosmaster-1.13.6.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+ROS_SUBDIR=tools/${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="ROS Master implementation"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rosgraph[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rosservice/

2018-02-09 Thread Alexis Ballier
commit: 056e7393e7faa58e0b1aa452df5e72bc7ba5b719
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:43 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=056e7393

dev-ros/rosservice: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rosservice/Manifest |  1 +
 dev-ros/rosservice/rosservice-1.13.6.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/rosservice/Manifest b/dev-ros/rosservice/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rosservice/Manifest
+++ b/dev-ros/rosservice/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rosservice/rosservice-1.13.6.ebuild 
b/dev-ros/rosservice/rosservice-1.13.6.ebuild
new file mode 100644
index 000..5fd9906789c
--- /dev/null
+++ b/dev-ros/rosservice/rosservice-1.13.6.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit ros-catkin
+
+DESCRIPTION="Command-line tool for listing and querying ROS Services"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rosgraph[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/rosmsg[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rostest/

2018-02-09 Thread Alexis Ballier
commit: 404bb10f51430bfc18445c76ead44999a85e60ba
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:48 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404bb10f

dev-ros/rostest: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rostest/Manifest  |  1 +
 dev-ros/rostest/rostest-1.13.6.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-ros/rostest/Manifest b/dev-ros/rostest/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rostest/Manifest
+++ b/dev-ros/rostest/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rostest/rostest-1.13.6.ebuild 
b/dev-ros/rostest/rostest-1.13.6.ebuild
new file mode 100644
index 000..10f35c044f1
--- /dev/null
+++ b/dev-ros/rostest/rostest-1.13.6.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
+
+inherit ros-catkin
+
+DESCRIPTION="Integration test suite based on roslaunch that is compatible with 
xUnit frameworks"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rosunit[${PYTHON_USEDEP}]
+   dev-libs/boost:=[threads]
+"
+DEPEND="${RDEPEND}"
+RDEPEND="${RDEPEND}
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/roslaunch[${PYTHON_USEDEP}]
+   dev-ros/rosmaster[${PYTHON_USEDEP}]"
+DEPEND="${DEPEND}
+   test? (
+   ${RDEPEND}
+   dev-cpp/gtest
+   )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/rostopic/

2018-02-09 Thread Alexis Ballier
commit: 3de0138c098e8d47ff3e58df5c793b3baff9e1b1
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Feb  9 10:00:52 2018 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Feb  9 11:39:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3de0138c

dev-ros/rostopic: Bump to 1.13.6.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ros/rostopic/Manifest   |  1 +
 dev-ros/rostopic/rostopic-1.13.6.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ros/rostopic/Manifest b/dev-ros/rostopic/Manifest
index d82e4177aac..5654fd5af45 100644
--- a/dev-ros/rostopic/Manifest
+++ b/dev-ros/rostopic/Manifest
@@ -3,3 +3,4 @@ DIST ros_comm-1.13.1.tar.gz 1005522 BLAKE2B 
5c459893ed362b80facf6e57d12ebfacf1ac
 DIST ros_comm-1.13.2.tar.gz 1007451 BLAKE2B 
8963267f7cbe625a1160c3d8bdf34dd9c0b1102612632d8c7af7ac32aba507adb116eb3d33353b6302072fcac6ab312e095b4fdc023ecbe5d6591a2912b6aa82
 SHA512 
eac7ee469bbdb622bc69e5239dea7e7dc97bec7b7e51a8ee49f18756cba753387e884ccd651e201e01985d23f908828c7ae94c311889557caeb742ddcad2e1b9
 DIST ros_comm-1.13.4.tar.gz 1013412 BLAKE2B 
0f5a33ae9c5c3bd3c04e26903c4ee7dff2d30f896fbca620100b9db58e8a338cbe79a9305dedb9e8d6f4a9c13b823e5016178db228bb2661eadb6864e20fad40
 SHA512 
6057afa5b79da661ecdc60459462fe09a7a90b5e43cbf6c5bdfa4095f07e00356eb13c9cab460b91a0c84b789ccf0753c09666ad24fb4b3aec967cb407cf81ce
 DIST ros_comm-1.13.5.tar.gz 1027857 BLAKE2B 
ed2611179bc7f84bf0b9cde1336474a3bc4c3980ebf97241910123abd430a48ae0636a6ddfb6c191bea2905454644c7ec340e26049d8faddca39783bef13d60b
 SHA512 
91af2de897851061eda140d6c96ec88171f1fd1cd7549b6df1ac570e066603c7bb721a58cb19487657387753433d67ad22421408a237d1ffb5ea580c0cf3eeb3
+DIST ros_comm-1.13.6.tar.gz 1047870 BLAKE2B 
874e31faa1a6a77292dab4b7fa64ed13a1f1f63f76512ea351e53bd14ce87662cea5c648e48c3c16668104129cc5eb172bc8f381516bdba676c7212f1acbaaf9
 SHA512 
382e81847141ab95462fc84a8215b945af995d29f9c0d507665e22faaf79aee9789950546ca7737bd40059f3ed1ecd284ff11bd3e6f1732f3c47a433c5d25155

diff --git a/dev-ros/rostopic/rostopic-1.13.6.ebuild 
b/dev-ros/rostopic/rostopic-1.13.6.ebuild
new file mode 100644
index 000..222f83a30d2
--- /dev/null
+++ b/dev-ros/rostopic/rostopic-1.13.6.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+ROS_REPO_URI="https://github.com/ros/ros_comm;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=tools/${PN}
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit ros-catkin
+
+DESCRIPTION="Command-line tool for displaying debug information about ROS 
Topics"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rosbag[${PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"



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

2018-02-09 Thread Andrey Grozin
commit: 3ffed0fe7306fe52f1c1b9ef9ddfcc0f23b90e17
Author: Andrey Grozin  gentoo  org>
AuthorDate: Fri Feb  9 12:31:36 2018 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Fri Feb  9 12:31:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ffed0fe

dev-python/bpython: bump to 0.17

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-python/bpython/Manifest|  1 +
 dev-python/bpython/bpython-0.17.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/bpython/Manifest b/dev-python/bpython/Manifest
index 117fa888d57..e6e6a98e616 100644
--- a/dev-python/bpython/Manifest
+++ b/dev-python/bpython/Manifest
@@ -1 +1,2 @@
 DIST bpython-0.16.tar.gz 201898 BLAKE2B 
907f6a506d2b52db01e7b84c615574a7daad36f630646a345c963e432cc394330339390b6afc2585845b19d6c00d9c0b95e06b9d3b0fe85fe20daad3f5cf208a
 SHA512 
1173d720aa679e4a6079c7febd36abbffa901604c99c6d1ce1e940a8fbcf8a4ba7bc526de0ef5290e3859a4384d1cd5cbef62fd9f056ddcb545b64d69d103a5b
+DIST bpython-0.17.tar.gz 214230 BLAKE2B 
dc26de037eb5698c04afb74472fe9483e1398f4f40b7da21520f2e7e2ba6e510bcbf200938d520d95b976a6fbeb31af7b1b1f828a022835edbe40d381c82797d
 SHA512 
17c25f4ed69eb7cff27ba0a488434623a7105c60bbf1e6f608c91babf240741ab7a7097ad347f897cd5f39f2fedb944fd69d8dbfbc66da6b910e1a14ace6fd1f

diff --git a/dev-python/bpython/bpython-0.17.ebuild 
b/dev-python/bpython/bpython-0.17.ebuild
new file mode 100644
index 000..6905eb54495
--- /dev/null
+++ b/dev-python/bpython/bpython-0.17.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 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
+
+DESCRIPTION="Syntax highlighting and autocompletion for the Python interpreter"
+HOMEPAGE="http://www.bpython-interpreter.org/ 
https://github.com/bpython/bpython https://pypi.python.org/pypi/bpython;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/curtsies-0.2.11[${PYTHON_USEDEP}]
+   dev-python/greenlet[${PYTHON_USEDEP}]
+   dev-python/jedi[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/six-1.5[${PYTHON_USEDEP}]
+   dev-python/urwid[${PYTHON_USEDEP}]
+   dev-python/watchdog[${PYTHON_USEDEP}]
+   "
+DEPEND="${RDEPEND}
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? ( dev-python/mock[${PYTHON_USEDEP}] )"
+
+DOCS=( AUTHORS CHANGELOG sample.theme light.theme )
+
+# Req'd for clean build by each impl
+DISTUTILS_IN_SOURCE_BUILD=1
+
+python_compile_all() {
+   if use doc; then
+   sphinx-build -b html -c doc/sphinx/source/ \
+   doc/sphinx/source/ doc/sphinx/source/html || die "docs 
build failed"
+   fi
+}
+
+python_test() {
+   pushd build/lib > /dev/null
+   "${PYTHON}" -m unittest discover || die
+   popd > /dev/null
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( doc/sphinx/source/html/. )
+   distutils-r1_python_install_all
+}



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

2018-02-09 Thread Lars Wendler
commit: 048755dcd0618fff7b498d3296fa4522bcb1999b
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Feb  9 08:07:43 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Feb  9 08:07:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=048755dc

dev-libs/icu-layoutex: Version 60.2 stable for amd64.

Bug: https://bugs.gentoo.org/641130
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild 
b/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild
index 76009cead95..3f019e7deb0 100644
--- a/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild
+++ b/dev-libs/icu-layoutex/icu-layoutex-60.2.ebuild
@@ -13,7 +13,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
 IUSE="debug static-libs"
 
 RDEPEND="



<    1   2   3   >