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

2017-10-09 Thread Jason Zaman
commit: 6711d4f96985b0797c1803cd6f05e5a1410c1018
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Oct 10 06:45:23 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Oct 10 06:45:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6711d4f9

Merge commit 'refs/pull/5829/head' of git://github.com/gentoo/gentoo

 ...cycoreutils-2.7_rc1-0001-newrole-not-suid.patch |  13 ---
 .../0005-use-ruby-include-with-rubylibver.patch|  12 --
 ...07-build-related-fixes-bug-500674-for-2.5.patch |  69 ---
 ...nux-2.5-0001-only-mount-proc-if-necessary.patch |  54 -
 ...ing-proc-outside-of-selinux_init_load_pol.patch | 129 -
 ...5-0003-Change-the-location-of-_selinux.so.patch |  44 ---
 .../files/libsemanage-2.4-build-paths.patch|  35 --
 7 files changed, 356 deletions(-)



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

2017-10-09 Thread Jason Zaman
commit: 76eb43412b532a045d92d524dfa5ed1b1bcca671
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Oct  1 13:47:28 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct  9 18:45:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76eb4341

sys-libs/libselinux: remove unused patches

 .../0005-use-ruby-include-with-rubylibver.patch|  12 --
 ...07-build-related-fixes-bug-500674-for-2.5.patch |  69 ---
 ...nux-2.5-0001-only-mount-proc-if-necessary.patch |  54 -
 ...ing-proc-outside-of-selinux_init_load_pol.patch | 129 -
 ...5-0003-Change-the-location-of-_selinux.so.patch |  44 ---
 5 files changed, 308 deletions(-)

diff --git 
a/sys-libs/libselinux/files/0005-use-ruby-include-with-rubylibver.patch 
b/sys-libs/libselinux/files/0005-use-ruby-include-with-rubylibver.patch
deleted file mode 100644
index 0fc84141a3d..000
--- a/sys-libs/libselinux/files/0005-use-ruby-include-with-rubylibver.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -uNr libselinux-2.2.2.orig/src/Makefile libselinux-2.2.2/src/Makefile
 libselinux-2.2.2.orig/src/Makefile 2013-11-06 20:56:30.0 +0100
-+++ libselinux-2.2.2/src/Makefile  2013-11-25 21:02:05.327561766 +0100
-@@ -16,7 +16,7 @@
- PYLIBDIR ?= $(LIBDIR)/$(PYLIBVER)
- RUBYLIBVER ?= $(shell $(RUBY) -e 'print 
RUBY_VERSION.split(".")[0..1].join(".")')
- RUBYPLATFORM ?= $(shell $(RUBY) -e 'print RUBY_PLATFORM')
--RUBYINC ?= $(shell pkg-config --cflags ruby)
-+RUBYINC ?= $(shell pkg-config --cflags ruby-$(RUBYLIBVER))
- RUBYINSTALL ?= $(LIBDIR)/ruby/site_ruby/$(RUBYLIBVER)/$(RUBYPLATFORM)
- LIBBASE ?= $(shell basename $(LIBDIR))
- 

diff --git 
a/sys-libs/libselinux/files/0007-build-related-fixes-bug-500674-for-2.5.patch 
b/sys-libs/libselinux/files/0007-build-related-fixes-bug-500674-for-2.5.patch
deleted file mode 100644
index 67e47ad40a6..000
--- 
a/sys-libs/libselinux/files/0007-build-related-fixes-bug-500674-for-2.5.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-https://bugs.gentoo.org/500674
-
-random fixes:
-- make sure PCRE_CFLAGS get used
-- use PCRE_LIBS via pkg-config
-- move LDFLAGS to before objects, not after
-- do not hardcode -L$(LIBDIR) (let the toolchain handle it)
-- do not hardcode -I$(INCLUDEDIR) (let the toolchain handle it)
-
-diff -uNr libselinux-2.5.orig/src/Makefile libselinux-2.5/src/Makefile
 libselinux-2.5.orig/src/Makefile   2016-03-13 19:27:07.09100 +0100
-+++ libselinux-2.5/src/Makefile2016-03-13 19:27:16.49500 +0100
-@@ -73,7 +73,7 @@
-   -fipa-pure-const -Wno-suggest-attribute=pure 
-Wno-suggest-attribute=const \
-   -Werror -Wno-aggregate-return -Wno-redundant-decls
- 
--override CFLAGS += -I../include -I$(INCLUDEDIR) -D_GNU_SOURCE $(EMFLAGS)
-+override CFLAGS += -I../include $(PCRE_CFLAGS) -D_GNU_SOURCE $(EMFLAGS)
- 
- SWIG_CFLAGS += -Wno-error -Wno-unused-variable -Wno-unused-but-set-variable 
-Wno-unused-parameter \
-   -Wno-shadow -Wno-uninitialized -Wno-missing-prototypes 
-Wno-missing-declarations
-@@ -102,17 +102,17 @@
-   $(CC) $(CFLAGS) $(SWIG_CFLAGS) $(RUBYINC) -fPIC -DSHARED -c -o $@ $<
- 
- $(SWIGSO): $(SWIGLOBJ)
--  $(CC) $(CFLAGS) -shared -o $@ $< -L. -lselinux $(LDFLAGS) -L$(LIBDIR)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $< -L. -lselinux
- 
- $(SWIGRUBYSO): $(SWIGRUBYLOBJ)
--  $(CC) $(CFLAGS) -shared -o $@ $^ -L. -lselinux $(LDFLAGS) -L$(LIBDIR)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -L. -lselinux
- 
- $(LIBA): $(OBJS)
-   $(AR) rcs $@ $^
-   $(RANLIB) $@
- 
- $(LIBSO): $(LOBJS)
--  $(CC) $(CFLAGS) -shared -o $@ $^ -lpcre -ldl $(LDFLAGS) -L$(LIBDIR) 
-Wl,-soname,$(LIBSO),-z,defs,-z,relro
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -ldl $(PCRE_LIBS) 
-Wl,-soname,$(LIBSO),-z,defs,-z,relro
-   ln -sf $@ $(TARGET) 
- 
- $(LIBPC): $(LIBPC).in ../VERSION
-@@ -125,7 +125,7 @@
-   $(CC) $(filter-out -Werror, $(CFLAGS)) $(PYINC) -fPIC -DSHARED -c -o $@ 
$<
- 
- $(AUDIT2WHYSO): $(AUDIT2WHYLOBJ)
--  $(CC) $(CFLAGS) -shared -o $@ $^ -L. $(LDFLAGS) -lselinux 
$(LIBDIR)/libsepol.a -L$(LIBDIR)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -L. -lselinux 
$(LIBDIR)/libsepol.a
- 
- %.o:  %.c policy.h
-   $(CC) $(CFLAGS) $(TLSFLAGS) -c -o $@ $<
-diff -uNr libselinux-2.5.orig/utils/Makefile libselinux-2.5/utils/Makefile
 libselinux-2.5.orig/utils/Makefile 2016-03-13 19:27:07.10200 +0100
-+++ libselinux-2.5/utils/Makefile  2016-03-13 19:27:40.29700 +0100
-@@ -24,11 +24,12 @@
-   -fipa-pure-const -Wno-suggest-attribute=pure 
-Wno-suggest-attribute=const \
-   -Werror -Wno-aggregate-return -Wno-redundant-decls
- override CFLAGS += -I../include -D_GNU_SOURCE $(EMFLAGS)
--LDLIBS += -L../src -lselinux -L$(LIBDIR)
-+LDLIBS += -L../src -lselinux
- 
- TARGETS=$(patsubst %.c,%,$(wildcard *.c))
- 
--sefcontext_compile: LDLIBS += -lpcre ../src/libselinux.a -lsepol
-+sefcontext_compile: CFLAGS += $(

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

2017-10-09 Thread Jason Zaman
commit: cea2f65ff016b6669ad3a8625f51a03958e3e471
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Oct  1 13:46:11 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct  9 18:45:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea2f65f

sys-libs/libsemanage: remove unused patch

 .../files/libsemanage-2.4-build-paths.patch| 35 --
 1 file changed, 35 deletions(-)

diff --git a/sys-libs/libsemanage/files/libsemanage-2.4-build-paths.patch 
b/sys-libs/libsemanage/files/libsemanage-2.4-build-paths.patch
deleted file mode 100644
index 7eeb9befb31..000
--- a/sys-libs/libsemanage/files/libsemanage-2.4-build-paths.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-there's no point in using -I/-L flags to the system paths and this breaks
-cross-compiling.  just drop them.
-
 a/src/Makefile
-+++ b/src/Makefile
-@@ -60,7 +60,7 @@
- SWIG_CFLAGS += -Wno-error -Wno-unused-but-set-variable -Wno-unused-variable 
-Wno-shadow \
-   -Wno-unused-parameter
- 
--override CFLAGS += -I../include -I$(INCLUDEDIR) -D_GNU_SOURCE 
-+override CFLAGS += -I../include -D_GNU_SOURCE
- RANLIB=ranlib
- 
- SWIG = swig -Wall -python -o $(SWIGCOUT) -outdir ./
-@@ -82,17 +82,17 @@
-   $(CC) $(CFLAGS) $(SWIG_CFLAGS) $(RUBYINC) -fPIC -DSHARED -c -o $@ $<
- 
- $(SWIGSO): $(SWIGLOBJ)
--  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $< -L. -lsemanage -L$(LIBDIR)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $< -L. -lsemanage
- 
- $(SWIGRUBYSO): $(SWIGRUBYLOBJ)
--  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -L. -lsemanage -L$(LIBDIR)
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -L. -lsemanage
- 
- $(LIBA): $(OBJS)
-   $(AR) rcs $@ $^
-   $(RANLIB) $@
- 
- $(LIBSO): $(LOBJS)
--  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -lsepol -laudit -lselinux 
-lbz2 -lustr -L$(LIBDIR) 
-Wl,-soname,$(LIBSO),--version-script=libsemanage.map,-z,defs
-+  $(CC) $(CFLAGS) $(LDFLAGS) -shared -o $@ $^ -lsepol -laudit -lselinux 
-lbz2 -lustr -Wl,-soname,$(LIBSO),--version-script=libsemanage.map,-z,defs
-   ln -sf $@ $(TARGET)
- 
- $(LIBPC): $(LIBPC).in ../VERSION



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

2017-10-09 Thread Jason Zaman
commit: 7a31b39973f1a9fc743be5d2c8198f8f02241f83
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Oct  1 13:45:26 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Oct  9 18:45:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a31b399

sys-apps/policycoreutils: remove unused patch

 .../policycoreutils-2.7_rc1-0001-newrole-not-suid.patch | 13 -
 1 file changed, 13 deletions(-)

diff --git 
a/sys-apps/policycoreutils/files/policycoreutils-2.7_rc1-0001-newrole-not-suid.patch
 
b/sys-apps/policycoreutils/files/policycoreutils-2.7_rc1-0001-newrole-not-suid.patch
deleted file mode 100644
index d4aa531063f..000
--- 
a/sys-apps/policycoreutils/files/policycoreutils-2.7_rc1-0001-newrole-not-suid.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/policycoreutils/newrole/Makefile 
b/policycoreutils/newrole/Makefile
-index bdefbb8..9cff135 100644
 policycoreutils/newrole/Makefile
-+++ policycoreutils/newrole/Makefile
-@@ -49,7 +49,7 @@ ifeq ($(NAMESPACE_PRIV),y)
-   IS_SUID=y
- endif
- ifeq ($(IS_SUID),y)
--  MODE := 4555
-+  MODE := 0555
-   LDLIBS += -lcap-ng
- else
-   MODE := 0555



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

2017-10-09 Thread Kent Fredric
commit: 8ee2a1a97c754cf7d504c837f3cb72c6f03534e9
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 16:04:01 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ee2a1a9

profiles: unmask >=dev-perl/Log-Dispatch-2.590.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b70ea35284e..6c35630e1a4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/Log-Dispatch-2.590.0
 >=dev-perl/App-pwhich-1.150.0
 
 # Thomas Deutschmann  (24 May 2017)



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

2017-10-09 Thread Kent Fredric
commit: d66a76b8abc51a7ba6f964dda0d3140dbce39d36
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:15:35 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d66a76b8

profiles: unmask dev-perl/Term-Table

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

diff --git a/profiles/package.mask b/profiles/package.mask
index d0bf24c61e8..1881b7cea2f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -395,7 +395,6 @@ dev-perl/Test2-Suite
 >=dev-perl/Data-Validate-Domain-0.120.0
 dev-perl/Test2-Plugin-NoWarnings
 dev-perl/Params-ValidationCompiler
-dev-perl/Term-Table
 >=dev-perl/DateTime-Locale-1.60.0
 >=dev-perl/DateTime-TimeZone-2.20.0
 >=dev-perl/DateTime-1.370.0



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

2017-10-09 Thread Kent Fredric
commit: 9e6eafb552bee129dd2f81b64f3a93559f826c27
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Oct 10 05:33:48 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:33:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e6eafb5

profiles: unmask >=dev-perl/Math-BigInt-GMP-1.600.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 6e83f960629..ec73ed9b952 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -382,7 +382,6 @@ dev-ruby/poltergeist
 
 # Andreas K. Hüttel  (5 June 2017)
 # Masked for initial testing.
->=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
 



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

2017-10-09 Thread Kent Fredric
commit: e6ea846325d05f0b0c9438ca6e0f9d553837901b
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:14:38 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6ea8463

profiles: unmask dev-perl/Sub-Info

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

diff --git a/profiles/package.mask b/profiles/package.mask
index c1e65b0f6a0..d0bf24c61e8 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -395,7 +395,6 @@ dev-perl/Test2-Suite
 >=dev-perl/Data-Validate-Domain-0.120.0
 dev-perl/Test2-Plugin-NoWarnings
 dev-perl/Params-ValidationCompiler
-dev-perl/Sub-Info
 dev-perl/Term-Table
 >=dev-perl/DateTime-Locale-1.60.0
 >=dev-perl/DateTime-TimeZone-2.20.0



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

2017-10-09 Thread Kent Fredric
commit: dbe4f9f7d1b6b263718f3c726e4a233b41635698
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:28:59 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbe4f9f7

profiles: unmask >=dev-perl/Data-Validate-Domain-0.120.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8d8c0fcbe5f..b50e5937c27 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/Data-Validate-Domain-0.120.0
 dev-perl/Test2-Plugin-NoWarnings
 dev-perl/Params-ValidationCompiler
 >=dev-perl/DateTime-Locale-1.60.0



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

2017-10-09 Thread Kent Fredric
commit: 05313ee4e7ee8459afb5118867c5107b0657666c
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Oct 10 05:32:07 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:32:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05313ee4

profiles: unmask perl-core/ versions of 5.26 modules

You shouldn't need these, but if you're deciding you want to stay on
~arch _and_ not upgrade to 5.26, you will.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index af301c8daef..6e83f960629 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -382,12 +382,6 @@ dev-ruby/poltergeist
 
 # Andreas K. Hüttel  (5 June 2017)
 # Masked for initial testing.
-# The following masks are technically not part of the Perl 5.26 block,
-# but with the unmasking of Perl 5.26 they become obsolete and can be
-# removed:
-#
->=perl-core/ExtUtils-MakeMaker-7.180.0
->=perl-core/Math-BigInt-1.999.726
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96



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

2017-10-09 Thread Kent Fredric
commit: 70dbffd6018826c83a916d9118d724e3be0fc119
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:59:48 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70dbffd6

profiles: unmask >=dev-perl/DateTime-1.370.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e15e54988d9..4a33f095015 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/DateTime-1.370.0
 >=dev-perl/DateTime-Format-Strptime-1.710.0
 >=dev-perl/Log-Dispatch-2.590.0
 >=dev-perl/App-pwhich-1.150.0



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

2017-10-09 Thread Kent Fredric
commit: f8786b838b84891ee1f2f320bad2873714bc4f0b
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Oct 10 05:34:23 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:34:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8786b83

profiles: unmask newest CPAN Test-Simple

Unfortunately, the core version of Test-Simple/Test::More has one or
more annoying bug, that leads to it breaking things like Archive-Zip's
test suite.

Thus, a newer version is needed in tree if you have Perl 5.26 :/

Sadly, this will probably create an upgrade crisis down the chain for
everyone with a perl-core leaf, but at least, gentoo-perl-helpers fixes
that problem.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ec73ed9b952..f571be749e5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -380,11 +380,6 @@ net-im/skypetab-ng
 www-client/phantomjs
 dev-ruby/poltergeist
 
-# Andreas K. Hüttel  (5 June 2017)
-# Masked for initial testing.
-=perl-core/Test-Simple-1.302.96
-=virtual/perl-Test-Simple-1.302.96
-
 # Thomas Deutschmann  (24 May 2017)
 # Broken runscript/changed behavior causing lvm2 to fail
 # on boot. Bug #617578



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

2017-10-09 Thread Kent Fredric
commit: 7a86810f326ca5faf463aef6ed9c6dd9bec6381b
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 16:01:27 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a86810f

profiles: unmask >=dev-perl/DateTime-Format-Strptime-1.710.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4a33f095015..b70ea35284e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/DateTime-Format-Strptime-1.710.0
 >=dev-perl/Log-Dispatch-2.590.0
 >=dev-perl/App-pwhich-1.150.0
 



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

2017-10-09 Thread Kent Fredric
commit: 4ae78ac3710510b305f4871782ad601f13225ae8
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:55:46 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ae78ac3

profiles: unmask >=dev-perl/DateTime-TimeZone-2.20.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index af7e67d1440..e15e54988d9 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/DateTime-TimeZone-2.20.0
 >=dev-perl/DateTime-1.370.0
 >=dev-perl/DateTime-Format-Strptime-1.710.0
 >=dev-perl/Log-Dispatch-2.590.0



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

2017-10-09 Thread Kent Fredric
commit: 221a0aa8f434e593d2ccc20c6021e9d019334bdd
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 13:34:29 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221a0aa8

profiles: unmask Perl 5.26.0 and 5.26.1

If you're reading this message, also, please read all of the following
for related concerns:

- 
https://archives.gentoo.org/gentoo-user/message/ccbe42a3729e8b37895244b0bc1e35cf

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b2314ab3791..4a2eed93d8f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -382,65 +382,6 @@ dev-ruby/poltergeist
 
 # Andreas K. Hüttel  (5 June 2017)
 # Masked for initial testing.
-=dev-lang/perl-5.26.0
-=dev-lang/perl-5.26.1
-=virtual/perl-Archive-Tar-2.240.0
-=virtual/perl-B-Debug-1.240.0
-=virtual/perl-CPAN-2.180.0
-=virtual/perl-CPAN-Meta-2.150.10
-=virtual/perl-Carp-1.420.0
-=virtual/perl-Compress-Raw-Bzip2-2.74.0
-=virtual/perl-Compress-Raw-Zlib-2.74.0
-=virtual/perl-DB_File-1.840.0
-=virtual/perl-Data-Dumper-2.167.0
-=virtual/perl-Devel-PPPort-3.350.0
-=virtual/perl-Digest-MD5-2.550.0
-=virtual/perl-Digest-SHA-5.960.0
-=virtual/perl-Encode-2.880.0
-=virtual/perl-ExtUtils-MakeMaker-7.240.0
-=virtual/perl-ExtUtils-ParseXS-3.340.0
-=virtual/perl-File-Spec-3.670.0
-=virtual/perl-Filter-Simple-0.930.0
-=virtual/perl-Getopt-Long-2.490.0
-=virtual/perl-HTTP-Tiny-0.70.0
-=virtual/perl-I18N-LangTags-0.420.0
-=virtual/perl-IO-1.380.0
-=virtual/perl-IO-Compress-2.74.0
-=virtual/perl-IO-Socket-IP-0.380.0
-=virtual/perl-IPC-Cmd-0.960.0
-=virtual/perl-JSON-PP-2.274.0.200_rc
-=virtual/perl-Locale-Maketext-1.280.0
-=virtual/perl-Math-BigInt-1.999.806-r1
-=virtual/perl-Math-BigInt-FastCalc-0.500.500
-=virtual/perl-Math-BigRat-0.261.100
-=virtual/perl-Math-Complex-1.590.100
-=virtual/perl-Module-Load-Conditional-0.680.0
-=virtual/perl-Module-Metadata-1.0.33
-=virtual/perl-Net-Ping-2.550.0
-=virtual/perl-Parse-CPAN-Meta-2.150.10
-=virtual/perl-Perl-OSType-1.10.0
-=virtual/perl-Pod-Simple-3.350.0
-=virtual/perl-Safe-2.400.0
-=virtual/perl-Scalar-List-Utils-1.460.200_rc
-=virtual/perl-Storable-2.620.0
-=virtual/perl-Sys-Syslog-0.350.0
-=virtual/perl-Term-ANSIColor-4.60.0
-=virtual/perl-Term-ReadLine-1.160.0
-=virtual/perl-Test-1.300.0
-=virtual/perl-Test-Harness-3.380.0
-=virtual/perl-Test-Simple-1.302.73
-=virtual/perl-Thread-Queue-3.120.0
-=virtual/perl-Thread-Semaphore-2.130.0
-=virtual/perl-Time-Local-1.250.0
-=virtual/perl-XSLoader-0.270.0
-=virtual/perl-bignum-0.470.0
-=virtual/perl-libnet-3.100.0
-=virtual/perl-parent-0.236.0
-=virtual/perl-podlators-4.90.0
-=virtual/perl-threads-2.150.0
-=virtual/perl-threads-shared-1.560.0
-=virtual/perl-version-0.991.700
-#
 # The following masks are technically not part of the Perl 5.26 block,
 # but with the unmasking of Perl 5.26 they become obsolete and can be
 # removed:



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

2017-10-09 Thread Kent Fredric
commit: bf0d087c6b742b4264fdf83135467e3c001d0d9d
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:10:14 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf0d087c

profiles: unmask dev-perl/Net-Twitter-4.10.420

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4a2eed93d8f..c1e65b0f6a0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -387,7 +387,6 @@ dev-ruby/poltergeist
 # removed:
 #
 >=perl-core/ExtUtils-MakeMaker-7.180.0
->=dev-perl/Net-Twitter-4.10.420
 >=perl-core/Math-BigInt-1.999.726
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96



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

2017-10-09 Thread Kent Fredric
commit: 7c24b11dcdaf97d0208d2d718981a09e030eae57
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 16:08:49 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c24b11d

profiles: unmask >=dev-perl/App-pwhich-1.150.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 6c35630e1a4..af301c8daef 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/App-pwhich-1.150.0
 
 # Thomas Deutschmann  (24 May 2017)
 # Broken runscript/changed behavior causing lvm2 to fail



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

2017-10-09 Thread Kent Fredric
commit: 5fe3554df03b3bce8886796c86df3f0abf2cf5a6
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:52:04 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fe3554d

profiles: unmask >=dev-perl/DateTime-Locale-1.60.0

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

diff --git a/profiles/package.mask b/profiles/package.mask
index fabd7290566..af7e67d1440 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
->=dev-perl/DateTime-Locale-1.60.0
 >=dev-perl/DateTime-TimeZone-2.20.0
 >=dev-perl/DateTime-1.370.0
 >=dev-perl/DateTime-Format-Strptime-1.710.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/App-pwhich/

2017-10-09 Thread Kent Fredric
commit: f66a7befa044d572a21b238230ce7aa06483cc67
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 16:07:30 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f66a7bef

dev-perl/App-pwhich: Drop keywords due to new dep Test2-Suite

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/App-pwhich/App-pwhich-1.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/App-pwhich/App-pwhich-1.150.0.ebuild 
b/dev-perl/App-pwhich/App-pwhich-1.150.0.ebuild
index 483071b40cb..2e810297742 100644
--- a/dev-perl/App-pwhich/App-pwhich-1.150.0.ebuild
+++ b/dev-perl/App-pwhich/App-pwhich-1.150.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Perl-only 'which'"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~sparc ~x86"
 IUSE="test"
 
 RDEPEND="



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

2017-10-09 Thread Kent Fredric
commit: 1597c15dfedbca65211d8a28a08c739c01ae0c47
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:48:38 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1597c15d

profiles: unmask dev-perl/Test2-Plugin-NoWarnings

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b50e5937c27..5a2fce9b517 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
-dev-perl/Test2-Plugin-NoWarnings
 dev-perl/Params-ValidationCompiler
 >=dev-perl/DateTime-Locale-1.60.0
 >=dev-perl/DateTime-TimeZone-2.20.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime/

2017-10-09 Thread Kent Fredric
commit: 657d090e7856e34316dd733f942ae590f36e4353
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:58:52 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657d090e

dev-perl/DateTime: Remove premature hppa keywords

this should have happened sooner when the rev-bump occurred due to
adding new, underkeyworded packages, but got missed due to package.mask

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/DateTime/DateTime-1.420.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DateTime/DateTime-1.420.0.ebuild 
b/dev-perl/DateTime/DateTime-1.420.0.ebuild
index d38d79c29e0..957b21f3fe1 100644
--- a/dev-perl/DateTime/DateTime-1.420.0.ebuild
+++ b/dev-perl/DateTime/DateTime-1.420.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A date and time object"
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~amd64 ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x86-solaris"
 IUSE="test"
 
 CONFLICTS="



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

2017-10-09 Thread Kent Fredric
commit: e351f888152414bf874bc17ba70033bade08a966
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:16:31 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e351f888

profiles: unmask dev-perl/Test2-Suite

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 1881b7cea2f..8d8c0fcbe5f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
-dev-perl/Test2-Suite
 >=dev-perl/Data-Validate-Domain-0.120.0
 dev-perl/Test2-Plugin-NoWarnings
 dev-perl/Params-ValidationCompiler



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

2017-10-09 Thread Kent Fredric
commit: 52c0a36d4922fed96cae228ae1ce714dd3276801
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Oct  5 15:49:40 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Oct 10 05:24:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52c0a36d

profiles: unmask dev-perl/Params-ValidationCompiler

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5a2fce9b517..fabd7290566 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -391,7 +391,6 @@ dev-ruby/poltergeist
 >=dev-perl/Math-BigInt-GMP-1.600.0
 =perl-core/Test-Simple-1.302.96
 =virtual/perl-Test-Simple-1.302.96
-dev-perl/Params-ValidationCompiler
 >=dev-perl/DateTime-Locale-1.60.0
 >=dev-perl/DateTime-TimeZone-2.20.0
 >=dev-perl/DateTime-1.370.0



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

2017-10-09 Thread Hans de Graaff
commit: 9a099594ee5e5ba52b2425ccf86e3c601cc5fab5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 10 04:36:24 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 10 04:36:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a099594

dev-ruby/rubygems: add 2.6.14

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/rubygems/Manifest   |   1 +
 dev-ruby/rubygems/rubygems-2.6.14.ebuild | 111 +++
 2 files changed, 112 insertions(+)

diff --git a/dev-ruby/rubygems/Manifest b/dev-ruby/rubygems/Manifest
index c23071d279d..222c6e99aee 100644
--- a/dev-ruby/rubygems/Manifest
+++ b/dev-ruby/rubygems/Manifest
@@ -1 +1,2 @@
 DIST rubygems-2.6.13.tgz 768906 SHA256 
d041502ae77e8d49e0a436483fb91f9ad6cc1489e49e0735e7c4a7cf10e728c9 SHA512 
c952b6061a9a0778db304c3aa5bea693e71ae2564abfb19f8b123eef66eb1e3877fc7c36f4f1527da97bb320870cbfd4574ac57ad88e850a44fadd67ebdac152
 WHIRLPOOL 
b03b7fcc9b4e84f1692afcc5d7111e75ade5fe777ec73f6006580e65be1f23101f0c29b9d2e9f9af5d66bb5f46ab3919cd11e37126758e9edd66609a47085739
+DIST rubygems-2.6.14.tgz 769418 SHA256 
406a45d258707f52241843e9c7902bbdcf00e7edc3e88cdb79c46659b47851ec SHA512 
7743845bc5265df3782f85a23896cbb250d8a2bbc9934a27f274b001afa7aa62f7f00f616296f74747ea612d2cb37dd7f533c931aa72550d84c64d2a73d60daf
 WHIRLPOOL 
61f64c4172d33f63a12ddcb08a331fba55d33cdee2ad75e4307d94979df46e8235b96944217f7d3316abf59b06927d12ea206d14b058f9a4993609cd912eaeb3

diff --git a/dev-ruby/rubygems/rubygems-2.6.14.ebuild 
b/dev-ruby/rubygems/rubygems-2.6.14.ebuild
new file mode 100644
index 000..6360b68c8e9
--- /dev/null
+++ b/dev-ruby/rubygems/rubygems-2.6.14.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby22 ruby23 ruby24"
+
+inherit ruby-ng prefix
+
+DESCRIPTION="Centralized Ruby extension management system"
+HOMEPAGE="https://rubygems.org/";
+LICENSE="|| ( Ruby MIT )"
+
+SRC_URI="https://rubygems.org/rubygems/${P}.tgz";
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE="server test"
+
+PDEPEND="server? ( >=dev-ruby/builder-2.1 )"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/minitest-4:0
+   dev-ruby/rdoc
+   )"
+
+all_ruby_prepare() {
+
+   mkdir -p lib/rubygems/defaults || die
+   cp "${FILESDIR}/gentoo-defaults.rb" 
lib/rubygems/defaults/operating_system.rb || die
+
+   eprefixify lib/rubygems/defaults/operating_system.rb
+
+   # Disable broken tests when changing default values:
+   sed -i -e '/test_default_path/,/^  end/ s:^:#:' 
test/rubygems/test_gem.rb || die
+
+   # Skip tests for default gems that all fail
+   sed -i -e '/test_default_gems_use_full_paths/,/^  end/ s:^:#:' 
test/rubygems/test_gem.rb || die
+   sed -i -e '/test_execute_ignore_default_gem_verbose/,/^  end/ s:^:#:' 
test/rubygems/test_gem_commands_cleanup_command.rb || die
+   sed -i -e '/test_execute_default_gem/,/^  end/ s:^:#:' 
test/rubygems/test_gem_commands_contents_command.rb 
test/rubygems/test_gem_commands_pristine_command.rb || die
+   sed -i -e '/test_execute_\(default_details\|show_default_gems\)/,/^  
end/ s:^:#:' test/rubygems/test_gem_commands_query_command.rb || die
+   sed -i -e '/test_execute_all/,/^  end/ s:^:#:' 
test/rubygems/test_gem_commands_uninstall_command.rb || die
+   sed -i -e 
'/\(test_default_gem\|test_check_executable_overwrite\|test_require_works_after_cleanup\)/,/^
  end/ s:^:#:' \
+   test/rubygems/test_{gem_installer,require}.rb || die
+   sed -i -e '/test_\(load_default_gem\|default_spec_stub\)/,/^  end/ 
s:^:#:' test/rubygems/test_gem_specification.rb || die
+   sed -i -e '/test_uninstall_default_gem/,/^  end/ s:^:#:' 
test/rubygems/test_gem_uninstaller.rb || die
+   rm -f test/rubygems/test_gem_indexer.rb || die
+   sed -i -e 
'/test_\(require_when_gem_defined\|realworld_default_gem\)/,/^  end/ s:^:#:' 
test/rubygems/test_require.rb || die
+
+   # Avoid tests playing tricks with ruby engine that don't seem to
+   # work for us.
+   rm test/rubygems/test_gem_request_set_gem_dependency_api.rb || die
+
+   # Avoid test requiring network access
+   sed -i -e '/test_download_to_cache/askip "requires network access"' 
test/rubygems/test_gem_remote_fetcher.rb || die
+}
+
+each_ruby_compile() {
+   # Not really a build but...
+   sed -i -e 's:#!.*:#!'"${RUBY}"':' bin/gem
+}
+
+each_ruby_test() {
+   # Unset RUBYOPT to avoid interferences, bug #158455 et. al.
+   #unset RUBYOPT
+
+   if [[ "${EUID}" -ne "0" ]]; then
+   RUBYLIB="$(pwd)/lib${RUBYLIB+:${RUBYLIB}}" ${RUBY} -I.:lib:test 
\
+   -e 'Dir["test/*

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

2017-10-09 Thread Hans de Graaff
commit: 1e63708940cd05e79129302cd276c34bfa4ad237
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 10 03:45:35 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 10 03:45:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e637089

dev-ruby/fakefs: add 1.11.3

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/fakefs/Manifest |  1 +
 dev-ruby/fakefs/fakefs-0.11.3.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-ruby/fakefs/Manifest b/dev-ruby/fakefs/Manifest
index 3fd475a4a86..dfb5774f2cc 100644
--- a/dev-ruby/fakefs/Manifest
+++ b/dev-ruby/fakefs/Manifest
@@ -1,5 +1,6 @@
 DIST fakefs-0.11.0.tar.gz 44675 SHA256 
43053f3997afe9ed909e1e24e044bd6ce8db153d830847042bf8fd1cf6ce0eb3 SHA512 
8d3347e7d2f088eba75a67c61b029a8eb40a14a553824c74d0af1f22211daed3502d7e31676cad90c436cbece17f5d3ee7522bc4ede9578d3ee5ab24ca02b4c5
 WHIRLPOOL 
11d084e4308ecefa446fe640a8e6ec5a4a5787d33fbe84ced312773ef9e25ab145a3ea25657a2c45622beb85f28dbf370970152be09cc02d6ee70e7ddc36ad01
 DIST fakefs-0.11.1.tar.gz 44692 SHA256 
9436542d5d5d8ced67a84e459d7efd0ba3557fb2c8e61c50ee099eff9a338e31 SHA512 
068137085a400f4a66394910e04434b9ed8bc317dcbe9d0b3d4d3034d11652771fc0fa7f48ff8e791fa2e33b9221b9d6dd8dd73c7c493b884dbe4f4a98f58722
 WHIRLPOOL 
d598cc913a4a532aad8f465e02ae2e895f6a5060b81bcb743c683f0c9d8f3b41745a0e5486a2669794c05b4f43ab604f00cdca94e902a1e4291084a65bf759d0
 DIST fakefs-0.11.2.tar.gz 44830 SHA256 
c936930397a3b307b549d86e3adde1ad9ccd50d776f3e88dff70828270dd2084 SHA512 
a381f895d1dc38258c4a4d6bd804d0d9b483211534ce9e63929106256c9d93cd26b9b91e77a8bc5b9d185ce8ead89639fae744745bc1100a431d5cacd799c1ee
 WHIRLPOOL 
0b11d2d0ddf510eda6931c670c8c522434a58d26806108d53c216b9b5bc080552675a0c234e66c088f7087f96c3119fb6b13a278ac555304a87863fc5869c1e2
+DIST fakefs-0.11.3.tar.gz 44888 SHA256 
ea318ec5ebaf1c22e9c0432ebd82b9ea195bf0aaa61fc9c63d0202c4f3417f2d SHA512 
9c9e18337d3c461fe4b5a4e6ede17cd840959147e66a57eb61fa203d8ba95d5655885d3e5b776ecb3a1cee93488dc711d1b2bd28df23bc131195e311229c329d
 WHIRLPOOL 
4b0a6e78f8713cf6b3767cf0b34468c80f384e3c5ad2f5cfc8652fa12c1eae4de9add4420f508baad18564e0303977b92afa99bb6bcbefc4dc3b5c0aa8692320
 DIST fakefs-0.6.0.gem 41984 SHA256 
43a668e9a436654d66eff7e896793800b4b8d87c3ecd5a6a84e23fb52580150e SHA512 
8c0eac75103e1917551e2f5e74a5324d5a606e7692a8e4c49c9b97e2b5005bd381073a5780a8e6d1fb661a1bb4a67e56c29ce98cd2e2e62cce22602c30e4225f
 WHIRLPOOL 
c1a520c9cf3913e727ef570367d238e2ec88eb8d41789d1d33e9227a5a5dd9c62f4a462374066e1e5b5c5ac8bb0f738e6513b4d4182c20969178a82f90aa2739
 DIST fakefs-0.9.2.tar.gz 42792 SHA256 
ee101189b93b96ef6980d10e6320294641488691e4ab9b6057169f3fd1fc43fa SHA512 
ba68f9d240d54379ba8b16dcb3e375b586c50f78a081a916151d21af2d6d8b61471fdc842ad91d1390e8dcf54b0744e95ba4794a5ebc915858886ec47f9dbb8a
 WHIRLPOOL 
60362f90e57abee6bfa6b8ecc833b6ff62558b7b14efe8f0c084b244e961511c839446f1f16bc7b1c1361c8cdc5031993083cac4a9aab6ed081f8fea5e6275be

diff --git a/dev-ruby/fakefs/fakefs-0.11.3.ebuild 
b/dev-ruby/fakefs/fakefs-0.11.3.ebuild
new file mode 100644
index 000..e036c20920e
--- /dev/null
+++ b/dev-ruby/fakefs/fakefs-0.11.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="none"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.md"
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="A fake filesystem. Use it in your tests"
+HOMEPAGE="https://github.com/defunkt/fakefs";
+SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/rspec-3.1:3
+   >=dev-ruby/minitest-5.5
+   )"
+
+all_ruby_prepare() {
+   # Remove bundler
+   rm Gemfile || die
+
+   # Avoid unneeded minitest-rg dependency.
+   sed -i -e '1igem "minitest", "~>5.5"' \
+   -e '/bundler/ s:^:#:' \
+   -e '/minitest\/rg/ s:^:#:' test/test_helper.rb || die
+}
+
+each_ruby_test() {
+   RSPEC_VERSION=3 ruby-ng_rspec
+   ${RUBY} -Ilib:.:test -e 'Dir["test/**/*_test.rb"].each{|f| require f}' 
|| die
+}



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

2017-10-09 Thread Hans de Graaff
commit: d7a0498a12491f2e0e76b31425a9565bd7a95b84
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 10 03:43:35 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 10 03:43:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7a0498a

dev-ruby/erubi: add 1.7.0

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/erubi/Manifest   |  1 +
 dev-ruby/erubi/erubi-1.7.0.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ruby/erubi/Manifest b/dev-ruby/erubi/Manifest
index ab2c5d1f30b..49351ff3db9 100644
--- a/dev-ruby/erubi/Manifest
+++ b/dev-ruby/erubi/Manifest
@@ -1,2 +1,3 @@
 DIST erubi-1.6.0.gem 12288 SHA256 
3d5c1d19390f201a209e5d01a3c41bee253c0b0afa508ee872b979ee3c778a0f SHA512 
33da5ab621f505aaa2203e156f7071400a516cff845c405eb30f2fdd2d1ffad2109ff369a878bfb701e884de54d9b4b5ee13d4fb65d822ad35d4c0d192709f8c
 WHIRLPOOL 
b78471e1531414971364bcb30976bd3994f16577e47056824b4c0c7f933d6d4bf141b76a263a69fa8dad99b9b782f65a92e198ffc7ae50f787e51feaf30cad9c
 DIST erubi-1.6.1.gem 12288 SHA256 
168a4585ed5fe5ff2aad064c9bc1f0e5ba22d5297fb2937583053a2a9799bfea SHA512 
a7aec32c676a13b93f7e186844bfecb5217dc8051fad3702b0b7f7e3df0b7c04a0f11d98047ae9bc211443ef92c040de5e8a262662a4a311efd9b5ba3dda0077
 WHIRLPOOL 
6edb167c87f21a6af77a63302f6b3d583e0b2cf0e309f96591901a898cb9dfd2d27f2475904831ceca4cf3e552f92ea344328695c8176df5e862c12140269318
+DIST erubi-1.7.0.gem 12800 SHA256 
e921f78547824cc1de0a55bc99a641bd695d474b8723e5c4fa8a84fdd1c26afe SHA512 
1494c28aebab08a82dffac7b340ff6e16edc8a3731f69ec568bec6cb0bda4a334f94033f43416812cd00b0c99dc98458867d963bef34796ebbdb11ea65dd8c1b
 WHIRLPOOL 
3712dac364e80ef48dfdc5059182af4bbe13ea8cf8827a7ae5730c1fe54c4fec2da6a1047ab0e0c73833769521b6083b5fb630f20e05fbf2a7e3e9e76768c794

diff --git a/dev-ruby/erubi/erubi-1.7.0.ebuild 
b/dev-ruby/erubi/erubi-1.7.0.ebuild
new file mode 100644
index 000..8c26ac854d5
--- /dev/null
+++ b/dev-ruby/erubi/erubi-1.7.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_TASK_TEST="spec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="a ERB template engine for ruby; a simplified fork of Erubis"
+HOMEPAGE="https://github.com/jeremyevans/erubi";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/minitest )"



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

2017-10-09 Thread Hans de Graaff
commit: 190b988c3ad335063d1766655c0e8aef2c83e53b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 10 03:47:00 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 10 03:47:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=190b988c

dev-ruby/fakefs: move ~sparc keyword forward

Package-Manager: Portage-2.3.8, Repoman-2.3.3

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

diff --git a/dev-ruby/fakefs/fakefs-0.11.3.ebuild 
b/dev-ruby/fakefs/fakefs-0.11.3.ebuild
index e036c20920e..a32327ea332 100644
--- a/dev-ruby/fakefs/fakefs-0.11.3.ebuild
+++ b/dev-ruby/fakefs/fakefs-0.11.3.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/defunkt/fakefs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "



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

2017-10-09 Thread Hans de Graaff
commit: 69de56808372fe04e3058d90faaa27058312473e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 10 04:24:19 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 10 04:24:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69de5680

dev-ruby/airbrussh: initial import of 1.3.0

New dependency for dev-ruby/capistrano

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-ruby/airbrussh/Manifest   |  1 +
 dev-ruby/airbrussh/airbrussh-1.3.0.ebuild | 34 +++
 dev-ruby/airbrussh/metadata.xml   | 12 +++
 3 files changed, 47 insertions(+)

diff --git a/dev-ruby/airbrussh/Manifest b/dev-ruby/airbrussh/Manifest
new file mode 100644
index 000..daecd43a861
--- /dev/null
+++ b/dev-ruby/airbrussh/Manifest
@@ -0,0 +1 @@
+DIST airbrussh-1.3.0.tar.gz 1451304 SHA256 
faf0e64b17d68082a345390bf36864e3420f27169dfb0e90c885f30a0ed34b9b SHA512 
e7c22f21673f11b124ac0082cfec19dc12764f52058857248619bf41841e6b10b2c402d9c17a2db76b459ec5cd1f464d2c2ef78fcf0a202ea2287653980bf10b
 WHIRLPOOL 
f6729fb77baf7022835eda2becb1c309d83fe9b125aab5169fd5058c34071f35bf1e53ef6cd307670d2eb9fc324326e41bf123ee324f045dc58f06c8b5cc7302

diff --git a/dev-ruby/airbrussh/airbrussh-1.3.0.ebuild 
b/dev-ruby/airbrussh/airbrussh-1.3.0.ebuild
new file mode 100644
index 000..85dd8ca59c5
--- /dev/null
+++ b/dev-ruby/airbrussh/airbrussh-1.3.0.ebuild
@@ -0,0 +1,34 @@
+# 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_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="A replacement log formatter for SSHKit"
+HOMEPAGE="https://github.com/mattbrictson/airbrussh";
+SRC_URI="https://github.com/mattbrictson/airbrussh/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="1"
+KEYWORDS="~amd64"
+IUSE=""
+
+# Tests appear to be incompatible with recent minitest and mocha leading to 
errors on the use of stubs.
+RESTRICT="test"
+
+ruby_add_rdepend ">dev-ruby/sshkit-1.7.0"
+
+ruby_add_bdepend "test? ( dev-ruby/mocha )"
+
+all_ruby_prepare() {
+   rm -f test/support/minitest_reporters.rb || die
+
+   # Avoid a test poluting the environment
+   sed -i -e '/test_color_is_can_be_forced_via_env/,/^  end/ s:^:#:' 
test/airbrussh/console_test.rb || die
+}

diff --git a/dev-ruby/airbrussh/metadata.xml b/dev-ruby/airbrussh/metadata.xml
new file mode 100644
index 000..7ce59145bbd
--- /dev/null
+++ b/dev-ruby/airbrussh/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+   r...@gentoo.org
+   Gentoo Ruby Project
+
+
+Capistrano is a utility and framework for executing commands in parallel on
+multiple remote machines, via SSH.
+
+



[gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs/, sys-kernel/spl/, sys-fs/zfs-kmod/

2017-10-09 Thread Jonathan Vasquez
commit: a5b537e84e34da9af374ef4b8b580f3d41af17d8
Author: Jonathan Vasquez  gentoo  org>
AuthorDate: Tue Oct 10 01:49:42 2017 +
Commit: Jonathan Vasquez  gentoo  org>
CommitDate: Tue Oct 10 01:51:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b537e8

sys-fs/[zfs|-kmod], sys-kernel/spl: version bump to 0.7.2

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 sys-fs/zfs-kmod/Manifest  |   1 +
 sys-fs/zfs-kmod/zfs-kmod-0.7.2.ebuild | 144 
 sys-fs/zfs/Manifest   |   1 +
 sys-fs/zfs/zfs-0.7.2.ebuild   | 201 ++
 sys-kernel/spl/Manifest   |   1 +
 sys-kernel/spl/spl-0.7.2.ebuild   | 110 +++
 6 files changed, 458 insertions(+)

diff --git a/sys-fs/zfs-kmod/Manifest b/sys-fs/zfs-kmod/Manifest
index c5982be2729..fab0133ed82 100644
--- a/sys-fs/zfs-kmod/Manifest
+++ b/sys-fs/zfs-kmod/Manifest
@@ -19,4 +19,5 @@ DIST zfs-0.6.5.9.tar.gz 2610650 SHA256 
b724b57dbddae59246fdc15f88f1224061c712945
 DIST zfs-0.6.5.tar.gz 1816180 SHA256 
542121940122c922c9d21a2bb39bca4e4a9db2f6bbfd2e576630840e256d4c82 SHA512 
58480ee9b0780f1f21d12504abc226be3e6df1939214f6a8f245315d1fa0b9da56b3a744df26426ee78f13684a4ca288df6dddc50f8f91d9d0b4c542980a9c53
 WHIRLPOOL 
fdb5580ec8d4abe57069ce453c1d91225019758ecf5d31856a7897ac7e4b51c6a8ae3258e822f684fbd70a0a7d7410c65c37a569f37d132767522118c587cc24
 DIST zfs-0.7.0.tar.gz 6714094 SHA256 
6907524f5ca4149b799fe65cd31b552b0ae90dba5dc20524e1a24fc708d807d2 SHA512 
6e6cbf54399fc85b74b76a6ceb3f30e94903f755fe6386fccc56b5e6d307a907759e4b62acec5d32e8383ef1083423eaff8dee2b0ef01a99459171a42b47d217
 WHIRLPOOL 
74687be4220bab51f18fdd3c047400c4261acf16f38086c2485f5cb9d79af87f5adfafced92860b021814aece7446cb18e9ca310a363b90c6bac39343b72a4b6
 DIST zfs-0.7.1.tar.gz 6376234 SHA256 
231b104979ddacfeb1889e1dec175337276e7b3b109d40656089744b5caf3ef6 SHA512 
64b0a3b5eeaf09ce824e3e029880a8e5dcb3e4567d1fb2fa24c89d8e55fee1ebe2d2f3a9f77d5468cc5637074e27d5ba7696b566829c93fd69c610b288200a37
 WHIRLPOOL 
700c83aadca96578ae8d6a9795f91c0c25b69afcc6ec6c02141daafcbcd550ae413438e96c4821c5c90816e0e29366ecfc3e7289623f14c255722c37d9f9a7f6
+DIST zfs-0.7.2.tar.gz 6389699 SHA256 
f75f4d8bbb8241e3d06321b53914e53fa22d1ccc8be89819b578b46e5d3e5cf4 SHA512 
fd10350b3ba5906b8d4968cee4f9febcc475b49e7d5499209566f7cfa39f29c4c2c1a4bae0698ce98244fa66657e7956a8c170de1e5f13b1bc05d2861d2c7722
 WHIRLPOOL 
b1e270bddf9d34a6d60a9f3d80f767d6a19a7c2ae5b51d3fe83fb28432e267d494cd5b4f003b6049a074e8bf65fa9179793dec0b40f366cea493f7993dd3d19d
 DIST zfs-kmod-0.6.2-p2.tar.xz 28636 SHA256 
12882463a38a5a57cf2bb3c14c5783f9511f6dc7b163a47575f2f3dcc24f26f6 SHA512 
5792660ae8f5013d12e70d608e9cffa92a8c4089a88a5e78728ee88204b3f970d452d5b0b3874e02be49ebbc139e07139be7b5a86ca40bc8b23cb11a7198a9a8
 WHIRLPOOL 
0e4c57b363cdd3d736efbd1355567b18e22439bd3b20ef40b27f6b97ad4570c7cc99a11b196ac25359d1966c1a70e178f4fd1687b60450f148ccda47b07282a9

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.7.2.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.7.2.ebuild
new file mode 100644
index 000..6de1cb67ef1
--- /dev/null
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.7.2.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+if [ ${PV} == "" ]; then
+   AUTOTOOLS_AUTORECONF="1"
+   EGIT_REPO_URI="https://github.com/zfsonlinux/zfs.git";
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/zfsonlinux/zfs/releases/download/zfs-${PV}/zfs-${PV}.tar.gz";
+   S="${WORKDIR}/zfs-${PV}"
+   KEYWORDS=" ~amd64"
+fi
+
+inherit flag-o-matic linux-info linux-mod toolchain-funcs autotools-utils
+
+DESCRIPTION="Linux ZFS kernel module for sys-fs/zfs"
+HOMEPAGE="http://zfsonlinux.org/";
+
+LICENSE="CDDL debug? ( GPL-2+ )"
+SLOT="0"
+IUSE="custom-cflags debug +rootfs"
+RESTRICT="debug? ( strip ) test"
+
+DEPEND="
+   =sys-kernel/spl-${PV}*
+   dev-lang/perl
+   virtual/awk
+"
+
+RDEPEND="${DEPEND}
+   !sys-fs/zfs-fuse
+"
+
+AT_M4DIR="config"
+AUTOTOOLS_IN_SOURCE_BUILD="1"
+
+DOCS=( AUTHORS COPYRIGHT DISCLAIMER README.markdown )
+
+pkg_setup() {
+   linux-info_pkg_setup
+   CONFIG_CHECK="!DEBUG_LOCK_ALLOC
+   EFI_PARTITION
+   IOSCHED_NOOP
+   MODULES
+   !PAX_KERNEXEC_PLUGIN_METHOD_OR
+   ZLIB_DEFLATE
+   ZLIB_INFLATE
+   "
+
+   use debug && CONFIG_CHECK="${CONFIG_CHECK}
+   FRAME_POINTER
+   DEBUG_INFO
+   !DEBUG_INFO_REDUCED
+   "
+
+   use rootfs && \
+   CONFIG_CHECK="${CONFIG_CHECK}
+   BLK_DEV_INITRD
+   DEVTMPFS
+   "
+
+   kernel_is ge 2 6 32 || die "Linux 2.6.32 or newer required"
+
+   [ ${PV} != "" ] && \
+   { kernel_is le 4 13 || die "Linux 4.13 is the latest supported 
version."; }
+
+   check_extra_config
+}

[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: e095d2981c78818d5c7eaf7d583bc278427477f7
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:50:14 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:50:14 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=e095d298

fix patch

 app-text/presage/Manifest| 2 +-
 app-text/presage/files/presage-0.8.9-automagic.patch | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index d82214d..f7aaccf 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.9-automagic.patch 4396 SHA256 
249b6aee1e6bee7814345cfe5f10804c5e307f6f97714d6c6f1a86764651f1da SHA512 
aa9d5dfc21c96d39b15aaa5262fc0d00f9bd3ab08387c9357a0eb265226fa8781742e97b163711b3c2907b44ae675a0f03ae638f0b3fde9a3c8274226d6fa2ec
 WHIRLPOOL 
4df12ea69f95a5871aeb4b8706a94b1c986726cec9a34ff87ec45ee378a055c8ccd8020aba252fb27533377fd7ef6e224f6d6aea468c1383904e321733d73d2a
+AUX presage-0.8.9-automagic.patch 4344 SHA256 
01108beee4b326604bb07a86b686caa3633d039aee4c23ec229f245ac86b7730 SHA512 
02e2d7f47e8f7eda0dce2c8f3911bd93a2372a2f4761f84201399cf103927a9c1cc9f7a408ec64e415c221fb3915ba1f8c2d045f6f99ee9af64abfe8adfc756d
 WHIRLPOOL 
b6f47942cc1732aee0cbe4229d96bd4b7bf2c4be4a0591f46d207bbc922a07d9223203520518d9c6a4361064ec33f797eece79bc121239c1a994fedf9b62a5b5
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
ba32954e5bd98bbce17f0af5ea3f3453b483a148021cefaf172ad20e362d3203 SHA512 
5a7c72bcf3eddae357e6360cab98b400540d4674293229963575d837a03f9ed5cd924206424406dc2e47c6fb8b23168fccea525ebfc963547071f42541a5cdbd
 WHIRLPOOL 
0545a601864581de0ccd61cfa11de0d2b53e685e0f50ad106a4db9187d949181cd2d58a63fd1e7ac07a68253c803292fac86f88a391c378ab724d006215301e8

diff --git a/app-text/presage/files/presage-0.8.9-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
index a4cc65f..dcaf379 100644
--- a/app-text/presage/files/presage-0.8.9-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -113,8 +113,8 @@
  dnl ==
 +
  have_dbus_python=no
- AC_MSG_CHECKING(for python dbus module)
- $PYTHON -c "import dbus" 2&>/dev/null
+if test "$PYTHON" != :
+then
 @@ -275,7 +299,7 @@
 fi
 AC_MSG_RESULT($have_dbus_python)



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: 8ff6d62616dcc80666a33d05c1f836f68763f99a
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:42:46 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:42:46 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=8ff6d626

update patch

 app-text/presage/Manifest| 2 +-
 app-text/presage/files/presage-0.8.9-automagic.patch | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index 4754c73..d82214d 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.9-automagic.patch 4394 SHA256 
2a8fdb54c6042e5bdaa21d2fda30fcf864ff6a7478a20b90f32d585207ef9868 SHA512 
2154bb8c0086a66f89610cb78364e15da65eeef7fc4660daa9149485baae675a43f5709232341a16e62b6a729a736ad9362e5f89d819532734df9336726e38b3
 WHIRLPOOL 
1e1d0b0103e01428f1c3e91c5337b7e2155672aaa6b9f94278fbbc5e105faaa1eddc7eee1d4898a22036f2c870b44a363e81fd1ed7cec9e3d4798410b4e880c3
+AUX presage-0.8.9-automagic.patch 4396 SHA256 
249b6aee1e6bee7814345cfe5f10804c5e307f6f97714d6c6f1a86764651f1da SHA512 
aa9d5dfc21c96d39b15aaa5262fc0d00f9bd3ab08387c9357a0eb265226fa8781742e97b163711b3c2907b44ae675a0f03ae638f0b3fde9a3c8274226d6fa2ec
 WHIRLPOOL 
4df12ea69f95a5871aeb4b8706a94b1c986726cec9a34ff87ec45ee378a055c8ccd8020aba252fb27533377fd7ef6e224f6d6aea468c1383904e321733d73d2a
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
ba32954e5bd98bbce17f0af5ea3f3453b483a148021cefaf172ad20e362d3203 SHA512 
5a7c72bcf3eddae357e6360cab98b400540d4674293229963575d837a03f9ed5cd924206424406dc2e47c6fb8b23168fccea525ebfc963547071f42541a5cdbd
 WHIRLPOOL 
0545a601864581de0ccd61cfa11de0d2b53e685e0f50ad106a4db9187d949181cd2d58a63fd1e7ac07a68253c803292fac86f88a391c378ab724d006215301e8

diff --git a/app-text/presage/files/presage-0.8.9-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
index 127cc19..a4cc65f 100644
--- a/app-text/presage/files/presage-0.8.9-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -116,8 +116,8 @@
  AC_MSG_CHECKING(for python dbus module)
  $PYTHON -c "import dbus" 2&>/dev/null
 @@ -275,7 +299,7 @@
-   fi
-   AC_MSG_RESULT($have_dbus_python)
+fi
+AC_MSG_RESULT($have_dbus_python)
 fi
 -AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes"])
 +AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes" -a 
"x$enable_python" = "xyes"])



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/

2017-10-09 Thread Philip Miess
commit: 3aa3b6de3c5d6522824319e03267a16c00d6b301
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:38:16 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:38:16 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=3aa3b6de

update manifest

 app-text/presage/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index ce3bc70..4754c73 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.9-automagic.patch 4418 SHA256 
f3b50e67b664af763bffaf36e945ec30db4a8c8d0f4b0d12d7b8b2b3c576dafd SHA512 
d44c0b5f11a86266a6ca6ee572bfdfa5e14b865abe7bf85164d419910a3b075ceaaeb1c172dee6fd37847eada6ce5846fd32163424b984e17eeefc22f07dec44
 WHIRLPOOL 
436778ba58f2c83fb71438129cd61559d34cc0f454e278f69ef1360f353cf7874b0fb943a2464350f0456c6ac979916f2fcb730bdaecf1db2c5763d2bf47d356
+AUX presage-0.8.9-automagic.patch 4394 SHA256 
2a8fdb54c6042e5bdaa21d2fda30fcf864ff6a7478a20b90f32d585207ef9868 SHA512 
2154bb8c0086a66f89610cb78364e15da65eeef7fc4660daa9149485baae675a43f5709232341a16e62b6a729a736ad9362e5f89d819532734df9336726e38b3
 WHIRLPOOL 
1e1d0b0103e01428f1c3e91c5337b7e2155672aaa6b9f94278fbbc5e105faaa1eddc7eee1d4898a22036f2c870b44a363e81fd1ed7cec9e3d4798410b4e880c3
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
ba32954e5bd98bbce17f0af5ea3f3453b483a148021cefaf172ad20e362d3203 SHA512 
5a7c72bcf3eddae357e6360cab98b400540d4674293229963575d837a03f9ed5cd924206424406dc2e47c6fb8b23168fccea525ebfc963547071f42541a5cdbd
 WHIRLPOOL 
0545a601864581de0ccd61cfa11de0d2b53e685e0f50ad106a4db9187d949181cd2d58a63fd1e7ac07a68253c803292fac86f88a391c378ab724d006215301e8



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: 5bc0d291f4c0a4eb57bcdb11904b49db9ffb8bc9
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:37:24 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:37:24 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=5bc0d291

modify patch

 app-text/presage/files/presage-0.8.9-automagic.patch | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-text/presage/files/presage-0.8.9-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
index ac7f503..127cc19 100644
--- a/app-text/presage/files/presage-0.8.9-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -116,7 +116,6 @@
  AC_MSG_CHECKING(for python dbus module)
  $PYTHON -c "import dbus" 2&>/dev/null
 @@ -275,7 +299,7 @@
-   have_dbus_python=no
fi
AC_MSG_RESULT($have_dbus_python)
 fi



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/

2017-10-09 Thread Philip Miess
commit: 33ee97054d52282b73565939c5a5258369c802cb
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:34:36 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:34:36 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=33ee9705

reference new patch file

 app-text/presage/Manifest | 2 +-
 app-text/presage/presage-0.8.9.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index 499697a..ce3bc70 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
 AUX presage-0.8.9-automagic.patch 4418 SHA256 
f3b50e67b664af763bffaf36e945ec30db4a8c8d0f4b0d12d7b8b2b3c576dafd SHA512 
d44c0b5f11a86266a6ca6ee572bfdfa5e14b865abe7bf85164d419910a3b075ceaaeb1c172dee6fd37847eada6ce5846fd32163424b984e17eeefc22f07dec44
 WHIRLPOOL 
436778ba58f2c83fb71438129cd61559d34cc0f454e278f69ef1360f353cf7874b0fb943a2464350f0456c6ac979916f2fcb730bdaecf1db2c5763d2bf47d356
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
-EBUILD presage-0.8.9.ebuild 1086 SHA256 
d20d982a6fd1f089fae2b4bef549c8a75ba14fe16e44ccfe54ea55ac06dd63b5 SHA512 
a94a98f9405fed474d36ea22733da99011846a68c6a698a5df0d7eedfe5f465f782d90e562623a2b1b9f301590eba015292397b5faf8cd314b2ec5943e93445b
 WHIRLPOOL 
3e968a2dc84b46580892a3617381209ca3d74d8d660b25cb87c2db282aee2e8f3e4faed75f3cbaf7b2b2046bb87e0b547eeb459ed689c30ffc5764be6fdbb27c
+EBUILD presage-0.8.9.ebuild 1086 SHA256 
ba32954e5bd98bbce17f0af5ea3f3453b483a148021cefaf172ad20e362d3203 SHA512 
5a7c72bcf3eddae357e6360cab98b400540d4674293229963575d837a03f9ed5cd924206424406dc2e47c6fb8b23168fccea525ebfc963547071f42541a5cdbd
 WHIRLPOOL 
0545a601864581de0ccd61cfa11de0d2b53e685e0f50ad106a4db9187d949181cd2d58a63fd1e7ac07a68253c803292fac86f88a391c378ab724d006215301e8

diff --git a/app-text/presage/presage-0.8.9.ebuild 
b/app-text/presage/presage-0.8.9.ebuild
index 5e2ea10..2239942 100644
--- a/app-text/presage/presage-0.8.9.ebuild
+++ b/app-text/presage/presage-0.8.9.ebuild
@@ -30,7 +30,7 @@ DEPEND="${COMMON_DEPEND}
 "
 
 src_prepare() {
-   epatch "${FILESDIR}/${PN}-0.8.8-automagic.patch"
+   epatch "${FILESDIR}/${PN}-0.8.9-automagic.patch"
eautoreconf
 }
 



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/, app-text/presage/files/

2017-10-09 Thread Philip Miess
commit: ad01aa4c15f743d582e877de42d48600cf189589
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 01:31:58 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 01:31:58 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=ad01aa4c

modify patch file

 app-text/presage/Manifest   |  2 +-
 8-automagic.patch => presage-0.8.9-automagic.patch} | 17 +
 2 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index 1eb7d53..499697a 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,3 +1,3 @@
-AUX presage-0.8.8-automagic.patch 4399 SHA256 
1ae5e85214dc400189cbb07ab4b34c16e778f6942fcea129fdb5397b5c5743ad SHA512 
622883949554935c3fd12a08b1e117121ae38e5f958b4847eb83b29352df9831f4397a518372829be881bd0157a8e03fc1744e5e0585072869518e64a186bad5
 WHIRLPOOL 
bdb531a6a66fc617d0e7ac73fb92979539d4cd134cd1ac9c3116473d0f2a6cdf39b0300e02f8974c24b708335952d4aaf669a32eee6b0c44c51c0fc872b86695
+AUX presage-0.8.9-automagic.patch 4418 SHA256 
f3b50e67b664af763bffaf36e945ec30db4a8c8d0f4b0d12d7b8b2b3c576dafd SHA512 
d44c0b5f11a86266a6ca6ee572bfdfa5e14b865abe7bf85164d419910a3b075ceaaeb1c172dee6fd37847eada6ce5846fd32163424b984e17eeefc22f07dec44
 WHIRLPOOL 
436778ba58f2c83fb71438129cd61559d34cc0f454e278f69ef1360f353cf7874b0fb943a2464350f0456c6ac979916f2fcb730bdaecf1db2c5763d2bf47d356
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
d20d982a6fd1f089fae2b4bef549c8a75ba14fe16e44ccfe54ea55ac06dd63b5 SHA512 
a94a98f9405fed474d36ea22733da99011846a68c6a698a5df0d7eedfe5f465f782d90e562623a2b1b9f301590eba015292397b5faf8cd314b2ec5943e93445b
 WHIRLPOOL 
3e968a2dc84b46580892a3617381209ca3d74d8d660b25cb87c2db282aee2e8f3e4faed75f3cbaf7b2b2046bb87e0b547eeb459ed689c30ffc5764be6fdbb27c

diff --git a/app-text/presage/files/presage-0.8.8-automagic.patch 
b/app-text/presage/files/presage-0.8.9-automagic.patch
similarity index 91%
rename from app-text/presage/files/presage-0.8.8-automagic.patch
rename to app-text/presage/files/presage-0.8.9-automagic.patch
index dfb454b..ac7f503 100644
--- a/app-text/presage/files/presage-0.8.8-automagic.patch
+++ b/app-text/presage/files/presage-0.8.9-automagic.patch
@@ -3,7 +3,7 @@
 @@ -23,7 +23,7 @@
  
  
- AC_INIT([presage],[0.8.8],[matteo.vesc...@yahoo.co.uk])
+ AC_INIT([presage],[0.8.9],[matteo.vesc...@yahoo.co.uk])
 -AM_INIT_AUTOMAKE([-Wall -Werror])
 +AM_INIT_AUTOMAKE([-Wall])
  
@@ -98,12 +98,12 @@
  AM_PATH_PYTHON([2.0],
 [],
 [AC_MSG_WARN([Python not found. Python is required to build 
presage python binding. Python can be obtained from http://www.python.org])])
-@@ -238,7 +264,7 @@
+@@ -239,7 +264,7 @@
   [AC_MSG_WARN([Python.h header file not found. Python 
development files are required to build presage python binding. Python can be 
obtained from http://www.python.org])],
   [])
  fi
--AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" -a "x$have_python_header" = 
"xtrue"])
-+AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" -a "x$have_python_header" = 
"xtrue" -a "x$enable_python" = "xyes"])
+-AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : -a "x$have_python_header" 
= "xtrue"])
++AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : -a "x$have_python_header" 
= "xtrue" -a "x$enable_python" = "xyes"])
  
  
  AC_ARG_ENABLE([python-binding],
@@ -115,10 +115,11 @@
  have_dbus_python=no
  AC_MSG_CHECKING(for python dbus module)
  $PYTHON -c "import dbus" 2&>/dev/null
-@@ -272,7 +299,7 @@
-   have_dbus_python=no
- fi
- AC_MSG_RESULT($have_dbus_python)
+@@ -275,7 +299,7 @@
+   have_dbus_python=no
+   fi
+   AC_MSG_RESULT($have_dbus_python)
+fi
 -AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes"])
 +AM_CONDITIONAL([HAVE_DBUS_PYTHON], [test "x$have_dbus_python" = "xyes" -a 
"x$enable_python" = "xyes"])
  



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

2017-10-09 Thread Ian Stakenvicius
commit: c9189e4f4948cd36c718d12cc9a3b8aab621facb
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Tue Oct 10 01:15:56 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Tue Oct 10 01:20:47 2017 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=c9189e4f

seamonkey: bump to 2.49 built from comm-esr52.4.0

There is an upstream release candidate 2.49.1 (build2) that is checked out
from the same upstream codebase; this package uses the officially released
thunderbird tarball instead but leverages the localization files from the
release candidate.

This ebuild may go away in favour of a direct ebuild to upstream's 2.49.1
if upstream releases it in a timely fashion (at present the release is
waiting on build issues of non-linux platforms).

 www-client/seamonkey/Manifest |  19 +
 www-client/seamonkey/seamonkey-2.49.4.0_p0.ebuild | 445 ++
 2 files changed, 464 insertions(+)

diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest
index 3d61320..de9e76f 100644
--- a/www-client/seamonkey/Manifest
+++ b/www-client/seamonkey/Manifest
@@ -23,4 +23,23 @@ DIST seamonkey-2.48-zh-CN.xpi 934871 SHA256 
991629043056dd722202116ef026aeb86a86
 DIST seamonkey-2.48-zh-TW.xpi 991735 SHA256 
bb41ee50948baca9e78ae1ba0174046bde21d7bb823c6b365e32d7a8c6a9c50f SHA512 
d14be0b9da910e3c7014c4ac9e6fc8270eb43176623280c55eec9e63c5fd0ce9b83db781cdbcd1eae67281fd09ad6dc2218df479e66076878c6bda12c2f2eeb3
 WHIRLPOOL 
cc9bda10829ad4149e28b82f59580bc5d2a8d91c00c0e153bdb130be60e57f155df72929029f92c61ef444b5cea48bb47e10aa48615af4686e2dfc8370565c09
 DIST seamonkey-2.48.source.tar.xz 220412744 SHA256 
6f9a07c86ba6474b44e5083f9d1315d01778c097937f7da4c5701debffab2631 SHA512 
b1992a1dbaeb045aea10ff02aa214ec0c1725e3ad0844d2dffd1c0d0c26754fbd98b5fb5df25a2a490ebcb7a47037c61599b0a2e9240338b4e769e529faa33cf
 WHIRLPOOL 
ab0a2ee21efb8d446283ae1df6b2af8fe318fe5dbb41563c140f13f59780c8f252028019d9c181e0b0369201808dfe306058ac6fb5d7207cfbc241ba098ab7a6
 DIST seamonkey-2.49-l10n-sources-20170727.tar.xz 13871252 SHA256 
73ad2bb8f1a48d9250d5825c318672e380f534672a9ae42dd7e4ea0506aff0e6 SHA512 
6d5938ad16db53629a2e46a81a67827fafd33a00ff71ff6aaeb3151c2c29ae0e59b2f5e35f7d54b1a23882b7b85467202f62653510405fa1dac2ea4180130721
 WHIRLPOOL 
4e6960b0d065b60142baab1af37b5baed5bc3cddef79b12c689fe735bc4dea969e09756c09da22520600835a42df9f04f45fc8dfac7b92cc04251d403392b54a
+DIST seamonkey-2.49.4.0-cs.xpi 941974 SHA256 
3da0bd7a341a90d5d10348ea53be7ffa3935202919a6d0aea59e69593499e246 SHA512 
c3b061e0b735c6949a0ce7f8be22c7818e6bd039de5284015b0ff63b8456f18bd51db9f3a3d1f9a5df2a6d0610043ea9e33f16ccd3ba64e20ac53e901196afd3
 WHIRLPOOL 
f3dcd77632898e6f35de6101705fb5122f31cd26d76f292c8a705dbb24157915587ad9604c5dacb41282449da1a1580d09085438ce4a025bd93d85c0539d1f16
+DIST seamonkey-2.49.4.0-de.xpi 949902 SHA256 
c5d997ed331867310dbe3468a6ea14ed327681015b62d61c021b433376ec2ebd SHA512 
fb85fa867b5b9417190aa25cc678d68e3afed04bfe052896167aaf46042397da6e1bbeb70acc321f46bd0bed4f0856152d80a348b478a336d28825c4120af1c6
 WHIRLPOOL 
b024b448231390d983dc4ce7d2f55808703bbeedc322bc88586184e4039a0e8d154753bbaec57eaaa7481e047fcc48ca66b7744e6354a4b17d80767124d0dc77
+DIST seamonkey-2.49.4.0-en-GB.xpi 911789 SHA256 
6a168ce1d5e5a6d5e4036f74dada7eac91f0feef6d53165afde30c9f39de643e SHA512 
973fc7f693abe9b87bd971f79e050bd4bd9a16e4e6f6a50d9298f2c71d45aa328c4279055382b7f9bf8c807dff9c1ab8855d97dbbe3eb4d71c40ee5e3a02f3b6
 WHIRLPOOL 
b795f6a7b16ab128bfb45661d289b7bf25b58665b94e314931c6c8d98ba3d73bb5aefa3fde46c317222fbd86a39c7a1ee0a5824a53611da9895a5e7985c463a0
+DIST seamonkey-2.49.4.0-es-AR.xpi 952759 SHA256 
d34c3ab2145d0829c814ce96b51c63c30c925e5c5a84810d411777be059d2cbd SHA512 
ec198ed919079e16bf638be032cc7de165d0e9d05d0742a12828b5ad510884d4dd0da57c0cbae85b3fe0089a1be26f42c9887957ab6ecac8b8ef6cf0fbbcb345
 WHIRLPOOL 
98ffc6a013e161315c9b4e194ec548bbeac6b9bada302308a7b95a6101336939d67f30b85d15d215411f0f12392f5279c12bb982e1befcc0b34f5ce4f779c32b
+DIST seamonkey-2.49.4.0-es-ES.xpi 897737 SHA256 
7fce4de8e1160996af38838093710d9e8a6c9f16f1a05e1b76c2778586fb643f SHA512 
e9fb5834f3086ee1cf99404930149f06ee7f3f0d5796550c3368b915ed9f729dbd92032682c6273b687b6f3077a4ca3a78192e101f1276d90ebf2eb71f39f22e
 WHIRLPOOL 
4b0c55033055d3cf6e2a4898cb0bcc2b71c932a4445ae8d4b40ba157860bd2b54cddcaf73b66ce0e44cf6485c20b0951b48ad98c088b4f604f09d5c3d7097445
+DIST seamonkey-2.49.4.0-fr.xpi 969290 SHA256 
5d32cebf47cea1a6c1cf20da828c4d2f944aa8f2252231d341dd292001fbdf55 SHA512 
188f4a8c79b10f95c807a08837290fbc3245c983e6797b8f8a0beea4f4ffad915abeb942920f9986910a0530218f4e35ba16de60b4f21d33116ae16756eb4e8c
 WHIRLPOOL 
7abb0149100fdd88f8d305073e09bef9b78b577f0b2927d70c44d76ea1ea63c889fa04f7a0aa5e905a533600ff123f014afe3b9ad8e5fadae8b0548a38bcf94d
+DIST seamonkey-2.49.4.0-hu.xpi 955174 SHA256 
5795275d5eba01fe8c48af7f4f661ef5f3e7263f55029c2364a53f9288064401 SHA512 
e28beb23242a6535230df4fd1adb82e8957487179402cb82dedc2faa6464b411d22ddb2732e0490a916597301e

[gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/

2017-10-09 Thread Jonathan Vasquez
commit: ba8354ae1f7036076d0df1d78ddbc5ed94b38515
Author: Jonathan Vasquez  gentoo  org>
AuthorDate: Tue Oct 10 01:11:18 2017 +
Commit: Jonathan Vasquez  gentoo  org>
CommitDate: Tue Oct 10 01:11:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8354ae

media-tv/plex-media-server: version bump to 1.9.2

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 media-tv/plex-media-server/Manifest|   1 +
 .../plex-media-server-1.9.2.ebuild | 135 +
 2 files changed, 136 insertions(+)

diff --git a/media-tv/plex-media-server/Manifest 
b/media-tv/plex-media-server/Manifest
index 5c4106512a5..35bbfe7d615 100644
--- a/media-tv/plex-media-server/Manifest
+++ b/media-tv/plex-media-server/Manifest
@@ -1 +1,2 @@
 DIST plexmediaserver_1.8.1.4139-c789b3fbb_amd64.deb 107251412 SHA256 
30b907c94d5b76991831fd3555e4447724683c4e01617a71d39bfe5be11af126 SHA512 
17b6de15920013e74f0a634f004b9b599bebd266412f694963967c766e8879b54485a9b07178a575d246c6bc53b202e38da89e293fd7219d0cf993bf9e27afec
 WHIRLPOOL 
c907c627a8e693b5b029958e87b01b8c27e3f40ec6ddc04d9b95e67570260ac344bfad9aa35dfdd2ec13f492f7fed3817373c713b5163b7f9c22db1970b8091f
+DIST plexmediaserver_1.9.2.4285-9f65b88ae_amd64.deb 107651788 SHA256 
b6d79e40ca8e44c56a5900d41519efd6e5fbc0e194a77400922418887abe31b6 SHA512 
7703ccd91b97952f7db3ca58fb207702c1d10e0d9f7c8df82f42e4f876eb72b41f0ccdefd6aad02ad64b605e914809ff08c2982e10db0af2aa454d0a8069da5c
 WHIRLPOOL 
ab5d98ba417613d49c23543863c412897332a456790e1e27817f647cba43222f90e1d4d2a2fe2daf6d178005f788614e3e960cc7f0098f949045a9fa66c8c855

diff --git a/media-tv/plex-media-server/plex-media-server-1.9.2.ebuild 
b/media-tv/plex-media-server/plex-media-server-1.9.2.ebuild
new file mode 100644
index 000..39ca348a095
--- /dev/null
+++ b/media-tv/plex-media-server/plex-media-server-1.9.2.ebuild
@@ -0,0 +1,135 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+inherit eutils user systemd unpacker pax-utils python-single-r1
+
+MINOR_VERSION="4285-9f65b88ae"
+
+_APPNAME="plexmediaserver"
+_USERNAME="plex"
+_SHORTNAME="${_USERNAME}"
+_FULL_VERSION="${PV}.${MINOR_VERSION}"
+
+URI="https://downloads.plex.tv/plex-media-server";
+
+DESCRIPTION="A free media library that is intended for use with a plex client."
+HOMEPAGE="http://www.plex.tv/";
+SRC_URI="amd64? ( 
${URI}/${_FULL_VERSION}/plexmediaserver_${_FULL_VERSION}_amd64.deb )"
+SLOT="0"
+LICENSE="Plex"
+RESTRICT="bindist strip"
+KEYWORDS="-* ~amd64"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   sys-apps/fix-gnustack
+   dev-python/virtualenv[${PYTHON_USEDEP}]"
+
+RDEPEND="
+   net-dns/avahi
+   ${PYTHON_DEPS}"
+
+QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
+QA_PREBUILT="*"
+QA_MULTILIB_PATHS=(
+   "usr/lib/${_APPNAME}/.*"
+   "usr/lib/${_APPNAME}/Resources/Python/lib/python2.7/.*"
+)
+
+EXECSTACKED_BINS=( "${ED%/}/usr/lib/plexmediaserver/libgnsdk_dsp.so*" )
+BINS_TO_PAX_MARK=( "${ED%/}/usr/lib/plexmediaserver/Plex Script Host" )
+
+S="${WORKDIR}"
+PATCHES=( "${FILESDIR}/virtualenv_start_pms.patch" )
+
+pkg_setup() {
+   enewgroup ${_USERNAME}
+   enewuser ${_USERNAME} -1 /bin/bash /var/lib/${_APPNAME} 
"${_USERNAME},video"
+   python-single-r1_pkg_setup
+}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_install() {
+   # Move the config to the correct place
+   local CONFIG_VANILLA="/etc/default/plexmediaserver"
+   local CONFIG_PATH="/etc/${_SHORTNAME}"
+   dodir "${CONFIG_PATH}"
+   insinto "${CONFIG_PATH}"
+   doins "${CONFIG_VANILLA#/}"
+   sed -e "s#${CONFIG_VANILLA}#${CONFIG_PATH}/${_APPNAME}#g" -i 
"${S}"/usr/sbin/start_pms || die
+
+   # Remove Debian specific files
+   rm -rf "usr/share/doc" || die
+
+   # Copy main files over to image and preserve permissions so it is 
portable
+   cp -rp usr/ "${ED}" || die
+
+   # Make sure the logging directory is created
+   local LOGGING_DIR="/var/log/pms"
+   dodir "${LOGGING_DIR}"
+   chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${LOGGING_DIR}" || die
+
+   # Create default library folder with correct permissions
+   local DEFAULT_LIBRARY_DIR="/var/lib/${_APPNAME}"
+   dodir "${DEFAULT_LIBRARY_DIR}"
+   chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${DEFAULT_LIBRARY_DIR}" || 
die
+
+   # Install the OpenRC init/conf files
+   doinitd "${FILESDIR}/init.d/${PN}"
+   doconfd "${FILESDIR}/conf.d/${PN}"
+
+   _handle_multilib
+
+   # Install systemd service file
+   local INIT_NAME="${PN}.service"
+   local INIT="${FILESDIR}/systemd/${INIT_NAME}"
+   systemd_newunit "${INIT}" "${INIT_NAME}"
+
+   _remove_execstack_markings
+   _add_pax_markings
+
+   einfo "Configuring virtualenv"
+   virtualenv -v --no-pip --no-setuptools --no-wheel 
"${ED}"usr/lib/plexmedias

[gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/

2017-10-09 Thread Jonathan Vasquez
commit: cc82f8c57937001dc7099f556eea0cd9ed9d
Author: Jonathan Vasquez  gentoo  org>
AuthorDate: Tue Oct 10 01:08:45 2017 +
Commit: Jonathan Vasquez  gentoo  org>
CommitDate: Tue Oct 10 01:08:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc82f8c5

media-tv/plex-media-server: stabilizing 1.8.1, removing old versions.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 media-tv/plex-media-server/Manifest|   2 -
 .../plex-media-server-1.5.6.ebuild | 135 -
 .../plex-media-server-1.7.5.ebuild | 135 -
 .../plex-media-server-1.8.1.ebuild |   2 +-
 4 files changed, 1 insertion(+), 273 deletions(-)

diff --git a/media-tv/plex-media-server/Manifest 
b/media-tv/plex-media-server/Manifest
index 46a0d23ff9e..5c4106512a5 100644
--- a/media-tv/plex-media-server/Manifest
+++ b/media-tv/plex-media-server/Manifest
@@ -1,3 +1 @@
-DIST plexmediaserver_1.5.6.3790-4613ce077_amd64.deb 105490284 SHA256 
633a7fad995347fed1b22dd6983156d24ac95659d541ee4cf8eea505d4cc5575 SHA512 
87173c290937706f05461b7ca3b217e09262ec02b0fa728580c18802e3b7246899f2840fdd6703256e32cd92adb71e3d5321c0a38569827f005eb1face9144f7
 WHIRLPOOL 
d9de5e1a90e8644aa14702e034d1799cd1f1fab1c7c730a2334bdac6e1c90a44a0febdfdb42ab791a728bf6daf9baf655c3f2dd82ff9632a86340a9e9aef38e9
-DIST plexmediaserver_1.7.5.4035-313f93718_amd64.deb 106646674 SHA256 
a8c9d2961443c22c85b2795f267bafe576561d365a85d18a97627508a3515844 SHA512 
033296004a57c0b7ded412298e7bb2c817ca5c4276683115e0bfb88ecb3445355745ef8216aa4ec92926a3f3ff5ae813470ad4a2edc7f85ed32386e363e76203
 WHIRLPOOL 
912b2057f71f51a3820a5e660f8726af000165a72ea36f480a62786057cf1e7c42f20741119cd7de14565360d45b6e6c6888ae2cc6ccdc67e7f1d7b8da54c530
 DIST plexmediaserver_1.8.1.4139-c789b3fbb_amd64.deb 107251412 SHA256 
30b907c94d5b76991831fd3555e4447724683c4e01617a71d39bfe5be11af126 SHA512 
17b6de15920013e74f0a634f004b9b599bebd266412f694963967c766e8879b54485a9b07178a575d246c6bc53b202e38da89e293fd7219d0cf993bf9e27afec
 WHIRLPOOL 
c907c627a8e693b5b029958e87b01b8c27e3f40ec6ddc04d9b95e67570260ac344bfad9aa35dfdd2ec13f492f7fed3817373c713b5163b7f9c22db1970b8091f

diff --git a/media-tv/plex-media-server/plex-media-server-1.5.6.ebuild 
b/media-tv/plex-media-server/plex-media-server-1.5.6.ebuild
deleted file mode 100644
index 4c60daa5393..000
--- a/media-tv/plex-media-server/plex-media-server-1.5.6.ebuild
+++ /dev/null
@@ -1,135 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-inherit eutils user systemd unpacker pax-utils python-single-r1
-
-MINOR_VERSION="3790-4613ce077"
-
-_APPNAME="plexmediaserver"
-_USERNAME="plex"
-_SHORTNAME="${_USERNAME}"
-_FULL_VERSION="${PV}.${MINOR_VERSION}"
-
-URI="https://downloads.plex.tv/plex-media-server";
-
-DESCRIPTION="A free media library that is intended for use with a plex client."
-HOMEPAGE="http://www.plex.tv/";
-SRC_URI="amd64? ( 
${URI}/${_FULL_VERSION}/plexmediaserver_${_FULL_VERSION}_amd64.deb )"
-SLOT="0"
-LICENSE="Plex"
-RESTRICT="bindist strip"
-KEYWORDS="-* amd64"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-   sys-apps/fix-gnustack
-   dev-python/virtualenv[${PYTHON_USEDEP}]"
-
-RDEPEND="
-   net-dns/avahi
-   ${PYTHON_DEPS}"
-
-QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
-QA_PREBUILT="*"
-QA_MULTILIB_PATHS=(
-   "usr/lib/${_APPNAME}/.*"
-   "usr/lib/${_APPNAME}/Resources/Python/lib/python2.7/.*"
-)
-
-EXECSTACKED_BINS=( "${ED%/}/usr/lib/plexmediaserver/libgnsdk_dsp.so*" )
-BINS_TO_PAX_MARK=( "${ED%/}/usr/lib/plexmediaserver/Plex Script Host" )
-
-S="${WORKDIR}"
-PATCHES=( "${FILESDIR}/virtualenv_start_pms.patch" )
-
-pkg_setup() {
-   enewgroup ${_USERNAME}
-   enewuser ${_USERNAME} -1 /bin/bash /var/lib/${_APPNAME} 
"${_USERNAME},video"
-   python-single-r1_pkg_setup
-}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_install() {
-   # Move the config to the correct place
-   local CONFIG_VANILLA="/etc/default/plexmediaserver"
-   local CONFIG_PATH="/etc/${_SHORTNAME}"
-   dodir "${CONFIG_PATH}"
-   insinto "${CONFIG_PATH}"
-   doins "${CONFIG_VANILLA#/}"
-   sed -e "s#${CONFIG_VANILLA}#${CONFIG_PATH}/${_APPNAME}#g" -i 
"${S}"/usr/sbin/start_pms || die
-
-   # Remove Debian specific files
-   rm -rf "usr/share/doc" || die
-
-   # Copy main files over to image and preserve permissions so it is 
portable
-   cp -rp usr/ "${ED}" || die
-
-   # Make sure the logging directory is created
-   local LOGGING_DIR="/var/log/pms"
-   dodir "${LOGGING_DIR}"
-   chown "${_USERNAME}":"${_USERNAME}" "${ED%/}/${LOGGING_DIR}" || die
-
-   # Create default library folder with correct permissions
-   local DEFAULT_LIBRARY_DIR="/var/lib/${_APPNAME}"
-   dodir "${DEFAULT_LIBRARY_DIR}"
-   chown "${_USERNA

[gentoo-commits] data/gentoo-news:master commit in: 2017-10-10-perl-5_26-update/

2017-10-09 Thread Andreas Hüttel
commit: bc0c7ba4cd1f09dacfe889315253a34e6bef6e6a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue Oct 10 01:05:25 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Tue Oct 10 01:05:25 2017 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=bc0c7ba4

Add Perl 5.26 news item

 .../2017-10-10-perl-5_26-update.en.txt | 32 ++
 .../2017-10-10-perl-5_26-update.en.txt.asc | 19 +
 2 files changed, 51 insertions(+)

diff --git a/2017-10-10-perl-5_26-update/2017-10-10-perl-5_26-update.en.txt 
b/2017-10-10-perl-5_26-update/2017-10-10-perl-5_26-update.en.txt
new file mode 100644
index 000..c6277c5
--- /dev/null
+++ b/2017-10-10-perl-5_26-update/2017-10-10-perl-5_26-update.en.txt
@@ -0,0 +1,32 @@
+Title: Perl 5.26 update: possible breakage
+Author: Andreas K. Hüttel 
+Posted: 2017-10-10
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: >=dev-lang/perl-5.26.0
+
+You have just upgraded to Perl 5.26. This release brings several 
+incompatible changes, as a result of deprecations coming to term
+and of changes in default settings to mitigate a potential
+security issue [1].
+
+While we have made sure that all resulting build failures within 
+Gentoo are fixed, this may not be the case for runtime issues, 
+and certainly can affect third-party code (e.g., "hand-installed" 
+server applications).
+
+Typical errors are:
+* Can't locate inc/... in @INC (you may need to install the inc::... module)
+* error: ... has no member named ‘op_sibling’
+* Unescaped left brace in regex is illegal in ...
+
+Please see the pages [2,3] for details and report bugs if you run
+into problems during or after the Perl update.
+
+General purpose advice on updating Perl can be found on page [4].
+
+[1] https://rt.perl.org/Ticket/Display.html?id=127834
+https://bugs.gentoo.org/show_bug.cgi?id=589680
+[2] https://wiki.gentoo.org/wiki/Project:Perl/Dot-In-INC-Removal
+[3] https://wiki.gentoo.org/wiki/Project:Perl/5.26_Known_Issues
+[4] https://wiki.gentoo.org/wiki/Perl

diff --git a/2017-10-10-perl-5_26-update/2017-10-10-perl-5_26-update.en.txt.asc 
b/2017-10-10-perl-5_26-update/2017-10-10-perl-5_26-update.en.txt.asc
new file mode 100644
index 000..3831b64
--- /dev/null
+++ b/2017-10-10-perl-5_26-update/2017-10-10-perl-5_26-update.en.txt.asc
@@ -0,0 +1,19 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQKTBAABCgB9FiEEwo/LD3vtE3qssC2JpEzzc+fumeQFAlncHHJfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEMy
+OEZDQjBGN0JFRDEzN0FBQ0IwMkQ4OUE0NENGMzczRTdFRTk5RTQACgkQpEzzc+fu
+meTvYA/5AcLnThg464MxP0/z/aDMKAL94RN9xscpGEZVl2oq3tJaBZRPrf/Z7krF
+9LXjkMXafsRxrtDgkWUaxgyNriKHFVs4863jZ7+WSGOucFS/yUpVtmd6ZvlUwkp9
+lbQIUgzU2RqLP2nYARVts4VsP7mgXVcCT+CHqMFVEGb4QhcOU5PVRbTt6/8tiG2N
+HvRR85rAOJGGcLLpXXdFsyCMMmMCPdge495RQV3Jb9kBaagd6p8S2x2jJZV/fZHR
+vi4HGrQZbViMn2n84w6UGymNpaevGdUswzcnH6fwLcQYgO1xIL7qvYCOzBcwYGLF
+kvgHfEpzudovGJfYTSVeEaNzeOCKKtB/WP961lg2I3XtA2XbPvE2r5AK3sBgJ1BC
+X7DBSUEqdbMr9vRPoSukZmIbnBBat4mVUhQ+kSKUDelzBOuxJvkHUYWnVhOVmn0q
+2lcZZbFNj/RzKfQEPomoWrmTx9fiFu4U2imRmzIHk3AgHwRyf2NlZtzuV5I+JqVB
+R/5Z6Oz0dOTPg83VxNonNQ2tkYV+uBqIrKRYlp/P+3qCrJw+F86mVjAfWNxipG4S
+/Hx2JJxi2HcpxzCN3kn/OTebbwDnJjpuUJmwcCvY2CbOrzfXyQ8TjWfOeoSheMCM
+Cn/nm8wO731YBh/htXVldiG7Xheuq1ySi++1HgzRnxo7kgkooH0=
+=taR8
+-END PGP SIGNATURE-



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/files/, app-text/presage/

2017-10-09 Thread Philip Miess
commit: fd62c28c468cf254d8c4491c5a54cef09d5b8b26
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 00:55:44 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 00:55:44 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=fd62c28c

add patch file

 app-text/presage/Manifest  |   1 +
 .../presage/files/presage-0.8.8-automagic.patch| 126 +
 2 files changed, 127 insertions(+)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index b19dfb5..1eb7d53 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,2 +1,3 @@
+AUX presage-0.8.8-automagic.patch 4399 SHA256 
1ae5e85214dc400189cbb07ab4b34c16e778f6942fcea129fdb5397b5c5743ad SHA512 
622883949554935c3fd12a08b1e117121ae38e5f958b4847eb83b29352df9831f4397a518372829be881bd0157a8e03fc1744e5e0585072869518e64a186bad5
 WHIRLPOOL 
bdb531a6a66fc617d0e7ac73fb92979539d4cd134cd1ac9c3116473d0f2a6cdf39b0300e02f8974c24b708335952d4aaf669a32eee6b0c44c51c0fc872b86695
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
 EBUILD presage-0.8.9.ebuild 1086 SHA256 
d20d982a6fd1f089fae2b4bef549c8a75ba14fe16e44ccfe54ea55ac06dd63b5 SHA512 
a94a98f9405fed474d36ea22733da99011846a68c6a698a5df0d7eedfe5f465f782d90e562623a2b1b9f301590eba015292397b5faf8cd314b2ec5943e93445b
 WHIRLPOOL 
3e968a2dc84b46580892a3617381209ca3d74d8d660b25cb87c2db282aee2e8f3e4faed75f3cbaf7b2b2046bb87e0b547eeb459ed689c30ffc5764be6fdbb27c

diff --git a/app-text/presage/files/presage-0.8.8-automagic.patch 
b/app-text/presage/files/presage-0.8.8-automagic.patch
new file mode 100644
index 000..dfb454b
--- /dev/null
+++ b/app-text/presage/files/presage-0.8.8-automagic.patch
@@ -0,0 +1,126 @@
+--- a/configure.ac
 b/configure.ac
+@@ -23,7 +23,7 @@
+ 
+ 
+ AC_INIT([presage],[0.8.8],[matteo.vesc...@yahoo.co.uk])
+-AM_INIT_AUTOMAKE([-Wall -Werror])
++AM_INIT_AUTOMAKE([-Wall])
+ 
+ AC_CONFIG_SRCDIR([src/lib/presage.cpp])
+ AC_CONFIG_HEADERS([config.h:config.hin])
+@@ -105,6 +105,13 @@
+ dnl ==
+ dnl Checks for ncurses
+ dnl ==
++AC_ARG_ENABLE([curses],
++  AS_HELP_STRING([--disable-curses],[disable curses support, needed for 
demo programs (default: enabled)]),
++  [enable_curses=$enableval],
++  [enable_curses=yes])
++
++if test "x$enable_curses" = "xyes"
++then
+ AC_CHECK_LIB([curses],
+  [initscr],
+  [have_curses_library=true],
+@@ -113,12 +120,19 @@
+  [have_curses_header=true],
+  [AC_MSG_WARN([curses header file not found. curses demo 
programs will not be built.])],
+  [])
+-AM_CONDITIONAL([HAVE_CURSES], [test "x$have_curses_library" = "xtrue" -a 
"x$have_curses_header" = "xtrue"])
++fi
++AM_CONDITIONAL([HAVE_CURSES], [test "x$have_curses_library" = "xtrue" -a 
"x$have_curses_header" = "xtrue" -a "x$enable_curses" = "xyes"])
+ 
+ 
+ dnl ==
+ dnl Checks for tinyxml
+ dnl ==
++AC_ARG_ENABLE([tinyxml],
++AS_HELP_STRING([--disable-tinyxml],[disable tinyxml support (default: 
enabled)]),
++[enable_tinyxml=$enableval],
++[enable_tinyxml=yes])
++if test "x$enable_tinyxml" = "xtrue"
++then
+ AC_CHECK_LIB([tinyxml],
+  [main],
+  [have_tinyxml_library=true],
+@@ -127,6 +141,7 @@
+  [have_tinyxml_header=true],
+  [AC_MSG_WARN([tinyxml library not found. Embedded tinyxml 
library will be built.])],
+  [])
++fi
+ if test "x$have_tinyxml_library" != "xtrue" -o "x$have_tinyxml_header" != 
"xtrue"
+ then
+ build_tinyxml=yes
+@@ -134,7 +149,7 @@
+ build_tinyxml=no
+ AC_DEFINE([TIXML_USE_STL], [1], [Define to 1 to use STL string in 
TinyXML])
+ fi
+-AM_CONDITIONAL([BUILD_TINYXML], [test "x$build_tinyxml" = "xyes"])
++AM_CONDITIONAL([BUILD_TINYXML], [test "x$build_tinyxml" = "xyes" -a 
"x$enable_tinyxml" = "xyes"])
+ 
+ 
+ dnl =
+@@ -203,10 +218,15 @@
+ dnl ==
+ dnl Checks for CppUnit
+ dnl ==
++AC_ARG_ENABLE([tests],
++AS_HELP_STRING([--enable-tests],[enable tests (default: disabled)]),
++[enable_tests=$enableval],
++[enable_tests=no])
++
+ AM_PATH_CPPUNIT([1.9.6],
+ [],
+ [AC_MSG_WARN([CppUnit not found. Unit tests will not be 
built. CppUnit can be obtained from http://cppunit.sourceforge.net.])])
+-AM_CONDITIONAL([HAVE_CPPUNIT], [test "$CPPUNIT_LIBS"])
++AM_CONDITIONAL([HAVE_CPPUNIT], [test "$CPPUNIT_LIBS" -a "x$enable_tests" = 
"xyes"])
+ 
+ 
+ dnl 
+@@ -216,6 +236,7 

[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/

2017-10-09 Thread Philip Miess
commit: 83f4cb8adcf8e87cad6f720800e9850373810026
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 00:53:10 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 00:53:10 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=83f4cb8a

unix2dos->dos2unix

 app-text/presage/Manifest | 2 +-
 app-text/presage/presage-0.8.9.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
index 37aa022..b19dfb5 100644
--- a/app-text/presage/Manifest
+++ b/app-text/presage/Manifest
@@ -1,2 +1,2 @@
 DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
-EBUILD presage-0.8.9.ebuild 1086 SHA256 
ca159249c10a3014c5612e4f62e6587d352e2e74743fea54f0e379efebe04d47 SHA512 
6a9a4d2e35da39e7433e2584c8313768228a660e2571059abf2836b33e553b6af49c73e34fb09e71b657f3ddead9f06cb45612e396d30d5ff3a41dc18568070d
 WHIRLPOOL 
52bf637decd92f2c55e59612dfd891f2deaa0909614e22089416b3db626a6f8ad73d25e6a6422aafd53123bed9e56860062762157686940867488594e28cd1a7
+EBUILD presage-0.8.9.ebuild 1086 SHA256 
d20d982a6fd1f089fae2b4bef549c8a75ba14fe16e44ccfe54ea55ac06dd63b5 SHA512 
a94a98f9405fed474d36ea22733da99011846a68c6a698a5df0d7eedfe5f465f782d90e562623a2b1b9f301590eba015292397b5faf8cd314b2ec5943e93445b
 WHIRLPOOL 
3e968a2dc84b46580892a3617381209ca3d74d8d660b25cb87c2db282aee2e8f3e4faed75f3cbaf7b2b2046bb87e0b547eeb459ed689c30ffc5764be6fdbb27c

diff --git a/app-text/presage/presage-0.8.9.ebuild 
b/app-text/presage/presage-0.8.9.ebuild
index 20814ec..5e2ea10 100644
--- a/app-text/presage/presage-0.8.9.ebuild
+++ b/app-text/presage/presage-0.8.9.ebuild
@@ -19,7 +19,7 @@ RDEPEND="
gtk? ( x11-libs/gtk+ )
python? ( dev-lang/python dev-python/dbus-python )
sqlite? ( dev-db/sqlite )
-   app-text/unix2dos
+   app-text/dos2unix
 "
 
 DEPEND="${COMMON_DEPEND}



[gentoo-commits] repo/user/superposition:master commit in: app-text/presage/

2017-10-09 Thread Philip Miess
commit: 3b9bacb91b9f15292d4720b97855c6bd6af4087e
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Oct 10 00:32:35 2017 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Oct 10 00:32:35 2017 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=3b9bacb9

presage

 app-text/presage/Manifest |  2 ++
 app-text/presage/presage-0.8.9.ebuild | 49 +++
 2 files changed, 51 insertions(+)

diff --git a/app-text/presage/Manifest b/app-text/presage/Manifest
new file mode 100644
index 000..37aa022
--- /dev/null
+++ b/app-text/presage/Manifest
@@ -0,0 +1,2 @@
+DIST presage-0.8.9.tar.gz 2568505 SHA256 
5541e9b350cc603a8d412704dcfa21342369b5b07c6da91947c7523c51678cd0 SHA512 
62206497283b3d7d29546399ea94c5b82d95c91f09c14e48098e1a8791018ccfdda26c46227195cdf706c0097e02bf382360e0a9c7e824edcd86fdfa5f4c3db1
 WHIRLPOOL 
029d3366c94fc52ba0a8337197158cc53d6aba8c276d2ddd52f5f58b864a7da2388af5d67342ece1817a7863fea2f6b675e76bb1e3555df4a1ddd67296a65188
+EBUILD presage-0.8.9.ebuild 1086 SHA256 
ca159249c10a3014c5612e4f62e6587d352e2e74743fea54f0e379efebe04d47 SHA512 
6a9a4d2e35da39e7433e2584c8313768228a660e2571059abf2836b33e553b6af49c73e34fb09e71b657f3ddead9f06cb45612e396d30d5ff3a41dc18568070d
 WHIRLPOOL 
52bf637decd92f2c55e59612dfd891f2deaa0909614e22089416b3db626a6f8ad73d25e6a6422aafd53123bed9e56860062762157686940867488594e28cd1a7

diff --git a/app-text/presage/presage-0.8.9.ebuild 
b/app-text/presage/presage-0.8.9.ebuild
new file mode 100644
index 000..20814ec
--- /dev/null
+++ b/app-text/presage/presage-0.8.9.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit eutils autotools
+DESCRIPTION="The intelligent predictive text entry system"
+HOMEPAGE="http://presage.sourceforge.net";
+SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc examples gtk python sqlite test"
+
+RDEPEND="
+   examples? ( sys-libs/ncurses )
+   gtk? ( x11-libs/gtk+ )
+   python? ( dev-lang/python dev-python/dbus-python )
+   sqlite? ( dev-db/sqlite )
+   app-text/unix2dos
+"
+
+DEPEND="${COMMON_DEPEND}
+   doc? ( app-doc/doxygen )
+   python? ( dev-lang/swig )
+   test? ( dev-util/cppunit )
+   sys-apps/help2man
+"
+
+src_prepare() {
+   epatch "${FILESDIR}/${PN}-0.8.8-automagic.patch"
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable doc documentation)
+   $(use_enable gtk gpresagemate)
+   $(use_enable gtk gprompter)
+   $(use_enable examples curses)
+   $(use_enable python)
+   $(use_enable python python-binding)
+   $(use_enable sqlite)
+   $(use_enable test)
+   )
+   econf ${myeconfargs}
+}



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

2017-10-09 Thread Thomas Deutschmann
commit: a2fa025260cd7d4e775d053626a7d356cc62bcb9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Oct 10 00:07:07 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Oct 10 00:07:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2fa0252

net-fs/nfs-utils: Bump to v2.1.2 RC6

Closes: https://bugs.gentoo.org/633752
Package-Manager: Portage-2.3.10, Repoman-2.3.3

 net-fs/nfs-utils/Manifest   |   1 +
 net-fs/nfs-utils/nfs-utils-2.1.2_rc6.ebuild | 190 
 2 files changed, 191 insertions(+)

diff --git a/net-fs/nfs-utils/Manifest b/net-fs/nfs-utils/Manifest
index f55aa5701df..521804c736d 100644
--- a/net-fs/nfs-utils/Manifest
+++ b/net-fs/nfs-utils/Manifest
@@ -2,3 +2,4 @@ DIST nfs-utils-1.3.4.tar.bz2 814545 SHA256 
c529c82a82320daae811f3d3a143f83d2714d
 DIST nfs-utils-2.1.1.tar.bz2 820083 SHA256 
0a28416948516c26f3bfe90425b0de09b79364dc1f508bf1dda8de66e1edbb09 SHA512 
ed358280b7e124154632040bf747f6e4c3c6e4156bf90e82ff6915b1488f1c0dd65251a3a0f9b7ca96b9664d64e24b379828da9b524e64a3c769a44f4c930448
 WHIRLPOOL 
bb28ae312b64c3493a1393a5b41eda457367594a71e230379ec04ffea3eb29d60ab8254e4981b0aa9cbe778dc1fbe9b08dc8615184a35cdb22bf4e5e04e56a6c
 DIST nfs-utils-2.1.2_rc3.tar.gz 475356 SHA256 
5b379316a2cc49b07f72042b72eadee0bfe7c88e65d7b5baa4798e6cefca5a82 SHA512 
2f948994f275b405678240deecc879900cc0e72476adaf552db059364f08f0929722013d751e0bc7913c30eb3f8183d1fc7693709c063fc92e20b71edd24ccef
 WHIRLPOOL 
6a16a9cc3d22d883b6a8aa2d2f01dce81f9a1df03154a80e4aa43ae9bb878a15f0ca37951702f780341283da94d885b7be3656a950285ef79619e09dc465727f
 DIST nfs-utils-2.1.2_rc5.tar.gz 476401 SHA256 
52b32896572e0f81dffd5ccd90c367e5d00b5d371b8deef45dc744ee1b7ad2ab SHA512 
28670ca993c1bf953632086ab15cec1b6a525fb1b28243e382f246362cfb2629c9d0416f4f65c6a2f2c46202a4c6855d1924a7f8c984395ddb98b6d4f4b0cbcb
 WHIRLPOOL 
f2e2f75c0a989402f75740164870e250a12f29f4b3f0eb7102cecf57aea0d647a0a7860798f9333e8bef9efc4af72f516c885c62cd079e89470d108cdaca4b9d
+DIST nfs-utils-2.1.2_rc6.tar.gz 476695 SHA256 
a88b499210eec4fb41414f9ba653570d1845981e414f5de6ae90ecaf14205977 SHA512 
d7c054074e2ea4370a5e47922785fa2a0cf595623d0222cb16f910c4946ed7f3d6f093b471557ce139c85ad0dd321bed0222f5c5aa5b7bca04b31d422eb35f75
 WHIRLPOOL 
6dfec79baa7b37f57a162296b7e5acb07da9144d677cf1f7ec515fc220a844d9a0d7e935ac0f4b9a1db9eaa2816d5d1ea089141f11f6ae9e6ec8bd77d24be0b5

diff --git a/net-fs/nfs-utils/nfs-utils-2.1.2_rc6.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.1.2_rc6.ebuild
new file mode 100644
index 000..133e06869f0
--- /dev/null
+++ b/net-fs/nfs-utils/nfs-utils-2.1.2_rc6.ebuild
@@ -0,0 +1,190 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools flag-o-matic multilib systemd
+
+DESCRIPTION="NFS client and server daemons"
+HOMEPAGE="http://linux-nfs.org/";
+
+if [[ "${PV}" = *_rc* ]] ; then
+   inherit versionator
+   MY_PV="$(replace_all_version_separators -)"
+   
SRC_URI="http://git.linux-nfs.org/?p=steved/nfs-utils.git;a=snapshot;h=refs/tags/${PN}-${MY_PV};sf=tgz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
+else
+   SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="caps ipv6 kerberos +libmount nfsdcld +nfsidmap +nfsv4 nfsv41 selinux 
tcpd +uuid"
+REQUIRED_USE="kerberos? ( nfsv4 )"
+RESTRICT="test" #315573
+
+# kth-krb doesn't provide the right include
+# files, and nfs-utils doesn't build against heimdal either,
+# so don't depend on virtual/krb.
+# (04 Feb 2005 agriffis)
+DEPEND_COMMON="tcpd? ( sys-apps/tcp-wrappers )
+   caps? ( sys-libs/libcap )
+   sys-libs/e2fsprogs-libs
+   >=net-nds/rpcbind-0.2.4
+   net-libs/libtirpc:=
+   libmount? ( sys-apps/util-linux )
+   nfsdcld? ( >=dev-db/sqlite-3.3 )
+   nfsv4? (
+   dev-libs/libevent:=
+   >=net-libs/libnfsidmap-0.21-r1
+   kerberos? (
+   >=net-libs/libtirpc-0.2.4-r1[kerberos]
+   app-crypt/mit-krb5
+   )
+   nfsidmap? (
+   >=net-libs/libnfsidmap-0.24
+   >=sys-apps/keyutils-1.5.9
+   )
+   )
+   nfsv41? (
+   sys-fs/lvm2
+   )
+   uuid? ( sys-apps/util-linux )"
+RDEPEND="${DEPEND_COMMON}
+   !net-nds/portmap
+   ! 
id_resolver.conf
+   doins id_resolver.conf
+   fi
+
+   insinto /etc
+   doins "${FILESDIR}"/exports
+   keepdir /etc/exports.d
+
+   local f list=() opt_need=""
+   if use nfsv4 ; then
+   opt_need="rpc.idmapd"
+   list+=( rpc.idmapd rpc.pipefs )
+   use kerberos && list+=( rpc.gssd rpc.svcgssd )
+   fi
+   for f in nfs nfsclient rpc.statd "${list[@]}" ; do
+

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/klayout/

2017-10-09 Thread Andreas Hüttel
commit: 8863c60796c3e6e5c4434a4669f50bc22368e23b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Oct  9 23:44:14 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon Oct  9 23:44:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8863c607

sci-electronics/klayout: Fix libdir. It helps to be awake when coding. Bug 
633898.

Closes: https://bugs.gentoo.org/633898
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 sci-electronics/klayout/klayout-0.24.10.ebuild | 4 ++--
 sci-electronics/klayout/klayout-.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-electronics/klayout/klayout-0.24.10.ebuild 
b/sci-electronics/klayout/klayout-0.24.10.ebuild
index 5f3954deb38..f4dfd05c1ec 100644
--- a/sci-electronics/klayout/klayout-0.24.10.ebuild
+++ b/sci-electronics/klayout/klayout-0.24.10.ebuild
@@ -41,9 +41,9 @@ each_ruby_configure() {
-platform linux-gentoo \
-bin bin \
-ruby ${RUBY} \
-   -qtbin /usr/lib64/qt4/bin \
+   -qtbin "/usr/$(get_libdir)/qt4/bin" \
-qtinc /usr/include/qt4 \
-   -qtlib /usr/$(get_libdir)/qt4 || die "Configuration failed"
+   -qtlib "/usr/$(get_libdir)/qt4" || die "Configuration failed"
 }
 
 each_ruby_compile() {

diff --git a/sci-electronics/klayout/klayout-.ebuild 
b/sci-electronics/klayout/klayout-.ebuild
index d6a39fafedf..ad17c9f8d60 100644
--- a/sci-electronics/klayout/klayout-.ebuild
+++ b/sci-electronics/klayout/klayout-.ebuild
@@ -48,7 +48,7 @@ each_ruby_configure() {
./build.sh \
-expert \
-dry-run \
-   -qmake /usr/lib64/qt5/bin/qmake \
+   -qmake "/usr/$(get_libdir)/qt5/bin/qmake" \
-ruby "${RUBY}" \
-python "${PYTHON}" \
-build . \



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

2017-10-09 Thread Thomas Deutschmann
commit: 03f7c3cf9ff3009e98da9fec262b0532dc9273e1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:19:52 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03f7c3cf

app-misc/hivex: x86 stable (bug #622890)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

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

diff --git a/app-misc/hivex/hivex-1.3.14.ebuild 
b/app-misc/hivex/hivex-1.3.14.ebuild
index dd48bcb9adf..1208bc1f4e9 100644
--- a/app-misc/hivex/hivex-1.3.14.ebuild
+++ b/app-misc/hivex/hivex-1.3.14.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://libguestfs.org/download/${PN}/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="ocaml readline +perl python test static-libs ruby"
 
 RDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: 053edb5d3d3d49cf4fd1ee5b686888c4be0cc855
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:22:49 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:28:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=053edb5d

net-misc/unison: x86 stable (bug #626304)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

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

diff --git a/net-misc/unison/unison-2.48.4.ebuild 
b/net-misc/unison/unison-2.48.4.ebuild
index 3a685747ee2..a1f428de517 100644
--- a/net-misc/unison/unison-2.48.4.ebuild
+++ b/net-misc/unison/unison-2.48.4.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Two-way cross-platform file synchronizer"
 HOMEPAGE="https://www.seas.upenn.edu/~bcpierce/unison/";
 LICENSE="GPL-2"
 SLOT="$(get_version_component_range 1-2 ${PV})"
-KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris"
+KEYWORDS="~amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris"
 
 # ocaml version so we are sure it has ocamlopt use flag
 DEPEND="dev-lang/ocaml[ocamlopt?]



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

2017-10-09 Thread Thomas Deutschmann
commit: edc9422f208da29f408b4ece82cc8698f2ca8a97
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:20:59 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:28:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc9422f

dev-php/pecl-ssh2: x86 stable (bug #626484)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-php/pecl-ssh2/pecl-ssh2-0.13-r3.ebuild | 2 +-
 dev-php/pecl-ssh2/pecl-ssh2-1.1.1.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-ssh2/pecl-ssh2-0.13-r3.ebuild 
b/dev-php/pecl-ssh2/pecl-ssh2-0.13-r3.ebuild
index 1d3d6dcf1f0..2c6edfc3567 100644
--- a/dev-php/pecl-ssh2/pecl-ssh2-0.13-r3.ebuild
+++ b/dev-php/pecl-ssh2/pecl-ssh2-0.13-r3.ebuild
@@ -15,7 +15,7 @@ DESCRIPTION="PHP bindings for the libssh2 library"
 LICENSE="PHP-3.01"
 SLOT="0"
 IUSE=""
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 # Upstream notes say there are errors with gcrypt backend
 DEPEND="net-libs/libssh2[-gcrypt]"
 RDEPEND="${DEPEND}"

diff --git a/dev-php/pecl-ssh2/pecl-ssh2-1.1.1.ebuild 
b/dev-php/pecl-ssh2/pecl-ssh2-1.1.1.ebuild
index 53f184049f8..f4482472419 100644
--- a/dev-php/pecl-ssh2/pecl-ssh2-1.1.1.ebuild
+++ b/dev-php/pecl-ssh2/pecl-ssh2-1.1.1.ebuild
@@ -15,7 +15,7 @@ DESCRIPTION="PHP bindings for the libssh2 library"
 LICENSE="PHP-3.01"
 SLOT="7"
 IUSE=""
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 # Upstream notes say there are errors with gcrypt backend
 DEPEND=">=net-libs/libssh2-1.2[-gcrypt]"
 RDEPEND="${DEPEND}



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

2017-10-09 Thread Thomas Deutschmann
commit: dd0b82374327e09c213eee1c80ebeb8c18f2a333
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:20:41 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:28:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd0b8237

dev-php/pecl-crack: x86 stable (bug #626482)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-php/pecl-crack/pecl-crack-0.4-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-crack/pecl-crack-0.4-r6.ebuild 
b/dev-php/pecl-crack/pecl-crack-0.4-r6.ebuild
index f7a9d30a87f..b5b70b8cd3b 100644
--- a/dev-php/pecl-crack/pecl-crack-0.4-r6.ebuild
+++ b/dev-php/pecl-crack/pecl-crack-0.4-r6.ebuild
@@ -13,7 +13,7 @@ USE_PHP="php5-6 php7-0 php7-1"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 
 DESCRIPTION="PHP interface to the cracklib libraries"
 LICENSE="PHP-3 CRACKLIB"



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

2017-10-09 Thread Thomas Deutschmann
commit: 6cec682828884127a35a762d13f540c3f01c24f1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:19:09 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:19:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cec6828

media-gfx/geeqie: x86 stable (bug #626422)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-gfx/geeqie/geeqie-1.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/geeqie/geeqie-1.3-r1.ebuild 
b/media-gfx/geeqie/geeqie-1.3-r1.ebuild
index a113ceba2fb..285783cea80 100644
--- a/media-gfx/geeqie/geeqie-1.3-r1.ebuild
+++ b/media-gfx/geeqie/geeqie-1.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="http://www.geeqie.org/${P}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="debug doc exif gpu-accel gtk3 jpeg lcms lirc lua map tiff xmp"
 
 RDEPEND="gtk3? ( x11-libs/gtk+:3 )



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xystray/

2017-10-09 Thread Thomas Deutschmann
commit: 097b1ea01a8b21ac19b2d99b747773ac373fd4e3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:21:40 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:28:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=097b1ea0

x11-misc/xystray: x86 stable (bug #626790)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 x11-misc/xystray/xystray-1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xystray/xystray-1.0.ebuild 
b/x11-misc/xystray/xystray-1.0.ebuild
index d077e288bab..d7bd502bddb 100644
--- a/x11-misc/xystray/xystray-1.0.ebuild
+++ b/x11-misc/xystray/xystray-1.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/steelman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE=""
 
 CDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: e2e4e13dd41b5df328a4d5a317813f0979f6f05a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:22:20 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:28:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e4e13d

dev-python/unidecode: x86 stable (bug #616976)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

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

diff --git a/dev-python/unidecode/unidecode-0.04.20.ebuild 
b/dev-python/unidecode/unidecode-0.04.20.ebuild
index be16fa8e8bf..870547744f7 100644
--- a/dev-python/unidecode/unidecode-0.04.20.ebuild
+++ b/dev-python/unidecode/unidecode-0.04.20.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm hppa ppc ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm hppa ppc ppc64 ~sparc x86"
 
 S=${WORKDIR}/${MY_P}
 



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-gnome-keyring/

2017-10-09 Thread Thomas Deutschmann
commit: 5cf5e30fdbc515bc2f0df02b3ea47cfdbfdd6609
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 23:21:18 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 23:28:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf5e30f

x11-plugins/pidgin-gnome-keyring: x86 stable (bug #626792)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 x11-plugins/pidgin-gnome-keyring/pidgin-gnome-keyring-2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/pidgin-gnome-keyring/pidgin-gnome-keyring-2.0.ebuild 
b/x11-plugins/pidgin-gnome-keyring/pidgin-gnome-keyring-2.0.ebuild
index 69fd8c7882a..02b193c1dd7 100644
--- a/x11-plugins/pidgin-gnome-keyring/pidgin-gnome-keyring-2.0.ebuild
+++ b/x11-plugins/pidgin-gnome-keyring/pidgin-gnome-keyring-2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://github.com/aebrahim/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RDEPEND="app-crypt/libsecret
net-im/pidgin"



[gentoo-commits] repo/gentoo:master commit in: app-laptop/laptop-mode-tools/

2017-10-09 Thread Thomas Deutschmann
commit: ae359960291e83e791841f0c11cc06f7e17278ef
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:45:35 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:45:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae359960

app-laptop/laptop-mode-tools: x86 stable (bug #633684)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild 
b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild
index 2837bf0d93b..32250ae7f47 100644
--- a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild
+++ b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.71.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/rickysarraf/${PN}/releases/download/${PV}/${MY_P}.ta
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="+acpi apm bluetooth scsi"
 
 RDEPEND="net-wireless/wireless-tools



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

2017-10-09 Thread Thomas Deutschmann
commit: c09dc20a0d271cc336901fa4e4d6b8811b00e906
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:44:23 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:44:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c09dc20a

media-plugins/gst-plugins-soundtouch: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 .../gst-plugins-soundtouch/gst-plugins-soundtouch-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.10.5.ebuild 
b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.10.5.ebuild
index dfb436c7f20..ec3a85d32ae 100644
--- a/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-soundtouch/gst-plugins-soundtouch-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="Beats-per-minute detection and pitch controlling plugin for 
GStreamer"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libsoundtouch-1.7.1[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: eeae51202d237dc70d1552add9ff30ea4d08093a
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:35:09 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:35:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeae5120

media-plugins/gst-plugins-voaacenc: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.10.5.ebuild 
b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.10.5.ebuild
index f82aac4720a..f15e28d370e 100644
--- a/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-voaacenc/gst-plugins-voaacenc-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="AAC encoder plugin for GStreamer"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/vo-aacenc-0.1.3[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-libs/gst-plugins-ugly/

2017-10-09 Thread Thomas Deutschmann
commit: 6596bb0a075c98203b14c4dea51eb9d682cd29e5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:41:12 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:41:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6596bb0a

media-libs/gst-plugins-ugly: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-libs/gst-plugins-ugly/gst-plugins-ugly-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.10.5.ebuild 
b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.10.5.ebuild
index 399b628e44d..915318a0f10 100644
--- a/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.10.5.ebuild
+++ b/media-libs/gst-plugins-ugly/gst-plugins-ugly-1.10.5.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Basepack of plugins for gstreamer"
 HOMEPAGE="https://gstreamer.freedesktop.org/";
 
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="+orc"
 
 RDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: d26159f9bd4d9e6070e0e3c53e22e5bb2b5c84e9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:42:44 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:42:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d26159f9

media-plugins/gst-plugins-speex: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-speex/gst-plugins-speex-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.10.5.ebuild 
b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.10.5.ebuild
index 8c0b1e39838..a09e4173dde 100644
--- a/media-plugins/gst-plugins-speex/gst-plugins-speex-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-speex/gst-plugins-speex-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Speex encoder/decoder plugin for GStreamer"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: 9d8be3119cc6096304a9371b7ec91624364b37c4
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:42:14 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:42:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d8be311

media-plugins/gst-plugins-flac: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-flac/gst-plugins-flac-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-flac/gst-plugins-flac-1.10.5.ebuild 
b/media-plugins/gst-plugins-flac/gst-plugins-flac-1.10.5.ebuild
index 8be9be3b595..e627ea5c19e 100644
--- a/media-plugins/gst-plugins-flac/gst-plugins-flac-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-flac/gst-plugins-flac-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="FLAC encoder/decoder/tagger plugin for GStreamer"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/flac-1.2.1-r5[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: media-libs/gst-plugins-good/

2017-10-09 Thread Thomas Deutschmann
commit: 0d66af6be0f308794b18a5c435d501686ab6658b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:35:45 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:35:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d66af6b

media-libs/gst-plugins-good: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-libs/gst-plugins-good/gst-plugins-good-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gst-plugins-good/gst-plugins-good-1.10.5.ebuild 
b/media-libs/gst-plugins-good/gst-plugins-good-1.10.5.ebuild
index fcf17914439..78fbac82279 100644
--- a/media-libs/gst-plugins-good/gst-plugins-good-1.10.5.ebuild
+++ b/media-libs/gst-plugins-good/gst-plugins-good-1.10.5.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Basepack of plugins for GStreamer"
 HOMEPAGE="https://gstreamer.freedesktop.org/";
 
 LICENSE="LGPL-2.1+"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="+orc"
 
 RDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: a0085bea00768e7ea68a81a135592714cd9ff813
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:36:58 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:36:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0085bea

media-plugins/gst-plugins-dv: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-dv/gst-plugins-dv-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-dv/gst-plugins-dv-1.10.5.ebuild 
b/media-plugins/gst-plugins-dv/gst-plugins-dv-1.10.5.ebuild
index efe3c419e76..ce39e9d64d5 100644
--- a/media-plugins/gst-plugins-dv/gst-plugins-dv-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-dv/gst-plugins-dv-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="DV demuxer and decoder plugin for GStreamer"
-KEYWORDS="alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-libs/libdv-1.0.0-r3[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: 207cb9a7103748221d7d43d4ec860cf7d3b99315
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:36:29 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=207cb9a7

media-plugins/gst-plugins-jack: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-jack/gst-plugins-jack-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-jack/gst-plugins-jack-1.10.5.ebuild 
b/media-plugins/gst-plugins-jack/gst-plugins-jack-1.10.5.ebuild
index a74806cd9e4..8755ec47fc3 100644
--- a/media-plugins/gst-plugins-jack/gst-plugins-jack-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-jack/gst-plugins-jack-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPION="JACK audio server source/sink plugin for GStreamer"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND="virtual/jack[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: fc190f3e705dbf4335d820ea81ce3ce1412e4b1f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:43:44 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:43:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc190f3e

media-plugins/gst-plugins-a52dec: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-1.10.5.ebuild 
b/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-1.10.5.ebuild
index 776341b38d7..e0183c5b3b1 100644
--- a/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-a52dec/gst-plugins-a52dec-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="ATSC A/52 audio decoder plugin for GStreamer"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="+orc"
 
 RDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: 651799a036d6e8e59d76bc2385c84ba4d27b2f85
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:37:42 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:37:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=651799a0

media-plugins/gst-plugins-uvch264: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.10.5.ebuild 
b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.10.5.ebuild
index c804588053e..05553bce83c 100644
--- a/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-uvch264/gst-plugins-uvch264-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="UVC compliant H264 encoding cameras plugin for GStreamer"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: b75d736adc4dd58e256dfa5b9caa0cade13602ba
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:45:12 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:45:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b75d736a

sys-libs/libieee1284: x86 stable (bug #632488)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 sys-libs/libieee1284/libieee1284-0.2.11-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libieee1284/libieee1284-0.2.11-r5.ebuild 
b/sys-libs/libieee1284/libieee1284-0.2.11-r5.ebuild
index 4ff103852d6..3f1df76fed3 100644
--- a/sys-libs/libieee1284/libieee1284-0.2.11-r5.ebuild
+++ b/sys-libs/libieee1284/libieee1284-0.2.11-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
 IUSE="doc python static-libs"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2017-10-09 Thread Thomas Deutschmann
commit: 4c4287026dfb0df20e72c6b63f2343afcf8ac02e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:38:13 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:38:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c428702

media-plugins/gst-plugins-pulse: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.10.5.ebuild 
b/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.10.5.ebuild
index 19a7fe1137e..8e7ea115705 100644
--- a/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-pulse/gst-plugins-pulse-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="PulseAudio sound server plugin for GStreamer"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/gst-plugins-bad/

2017-10-09 Thread Thomas Deutschmann
commit: 075f26030acca77013d130dede66328588a25c1e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:40:38 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:40:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=075f2603

media-libs/gst-plugins-bad: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-libs/gst-plugins-bad/gst-plugins-bad-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gst-plugins-bad/gst-plugins-bad-1.10.5.ebuild 
b/media-libs/gst-plugins-bad/gst-plugins-bad-1.10.5.ebuild
index b2b22d8c967..690d068d1fe 100644
--- a/media-libs/gst-plugins-bad/gst-plugins-bad-1.10.5.ebuild
+++ b/media-libs/gst-plugins-bad/gst-plugins-bad-1.10.5.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Less plugins for GStreamer"
 HOMEPAGE="https://gstreamer.freedesktop.org/";
 
 LICENSE="LGPL-2"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
 
 IUSE="X bzip2 egl gles2 gtk +introspection opengl +orc vcd vnc wayland"
 REQUIRED_USE="



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

2017-10-09 Thread Thomas Deutschmann
commit: 2c37c4a4395d34439da4c04fabfc4239a742707d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:39:26 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:39:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c37c4a4

media-plugins/gst-plugins-vpx: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.10.5.ebuild 
b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.10.5.ebuild
index 2660be8c09a..667df7026d2 100644
--- a/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-vpx/gst-plugins-vpx-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="VP8/VP9 video encoder/decoder plugin for GStreamer"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE=""
 
 # VP9 is under experimental, do not enable it now



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

2017-10-09 Thread Thomas Deutschmann
commit: 194fd3b19b9d2fbeb0285920eb62fe3b768416fa
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:37:29 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:37:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=194fd3b1

media-plugins/gst-plugins-mpeg2dec: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.10.5.ebuild 
b/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.10.5.ebuild
index c5bbbd2dd8d..79f17b486c8 100644
--- a/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-mpeg2dec/gst-plugins-mpeg2dec-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="MPEG2 decoder plugin for GStreamer"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=">=media-libs/libmpeg2-0.5.1-r2[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: 8ca2ec286fc36d8812fc5e419dd12076f5dfcc10
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:43:13 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:43:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca2ec28

media-plugins/gst-plugins-twolame: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.10.5.ebuild 
b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.10.5.ebuild
index cf687705272..eb9e16de5a5 100644
--- a/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-twolame/gst-plugins-twolame-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="MPEG2 encoder plugin for GStreamer"
-KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=">=media-sound/twolame-0.3.13-r1[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: eb1adbc40dabaa85ffeff3113cd0fc04e4dcdda3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:46:53 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:46:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb1adbc4

dev-lang/swi-prolog: x86 stable (bug #633804)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild 
b/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild
index 9f055ae83b6..216f290013c 100644
--- a/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild
+++ b/dev-lang/swi-prolog/swi-prolog-7.4.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://www.swi-prolog.org/download/stable/src/swipl-${PV}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="archive berkdb debug doc +gmp hardened java +libedit libressl minimal 
odbc readline ssl static-libs test uuid zlib X"
 
 RDEPEND="sys-libs/ncurses:=



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

2017-10-09 Thread Thomas Deutschmann
commit: e887486475ced1327286f935ff190fdf6f88fa3d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:38:57 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:38:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8874864

media-plugins/gst-plugins-lame: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-lame/gst-plugins-lame-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-lame/gst-plugins-lame-1.10.5.ebuild 
b/media-plugins/gst-plugins-lame/gst-plugins-lame-1.10.5.ebuild
index afc90ea65d4..07df71eb10b 100644
--- a/media-plugins/gst-plugins-lame/gst-plugins-lame-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-lame/gst-plugins-lame-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-ugly
 inherit gstreamer
 
 DESCRIPTION="MP3 encoder plugin for GStreamer"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND=">=media-sound/lame-3.99.5-r1[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: 1a45c54d21a2a99da4ffb11b7fa84aeb70c00282
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:39:58 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:39:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a45c54d

media-plugins/gst-plugins-libav: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-libav/gst-plugins-libav-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.10.5.ebuild 
b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.10.5.ebuild
index 8b2c0575846..854af905c9f 100644
--- a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.10.5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://gstreamer.freedesktop.org/src/${MY_PN}/${MY_PN}-${PV}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="1.0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-fbsd 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="libav +orc"
 
 # XXX: bzip2/lzma are automagic



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

2017-10-09 Thread Thomas Deutschmann
commit: 31425617593862c0004ce00bffc763422bf5f5a1
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:35:59 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:35:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31425617

media-plugins/gst-plugins-x265: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-x265/gst-plugins-x265-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.10.5.ebuild 
b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.10.5.ebuild
index 85e77a38743..50323b46923 100644
--- a/media-plugins/gst-plugins-x265/gst-plugins-x265-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-x265/gst-plugins-x265-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE="gst-plugins-bad"
 inherit gstreamer
 
 DESCRIPTION="H.265 encoder plugin for GStreamer"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2017-10-09 Thread Thomas Deutschmann
commit: 8b8e4929682bc27fbae7e971ab9638f960c69bbe
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:44:07 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:44:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b8e4929

media-plugins/gst-plugins-modplug: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.10.5.ebuild 
b/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.10.5.ebuild
index 03dd3ed0199..2e31469de88 100644
--- a/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-modplug/gst-plugins-modplug-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="MOD audio decoder plugin for GStreamer"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND=">=media-libs/libmodplug-0.8.8.4-r1[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: 9bc399bc7bb06b940a31a5b3a86735b3d40b32f3
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:41:42 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:41:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bc399bc

media-plugins/gst-plugins-wavpack: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.10.5.ebuild 
b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.10.5.ebuild
index 01995d180e8..212ae34c626 100644
--- a/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-wavpack/gst-plugins-wavpack-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-good
 inherit gstreamer
 
 DESCRIPTION="Wavpack audio encoder/decoder plugin for GStreamer"
-KEYWORDS="alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE=""
 
 RDEPEND=">=media-sound/wavpack-4.60.1-r1[${MULTILIB_USEDEP}]"



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

2017-10-09 Thread Thomas Deutschmann
commit: 60797bf716361a596f3d597ef66fdd7256188709
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:46:13 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:46:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60797bf7

net-dns/openresolv: x86 stable (bug #633686)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 net-dns/openresolv/openresolv-3.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/openresolv/openresolv-3.9.0.ebuild 
b/net-dns/openresolv/openresolv-3.9.0.ebuild
index 1a5316b5915..62e94ca348e 100644
--- a/net-dns/openresolv/openresolv-3.9.0.ebuild
+++ b/net-dns/openresolv/openresolv-3.9.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://roy.marples.name/downloads/${PN}/${P}.tar.xz";
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="selinux"
 
 DEPEND="!net-dns/resolvconf-gentoo



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

2017-10-09 Thread Thomas Deutschmann
commit: c1097e02bd79f71c6deadbd2a1e63013c841d3ea
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Oct  9 22:38:27 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  9 22:38:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1097e02

media-plugins/gst-plugins-openh264: x86 stable (bug #624180)

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.10.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.10.5.ebuild 
b/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.10.5.ebuild
index a25e40c30fa..8b8bcbed79c 100644
--- a/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.10.5.ebuild
+++ b/media-plugins/gst-plugins-openh264/gst-plugins-openh264-1.10.5.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer
 
 DESCRIPTION="H.264 encoder/decoder plugin for GStreamer."
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] proj/openrc:master commit in: init.d/

2017-10-09 Thread William Hubbs
commit: efa9ba485d9328f780f3e60dc18339c75974c6c6
Author: William Hubbs  gmail  com>
AuthorDate: Mon Oct  9 20:54:06 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Oct  9 20:54:06 2017 +
URL:https://gitweb.gentoo.org/proj/openrc.git/commit/?id=efa9ba48

init.d/sysfs.in: fix reference to RC_LIBEXECDIR

The sysfs init script referred to @LIBEXECDIR@ before this change, but
it is better to refer to RC_LIBEXECDIR so that we get rid of a sed
substitution.

 init.d/sysfs.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/init.d/sysfs.in b/init.d/sysfs.in
index 23e8821c..892528ca 100644
--- a/init.d/sysfs.in
+++ b/init.d/sysfs.in
@@ -118,7 +118,7 @@ cgroup1_base()
fi
 
if ! mountinfo -q /sys/fs/cgroup/openrc; then
-   local agent="@LIBEXECDIR@/sh/cgroup-release-agent.sh"
+   local agent="${RC_LIBEXECDIR}/sh/cgroup-release-agent.sh"
mkdir /sys/fs/cgroup/openrc
mount -n -t cgroup \
-o 
none,${sysfs_opts},name=openrc,release_agent="$agent" \



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

2017-10-09 Thread Patrice Clement
commit: 1cfb6f1e0668161a33624bdafddc5bfe2438949a
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Fri Sep 29 18:32:25 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct  9 21:53:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cfb6f1e

net-dns/knot: remove old ebuilds.

Package-Manager: Portage-2.3.8, Repoman-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/5822

 net-dns/knot/Manifest |   2 -
 net-dns/knot/knot-2.5.3-r1.ebuild | 105 --
 net-dns/knot/knot-2.5.3.ebuild|  77 
 net-dns/knot/knot-2.5.4.ebuild| 101 
 4 files changed, 285 deletions(-)

diff --git a/net-dns/knot/Manifest b/net-dns/knot/Manifest
index fa27a6cd519..2472bddf144 100644
--- a/net-dns/knot/Manifest
+++ b/net-dns/knot/Manifest
@@ -1,5 +1,3 @@
 DIST knot-2.4.5.tar.xz 536 SHA256 
87ce8ccc83511c5a1f4eadd3f0122f2f5ae86fb68e9b72f0700c6f5340ba95cb SHA512 
db4919dbe2dc688f401e6611d784d47e1d40a0f8ec8c8cd6240d89ab9dd2ce7dd1976ac7cb24c712ed8aa074e0026ff0a10e9d6d5e685929d271ae554d9a1cff
 WHIRLPOOL 
cdfdf0bc2591df8436f8ab0959581129cb1a4d86138f6bb75b507d83280c7d567eb794e3b76b8374d4087721de53e4afd7566411b8e51fa2655e9e5462357ef4
-DIST knot-2.5.3.tar.xz 1073372 SHA256 
d78ae231a68ace264f5738c8e57481923bcad7413f3f440c06fa6cc0aded9d8e SHA512 
c93bfdd42c3f1e5b74de7a5bb46841bee75d5153b4c72eb876f11e193a290484620ea8f877bd039c40fc665a9d5d07905a712e8e085c3267da5db5208aa71f08
 WHIRLPOOL 
c6fa2cd7dde2cd0ee54a7fc68fdd441d6af03777c788adaf2534bc944a0a5f8f0445b2cc1f80502c905e1f55baf0f65db37b66a097e46ec9fa0c960767398278
-DIST knot-2.5.4.tar.xz 1071596 SHA256 
3fde76e9084b75df374709cb73a8289f77c6a95b7ccff8584d7423566faa24f0 SHA512 
8b41a1ef0f9633815c38267130eba8c30c8c543ad6d74e0f63db42975d419938aa9cf4a921a7af966944fbd582f0e1364c6a05c79bc01a19674ed7ce0e66ef30
 WHIRLPOOL 
2f26b03837c59fb28294d6fabd658fef2527bbe118f6ffd299fde16d8af9d6dbd16209207f912cab51fc3319ba7733eb27594f54006bf534cdfcfaea54664777
 DIST knot-2.5.5.tar.xz 1080072 SHA256 
ee204dab4dfe571ac3cc8eb7843d562fa7a129543aa9d4cb92d3469084129baf SHA512 
7f2f6e66e795e4771ac40ade8004e359a10d1bb82d851fd0e862e59a184ba9d4f028aa656064db58bfe63a3b4971c3705a83f1f1e6ada3991575a525410f0715
 WHIRLPOOL 
75284b554362b9682250103bc4c7661c1f8a939f945462e0c014cee4e8677b612fd11375fcb9bc3d9a858b52f0c8301a7c6de72f0d3af14be485f9adb1f0d512
 DIST knot-2.6.0.tar.xz 1103928 SHA256 
68e04961d0bf6ba193cb7ec658b295c4ff6e60b3754d64bcd77ebdcee0f283fd SHA512 
695d8f9c99a6bc49f504806054e2f5a0ef6d2ec43921384b3e55b0c250d2dfb5499c06534184db72c88d877ebb8815f3caa7ae1f6e1c7e59ccaa8bd9f3674c10
 WHIRLPOOL 
49027214f0aadd6070fef8efb467b68a83e8967ed3a990b138bd4e75dab68def0ca57aafc7fbd2e1819eec7a408f1af0c6dff378d3b0500368c357ce8594d403

diff --git a/net-dns/knot/knot-2.5.3-r1.ebuild 
b/net-dns/knot/knot-2.5.3-r1.ebuild
deleted file mode 100644
index 1c8e08233e8..000
--- a/net-dns/knot/knot-2.5.3-r1.ebuild
+++ /dev/null
@@ -1,105 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd user
-
-DESCRIPTION="High-performance authoritative-only DNS server"
-HOMEPAGE="http://www.knot-dns.cz/";
-SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-KNOT_MODULES=(
-   "+dnsproxy"
-   "dnstap"
-   "+noudp"
-   "+onlinesign"
-   "rosedb"
-   "+rrl"
-   "+stats"
-   "+synthrecord"
-   "+whoami"
-)
-IUSE="doc caps +fastparser idn libidn2 systemd +utils ${KNOT_MODULES[@]}"
-
-RDEPEND="
-   >=net-libs/gnutls-3.3:=
-   >=dev-db/lmdb-0.9.15
-   dev-python/lmdb
-   >=dev-libs/userspace-rcu-0.5.4
-   caps? ( >=sys-libs/libcap-ng-0.6.4 )
-   dnstap? (
-   dev-libs/fstrm
-   dev-libs/protobuf-c
-   )
-   idn? (
-   !libidn2? ( net-dns/libidn )
-   libidn2? ( >=net-dns/libidn2-2.0.0 )
-   )
-   dev-libs/libedit
-   systemd? ( >=sys-apps/systemd-229 )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( dev-python/sphinx )
-"
-
-S="${WORKDIR}/${P/_/-}"
-
-PATCHES=(
-   "${FILESDIR}/${PV}-link-with-libatomic.patch"
-)
-
-src_configure() {
-   local my_conf=()
-   for u in "${KNOT_MODULES[@]#+}"; do
-   my_conf+=("$(use_with $u module-$u)")
-   done
-
-   econf \
-   --with-storage="${EPREFIX}/var/lib/${PN}" \
-   --with-rundir="${EPREFIX}/var/run/${PN}" \
-   $(use_enable fastparser) \
-   $(use_enable dnstap) \
-   $(use_enable doc documentation) \
-   $(use_enable utils utilities) \
-   --enable-systemd=$(usex systemd) \
-   $(use_with idn libidn) \
-   "${my_conf[@]}"
-}
-
-src_compile() {
-   default
-
-   if use doc; then
-   e

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

2017-10-09 Thread Patrice Clement
commit: 35bcdad79728314efe4acdbe4e1c23d93ffb7669
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Fri Sep 29 18:26:25 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Mon Oct  9 21:53:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35bcdad7

net-dns/knot: version bump.

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

 net-dns/knot/Manifest  |   2 +
 net-dns/knot/knot-2.5.5.ebuild | 102 +
 net-dns/knot/knot-2.6.0.ebuild | 102 +
 3 files changed, 206 insertions(+)

diff --git a/net-dns/knot/Manifest b/net-dns/knot/Manifest
index e46d1d73819..fa27a6cd519 100644
--- a/net-dns/knot/Manifest
+++ b/net-dns/knot/Manifest
@@ -1,3 +1,5 @@
 DIST knot-2.4.5.tar.xz 536 SHA256 
87ce8ccc83511c5a1f4eadd3f0122f2f5ae86fb68e9b72f0700c6f5340ba95cb SHA512 
db4919dbe2dc688f401e6611d784d47e1d40a0f8ec8c8cd6240d89ab9dd2ce7dd1976ac7cb24c712ed8aa074e0026ff0a10e9d6d5e685929d271ae554d9a1cff
 WHIRLPOOL 
cdfdf0bc2591df8436f8ab0959581129cb1a4d86138f6bb75b507d83280c7d567eb794e3b76b8374d4087721de53e4afd7566411b8e51fa2655e9e5462357ef4
 DIST knot-2.5.3.tar.xz 1073372 SHA256 
d78ae231a68ace264f5738c8e57481923bcad7413f3f440c06fa6cc0aded9d8e SHA512 
c93bfdd42c3f1e5b74de7a5bb46841bee75d5153b4c72eb876f11e193a290484620ea8f877bd039c40fc665a9d5d07905a712e8e085c3267da5db5208aa71f08
 WHIRLPOOL 
c6fa2cd7dde2cd0ee54a7fc68fdd441d6af03777c788adaf2534bc944a0a5f8f0445b2cc1f80502c905e1f55baf0f65db37b66a097e46ec9fa0c960767398278
 DIST knot-2.5.4.tar.xz 1071596 SHA256 
3fde76e9084b75df374709cb73a8289f77c6a95b7ccff8584d7423566faa24f0 SHA512 
8b41a1ef0f9633815c38267130eba8c30c8c543ad6d74e0f63db42975d419938aa9cf4a921a7af966944fbd582f0e1364c6a05c79bc01a19674ed7ce0e66ef30
 WHIRLPOOL 
2f26b03837c59fb28294d6fabd658fef2527bbe118f6ffd299fde16d8af9d6dbd16209207f912cab51fc3319ba7733eb27594f54006bf534cdfcfaea54664777
+DIST knot-2.5.5.tar.xz 1080072 SHA256 
ee204dab4dfe571ac3cc8eb7843d562fa7a129543aa9d4cb92d3469084129baf SHA512 
7f2f6e66e795e4771ac40ade8004e359a10d1bb82d851fd0e862e59a184ba9d4f028aa656064db58bfe63a3b4971c3705a83f1f1e6ada3991575a525410f0715
 WHIRLPOOL 
75284b554362b9682250103bc4c7661c1f8a939f945462e0c014cee4e8677b612fd11375fcb9bc3d9a858b52f0c8301a7c6de72f0d3af14be485f9adb1f0d512
+DIST knot-2.6.0.tar.xz 1103928 SHA256 
68e04961d0bf6ba193cb7ec658b295c4ff6e60b3754d64bcd77ebdcee0f283fd SHA512 
695d8f9c99a6bc49f504806054e2f5a0ef6d2ec43921384b3e55b0c250d2dfb5499c06534184db72c88d877ebb8815f3caa7ae1f6e1c7e59ccaa8bd9f3674c10
 WHIRLPOOL 
49027214f0aadd6070fef8efb467b68a83e8967ed3a990b138bd4e75dab68def0ca57aafc7fbd2e1819eec7a408f1af0c6dff378d3b0500368c357ce8594d403

diff --git a/net-dns/knot/knot-2.5.5.ebuild b/net-dns/knot/knot-2.5.5.ebuild
new file mode 100644
index 000..0baf4877502
--- /dev/null
+++ b/net-dns/knot/knot-2.5.5.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit systemd user
+
+DESCRIPTION="High-performance authoritative-only DNS server"
+HOMEPAGE="https://www.knot-dns.cz/";
+SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+KNOT_MODULES=(
+   "+dnsproxy"
+   "dnstap"
+   "+noudp"
+   "+onlinesign"
+   "rosedb"
+   "+rrl"
+   "+stats"
+   "+synthrecord"
+   "+whoami"
+)
+IUSE="doc caps +fastparser idn libidn2 systemd +utils ${KNOT_MODULES[@]}"
+
+RDEPEND="
+   >=dev-db/lmdb-0.9.15
+   dev-libs/libedit
+   >=dev-libs/userspace-rcu-0.5.4
+   dev-python/lmdb
+   >=net-libs/gnutls-3.3:=
+   caps? ( >=sys-libs/libcap-ng-0.6.4 )
+   dnstap? (
+   dev-libs/fstrm
+   dev-libs/protobuf-c
+   )
+   idn? (
+   !libidn2? ( net-dns/libidn )
+   libidn2? ( >=net-dns/libidn2-2.0.0 )
+   )
+   systemd? ( >=sys-apps/systemd-229 )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( dev-python/sphinx )
+"
+
+S="${WORKDIR}/${P/_/-}"
+
+src_configure() {
+   local u
+   local my_conf=()
+   for u in "${KNOT_MODULES[@]#+}"; do
+   my_conf+=("$(use_with $u module-$u)")
+   done
+
+   econf \
+   --with-storage="${EPREFIX}/var/lib/${PN}" \
+   --with-rundir="${EPREFIX}/var/run/${PN}" \
+   $(use_enable fastparser) \
+   $(use_enable dnstap) \
+   $(use_enable doc documentation) \
+   $(use_enable utils utilities) \
+   --enable-systemd=$(usex systemd) \
+   $(use_with idn libidn) \
+   "${my_conf[@]}"
+}
+
+src_compile() {
+   default
+
+   if use doc; then
+   emake -C doc html
+   HTML_DOCS=( doc/_build/html/{*.html,*.js,_sources,_static} )
+   fi
+}
+
+src_test() {
+   emake check
+}
+
+src_install() {
+   default
+
+

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

2017-10-09 Thread Mike Gilbert
commit: c824d1c44fcf4556de21d2c8b8ae3732b0fc0c5b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Oct  9 21:32:32 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Oct  9 21:33:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c824d1c4

dev-python/cryptography: append -pthread to CFLAGS

This works around some weird distutils behavior when CC is set in the
environment.

Bug: https://bugs.gentoo.org/630578
Package-Manager: Portage-2.3.11_p4, Repoman-2.3.3_p62

 dev-python/cryptography/cryptography-2.0.3.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-python/cryptography/cryptography-2.0.3.ebuild 
b/dev-python/cryptography/cryptography-2.0.3.ebuild
index 1e50265eb33..1c526d65add 100644
--- a/dev-python/cryptography/cryptography-2.0.3.ebuild
+++ b/dev-python/cryptography/cryptography-2.0.3.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
 PYTHON_REQ_USE="threads(+)"
 
-inherit distutils-r1
+inherit distutils-r1 flag-o-matic
 
 DESCRIPTION="Library providing cryptographic recipes and primitives"
 HOMEPAGE="https://github.com/pyca/cryptography/ 
https://pypi.python.org/pypi/cryptography/";
@@ -42,6 +42,10 @@ DEPEND="${RDEPEND}
 
 DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst )
 
+python_configure_all() {
+   append-cflags $(test-flags-CC -pthread)
+}
+
 python_test() {
py.test -v -v -x || die "Tests fail with ${EPYTHON}"
 }



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Date-Extract/

2017-10-09 Thread Kent Fredric
commit: da2ec4eeef75975baf6e9e2a7c8ce5f24d0fc669
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Oct  9 20:43:20 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Oct  9 21:22:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2ec4ee

dev-perl/Date-Extract: Bump to version 0.60.0

Upstream:
- Packaging and doc fixes

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Date-Extract/Date-Extract-0.60.0.ebuild | 35 
 dev-perl/Date-Extract/Manifest   |  1 +
 2 files changed, 36 insertions(+)

diff --git a/dev-perl/Date-Extract/Date-Extract-0.60.0.ebuild 
b/dev-perl/Date-Extract/Date-Extract-0.60.0.ebuild
new file mode 100644
index 000..bdd73674e48
--- /dev/null
+++ b/dev-perl/Date-Extract/Date-Extract-0.60.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=ALEXMV
+DIST_VERSION=0.06
+inherit perl-module
+
+DESCRIPTION="Extract probable dates from strings"
+
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Carp
+   dev-perl/Class-Data-Inheritable
+   >=dev-perl/DateTime-Format-Natural-0.600.0
+   virtual/perl-Scalar-List-Utils
+   virtual/perl-parent
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.360.0
+   test? (
+   dev-perl/Test-MockTime
+   virtual/perl-Test-Simple
+   )
+"
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install;/use lib q[.];\nuse 
inc::Module::Install;/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}

diff --git a/dev-perl/Date-Extract/Manifest b/dev-perl/Date-Extract/Manifest
index 1133af340a6..b37cf09f8b0 100644
--- a/dev-perl/Date-Extract/Manifest
+++ b/dev-perl/Date-Extract/Manifest
@@ -1,2 +1,3 @@
 DIST Date-Extract-0.04.tar.gz 27262 SHA256 
7124d9e8d745544080f612a42d8cf6b3a27eda0f4ec607d25d255ddaadb1957a SHA512 
abe0221494e9ca1740ae1663adb44b673694d7616e8f989e05c34828a633cda4abd8df2bdfb47832423028d5ee67cd0d38e7b6b149b2737a8e865f1745dadb85
 WHIRLPOOL 
5f18d44f2989d0acc6532176ff62dd910734817411fe97adb7b1892d6f3b5605a6d110beeb21380caa0c4b6b4e7d5eeb793150c3d861c20c8673f391b0ed23fd
 DIST Date-Extract-0.05.tar.gz 27889 SHA256 
ef866b4d596e976a6f4e4b266a6ad7fe4513fad9ae761d7a9ef66f672695fe6d SHA512 
9fcbe48fe4ff571b6aa5dfb64e9f9680f5b7466474b70ae21fdedb3a6d6940d6556ed271b498da1283e418dde7be62725d4c2841126c5fc30436dd31bc3524e9
 WHIRLPOOL 
8fbc26bb1f61a46a7e9bedf30e3a7436daa443ce5e9a5832becfb9e3d9e6c5cb23bab0a4fdc34bb0dbfea38b46f7c142108673f8360806116ac9311c688a34a4
+DIST Date-Extract-0.06.tar.gz 32730 SHA256 
bc7658d5c50c3525ec0efcb55236a5de2d5d4fc06fc147fa3929c8f0953cda2b SHA512 
f50bb1e968eab9a5ee5bd1383af1599aabc7af9f9c375e3d366857f1cbf6a6912e8eff99eece2096b09a475c9eb671eeaeb8e4b76c0d865cb452ce8b0a85c448
 WHIRLPOOL 
c10d9793f02fdc6125a49858c19f4dcaa4244419072375f4b7a9b775a8abd44b75d0ceaf7c10dac5a908c922fac545b59b5ed4157dadf892d7fef9b5fc0a827b



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Date-Manip/

2017-10-09 Thread Kent Fredric
commit: af5f3d76d0e773a92c5267a54794fffb8069d520
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Oct  9 21:21:53 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Oct  9 21:22:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af5f3d76

dev-perl/Date-Manip: Bump to version 6.600.0

Upstream:
- Fix recurrences without interval, start and end dates.
- Documentation clarification

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Date-Manip/Date-Manip-6.600.0.ebuild | 37 +++
 dev-perl/Date-Manip/Manifest  |  1 +
 2 files changed, 38 insertions(+)

diff --git a/dev-perl/Date-Manip/Date-Manip-6.600.0.ebuild 
b/dev-perl/Date-Manip/Date-Manip-6.600.0.ebuild
new file mode 100644
index 000..7c5adda5093
--- /dev/null
+++ b/dev-perl/Date-Manip/Date-Manip-6.600.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=SBECK
+DIST_VERSION=6.60
+
+inherit perl-module
+
+DESCRIPTION="Perl date manipulation routines"
+
+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 ~x86-solaris"
+IUSE="elibc_musl test"
+
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-Data-Dumper
+   virtual/perl-Encode
+   virtual/perl-File-Spec
+   virtual/perl-IO
+   virtual/perl-Storable
+   elibc_musl? ( sys-libs/timezone-data )
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.670.100
+   test? (
+   dev-perl/Test-Inter
+   virtual/perl-Test-Simple
+   )
+"
+
+src_test() {
+   perl_rm_files t/pod_coverage.t t/pod.t
+   TZ=UTC perl-module_src_test
+}

diff --git a/dev-perl/Date-Manip/Manifest b/dev-perl/Date-Manip/Manifest
index 78a77194579..7301740ec80 100644
--- a/dev-perl/Date-Manip/Manifest
+++ b/dev-perl/Date-Manip/Manifest
@@ -4,3 +4,4 @@ DIST Date-Manip-6.56.tar.gz 1829314 SHA256 
acae07026b84d157f161d569b41026f4770e7
 DIST Date-Manip-6.57.tar.gz 1831444 SHA256 
864c1e71a62db5f58fd570ddf82259feb025203a58187fdddec96824f54e2f76 SHA512 
c2dbe195cfcc4c60f5b120fb4af0d487a6d3713b874f48a78c0ebf32364c2062c68e03bbc72a9ad54c25a3b6dada7a3b2041f16755665e93206de1320a88ba9a
 WHIRLPOOL 
ea35b247c79cafaa57f7ca391f3445f8936278f2d184b42dbb63f970759cbe4c6d2c75186cba9ec545215a071348267a6a9d6d66707ddcd498a73613ef6531e3
 DIST Date-Manip-6.58.tar.gz 1820488 SHA256 
485eec6c00141c477941598de7081746f57365b9705d4a751fb1d164ded2b363 SHA512 
f2f2b7e5655f31135134284a993194777313ca1f07e8869daf4850a48dbe8e5fe7fccdcd1caa82d07234fd29e5f1c74e44bc2c3c10cc6f84541b317493b40c6d
 WHIRLPOOL 
a7555c44531e07afdebcd2221e58985e9f6008b93a4f875fe76cdc85eb501def37bda103b60a7639cb5ae4d4e36ba77ab3076e17bf53c6d69fe1e3925abcad96
 DIST Date-Manip-6.59.tar.gz 1825069 SHA256 
50c71db870008dfd22f42e2e55a392a9a337a44ebbc86e98be5d209b5b0b8a12 SHA512 
ec1217cdedf4901d4b1165f1d4e1213c66a49144f7d06fba697d1216cd9e59a900ef441b9fab98990b0ef9e54a88ac27e27c336dfafcc19a1e9343c9a1e7c801
 WHIRLPOOL 
703afccadda458a94357590a094e275834cba473c38b2fd767e3d2ff9bc03873cfe466de5bc751a0b8e543d5de5260bc2eaffd34986c880a94ff1ca9e93c603a
+DIST Date-Manip-6.60.tar.gz 1824792 SHA256 
7e20d6ffa0f8e32454098b4d397b8036764e90f171156375a81cc7e55a4f434f SHA512 
46ac9696aea04167427957a43de1b44041ea05d3eaf01ffbdbfda9f458b3073f36ec46c9661ac437f96731d0f40aebc206ef385c6c4aff1b147917fc2c89a1cf
 WHIRLPOOL 
ef5cfd7358f36d2a42c60004d0b6c3d403824c6eee3144900d4d3d90381bbfa7232110f6b75ab375106c2d45ed964c1c1ef572572468787da807d1a363c62260



[gentoo-commits] proj/musl:master commit in: sys-devel/gcc/

2017-10-09 Thread Anthony G. Basile
commit: 533a9e9293c2faa71cf232ea78e95dac5ab49e31
Author: stefson  yahoo  de>
AuthorDate: Mon Oct  9 20:26:11 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct  9 20:49:56 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=533a9e92

sys-devel/gcc: remove old and vulnerable 6.3.0, see #620492

 sys-devel/gcc/gcc-6.3.0.ebuild | 35 ---
 1 file changed, 35 deletions(-)

diff --git a/sys-devel/gcc/gcc-6.3.0.ebuild b/sys-devel/gcc/gcc-6.3.0.ebuild
deleted file mode 100644
index 2dc3d1f..000
--- a/sys-devel/gcc/gcc-6.3.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-PATCH_VER="1.0"
-#UCLIBC_VER="1.0"
-
-inherit epatch toolchain
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   elibc_glibc? ( >=sys-libs/glibc-2.13 )
-   >=${CATEGORY}/binutils-2.20"
-
-if [[ ${CATEGORY} != cross-* ]] ; then
-   PDEPEND="${PDEPEND} elibc_glibc? ( >=sys-libs/glibc-2.13 )"
-fi
-
-src_prepare() {
-   toolchain_src_prepare
-
-   # Upstream Patch
-   epatch "${FILESDIR}"/${PN}-5.4.0-pr70473.patch
-
-   if use elibc_musl || [[ ${CATEGORY} = cross-*-musl ]]; then
-   epatch "${FILESDIR}"/4.9.4/boehm_gc.patch
-   epatch "${FILESDIR}"/4.9.4/posix_memalign.patch
-   epatch "${FILESDIR}"/5.4.0/cilkrts.patch
-   epatch "${FILESDIR}"/6.3.0/cpu_indicator.patch
-   epatch "${FILESDIR}"/6.3.0/musl.patch
-   fi
-}



[gentoo-commits] proj/musl:master commit in: sys-devel/gcc/, sys-devel/gcc/files/

2017-10-09 Thread Anthony G. Basile
commit: b06dd757b0e0832c7091278fe5b0f7d88211eddd
Author: stefson  yahoo  de>
AuthorDate: Mon Oct  9 20:30:07 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Oct  9 20:50:01 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=b06dd757

sys-devel/gcc: backport security-fix for #620492

 sys-devel/gcc/Manifest |   6 +-
 .../files/gcc-5.4.0-pr71696-CVE-2016-6131.patch| 252 +
 sys-devel/gcc/gcc-5.4.0-r3.ebuild  |   1 +
 3 files changed, 255 insertions(+), 4 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 1219e4e..15aa207 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -22,6 +22,7 @@ AUX gcc-4.9.3-secure-plt.patch 1478 SHA256 
b9435e19c3193e872bfdce8f635755655cf6e
 AUX gcc-4.9.3-tree-vect-data-refs-correctness.patch 315 SHA256 
904ae5ce2ecd5a2f7786c54d148a7562d0bb6f51fe60761038c2f57b8cf70356 SHA512 
88d93c061ef72035522270ab60c8c2ec04e2fa2d69763f45b9eab0c37b19c23920484358d7556ad885775071ac04cf94684a2cd8ed93418d5f0c54ac3a045c9d
 WHIRLPOOL 
2b9c281401abc111d53467c51b6238c6f4c430a73d8833f161766f973138ffe3b4fa1ffe5cc5813b5e2f8a81dee2cdcaaff2b9a8f8e13089f993f3ab3d69ccbd
 AUX gcc-5.4.0-pr68470.patch 2012 SHA256 
f8949e1d35bf7bba80aec50bdcd5d6b008f731679b06f3d89e6d8a4eb98e492e SHA512 
dea9ab12a37b88308424af2882b4755366745c204cd74e6892374d4aeb0981487f9fa1d44ab4d4e6184c83547c3ea30ed731719fa074bea62bdf8bfcf1dfbca0
 WHIRLPOOL 
2f66cd0d2dcaf237fd730eefe6f477970db14c237a8309925f799984a010f5470f6fc0f6a735316c7eab4de9dc958d773a4ffa14eea7093158690e9ff8f1847e
 AUX gcc-5.4.0-pr70473.patch 1665 SHA256 
d674821a34356e78c4aa8405fc27f30effd5a7ab4f5929892e23a4c53023e137 SHA512 
6fc8f70a1e34ae475d15fb20e198b63f00a11eff3bd09f1518b76d9622d32c9500beb49065bb1a32dc40119146f009bbda21fd0e74bc200771384b547f282680
 WHIRLPOOL 
d22f1daec32b91bd29d6b87481681c86f405b4f5567468339b9f25e0e5ad6818d171db1692be588a0174767f9fcdf21a28d895932a8ef7a2ecc910a1984075db
+AUX gcc-5.4.0-pr71696-CVE-2016-6131.patch 7759 SHA256 
2cc5c6d5da82ca102e79f561cc6c5df2a8522440f0f1c34365e45e8ed275c677 SHA512 
234918537a87c2a607cb0cd0f3127f84916c96d11c8bf80ddc270ad7a6c038c15e985d52e5ed8a054bdc51f46e1ba4e0fdf8de2f4ce4bef5c78f68a3c29578fc
 WHIRLPOOL 
ffefd49f033776b725838586ddb60ac5a2ccfe3d78937c2ad46f0473789c4e8dd4f61ad42f421a0cd6c170959969363375f484ef21777144e448b2a7bb3b88bf
 AUX gcc-7.1.0-pr80706.patch 3306 SHA256 
5fe4ae00ef68686a37e4bacd4424c9950a91e12a19d2b6a857524b558d49acf2 SHA512 
4c5a72c221d21a6ad03586d4f570caffb16be041d7a232c6da2622fd8603341c4a4e97cc48b61509fb9be04ba59d06c339a2718cf72803cff67bc31813c5161c
 WHIRLPOOL 
f3876e3d682af9ca3584a6c877c5b452e529a93adbbc69fde5a9dc0d8b973a5c4f13c5322bd70e0cd1971970a09c9891313ea51648eda8457ca8e20326dc1e8e
 AUX gcc-configure-LANG.patch 2052 SHA256 
63de6d2dcfe14f21d147abeb1390405b9220c03f8e968f482d4b4c1cf279c88b SHA512 
a694c7ac2f45cc657097ff5b0cf1356ac88a9c06035c9ba15167e9d444844d0d8a478eb1b9b62195dd063774f79697b9148b9cdb6c261640b472c291061b2129
 WHIRLPOOL 
3cc1ec912fb192ff1058de5b93e49a994ba30d1501a932290dd5b3df1cd783875621cda56edeb41894cd5fa10c04917e693a40a60be8d742ddd7992bf5d8afeb
 AUX gcc-configure-texinfo.patch 337 SHA256 
74b73a7ecec2d9876b4db480cd173632f49d5396bb8e5b3c93673f9b5b98 SHA512 
a15fba8bf2ff02bdeca54d6f186bfa08c1079c6a8ba0a3beef154483ce5c1b8c497e7ffeec32371968f0037e0ff8384609eb0c367d0155a4e5a7eef8aad084d5
 WHIRLPOOL 
39d008aad06f7621e4e5db15f5e85a59e583b43f8d247029bd4944466bb60a9795bda157d185c45c329294078e282703a243aad5c468d90c77665dd6336870d4
@@ -54,8 +55,6 @@ DIST gcc-5.4.0-patches-1.4.tar.bz2 28425 SHA256 
039b88a939c3b90777fb94c58980cbcf
 DIST gcc-5.4.0-piepatches-v0.6.5.tar.bz2 14551 SHA256 
495eb9110244dac17408cd0eb6977a593577eeb0437e72b60339b8ec394f2fb0 SHA512 
4890f0713d261982ab81a20f93c5f65193aa1dfa171e3f9e5867f0b80ec7c1e76c5a997b1a4e6f47f8ce36af54ac91125c5bff8bf6d971b7d77c65a57a40a3c0
 WHIRLPOOL 
13b74b1ca75cc94f9624fe1b52221a953962c918c2cb932302a3078b6deba4f3e501647ad8a2915edef6301e64c820ed612a6fbb9e1178cf1711fe0045686969
 DIST gcc-5.4.0-uclibc-patches-1.0.tar.bz2 3731 SHA256 
a3145faa6c81c0753ba754b735834c38987c356dadaa7c4a625c738e374604b5 SHA512 
009f34197e79c5e8c6497a0db01ac45cc657e92e56a663b4f3281661d108b2a129cd977fab5f0064f225d6812ae91e82bab22a2b10ae02c486881eeed85ec7a3
 WHIRLPOOL 
a3598ce0aad7e9110db156005190739abc5b4ceea3c327cb9c747c4cf1b99589c1a9fac170aea346eae030b09ee563f9f990e031ad7dfa1aa19b895898bf2608
 DIST gcc-5.4.0.tar.bz2 95661481 SHA256 
608df76dec2d34de6558249d8af4cbee21eceddbcb580d666f7a5a583ca3303a SHA512 
2941cc950c8f2409a314df497631f9b0266211aa74746c1839c46e04f1c7c299afe2528d1ef16ea39def408a644ba48f97519ec7a7dd37d260c3e9423514265b
 WHIRLPOOL 
ec81c8143e48bc8d9d0bbdc0fa3ca553c805193f53ac46c86127b54565894780dd97281485e396a130567464c753f043458c8e450018c957813f50ff90a40708
-DIST gcc-6.3.0-patches-1.0.tar.bz2 7596 SHA256 
6c880468ffa4ad2b324fd18c762dbdf10646089c8ab865c228e166f99a0e049c SHA512 
8fc96086bd3da37266

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

2017-10-09 Thread Joshua Kinard
commit: a97be5e4f3ca5955da6618a2d80bf60d1e6bbff1
Author: Joshua Kinard  gentoo  org>
AuthorDate: Mon Oct  9 20:42:48 2017 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Mon Oct  9 20:43:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a97be5e4

sys-kernel/mips-sources: version bumps and removals

Ebuilds for 4.8.17 and 4.10.17 were removed.
4.4.79 updated to 4.4.91
4.9.40 up dated to 4.9.54
4.12.4 updated to 4.12.14

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 sys-kernel/mips-sources/Manifest   |  14 +-
 .../mips-sources/mips-sources-4.10.17.ebuild   | 344 
 ...s-4.12.4.ebuild => mips-sources-4.12.14.ebuild} |   0
 ...es-4.4.79.ebuild => mips-sources-4.4.91.ebuild} |   0
 sys-kernel/mips-sources/mips-sources-4.8.17.ebuild | 348 -
 ...es-4.9.40.ebuild => mips-sources-4.9.54.ebuild} |   0
 6 files changed, 3 insertions(+), 703 deletions(-)

diff --git a/sys-kernel/mips-sources/Manifest b/sys-kernel/mips-sources/Manifest
index 540a16ef4be..a305036a7ec 100644
--- a/sys-kernel/mips-sources/Manifest
+++ b/sys-kernel/mips-sources/Manifest
@@ -1,24 +1,16 @@
-DIST linux-4.10.tar.xz 94231404 SHA256 
3c95d9f049bd085e5c346d2c77f063b8425f191460fcd3ae9fe7e94e0477dc4b SHA512 
c3690125a8402df638095bd98a613fcf1a257b81de7611c84711d315cd11e2634ab4636302b3742aedf1e3ba9ce0fea53fe8c7d48e37865d8ee5db3565220d90
 WHIRLPOOL 
86d021bae2dbfc4ef80c22d9e886bed4fbd9476473a2851d7beaf8ed0c7f7fbc1fa0da230eb9e763eb231b7c164c17b2a73fd336ab233543f57be280d6173738
 DIST linux-4.11.tar.xz 95447768 SHA256 
b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6 SHA512 
6610eed97ffb7207c71771198c36179b8244ace7222bebb109507720e26c5f17d918079a56d5febdd8605844d67fb2df0ebe910fa2f2f53690daf6e2a8ad09c3
 WHIRLPOOL 
f577b7c5c209cb8dfef2f1d56d77314fbd53323743a34b900e2559ab0049b7c2d6262bda136dd3d005bc0527788106e0484e46558448a8720dac389a969e5886
 DIST linux-4.12.tar.xz 99186576 SHA256 
a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 
8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
 WHIRLPOOL 
3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375
 DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc
-DIST linux-4.8.tar.xz 91966856 SHA256 
3e9150065f193d3d94bcf46a1fe9f033c7ef7122ab71d75a7fb5a2f0c9a7e11a SHA512 
a48a065f21e1c7c4de4cf8ca47b8b8d9a70f86b64e7cfa6e01be490f78895745b9c8790734b1d22182cf1f930fb87eaaa84e62ec8cc1f64ac4be9b949e7c0358
 WHIRLPOOL 
3888c8c07db0c069f827245d4d7306087f78f7d03e8240eb1fcd13622cd5dbe1c17cd8ed7dc11513f77f3efd5dbd84e2b48e82bdb9b9bfd2242fd62ae32812d5
 DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 WHIRLPOOL 
072505b29972ad120eb25a074217847c9c2813416c4903e605a0433574f5f87616dbea0b1454e4b19acc48107f11274b682958b1d773373156e99f8163e6606a
-DIST mips-sources-4.10.0-patches-v1.tar.xz 168284 SHA256 
595bd856d82c68f90a748f4ab9ba3d49265b8478589b8008f3c92663a9f76ac0 SHA512 
2286b895b6705fc7411e6685c1ac7fba457e69c883e6e3f9f129c1b30537bdadc394bddcf3d81670ed3846427076e7574725d92169ba7413834807e5f519bced
 WHIRLPOOL 
a275e6d43f2487fabfc2b3de071b08f8a037460a17bd8b8da10ef58ceccabc46634cde82bcd9681c4a4a687fccb9d3bdbfd2390cd11589d88b86774405adad93
 DIST mips-sources-4.11.0-patches-v1.tar.xz 169588 SHA256 
103888b76ec66ca075a3b3d79ad5e5a23ca5f0c14ea7162ea3b87c7a35a2a1b2 SHA512 
de3a46f6279689155064c8f3232b34bc453b2ac14fe816276b45c492d1aecb56106763b76a445545521008ce32eb9d243213b1373900a6ea4579392b43b9303c
 WHIRLPOOL 
1dd1c26f8b4cea5d67d70495784b2725f7903ca88590bf6a8cea489112a73c5d48572c0f04ea205c975106e33b21d1929586316a94a5809655f37f4dd09d20ad
 DIST mips-sources-4.12.0-patches-v1.tar.xz 169476 SHA256 
4f7c2ce12fae2314a8015e82369bc5fbbb8a907e32819ea8c06dbde952563e95 SHA512 
8c2dc743ceee4b6d57c0039f42c71212de836102f9ae23b4dfdf815e21bf2af4cad4382cc767d0eef091467c8a9a2d06ef3cbd47486e81d3d09f63728958ab93
 WHIRLPOOL 
b537e468fdeac0db1f8c9843347141d46d70ff2388fea5168dafe356fa8589e0c840fcf45392097ab87e666b9bf442fbf3831a74a5f6288c4424672e65842d08
 DIST mips-sources-4.4.0-patches-v2.tar.xz 156396 SHA256 
7aa6ab5628c9094b2aab39e47a102ad6d9c021c6bd8e9dfc6cddece8fc8baaca SHA512 
4186ee382037ec32126976ba453f78fc80c627a4ebdd79d8462f12559eb06dce25f926f3c205c7c4e5032cb501942ee10c8cb3a17339352cec3cf565c669dd52
 WHIRLPOOL

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

2017-10-09 Thread Andreas Sturmlechner
commit: b88c4ffa968778080a39fe0bd5aae12779116a45
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 20:12:31 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 20:12:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88c4ffa

media-libs/libfreehand: Add missing tests handling

Reported-by: jorgicio  gmail.com>
Gentoo-bug: 633806
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 media-libs/libfreehand/libfreehand-0.1.2.ebuild | 6 --
 media-libs/libfreehand/libfreehand-.ebuild  | 6 --
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/media-libs/libfreehand/libfreehand-0.1.2.ebuild 
b/media-libs/libfreehand/libfreehand-0.1.2.ebuild
index 3ce6e903de1..c2a85de892e 100644
--- a/media-libs/libfreehand/libfreehand-0.1.2.ebuild
+++ b/media-libs/libfreehand/libfreehand-0.1.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="MPL-2.0"
 SLOT="0"
 [[ ${PV} ==  ]] || \
 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="doc static-libs"
+IUSE="doc static-libs test"
 
 RDEPEND="
dev-libs/librevenge
@@ -27,6 +27,7 @@ DEPEND="${RDEPEND}
sys-devel/libtool
virtual/pkgconfig
doc? ( app-doc/doxygen )
+   test? ( dev-util/cppunit )
 "
 
 src_prepare() {
@@ -39,7 +40,8 @@ src_configure() {
econf \
--disable-werror \
$(use_with doc docs) \
-   $(use_enable static-libs static)
+   $(use_enable static-libs static) \
+   $(use_enable test tests)
 }
 
 src_install() {

diff --git a/media-libs/libfreehand/libfreehand-.ebuild 
b/media-libs/libfreehand/libfreehand-.ebuild
index 3ce6e903de1..c2a85de892e 100644
--- a/media-libs/libfreehand/libfreehand-.ebuild
+++ b/media-libs/libfreehand/libfreehand-.ebuild
@@ -14,7 +14,7 @@ LICENSE="MPL-2.0"
 SLOT="0"
 [[ ${PV} ==  ]] || \
 KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="doc static-libs"
+IUSE="doc static-libs test"
 
 RDEPEND="
dev-libs/librevenge
@@ -27,6 +27,7 @@ DEPEND="${RDEPEND}
sys-devel/libtool
virtual/pkgconfig
doc? ( app-doc/doxygen )
+   test? ( dev-util/cppunit )
 "
 
 src_prepare() {
@@ -39,7 +40,8 @@ src_configure() {
econf \
--disable-werror \
$(use_with doc docs) \
-   $(use_enable static-libs static)
+   $(use_enable static-libs static) \
+   $(use_enable test tests)
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Structure-Util/

2017-10-09 Thread Kent Fredric
commit: e017081ade56a6f2de262804d0733164f3a48883
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Oct  9 20:10:23 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Oct  9 20:10:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e017081a

dev-perl/Data-Structure-Util: Bump to version 0.160.0

- EAPI6
- Enable tests

Upstream:
- Fix clang/gcc warnings
- Fix assertions that are no longer valid since Perl 5.20

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../Data-Structure-Util-0.160.0.ebuild | 29 ++
 dev-perl/Data-Structure-Util/Manifest  |  1 +
 dev-perl/Data-Structure-Util/metadata.xml  |  4 +++
 3 files changed, 34 insertions(+)

diff --git a/dev-perl/Data-Structure-Util/Data-Structure-Util-0.160.0.ebuild 
b/dev-perl/Data-Structure-Util/Data-Structure-Util-0.160.0.ebuild
new file mode 100644
index 000..7c373064160
--- /dev/null
+++ b/dev-perl/Data-Structure-Util/Data-Structure-Util-0.160.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=ANDYA
+DIST_VERSION=0.16
+inherit perl-module
+
+DESCRIPTION="Change nature of data within a structure"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Digest-MD5
+   >=virtual/perl-Scalar-List-Utils-1.10.0
+   virtual/perl-Storable
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( virtual/perl-Test-Simple )
+"
+
+src_test() {
+   perl_rm_files t/00pod.t t/06signature.t
+   perl-module_src_test
+}

diff --git a/dev-perl/Data-Structure-Util/Manifest 
b/dev-perl/Data-Structure-Util/Manifest
index 8b4cd31a74a..615bb4d0764 100644
--- a/dev-perl/Data-Structure-Util/Manifest
+++ b/dev-perl/Data-Structure-Util/Manifest
@@ -1 +1,2 @@
 DIST Data-Structure-Util-0.15.tar.gz 23185 SHA256 
4228ad6fcd1081a5193d91b2c394f50a5b1e8a42e25d99fdf79c4153a40186d0 SHA512 
0bbc654b1f1cd33fdc91562d751852ec7332efa712bde026548db7f06d5b228c7d2f33f3ec417c30736ba631c41d4f5029345ae14b4bd853aee0070dd07c124a
 WHIRLPOOL 
a9d3d6aff4d1cd00ec4a9bbd12197ca93ff9d9de44248a3e3a33696c34909018553c8d596064196f07b1791d59e2bf54fd095398971c16eaa337f62b0c9e6622
+DIST Data-Structure-Util-0.16.tar.gz 23936 SHA256 
9cd42a13e65cb15f3a76296eb9a134da220168ec747c568d331a50ae7a2ddbc6 SHA512 
7dc51a4ac3617e7deaf2a1d9e25ed3b9ad94fdfd288fa3331b43b23d5e1eaa09510cb098df1fe0c7cf3f76a00012576a62741916310bedc1089b56baaac6ff74
 WHIRLPOOL 
3da0a2f6305e1d698b6ddf325fda55c2a3142a4c227d87274e8267d40f95dd3558fccd559a4339c1d4fb28c7609572eaf0569d879d55368d114798d9fb5b11af

diff --git a/dev-perl/Data-Structure-Util/metadata.xml 
b/dev-perl/Data-Structure-Util/metadata.xml
index 2b9a936fc0a..7e917c65075 100644
--- a/dev-perl/Data-Structure-Util/metadata.xml
+++ b/dev-perl/Data-Structure-Util/metadata.xml
@@ -5,4 +5,8 @@
 p...@gentoo.org
 Gentoo Perl Project
   
+  
+Data-Structure-Util
+Data::Structure::Util
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/

2017-10-09 Thread Kent Fredric
commit: 50af0a8332c5270e521c8111b96c4cbe9e9b85d7
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Oct  9 19:59:30 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Oct  9 19:59:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50af0a83

dev-perl/Data-Section: Bump to version 0.200.7

Upstream:
- Avoid potential failures with test library called "Parent" on
  case insensitive filesystems

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Data-Section/Data-Section-0.200.7.ebuild | 26 +++
 dev-perl/Data-Section/Manifest|  1 +
 2 files changed, 27 insertions(+)

diff --git a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild 
b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
new file mode 100644
index 000..1497196a044
--- /dev/null
+++ b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+DIST_AUTHOR=RJBS
+DIST_VERSION=0.27
+inherit perl-module
+
+DESCRIPTION="read multiple hunks of data out of your DATA section"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+# r: strict, warnings -> perl
+RDEPEND="
+   virtual/perl-Encode
+   >=dev-perl/MRO-Compat-0.90.0
+   >=dev-perl/Sub-Exporter-0.979.0
+"
+# t: base, lib, utf8 -> perl
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.300.0
+   test? (
+   dev-perl/Test-FailWarnings
+   >=virtual/perl-Test-Simple-0.960.0
+   )
+"

diff --git a/dev-perl/Data-Section/Manifest b/dev-perl/Data-Section/Manifest
index f23e79591db..8996f6bca55 100644
--- a/dev-perl/Data-Section/Manifest
+++ b/dev-perl/Data-Section/Manifest
@@ -1 +1,2 @@
 DIST Data-Section-0.26.tar.gz 19396 SHA256 
348501f99dab0adbe6d32143f4e79c2cbb6558c84d183cffc4c1275cacd35b5f SHA512 
8e5cc644bbee6bccde66fbd2e622fb33cb45e0950cc48abd052d0698965f6903b01a3deac251c27106165903219531e33083305233f21651f49541feefdec1b2
 WHIRLPOOL 
37bc8d89a3dc0354e854524dff710418cebf816911f84daf86fb1e1e66238cde6c139a4428331a526e9a6100b5c6064cf94241ac60e94b908ddd2baa53efe654
+DIST Data-Section-0.27.tar.gz 22094 SHA256 
cd937e5b70e34aab885ff414e2a6d19e4783b7c28fc3cda5145b230514ebb4de SHA512 
0c23141ccc2041e8c1c222c95d6eab4b56e2d77a94c68507f67acbb62fa5132e9229e9680c9fff6ebbc6a47a42cf1943d6e5b50a5f0168c66193fb52aaa241f0
 WHIRLPOOL 
cfed70e64db3935fa5338279b21497413b2506bdea694a56b8dea3589a070138868f9451b7cf41e81d0985a3fe5538eb7f71a49a664953faf6be85694463dec7



[gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-meta/

2017-10-09 Thread Andreas Sturmlechner
commit: 49d7aa11e14e2b03127fd5d2a94174f51ec1ee65
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 19:48:49 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 19:48:49 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=49d7aa11

kde-plasma/plasma-meta: Fix metadata typo

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 kde-plasma/plasma-meta/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-meta/metadata.xml 
b/kde-plasma/plasma-meta/metadata.xml
index ad0d6a1be3..a23f2925fc 100644
--- a/kde-plasma/plasma-meta/metadata.xml
+++ b/kde-plasma/plasma-meta/metadata.xml
@@ -6,7 +6,7 @@
Gentoo KDE Project


-   Pull in kde-plasma/plasma-vault 
for encypted vaults integration
+   Pull in kde-plasma/plasma-vault 
for encrypted vaults integration
Pull in a graphical display 
manager
Pull in Breeze theme for 
sys-boot/grub
Enable Breeze widget style and KCM for GTK2 
and GTK3



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

2017-10-09 Thread Andreas Sturmlechner
commit: e1b25e507a278c93aadd30ff7e97400e096f08ad
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 19:43:38 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 19:45:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1b25e50

profiles: arm: Mask kde-plasma/plasma-meta[crypt]

Gentoo-bug: 633880, 633882

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

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index df92fc99d48..0b0f2b110cc 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -2,6 +2,11 @@
 # Distributed under the terms of the GNU General Public License v2
 
 # Andreas Sturmlechner  (09 Oct 2017)
+# kde-plasma/plasma-vault is not keyworded, which depends on also
+# not yet keyworded sys-fs/cryfs, bugs #633880 and #633882
+kde-plasma/plasma-meta crypt
+
+# Andreas Sturmlechner  (09 Oct 2017)
 # app-misc/ddcutil is not keyworded, bug #627932
 kde-plasma/plasma-workspace brightness-control
 



[gentoo-commits] repo/gentoo:master commit in: net-im/pyaim-t/

2017-10-09 Thread Jonas Stein
commit: 133c4655346bd8e56723200d92b9138897a2f6fd
Author: Jonas Stein  gentoo  org>
AuthorDate: Mon Oct  9 19:44:27 2017 +
Commit: Jonas Stein  gentoo  org>
CommitDate: Mon Oct  9 19:44:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133c4655

net-im/pyaim-t: Drop proxied maintainer

Drop proxied maintainer as requested per mail.

Closes: https://bugs.gentoo.org/633170
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-im/pyaim-t/metadata.xml | 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/net-im/pyaim-t/metadata.xml b/net-im/pyaim-t/metadata.xml
index e42a28de760..756ad481ebe 100644
--- a/net-im/pyaim-t/metadata.xml
+++ b/net-im/pyaim-t/metadata.xml
@@ -1,15 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
-   
-   volk...@gmail.com
-   Chris Carlin
-   Proxy maintainer
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
+
Python based jabber transport for AIM

Install dependencies needed for the 
web



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-HexDump/, dev-perl/Data-HexDump/files/

2017-10-09 Thread Kent Fredric
commit: 96f33ef7d17bdbb464892f283a6fb5c9b9357c29
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon Oct  9 19:38:16 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon Oct  9 19:43:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f33ef7

dev-perl/Data-HexDump: Fix duplicate binscript installation

- EAPI6
- Normalize version
- Fix installing twice ( once to bin/, once to @INC )
- Fix possibly harmful `use lib` line
- Fix test warnings
- Enable tests

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 dev-perl/Data-HexDump/Data-HexDump-0.20.0.ebuild   | 20 
 .../files/Data-HexDump-0.20.0-hexdump-pl.patch | 59 ++
 .../files/Data-HexDump-0.20.0-lib-pm.patch | 28 ++
 .../files/Data-HexDump-0.20.0-signed-c.patch   | 28 ++
 4 files changed, 135 insertions(+)

diff --git a/dev-perl/Data-HexDump/Data-HexDump-0.20.0.ebuild 
b/dev-perl/Data-HexDump/Data-HexDump-0.20.0.ebuild
new file mode 100644
index 000..1ea1bc94e1b
--- /dev/null
+++ b/dev-perl/Data-HexDump/Data-HexDump-0.20.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=FTASSIN
+DIST_VERSION=0.02
+inherit perl-module
+
+DESCRIPTION="A Simple Hexadecial Dumper"
+
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~sparc ~x86"
+IUSE=""
+
+PATCHES=(
+   "${FILESDIR}/${P}-hexdump-pl.patch"
+   "${FILESDIR}/${P}-lib-pm.patch"
+   "${FILESDIR}/${P}-signed-c.patch"
+)

diff --git a/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-hexdump-pl.patch 
b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-hexdump-pl.patch
new file mode 100644
index 000..b44b5b0b24e
--- /dev/null
+++ b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-hexdump-pl.patch
@@ -0,0 +1,59 @@
+From 7b70e4169faf4e2ec0fe570b02190e71bc168377 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Tue, 10 Oct 2017 08:15:54 +1300
+Subject: Rename installed script to '.pl'
+
+Note: this must not happen in dist-root, or EUMM will also install this
+as $INC[0]/Data/hexdump.pl
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=123224
+---
+ MANIFEST  | 2 +-
+ Makefile.PL   | 2 +-
+ hexdump => bin/hexdump.pl | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+ rename hexdump => bin/hexdump.pl (95%)
+
+diff --git a/MANIFEST b/MANIFEST
+index 2e0843a..2f0c98b 100644
+--- a/MANIFEST
 b/MANIFEST
+@@ -2,7 +2,7 @@ MANIFEST
+ MANIFEST.SKIP
+ Makefile.PL
+ README
+-hexdump
++bin/hexdump.pl
+ lib/Data/HexDump.pm
+ t/compare.t
+ t/data.t
+diff --git a/Makefile.PL b/Makefile.PL
+index 0ee62bf..091fa9d 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -6,5 +6,5 @@ WriteMakefile(NAME => "Data::HexDump",
+   VERSION_FROM => "lib/Data/HexDump.pm",
+   dist => { COMPRESS => "gzip", SUFFIX => "gz" },
+   clean=> { FILES => '*.bak *.old mibs/*.dump lib/*/*~' },
+-  EXE_FILES=> [ qw(hexdump) ],
++  EXE_FILES=> [ qw(bin/hexdump.pl) ],
+ );
+diff --git a/hexdump b/bin/hexdump.pl
+similarity index 95%
+rename from hexdump
+rename to bin/hexdump.pl
+index a2e28a1..9f86cd8 100755
+--- a/hexdump
 b/bin/hexdump.pl
+@@ -5,7 +5,7 @@ use strict;
+ use Data::HexDump;
+ use FileHandle;
+ 
+-my $prgname = "hexdump";
++my $prgname = "hexdump.pl";
+ my $file = shift;
+ my $fh;
+ 
+-- 
+2.14.1
+

diff --git a/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-lib-pm.patch 
b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-lib-pm.patch
new file mode 100644
index 000..7e7606ebc9f
--- /dev/null
+++ b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-lib-pm.patch
@@ -0,0 +1,28 @@
+From 36f61caaa95340817098b8b9f6631c9f2060a292 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Tue, 10 Oct 2017 08:17:01 +1300
+Subject: Remove 'use lib lib'
+
+There's no sense in blindly adding lib based on wherever you currently
+are to an installed program, its just a security problem asking to be
+invented.
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=123225
+---
+ bin/hexdump.pl | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/bin/hexdump.pl b/bin/hexdump.pl
+index 9f86cd8..1ce8962 100755
+--- a/bin/hexdump.pl
 b/bin/hexdump.pl
+@@ -1,6 +1,5 @@
+ #!/usr/bin/perl -w
+ 
+-use lib "lib";
+ use strict;
+ use Data::HexDump;
+ use FileHandle;
+-- 
+2.14.1
+

diff --git a/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch 
b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch
new file mode 100644
index 000..6c117334cf9
--- /dev/null
+++ b/dev-perl/Data-HexDump/files/Data-HexDump-0.20.0-signed-c.patch
@@ -0,0 +1,28 @@
+From 1eec10393fbf1123327858d127e1f6d9e50f5a85 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Tue, 10 Oct 2017 08:17:59 +1300
+Subject: Don't use signed characters for 0-255
+
+'c' == -127 to 127
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=123

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

2017-10-09 Thread Michał Górny
commit: cd15175312f40cc9b8e7adfeadc9052cb496f53a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct  9 19:41:02 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct  9 19:43:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd151753

dev-ruby/rbst: New package

 dev-ruby/rbst/Manifest  |  1 +
 dev-ruby/rbst/metadata.xml  |  8 +++
 dev-ruby/rbst/rbst-0.5.1.ebuild | 48 +
 3 files changed, 57 insertions(+)

diff --git a/dev-ruby/rbst/Manifest b/dev-ruby/rbst/Manifest
new file mode 100644
index 000..1f6e7cf5d9b
--- /dev/null
+++ b/dev-ruby/rbst/Manifest
@@ -0,0 +1 @@
+DIST rbst-0.5.1.tar.gz 14039 SHA256 
95d8ba25bde6c16e0565f480b377c9377168af889c32a90b0a55dd46cf74f547 SHA512 
a7fffc1ccf495c1858d6d9fadd38a4d6a2c27a2da8eda8dad038f4ab881f4521223a35f97d4018d25b32c2621132a623040ba930494b36e1385356ecb87fecdc
 WHIRLPOOL 
d31d1742f9e998388da6d0f763ed558596b5a84cc1ae66ae296d45a26add0fefefb92b571d32cede481d28a2a3ac8eabf91cd1dc9bcc907d20bf9b9b604bd994

diff --git a/dev-ruby/rbst/metadata.xml b/dev-ruby/rbst/metadata.xml
new file mode 100644
index 000..0319eec4c8b
--- /dev/null
+++ b/dev-ruby/rbst/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   mgo...@gentoo.org
+   Michał Górny
+   
+

diff --git a/dev-ruby/rbst/rbst-0.5.1.ebuild b/dev-ruby/rbst/rbst-0.5.1.ebuild
new file mode 100644
index 000..47d5cfc57ee
--- /dev/null
+++ b/dev-ruby/rbst/rbst-0.5.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+USE_RUBY="ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_NAME="RbST"
+RUBY_FAKEGEM_GEMSPEC="RbST.gemspec"
+
+inherit python-single-r1 ruby-fakegem
+
+DESCRIPTION="A simple Ruby wrapper for processing rST via docutils"
+HOMEPAGE="https://github.com/alphabetum/rbst";
+SRC_URI="https://github.com/alphabetum/rbst/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="dev-python/docutils"
+DEPEND="
+   test? (
+   ${RDEPEND}
+   >=dev-ruby/mocha-1.1.0:1.0
+   >=dev-ruby/shoulda-3.5.0:3
+   >=dev-ruby/test-unit-3.0.9:2
+   )"
+
+# Tests are pretty much useless as they depend on very specific output
+# from an unknown docutils version.
+RESTRICT="test"
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+   ruby-ng_pkg_setup
+}
+
+all_ruby_prepare() {
+   # do not use bundler
+   sed -i -e '/bundler/,/end/d' \
+   Rakefile test/helper.rb || die
+
+   # force our python version
+   sed -i -e "s:\(python_path=\"\)python:\1${EPYTHON}:" lib/rbst.rb || die
+   python_fix_shebang lib/rst2parts
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/, kde-misc/kfilebox/, media-video/kplayer/

2017-10-09 Thread Andreas Sturmlechner
commit: ffa609bbeda9fa04c6bbc5c99732fbf0d4afb9bd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 00:17:57 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 19:26:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffa609bb

profiles: Remove last-rited packages

 kde-misc/kfilebox/Manifest  |  1 -
 kde-misc/kfilebox/kfilebox-0.4.9.ebuild | 42 -
 kde-misc/kfilebox/metadata.xml  |  8 --
 media-video/kplayer/Manifest|  1 -
 media-video/kplayer/kplayer-0.7.2-r1.ebuild | 24 -
 media-video/kplayer/metadata.xml| 12 -
 profiles/package.mask   | 12 -
 7 files changed, 100 deletions(-)

diff --git a/kde-misc/kfilebox/Manifest b/kde-misc/kfilebox/Manifest
deleted file mode 100644
index 27f6ab804d7..000
--- a/kde-misc/kfilebox/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST kfilebox_0.4.9.tar.gz 78154 SHA256 
e6652d9ea4d05fa8a9904da0563daf429a006ce5fe6ad77e34c0a1906b54199b SHA512 
5c9c6cb5dedb75ed89f9517e0204da2d3acdc2413251fdadad63d7ce154cadca1901b0a66814da33b8c38f8b99b686ff2b233c3460dbe6f3366453effb5adc46
 WHIRLPOOL 
04d8c75607a7440ac856767ea6a80b7ccffdc84a92e7cadd34dfa1526345f0142359eb8a8c62eebac28ef288809b04c7be365082b797cf8ad2dd4ade93f431c2

diff --git a/kde-misc/kfilebox/kfilebox-0.4.9.ebuild 
b/kde-misc/kfilebox/kfilebox-0.4.9.ebuild
deleted file mode 100644
index 7e50f693467..000
--- a/kde-misc/kfilebox/kfilebox-0.4.9.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-LANGS="ar br cs de el es fr gl it lt nl pl pt ru si tr zh"
-SQL_REQUIRED="always"
-inherit qt4-r2
-
-MY_P="${PN}_${PV}"
-
-DESCRIPTION="KDE dropbox client"
-HOMEPAGE="http://kdropbox.deuteros.es/";
-SRC_URI="https://dev.gentoo.org/~tampakrap/tarballs/${MY_P}.tar.gz";
-LICENSE="GPL-2"
-
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-for name in ${LANGS} ; do IUSE+="linguas_$name " ; done
-unset name
-
-DEPEND="
-   dev-qt/qtcore:4
-   dev-qt/qtdbus:4
-   dev-qt/qtgui:4
-   dev-qt/qtsql:4
-   kde-frameworks/kdelibs:4"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-src_install() {
-   qt4-r2_src_install
-
-   for lang in ${LANGS}; do
-   if ! has ${lang} ${LINGUAS}; then
-   rm -rf "${D}"/usr/share/locale/${lang} || die
-   fi
-   done
-}

diff --git a/kde-misc/kfilebox/metadata.xml b/kde-misc/kfilebox/metadata.xml
deleted file mode 100644
index 2fdbf33d963..000
--- a/kde-misc/kfilebox/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-

diff --git a/media-video/kplayer/Manifest b/media-video/kplayer/Manifest
deleted file mode 100644
index a0b118bbe19..000
--- a/media-video/kplayer/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST kplayer-0.7.2.tar.xz 5546012 SHA256 
c5e52ae74815878930e15ed0be398617d20394eec8c8f183ddd5e39a433d5d7b SHA512 
f4560b6e502845fa2d3328d1221d4808f33d3eb4d1416b575b1c718f41366d769e53ef2e1823356319c4df4040003a54c5ac4b5bfc18d1ba75ec0f72bcd5b611
 WHIRLPOOL 
c0b79637af7e5061a5d6b766ffa62531fe2ee57a5af5816d21edaf48acecb57a52418a85663e2de0874bc1fe3e774148cdd500c6c9a0527d4bd34096ff31b620

diff --git a/media-video/kplayer/kplayer-0.7.2-r1.ebuild 
b/media-video/kplayer/kplayer-0.7.2-r1.ebuild
deleted file mode 100644
index e578cd88cb5..000
--- a/media-video/kplayer/kplayer-0.7.2-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-KDE_LINGUAS="bg bs ca ca@valencia cs da de el en_GB es et eu fr ga gl he hi hne
-it ja km lt mai nb nds nl pa pl pt pt_BR ro ru sr sr@ijekavian 
sr@ijekavianlatin
-sr@latin sv th tr uk zh_CN zh_TW"
-KDE_HANDBOOK="optional"
-QT3SUPPORT_REQUIRED="true"
-inherit kde4-base
-
-DESCRIPTION="KPlayer is a KDE media player based on mplayer"
-HOMEPAGE="https://projects.kde.org/projects/unmaintained/kplayer";
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="4"
-KEYWORDS="amd64 x86"
-IUSE="debug"
-
-RDEPEND="${DEPEND}
-   >=media-video/mplayer-1.0_rc1
-"

diff --git a/media-video/kplayer/metadata.xml b/media-video/kplayer/metadata.xml
deleted file mode 100644
index 66e12c8c3bd..000
--- a/media-video/kplayer/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd";>
-
-   
-   media-vi...@gentoo.org
-   Gentoo Video project
-   
-
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-

diff --git a/profiles/package.mask b/profiles/package.mask
index 8e46d08ee12..b2314ab3791 100644
--- a/profiles/package.mask
+++ b/profiles/packag

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

2017-10-09 Thread Andreas Sturmlechner
commit: e63c7f033ada60c23f32f4e1d50de73e3bc8b984
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 19:25:35 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 19:26:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e63c7f03

profiles: arm: Mask kde-plasma/powerdevil[brightness-control]

Gentoo-bug: 627932

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

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 8fbf5852ce1..df92fc99d48 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Andreas Sturmlechner  (09 Oct 2017)
+# app-misc/ddcutil is not keyworded, bug #627932
+kde-plasma/plasma-workspace brightness-control
+
 # Patrice Clement  (24 Sep 2017)
 # Unmask Raspberry Pi support on arm.
 # Recent mpv versions has broken Raspberry Pi, see Gentoo bug 630556.



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

2017-10-09 Thread Amy Liffey
commit: 7448437313040b4f25c06a86725932483d7081e8
Author: Amy Liffey  gentoo  org>
AuthorDate: Mon Oct  9 19:22:09 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Oct  9 19:23:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74484373

dev-python/vdirsyncer: add req python use sqlite

Suggested-by: Christopher Head  chead.ca>
Closes: https://bugs.gentoo.org/630060

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.16.0.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.16.0-r1.ebuild
similarity index 98%
rename from dev-python/vdirsyncer/vdirsyncer-0.16.0.ebuild
rename to dev-python/vdirsyncer/vdirsyncer-0.16.0-r1.ebuild
index b224f165d05..a20a3aec23a 100644
--- a/dev-python/vdirsyncer/vdirsyncer-0.16.0.ebuild
+++ b/dev-python/vdirsyncer/vdirsyncer-0.16.0-r1.ebuild
@@ -4,6 +4,7 @@
 EAPI="6"
 
 PYTHON_COMPAT=( python3_{4,5,6} )
+PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1
 



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

2017-10-09 Thread Sergei Trofimovich
commit: 8216925e5452363a7e5001dd9da87455a1362e1b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct  9 19:21:02 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct  9 19:21:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8216925e

dev-lang/nim: add basic prefix support

Package-Manager: Portage-2.3.11, Repoman-2.3.3

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

diff --git a/dev-lang/nim/nim-0.17.2.ebuild b/dev-lang/nim/nim-0.17.2.ebuild
index f26909ecc79..523a411b0dd 100644
--- a/dev-lang/nim/nim-0.17.2.ebuild
+++ b/dev-lang/nim/nim-0.17.2.ebuild
@@ -40,8 +40,8 @@ src_test() {
 }
 
 src_install() {
-   ./koch install "${D}/usr" || die "koch install failed"
-   rm -r "${D}/usr/nim/doc" || die "failed to remove 'doc'"
+   ./koch install "${ED}/usr" || die "koch install failed"
+   rm -r "${ED}/usr/nim/doc" || die "failed to remove 'doc'"
 
dodir /usr/bin
dosym ../nim/bin/nim /usr/bin/nim



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

2017-10-09 Thread Andreas Sturmlechner
commit: 9aed38a15df19a462635f2d9f12982c63988cdfc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 18:58:30 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 19:02:53 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9aed38a1

kde-apps/akonadi: Add USE=networkmanager

Upstream commit a5adf445616d3d5384f752a26cb9c46172c5315a

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 kde-apps/akonadi/akonadi-.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/kde-apps/akonadi/akonadi-.ebuild 
b/kde-apps/akonadi/akonadi-.ebuild
index 8fe5659f29..3cd41b9245 100644
--- a/kde-apps/akonadi/akonadi-.ebuild
+++ b/kde-apps/akonadi/akonadi-.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://community.kde.org/KDE_PIM/akonadi";
 
 KEYWORDS=""
 LICENSE="LGPL-2.1+"
-IUSE="+mysql postgres sqlite tools xml"
+IUSE="+mysql networkmanager postgres sqlite tools xml"
 
 REQUIRED_USE="|| ( mysql postgres sqlite ) test? ( tools )"
 
@@ -33,7 +33,6 @@ COMMON_DEPEND="
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep networkmanager-qt)
$(add_qt_dep qtdbus)
$(add_qt_dep qtgui)
$(add_qt_dep qtnetwork)
@@ -41,6 +40,7 @@ COMMON_DEPEND="
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
x11-misc/shared-mime-info
+   networkmanager? ( $(add_frameworks_dep networkmanager-qt) )
sqlite? ( dev-db/sqlite:3 )
xml? ( dev-libs/libxml2 )
 "
@@ -79,6 +79,7 @@ pkg_setup() {
 
 src_configure() {
local mycmakeargs=(
+   $(cmake-utils_use_find_package networkmanager 
KF5NetworkManagerQt)
-DAKONADI_BUILD_QSQLITE=$(usex sqlite)
-DBUILD_TOOLS=$(usex tools)
$(cmake-utils_use_find_package xml LibXml2)



[gentoo-commits] proj/kde:master commit in: kde-plasma/drkonqi/

2017-10-09 Thread Andreas Sturmlechner
commit: 559bfbe852216bff1d4df9c5952cdba8e6074085
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Oct  9 19:16:24 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Oct  9 19:16:24 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=559bfbe8

kde-plasma/drkonqi: Sync KEYWORDS with plasma-workspace

Package was split from there and remains largely unchanged.

Package-Manager: Portage-2.3.11, Repoman-2.3.3

 kde-plasma/drkonqi/drkonqi-5.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/drkonqi/drkonqi-5.11.0.ebuild 
b/kde-plasma/drkonqi/drkonqi-5.11.0.ebuild
index 2eaa3a1af6..530280b565 100644
--- a/kde-plasma/drkonqi/drkonqi-5.11.0.ebuild
+++ b/kde-plasma/drkonqi/drkonqi-5.11.0.ebuild
@@ -7,7 +7,7 @@ inherit kde5
 
 DESCRIPTION="Plasma crash handler, gives the user feedback if a program 
crashed"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="X"
 
 COMMON_DEPEND="



  1   2   3   >