[gentoo-commits] repo/gentoo:master commit in: dev-perl/Debug-Client/files/, dev-perl/Debug-Client/

2017-06-30 Thread Kent Fredric
commit: 120dd1264fc3463f6ce7ee647448dbd7276e14eb
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jul  1 00:59:07 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul  1 00:59:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=120dd126

dev-perl/Debug-Client: Fix test failures due to '.' in @INC ( bug #615722 )

- Communicates src_prepare hack to patch
- Fixes test logic with patch to not fail as well ( submitted upstream )

Bug: https://bugs.gentoo.org/615722
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Debug-Client/Debug-Client-0.300.0.ebuild  |   7 +-
 .../files/Debug-Client-0.30-no-dot-inc.patch   | 534 +
 2 files changed, 535 insertions(+), 6 deletions(-)

diff --git a/dev-perl/Debug-Client/Debug-Client-0.300.0.ebuild 
b/dev-perl/Debug-Client/Debug-Client-0.300.0.ebuild
index 27b9217908b..4aa9d2aeffe 100644
--- a/dev-perl/Debug-Client/Debug-Client-0.300.0.ebuild
+++ b/dev-perl/Debug-Client/Debug-Client-0.300.0.ebuild
@@ -38,9 +38,4 @@ DEPEND="${RDEPEND}
>=dev-perl/Term-ReadLine-Perl-1.30.300
)
 "
-
-src_prepare() {
-   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
-   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-   perl-module_src_prepare
-}
+PATCHES=( "${FILESDIR}/${PN}-0.30-no-dot-inc.patch" )

diff --git a/dev-perl/Debug-Client/files/Debug-Client-0.30-no-dot-inc.patch 
b/dev-perl/Debug-Client/files/Debug-Client-0.30-no-dot-inc.patch
new file mode 100644
index 000..4727a9a7a40
--- /dev/null
+++ b/dev-perl/Debug-Client/files/Debug-Client-0.30-no-dot-inc.patch
@@ -0,0 +1,534 @@
+From b49aa99cbf608072dd6969bd859765dbf4be71f5 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Sat, 1 Jul 2017 12:21:16 +1200
+Subject: [PATCH] Fix broken loading of local modules under Perl 5.26
+
+Perl 5.26 breaks the implication that:
+
+  use inc::Module::Install;
+  use t::lib::Debugger;
+
+Will load:
+
+  ./inc/Module/Install.pm
+  ./t/lib/Debugger.pm
+
+Respectively, due to '.' ceasing to be in @INC
+
+This fixes:
+- Makefile.PL by re-inserting the '.' ( which is the only
+  thing that works, due to Module::Install shenanigans ).
+- Tests by replacing "use" statements with equivalent "require"
+statements.
+
+Some of the existing code ( eg: use_ok ) was already spurious and not
+very smart, because calling ->import while being outside of BEGIN { }
+has limited usefullness.
+
+But this was left with the semantically equivalent code that retains
+the loading of the relative path.
+
+There are strategies that would be "nicer" than what I've done,
+but they all wind up with you wanting to rename "Debugger.pm" to
+something else, because:
+
+  use lib "t/lib";
+  use Debugger;
+
+Is going to give people a much different impression from either
+
+  use t::lib::Debugger
+
+Or
+
+  BEGIN {
+require "./t/lib/Debugger.pm";
+t::lib::Debugger->import();
+  }
+
+This closes https://github.com/PadreIDE/Debug-Client/issues/6
+PR: https://github.com/PadreIDE/Debug-Client/pull/7
+---
+ Changes  | 2 ++
+ Makefile.PL  | 1 +
+ t/01-compile.t   | 2 +-
+ t/08-io.t| 5 -
+ t/10-top_tail.t  | 5 -
+ t/10-top_tail_old.t  | 6 +-
+ t/11-add.t   | 5 -
+ t/13-return.t| 5 -
+ t/14-run.t   | 5 -
+ t/15-run_to_line.t   | 5 -
+ t/16-run_to_sub.t| 5 -
+ t/17-stepin.t| 5 -
+ t/18-stepout.t   | 5 -
+ t/19-stepover.t  | 5 -
+ t/20-get_value.t | 5 -
+ t/21-toggle_trace.t  | 5 -
+ t/22-subnames.t  | 5 -
+ t/23-breakpoints.t   | 5 -
+ t/24-y_zero.t| 5 -
+ t/25-get_v_vars.t| 5 -
+ t/26-get_x_vars.t| 5 -
+ t/27-get_p_exp.t | 5 -
+ t/28-get_h_var.t | 5 -
+ t/29-options.t   | 5 -
+ t/40-test_1415-old.t | 5 -
+ t/40-test_1415.t | 5 -
+ t/99-perldb.t| 5 -
+ t/lib/Test_1415.pm   | 5 -
+ t/lib/Top_Tail.pm| 3 ++-
+ 29 files changed, 107 insertions(+), 27 deletions(-)
+
+diff --git a/Changes b/Changes
+index 104d73f..f9b1090 100644
+--- a/Changes
 b/Changes
+@@ -1,5 +1,7 @@
+ Changes for Debug::Client
+ 
++ - Fix build and test failures under Perl 5.26 when '.' is not in @INC 
(KENTNL, PR #7)
++
+ 0.30 2017-06-19
+  - Merged PR #5 (Fixed test failure due to perl regression fix in 5.21.3), 
thanks @TBSliver.
+ 
+diff --git a/Makefile.PL b/Makefile.PL
+index 8702771..74201e3 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -1,3 +1,4 @@
++use lib '.';
+ use inc::Module::Install 1.08;
+ 
+ name 'Debug-Client';
+diff --git a/t/01-compile.t b/t/01-compile.t
+index 73eb289..a6130a5 100644
+--- a/t/01-compile.t
 b/t/01-compile.t
+@@ -8,7 +8,7 @@ use Test::More tests => 18;
+ 
+ BEGIN {
+   use_ok('Debug::Client');
+-  use_ok('t::lib::Debugger');
++  require_ok('./t/lib/Debugger.pm');
+ 
+   

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

2017-06-30 Thread Andreas Hüttel
commit: 506962d96e5e6f6a6e3111912aeafa22fe9400ad
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 23:32:31 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 23:32:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=506962d9

dev-perl/MooseX-Types-DateTime-ButMaintained: Add build fix for Perl 5.26, bug 
617142

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild  | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git 
a/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
 
b/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
index de1ef9c2935..ee7bef5ed59 100644
--- 
a/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
+++ 
b/dev-perl/MooseX-Types-DateTime-ButMaintained/MooseX-Types-DateTime-ButMaintained-0.160.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=ECARROLL
-MODULE_VERSION=0.16
+DIST_AUTHOR=ECARROLL
+DIST_VERSION=0.16
 inherit perl-module
 
 DESCRIPTION="DateTime related constraints and coercions for Moose"
@@ -31,6 +31,11 @@ DEPEND="${RDEPEND}
>=dev-perl/Test-Exception-0.27
>=virtual/perl-Test-Simple-1.1.10
>=dev-perl/Time-Duration-Parse-0.06
-   )"
+   )
+"
 
-SRC_TEST=do
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/MogileFS-Client-Async/

2017-06-30 Thread Andreas Hüttel
commit: 344f02daef95220239bcb170d4fdc081a90499bd
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 23:28:57 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 23:28:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=344f02da

dev-perl/MogileFS-Client-Async: Add build fix for Perl 5.26, bug 617138

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../MogileFS-Client-Async-0.030.0-r1.ebuild| 22 +++---
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git 
a/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.030.0-r1.ebuild 
b/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.030.0-r1.ebuild
index a3d5766e320..47d6e47d6de 100644
--- a/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.030.0-r1.ebuild
+++ b/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.030.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=DLAMBLEY
-MODULE_VERSION=${PV%.0}
+DIST_AUTHOR=DLAMBLEY
+DIST_VERSION=${PV%.0}
 inherit perl-module
 
 DESCRIPTION="MogileFS Client using AnyEvent non-blocking IO"
@@ -13,14 +13,22 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-RDEPEND="dev-perl/IO-AIO
+RDEPEND="
+   dev-perl/IO-AIO
dev-perl/AnyEvent
dev-perl/AnyEvent-HTTP
dev-perl/File-Slurp
>=dev-perl/MogileFS-Client-1.16
dev-perl/Try-Tiny
-   dev-perl/namespace-clean"
+   dev-perl/namespace-clean
+"
 DEPEND="${RDEPEND}"
 
 # Tests only available if you have a local mogilefsd on 127.0.0.1:7001
-#SRC_TEST="do"
+DIST_TEST=skip
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-BigInt-Lite/

2017-06-30 Thread Andreas Hüttel
commit: 3564203a08d8d5d069120b0cae5ab1c74b82f97b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 23:25:47 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 23:25:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3564203a

dev-perl/Math-BigInt-Lite: Add build fix for Perl 5.26, bug 617134

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../Math-BigInt-Lite-0.140.0.ebuild| 27 ++
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/dev-perl/Math-BigInt-Lite/Math-BigInt-Lite-0.140.0.ebuild 
b/dev-perl/Math-BigInt-Lite/Math-BigInt-Lite-0.140.0.ebuild
index 519a06626cf..8a4d4061f80 100644
--- a/dev-perl/Math-BigInt-Lite/Math-BigInt-Lite-0.140.0.ebuild
+++ b/dev-perl/Math-BigInt-Lite/Math-BigInt-Lite-0.140.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
@@ -13,17 +13,26 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
-RDEPEND=">=virtual/perl-Math-BigInt-1.940.0
-   >=virtual/perl-Math-BigRat-0.190.0"
+RDEPEND="
+   >=virtual/perl-Math-BigInt-1.940.0
+   >=virtual/perl-Math-BigRat-0.190.0
+"
 DEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.420.0
-   test? ( >=virtual/perl-Test-Simple-0.520.0 )"
+   test? ( >=virtual/perl-Test-Simple-0.520.0 )
+"
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}
 
 src_test() {
-   local bad_files=( "t/pod_cov.t" "t/pod.t" );
-   einfo "t/bigintpm.t is broken: 
https://rt.cpan.org/Public/Bug/Display.html?id=75667;;
-   bad_files+=( "t/bigintpm.t" );
-   perl_rm_files "${bad_files[@]}";
+   local bad_files=( "t/pod_cov.t" "t/pod.t" )
+   # https://rt.cpan.org/Public/Bug/Display.html?id=75667;
+   bad_files+=( "t/bigintpm.t" )
 
-   perl-module_src_test;
+   perl_rm_files "${bad_files[@]}"
+   perl-module_src_test
 }



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

2017-06-30 Thread Andreas Hüttel
commit: 46d0b514f8ef29f02a22780352b071fd911a704c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 23:00:34 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 23:00:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d0b514

dev-perl/Mail-Builder: Add build fix for Perl 5.26, bug 617132

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Mail-Builder/Mail-Builder-2.90.0.ebuild | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Mail-Builder/Mail-Builder-2.90.0.ebuild 
b/dev-perl/Mail-Builder/Mail-Builder-2.90.0.ebuild
index 6dc71c98a1f..2b52b9d7ee6 100644
--- a/dev-perl/Mail-Builder/Mail-Builder-2.90.0.ebuild
+++ b/dev-perl/Mail-Builder/Mail-Builder-2.90.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
@@ -37,6 +37,13 @@ DEPEND="${RDEPEND}
dev-perl/Test-NoWarnings
)
 "
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}
+
 src_install() {
perl-module_src_install
 



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

2017-06-30 Thread Andreas Hüttel
commit: 89e2664610586824818450f0672e7a98d10e8559
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 22:58:06 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 22:58:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e26646

dev-perl/Module-Manifest: Add build fix for Perl 5.26, bug 617112

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild 
b/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild
index 0ca3ebba59e..9551af0c4ac 100644
--- a/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild
+++ b/dev-perl/Module-Manifest/Module-Manifest-1.80.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=ADAMK
-MODULE_VERSION=1.08
+DIST_AUTHOR=ADAMK
+DIST_VERSION=1.08
 inherit perl-module
 
 DESCRIPTION="Parse and examine a Perl distribution MANIFEST file"
@@ -25,4 +25,8 @@ DEPEND="
)
 "
 
-SRC_TEST=do
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install::DSL/use lib q[.];\nuse 
inc::Module::Install::DSL/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-Mbox-MessageParser/

2017-06-30 Thread Andreas Hüttel
commit: 5b5087afce003e7f8cbd542fd83492546abb18fc
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 22:55:43 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 22:55:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b5087af

dev-perl/Mail-Mbox-MessageParser: Add build fix for Perl 5.26, bug 617108

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../Mail-Mbox-MessageParser-1.510.500.ebuild   | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git 
a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild 
b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
index 33c6a385c9e..f541ca2fe60 100644
--- a/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
+++ b/dev-perl/Mail-Mbox-MessageParser/Mail-Mbox-MessageParser-1.510.500.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=DCOPPIT
-MODULE_VERSION=1.5105
+DIST_AUTHOR=DCOPPIT
+DIST_VERSION=1.5105
 inherit perl-module
 
 DESCRIPTION="A fast and simple mbox folder reader"
@@ -26,4 +26,8 @@ DEPEND="${RDEPEND}
test? ( virtual/perl-Test-Simple )
 "
 
-SRC_TEST="do parallel"
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



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

2017-06-30 Thread Andreas Hüttel
commit: 37a0685f2000faa3a92f432c224ee36fa2153b19
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 22:53:07 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 22:53:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37a0685f

dev-perl/MP3-Info: Add build fix for Perl 5.26, bug 617104

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild 
b/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild
index 09cc2558a1d..80215c6d2b8 100644
--- a/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild
+++ b/dev-perl/MP3-Info/MP3-Info-1.240.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=DANIEL
-MODULE_VERSION=1.24
+DIST_AUTHOR=DANIEL
+DIST_VERSION=1.24
 inherit perl-module
 
 DESCRIPTION="A Perl module to manipulate/fetch info from MP3 files"
@@ -13,4 +13,8 @@ SLOT="0"
 KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~x86-solaris"
 IUSE=""
 
-SRC_TEST="do"
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



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

2017-06-30 Thread Andreas Hüttel
commit: d6dd68a471659ba812f5fe9526b1c2f181ff7b32
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 22:51:06 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 22:51:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6dd68a4

dev-perl/Locale-Msgfmt: Add build fix for Perl 5.26, bug 617102

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild 
b/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
index 3e15b6952a3..b7d72d4bcb7 100644
--- a/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
+++ b/dev-perl/Locale-Msgfmt/Locale-Msgfmt-0.150.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=AZAWAWI
-MODULE_VERSION=0.15
+DIST_AUTHOR=AZAWAWI
+DIST_VERSION=0.15
 inherit perl-module
 
 DESCRIPTION="Compile .po files to .mo files"
@@ -14,7 +14,10 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 RDEPEND=""
-DEPEND="
-   test? ( virtual/perl-Test-Simple )"
+DEPEND="test? ( virtual/perl-Test-Simple )"
 
-SRC_TEST=do
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install::DSL/use lib q[.];\nuse 
inc::Module::Install::DSL/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



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

2017-06-30 Thread Andreas Hüttel
commit: b3285b9b05047632fe6bb21172db24de3b5e61be
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 22:46:31 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 22:46:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3285b9b

dev-perl/LaTeX-Driver: Add dependency on LaTeX

If it's not installed at build time, the install of LaTeX-Driver will
silently succeed but not install any module... :/

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild 
b/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild
index f422f50af56..239b44ef514 100644
--- a/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild
+++ b/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild
@@ -22,6 +22,7 @@ RDEPEND="
virtual/perl-Getopt-Long
dev-perl/Readonly
virtual/perl-parent
+   virtual/latex-base
 "
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker



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

2017-06-30 Thread Andreas Hüttel
commit: 468340a738fa0179000ef01dbd002194caacbe6f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 30 22:42:44 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 30 22:42:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=468340a7

dev-perl/LaTeX-Driver: Add build fix for Perl 5.26, bug 617040

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild | 15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild 
b/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild
index 4cc4c610109..f422f50af56 100644
--- a/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild
+++ b/dev-perl/LaTeX-Driver/LaTeX-Driver-0.200.4.ebuild
@@ -1,15 +1,14 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=EINHVERFR
-MODULE_VERSION=0.200.4
+DIST_AUTHOR=EINHVERFR
+DIST_VERSION=0.200.4
 inherit perl-module
 
 DESCRIPTION="Perl encapsulation of invoking the Latex programs"
 
-LICENSE="|| ( GPL-1+ Artistic )"
 SLOT="0"
 KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd"
 IUSE="test"
@@ -32,4 +31,8 @@ DEPEND="${RDEPEND}
)
 "
 
-SRC_TEST="do"
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: net-print/cups/, net-print/cups/files/

2017-06-30 Thread Lars Wendler
commit: cdbe640f476bba5820955c25f7ed5c19a26c28db
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 30 21:49:11 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 30 21:49:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdbe640f

net-print/cups: Removed old.

Fixed live ebuild.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-print/cups/Manifest|   1 -
 net-print/cups/cups-2.2.2-r1.ebuild| 352 
 net-print/cups/cups-2.2.2-r2.ebuild| 347 
 net-print/cups/cups-2.2.2-r3.ebuild| 353 -
 net-print/cups/cups-.ebuild|   9 +-
 .../cups/files/cups-2.2.2-no_kerberos_config.patch |  57 
 6 files changed, 1 insertion(+), 1118 deletions(-)

diff --git a/net-print/cups/Manifest b/net-print/cups/Manifest
index ecf1c7b02ab..a2cc1d96677 100644
--- a/net-print/cups/Manifest
+++ b/net-print/cups/Manifest
@@ -1,4 +1,3 @@
 DIST cups-2.1.4.tar.gz 9572653 SHA256 
1f182f145489e2454969b221056b6b9bac2beb4e38cd75fa12a9ec15d24d5301 SHA512 
5f36d21e1e094323f1811229b452f096f3f0b264757b3c3b1742bbd7ea0059e34d3cd2fbf3b6856d25a04ae1779babafa6d598a8ba249448fce3bf7cafa59aae
 WHIRLPOOL 
217b9024c34369c8839b0a1b2b3924eb00e9b8d87cfd8d50a59ad0c33c1044f53d479246d67dff4598049efd15259def90e4bcddc6c3c20dff38811e159d2c4b
-DIST cups-2.2.2.tar.gz 9489493 SHA256 
5e7b396b41f55231dde8dd0465cdd81583cd47ecffe4960c777162fbe3cce03c SHA512 
98640b62f706609bbe703318999efb8f78c747e751aafaa1a6f38f4f0dca6fad84ec7e1dfbe9ce17b02ba2ac3fd6e8e480582be5c2cee8eaa707c0ca7eb1978f
 WHIRLPOOL 
745c80114dcac1ed61eec8a8d903ced0d005ec0ad2c05883dcb0aaf9afaf1c410801245ef6bdcb5b77f09a9d96f90e2f94d553b4a19d9425d4005738c8508feb
 DIST cups-2.2.3.tar.gz 9496214 SHA256 
7aa7e8d581f0eb204f75203082403bfa931f8c058bffae71b210800102e5feb5 SHA512 
95d8f18fad5b3fd25fe88cc29d159723dcfa735248503d0285949fcd7451f0ccac286719077d0f8a8eda7ee9a053a3d30fa3fd28cb74b59336b6718552d9d2e8
 WHIRLPOOL 
3aa43f1b83ee62939939bd148c2ab13985143746f7acc3d9c82283e1b096524c7738ae5e1670e717c9329f8d3e917cfcc1c8a7e33af93baa74ea83837d92b5f9
 DIST cups-2.2.4.tar.gz 9984903 SHA256 
339fb0c0a70a1edf1ef169f2afb21bab92cdd3074adf630352c427b795f20fa7 SHA512 
765fe49d1a7a491d7d5db051f73d039d183d0f7a560e9fd89f6732b8a699d3246080e1aaed4ddfed3a9fbdb876b09aa22939d6ee5da2280b1246e4ba933c55f0
 WHIRLPOOL 
86557f6244b7aa7b19cc67caff7c845291d09699353bd337090111f92b6afb6b9e175ca68df8a15d8915a5a15fd72348805e4ecb7da532a994f46b2c2d4cdada

diff --git a/net-print/cups/cups-2.2.2-r1.ebuild 
b/net-print/cups/cups-2.2.2-r1.ebuild
deleted file mode 100644
index 1d638596782..000
--- a/net-print/cups/cups-2.2.2-r1.ebuild
+++ /dev/null
@@ -1,352 +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 autotools fdo-mime gnome2-utils flag-o-matic linux-info \
-   multilib multilib-minimal pam python-single-r1 user versionator \
-   java-pkg-opt-2 systemd toolchain-funcs
-
-MY_P=${P/_rc/rc}
-MY_P=${MY_P/_beta/b}
-MY_PV=${PV/_rc/rc}
-MY_PV=${MY_PV/_beta/b}
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="http://www.cups.org/cups.git;
-   if [[ ${PV} !=  ]]; then
-   EGIT_BRANCH=branch-${PV/.}
-   fi
-else
-   SRC_URI="https://github.com/apple/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
-fi
-
-DESCRIPTION="The Common Unix Printing System"
-HOMEPAGE="http://www.cups.org/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="acl dbus debug java kerberos lprng-compat pam
-   python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf"
-
-LANGS="ca cs de es fr it ja ru"
-for X in ${LANGS} ; do
-   IUSE="${IUSE} +linguas_${X}"
-done
-
-CDEPEND="
-   app-text/libpaper
-   sys-libs/zlib
-   acl? (
-   kernel_linux? (
-   sys-apps/acl
-   sys-apps/attr
-   )
-   )
-   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
-   java? ( >=virtual/jre-1.6:* )
-   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
-   !lprng-compat? ( !net-print/lprng )
-   pam? ( virtual/pam )
-   python? ( ${PYTHON_DEPS} )
-   ssl? (
-   >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}]
-   >=net-libs/gnutls-2.12.23-r6[${MULTILIB_USEDEP}]
-   )
-   systemd? ( sys-apps/systemd )
-   usb? ( virtual/libusb:1 )
-   X? ( x11-misc/xdg-utils )
-   xinetd? ( sys-apps/xinetd )
-   zeroconf? ( >=net-dns/avahi-0.6.31-r2[${MULTILIB_USEDEP}] )
-   abi_x86_32? (
-   !<=app-emulation/emul-linux-x86-baselibs-20140508
-   

[gentoo-commits] repo/gentoo:master commit in: net-print/cups/files/, net-print/cups/

2017-06-30 Thread Lars Wendler
commit: 124b7ed7b9e73215f832640b729f090fd39c7015
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 30 21:45:04 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 30 21:49:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=124b7ed7

net-print/cups: Bump to version 2.2.4

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-print/cups/Manifest|   1 +
 net-print/cups/cups-2.2.4.ebuild   | 349 +
 .../cups/files/cups-2.2.4-fix-install-perms.patch  |  18 ++
 3 files changed, 368 insertions(+)

diff --git a/net-print/cups/Manifest b/net-print/cups/Manifest
index 001caaa444e..ecf1c7b02ab 100644
--- a/net-print/cups/Manifest
+++ b/net-print/cups/Manifest
@@ -1,3 +1,4 @@
 DIST cups-2.1.4.tar.gz 9572653 SHA256 
1f182f145489e2454969b221056b6b9bac2beb4e38cd75fa12a9ec15d24d5301 SHA512 
5f36d21e1e094323f1811229b452f096f3f0b264757b3c3b1742bbd7ea0059e34d3cd2fbf3b6856d25a04ae1779babafa6d598a8ba249448fce3bf7cafa59aae
 WHIRLPOOL 
217b9024c34369c8839b0a1b2b3924eb00e9b8d87cfd8d50a59ad0c33c1044f53d479246d67dff4598049efd15259def90e4bcddc6c3c20dff38811e159d2c4b
 DIST cups-2.2.2.tar.gz 9489493 SHA256 
5e7b396b41f55231dde8dd0465cdd81583cd47ecffe4960c777162fbe3cce03c SHA512 
98640b62f706609bbe703318999efb8f78c747e751aafaa1a6f38f4f0dca6fad84ec7e1dfbe9ce17b02ba2ac3fd6e8e480582be5c2cee8eaa707c0ca7eb1978f
 WHIRLPOOL 
745c80114dcac1ed61eec8a8d903ced0d005ec0ad2c05883dcb0aaf9afaf1c410801245ef6bdcb5b77f09a9d96f90e2f94d553b4a19d9425d4005738c8508feb
 DIST cups-2.2.3.tar.gz 9496214 SHA256 
7aa7e8d581f0eb204f75203082403bfa931f8c058bffae71b210800102e5feb5 SHA512 
95d8f18fad5b3fd25fe88cc29d159723dcfa735248503d0285949fcd7451f0ccac286719077d0f8a8eda7ee9a053a3d30fa3fd28cb74b59336b6718552d9d2e8
 WHIRLPOOL 
3aa43f1b83ee62939939bd148c2ab13985143746f7acc3d9c82283e1b096524c7738ae5e1670e717c9329f8d3e917cfcc1c8a7e33af93baa74ea83837d92b5f9
+DIST cups-2.2.4.tar.gz 9984903 SHA256 
339fb0c0a70a1edf1ef169f2afb21bab92cdd3074adf630352c427b795f20fa7 SHA512 
765fe49d1a7a491d7d5db051f73d039d183d0f7a560e9fd89f6732b8a699d3246080e1aaed4ddfed3a9fbdb876b09aa22939d6ee5da2280b1246e4ba933c55f0
 WHIRLPOOL 
86557f6244b7aa7b19cc67caff7c845291d09699353bd337090111f92b6afb6b9e175ca68df8a15d8915a5a15fd72348805e4ecb7da532a994f46b2c2d4cdada

diff --git a/net-print/cups/cups-2.2.4.ebuild b/net-print/cups/cups-2.2.4.ebuild
new file mode 100644
index 000..42bac42a67b
--- /dev/null
+++ b/net-print/cups/cups-2.2.4.ebuild
@@ -0,0 +1,349 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools fdo-mime gnome2-utils flag-o-matic linux-info \
+   multilib multilib-minimal pam python-single-r1 user versionator \
+   java-pkg-opt-2 systemd toolchain-funcs
+
+MY_P=${P/_rc/rc}
+MY_P=${MY_P/_beta/b}
+MY_PV=${PV/_rc/rc}
+MY_PV=${MY_PV/_beta/b}
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/apple/cups.git;
+   if [[ ${PV} !=  ]]; then
+   EGIT_BRANCH=branch-${PV/.}
+   fi
+else
+   SRC_URI="https://github.com/apple/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~m68k-mint"
+fi
+
+DESCRIPTION="The Common Unix Printing System"
+HOMEPAGE="http://www.cups.org/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="acl dbus debug java kerberos lprng-compat pam
+   python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf"
+
+LANGS="ca cs de es fr it ja ru"
+for X in ${LANGS} ; do
+   IUSE="${IUSE} +linguas_${X}"
+done
+
+CDEPEND="
+   app-text/libpaper
+   sys-libs/zlib
+   acl? (
+   kernel_linux? (
+   sys-apps/acl
+   sys-apps/attr
+   )
+   )
+   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
+   java? ( >=virtual/jre-1.6:* )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   !lprng-compat? ( !net-print/lprng )
+   pam? ( virtual/pam )
+   python? ( ${PYTHON_DEPS} )
+   ssl? (
+   >=net-libs/gnutls-2.12.23-r6:0=[${MULTILIB_USEDEP}]
+   )
+   systemd? ( sys-apps/systemd )
+   usb? ( virtual/libusb:1 )
+   X? ( x11-misc/xdg-utils )
+   xinetd? ( sys-apps/xinetd )
+   zeroconf? ( >=net-dns/avahi-0.6.31-r2[${MULTILIB_USEDEP}] )
+   abi_x86_32? (
+   !<=app-emulation/emul-linux-x86-baselibs-20140508
+   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
+   )
+"
+
+DEPEND="${CDEPEND}
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+"
+
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-cups )
+"
+
+PDEPEND=">=net-print/cups-filters-1.0.43"
+
+REQUIRED_USE="
+   python? ( ${PYTHON_REQUIRED_USE} )
+   usb? ( threads )
+"
+
+# upstream 

[gentoo-commits] repo/gentoo:master commit in: app-forensics/honggfuzz/, app-forensics/honggfuzz/files/

2017-06-30 Thread Sergei Trofimovich
commit: 9cf8ef34504bfeddd9c55c3573296a195c2954e0
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 30 21:38:51 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 30 21:38:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf8ef34

app-forensics/honggfuzz: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-forensics/honggfuzz/Manifest   |  3 --
 .../honggfuzz/files/honggfuzz-0.8-bts-perms.patch  | 19 --
 app-forensics/honggfuzz/honggfuzz-0.7.ebuild   | 39 
 app-forensics/honggfuzz/honggfuzz-0.8-r1.ebuild| 41 --
 app-forensics/honggfuzz/honggfuzz-0.8.ebuild   | 39 
 app-forensics/honggfuzz/honggfuzz-0.9.ebuild   | 39 
 6 files changed, 180 deletions(-)

diff --git a/app-forensics/honggfuzz/Manifest b/app-forensics/honggfuzz/Manifest
index 60fcd676bc6..bde5d3fd869 100644
--- a/app-forensics/honggfuzz/Manifest
+++ b/app-forensics/honggfuzz/Manifest
@@ -1,5 +1,2 @@
-DIST honggfuzz-0.7.tar.gz 413122 SHA256 
611472a453c870165bb44e55900e7709aa4f7bca0159a81fc599cd66d1547d2a SHA512 
b0ab50ebae44fe734899a6fd4e6a861ff289ea6f449141fd974a4ad4cc8e12f0b77f7ba9163134668f5401596f2cf179c20d1e97cdc6578282f7c6b6e1c54b57
 WHIRLPOOL 
d6e066efce44c7080467235a12392374da4bab1aa5714de1e7739cc96ecf66d44b97810b5a69b1a939c1194d9e129cc972a440943029d3a468f0946de648940a
-DIST honggfuzz-0.8.tar.gz 432740 SHA256 
6bdc09798e7fe69d2c88437b61c3d2ec5be17a8135ddbe8da006373ec0ca492f SHA512 
65db9e67fd3ba3303a62c61c05a738dfad71dd3cbef032de8cae0965886887ea11ee3f4011354cf7b40014a8cd02d773ca66a06389cf76b42bdc5a79dbcb1ca1
 WHIRLPOOL 
33fe61321dc318824385632622d0f10d53dcfb36b0ffb5e43a7f3d051d8b9f2ae11b3d3c35c8f675250c88eaf2af3cd7ffcb7d33f9c18adf6fbea34e6aae3b88
-DIST honggfuzz-0.9.tar.gz 7332175 SHA256 
161ad1fab5a677054d54d55a9fc070a2a4cbd26d6794e7fd8fe68db909f433c7 SHA512 
d73200994a26afc7c11db4a36b24d4ca90b1994ed088cbe462fcec46d9236d82511e3d3fc440ef44a56ef387683b6dc330b4e104bec8047c2c797681617ad1f4
 WHIRLPOOL 
4e3d2d8683ce774394a513280902d2285f2262f6a774f04a52de729bfaedb2268d559e01428b7666a436ce5eca12c034ebe0094107a92a2e3db1943d77a99657
 DIST honggfuzz-1.0.tar.gz 11705394 SHA256 
922af667c2699be4e2a39cb7d2cd6324b9cb27d4817b073b48d43a580074fd4d SHA512 
c31a8a252b4a57c7da632bf3ff55a0fe8b5f777bfe5196cd09b2a016bf7ac48413587e3b515d1a7c2a074adc3d8d83f9bfd49cabd881542184b16cf8acd41356
 WHIRLPOOL 
cd9e9222cf622a410d49662f84a62d0cb737fe3cddcb58dec83e19d14d7de75e24a0a23b537f7a5d78520ac6d9438198166e86814aa7c083dad5802df35bd29b
 DIST honggfuzz-1.1.tar.gz 11705217 SHA256 
e1ddbffc3240b2601c7e997d759c6a89ea69fe619bf59d1d9a58f11205934ee4 SHA512 
dad1e763b1a74607995548b7c8a81b930286fc1d403f10fa2e88b165948fb323370233a9969eb972020cfa8782bc8aecd59c905a8ff63f18b0e50fe5b289bcf5
 WHIRLPOOL 
c090c071904fadfbd6c794e0f4445c2b0efc66a5cf4eb6a2ec3427014ae0298a46c4c9cdbcef1bae5d2e1b383a384a98c6d64ca64a5d3c4a127b776cad09cf1b

diff --git a/app-forensics/honggfuzz/files/honggfuzz-0.8-bts-perms.patch 
b/app-forensics/honggfuzz/files/honggfuzz-0.8-bts-perms.patch
deleted file mode 100644
index e8ac4919e20..000
--- a/app-forensics/honggfuzz/files/honggfuzz-0.8-bts-perms.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Workaround --linux_perf_bts_block flag breakage.
-
-Mateusz reports that running honggfuzz fails as:
-[2016-11-11T21:54:27+][W][1190] arch_perfOpen():223 mmap(mmapAuxBuf) 
failed,
-try increasing the kernel.perf_event_mlock_kb sysctl (up to even 
3): Cannot allocate memory
-
-It seems aux data also needs WRITE permissions.
-
-Reported-by: Mateusz Lenik
-diff --git a/linux/perf.c b/linux/perf.c
-index d8ede5f..2f71b3d 100644
 a/linux/perf.c
-+++ b/linux/perf.c
-@@ -217,3 +217,4 @@ static bool arch_perfOpen(honggfuzz_t * hfuzz, fuzzer_t * 
fuzzer UNUSED, pid_t p
- fuzzer->linux.perfMmapAux =
--mmap(NULL, pem->aux_size, PROT_READ, MAP_SHARED, *perfFd, 
pem->aux_offset);
-+mmap(NULL, pem->aux_size, PROT_READ | PROT_WRITE, MAP_SHARED, 
*perfFd, pem->aux_offset);
-+
- if (fuzzer->linux.perfMmapAux == MAP_FAILED) {

diff --git a/app-forensics/honggfuzz/honggfuzz-0.7.ebuild 
b/app-forensics/honggfuzz/honggfuzz-0.7.ebuild
deleted file mode 100644
index c01b457b31d..000
--- a/app-forensics/honggfuzz/honggfuzz-0.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="A general purpose fuzzer with feedback support"
-HOMEPAGE="http://google.github.io/honggfuzz/;
-SRC_URI="https://github.com/google/honggfuzz/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-   sys-libs/binutils-libs:=
-   sys-libs/libunwind
-"
-
-DEPEND="${RDEPEND}"
-
-DOCS=(
-   CHANGELOG
-   COPYING
-   CONTRIBUTING
-   README.md
-)

[gentoo-commits] repo/gentoo:master commit in: app-forensics/honggfuzz/

2017-06-30 Thread Sergei Trofimovich
commit: ab503627b3382e59ff6af8cc3724b358afe54eba
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 30 21:37:30 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 30 21:37:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab503627

app-forensics/honggfuzz: bump up to 1.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-forensics/honggfuzz/Manifest |  1 +
 app-forensics/honggfuzz/honggfuzz-1.1.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/app-forensics/honggfuzz/Manifest b/app-forensics/honggfuzz/Manifest
index d6c336566eb..60fcd676bc6 100644
--- a/app-forensics/honggfuzz/Manifest
+++ b/app-forensics/honggfuzz/Manifest
@@ -2,3 +2,4 @@ DIST honggfuzz-0.7.tar.gz 413122 SHA256 
611472a453c870165bb44e55900e7709aa4f7bca
 DIST honggfuzz-0.8.tar.gz 432740 SHA256 
6bdc09798e7fe69d2c88437b61c3d2ec5be17a8135ddbe8da006373ec0ca492f SHA512 
65db9e67fd3ba3303a62c61c05a738dfad71dd3cbef032de8cae0965886887ea11ee3f4011354cf7b40014a8cd02d773ca66a06389cf76b42bdc5a79dbcb1ca1
 WHIRLPOOL 
33fe61321dc318824385632622d0f10d53dcfb36b0ffb5e43a7f3d051d8b9f2ae11b3d3c35c8f675250c88eaf2af3cd7ffcb7d33f9c18adf6fbea34e6aae3b88
 DIST honggfuzz-0.9.tar.gz 7332175 SHA256 
161ad1fab5a677054d54d55a9fc070a2a4cbd26d6794e7fd8fe68db909f433c7 SHA512 
d73200994a26afc7c11db4a36b24d4ca90b1994ed088cbe462fcec46d9236d82511e3d3fc440ef44a56ef387683b6dc330b4e104bec8047c2c797681617ad1f4
 WHIRLPOOL 
4e3d2d8683ce774394a513280902d2285f2262f6a774f04a52de729bfaedb2268d559e01428b7666a436ce5eca12c034ebe0094107a92a2e3db1943d77a99657
 DIST honggfuzz-1.0.tar.gz 11705394 SHA256 
922af667c2699be4e2a39cb7d2cd6324b9cb27d4817b073b48d43a580074fd4d SHA512 
c31a8a252b4a57c7da632bf3ff55a0fe8b5f777bfe5196cd09b2a016bf7ac48413587e3b515d1a7c2a074adc3d8d83f9bfd49cabd881542184b16cf8acd41356
 WHIRLPOOL 
cd9e9222cf622a410d49662f84a62d0cb737fe3cddcb58dec83e19d14d7de75e24a0a23b537f7a5d78520ac6d9438198166e86814aa7c083dad5802df35bd29b
+DIST honggfuzz-1.1.tar.gz 11705217 SHA256 
e1ddbffc3240b2601c7e997d759c6a89ea69fe619bf59d1d9a58f11205934ee4 SHA512 
dad1e763b1a74607995548b7c8a81b930286fc1d403f10fa2e88b165948fb323370233a9969eb972020cfa8782bc8aecd59c905a8ff63f18b0e50fe5b289bcf5
 WHIRLPOOL 
c090c071904fadfbd6c794e0f4445c2b0efc66a5cf4eb6a2ec3427014ae0298a46c4c9cdbcef1bae5d2e1b383a384a98c6d64ca64a5d3c4a127b776cad09cf1b

diff --git a/app-forensics/honggfuzz/honggfuzz-1.1.ebuild 
b/app-forensics/honggfuzz/honggfuzz-1.1.ebuild
new file mode 100644
index 000..1e7413dc5fa
--- /dev/null
+++ b/app-forensics/honggfuzz/honggfuzz-1.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A general purpose fuzzer with feedback support"
+HOMEPAGE="http://google.github.io/honggfuzz/;
+SRC_URI="https://github.com/google/honggfuzz/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   sys-libs/binutils-libs:=
+   sys-libs/libunwind
+"
+
+DEPEND="${RDEPEND}"
+
+DOCS=(
+   CHANGELOG
+   COPYING
+   CONTRIBUTING
+   README.md
+)
+
+src_compile() {
+   CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" emake
+}
+
+src_install() {
+   dobin ${PN}
+
+   einstalldocs
+}



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

2017-06-30 Thread Sergei Trofimovich
commit: 3d99817b1d4821d1cd0e4783be3daccbe19d0ea3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 30 21:04:58 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 30 21:04:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d99817b

net-im/openfire: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-im/openfire/Manifest  |   3 -
 net-im/openfire/openfire-4.1.1.ebuild | 107 --
 net-im/openfire/openfire-4.1.2.ebuild | 107 --
 net-im/openfire/openfire-4.1.3.ebuild | 107 --
 4 files changed, 324 deletions(-)

diff --git a/net-im/openfire/Manifest b/net-im/openfire/Manifest
index 2c5e17a60ed..4a837689814 100644
--- a/net-im/openfire/Manifest
+++ b/net-im/openfire/Manifest
@@ -1,6 +1,3 @@
 DIST openfire_src_4_1_0.tar.gz 103449811 SHA256 
3e52b27ac9ed5af1acb7065e84a416ad075994445b554e78d7c966724612cbf2 SHA512 
3a4e26c260f6a91ece6e6d3fc7c3302b6f1735725ce2686bab8773981dad63ef653a25748852c32e4df8f6bde2882db4043d94b69eb774a5280285fd5b7cd96b
 WHIRLPOOL 
da56663dc9cdf831e04aebddff2eb2705b9cb603a0b5110fee1dc00d41252050ba326c84883fb69894ac064a339a11e22ef44c35348de0bb655f55bc8c34c72d
-DIST openfire_src_4_1_1.tar.gz 103449258 SHA256 
f7368c3b141bd1e49a3fcceadff5bcddd06c77af8fa5f85fe55b945474f15424 SHA512 
a0eb246e414cfa54060fd0749e01d579864178f23febd875817554af170a24044675f8c0c5ca5538e0524909648e5d0002bb99a30edfd1ddcfcd32254b520f4d
 WHIRLPOOL 
f666017d9744bf80ddf1f1389260d4f66ade6616b72b20d09c3c18e9801deebb6212a143bde445fc059a9d8cac086963330d1dc2a8592bcde0467177fe36c210
-DIST openfire_src_4_1_2.tar.gz 103449363 SHA256 
0478bad379359452f1fca38ad52ceddfb259a3816954da9bc7cc4b782c13aa7d SHA512 
ecca4d74e295cfdc5e59ca7b2eae37accacf86bdc44f023127004381fc93c24806470fdfacd79d7a610a9c35ff89645aebc18f2b4bc7291357467dffa9d6857a
 WHIRLPOOL 
d956f75a988a592d1a85958004eefdaacc83cbe82971ba9a7d3ca588ff39710e16906ea0c97f48d0bb02e6acd605f01d01720926dde550d532e165b5285f
-DIST openfire_src_4_1_3.tar.gz 103450246 SHA256 
35c9f56f47109605157846730a54238e3d6faabd2a5ed865eebc27a3bbb36423 SHA512 
8fe2cc4a803aa9520322968e8ebab86d43655b7c6fedce663fe296a041cb24beb5aed187db19bcc25f034b1114c1c4846ba325a41ead2b81bbcf5ca54fb2beb8
 WHIRLPOOL 
703fd120420a661fa9f9bb7057e18ccc1b3e54c11eb688bff0308e39573040da11b3a8b5c001226f8eb6b8900abd3ddb30012fed6ed0b8aca8612ec95f50ca6e
 DIST openfire_src_4_1_4.tar.gz 103457596 SHA256 
46aa8fe815b941c423a4575b35204a6b3c74b7746a49420d6444bc018cd2257b SHA512 
e9b7bb62656b376ffc52db5403c262d5a986698282ac9eec02d3a893076cc6df3f4666e908672a9d65cb313505fcc377fb3d7bb62f30d665aa8523cab7d714bd
 WHIRLPOOL 
13009d922ebe292380c4b9cafcd1ef13a1bb119a728762da7c1b7f62d4515577f1e63014fbdaeba596cacd463c97935768f31611c67ed62d951840ded77d9aac
 DIST openfire_src_4_1_5.tar.gz 103508870 SHA256 
f24c34ec2673dce0f9321237538e954ea767535ed7f17a2574e344170555de5b SHA512 
9ccdd2916492ab23a71856ded8024f6dea73491810ee80c8284597eaf8d2fd55ccc47c7d1da704a487aba727761fdc50f0f6baa26349673fe74dabf0f2b36e73
 WHIRLPOOL 
5983868a5af739e351e83582d652bab173d2cc503fbc4afc0dc43823261ede5fc9da4d257fa2bfeb4ef600f84e5fd2f8472d2804b5b5d8df277c4c11cbd63030

diff --git a/net-im/openfire/openfire-4.1.1.ebuild 
b/net-im/openfire/openfire-4.1.1.ebuild
deleted file mode 100644
index e6feaf1a438..000
--- a/net-im/openfire/openfire-4.1.1.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils java-pkg-2 java-ant-2 systemd
-
-MY_P=${PN}_src_${PV//./_}
-DESCRIPTION="Openfire (formerly wildfire) real time collaboration (RTC) server"
-HOMEPAGE="http://www.igniterealtime.org/projects/openfire/;
-SRC_URI="http://www.igniterealtime.org/builds/openfire/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-RDEPEND=">=virtual/jre-1.7"
-DEPEND="net-im/jabber-base
-   ~dev-java/ant-contrib-1.0_beta2
-   >=virtual/jdk-1.7"
-
-S=${WORKDIR}/${PN}_src
-
-pkg_setup() {
-   if [[ -f /etc/env.d/98openfire ]]; then
-   einfo "This is an upgrade"
-   ewarn "As the plugin API changed, at least these plugins need 
to be updated also:"
-   ewarn "User Search, IM Gateway, Fastpath, Monitoring"
-   ewarn "they can be downloaded via Admin Console or at"
-   ewarn "${HOMEPAGE}"
-   else
-   ewarn "If this is an upgrade stop right ( CONTROL-C ) and run 
the command:"
-   ewarn "echo 
'CONFIG_PROTECT=\"/opt/openfire/resources/security/\"' > /etc/env.d/98openfire "
-   ewarn "For more info see bug #139708"
-   sleep 11
-   fi
-   java-pkg-2_pkg_setup
-}
-
-src_compile() {
-   # Jikes doesn't support -source 1.5
-   java-pkg_filter-compiler jikes
-
-   ANT_TASKS="ant-contrib"
-   eant -f build/build.xml openfire 

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

2017-06-30 Thread Sergei Trofimovich
commit: e48a07d30703464889b08cf72773da5e67e892ac
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 30 21:01:24 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 30 21:01:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e48a07d3

net-im/openfire: bump up to 4.1.5

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-im/openfire/Manifest  |   1 +
 net-im/openfire/openfire-4.1.5.ebuild | 107 ++
 2 files changed, 108 insertions(+)

diff --git a/net-im/openfire/Manifest b/net-im/openfire/Manifest
index 6ae56953c39..2c5e17a60ed 100644
--- a/net-im/openfire/Manifest
+++ b/net-im/openfire/Manifest
@@ -3,3 +3,4 @@ DIST openfire_src_4_1_1.tar.gz 103449258 SHA256 
f7368c3b141bd1e49a3fcceadff5bcdd
 DIST openfire_src_4_1_2.tar.gz 103449363 SHA256 
0478bad379359452f1fca38ad52ceddfb259a3816954da9bc7cc4b782c13aa7d SHA512 
ecca4d74e295cfdc5e59ca7b2eae37accacf86bdc44f023127004381fc93c24806470fdfacd79d7a610a9c35ff89645aebc18f2b4bc7291357467dffa9d6857a
 WHIRLPOOL 
d956f75a988a592d1a85958004eefdaacc83cbe82971ba9a7d3ca588ff39710e16906ea0c97f48d0bb02e6acd605f01d01720926dde550d532e165b5285f
 DIST openfire_src_4_1_3.tar.gz 103450246 SHA256 
35c9f56f47109605157846730a54238e3d6faabd2a5ed865eebc27a3bbb36423 SHA512 
8fe2cc4a803aa9520322968e8ebab86d43655b7c6fedce663fe296a041cb24beb5aed187db19bcc25f034b1114c1c4846ba325a41ead2b81bbcf5ca54fb2beb8
 WHIRLPOOL 
703fd120420a661fa9f9bb7057e18ccc1b3e54c11eb688bff0308e39573040da11b3a8b5c001226f8eb6b8900abd3ddb30012fed6ed0b8aca8612ec95f50ca6e
 DIST openfire_src_4_1_4.tar.gz 103457596 SHA256 
46aa8fe815b941c423a4575b35204a6b3c74b7746a49420d6444bc018cd2257b SHA512 
e9b7bb62656b376ffc52db5403c262d5a986698282ac9eec02d3a893076cc6df3f4666e908672a9d65cb313505fcc377fb3d7bb62f30d665aa8523cab7d714bd
 WHIRLPOOL 
13009d922ebe292380c4b9cafcd1ef13a1bb119a728762da7c1b7f62d4515577f1e63014fbdaeba596cacd463c97935768f31611c67ed62d951840ded77d9aac
+DIST openfire_src_4_1_5.tar.gz 103508870 SHA256 
f24c34ec2673dce0f9321237538e954ea767535ed7f17a2574e344170555de5b SHA512 
9ccdd2916492ab23a71856ded8024f6dea73491810ee80c8284597eaf8d2fd55ccc47c7d1da704a487aba727761fdc50f0f6baa26349673fe74dabf0f2b36e73
 WHIRLPOOL 
5983868a5af739e351e83582d652bab173d2cc503fbc4afc0dc43823261ede5fc9da4d257fa2bfeb4ef600f84e5fd2f8472d2804b5b5d8df277c4c11cbd63030

diff --git a/net-im/openfire/openfire-4.1.5.ebuild 
b/net-im/openfire/openfire-4.1.5.ebuild
new file mode 100644
index 000..e6feaf1a438
--- /dev/null
+++ b/net-im/openfire/openfire-4.1.5.ebuild
@@ -0,0 +1,107 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils java-pkg-2 java-ant-2 systemd
+
+MY_P=${PN}_src_${PV//./_}
+DESCRIPTION="Openfire (formerly wildfire) real time collaboration (RTC) server"
+HOMEPAGE="http://www.igniterealtime.org/projects/openfire/;
+SRC_URI="http://www.igniterealtime.org/builds/openfire/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND=">=virtual/jre-1.7"
+DEPEND="net-im/jabber-base
+   ~dev-java/ant-contrib-1.0_beta2
+   >=virtual/jdk-1.7"
+
+S=${WORKDIR}/${PN}_src
+
+pkg_setup() {
+   if [[ -f /etc/env.d/98openfire ]]; then
+   einfo "This is an upgrade"
+   ewarn "As the plugin API changed, at least these plugins need 
to be updated also:"
+   ewarn "User Search, IM Gateway, Fastpath, Monitoring"
+   ewarn "they can be downloaded via Admin Console or at"
+   ewarn "${HOMEPAGE}"
+   else
+   ewarn "If this is an upgrade stop right ( CONTROL-C ) and run 
the command:"
+   ewarn "echo 
'CONFIG_PROTECT=\"/opt/openfire/resources/security/\"' > /etc/env.d/98openfire "
+   ewarn "For more info see bug #139708"
+   sleep 11
+   fi
+   java-pkg-2_pkg_setup
+}
+
+src_compile() {
+   # Jikes doesn't support -source 1.5
+   java-pkg_filter-compiler jikes
+
+   ANT_TASKS="ant-contrib"
+   eant -f build/build.xml openfire plugins $(use_doc)
+
+   # delete nativeAuth prebuilt libs:
+   #uses outdated unmaintained libshaj, does not support amd64
+   rm -rfv target/openfire/resources/nativeAuth || die
+}
+
+src_install() {
+   dodir /opt/openfire
+
+   newinitd "${FILESDIR}"/openfire-initd openfire
+   newconfd "${FILESDIR}"/openfire-confd openfire
+   systemd_dounit "${FILESDIR}"/${PN}.service
+
+   dodir /opt/openfire/conf
+   insinto /opt/openfire/conf
+   newins target/openfire/conf/openfire.xml openfire.xml.sample
+   newins target/openfire/conf/security.xml security.xml.sample
+
+   dodir /opt/openfire/logs
+   keepdir /opt/openfire/logs
+
+   dodir /opt/openfire/lib
+   insinto /opt/openfire/lib
+   doins target/openfire/lib/*
+
+   dodir /opt/openfire/plugins
+   insinto 

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

2017-06-30 Thread Aric Belsito
commit: 0f1b8fba1f3fe4f3aa30b83d89f221bb5930f8da
Author: Aric Belsito  gmail  com>
AuthorDate: Fri Jun 30 20:44:27 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Fri Jun 30 20:44:27 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=0f1b8fba

media-libs/mesa: version bump to 17.1.4

 media-libs/mesa/Manifest   |  4 +-
 media-libs/mesa/mesa-17.0.6.ebuild |  2 +-
 .../{mesa-17.0.6.ebuild => mesa-17.1.4.ebuild} | 43 +-
 3 files changed, 21 insertions(+), 28 deletions(-)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 398b0d6..6d9d0b5 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -11,12 +11,14 @@ DIST mesa-17.1.0.tar.xz 9849580 SHA256 
cf234a6ed4764673886b6661553b54675776ef089
 DIST mesa-17.1.1.tar.xz 9854480 SHA256 
aed503f94c0c1630a162a3e276f4ee12a86764cee4cb92338ea2dea99a04e7ef SHA512 
4679b8c1a957e515e9f7a6658f2264d4c458379a37fa8f64c9ef03e817857a683fc527a8172d3ae68ca5ebc84a1a78264e18807704c5130c95efdf0431502bc7
 WHIRLPOOL 
e34aef05bc9f6256a717de1d47f445fedbe5981836724b31e6d0ee801a26b23da9c70acdbfc86d2b676f494ba2c47bf24d8ed0c5c8fb3774fba28443d47578d4
 DIST mesa-17.1.2.tar.xz 9837516 SHA256 
0937804f43746339b1f9540d8f9c8b4a1bb3d3eec0e4020eac283b8799798239 SHA512 
9df5e1a0336948a6ba338a9a8499b286543bc079f61f1cf85f6ecf98e05fab9a23cde0d1e3f2153df9b07515cb8c1a08531d43f053783991ecdd32380d3b
 WHIRLPOOL 
81ce678cb95eb86c41fb00f01ad5f4ed207a20e8290d789f347377553da4ff7ebde56bdb41df03a94a30f6fc141c52833bf6da6c5a79ff85654c7806945b4bd5
 DIST mesa-17.1.3.tar.xz 9861256 SHA256 
5f1ee9a8aea2880f887884df2dea0c16dd1b13eb42fd2e52265db0dc1b380e8c SHA512 
b487d4f3d7717f379e7aaf66958bbef886fbae219e6e0333123c4623dc7db84109aca8cf07be08c0b79a74bdb198c704073fd549c6e85aa952ed3c97da1a8a94
 WHIRLPOOL 
f9e2634e8a4c9765739ca4db005901d4df077f954e9008c05ee26dfc10e008166e5128096db071e0e26f4bdf244ecb9f8767b8862b018a68d677a3579c789114
+DIST mesa-17.1.4.tar.xz 9899196 SHA256 
06f3b0e6a28f0d20b7f3391cf67fe89ae98ecd0a686cd545da76557b6cec9cad SHA512 
cb8369f0edd3e17b4eee8da159b9dc487f8144d69fe4b95901e9aa6a924759866f26f91fc2ead7036707eecea41582185e7ce73d54f97bf310f198b72ee0a8e4
 WHIRLPOOL 
5c313d7b938c58a7e2f59b619161316629ee996025dc5810742c881716cfcee441a8b3641d644fa0bc4aeec6c44c4b1ce99f515a59159a3391cf4948c2bab45a
 EBUILD mesa-13.0.5.ebuild 13658 SHA256 
c2d8750e43354a05926dd17e7bba27a9c348ea49d723ed3a0045f5b8dd34f639 SHA512 
30af415e1448909b0420080edf24b8006cc55d8b0b70d0d9b6f2c5f5d40b710c5ebb463f1203204de5e7e71bcb68564d490bd61be8c52362e0219d62074eb279
 WHIRLPOOL 
de6f514c8d879c41b7f63429d45790f133b1c60412262f0b38bffc5cae69f8621c988fc851f5c764a7867a5a22885391f80ab342ff4e84cf5b2bf0798a2c
 EBUILD mesa-13.0.6.ebuild 13584 SHA256 
3bfff928951edec571894f54fada7bb718e95e94f82806764731d09522b5304d SHA512 
1fb15e100deeb50f5de436e2ffe3e131ebe3badb820aa1ddef8cfa691426b42bd3fbe66fd55cd848f9c5f6de9b5dd396f6879813730fb0a234a96a818a71b1cc
 WHIRLPOOL 
6a7d6a0c01a847bfdb8bdeb3fa7ff558e4f3ac77b6f3f4334037ab3098f7763fe26de34378a49a57cbbefdec6ab22952cb0c948517b0885d882e0b92626af585
-EBUILD mesa-17.0.6.ebuild 13604 SHA256 
f574ac8e1d54fd8dc88c667ace3dc0f9b9088f84165d1a52bf28ca96ae696794 SHA512 
2602a5a5b5eda4c214919b899ebc211f253d6d1f291fd3915a084d3ff660ae014b53852c37ef24cf230558472a4a8ee4bfe70a5a51516cad8a9ad00a3f899e75
 WHIRLPOOL 
a853b5470ed73708aa73d814c43a47c65787bf2087f01264566d992c1572cc58a1704bac10a1dbeaddb9a02653ddfb634a11df55b5e2adb5033ce9dda618dde7
+EBUILD mesa-17.0.6.ebuild 13603 SHA256 
b4e554e727d9e35f77a83d5cb7ae8f19542e3e7ea367d3377496bc73f3e6da47 SHA512 
f0415ed538799bc0a74ff94563629b7b86372eba0aae17448e38c190be8211dcd48bad902b876ff54b7c9d65df4d83fd4a22cb197be9ab4d960202ee09d0beb7
 WHIRLPOOL 
c32a1c4d6a7fd06c9782ef980874ee6830b8477733b8c0f656e5a84a7ccd1f99cef19fdc1af913fdf5db62bc76bba75333afc20e96338b57f23a6b5534f152a6
 EBUILD mesa-17.0.7.ebuild 13611 SHA256 
06e11aa4c7e3a6bec9294c7028c907c5480dce3ee4c95052491712dbdb91a808 SHA512 
0fcfdc77728a7ab3d629bee9f399a59c1d63c593a6987d71f2766c2f3aba813ee6e36795f2d518e3309a14147a093b1616ab2fe0dfcdf43a2fcc498d62fbc0a2
 WHIRLPOOL 
92aca377f74604808a5ea904dde89bc48f26e3607a8bd3acef00e2eac50f6a011f177a224fbcb542f94cbeebc00e4757aec4abe0e501f19f9263c90b26494deb
 EBUILD mesa-17.1.0.ebuild 13521 SHA256 
99a67ea7c2b5dce88b2a0f9459d113b1bb447058e944151b48773f6c300f33f2 SHA512 
1f5041783a775d0d777cbb5775529b5143115d93a78febc9dc6cef61cea089a407ace42e9940139ff34bb95d19991aa2570ef95b2d80fa8f53da6d192ef8ebf1
 WHIRLPOOL 
513d4cf652a819595416f48440e066a103f5c548fe71fcbc9d29bbbd71ef4efb8dfc60cae96917b5100e540b9062bc3ae1ca44266e7bb98cf3611e541944fbaf
 EBUILD mesa-17.1.1.ebuild 13521 SHA256 
99a67ea7c2b5dce88b2a0f9459d113b1bb447058e944151b48773f6c300f33f2 SHA512 
1f5041783a775d0d777cbb5775529b5143115d93a78febc9dc6cef61cea089a407ace42e9940139ff34bb95d19991aa2570ef95b2d80fa8f53da6d192ef8ebf1
 WHIRLPOOL 

[gentoo-commits] proj/musl:master commit in: app-office/libreoffice/files/, app-office/libreoffice/

2017-06-30 Thread Aric Belsito
commit: 00f94354819c7cc2e1e35585db30de6411a7f5c3
Author: Aric Belsito  gmail  com>
AuthorDate: Fri Jun 30 20:39:16 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Fri Jun 30 20:41:13 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=00f94354

app-office/libreoffice: version bump to 5.3.4.2

 app-office/libreoffice/Manifest   |  8 ++--
 .../libreoffice/files/libreoffice-5.3.4.2-kioclient5.patch| 11 +++
 app-office/libreoffice/libreoffice-5.2.7.2.ebuild |  2 +-
 app-office/libreoffice/libreoffice-5.3.3.2.ebuild |  2 +-
 ...{libreoffice-5.3.3.2.ebuild => libreoffice-5.3.4.2.ebuild} |  6 +++---
 5 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index 6c82d14..4192cbe 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -7,6 +7,7 @@ AUX libreoffice-5.2.5.1-glibc-2.24.patch 361 SHA256 
3f87a11b6d1218a4510835e12c44
 AUX libreoffice-5.2.5.1-musl-vlc.patch 357 SHA256 
adda6aa44231b030a205fbaced361c7d8e7e4763300a6a54693e3a1e148b6f6b SHA512 
260baabc2dc3dffe3d575e4a18322a4ea9669eff7a464a0c9e85b16ffb4fa67a62ea039e69074ef94093dcca9479e51699d3e55f34a4380d43b27145f345a999
 WHIRLPOOL 
f204f62f405604b80ff1cf204c0a2eed53f504add6692c53b7d3dc761a72d894edb473181fd154e98459bd0b45e6f865d0c5e384ebb631710353d009b243b5aa
 AUX libreoffice-5.3-system-pyuno.patch 1665 SHA256 
87a43eef9b77328b9c66a48d39ca81a89a7f25f9476e1a830b570a48d72fff4d SHA512 
3883b2b4c7a0513b1e33d50f4e2e6fc7f72e679cb1d7357c1e6ab4993bfae630cd6abd2112e5cdeb8baf181f0beabe9206a4fe8694b31cd3f855ce55cbe4b73c
 WHIRLPOOL 
490d369b3789f18647e8c702335fe16ca9211e4fd6d3aa4ee62ce6ddb0a964cae21792d48e673fe6d7859fb35da9f430c05caa2796225874b80b040cf056d19f
 AUX libreoffice-5.3.0.3-linux-musl.patch 1952 SHA256 
8aebc0eb195dcd75d0245136edaaae34417d394ccbd30e0d5bd563556f7851b1 SHA512 
14be93ca7273d05a25230a7d20b23207297199918aa352af6b96506b94667f05fc340bc92d1332723763ead20524df46f81de0d9c60c6f1808b2a1a164e6d1ff
 WHIRLPOOL 
792569ce09db2a3933faddeb8d5092695f897056885c9a435609405a58ea5aad78947b16d7eaf3ddcf865080bea2dcf7655ca2261d2d7511874b101ef14955ed
+AUX libreoffice-5.3.4.2-kioclient5.patch 605 SHA256 
fe58b04bdadad25bdfc02d613cf9bef686c31e59f38a933ef1b359ee8fe9aaf2 SHA512 
2aa6d1fc96749b79b3291f6e27630c6cf59d2c743f0dd8603867ba8aec2c17f87b70e1dd031365013f7e9ea53c160e9cb3f48af592a587dc05f3ae4cc1b35df6
 WHIRLPOOL 
50917a062e9dd83b21ff349b758e01dbdc7e47014184ecaf5051ff0cc7fd480d8c0c1f7de492a03ed3864ae9cc9d2ab6df44c7fe3e88f067048391d32489fbfc
 DIST 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip 3519470 SHA256 
d30b13f4ba2e3b6a2d4f020c0dee0a9fb9fc6fbcc2d561f36b78da4bf3802370 SHA512 
a231eba4a1baca11766ef292ab45e302081115477fe23018652882923308856835cf8c9ecba61a5cf22543474ccef3136965d794a90c9e4e9e6dcc21f9af6e1a
 WHIRLPOOL 
c4b3b0c3e10171155e1d3431e8ab9b495dbf2fb924882024306bfb53f533f5b0231c06f47e3cfa77052013a816ea4cc5f237cc76fdb44a048fb6d5c177729aec
 DIST 185d60944ea767075d27247c3162b3bc-unowinreg.dll 12288 SHA256 
eafde646a7dbe46d20c291685b0beac2382174d78d66ee990e229a1bf6e6cec6 SHA512 
854b8ae29b57b40ba6bb6ff66e723a0e8dad053fcc2849f0ad763cd8a31352f4aeba9636fd4e3f0f2a0cd985a6f49b4261b9ace68d6be821ed42cfa7a73eb13c
 WHIRLPOOL 
16eb79e3674250fcb760b9698b4980414052d20f720d946701d1915c9b8915b4af75378668653d29581b77c19fcdba8f51d1f834c286cfcefcf4a420f8fcc1d5
 DIST 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip 9796 SHA256 
64585ac36a81291a58269ec5347e7e3e2e8596dbacb9221015c208191333c6e1 SHA512 
4a48f1e32907fb2dee601cda3cd7a0d7198b2d51f2a572b647f1e93f901fd511eef3567676e52dfb1723a2cdfbc01f2015ca0bb22903b0bc1476dd618cc9aa8a
 WHIRLPOOL 
a5156d06323699d2cbf539f14f5f44f54ebf33e86c7f14e98acd4c6e29c3e496f91dd6792401148ffa32e3dcb1cd4f087ed804e306b241cef86de0aa347d25d4
@@ -17,9 +18,12 @@ DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 
SHA256 75823776fb51
 DIST ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz 1769329 SHA256 
3221593ca50f362b546a0888a1431ad24be1470f96b2469c0e0df5e1c55e7305 SHA512 
2f8d473916abf9822367edbe857fc2e12dc9858d12e790d689d787e439904bd6a452bf631043aa66e7502457ab0815a473657f58fca17a213e2490f5655e5ae5
 WHIRLPOOL 
29ddaef03d46fe08aa2dba200be755817f8e77de33ed86dae65e891239f3051f79fdfadec6ae56023197e32e1c44a94385a1ce306081f3bf94be6226f8c7
 DIST libreoffice-5.2.7.2.tar.xz 184589464 SHA256 
106154a72a329605166a49bfa31c6d1cc03133d600ad0ef340b45e4e2a92891d SHA512 
f7414a0d0d654d1d9bd6c5524ff2acf2f21c544dd6ed79f4f2d22f79db46264f95f7ca8dd482027f7a573d2d491ea6c8d9875b262d5e2b917dfddb749a3ea95f
 WHIRLPOOL 
28d7f9531190a16bdea14c5dcc710ef593085fddca1b4d7d0cd6107d5f93e4b94a1ae035a626376ab7abfcd926a263b1437de1e52011bb96aa6d87b046a38da8
 DIST libreoffice-5.3.3.2.tar.xz 190216268 SHA256 
9632956926d9d5c9049ce5b81c2673f298ae73b873d53cce8cfaea8ee243619a SHA512 

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

2017-06-30 Thread Michał Górny
commit: 2cad26e8e9270fc545baea4345a8238d949b9004
Author: bgo  9dt  de>
AuthorDate: Wed Jun 14 14:26:35 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 20:17:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cad26e8

net-dns/dnsdist: add ~x86 keyword

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

 net-dns/dnsdist/dnsdist-1.1.0-r1.ebuild | 2 +-
 net-dns/dnsdist/dnsdist-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-dns/dnsdist/dnsdist-1.1.0-r1.ebuild 
b/net-dns/dnsdist/dnsdist-1.1.0-r1.ebuild
index 074be54e645..765c8a19663 100644
--- a/net-dns/dnsdist/dnsdist-1.1.0-r1.ebuild
+++ b/net-dns/dnsdist/dnsdist-1.1.0-r1.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/pdns/dnsdistdist"
 else
SRC_URI="https://downloads.powerdns.com/releases/${P}.tar.bz2;
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"
 fi
 
 LICENSE="GPL-2"

diff --git a/net-dns/dnsdist/dnsdist-.ebuild 
b/net-dns/dnsdist/dnsdist-.ebuild
index 10e8fc26584..75b3d1113da 100644
--- a/net-dns/dnsdist/dnsdist-.ebuild
+++ b/net-dns/dnsdist/dnsdist-.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/pdns/dnsdistdist"
 else
SRC_URI="https://downloads.powerdns.com/releases/${P}.tar.bz2;
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~x86"
 fi
 
 LICENSE="GPL-2"



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

2017-06-30 Thread Kent Fredric
commit: ae897b25efd6d5c130a93e2c05be402f3fc1ad5a
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Jun 30 18:17:09 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Jun 30 18:17:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae897b25

dev-perl/Gtk2-Notify: Cleanup old re bug #616950

Remove versions that weren't patched for '.' in @INC

Bug: https://bugs.gentoo.org/616950
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Gtk2-Notify/Gtk2-Notify-0.05-r1.ebuild | 31 -
 1 file changed, 31 deletions(-)

diff --git a/dev-perl/Gtk2-Notify/Gtk2-Notify-0.05-r1.ebuild 
b/dev-perl/Gtk2-Notify/Gtk2-Notify-0.05-r1.ebuild
deleted file mode 100644
index 65da1fc5471..000
--- a/dev-perl/Gtk2-Notify/Gtk2-Notify-0.05-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=FLORA
-
-inherit perl-module virtualx
-
-DESCRIPTION="A perl interface to the notification library"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="dev-perl/glib-perl
-   dev-perl/Gtk2
-   >=x11-libs/libnotify-0.7"
-DEPEND="${RDEPEND}
-   dev-perl/ExtUtils-Depends
-   dev-perl/ExtUtils-PkgConfig
-   test? ( dev-perl/Test-Exception )"
-
-SRC_TEST="do"
-
-PATCHES=( "${FILESDIR}"/${P}-libnotify.patch )
-
-src_test() {
-   VIRTUALX_COMMAND="perl-module_src_test" virtualmake #416729
-}



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

2017-06-30 Thread Kent Fredric
commit: adbfd7d7de67b28be8b5f5a4049ffe26e43da383
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Jun 30 18:12:06 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Jun 30 18:13:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adbfd7d7

dev-perl/MIME-Charset: Spread ~alpha to 1.12.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/MIME-Charset/MIME-Charset-1.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/MIME-Charset/MIME-Charset-1.12.2.ebuild 
b/dev-perl/MIME-Charset/MIME-Charset-1.12.2.ebuild
index 8f4f1ac64dc..d506f9d42f0 100644
--- a/dev-perl/MIME-Charset/MIME-Charset-1.12.2.ebuild
+++ b/dev-perl/MIME-Charset/MIME-Charset-1.12.2.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Charset Informations for MIME"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="l10n_ja l10n_zh"
 PATCHES=(
"${FILESDIR}/1.012-makefilepl.patch"



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

2017-06-30 Thread Kent Fredric
commit: fd32ee3d4c8099c8acfbedd25dcd582346086a2b
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Jun 30 18:13:40 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Jun 30 18:13:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd32ee3d

dev-perl/MIME-Charset: Cleanup old re bug #614536

Remove versions affected by '.' removal from @INC

Bug: https://bugs.gentoo.org/614536
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/MIME-Charset/MIME-Charset-1.12.0.ebuild | 27 
 dev-perl/MIME-Charset/MIME-Charset-1.9.3.ebuild  | 16 --
 dev-perl/MIME-Charset/Manifest   |  2 --
 3 files changed, 45 deletions(-)

diff --git a/dev-perl/MIME-Charset/MIME-Charset-1.12.0.ebuild 
b/dev-perl/MIME-Charset/MIME-Charset-1.12.0.ebuild
deleted file mode 100644
index 749b29dc8d0..000
--- a/dev-perl/MIME-Charset/MIME-Charset-1.12.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=NEZUMI
-DIST_VERSION=1.012
-inherit perl-module
-
-DESCRIPTION="Charset Informations for MIME"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
-IUSE="l10n_ja l10n_zh"
-PATCHES=(
-   "${FILESDIR}/${DIST_VERSION}-makefilepl.patch"
-)
-# Put JISX0213 here one day
-# And POD2
-RDEPEND="
-   >=virtual/perl-Encode-1.980.0
-   l10n_ja? ( >=dev-perl/Encode-EUCJPASCII-0.20.0 )
-   l10n_zh? ( >=dev-perl/Encode-HanExtra-0.200.0  )
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"

diff --git a/dev-perl/MIME-Charset/MIME-Charset-1.9.3.ebuild 
b/dev-perl/MIME-Charset/MIME-Charset-1.9.3.ebuild
deleted file mode 100644
index 900b50fa3ed..000
--- a/dev-perl/MIME-Charset/MIME-Charset-1.9.3.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=NEZUMI
-MODULE_VERSION=1.009.3
-inherit perl-module
-
-DESCRIPTION="Charset Informations for MIME"
-
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-SRC_TEST=do

diff --git a/dev-perl/MIME-Charset/Manifest b/dev-perl/MIME-Charset/Manifest
index 62c1d3026ad..a4f6438b07b 100644
--- a/dev-perl/MIME-Charset/Manifest
+++ b/dev-perl/MIME-Charset/Manifest
@@ -1,3 +1 @@
-DIST MIME-Charset-1.009.3.tar.gz 50401 SHA256 
57078ab83a8e8d8ae3e64ae4f7f80fc4b885520ca4b7b52833073506ab7ba48d SHA512 
cc6780145482aec0b61e83b002b7939d2a592eaf4a893e0101a9dd78ba9e548914e854330a51d4d5bea267d67028653c790c221997c7939b0a9d75ba642d615c
 WHIRLPOOL 
39ab469fb22a2c8927d95f68e55d86c9ac01acee1174bb285e6d361212d0a622c54cb2e4ecb09ce5889c0f0a48fd141a6e693effcc0cc6420e1ed01c1790793c
 DIST MIME-Charset-1.012.2.tar.gz 55609 SHA256 
878c779c0256c591666bd06c0cde4c0d7820eeeb98fd1183082aee9a1e7b1d13 SHA512 
2273bf0b86eb042e5aa8bcf958eefefde7dce6701eea5ae8c0fe9997e7d3e90d837a7791ade30f84536a15116175c796daee60da6625f409d214844dfedfde4d
 WHIRLPOOL 
8dc333ab2afe197d9f3d621eb31e4d82b353da0354db1fa1717972afa36606e7e48075f26f49a4695c5031669a8b3b72af17863f86402aff1acba7a4e6161f9d
-DIST MIME-Charset-1.012.tar.gz 55201 SHA256 
cee5d1d4184ad46ca17d995335bc8d9b6d95e1e64584079d032cf5f0c82dcccd SHA512 
f116deb04912bdccfd98484ef82d643d23b4cb90bfdf88ddc60d0a3f857ac3f084a60681a6fae4f9a2d982d6f470c79f171688e44a4034e9533bb518a914e2fe
 WHIRLPOOL 
a7bd7be1d927d2274e0834feb82ece5df514937b1beef557d70bb857bb208015e580e0ae71eb9467aa27e865c8606041cd28446d541bdec60c469ffa6b950d63



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

2017-06-30 Thread Matt Turner
commit: 9cf35e7c04d9c5ff9bbff6d19dbbd0858aa0ec65
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 30 18:10:28 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 30 18:10:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf35e7c

media-libs/mesa: Version bump to 17.1.4

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-17.1.4.ebuild | 503 +
 2 files changed, 504 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index f271afd66e8..09c566efc6e 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -6,3 +6,4 @@ DIST mesa-17.1.0.tar.xz 9849580 SHA256 
cf234a6ed4764673886b6661553b54675776ef089
 DIST mesa-17.1.1.tar.xz 9854480 SHA256 
aed503f94c0c1630a162a3e276f4ee12a86764cee4cb92338ea2dea99a04e7ef SHA512 
4679b8c1a957e515e9f7a6658f2264d4c458379a37fa8f64c9ef03e817857a683fc527a8172d3ae68ca5ebc84a1a78264e18807704c5130c95efdf0431502bc7
 WHIRLPOOL 
e34aef05bc9f6256a717de1d47f445fedbe5981836724b31e6d0ee801a26b23da9c70acdbfc86d2b676f494ba2c47bf24d8ed0c5c8fb3774fba28443d47578d4
 DIST mesa-17.1.2.tar.xz 9837516 SHA256 
0937804f43746339b1f9540d8f9c8b4a1bb3d3eec0e4020eac283b8799798239 SHA512 
9df5e1a0336948a6ba338a9a8499b286543bc079f61f1cf85f6ecf98e05fab9a23cde0d1e3f2153df9b07515cb8c1a08531d43f053783991ecdd32380d3b
 WHIRLPOOL 
81ce678cb95eb86c41fb00f01ad5f4ed207a20e8290d789f347377553da4ff7ebde56bdb41df03a94a30f6fc141c52833bf6da6c5a79ff85654c7806945b4bd5
 DIST mesa-17.1.3.tar.xz 9861256 SHA256 
5f1ee9a8aea2880f887884df2dea0c16dd1b13eb42fd2e52265db0dc1b380e8c SHA512 
b487d4f3d7717f379e7aaf66958bbef886fbae219e6e0333123c4623dc7db84109aca8cf07be08c0b79a74bdb198c704073fd549c6e85aa952ed3c97da1a8a94
 WHIRLPOOL 
f9e2634e8a4c9765739ca4db005901d4df077f954e9008c05ee26dfc10e008166e5128096db071e0e26f4bdf244ecb9f8767b8862b018a68d677a3579c789114
+DIST mesa-17.1.4.tar.xz 9899196 SHA256 
06f3b0e6a28f0d20b7f3391cf67fe89ae98ecd0a686cd545da76557b6cec9cad SHA512 
cb8369f0edd3e17b4eee8da159b9dc487f8144d69fe4b95901e9aa6a924759866f26f91fc2ead7036707eecea41582185e7ce73d54f97bf310f198b72ee0a8e4
 WHIRLPOOL 
5c313d7b938c58a7e2f59b619161316629ee996025dc5810742c881716cfcee441a8b3641d644fa0bc4aeec6c44c4b1ce99f515a59159a3391cf4948c2bab45a

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

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

2017-06-30 Thread Tony Vroon
commit: 3ae4420681873e7d3f60758fce31f25b5d426ead
Author: Tony Vroon  gentoo  org>
AuthorDate: Fri Jun 30 17:48:44 2017 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jun 30 17:48:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ae44206

sys-apps/cciss_vol_status: Version bump to 1.12; new cron script by Michael 
"mjo" Orlitzky closes bug #561868.

Package-Manager: portage-2.3.6

 sys-apps/cciss_vol_status/Manifest |  1 +
 .../cciss_vol_status/cciss_vol_status-1.12.ebuild  | 21 +
 .../cciss_vol_status/files/cciss_vol_status.cron2  | 52 ++
 3 files changed, 74 insertions(+)

diff --git a/sys-apps/cciss_vol_status/Manifest 
b/sys-apps/cciss_vol_status/Manifest
index 5ddfa11bc38..771888e2bb1 100644
--- a/sys-apps/cciss_vol_status/Manifest
+++ b/sys-apps/cciss_vol_status/Manifest
@@ -2,3 +2,4 @@ DIST cciss_vol_status-1.03.tar.gz 86581 SHA256 
b3cdcadba4dc8637c70aac9d594e32acb
 DIST cciss_vol_status-1.09.tar.gz 104978 SHA256 
93520050c3b1742288b92314585d1c0d4eaed9799747b8fc0c06977bbf5b74e4 SHA512 
c773c6addcb26a3c635c28f9ebad7b9a5c2457516ffa87548fe0d3cee5ff864267dbe7c4dfccef0ed1c40d0273a833475ce4c96ba51f755776059daee892d114
 WHIRLPOOL 
a3dcd382d5100c41bd0ff9900a3c6edba5e23a40711fbf9ec2762f596580947e51e31795b3d5a2daf4a299d68f798bba7500b5cb7e607a05f9cc39788abd0f48
 DIST cciss_vol_status-1.10.tar.gz 107233 SHA256 
803110bf3f7d49f3b03e299e9a5209eba2661631bd07630672e497a6e182a504 SHA512 
2010a9fd90b3e4c1d21ae6946c8085df96d15e4d4ce732d6488034e96f1d029f48d6226190c7422f9d99ab2994315c0514c534bb79aafd52b52bd27498428461
 WHIRLPOOL 
a3b80b9f914621fbcc8251c942638d7eef35dad40fdfe9f795ed2693045e36f3e5c5bf8559f49320679114b9fbde88b75b26cda33d13cdb80c36629df2380478
 DIST cciss_vol_status-1.11.tar.gz 112316 SHA256 
98c3c798cd8f322af8c8f18b19be069a137af15fce9e4022edee3ea7371df919 SHA512 
20a80367a794a7f805f3b40184e93bd4f85e8ce2a7784eba1d2d68cbffc8299cbe121f9bf25e7112abec1269802f8146f3fc36501fb72536b1aee384e8d32064
 WHIRLPOOL 
70e7f5aa2f72e14e75df3c98b92bc03505ac770776bce1730c972bdf7f84808467275da93cf89e6eeab3e6af1096d8f51e35ef030a98d45ddcb3394d450fecaf
+DIST cciss_vol_status-1.12.tar.gz 120346 SHA256 
a49abbfde6369416ac3d71bca6f60f342584eb99c786c080f8722ad19a17f91f SHA512 
f9fa8b98bd42810932f03f514b4b8c6cea690378f065a6c9788ddb78612c7ca2aa9a7fefa8a40634cfe247600fb6d3f11f0b687fba77d1423087a2b319773d69
 WHIRLPOOL 
194a9edaea1c2e9b4a6a4681f583d3b665b84c432b4dfa26be9d96ea73ab7a7d632db0c7dc6a9c7d5b4b029f3e2bd78212feefa3789dd659e2e2d832034e3f9c

diff --git a/sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild 
b/sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild
new file mode 100644
index 000..b70b2f6a0b9
--- /dev/null
+++ b/sys-apps/cciss_vol_status/cciss_vol_status-1.12.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+IUSE=""
+DESCRIPTION="Shows status of logical drives attached to HP SmartArray 
controllers"
+HOMEPAGE="http://cciss.sourceforge.net/#cciss_utils;
+LICENSE="GPL-2"
+SRC_URI="mirror://sourceforge/cciss/${P}.tar.gz"
+KEYWORDS="~amd64 ~ia64 ~x86"
+SLOT="0"
+RDEPEND=""
+DEPEND=""
+
+src_install() {
+   emake DESTDIR="${D}" install || die "Install failed."
+   dodoc AUTHORS ChangeLog NEWS README
+   exeinto /etc/cron.hourly
+   newexe "${FILESDIR}/cciss_vol_status.cron2" cciss_vol_status
+}

diff --git a/sys-apps/cciss_vol_status/files/cciss_vol_status.cron2 
b/sys-apps/cciss_vol_status/files/cciss_vol_status.cron2
new file mode 100644
index 000..43731b48e0c
--- /dev/null
+++ b/sys-apps/cciss_vol_status/files/cciss_vol_status.cron2
@@ -0,0 +1,52 @@
+#!/bin/sh
+
+test -x /usr/bin/cciss_vol_status || exit 0
+
+# WARNING: For the hpsa driver, we only support /dev/sda through
+# /dev/sdz and /dev/sg0 through /dev/sg9.
+DEVICES=$(find /dev -type b \( -path '/dev/cciss/c*d0' \
+   -or \
+   -path '/dev/sd[a-z]' \
+   -or \
+   -path '/dev/sg[0-9]' \))
+
+if [ -n "${DEVICES}" ]; then
+#
+# Unsupported devices will generate an error (to stderr) of the form,
+#
+#   cciss_vol_status: /dev/sda: Unknown SCSI device.
+#
+# We want to ignore these, and fortunately, an exit code of zero
+# is returned in this case. So we need only hide the output by
+# redirecting stderr elsewhere. But, that also hides errors of the
+# form,
+#
+#   cciss_vol_status: open /dev/sda: Permission denied
+#
+# which we DO want to present to the user. So instead of sending
+# stderr to stdout, we redirect it to a temporary file. We then
+# show the content of the temporary file to the user if it
+# contains errors other than "Unknown SCSI device."
+#
+TMPFILE=$( mktemp )
+if [ $? -ne 0 ] || [ ! -f "${TMPFILE}" ];  then
+   echo "${0}: error 

[gentoo-commits] proj/kde:master commit in: net-p2p/ktorrent/

2017-06-30 Thread Andreas Sturmlechner
commit: d5b7adbffd3ae712961b4d5c8dd3fb06379261ff
Author: Andrius Štikonas  stikonas  eu>
AuthorDate: Thu Jun 29 16:13:06 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 30 17:36:15 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d5b7adbf

net-p2p/ktorrent: Update DEPENDs

Closes: https://github.com/gentoo/kde/pull/858

 net-p2p/ktorrent/ktorrent-.ebuild | 18 +-
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/net-p2p/ktorrent/ktorrent-.ebuild 
b/net-p2p/ktorrent/ktorrent-.ebuild
index 6e843d7816..607fee1d86 100644
--- a/net-p2p/ktorrent/ktorrent-.ebuild
+++ b/net-p2p/ktorrent/ktorrent-.ebuild
@@ -23,6 +23,7 @@ else
 fi
 
 KDE_HANDBOOK="forceoptional"
+KDE_TEST="optional"
 inherit kde5
 
 DESCRIPTION="Powerful BitTorrent client based on KDE Frameworks"
@@ -33,15 +34,12 @@ IUSE="+bwscheduler +downloadorder +infowidget +ipfilter 
+kross +logviewer +magne
 +mediaplayer rss +scanfolder +search +shutdown +stats +upnp +zeroconf"
 
 COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
$(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcompletion)
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
@@ -60,12 +58,17 @@ COMMON_DEPEND="
=net-libs/libktorrent-${LIBKT_VERSION_MIN}:5
infowidget? ( dev-libs/geoip )
-   kross? ( $(add_frameworks_dep kross) )
+   kross? (
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep kross)
+   )
mediaplayer? (
media-libs/phonon[qt5]
>=media-libs/taglib-1.5
)
rss? (
+   $(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kdewebkit)
$(add_kdeapps_dep syndication)
)
@@ -73,8 +76,12 @@ COMMON_DEPEND="
$(add_frameworks_dep kdewebkit)
$(add_qt_dep qtwebkit)
)
-   shutdown? ( $(add_plasma_dep plasma-workspace) )
+   shutdown? (
+   $(add_frameworks_dep kdelibs4support)
+   $(add_plasma_dep plasma-workspace)
+   )
stats? ( $(add_frameworks_dep kplotting) )
+   upnp? ( $(add_frameworks_dep kcompletion) )
zeroconf? ( $(add_frameworks_dep kdnssd) )
 "
 DEPEND="${COMMON_DEPEND}
@@ -85,6 +92,7 @@ RDEPEND="${COMMON_DEPEND}
ipfilter? (
app-arch/bzip2
app-arch/unzip
+   $(add_frameworks_dep ktextwidgets)
$(add_kdeapps_dep kio-extras)
)
!net-p2p/ktorrent:4



[gentoo-commits] proj/kde:master commit in: net-p2p/ktorrent/

2017-06-30 Thread Andreas Sturmlechner
commit: df01c94242fd7974c5b90370b478903022891c6e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jun 30 17:41:08 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 30 17:41:08 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=df01c942

net-p2p/ktorrent: Drop obsolete src_prepare

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-p2p/ktorrent/ktorrent-.ebuild | 6 --
 1 file changed, 6 deletions(-)

diff --git a/net-p2p/ktorrent/ktorrent-.ebuild 
b/net-p2p/ktorrent/ktorrent-.ebuild
index 607fee1d86..5d71067328 100644
--- a/net-p2p/ktorrent/ktorrent-.ebuild
+++ b/net-p2p/ktorrent/ktorrent-.ebuild
@@ -98,12 +98,6 @@ RDEPEND="${COMMON_DEPEND}
!net-p2p/ktorrent:4
 "
 
-src_prepare() {
-   kde5_src_prepare
-
-   use kross || punt_bogus_dep KF5 Kross
-}
-
 src_configure() {
local mycmakeargs=(
-DENABLE_BWSCHEDULER_PLUGIN=$(usex bwscheduler)



[gentoo-commits] repo/gentoo:master commit in: app-text/libwps/

2017-06-30 Thread Andreas Sturmlechner
commit: 296da062a4b21824e5f0d40693abc4e9cc35c0ec
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jun 28 17:30:06 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 30 17:26:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296da062

app-text/libwps: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-text/libwps/Manifest   |  1 -
 app-text/libwps/libwps-0.4.4-r1.ebuild | 37 --
 2 files changed, 38 deletions(-)

diff --git a/app-text/libwps/Manifest b/app-text/libwps/Manifest
index 1d3e8eefd84..f341e451fb2 100644
--- a/app-text/libwps/Manifest
+++ b/app-text/libwps/Manifest
@@ -1,2 +1 @@
-DIST libwps-0.4.4.tar.xz 574768 SHA256 
b7c564bba7bc9058c524eaf94cb43448832aa03e3d763b98e11ee12d25082df4 SHA512 
201b4a7d6788e4193aeff694e25bbda78678126b654907f4d20783afa343a069d7f6c12344b261496434df4fd1f3df933881a5ed5358f330cd15568c8710963d
 WHIRLPOOL 
de32feb8721771a5058b283b5dd6a59e005db1e53a8539c5e1268540cf3e9f5d0353babafcb42e82aade103dd1efc0834f0a80d7b3e995a8d5464ffbc0f538b7
 DIST libwps-0.4.6.tar.xz 592276 SHA256 
e48a7c2fd20048a0a8eaf69bad972575f8b9f06e7497c787463f127d332fccd0 SHA512 
00d1d9108f405cb5eeb67985057f0c6a5d9dd8ef9c3daeebb6739e10a38a5db7cbf22a9e4d09684452376896009993ba08cb015ec0616b56c44d87a3241e
 WHIRLPOOL 
31198a1889148c87357c0411cd7c28c75de69048ed9c589e98c8a9f866a18295a6d572308966bc1173f207499616bcd1e87eb48bbbec5193fef36228a23ca5c5

diff --git a/app-text/libwps/libwps-0.4.4-r1.ebuild 
b/app-text/libwps/libwps-0.4.4-r1.ebuild
deleted file mode 100644
index dfef4a6a180..000
--- a/app-text/libwps/libwps-0.4.4-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Microsoft Works file word processor format import filter library"
-HOMEPAGE="https://sourceforge.net/p/libwps/wiki/Home/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm x86"
-IUSE="doc debug static-libs tools"
-
-RDEPEND="
-   app-text/libwpd:0.10
-   dev-libs/librevenge
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-
-src_configure() {
-   econf \
-   --disable-werror \
-   --with-sharedptr=c++11 \
-   $(use_enable debug) \
-   $(use_with doc docs) \
-   $(use_enable static-libs static) \
-   $(use_enable tools)
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/amarok/

2017-06-30 Thread Andreas Sturmlechner
commit: dd5fdb08a31661779afbe0c6ad3ddf99c026c332
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jun 28 17:03:40 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 30 17:26:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd5fdb08

media-sound/amarok: Drop old

Gentoo-bug: 622684

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --force

 media-sound/amarok/Manifest|   1 -
 media-sound/amarok/amarok-2.8.0-r3.ebuild  | 138 -
 media-sound/amarok/amarok-2.8.90-r2.ebuild | 135 
 3 files changed, 274 deletions(-)

diff --git a/media-sound/amarok/Manifest b/media-sound/amarok/Manifest
index 164d0d3c5cb..81273e9657d 100644
--- a/media-sound/amarok/Manifest
+++ b/media-sound/amarok/Manifest
@@ -1,2 +1 @@
-DIST amarok-2.8.0.tar.bz2 39950028 SHA256 
f4b89b28f217a6d947e55fb0890de22fad8c404794c6beeb2dcaf2711b4f8ec6 SHA512 
09f7f675f1223d36fb9df2f8c88923c6616524e022ad83b12bcb770dfbf60cb6b191e4035633f2ea2eee5fb7b38e6d5092cf69fe222ef9c3f3c46ba8f157a62d
 WHIRLPOOL 
108cfd95d65e74f28f85a846f605bc349e5b2962b7f9a357415225f3e48ff87148d7f50a642665cc3c809bb2cb4c22f339ad049cdeb4659bb7c0a48e798833ad
 DIST amarok-2.8.90.tar.xz 48890580 SHA256 
b057369ab70d192b669ee6c2c11e9e7d4140663f6a60d6175ef0bb56b4bef9a7 SHA512 
1ff5f43100dbe027c8676946a4e82e914927b03ac0bb9e95bfc7e9e03fcc1cad81d9ea2a343bc4f644a025242e224ea9ae3cae7423d68b0b3c68f346922537fc
 WHIRLPOOL 
22da35ea61dcda04d882f4c0da7327cab10edf50140b3ae891738d10e1b9e5062eb541e35e817fd04a7f0284eb085b5ccf3edfa20438b764a9ce3615de35ca8c

diff --git a/media-sound/amarok/amarok-2.8.0-r3.ebuild 
b/media-sound/amarok/amarok-2.8.0-r3.ebuild
deleted file mode 100644
index 0a5d5cef805..000
--- a/media-sound/amarok/amarok-2.8.0-r3.ebuild
+++ /dev/null
@@ -1,138 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-KDE_LINGUAS="bs ca ca@valencia cs da de el en_GB es et eu fi fr ga gl hu it ja
-lt lv nb nl pa pl pt pt_BR ro ru sl sr sr@ijekavian sr@ijekavianlatin sr@latin
-sv tr uk zh_CN zh_TW"
-KDE_REQUIRED="never"
-KDE_HANDBOOK="optional"
-KDE_MINIMAL="4.13.1"
-VIRTUALX_REQUIRED="test"
-VIRTUALDBUS_TEST="true"
-WEBKIT_REQUIRED="always"
-inherit flag-o-matic kde4-base pax-utils
-
-DESCRIPTION="Advanced audio player based on KDE framework"
-HOMEPAGE="https://amarok.kde.org/;
-if [[ ${PV} != ** ]]; then
-   if [[ $PV == *[6-9][0-9]* ]]; then
-   SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.bz2"
-   else
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
-   fi
-   KEYWORDS="amd64 x86"
-else
-   KEYWORDS=""
-fi
-
-LICENSE="GPL-2"
-SLOT="4"
-IUSE="cdda debug +embedded ipod lastfm mp3tunes mtp ofa opengl test +utils"
-
-if [[ ${KDE_BUILD_TYPE} == live ]]; then
-   RESTRICT="test"
-fi
-
-# ipod requires gdk enabled and also gtk compiled in libgpod
-COMMONDEPEND="
-   app-crypt/qca:2[qt4(+)]
-   kde-frameworks/kdelibs:4[opengl?]
-   $(add_kdeapps_dep kdebase-kioslaves)
-   >=media-libs/taglib-1.7[asf(+),mp4(+)]
-   >=media-libs/taglib-extras-1.0.1
-   sys-libs/zlib
-   >=virtual/mysql-5.1[embedded?]
-   >=dev-qt/qtcore-4.8:4
-   >=dev-qt/qtdbus-4.8:4
-   >=dev-qt/qtscript-4.8:4
-   >=x11-libs/qtscriptgenerator-0.1.0
-   cdda? (
-   $(add_kdeapps_dep libkcddb)
-   $(add_kdeapps_dep libkcompactdisc)
-   $(add_kdeapps_dep audiocd-kio)
-   )
-   ipod? ( >=media-libs/libgpod-0.7.0[gtk] )
-   lastfm? ( >=media-libs/liblastfm-1.0.3[qt4(+)] )
-   mp3tunes? (
-   dev-libs/glib:2
-   dev-libs/libxml2
-   dev-libs/openssl:0
-   net-libs/loudmouth
-   net-misc/curl
-   >=dev-qt/qtcore-4.8.4:4[glib]
-   )
-   mtp? ( >=media-libs/libmtp-1.0.0 )
-   ofa? ( >=media-libs/libofa-0.9.0 )
-   opengl? ( virtual/opengl )
-"
-DEPEND="${COMMONDEPEND}
-   dev-util/automoc
-   virtual/pkgconfig
-   test? ( dev-cpp/gmock )
-"
-RDEPEND="${COMMONDEPEND}
-   !media-sound/amarok-utils
-   || ( kde-apps/phonon-kde:4
-   $(add_kdeapps_dep phonon-kde) )
-"
-
-PATCHES=(
-   "${FILESDIR}/${P}-gmock-1.7.patch"
-   "${FILESDIR}/${P}-mysqld-rpath.patch"
-   "${FILESDIR}/${P}-taglib110.patch"
-)
-
-src_configure() {
-   # Append minimal-toc cflag for ppc64, see bug 280552 and 292707
-   use ppc64 && append-flags -mminimal-toc
-
-   local mycmakeargs=(
-   -DWITH_PLAYER=ON
-   -DWITH_Libgcrypt=OFF
-   -DWITH_SPECTRUM_ANALYZER=OFF
-   -DWITH_NepomukCore=OFF
-   -DWITH_Soprano=OFF
-   $(cmake-utils_use embedded WITH_MYSQL_EMBEDDED)
-   $(cmake-utils_use_with ipod)
-   $(cmake-utils_use_with ipod 

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

2017-06-30 Thread Andreas Sturmlechner
commit: 933c80df56e3d7d0f0d5050c6377edb530a460c5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jun 28 17:33:11 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 30 17:26:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=933c80df

media-libs/mlt: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 media-libs/mlt/mlt-6.4.1-r1.ebuild | 206 -
 1 file changed, 206 deletions(-)

diff --git a/media-libs/mlt/mlt-6.4.1-r1.ebuild 
b/media-libs/mlt/mlt-6.4.1-r1.ebuild
deleted file mode 100644
index 14992551c14..000
--- a/media-libs/mlt/mlt-6.4.1-r1.ebuild
+++ /dev/null
@@ -1,206 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-USE_RUBY="ruby21"
-inherit eutils flag-o-matic multilib python-single-r1 ruby-single 
toolchain-funcs
-
-DESCRIPTION="Open source multimedia framework for television broadcasting"
-HOMEPAGE="https://www.mltframework.org/;
-SRC_URI="https://github.com/mltframework/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="compressed-lumas debug ffmpeg fftw frei0r gtk jack kdenlive libav 
libsamplerate melt opencv opengl
-cpu_flags_x86_mmx qt5 rtaudio sdl cpu_flags_x86_sse cpu_flags_x86_sse2 xine 
xml lua python ruby vdpau"
-# java perl php tcl vidstab
-IUSE="${IUSE} kernel_linux"
-
-#rtaudio will use OSS on non linux OSes
-COMMON_DEPEND="
-   ffmpeg? (
-   libav? ( media-video/libav:0=[vdpau?] )
-   !libav? ( media-video/ffmpeg:0=[vdpau?] )
-   )
-   xml? ( >=dev-libs/libxml2-2.5 )
-   sdl? ( >=media-libs/libsdl-1.2.10[X,opengl,video]
->=media-libs/sdl-image-1.2.4 )
-   libsamplerate? ( >=media-libs/libsamplerate-0.1.2 )
-   jack? ( >=media-sound/jack-audio-connection-kit-0.121.3
-   media-libs/ladspa-sdk
-   >=dev-libs/libxml2-2.5 )
-   fftw? ( sci-libs/fftw:3.0= )
-   frei0r? ( media-plugins/frei0r-plugins )
-   gtk? ( x11-libs/gtk+:2
-   media-libs/libexif
-   x11-libs/pango )
-   opencv? ( >=media-libs/opencv-3.1.0:= )
-   opengl? ( media-video/movit )
-   rtaudio? (
-   media-libs/rtaudio
-   kernel_linux? ( media-libs/alsa-lib )
-   )
-   xine? ( >=media-libs/xine-lib-1.1.2_pre20060328-r7 )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   media-libs/libexif
-   x11-libs/libX11
-   opengl? ( dev-qt/qtopengl:5 )
-   )
-   lua? ( >=dev-lang/lua-5.1.4-r4:= )
-   python? ( ${PYTHON_DEPS} )
-   ruby? ( ${RUBY_DEPS} )"
-#  sox? ( media-sound/sox )
-#  java? ( >=virtual/jre-1.5 )
-#  perl? ( dev-lang/perl )
-#  php? ( dev-lang/php )
-#  tcl? ( dev-lang/tcl:0= )
-#  vidstab? ( media-libs/libvidstab )
-SWIG_DEPEND=">=dev-lang/swig-2.0"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   compressed-lumas? ( virtual/imagemagick-tools[png] )
-   lua? ( ${SWIG_DEPEND} virtual/pkgconfig )
-   python? ( ${SWIG_DEPEND} )
-   ruby? ( ${SWIG_DEPEND} )"
-#  java? ( ${SWIG_DEPEND} >=virtual/jdk-1.5 )
-#  perl? ( ${SWIG_DEPEND} )
-#  php? ( ${SWIG_DEPEND} )
-#  tcl? ( ${SWIG_DEPEND} )
-RDEPEND="${COMMON_DEPEND}
-   !media-libs/mlt++
-"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-6.2.0-ruby-link.patch
-
-   # respect CFLAGS LDFLAGS when building shared libraries. Bug #308873
-   for x in python lua; do
-   sed -i "/mlt.so/s: -lmlt++ :& ${CFLAGS} ${LDFLAGS} :" 
src/swig/$x/build || die
-   done
-   sed -i "/^LDFLAGS/s: += :& ${LDFLAGS} :" src/swig/ruby/build || die
-
-   default
-}
-
-src_configure() {
-   tc-export CC CXX
-
-   # bug 589848
-   append-cxxflags -std=c++11
-
-   local myconf="--enable-gpl
-   --enable-gpl3
-   --enable-motion-est
-   --target-arch=$(tc-arch)
-   --disable-kde
-   --disable-swfdec
-   $(use_enable debug)
-   $(use compressed-lumas && echo ' --luma-compress')
-   $(use_enable cpu_flags_x86_sse sse)
-   $(use_enable cpu_flags_x86_sse2 sse2)
-   $(use_enable gtk gtk2)
-   $(use_enable sdl)
-   $(use_enable jack jackrack)
-   $(use_enable ffmpeg avformat)
-   $(use ffmpeg && echo ' --avformat-swscale')
-   $(use_enable fftw plus)
-   $(use_enable frei0r)
-   $(use_enable melt)
-   

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/libcmis/

2017-06-30 Thread Andreas Sturmlechner
commit: 69767aa0668b59a8afc06cd49feda85e51c7ec2c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jun 28 17:31:26 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 30 17:26:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69767aa0

dev-cpp/libcmis: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-cpp/libcmis/libcmis-0.5.2_pre20160820.ebuild | 77 
 1 file changed, 77 deletions(-)

diff --git a/dev-cpp/libcmis/libcmis-0.5.2_pre20160820.ebuild 
b/dev-cpp/libcmis/libcmis-0.5.2_pre20160820.ebuild
deleted file mode 100644
index 54e36f92036..000
--- a/dev-cpp/libcmis/libcmis-0.5.2_pre20160820.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGIT_REPO_URI="https://github.com/tdf/libcmis.git;
-[[ ${PV} ==  ]] && SCM_ECLASS="git-r3"
-inherit alternatives autotools ${SCM_ECLASS}
-unset SCM_ECLASS
-
-DESCRIPTION="C++ client library for the CMIS interface"
-HOMEPAGE="https://github.com/tdf/libcmis;
-if [[ ${PV} = *_pre* ]]; then
-   snapshot=da8c3fdc281a0cb3753a6bb9eaa63ac6385e2963
-   SRC_URI="https://github.com/tdf/${PN}/archive/${snapshot}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${snapshot}"
-   unset snapshot
-elif [[ ${PV} !=  ]] ; then
-   SRC_URI="https://github.com/tdf/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-LICENSE="|| ( GPL-2 LGPL-2 MPL-1.1 )"
-SLOT="0.5"
-
-# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
-[[ ${PV} ==  ]] || \
-KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux"
-
-IUSE="static-libs man test"
-
-COMMON_DEPEND="
-   dev-libs/boost:=
-   dev-libs/libxml2
-   net-misc/curl
-"
-DEPEND="${COMMON_DEPEND}
-   virtual/pkgconfig
-   man? (
-   app-text/docbook2X
-   dev-libs/libxslt
-   )
-   test? (
-   dev-util/cppcheck
-   dev-util/cppunit
-   )
-"
-RDEPEND="${COMMON_DEPEND}
-   !

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

2017-06-30 Thread Zac Medico
commit: eaae9df284e5f90799860ff8c2d2277d835a5f93
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jun 30 16:29:14 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jun 30 16:30:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaae9df2

sys-libs/binutils-libs: add texinfo to DEPEND (bug 622652)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-libs/binutils-libs/binutils-libs-2.28-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-libs/binutils-libs/binutils-libs-2.28-r1.ebuild 
b/sys-libs/binutils-libs/binutils-libs-2.28-r1.ebuild
index 7af6bf87b2e..71fb7dcb22a 100644
--- a/sys-libs/binutils-libs/binutils-libs-2.28-r1.ebuild
+++ b/sys-libs/binutils-libs/binutils-libs-2.28-r1.ebuild
@@ -23,6 +23,7 @@ IUSE="64-bit-bfd multitarget nls static-libs"
 
 COMMON_DEPEND="sys-libs/zlib[${MULTILIB_USEDEP}]"
 DEPEND="${COMMON_DEPEND}
+   >=sys-apps/texinfo-4.7
nls? ( sys-devel/gettext )"
 # Need a newer binutils-config that'll reset include/lib symlinks for us.
 RDEPEND="${COMMON_DEPEND}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/neutron/

2017-06-30 Thread Matt Thode
commit: aadbc1af0e7eceb1ea52219668b5db92a84702e0
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 30 16:10:02 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 30 16:12:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aadbc1af

sys-cluster/neutron: 9.4.0 and 10.0.2 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-cluster/neutron/Manifest  |   6 -
 sys-cluster/neutron/neutron-10.0.1.ebuild | 238 --
 sys-cluster/neutron/neutron-10.0.2.ebuild |   2 +-
 sys-cluster/neutron/neutron-9.3.1.ebuild  | 229 
 sys-cluster/neutron/neutron-9.4.0.ebuild  |   2 +-
 5 files changed, 2 insertions(+), 475 deletions(-)

diff --git a/sys-cluster/neutron/Manifest b/sys-cluster/neutron/Manifest
index fa38e044e2f..d91a6593708 100644
--- a/sys-cluster/neutron/Manifest
+++ b/sys-cluster/neutron/Manifest
@@ -1,16 +1,10 @@
-DIST neutron-10.0.1.tar.gz 3139904 SHA256 
1447feefdddbccb2ea2c778b75e5270513db8baa5ba32bd82108e7b58d3b411c SHA512 
2d4d0416425e5b766993ccc3e263d2678af3325502b392b8d9cba075f9dfae64d2f2211a1a36e09b9bd43f102972491b737265844b81be03efcf3ee85b6896ac
 WHIRLPOOL 
7a02c8185f77f260040fb05b932a478a8d3297b7e76087fc82a43429697d2674ba931a40af9444be4723bf36b5c330cdc7afea6f2f66360565f338da16434fc9
 DIST neutron-10.0.2.tar.gz 3113218 SHA256 
b3f67bc97ee17a48990f2baccf0d9ae67e308896cca25fc58c8bf5453139242e SHA512 
9f1fb60ab4508d84039419a1e0ce5459235a351846027d809da98f7de568de3d0a3fb962001afe8d93029d1da0087a7666b57e6d6cedc245c3dac120bf8cf677
 WHIRLPOOL 
a648e9af2a5a47d88a52bf7ec102d4c050ef440f14cd6bd7b1b4653ed7ffd444696c8abc2a7c84b95ab82c77423cdcd48d06479b022ca20f031df10212e7e526
-DIST neutron-9.3.1.tar.gz 3041444 SHA256 
d74bf8bcc749fea569421a190d5b68180837e80482531521c5623184c2c601cf SHA512 
651d2172d375c30832eb01e1fadbe12ffde57495690194b942e83318996066040091106f4d00dc826db41727330ef8453e14f193005b0ec9732bf5d8cee9cbe2
 WHIRLPOOL 
84244e1ace8fce30253ab47a9cf7e09bb4b759c48514761951546530ba6092821d95f864970a22e596ab07029c1d23f940b1f2c44a9708bcafdc677c4ff004f2
 DIST neutron-9.4.0.tar.gz 3050485 SHA256 
b3290beaddb0554bb2fa248bbac199c91ef3a24677116100b89fcd3916a927ff SHA512 
3f016bcefde149c9b46f8dc6a94c7b346aa734522e0c3966e85198b5e8b2afb0464b9b5964c1f4a7174717e406e79fd228c48a9bb65d85a51362f9ba75e7f385
 WHIRLPOOL 
8119c8bfd0b01ea132e61ecbcd0e4c04fb550e24387555de43a8fa2fd43738aa92750d0c7d78e54e321fdd454e673e1704e223fd3360b0ab368e910fa73d7953
-DIST neutron-configs-10.0.1.tar.gz 25094 SHA256 
7f210828b0c3fa9d859fca8c4735fd60aefad3cd5d0cf810b762af268df59269 SHA512 
40ab9f2f4ea338c061c57d9aa5611ee3f3476ab8f5199ac50577f94fec032ccd27028bd072d9d9d0cc9f12327613e542b4d62a0403540730f9d6efbc4992a00d
 WHIRLPOOL 
dbdaff979a40e33cd171390657e39fb9b2a311c972e8d018e301af5361b0224ba62972241febfc4991a06bf9f16390e5c779de86823ed94eaebbee610c8c6657
 DIST neutron-configs-10.0.2.tar.gz 25094 SHA256 
7f210828b0c3fa9d859fca8c4735fd60aefad3cd5d0cf810b762af268df59269 SHA512 
40ab9f2f4ea338c061c57d9aa5611ee3f3476ab8f5199ac50577f94fec032ccd27028bd072d9d9d0cc9f12327613e542b4d62a0403540730f9d6efbc4992a00d
 WHIRLPOOL 
dbdaff979a40e33cd171390657e39fb9b2a311c972e8d018e301af5361b0224ba62972241febfc4991a06bf9f16390e5c779de86823ed94eaebbee610c8c6657
 DIST neutron-configs-2016.2..tar.gz 13458 SHA256 
111e940f7da24c18673794188f348285997a0e1f250446076700902bab101f71 SHA512 
42f9a685f0869c491610c66f5bc5f952b959a0a8514687007814e0ca97e27fb491460bc64eaf8fc47e982c8519b1dc9b5e2b4a3c047535b52521b3325ba38d44
 WHIRLPOOL 
bcceb81f46d69aa02876f2d2a76c642f9b48b472dc3e6217bef48649ecfa64d535c2361d224889f31f21b7fb40bb97930ab93443abe6d9cddfd56f19d84f5601
 DIST neutron-configs-2017.1..tar.gz 25094 SHA256 
7f210828b0c3fa9d859fca8c4735fd60aefad3cd5d0cf810b762af268df59269 SHA512 
40ab9f2f4ea338c061c57d9aa5611ee3f3476ab8f5199ac50577f94fec032ccd27028bd072d9d9d0cc9f12327613e542b4d62a0403540730f9d6efbc4992a00d
 WHIRLPOOL 
dbdaff979a40e33cd171390657e39fb9b2a311c972e8d018e301af5361b0224ba62972241febfc4991a06bf9f16390e5c779de86823ed94eaebbee610c8c6657
-DIST neutron-configs-9.3.1.tar.gz 13458 SHA256 
111e940f7da24c18673794188f348285997a0e1f250446076700902bab101f71 SHA512 
42f9a685f0869c491610c66f5bc5f952b959a0a8514687007814e0ca97e27fb491460bc64eaf8fc47e982c8519b1dc9b5e2b4a3c047535b52521b3325ba38d44
 WHIRLPOOL 
bcceb81f46d69aa02876f2d2a76c642f9b48b472dc3e6217bef48649ecfa64d535c2361d224889f31f21b7fb40bb97930ab93443abe6d9cddfd56f19d84f5601
 DIST neutron-configs-9.4.0.tar.gz 13458 SHA256 
111e940f7da24c18673794188f348285997a0e1f250446076700902bab101f71 SHA512 
42f9a685f0869c491610c66f5bc5f952b959a0a8514687007814e0ca97e27fb491460bc64eaf8fc47e982c8519b1dc9b5e2b4a3c047535b52521b3325ba38d44
 WHIRLPOOL 
bcceb81f46d69aa02876f2d2a76c642f9b48b472dc3e6217bef48649ecfa64d535c2361d224889f31f21b7fb40bb97930ab93443abe6d9cddfd56f19d84f5601
-DIST neutron-ml2-plugins-10.0.1.tar.gz 6811 SHA256 

[gentoo-commits] repo/gentoo:master commit in: sys-cluster/swift/

2017-06-30 Thread Matt Thode
commit: 8820cb7bb1f236f498fa79062e0e1b6cf332ff56
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 30 16:08:27 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 30 16:12:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8820cb7b

sys-cluster/swift: 2.13.1 and 2.10.2 stable amd64 and x86 with cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-cluster/swift/Manifest|   2 -
 sys-cluster/swift/swift-2.10.1.ebuild | 116 --
 sys-cluster/swift/swift-2.10.2.ebuild |   2 +-
 sys-cluster/swift/swift-2.13.0.ebuild | 113 -
 sys-cluster/swift/swift-2.13.1.ebuild |   2 +-
 5 files changed, 2 insertions(+), 233 deletions(-)

diff --git a/sys-cluster/swift/Manifest b/sys-cluster/swift/Manifest
index 37f5bb7634b..f4b371e58e4 100644
--- a/sys-cluster/swift/Manifest
+++ b/sys-cluster/swift/Manifest
@@ -1,4 +1,2 @@
-DIST swift-2.10.1.tar.gz 1882648 SHA256 
11efe34c68a3fee908b434ede79cdb387862e724971b44e9e02083117aea5d95 SHA512 
8307ed1f014f502a6e2d63b1b9c28f3229c035e34397a9c5369470085c6e54a9ac33fde0106beee975bd860c4be169f4da7231b7991ab6472596f6c5b614b178
 WHIRLPOOL 
bc010464b00bb8a7eed96767ec7fccb99baf03250ab64728bc712054276b4c2b28e1432bde76687451ebef26663d2f64335f6e90471e2666f7ca207e5acf7f4b
 DIST swift-2.10.2.tar.gz 1899226 SHA256 
310d0c762fc4bfae7beaa7a2a1d7cddcc7478e817f40b5322f9b7403772ce53b SHA512 
9efcb764d18524327a1e3164bcf79fbeb25fefafb7b8cf24dda22477d5d08e9d9a76c851d3b51c86e22a02f30004d5421500150c42f5963e15882aec894e09e8
 WHIRLPOOL 
ded7d106277a8c493a494633039b19eae6d8e3783d9a4a05f73ed75869402758e3650a292f6758334d45197d4995a08d6b6f1cc88fd68b6a005c3e026a460159
-DIST swift-2.13.0.tar.gz 1928128 SHA256 
166cf5181a1cad5a564fab3b387297a431e2ef9fb224753f64cc4ba04016fb48 SHA512 
e8f26ede5d51282ca18c72e5b66579236ccce2416441381c60089365f197324af05538de5788df4e81c5dacfe808a7b6fdbaa43de19b3a5319b794ff13211710
 WHIRLPOOL 
3bbd9714b6ef36f968847fff95f013c60de48671af102c36ede437c72e5143d894f9934f4aa622e6d5334e8601ee6396db6efc2b9f3639e0b4b6faf87b3ec4b5
 DIST swift-2.13.1.tar.gz 1940686 SHA256 
785a098b93eceeb745fe85bafba8a8bda20a6aec64f76fb9e4d58bb671eb2bab SHA512 
6f08239bbeebfd213d2d7bb23c83507bf033288bb5125f5fd7f37517d8b3ad0b050220c1ad03632c1ab4723a98a9068b146e38c360e6786159a6f8638f4d5d79
 WHIRLPOOL 
016ddab1201c0895b00b05a1c5a84628e3f69f306780e730ada5c8cae63e75c0959cec8be8c170abba42ea6b63bd32dd5ed6d9b6d37f72534c3a05f3c2cea4e4

diff --git a/sys-cluster/swift/swift-2.10.1.ebuild 
b/sys-cluster/swift/swift-2.10.1.ebuild
deleted file mode 100644
index 564cd0a1638..000
--- a/sys-cluster/swift/swift-2.10.1.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils linux-info user
-
-DESCRIPTION="A highly available, distributed, and eventually consistent 
object/blob store"
-HOMEPAGE="https://launchpad.net/swift;
-SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="proxy account container object +memcached"
-REQUIRED_USE="|| ( proxy account container object )"
-
-CDEPEND="
-   >=dev-python/pbr-0.8.0[${PYTHON_USEDEP}]
-   https://bugs.launchpad.net/swift/+bug/1249727
-   find . \( -name test_wsgi.py -o -name test_locale.py -o -name 
test_utils.py \) -delete || die
-   SKIP_PIP_INSTALL=1 PBR_VERSION=0.6.0 sh .unittests || die
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   keepdir /etc/swift
-   insinto /etc/swift
-
-   newins "etc/swift.conf-sample" "swift.conf"
-   newins "etc/rsyncd.conf-sample" "rsyncd.conf"
-   newins "etc/mime.types-sample" "mime.types-sample"
-   newins "etc/memcache.conf-sample" "memcache.conf-sample"
-   newins "etc/drive-audit.conf-sample" "drive-audit.conf-sample"
-   newins "etc/dispersion.conf-sample" "dispersion.conf-sample"
-
-   if use proxy; then
-   newinitd "${FILESDIR}/swift-proxy.initd" "swift-proxy"
-   newins "etc/proxy-server.conf-sample" "proxy-server.conf"
-   if use memcached; then
-   sed -i '/depend/a\
-need memcached' "${D}/etc/init.d/swift-proxy"
-   fi
-   fi
-   if use account; then
-   newinitd "${FILESDIR}/swift-account.initd" "swift-account"
-   newins "etc/account-server.conf-sample" "account-server.conf"
-   fi
-   if use container; then
-   newinitd "${FILESDIR}/swift-container.initd" "swift-container"
-   newins "etc/container-server.conf-sample" 
"container-server.conf"
-   fi
-   if use object; then
-   newinitd "${FILESDIR}/swift-object.initd" "swift-object"
-   newins "etc/object-server.conf-sample" "object-server.conf"
-   newins 

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

2017-06-30 Thread Matt Thode
commit: f2745b63bd9869ac1d0582a678d34322c9b227ac
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 30 16:11:01 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 30 16:12:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2745b63

sys-block/tgt: 1.0.70 stable amd64 and x86

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/sys-block/tgt/tgt-1.0.70.ebuild b/sys-block/tgt/tgt-1.0.70.ebuild
index d8057c45fd4..4658d1581b4 100644
--- a/sys-block/tgt/tgt-1.0.70.ebuild
+++ b/sys-block/tgt/tgt-1.0.70.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/fujita/tgt/tarball/v${PV} -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="fcoe fcp ibmvio infiniband rbd"
 
 CDEPEND="dev-perl/Config-General



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

2017-06-30 Thread Manuel Rüger
commit: eb0f9c2b43bf998b5dd48066fe146a0c974294a7
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 30 15:41:52 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 30 15:41:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0f9c2b

dev-python/python-afl: Apply patch to fix test, thanks to Jakub Wilk

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../python-afl/files/python-afl-0.6-fix-test.patch | 41 ++
 dev-python/python-afl/python-afl-0.6.ebuild|  6 +---
 2 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/dev-python/python-afl/files/python-afl-0.6-fix-test.patch 
b/dev-python/python-afl/files/python-afl-0.6-fix-test.patch
new file mode 100644
index 000..1243385b811
--- /dev/null
+++ b/dev-python/python-afl/files/python-afl-0.6-fix-test.patch
@@ -0,0 +1,41 @@
+From 4c138687008a3d212906367a315ea79b6f6727c9 Mon Sep 17 00:00:00 2001
+From: Jakub Wilk 
+Date: Thu, 29 Jun 2017 20:54:08 +0200
+Subject: [PATCH] tests/tools: fake $PWD so that is starts with ///.
+
+This is needed to skip overzealous /tmp checks in afl-cmap.
+
+Fixes:
+
+==
+ERROR: tests.test_cmin.test
+--
+Traceback (most recent call last):
+  File "/usr/lib/python2.7/dist-packages/nose/case.py", line 197, in 
runTest
+self.test(*self.arg)
+  File "/tmp/.../tests/test_cmin.py", line 68, in test
+b'1',
+  File "/tmp/.../tests/test_cmin.py", line 51, in run_afl_cmin
+run(cmdline)
+  File "/tmp/.../tests/tools.py", line 148, in run
+raise ipc.CalledProcessError(child.returncode, cmd[0])
+CalledProcessError: Command 'py-afl-cmin' returned non-zero exit status 1
+ >> begin captured stdout << -
+...
+[-] Error: do not use this script in /tmp or /var/tmp.
+---
+ tests/tools.py | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/tests/tools.py b/tests/tools.py
+index 0c9240c..f3ebab1 100644
+--- a/tests/tools.py
 b/tests/tools.py
+@@ -131,6 +131,7 @@ def clean_environ():
+ os.environ['AFL_SKIP_CPUFREQ'] = '1'
+ os.environ['AFL_I_DONT_CARE_ABOUT_MISSING_CRASHES'] = '1'
+ os.environ['AFL_NO_AFFINITY'] = '1'
++os.environ['PWD'] = '//' + os.getcwd()
+ 
+ def run(cmd, stdin='', xstatus=0):
+ child = ipc.Popen(

diff --git a/dev-python/python-afl/python-afl-0.6.ebuild 
b/dev-python/python-afl/python-afl-0.6.ebuild
index cb3375a8e44..7bfa986eb62 100644
--- a/dev-python/python-afl/python-afl-0.6.ebuild
+++ b/dev-python/python-afl/python-afl-0.6.ebuild
@@ -19,11 +19,7 @@ RDEPEND="app-forensics/afl"
 DEPEND=">=dev-python/cython-0.19[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
 
-python_prepare_all() {
-   # afl-cmin errors with: "Error: do not use this script in /tmp or 
/var/tmp"
-   rm tests/test_cmin.py || die
-   distutils-r1_python_prepare_all
-}
+PATCHES=( "${FILESDIR}"/${P}-fix-test.patch )
 
 python_test() {
PATH="${PATH}:." nosetests --verbose || die



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

2017-06-30 Thread Manuel Rüger
commit: d006c809b147d253cfcb2b3c5cd9369f48347e38
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 30 14:51:18 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 30 14:51:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d006c809

dev-util/drone-cli: Update snapshot

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/drone-cli/Manifest|  1 +
 .../drone-cli/drone-cli-0.7.0_p20170629.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-util/drone-cli/Manifest b/dev-util/drone-cli/Manifest
index 8ea9aba0b52..dc014d10e4e 100644
--- a/dev-util/drone-cli/Manifest
+++ b/dev-util/drone-cli/Manifest
@@ -1,2 +1,3 @@
 DIST drone-cli-0.7.0_p20170603.tar.gz 1148152 SHA256 
0440900f410141d0bd8e8f682a6acd2b9fecedb6d7def413b6bcc1304b362765 SHA512 
a019295e97cd5683f97fc75d586b68df35fdf0ac8914f77a0efd2b6ec4a9727be04071556e92207cbaa07e573046a54e5a97e9aaccea5f9c1ea75b2a28d5c1df
 WHIRLPOOL 
4357675b2f6ebfc5fb6ced9f4c2d1aa64673c51a4d2de55c329f7b15f37bdfaaca9427873b5bfdbe48c64a1b2f4a5117306ea13167d3efb213d3b34a0d3dd026
 DIST drone-cli-0.7.0_p20170620.tar.gz 1148198 SHA256 
ada290d76615965f2417b70a8bd2fc43ddbbd8f8ecd0ee5d9947de48d377c80f SHA512 
2c548a7f79e9de93700d29694403289bbbf9b994441903e8d107c4c23726cd155762f0beea9e0d9081568f55bafe3fdca2d943af20023c4a81ceba9b00e69335
 WHIRLPOOL 
5132b03ebb9ee69f78669aad0d2db28f2440922585552c30a788e2986264821d1aa5064f3de2d41b56e36ef51709284b6edd511d9fe538ebfc9387440060ed07
+DIST drone-cli-0.7.0_p20170629.tar.gz 1148740 SHA256 
2115d75dbe5057a1e8f3c0a257e064351e7298b258ee295dee9894255468e44c SHA512 
f82895f9eed937bacd83bef7d83fbfdfb6ce47e0fe08605419367c0e67b620e2ab98b29107a16c4b27c8268a195f31692357957c08e08bcb57c6396d6f260966
 WHIRLPOOL 
e42e9c7914ac320f2dc3183b2031b2d18a08d7a59142315cb3a8554c47ec4e0c75200eda55e3b325fb28eee62ea0460563710e40460e2ce0ad8db0e9c78b5cf3

diff --git a/dev-util/drone-cli/drone-cli-0.7.0_p20170629.ebuild 
b/dev-util/drone-cli/drone-cli-0.7.0_p20170629.ebuild
new file mode 100644
index 000..8862e79511c
--- /dev/null
+++ b/dev-util/drone-cli/drone-cli-0.7.0_p20170629.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/drone/drone-cli"
+EGIT_COMMIT="a785895ab015abd20e4c42da7901492817141e98"
+
+inherit golang-build golang-vcs-snapshot
+
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Command-line interface for Drone"
+HOMEPAGE="https://github.com/drone/drone-cli;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+RDEPEND="!!

[gentoo-commits] proj/sci:master commit in: sci-mathematics/slepc/

2017-06-30 Thread Matthias Maier
commit: 6d15f25c84d1ff9e392e0a57ee4442bdfab04cbb
Author: Matthias Maier  gentoo  org>
AuthorDate: Fri Jun 30 14:14:03 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jun 30 14:14:03 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6d15f25c

sci-mathematics/slepc: fix SRC_URI

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sci-mathematics/slepc/slepc-3.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/slepc/slepc-3.7.4.ebuild 
b/sci-mathematics/slepc/slepc-3.7.4.ebuild
index 858afddfb..aa5b6e2a8 100644
--- a/sci-mathematics/slepc/slepc-3.7.4.ebuild
+++ b/sci-mathematics/slepc/slepc-3.7.4.ebuild
@@ -9,7 +9,7 @@ inherit eutils flag-o-matic python-any-r1 toolchain-funcs 
versionator
 
 DESCRIPTION="Scalable Library for Eigenvalue Problem Computations"
 HOMEPAGE="http://slepc.upv.es/;
-SRC_URI="http://slepc.upv.es/download/download.php?filename=${P}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="http://slepc.upv.es/download/distrib/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"



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

2017-06-30 Thread Matthias Maier
commit: cb9a52d3809a814b29fff45caa0b7b7e47f23679
Author: Matthias Maier  gentoo  org>
AuthorDate: Fri Jun 30 14:19:46 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jun 30 14:43:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9a52d3

dev-vcs/mr: drop old version 1.20160123

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-vcs/mr/Manifest |  1 -
 dev-vcs/mr/mr-1.20160123.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-vcs/mr/Manifest b/dev-vcs/mr/Manifest
index 0e13092c6c5..1b96d359d85 100644
--- a/dev-vcs/mr/Manifest
+++ b/dev-vcs/mr/Manifest
@@ -1,2 +1 @@
-DIST mr-1.20160123.tar.gz 46724 SHA256 
13d3b2c309d8130896e54456ae466763dc187433f737de12179f5e05cb63439c SHA512 
ad22f0369530347d104815338f27f5b375b88f323ef3821040db7270e179974018e269ecb650d7fd3a3d42ad62b17dfb7be43645f25e06578e0269f1f744ee4d
 WHIRLPOOL 
3d42223e72b362b4121e312c1526fce4ac19f67ced2345905e085daed5b1e6f172875294fbb0f4faa12db09dc774fb412c3164f723824d88b25134242335
 DIST mr-1.20170129.tar.gz 56344 SHA256 
1a00a2839240c73f0ad47fe434ff02a50fbfb63ce2d27d2ac1adc46709fb910f SHA512 
bb0c79d6cf94b5bc0dfbddde599dc26610df12ed3178ba854a0695b06aad48bda6eb30e31f3a7e5f7d1706081bdc46dbe3f4d8f1bca933adf264f935dc2b3674
 WHIRLPOOL 
e84f0a717e824d34dc8d16a1830a5d9b337888362d137d68e73534a7fae5b817c8300df6b762145236251475298e752fc8fd8e635232ffc6f61e09c742113837

diff --git a/dev-vcs/mr/mr-1.20160123.ebuild b/dev-vcs/mr/mr-1.20160123.ebuild
deleted file mode 100644
index ac6de73dca2..000
--- a/dev-vcs/mr/mr-1.20160123.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_P="myrepos-${PV}"
-
-DESCRIPTION="Multiple Repository management tool"
-HOMEPAGE="https://myrepos.branchable.com/;
-SRC_URI="https://dev.gentoo.org/~tamiko/distfiles/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="dev-lang/perl"
-RDEPEND="${DEPEND}
-   dev-perl/libwww-perl
-   dev-perl/HTML-Parser
-"
-S=${WORKDIR}/${MY_P}
-
-src_install() {
-   dobin mr webcheckout
-   doman mr.1 webcheckout.1
-   dodoc README debian/changelog \
-   mrconfig mrconfig.complex
-   insinto /usr/share/${PN}
-   doins lib/*
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gtkada/files/, dev-ada/gtkada/

2017-06-30 Thread Alfredo Tupone
commit: 2847613455c34886aeaed6ec17cd866316f8
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Jun 30 14:32:30 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Jun 30 14:32:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28476134

dev-ada/gtkada: Add version 2017. Purge 17 and  versions

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ada/gtkada/Manifest|  2 +-
 dev-ada/gtkada/files/gtkada-17.0-gentoo.patch  | 85 --
 dev-ada/gtkada/files/gtkada-2016-gentoo.patch  |  9 ---
 ...--gentoo.patch => gtkada-2017-gentoo.patch} | 25 ++-
 dev-ada/gtkada/gtkada-2016.ebuild  | 32 
 .../{gtkada-17.0.ebuild => gtkada-2017.ebuild} | 37 +-
 dev-ada/gtkada/gtkada-.ebuild  | 64 
 dev-ada/gtkada/metadata.xml|  2 +
 8 files changed, 42 insertions(+), 214 deletions(-)

diff --git a/dev-ada/gtkada/Manifest b/dev-ada/gtkada/Manifest
index afbfcbfb186..f5ce2c9907a 100644
--- a/dev-ada/gtkada/Manifest
+++ b/dev-ada/gtkada/Manifest
@@ -1,2 +1,2 @@
-DIST gtkada-17.0.tar.gz 5358097 SHA256 
65298b7ce604963ab389d5577a2c71c0f0276b176d7387ac55195dc644b87449 SHA512 
d2970d9cfb2c1a893e5fc146e41683583bcc70cfb744ba19e953fd00916488b39d96c59170c1d5272eb0b45deebcc906ec1be4a31d1141540a8feceb7b2cb034
 WHIRLPOOL 
fd30280050ca42570509660c5afda2fbd3c463f016a0d8bee62f8d3e88e553600801fae00c97dd3a57ae0dc955fe1e3804250cdaa553a94d5316bb35b3f4cab8
 DIST gtkada-gpl-2016-src.tgz 11944697 SHA256 
263cc8323e726ae22946508792dd719ff266a9e847a4f7c95e27bd13d3fb4d8f SHA512 
90912e15d9e22574a3d86e8bd052d4ce0a0d8018386f699dc1ce3c345978e9b3ddc7bdd3e4247a264496c5da7cff6ae68589a02f43193fc957c418e2a8ef63c7
 WHIRLPOOL 
fc12f151c65ccef5d23b520cfc0625606ece06e56ed2d5b28e39bd65e51850d9b5c40e7382207f1d9186f93ce9232f6024bec977af6973163eb6603178dc1a30
+DIST gtkada-gpl-2017-src.tgz 11952333 SHA256 
545a125dd41cce2a5e4aeeefbd9538e9e8c7aecbe39c106d27078eb5a649b5f0 SHA512 
f5bbb9ebdd966e70b3edcaaf359cb9e75edba3c3f4f8febfa7de9f634f8e96cd0dd1482fb16ad852b1c9f9b0e2c16eb3a437120d37f0638d90af20f09f3f
 WHIRLPOOL 
69a05d9e8cd956681951a7adeb5eedd5b13f8d403f5fd0f2473e1f2f4579676314cfa7aac81631fe0e8f68362cdb09dde685b8b2bf30801c38f82ae7ba484b88

diff --git a/dev-ada/gtkada/files/gtkada-17.0-gentoo.patch 
b/dev-ada/gtkada/files/gtkada-17.0-gentoo.patch
deleted file mode 100644
index fbc2cefac53..000
--- a/dev-ada/gtkada/files/gtkada-17.0-gentoo.patch
+++ /dev/null
@@ -1,85 +0,0 @@
 gtkada-gpl-2015-src/shared.gpr.in.old  2017-01-05 23:28:35.838073270 
+0100
-+++ gtkada-gpl-2015-src/shared.gpr.in  2017-01-05 23:30:17.752255709 +0100
-@@ -44,6 +44,8 @@
-  for Switches ("C") use ("-O2");
-   end case;
- 
-+  for Driver ("C") use External ("CC", "gcc");
-+  for PIC_Option ("C") use ("-fPIC");
-   for Switches ("C") use Compiler'Switches ("C") & Gtk_Include;
-   for Switches ("Objective-C") use Compiler'Switches ("Objective-C") & 
Gtk_Include;
-end Compiler;
 gtkada-gpl-2016-src/Makefile.in.old2017-01-21 22:42:18.319969095 
+0100
-+++ gtkada-gpl-2016-src/Makefile.in2017-01-21 22:42:33.989700236 +0100
-@@ -39,7 +39,7 @@
- prefix=@prefix@
- exec_prefix=@exec_prefix@
- libdir=@libdir@
--datadir=@datadir@
-+datadir=$(DESTDIR)@datadir@
- datarootdir=@datarootdir@
- exampledir=${datadir}/examples/gtkada/testgtk
- 
-@@ -60,30 +60,33 @@
- LIBRARY_TYPE_FOR_TOOLS=static
- endif
- 
--all: tools tests
-+all: tools
- static: build_library_type/static
- relocatable: build_library_type/relocatable
- 
- tools:
-   @echo "== Building tools ="
--  ${GPRBUILD_FULL} -XLIBRARY_TYPE=$(LIBRARY_TYPE_FOR_TOOLS) 
-Psrc/tools/tools.gpr
-+  ${GPRBUILD_FULL} -XLIBRARY_TYPE=$(LIBRARY_TYPE_FOR_TOOLS) \
-+-Psrc/tools/tools.gpr -cargs:Ada $(ADAFLAGS)
- 
- build_library_type/%:  src/gtkada-intl.adb
-   @echo "== Building $(@F) libraries ="
--  ${GPRBUILD_FULL} -XLIBRARY_TYPE=$(@F) -Psrc/gtkada.gpr
-+  ${GPRBUILD_FULL} -XLIBRARY_TYPE=$(@F) -Psrc/gtkada.gpr \
-+-cargs:Ada $(ADAFLAGS) -cargs:C $(CFLAGS)
- ifeq (${HAVE_OPENGL}, True)
-   ${GPRBUILD_FULL} -XLIBRARY_TYPE=$(@F) -Psrc/opengl/gtkada_gl.gpr
- endif
- 
- src/gtkada-intl.adb: src/gtkada-intl.gpb Makefile
--  gnatprep -DGETTEXT_INTL=$(GETTEXT_INTL) -DHAVE_GETTEXT=$(HAVE_GETTEXT) 
src/gtkada-intl.gpb $@
-+  $(GNATPREP) -DGETTEXT_INTL=$(GETTEXT_INTL) 
-DHAVE_GETTEXT=$(HAVE_GETTEXT) src/gtkada-intl.gpb $@
- 
- testgtk/opengl/view_gl.adb: testgtk/opengl/view_gl.gpb Makefile
--  gnatprep -r -c -DHAVE_GL=${HAVE_OPENGL} -DWIN32=False 
testgtk/opengl/view_gl.gpb $@
-+  $(GNATPREP) -r -c -DHAVE_GL=${HAVE_OPENGL} -DWIN32=False 
testgtk/opengl/view_gl.gpb $@
- 
- tests: testgtk/opengl/view_gl.adb
-   @echo "== Building tests ="
--  cd testgtk; ${GPRBUILD_FULL} 

[gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/

2017-06-30 Thread Anthony G. Basile
commit: c720ba0cde388a4af7a75cd9468286a1fbcb7e54
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jun 30 14:24:56 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jun 30 14:25:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c720ba0c

net-vpn/tor: remove older versions

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-vpn/tor/Manifest |  2 -
 net-vpn/tor/tor-0.2.9.11.ebuild  | 82 
 net-vpn/tor/tor-0.3.1.3_alpha.ebuild | 79 --
 3 files changed, 163 deletions(-)

diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest
index 3736f4b27c7..1145650e7b3 100644
--- a/net-vpn/tor/Manifest
+++ b/net-vpn/tor/Manifest
@@ -1,6 +1,4 @@
 DIST tor-0.2.9.10.tar.gz 5557586 SHA256 
d611283e1fb284b5f884f8c07e7d3151016851848304f56cfdf3be2a88bd1341 SHA512 
c18c4faf18406f04165136f0d70e6bc2896f3f02770beadaab5e7a99441d71b897ae3a14a046eaec99a1bd6d8ad7758b28f7d652588842b77621cdc95d4fb7e1
 WHIRLPOOL 
8a12ab4bd148c6cf57e4e21ae29ccff46b9f687a1646f4453b0ba312b97b78d0c2a428f3178f47e58ec012eb2edce53efff4e07d7f0418d7ccc4ded3856a84a0
-DIST tor-0.2.9.11.tar.gz 5584296 SHA256 
c1959bebff9a546a54cbedb58c8289a42441991af417d2d16f7b336be8903221 SHA512 
bb7ceb416c6cdcf127cb3c45226aa0ce787fba85b6fb59e9c222193c6f2522f2ef85ee0f5062554a4d301ac49d20b68fd82c7ce00406ceae0d00f6ac4107d074
 WHIRLPOOL 
944657830ed485dc321a0f94bccda30816ad42e1ec1527bdd1b3688437d7df4a0533d16c10c320ae37280d1e00f67591f50964f84b92db1070c47aa85fccb923
 DIST tor-0.3.0.8.tar.gz 5796845 SHA256 
663a3ba7b8a124c0f8a7351eaa2dda6fd518de3f3c4ee28fff869bfb03860d48 SHA512 
93267e51578266f6f6eea57e7fcd7ec5f8fbeb2e880675956724a0b1c1dfe1826945aaba4ca3075b577505d0ce70fd7def2f2a9e06af78f52190e15a7aad2ee1
 WHIRLPOOL 
a301811a7cf7dbd444a16802dcece32dbd679895e6bf45ad7c51787171a4d80d51a438585e5a1f9e1da55405537b706fafc3a6565f72bf08e89608a4fde98b85
 DIST tor-0.3.0.9.tar.gz 5811303 SHA256 
48d4880bf6ccb19ce9af2abde6946d7cf0635cc807548badbf4a221a79581e42 SHA512 
19b662840ee0c6aaba04c6db7f172def070d0773553f90bc3d1f210266bbcb572b3dd1f383359e36583103235a85a0a4052cf7299a534fde137bee41376ffa02
 WHIRLPOOL 
dc834c84207714a1fe9376dabe34651e506e93526e7f94de822d3691c4947c2332635b10127be5fa23d31adc5f9e1bc93ad65d1dcb7241a68a0459dffa2c6cb6
-DIST tor-0.3.1.3-alpha.tar.gz 5946205 SHA256 
05b0fd6b1d119d038dc0a4e00261b821e1be0b96c83fbc6251cb25d5435ed9b4 SHA512 
72ef78e04d9105e75d72b468ad928321485c34926fe4360224ebe507a5d788527aff76e1d34f6180452cc19f77741a5dbcc3a8676926a94dcebb445fce3d6aa3
 WHIRLPOOL 
febf547e54562a191196462ad5e77dba2b73939337a5929f47d4579f958f8b6793a0114c0c7e96fcfb95e5e3ed48521d06fa410c83609eee877eb78dcbb2eb3a
 DIST tor-0.3.1.4-alpha.tar.gz 5964177 SHA256 
36ba88bd62f6f630bdba02c6bc348e8176224cec44281f6dacd86c46426c79d1 SHA512 
78e62003acfc52a542bb6cffec6081294df9d58d745757c1c3d6a54cca494e62bd6b39396494ca2c2b67bf8f27a6b14f923fca1e02463baca472ecfc6b79a81e
 WHIRLPOOL 
5bdd8477bb33d481ea0b800f0f7003a72cf402ba143489fa94886d1b25047a8c839a2d45378995b69041e1e5c335fedb6db4d33d94bee463294877a7769571d5

diff --git a/net-vpn/tor/tor-0.2.9.11.ebuild b/net-vpn/tor/tor-0.2.9.11.ebuild
deleted file mode 100644
index 035d07ef861..000
--- a/net-vpn/tor/tor-0.2.9.11.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit eutils flag-o-matic readme.gentoo-r1 systemd versionator user
-
-MY_PV="$(replace_version_separator 4 -)"
-MY_PF="${PN}-${MY_PV}"
-DESCRIPTION="Anonymizing overlay network for TCP"
-HOMEPAGE="http://www.torproject.org/;
-SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
-   https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz;
-S="${WORKDIR}/${MY_PF}"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
-IUSE="libressl scrypt seccomp selinux systemd tor-hardening test web"
-
-DEPEND="
-   app-text/asciidoc
-   dev-libs/libevent[ssl]
-   sys-libs/zlib
-   !libressl? ( dev-libs/openssl:0=[-bindist] )
-   libressl? ( dev-libs/libressl:0= )
-   scrypt? ( app-crypt/libscrypt )
-   seccomp? ( sys-libs/libseccomp )
-   systemd? ( sys-apps/systemd )"
-RDEPEND="${DEPEND}
-   selinux? ( sec-policy/selinux-tor )"
-
-pkg_setup() {
-   enewgroup tor
-   enewuser tor -1 -1 /var/lib/tor tor
-}
-
-src_prepare() {
-   eapply "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
-   eapply_user
-}
-
-src_configure() {
-   # Upstream isn't sure of all the user provided CFLAGS that
-   # will break tor, but does recommend against -fstrict-aliasing.
-   # We'll filter-flags them here as we encounter them.
-   filter-flags -fstrict-aliasing
-
-   econf \
-   --enable-system-torrc \
-   --enable-asciidoc \
-   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
-   $(use_enable 

[gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/

2017-06-30 Thread Anthony G. Basile
commit: 9a485b92928f4dda26e92faba4779e7588bdc917
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jun 30 14:23:54 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jun 30 14:25:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a485b92

net-vpn/tor: version bumps to 0.3.0.9 and 0.3.1.4_alpha

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-vpn/tor/Manifest |  2 +
 net-vpn/tor/tor-0.3.0.9.ebuild   | 74 +
 net-vpn/tor/tor-0.3.1.4_alpha.ebuild | 80 
 3 files changed, 156 insertions(+)

diff --git a/net-vpn/tor/Manifest b/net-vpn/tor/Manifest
index dab787d003f..3736f4b27c7 100644
--- a/net-vpn/tor/Manifest
+++ b/net-vpn/tor/Manifest
@@ -1,4 +1,6 @@
 DIST tor-0.2.9.10.tar.gz 5557586 SHA256 
d611283e1fb284b5f884f8c07e7d3151016851848304f56cfdf3be2a88bd1341 SHA512 
c18c4faf18406f04165136f0d70e6bc2896f3f02770beadaab5e7a99441d71b897ae3a14a046eaec99a1bd6d8ad7758b28f7d652588842b77621cdc95d4fb7e1
 WHIRLPOOL 
8a12ab4bd148c6cf57e4e21ae29ccff46b9f687a1646f4453b0ba312b97b78d0c2a428f3178f47e58ec012eb2edce53efff4e07d7f0418d7ccc4ded3856a84a0
 DIST tor-0.2.9.11.tar.gz 5584296 SHA256 
c1959bebff9a546a54cbedb58c8289a42441991af417d2d16f7b336be8903221 SHA512 
bb7ceb416c6cdcf127cb3c45226aa0ce787fba85b6fb59e9c222193c6f2522f2ef85ee0f5062554a4d301ac49d20b68fd82c7ce00406ceae0d00f6ac4107d074
 WHIRLPOOL 
944657830ed485dc321a0f94bccda30816ad42e1ec1527bdd1b3688437d7df4a0533d16c10c320ae37280d1e00f67591f50964f84b92db1070c47aa85fccb923
 DIST tor-0.3.0.8.tar.gz 5796845 SHA256 
663a3ba7b8a124c0f8a7351eaa2dda6fd518de3f3c4ee28fff869bfb03860d48 SHA512 
93267e51578266f6f6eea57e7fcd7ec5f8fbeb2e880675956724a0b1c1dfe1826945aaba4ca3075b577505d0ce70fd7def2f2a9e06af78f52190e15a7aad2ee1
 WHIRLPOOL 
a301811a7cf7dbd444a16802dcece32dbd679895e6bf45ad7c51787171a4d80d51a438585e5a1f9e1da55405537b706fafc3a6565f72bf08e89608a4fde98b85
+DIST tor-0.3.0.9.tar.gz 5811303 SHA256 
48d4880bf6ccb19ce9af2abde6946d7cf0635cc807548badbf4a221a79581e42 SHA512 
19b662840ee0c6aaba04c6db7f172def070d0773553f90bc3d1f210266bbcb572b3dd1f383359e36583103235a85a0a4052cf7299a534fde137bee41376ffa02
 WHIRLPOOL 
dc834c84207714a1fe9376dabe34651e506e93526e7f94de822d3691c4947c2332635b10127be5fa23d31adc5f9e1bc93ad65d1dcb7241a68a0459dffa2c6cb6
 DIST tor-0.3.1.3-alpha.tar.gz 5946205 SHA256 
05b0fd6b1d119d038dc0a4e00261b821e1be0b96c83fbc6251cb25d5435ed9b4 SHA512 
72ef78e04d9105e75d72b468ad928321485c34926fe4360224ebe507a5d788527aff76e1d34f6180452cc19f77741a5dbcc3a8676926a94dcebb445fce3d6aa3
 WHIRLPOOL 
febf547e54562a191196462ad5e77dba2b73939337a5929f47d4579f958f8b6793a0114c0c7e96fcfb95e5e3ed48521d06fa410c83609eee877eb78dcbb2eb3a
+DIST tor-0.3.1.4-alpha.tar.gz 5964177 SHA256 
36ba88bd62f6f630bdba02c6bc348e8176224cec44281f6dacd86c46426c79d1 SHA512 
78e62003acfc52a542bb6cffec6081294df9d58d745757c1c3d6a54cca494e62bd6b39396494ca2c2b67bf8f27a6b14f923fca1e02463baca472ecfc6b79a81e
 WHIRLPOOL 
5bdd8477bb33d481ea0b800f0f7003a72cf402ba143489fa94886d1b25047a8c839a2d45378995b69041e1e5c335fedb6db4d33d94bee463294877a7769571d5

diff --git a/net-vpn/tor/tor-0.3.0.9.ebuild b/net-vpn/tor/tor-0.3.0.9.ebuild
new file mode 100644
index 000..b103e82a8ae
--- /dev/null
+++ b/net-vpn/tor/tor-0.3.0.9.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit flag-o-matic readme.gentoo-r1 systemd versionator user
+
+MY_PV="$(replace_version_separator 4 -)"
+MY_PF="${PN}-${MY_PV}"
+DESCRIPTION="Anonymizing overlay network for TCP"
+HOMEPAGE="http://www.torproject.org/;
+SRC_URI="https://www.torproject.org/dist/${MY_PF}.tar.gz
+   https://archive.torproject.org/tor-package-archive/${MY_PF}.tar.gz;
+S="${WORKDIR}/${MY_PF}"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+IUSE="libressl scrypt seccomp selinux systemd tor-hardening test web"
+
+DEPEND="
+   app-text/asciidoc
+   dev-libs/libevent[ssl]
+   sys-libs/zlib
+   !libressl? ( dev-libs/openssl:0=[-bindist] )
+   libressl? ( dev-libs/libressl:0= )
+   scrypt? ( app-crypt/libscrypt )
+   seccomp? ( sys-libs/libseccomp )
+   systemd? ( sys-apps/systemd )"
+RDEPEND="${DEPEND}
+   selinux? ( sec-policy/selinux-tor )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.2.7.4-torrc.sample.patch
+)
+
+DOCS=( README ChangeLog ReleaseNotes doc/HACKING )
+
+pkg_setup() {
+   enewgroup tor
+   enewuser tor -1 -1 /var/lib/tor tor
+}
+
+src_configure() {
+   econf \
+   --localstatedir="${EPREFIX}/var" \
+   --enable-system-torrc \
+   --enable-asciidoc \
+   $(use_enable scrypt libscrypt) \
+   $(use_enable seccomp) \
+   $(use_enable systemd) \
+   $(use_enable tor-hardening gcc-hardening) \
+   $(use_enable tor-hardening linker-hardening) \

[gentoo-commits] repo/gentoo:master commit in: app-cdr/bchunk/

2017-06-30 Thread Patrice Clement
commit: cb801b082f47b34cc49bef2f4f4accb32504cdfa
Author: Yegor Timoshenko  gmail  com>
AuthorDate: Wed May 17 21:40:37 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 13:24:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb801b08

app-cdr/bchunk: EAPI 6 bump and keyword for ~x64-macos.

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

 app-cdr/bchunk/bchunk-1.2.0-r1.ebuild | 25 -
 app-cdr/bchunk/bchunk-1.2.0-r2.ebuild | 20 
 app-cdr/bchunk/metadata.xml   |  5 -
 3 files changed, 24 insertions(+), 26 deletions(-)

diff --git a/app-cdr/bchunk/bchunk-1.2.0-r1.ebuild 
b/app-cdr/bchunk/bchunk-1.2.0-r1.ebuild
deleted file mode 100644
index 837e867d461..000
--- a/app-cdr/bchunk/bchunk-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit toolchain-funcs
-
-DESCRIPTION="Converts bin/cue CD-images to iso+wav/cdr"
-HOMEPAGE="http://he.fi/bchunk/;
-SRC_URI="http://he.fi/bchunk/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=""
-
-src_compile() {
-   $(tc-getCC) ${CFLAGS} ${LDFLAGS} -o bchunk bchunk.c || die
-}
-
-src_install() {
-   dobin bchunk || die
-   doman bchunk.1
-   dodoc ${P}.lsm README ChangeLog bchunk.spec
-}

diff --git a/app-cdr/bchunk/bchunk-1.2.0-r2.ebuild 
b/app-cdr/bchunk/bchunk-1.2.0-r2.ebuild
new file mode 100644
index 000..f8387e0cb35
--- /dev/null
+++ b/app-cdr/bchunk/bchunk-1.2.0-r2.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+DESCRIPTION="Convert CD images from bin/cue to iso+wav/cdr"
+HOMEPAGE="http://he.fi/bchunk/;
+SRC_URI="${HOMEPAGE}${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-macos ~sparc-solaris ~x86-solaris"
+
+DOCS=( "${P}.lsm" "${PN}.spec" README ChangeLog )
+
+src_install() {
+   dobin "${PN}"
+   doman "${PN}.1"
+   einstalldocs
+}

diff --git a/app-cdr/bchunk/metadata.xml b/app-cdr/bchunk/metadata.xml
index 0687165f1cf..2136d04d436 100644
--- a/app-cdr/bchunk/metadata.xml
+++ b/app-cdr/bchunk/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+
+yegortimoshe...@gmail.com
+Yegor Timoshenko
+
 binchunker converts a CD image in a ".bin / .cue" format
 (sometimes ".raw / .cue") to a set of .iso and .cdr tracks.
 



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

2017-06-30 Thread Marek Szuba
commit: d2e3cc38743ad37afe320b3cc079f598163a2f8b
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Jun 30 13:16:49 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Jun 30 13:19:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e3cc38

dev-libs/beignet: fix typo in 0eafd4cd77602ccc5a1b0a487be6a2b47c402706

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-libs/beignet/beignet-1.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/beignet/beignet-1.3.1-r1.ebuild 
b/dev-libs/beignet/beignet-1.3.1-r1.ebuild
index 44c6896db12..4d382a1cbc3 100644
--- a/dev-libs/beignet/beignet-1.3.1-r1.ebuild
+++ b/dev-libs/beignet/beignet-1.3.1-r1.ebuild
@@ -81,7 +81,7 @@ multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${VENDOR_DIR}"
-DOCLICD_COMPAT=$(usex ocl-icd)
-   $(usex ocl2 "" "-DENABLE_OPENCL_20=OFF")
+   $(usex ocl20 "" "-DENABLE_OPENCL_20=OFF")
)
 
cmake-utils_src_configure



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

2017-06-30 Thread Patrice Clement
commit: ce09039315a772516a19c3b24c7e974460b6d4ef
Author: Jonas Stein  gentoo  org>
AuthorDate: Tue May 30 16:30:35 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 13:17:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce090393

sys-apps/inxi: unpack before doman.

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

* unpack manpage before doman
* general ebuild upkeep

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

 sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild | 28 ++
 sys-apps/inxi/inxi-2.3.0_p20160807.ebuild| 36 
 sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild | 28 ++
 sys-apps/inxi/inxi-2.3.4_p20161104.ebuild| 36 
 4 files changed, 56 insertions(+), 72 deletions(-)

diff --git a/sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild 
b/sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild
new file mode 100644
index 000..09afef73406
--- /dev/null
+++ b/sys-apps/inxi/inxi-2.3.0_p20160807-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_COMMIT=c2a22b3e2590d896d4b0a8fd298f505cc1d787f5 #because upstream refuses 
to tag commits with version numbers
+
+DESCRIPTION="The CLI inxi collects and prints hardware and system information"
+HOMEPAGE="https://github.com/smxi/inxi;
+SRC_URI="https://github.com/smxi/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=">=app-shells/bash-3.0
+   sys-apps/pciutils
+   sys-apps/usbutils
+   "
+S="${WORKDIR}/smxi-${PN}-${MY_COMMIT:0:7}"
+
+src_install() {
+   dobin "${PN}"
+   unpack "./${PN}.1.gz"
+   doman "${PN}.1"
+}

diff --git a/sys-apps/inxi/inxi-2.3.0_p20160807.ebuild 
b/sys-apps/inxi/inxi-2.3.0_p20160807.ebuild
deleted file mode 100644
index 6a87c6104e2..000
--- a/sys-apps/inxi/inxi-2.3.0_p20160807.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_COMMIT=c2a22b3e2590d896d4b0a8fd298f505cc1d787f5 #because upstream refuses 
to tag commits with version numbers
-MY_SHORTCOMMIT=${MY_COMMIT:0:7}
-
-DESCRIPTION="Commandline script to print hardware information for irc and 
administration."
-
-HOMEPAGE="https://github.com/smxi/inxi;
-SRC_URI="https://github.com/smxi/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=">=app-shells/bash-3.0
-   sys-apps/pciutils
-   "
-
-S="${WORKDIR}/smxi-${PN}-${MY_SHORTCOMMIT}"
-
-src_install() {
-   dobin ${PN}
-   doman ${PN}.1.gz
-}
-
-pkg_postinst() {
-   einfo "To view a short or full system information."
-   einfo "inxi -b for short information."
-   einfo "inxi -F for full information."
-   einfo "inxi provides seven verbose levels -v1 to -v7."
-   einfo "inxi -h for help."
-}

diff --git a/sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild 
b/sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild
new file mode 100644
index 000..619a8b5cb19
--- /dev/null
+++ b/sys-apps/inxi/inxi-2.3.4_p20161104-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_COMMIT=89e18d245bc34fc5be5f5baddac2ccd8106be050  #because upstream refuses 
to tag commits with version numbers
+
+DESCRIPTION="The CLI inxi collects and prints hardware and system information"
+HOMEPAGE="https://github.com/smxi/inxi;
+SRC_URI="https://github.com/smxi/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=">=app-shells/bash-3.0
+   sys-apps/pciutils
+   sys-apps/usbutils
+   "
+S="${WORKDIR}/smxi-${PN}-${MY_COMMIT:0:7}"
+
+src_install() {
+   dobin "${PN}"
+   unpack "./${PN}.1.gz"
+   doman "${PN}.1"
+}

diff --git a/sys-apps/inxi/inxi-2.3.4_p20161104.ebuild 
b/sys-apps/inxi/inxi-2.3.4_p20161104.ebuild
deleted file mode 100644
index ed3ef560c07..000
--- a/sys-apps/inxi/inxi-2.3.4_p20161104.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_COMMIT=89e18d245bc34fc5be5f5baddac2ccd8106be050  #because upstream refuses 
to tag commits with version numbers
-MY_SHORTCOMMIT=${MY_COMMIT:0:7}
-
-DESCRIPTION="Commandline script to print hardware information for irc and 
administration"
-
-HOMEPAGE="https://github.com/smxi/inxi;
-SRC_URI="https://github.com/smxi/${PN}/tarball/${MY_COMMIT} -> ${P}.tar.gz"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=">=app-shells/bash-3.0
-   sys-apps/pciutils
-   "
-
-S="${WORKDIR}/smxi-${PN}-${MY_SHORTCOMMIT}"
-

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

2017-06-30 Thread Patrice Clement
commit: 9c8314a0e3b7a4d1dd862d7b61c6d93959a86983
Author: Ulrich Réale  mailoo  org>
AuthorDate: Fri Jun  2 12:56:40 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 13:16:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c8314a0

app-misc/geoclue: EAPI 6 bump and version bump to 2.4.7.

Package-Manager: Portage-2.3.5, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4830

 app-misc/geoclue/Manifest |  1 +
 app-misc/geoclue/geoclue-2.4.7.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/app-misc/geoclue/Manifest b/app-misc/geoclue/Manifest
index 9910233eefd..81e72fd30d8 100644
--- a/app-misc/geoclue/Manifest
+++ b/app-misc/geoclue/Manifest
@@ -1,2 +1,3 @@
 DIST geoclue-0.12.99.tar.gz 608074 SHA256 
fe396c91cb52de4219281f4d9223156338fc03670d34700281e86d1399b80a72 SHA512 
32f946c9ee66cff2a6564b275d5f7bdf0d42832166c9fbeccb0aa55f3c3370fd8de114ad26477df6a2ee9d22250a5b104ec384032b28c3a62c356baea05d1bc2
 WHIRLPOOL 
fc7e96d6646a7fa527807db2a3375a714243fb935f064b9acbb84f8652cc64e19d2655979c053e2f1b433c69a47a393123bc4bb2f8f16395a3ecbba668c9f1bd
 DIST geoclue-2.4.4.tar.xz 392340 SHA256 
9c43fb9d0c12067ea64400500abb0640194947d4c2c55e38545afe5d9c5c315c SHA512 
46995aa261ff5c391eb1e933088e24e40e595a98563b541675cbfab38e69f410cd3ad7a3c1f4126e4eb62eea0be9a77f8e3c37af89b4aaad81e07c150b003f7a
 WHIRLPOOL 
42691170b0e9097fb4caef656cd79c0861f61cd0bbf811a74653799848184f98f960e5294375b5632c30de29e798318443706ff803ae46d19ca422abe3caaac4
+DIST geoclue-2.4.7.tar.xz 368472 SHA256 
d17b96bb5799a84723385ea5704235565e9c3dedd2b7afac475a06e550ae0ea6 SHA512 
472cf923abfd40dee296eee2e6888c47f273ad709e1bdcce534bd794cf9f7073ceabd6addf918277e10498e094af5a6e9539b5cf24171577e78bc3b0b2d17b72
 WHIRLPOOL 
10eb6a1303e6841fb2c210fa0f1c63c82c10d80b24974e8865aae32145a1c584c981f60d5b45c9e72154f28dd1e82bcd913eae11365db27cfd4f76492b4ff1b0

diff --git a/app-misc/geoclue/geoclue-2.4.7.ebuild 
b/app-misc/geoclue/geoclue-2.4.7.ebuild
new file mode 100644
index 000..9518ac0b7f5
--- /dev/null
+++ b/app-misc/geoclue/geoclue-2.4.7.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit gnome2 systemd user versionator
+
+MY_PV=$(get_version_component_range 1-2)
+DESCRIPTION="A geoinformation D-Bus service"
+HOMEPAGE="https://freedesktop.org/wiki/Software/GeoClue;
+SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${MY_PV}/${P}.tar.xz;
+
+LICENSE="LGPL-2"
+SLOT="2.0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+IUSE="+introspection +modemmanager zeroconf"
+
+RDEPEND="
+   >=dev-libs/glib-2.34:2
+   >=dev-libs/json-glib-0.14
+   >=net-libs/libsoup-2.42:2.4
+   sys-apps/dbus
+   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+   modemmanager? ( >=net-misc/modemmanager-1 )
+   zeroconf? ( >=net-dns/avahi-0.6.10 )
+   !

[gentoo-commits] repo/gentoo:master commit in: net-nntp/nzbget/

2017-06-30 Thread Patrice Clement
commit: 8a0eaac6a66902bc3d94934c13e9b20301f231df
Author: Louis Sautier  gmail  com>
AuthorDate: Sun Jun 25 20:08:28 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 13:16:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0eaac6

net-nntp/nzbget: version bump to 19.0.

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

 net-nntp/nzbget/Manifest   |   1 +
 net-nntp/nzbget/nzbget-19.0.ebuild | 121 +
 2 files changed, 122 insertions(+)

diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest
index 45f5ec330d8..33cba5881d4 100644
--- a/net-nntp/nzbget/Manifest
+++ b/net-nntp/nzbget/Manifest
@@ -1,4 +1,5 @@
 DIST nzbget-14.1.tar.gz 1332334 SHA256 
a16b816b61f7035cc373e9b77094ca474d5b7b7f7ceff5fa8818249181db4b18 SHA512 
fae938529bb3968c0161f63ec3af07f844a8128b61abf6298457a4878ac0d47541d76730c8a068509fa091b102de07c9d28dcd668a8192fcfac60980f69be56d
 WHIRLPOOL 
9e9636b67d0af7780d2cc8f897465f5a2e23cd8695b3bd982e3e9f78d68adb34f84faf59253044c7b2f95db737cf59207b35cf312d1f1825fe4b9ecce2e4014f
 DIST nzbget-17.1.tar.gz 1609931 SHA256 
4b3cf500d9bb6e9ab65b2c8451358e6c93af0368176f193eebafca17d7209c39 SHA512 
5fde874b68423bb6d4cf63fc68aee0087b4d801a73a05124c1b3d0e883877cd58541191e58386e115b2664906f16e67f5f7d5a0ece93bf51f55ec1e7309b
 WHIRLPOOL 
bcae41e87e8cb6ce429dd065fe7904cc04b36da4435de43c3424afd1a37f3e5da55769d2684df368687fb8ee6d6f72ff80452c54a07ffa09fbe9918c7d40c167
 DIST nzbget-18.1.tar.gz 1784894 SHA256 
ddf7f9eda1cc4d6f01cd28a5ee4362ef7a399085cda45a82ffdf250d56393819 SHA512 
ef7749a024eee9639e2dbd50ab9d57996e7a95a81dd4b9b29b9fdc98a717b053ce43902e638b119d43a8826a83218ccfbd7a6bbd4ea50f3cbf4425ef06df141d
 WHIRLPOOL 
29e96393945d039e8572de4e1be50ab3cb2259d905db934923eb27ccfe1e30b88448e505243689d5e10b8a05f8bd159605fca464352315d6761eeffa4157e76d
+DIST nzbget-19.0.tar.gz 1809405 SHA256 
2648e0eeb6f38bda3870e994caacd182f6e49a1f8c7404fbbe0112583f896f22 SHA512 
3d692e44c0f5c6049676e23977d34bbb4b34b48885ea22fe80139e6a3b92e2b3937286cebaed477830b0fbe50cf4fd6e92a1d130e3176d9d10edc70955c82a61
 WHIRLPOOL 
998c32169750f538a7bd980bdc8ac98300ccf7bc5fb2db3536c16d0e01bcbc622d2ffdd43a4ac0aaca1ed585a7f9fe5aa8473e298763111c012996828d2b2053
 DIST nzbget-19.0_pre2021.tar.gz 1808479 SHA256 
8c4392e8582a12fa980f217b31183032e12010f4ca7ff324599839771e4f2582 SHA512 
a3c1a164267400fff55255fbda353648aa35fa9ebea2b909864706f3680f5767f8b35d80a176c7fbdde6a73f80d2645bb8a8a551742689a484a64c8337af8abf
 WHIRLPOOL 
1ee382145996867746449bf3c5d49502c81801d9d5d873bea8b2a6285ae4855fd028dff61212ff90d44f26c517e248178ce7337cf8b13607129317bdc759e919

diff --git a/net-nntp/nzbget/nzbget-19.0.ebuild 
b/net-nntp/nzbget/nzbget-19.0.ebuild
new file mode 100644
index 000..c6d86f04383
--- /dev/null
+++ b/net-nntp/nzbget/nzbget-19.0.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic user
+
+MY_PV=${PV/_pre/-r}
+MY_P=${PN}-${PV/_pre/-testing-r}
+
+DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
+HOMEPAGE="https://nzbget.net/;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="debug gnutls ncurses parcheck ssl test zlib"
+
+RDEPEND="dev-libs/libxml2
+   ncurses? ( sys-libs/ncurses:0= )
+   ssl? (
+   gnutls? (
+   net-libs/gnutls:=
+   dev-libs/nettle:=
+   )
+   !gnutls? ( dev-libs/openssl:0= )
+   )
+   zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+DOCS=( ChangeLog README nzbget.conf )
+
+S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
+
+check_compiler() {
+   if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then
+   eerror "${P} requires a C++14-capable compiler. Your current 
compiler"
+   eerror "does not seem to support the -std=c++14 option. Please"
+   eerror "upgrade to gcc-4.9 or an equivalent version supporting 
C++14."
+   die "The currently active compiler does not support -std=c++14"
+   fi
+}
+
+pkg_pretend() {
+   check_compiler
+}
+
+pkg_setup() {
+   check_compiler
+}
+
+src_prepare() {
+   default
+   eautoreconf
+
+   sed -i 's:^ScriptDir=.*:ScriptDir=/usr/share/nzbget/ppscripts:' 
nzbget.conf || die
+
+   sed \
+   -e 's:^MainDir=.*:MainDir=/var/lib/nzbget:' \
+   -e 's:^LockFile=.*:LockFile=/run/nzbget/nzbget.pid:' \
+   -e 's:^LogFile=.*:LogFile=/var/log/nzbget/nzbget.log:' \
+   -e 's:^WebDir=.*:WebDir=/usr/share/nzbget/webui:' \
+   -e 
's:^ConfigTemplate=.*:ConfigTemplate=/usr/share/nzbget/nzbget.conf:' \
+   -e 

[gentoo-commits] repo/gentoo:master commit in: games-simulation/simutrans/, games-simulation/simutrans/files/

2017-06-30 Thread Patrice Clement
commit: cf8b49e07c8f4729742111b899f0cd1b4dbf0716
Author: Sergey Alirzaev  gmail  com>
AuthorDate: Wed Jun  7 22:44:53 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 13:16:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf8b49e0

games-simulation/simutrans: version bump.

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

 games-simulation/simutrans/Manifest|  2 +
 .../files/simutrans-0.120.2.2-Makefile.patch   | 89 ++
 .../simutrans/simutrans-0.120.2.2.ebuild   | 73 ++
 3 files changed, 164 insertions(+)

diff --git a/games-simulation/simutrans/Manifest 
b/games-simulation/simutrans/Manifest
index 345785e75cf..50f00c64c63 100644
--- a/games-simulation/simutrans/Manifest
+++ b/games-simulation/simutrans/Manifest
@@ -1,5 +1,7 @@
 DIST language_pack-Base+texts.zip 1097263 SHA256 
3d2e637eb6018ccb5da99614dae7fc6ae1bdb0d8db4b2beea85d7e36ea5edf7c SHA512 
015caafaeace03bd5475e66c93bb433d9b07b600c3fcf125a4bda9b2856ba41dc43b923e032920df4a060087ead7180df59092f23ab6dcf12579b580827b1248
 WHIRLPOOL 
679efda1f4bfa0bf71b2f4aa955cee287ee6e9c10d6b3f9070cb799eae5c7acd3651e59f3d8d46688f56ee9781e102e485ab59b6a16a4ee556b18c95b2c35fb3
 DIST simupak64-120-0-1.zip 4051769 SHA256 
02a709dfa4b0c22e0b463ebcbd9684548356de1c61566cff9c127a79990dbb78 SHA512 
21badd251b9018bef55531923e23cb1935c3831784fab028febd3879384330e843329499ab08a08e71238fb92bf7db36e18ecbbc4e719a942e427f58fc634afc
 WHIRLPOOL 
5ae84653b5a138b5a987b7ca6512994f3ba8dff48fffbb94f6fe0bf4845d5537e93734f73174eb328f20b6c9986235ae6c461c55b5efde53a4b81620a3b1da83
 DIST simupak64-120-1-2.zip 4308534 SHA256 
125fa5c13a51bb0630ca651fddb8af06a823e8c4d4638bfa1bb2d89e92cc1d54 SHA512 
ddc75ad1cafa23d9a7387dc38b14de7414ea7c8bb7caa2afde6d8cdf9c3f5251719966b2274c5bc4ecc9915ec764d517e24b79d5ef199904e3d9185214cba129
 WHIRLPOOL 
4f91de57be620849f2a278df5510ea390d737a4f063dc659ed2d5f488ce0e631b1c15d6282554574b89316b3b968e4b850db8764b24b714df1a3c5e642e34907
+DIST simupak64-120-2.zip 4453079 SHA256 
b3ce4fc99468e6a2601a606251f156e554d2d78f2cc5679c0d9a64a5f50561e8 SHA512 
c7f819142b66c093c8631fcfe8e70c3be667680d745a66eab65e06979f849592d2c09ed18eb33ca2e359b2830f57874ae23d989ab5aa901eece69de83180f357
 WHIRLPOOL 
332137593544e88e81f69ab1887a2388df07a8610805d6a77af7760ff42f49c11f55cdb7bc7879aa9840106f41e01b2c090859a2499422cdcb8b82555c5b8049
 DIST simutrans-src-120-0-1.zip 3909005 SHA256 
010a6e3765891e1821364e54f6bcdfb2911b627ffca3acae8350e06e53113683 SHA512 
6f32b6f1c12f45125de8a12c4a034387a784e21fd8cdedcf7b1daefd9174d9a94825e8f68effa2ff1436cce2e2bc8cb5707161f3fa004185ae158400840dc450
 WHIRLPOOL 
36155184f5806a9cfab742f26e3fc78d5d7d928f99cddabbaf36c7c90d065dab02bb174c07d9633958f8b891b0db8cc5c94e45fd4f22d917b9a037c51a99b69a
 DIST simutrans-src-120-1-3.zip 3447115 SHA256 
2d29b849fc39d25a0580091e1377270bddb2cae36c0fc32bd7c2d0f1d7ccfb84 SHA512 
ae31dda7bdbd057aaf9c40914eb7ec0c60b21d2790d1ca12aa8db698cd112043a291934f6f460b1d5a8a1984b7defb4a0c4bc9839c81c674834062cc1e49c8bd
 WHIRLPOOL 
273aa58b6e6d7e53a67e092ff5d0a4ef9f00ef3c96bdaf8393a01511c8b655956085f6c94a3f74ab5eeffbe312a4d3d9596a4cfbef57a7053ddd7a1f4d4fbd1d
+DIST simutrans-src-120-2-2.zip 3900947 SHA256 
7f22c144377abf1a0ee49432f3f6f5eb9a620567960df31d2ea6399b17cf26fa SHA512 
db9797be132bb1936d8c3192e536523d1249d20a513f3758037097ef46c2bab40d4be8adb68cb21eda2b4820369e89bd0a6e2abc4fe2bbcefe40bb414a3d1ab2
 WHIRLPOOL 
ebf7496939a79e58983ba81ff15e1f9118ec0d2ba6ca0aae177602505ef78e1d3c9747436cb2bc7653b3fb574934333da802962b048d2efd172000f3c4a05303

diff --git 
a/games-simulation/simutrans/files/simutrans-0.120.2.2-Makefile.patch 
b/games-simulation/simutrans/files/simutrans-0.120.2.2-Makefile.patch
new file mode 100644
index 000..f9fb48ab682
--- /dev/null
+++ b/games-simulation/simutrans/files/simutrans-0.120.2.2-Makefile.patch
@@ -0,0 +1,89 @@
+--- a/Makefile 2017-03-29 12:04:15.0 +0300
 b/Makefile 2017-06-08 01:41:32.605031258 +0300
+@@ -87,8 +87,6 @@
+   CFLAGS += -minline-all-stringops
+ endif
+   endif
+-else
+-  CFLAGS += -O
+ endif
+ 
+ ifdef DEBUG
+@@ -110,6 +108,7 @@
+   endif
+ else
+   CFLAGS += -DNDEBUG
++  CXXFLAGS += -DNDEBUG
+ endif
+ 
+ ifdef MSG_LEVEL
+@@ -127,6 +126,7 @@
+ ifneq ($(MULTI_THREAD),)
+   ifeq ($(shell expr $(MULTI_THREAD) \>= 1), 1)
+ CFLAGS += -DMULTI_THREAD
++CXXFLAGS += -DMULTI_THREAD
+ ifneq ($(OSTYPE),haiku)
+   LDFLAGS += -lpthread
+ endif
+@@ -142,11 +142,13 @@
+ endif
+ ifneq ($(REV),)
+   CFLAGS  += -DREVISION="$(REV)"
++  CXXFLAGS  += -DREVISION="$(REV)"
+ endif
+   endif
+ endif
+ 
+ CFLAGS   += -Wall -W -Wcast-qual -Wpointer-arith -Wcast-align $(FLAGS)
++CXXFLAGS   += -Wall -W -Wcast-qual -Wpointer-arith -Wcast-align $(FLAGS)
+ CCFLAGS  += -ansi -Wstrict-prototypes -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64
+ 
+ 
+@@ -514,6 +516,7 @@
+ endif
+   endif
+   CFLAGS += $(SDL_CFLAGS)
++  CXXFLAGS += $(SDL_CFLAGS)

[gentoo-commits] repo/gentoo:master commit in: net-nntp/nzbget/, net-nntp/nzbget/files/

2017-06-30 Thread Patrice Clement
commit: 6cfc87de9b2a7f68bde9813f38ca8d87d7bc0619
Author: Louis Sautier  gmail  com>
AuthorDate: Sun Jun 25 20:10:01 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 13:16:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cfc87de

net-nntp/nzbget: remove old.

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

 net-nntp/nzbget/Manifest   |   1 -
 .../nzbget-19.0_pre2021-fix-no-parcheck.patch  |  46 
 net-nntp/nzbget/nzbget-19.0_pre2021.ebuild | 123 -
 3 files changed, 170 deletions(-)

diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest
index 33cba5881d4..79402c4507c 100644
--- a/net-nntp/nzbget/Manifest
+++ b/net-nntp/nzbget/Manifest
@@ -2,4 +2,3 @@ DIST nzbget-14.1.tar.gz 1332334 SHA256 
a16b816b61f7035cc373e9b77094ca474d5b7b7f7
 DIST nzbget-17.1.tar.gz 1609931 SHA256 
4b3cf500d9bb6e9ab65b2c8451358e6c93af0368176f193eebafca17d7209c39 SHA512 
5fde874b68423bb6d4cf63fc68aee0087b4d801a73a05124c1b3d0e883877cd58541191e58386e115b2664906f16e67f5f7d5a0ece93bf51f55ec1e7309b
 WHIRLPOOL 
bcae41e87e8cb6ce429dd065fe7904cc04b36da4435de43c3424afd1a37f3e5da55769d2684df368687fb8ee6d6f72ff80452c54a07ffa09fbe9918c7d40c167
 DIST nzbget-18.1.tar.gz 1784894 SHA256 
ddf7f9eda1cc4d6f01cd28a5ee4362ef7a399085cda45a82ffdf250d56393819 SHA512 
ef7749a024eee9639e2dbd50ab9d57996e7a95a81dd4b9b29b9fdc98a717b053ce43902e638b119d43a8826a83218ccfbd7a6bbd4ea50f3cbf4425ef06df141d
 WHIRLPOOL 
29e96393945d039e8572de4e1be50ab3cb2259d905db934923eb27ccfe1e30b88448e505243689d5e10b8a05f8bd159605fca464352315d6761eeffa4157e76d
 DIST nzbget-19.0.tar.gz 1809405 SHA256 
2648e0eeb6f38bda3870e994caacd182f6e49a1f8c7404fbbe0112583f896f22 SHA512 
3d692e44c0f5c6049676e23977d34bbb4b34b48885ea22fe80139e6a3b92e2b3937286cebaed477830b0fbe50cf4fd6e92a1d130e3176d9d10edc70955c82a61
 WHIRLPOOL 
998c32169750f538a7bd980bdc8ac98300ccf7bc5fb2db3536c16d0e01bcbc622d2ffdd43a4ac0aaca1ed585a7f9fe5aa8473e298763111c012996828d2b2053
-DIST nzbget-19.0_pre2021.tar.gz 1808479 SHA256 
8c4392e8582a12fa980f217b31183032e12010f4ca7ff324599839771e4f2582 SHA512 
a3c1a164267400fff55255fbda353648aa35fa9ebea2b909864706f3680f5767f8b35d80a176c7fbdde6a73f80d2645bb8a8a551742689a484a64c8337af8abf
 WHIRLPOOL 
1ee382145996867746449bf3c5d49502c81801d9d5d873bea8b2a6285ae4855fd028dff61212ff90d44f26c517e248178ce7337cf8b13607129317bdc759e919

diff --git a/net-nntp/nzbget/files/nzbget-19.0_pre2021-fix-no-parcheck.patch 
b/net-nntp/nzbget/files/nzbget-19.0_pre2021-fix-no-parcheck.patch
deleted file mode 100644
index e87fb7ced1a..000
--- a/net-nntp/nzbget/files/nzbget-19.0_pre2021-fix-no-parcheck.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From 928e0a60061d33252de0b490c80477e77dde0627 Mon Sep 17 00:00:00 2001
-From: Andrey Prygunkov 
-Date: Fri, 23 Jun 2017 23:22:49 +0200
-Subject: [PATCH] fixed #399: error when compiling without par-check
-

- daemon/queue/DirectRenamer.cpp | 5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/daemon/queue/DirectRenamer.cpp b/daemon/queue/DirectRenamer.cpp
-index 585ce941..2dd0f95b 100644
 a/daemon/queue/DirectRenamer.cpp
-+++ b/daemon/queue/DirectRenamer.cpp
-@@ -51,6 +51,7 @@ class RenameContentAnalyzer : public ArticleContentAnalyzer
-   bool m_parFile = false;
- };
- 
-+#ifndef DISABLE_PARCHECK
- class DirectParRepairer : public Par2::Par2Repairer
- {
- public:
-@@ -161,7 +162,7 @@ void DirectParLoader::LoadParFile(const char* parFile)
-   m_parHashes.emplace_back(filename.c_str(), hash.c_str());
-   }
- }
--
-+#endif
- 
- std::unique_ptr 
DirectRenamer::MakeArticleContentAnalyzer()
- {
-@@ -219,6 +220,7 @@ void DirectRenamer::FileDownloaded(DownloadQueue* 
downloadQueue, FileInfo* fileI
- 
- void DirectRenamer::CheckState(DownloadQueue* downloadQueue, NzbInfo* nzbInfo)
- {
-+#ifndef DISABLE_PARCHECK
-   if (nzbInfo->GetDirectRenameStatus() > NzbInfo::tsRunning)
-   {
-   return;
-@@ -270,6 +272,7 @@ void DirectRenamer::CheckState(DownloadQueue* 
downloadQueue, NzbInfo* nzbInfo)
-   return;
-   }
-   }
-+#endif
- }
- 
- // Unpause smallest par-files from each par-set

diff --git a/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild 
b/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
deleted file mode 100644
index 6abcc452e54..000
--- a/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic user
-
-MY_PV=${PV/_pre/-r}
-MY_P=${PN}-${PV/_pre/-testing-r}
-
-DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
-HOMEPAGE="https://nzbget.net/;
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
-

[gentoo-commits] repo/gentoo:master commit in: net-vpn/wireguard/

2017-06-30 Thread Jason Donenfeld
commit: cf789f317bc8993cbde9828124924c83e3cabe57
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Fri Jun 30 13:15:19 2017 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Fri Jun 30 13:15:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf789f31

net-vpn/wireguard: evaluate KERNEL_DIR later

The linux-info eclass might do some things to it during other
phases, so we want to evaluate it quite late.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-vpn/wireguard/wireguard-0.0.20170629.ebuild | 2 +-
 net-vpn/wireguard/wireguard-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/wireguard/wireguard-0.0.20170629.ebuild 
b/net-vpn/wireguard/wireguard-0.0.20170629.ebuild
index 2ffe26d5db5..0f1b5d07cb7 100644
--- a/net-vpn/wireguard/wireguard-0.0.20170629.ebuild
+++ b/net-vpn/wireguard/wireguard-0.0.20170629.ebuild
@@ -26,7 +26,6 @@ DEPEND="tools? ( net-libs/libmnl )"
 RDEPEND="${DEPEND}"
 
 MODULE_NAMES="wireguard(net:src)"
-BUILD_PARAMS="KERNELDIR=${KERNEL_DIR} V=1"
 BUILD_TARGETS="module"
 CONFIG_CHECK="NET INET NET_UDP_TUNNEL CRYPTO_BLKCIPHER ~PADATA"
 WARNING_PADATA="If you're running a multicore system you likely should enable 
CONFIG_PADATA for improved performance and parallel crypto."
@@ -39,6 +38,7 @@ pkg_setup() {
 }
 
 src_compile() {
+   BUILD_PARAMS="KERNELDIR=${KERNEL_DIR} V=1"
use debug && BUILD_PARAMS="CONFIG_WIREGUARD_DEBUG=y ${BUILD_PARAMS}"
use module && linux-mod_src_compile
use tools && emake RUNSTATEDIR="${EPREFIX}/run" -C src/tools

diff --git a/net-vpn/wireguard/wireguard-.ebuild 
b/net-vpn/wireguard/wireguard-.ebuild
index 2ffe26d5db5..0f1b5d07cb7 100644
--- a/net-vpn/wireguard/wireguard-.ebuild
+++ b/net-vpn/wireguard/wireguard-.ebuild
@@ -26,7 +26,6 @@ DEPEND="tools? ( net-libs/libmnl )"
 RDEPEND="${DEPEND}"
 
 MODULE_NAMES="wireguard(net:src)"
-BUILD_PARAMS="KERNELDIR=${KERNEL_DIR} V=1"
 BUILD_TARGETS="module"
 CONFIG_CHECK="NET INET NET_UDP_TUNNEL CRYPTO_BLKCIPHER ~PADATA"
 WARNING_PADATA="If you're running a multicore system you likely should enable 
CONFIG_PADATA for improved performance and parallel crypto."
@@ -39,6 +38,7 @@ pkg_setup() {
 }
 
 src_compile() {
+   BUILD_PARAMS="KERNELDIR=${KERNEL_DIR} V=1"
use debug && BUILD_PARAMS="CONFIG_WIREGUARD_DEBUG=y ${BUILD_PARAMS}"
use module && linux-mod_src_compile
use tools && emake RUNSTATEDIR="${EPREFIX}/run" -C src/tools



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

2017-06-30 Thread Hans de Graaff
commit: 79ff8beb04c23426b717054ea8deb8c33b7cdb46
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 30 13:14:39 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 30 13:14:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79ff8beb

app-admin/puppet: fix building with USE=emacs or USE=xemacs, bug 623012

puppet 5.x no longer contains editing modes for emacs or xemacs.
With emacs the USE flag now pulls in app-emacs/puppet-mode.
The xemacs USE flag has been removed until there is a suitable
package there as well.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-admin/puppet/puppet-5.0.0.ebuild | 42 +++-
 1 file changed, 3 insertions(+), 39 deletions(-)

diff --git a/app-admin/puppet/puppet-5.0.0.ebuild 
b/app-admin/puppet/puppet-5.0.0.ebuild
index 3583b0a3e9b..8dbc2f97ac0 100644
--- a/app-admin/puppet/puppet-5.0.0.ebuild
+++ b/app-admin/puppet/puppet-5.0.0.ebuild
@@ -9,7 +9,7 @@ USE_RUBY="ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 
-inherit elisp-common xemacs-elisp-common eutils user ruby-fakegem versionator
+inherit eutils user ruby-fakegem versionator
 
 DESCRIPTION="A system automation and configuration management software."
 HOMEPAGE="http://puppetlabs.com/;
@@ -18,7 +18,7 @@ SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz;
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
-IUSE="augeas diff doc emacs experimental ldap rrdtool selinux shadow sqlite 
vim-syntax xemacs"
+IUSE="augeas diff doc emacs experimental ldap rrdtool selinux shadow sqlite 
vim-syntax"
 RESTRICT="test"
 
 ruby_add_rdepend "
@@ -43,9 +43,6 @@ ruby_add_bdepend "
 # this should go in the above lists, but isn't because of test deps not being 
keyworded
 #   dev-ruby/rspec-collection_matchers
 
-DEPEND+=" ${DEPEND}
-   emacs? ( virtual/emacs )
-   xemacs? ( app-editors/xemacs )"
 RDEPEND+=" ${RDEPEND}
rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] )
selinux? (
@@ -54,8 +51,7 @@ RDEPEND+=" ${RDEPEND}
)
vim-syntax? ( >=app-vim/puppet-syntax-3.0.1 )
>=app-portage/eix-0.18.0"
-
-SITEFILE="50${PN}-mode-gentoo.el"
+PDEPEND="emacs? ( app-emacs/puppet-mode )"
 
 pkg_setup() {
enewgroup puppet
@@ -84,20 +80,6 @@ all_ruby_prepare() {
rm spec/unit/module_tool/metadata_spec.rb || die
 }
 
-all_ruby_compile() {
-   if use emacs ; then
-   elisp-compile ext/emacs/puppet-mode.el
-   fi
-
-   if use xemacs ; then
-   # Create a separate version for xemacs to be able to install
-   # emacs and xemacs in parallel.
-   mkdir ext/xemacs
-   cp ext/emacs/* ext/xemacs/
-   xemacs-elisp-compile ext/xemacs/puppet-mode.el
-   fi
-}
-
 each_ruby_install() {
each_fakegem_install
 #  dosym "/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${P}" 
"/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${PN}"
@@ -133,16 +115,6 @@ all_ruby_install() {
fowners -R :puppet /etc/puppetlabs
fowners -R :puppet /var/lib/puppet
 
-   if use emacs ; then
-   elisp-install ${PN} ext/emacs/puppet-mode.el*
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   fi
-
-   if use xemacs ; then
-   xemacs-elisp-install ${PN} ext/xemacs/puppet-mode.el*
-   xemacs-elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   fi
-
if use ldap ; then
insinto /etc/openldap/schema; doins ext/ldap/puppet.schema
fi
@@ -172,12 +144,4 @@ pkg_postinst() {
elog "for more information."
elog
fi
-
-   use emacs && elisp-site-regen
-   use xemacs && xemacs-elisp-site-regen
-}
-
-pkg_postrm() {
-   use emacs && elisp-site-regen
-   use xemacs && xemacs-elisp-site-regen
 }



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

2017-06-30 Thread Alexis Ballier
commit: eb896694cbfc4165e0d6e3d7b732930e20300f2b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 13:09:02 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 13:09:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb896694

dev-libs/beignet: fix typo in useflag name

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-libs/beignet/beignet-.ebuild 
b/dev-libs/beignet/beignet-.ebuild
index 9e1ae6ff87f..2f099737274 100644
--- a/dev-libs/beignet/beignet-.ebuild
+++ b/dev-libs/beignet/beignet-.ebuild
@@ -80,7 +80,7 @@ multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${VENDOR_DIR}"
-DOCLICD_COMPAT=$(usex ocl-icd)
-   $(usex ocl2 "" "-DENABLE_OPENCL_20=OFF")
+   $(usex ocl20 "" "-DENABLE_OPENCL_20=OFF")
)
 
cmake-utils_src_configure



[gentoo-commits] repo/gentoo:master commit in: app-emacs/puppet-mode/, app-emacs/puppet-mode/files/

2017-06-30 Thread Hans de Graaff
commit: 5c6de1a295268373b125e6c99952a9e78dcc7c5d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 30 13:04:49 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 30 13:05:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c6de1a2

app-emacs/puppet-mode: Initial import of 0.3

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-emacs/puppet-mode/Manifest |  1 +
 .../puppet-mode/files/50puppet-mode-gentoo.el  |  6 +
 .../files/puppet-mode-0.3-version.patch| 20 +
 app-emacs/puppet-mode/metadata.xml |  8 +++
 app-emacs/puppet-mode/puppet-mode-0.3.ebuild   | 26 ++
 5 files changed, 61 insertions(+)

diff --git a/app-emacs/puppet-mode/Manifest b/app-emacs/puppet-mode/Manifest
new file mode 100644
index 000..dd9c034ea33
--- /dev/null
+++ b/app-emacs/puppet-mode/Manifest
@@ -0,0 +1 @@
+DIST puppet-mode-0.3.tar.gz 25617 SHA256 
71ebcb4bf518f9aca404260186b97556fb52060bc56edb77ab1881d64543174d SHA512 
16ba5f71a1ec6c40b1eddf2acf5c1aa1968526b959279e1cac0cfac947f82f404fc35978ce12f5851309f293e2c92f054a718ade97d156528d505dcda58434e8
 WHIRLPOOL 
cb48404309236b6778e6a81b17cc4ad0870438eb87c4c66b208ddceae2c88370af7702565cfa2f2ddf15308cdef61bba69c9c2cf86b43847227cdc334197a19f

diff --git a/app-emacs/puppet-mode/files/50puppet-mode-gentoo.el 
b/app-emacs/puppet-mode/files/50puppet-mode-gentoo.el
new file mode 100644
index 000..64c38ae5a31
--- /dev/null
+++ b/app-emacs/puppet-mode/files/50puppet-mode-gentoo.el
@@ -0,0 +1,6 @@
+
+;;; puppet-mode site-lisp configuration
+
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'puppet-mode "puppet-mode" "Major mode for editing puppet manifests")
+(add-to-list 'auto-mode-alist '("\\.pp$" . puppet-mode))

diff --git a/app-emacs/puppet-mode/files/puppet-mode-0.3-version.patch 
b/app-emacs/puppet-mode/files/puppet-mode-0.3-version.patch
new file mode 100644
index 000..513329dec1a
--- /dev/null
+++ b/app-emacs/puppet-mode/files/puppet-mode-0.3-version.patch
@@ -0,0 +1,20 @@
+--- a/puppet-mode.el.~1~   2014-03-13 16:30:50.0 +0100
 b/puppet-mode.el   2017-06-30 14:38:22.749240233 +0200
+@@ -72,8 +72,6 @@
+ 
+ 
+  Requirements
+-(require 'pkg-info)
+-
+ (require 'cl-lib)
+ (require 'rx)
+ (require 'align)
+@@ -165,7 +163,7 @@
+ if called interactively, or if SHOW-VERSION is non-nil, otherwise
+ just return nil."
+   (interactive (list t))
+-  (let ((version (pkg-info-version-info 'puppet-mode)))
++  (let ((version "@VERSION@"))
+ (when show-version
+   (message "Puppet Mode version: %s" version))
+ version))

diff --git a/app-emacs/puppet-mode/metadata.xml 
b/app-emacs/puppet-mode/metadata.xml
new file mode 100644
index 000..c438baf3b32
--- /dev/null
+++ b/app-emacs/puppet-mode/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  gnu-em...@gentoo.org
+  Gentoo GNU Emacs project
+
+

diff --git a/app-emacs/puppet-mode/puppet-mode-0.3.ebuild 
b/app-emacs/puppet-mode/puppet-mode-0.3.ebuild
new file mode 100644
index 000..29d1fe64b9e
--- /dev/null
+++ b/app-emacs/puppet-mode/puppet-mode-0.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit elisp
+
+DESCRIPTION="Emacs major mode for editing Puppet manifests"
+HOMEPAGE="https://github.com/voxpupuli/puppet-mode;
+SRC_URI="https://github.com/voxpupuli/puppet-mode/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+
+DOCS="CHANGES.rst README.rst"
+SITEFILE="50${PN}-gentoo.el"
+ELISP_PATCHES=( "${FILESDIR}/${PN}-0.3-version.patch" )
+
+RDEPEND="!!

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

2017-06-30 Thread Marek Szuba
commit: 0eafd4cd77602ccc5a1b0a487be6a2b47c402706
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Jun 30 12:51:24 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Jun 30 12:57:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eafd4cd

dev-libs/beignet: do not try enabling OpenCL 2.0 support on unsupported ABIs

Beignet CMake scripts handle this the right way so let's work with them instead
of against them. Now if USE=ocl20 it will get enabled for abi_x86_64 and
gracefully fall back to 1.2 for the others, whereas USE=-ocl20 still explicitly
disables it for all ABIs.

With many thanks to aballier.

Gentoo-Bug: 622964

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../beignet/{beignet-.ebuild => beignet-1.3.1-r1.ebuild}  | 11 ++-
 dev-libs/beignet/beignet-.ebuild  |  2 +-
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/dev-libs/beignet/beignet-.ebuild 
b/dev-libs/beignet/beignet-1.3.1-r1.ebuild
similarity index 91%
copy from dev-libs/beignet/beignet-.ebuild
copy to dev-libs/beignet/beignet-1.3.1-r1.ebuild
index e842fbc1517..44c6896db12 100644
--- a/dev-libs/beignet/beignet-.ebuild
+++ b/dev-libs/beignet/beignet-1.3.1-r1.ebuild
@@ -26,8 +26,9 @@ else
 fi
 
 COMMON="media-libs/mesa
-   sys-devel/clang:=
-   sys-devel/llvm:=
+   sys-devel/clang:0=
+   >=sys-devel/llvm-3.6:0=
+   ocl20? ( >=sys-devel/llvm-3.9:0= )
>=x11-libs/libdrm-2.4.70[video_cards_intel]
x11-libs/libXext
x11-libs/libXfixes"
@@ -39,8 +40,8 @@ DEPEND="${COMMON}
virtual/pkgconfig"
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-1.4.0_no-debian-multiarch.patch
-   "${FILESDIR}"/${PN}-1.3.1-oclicd_no_upstream_icdfile.patch
+   "${FILESDIR}"/no-debian-multiarch.patch
+   "${FILESDIR}"/${P}-oclicd_no_upstream_icdfile.patch
"${FILESDIR}"/${PN}-1.2.0_no-hardcoded-cflags.patch
"${FILESDIR}"/llvm-terminfo.patch
 )
@@ -80,7 +81,7 @@ multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${VENDOR_DIR}"
-DOCLICD_COMPAT=$(usex ocl-icd)
-   -DENABLE_OPENCL_20=$(usex ocl20)
+   $(usex ocl2 "" "-DENABLE_OPENCL_20=OFF")
)
 
cmake-utils_src_configure

diff --git a/dev-libs/beignet/beignet-.ebuild 
b/dev-libs/beignet/beignet-.ebuild
index e842fbc1517..9e1ae6ff87f 100644
--- a/dev-libs/beignet/beignet-.ebuild
+++ b/dev-libs/beignet/beignet-.ebuild
@@ -80,7 +80,7 @@ multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${VENDOR_DIR}"
-DOCLICD_COMPAT=$(usex ocl-icd)
-   -DENABLE_OPENCL_20=$(usex ocl20)
+   $(usex ocl2 "" "-DENABLE_OPENCL_20=OFF")
)
 
cmake-utils_src_configure



[gentoo-commits] repo/gentoo:master commit in: dev-libs/amdgpu-pro-opencl/

2017-06-30 Thread Marek Szuba
commit: 1632a48d8a36534752a0aa1f54d3a04638b1a514
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Jun 30 11:44:08 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Jun 30 12:57:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1632a48d

dev-libs/amdgpu-pro-opencl: display "caveat emptor" warning after first 
installation.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../amdgpu-pro-opencl/amdgpu-pro-opencl-17.10.429170.ebuild| 10 ++
 1 file changed, 10 insertions(+)

diff --git a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-17.10.429170.ebuild 
b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-17.10.429170.ebuild
index c75b64c1091..6d8da00df44 100644
--- a/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-17.10.429170.ebuild
+++ b/dev-libs/amdgpu-pro-opencl/amdgpu-pro-opencl-17.10.429170.ebuild
@@ -60,6 +60,16 @@ src_install() {
 }
 
 pkg_postinst() {
+   if [[ -z "${REPLACING_VERSIONS}" ]]; then
+   ewarn "Please note that using proprietary OpenCL libraries 
together with the"
+   ewarn "Open Source amdgpu stack is not officially supported by 
AMD. Do not ask them"
+   ewarn "for support in case of problems with this package."
+   ewarn ""
+   ewarn "Furthermore, if you have the whole AMDGPU-Pro stack 
installed this package"
+   ewarn "will almost certainly conflict with it. This might 
change once AMDGPU-Pro"
+   ewarn "has become officially supported by Gentoo."
+   fi
+
elog "AMD OpenCL driver relies on dev-libs/ocl-icd to work. To enable 
it, please run"
elog ""
elog "eselect opencl set ocl-icd"



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

2017-06-30 Thread Alexis Ballier
commit: 2ee57d559c07ad4d9f9767f55cb5ff7053191230
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:48:44 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee57d55

dev-ruby/mocha: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/mocha/mocha-1.2.1.ebuild 
b/dev-ruby/mocha/mocha-1.2.1.ebuild
index 5d110a216df..cb3828914f5 100644
--- a/dev-ruby/mocha/mocha-1.2.1.ebuild
+++ b/dev-ruby/mocha/mocha-1.2.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://gofreerange.com/mocha/docs/;
 
 LICENSE="MIT"
 SLOT="1.0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 ruby_add_bdepend "



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

2017-06-30 Thread Alexis Ballier
commit: 06261701381dcc9abf692487d405a1201d499fe5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:47:43 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06261701

dev-ruby/metaclass: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/metaclass/metaclass-0.0.4.ebuild 
b/dev-ruby/metaclass/metaclass-0.0.4.ebuild
index 7691d849e4b..2a9b9585ea8 100644
--- a/dev-ruby/metaclass/metaclass-0.0.4.ebuild
+++ b/dev-ruby/metaclass/metaclass-0.0.4.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/floehopper/metaclass;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 all_ruby_prepare() {



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

2017-06-30 Thread Alexis Ballier
commit: 9f4f9deaad1d2463f15b1d7baff6622b5b330afc
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:47:30 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f4f9dea

dev-ruby/test_declarative: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/test_declarative/test_declarative-0.0.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/test_declarative/test_declarative-0.0.5-r2.ebuild 
b/dev-ruby/test_declarative/test_declarative-0.0.5-r2.ebuild
index ad549186dc9..b20fcfc1e46 100644
--- a/dev-ruby/test_declarative/test_declarative-0.0.5-r2.ebuild
+++ b/dev-ruby/test_declarative/test_declarative-0.0.5-r2.ebuild
@@ -20,7 +20,7 @@ RUBY_S="svenfuchs-test_declarative-*"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 each_ruby_test() {



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocamlnet/, dev-ml/ocamlnet/files/

2017-06-30 Thread Alexis Ballier
commit: d7d57903f6e0094b295fc3bcf9bb1f83443b9c5c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:42:02 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7d57903

dev-ml/ocamlnet: backport upstream fix to build with ocaml 4.05

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocamlnet/files/ocaml405.patch  | 145 ++
 dev-ml/ocamlnet/ocamlnet-4.1.2.ebuild |   6 +-
 2 files changed, 150 insertions(+), 1 deletion(-)

diff --git a/dev-ml/ocamlnet/files/ocaml405.patch 
b/dev-ml/ocamlnet/files/ocaml405.patch
new file mode 100644
index 000..a112d1fb447
--- /dev/null
+++ b/dev-ml/ocamlnet/files/ocaml405.patch
@@ -0,0 +1,145 @@
+commit f3d451b81c4caa8cce7f55af6463ec685e79e227
+Author: Gerd Stolpmann 
+Date:   Sun Feb 26 21:04:49 2017 +0100
+
+ocaml-4.05: support for O_KEEPEXEC
+
+diff --git a/code/src/netsys/Makefile b/code/src/netsys/Makefile
+index cbc1ce2..cb70a09 100644
+--- a/code/src/netsys/Makefile
 b/code/src/netsys/Makefile
+@@ -56,7 +56,7 @@ OCAMLC_OPTIONS_FOR_netsys_c_xdr.c = -ccopt -O
+ OCAMLC_OPTIONS += $(STRING_OPTS)
+ OCAMLOPT_OPTIONS += $(STRING_OPTS)
+ 
+-PP_OPTIONS = -pp "$(CPPO) $(DEF_O_SHARE_DELETE) $(DEF_O_CLOEXEC) $(PP_BYTES) 
$(PP_DEPRECATED)"
++PP_OPTIONS = -pp "$(CPPO) $(DEF_O_SHARE_DELETE) $(DEF_O_CLOEXEC) 
$(DEF_O_KEEPEXEC) $(PP_BYTES) $(PP_DEPRECATED)"
+ 
+ INSTALL_EXTRA += netsys_c_event.h $(OOH_OBJECT)
+ 
+diff --git a/code/src/netsys/configure b/code/src/netsys/configure
+index 1325843..f4dbc09 100755
+--- a/code/src/netsys/configure
 b/code/src/netsys/configure
+@@ -437,6 +437,21 @@ else
+ echo "no"
+ fi
+ 
++##
++
++printf "Checking for O_KEEPEXEC... "
++mkdir -p tmp
++cat <<_EOF_ >tmp/t.ml
++let x = Unix.O_KEEPEXEC;;
++_EOF_
++
++def_o_keepexec="-D NO_O_KEEPEXEC"
++if ocaml unix.cma tmp/t.ml >/dev/null 2>/dev/null; then
++echo "yes"
++def_o_keepexec="-D HAVE_O_KEEPEXEC"
++else
++echo "no"
++fi
+ 
+ ##
+ 
+@@ -445,6 +460,7 @@ cat 

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

2017-06-30 Thread Alexis Ballier
commit: dbc4de36b311a0c8281cda41fd5bb5619fc273aa
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:36:30 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc4de36

gnome-base/orbit: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 gnome-base/orbit/orbit-2.14.19-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/orbit/orbit-2.14.19-r5.ebuild 
b/gnome-base/orbit/orbit-2.14.19-r5.ebuild
index 53e3f121eac..927a74b0de2 100644
--- a/gnome-base/orbit/orbit-2.14.19-r5.ebuild
+++ b/gnome-base/orbit/orbit-2.14.19-r5.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://projects.gnome.org/ORBit2/;
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 ~ppc-aix 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="pic static-libs test"
 REQUIRED_USE="test? ( debug )"
 



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

2017-06-30 Thread Alexis Ballier
commit: 39d28d0d956137da21a6d05a4556ec4621c4a0ab
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:48:23 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39d28d0d

dev-ruby/introspection: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/introspection/introspection-0.0.4.ebuild 
b/dev-ruby/introspection/introspection-0.0.4.ebuild
index 2f97e96015d..dd9d02ac6aa 100644
--- a/dev-ruby/introspection/introspection-0.0.4.ebuild
+++ b/dev-ruby/introspection/introspection-0.0.4.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="http://jamesmead.org/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1"



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

2017-06-30 Thread Alexis Ballier
commit: bb986bdae47f6cc228cdcdd3abecfda1101dc508
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:24:07 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb986bda

dev-libs/libIDL: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/libIDL/libIDL-0.8.14-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libIDL/libIDL-0.8.14-r2.ebuild 
b/dev-libs/libIDL/libIDL-0.8.14-r2.ebuild
index 41b865a5935..aa649a61d9a 100644
--- a/dev-libs/libIDL/libIDL-0.8.14-r2.ebuild
+++ b/dev-libs/libIDL/libIDL-0.8.14-r2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://www.gnome.org/;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm 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=">=dev-libs/glib-2.44.1-r1:2[${MULTILIB_USEDEP}]"



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

2017-06-30 Thread Alexis Ballier
commit: fd74b755e4f2267dec76a9f636e7d0c03af45309
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:44:33 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd74b755

dev-ruby/atomic: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/atomic/atomic-1.1.99.ebuild 
b/dev-ruby/atomic/atomic-1.1.99.ebuild
index 3a434b4592c..7efdf341a55 100644
--- a/dev-ruby/atomic/atomic-1.1.99.ebuild
+++ b/dev-ruby/atomic/atomic-1.1.99.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/headius/ruby-atomic;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2017-06-30 Thread Alexis Ballier
commit: 20ca655b76488c312f638a96b8ffae6b923f4eca
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:38:38 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20ca655b

dev-ruby/activesupport: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/activesupport/activesupport-4.2.8.ebuild 
b/dev-ruby/activesupport/activesupport-4.2.8.ebuild
index 681ed33a925..d963a4f3ad2 100644
--- a/dev-ruby/activesupport/activesupport-4.2.8.ebuild
+++ b/dev-ruby/activesupport/activesupport-4.2.8.ebuild
@@ -21,7 +21,7 @@ SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz 
-> rails-${PV}.tgz
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RUBY_S="rails-${PV}/${PN}"



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

2017-06-30 Thread Alexis Ballier
commit: 635fb554b51a103de13f7ce1e9e01ea130c4b0bc
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:48:08 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635fb554

dev-ruby/blankslate: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/blankslate/blankslate-3.1.3.ebuild 
b/dev-ruby/blankslate/blankslate-3.1.3.ebuild
index a3a5bfca1d0..cbcb58b0c52 100644
--- a/dev-ruby/blankslate/blankslate-3.1.3.ebuild
+++ b/dev-ruby/blankslate/blankslate-3.1.3.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://rubygems.org/gems/blankslate;
 IUSE=""
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 
 all_ruby_prepare() {
# Avoid test failing with rspec 2.x.



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

2017-06-30 Thread Alexis Ballier
commit: d5c99b9aacc01410d6a0af45a3f86500fa21e3c0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:46:29 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c99b9a

dev-ruby/connection_pool: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/connection_pool/connection_pool-2.2.1.ebuild 
b/dev-ruby/connection_pool/connection_pool-2.2.1.ebuild
index 2f362210307..eaf2366fa37 100644
--- a/dev-ruby/connection_pool/connection_pool-2.2.1.ebuild
+++ b/dev-ruby/connection_pool/connection_pool-2.2.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/mperham/connection_pool;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5 )"



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

2017-06-30 Thread Alexis Ballier
commit: 7d8d3aac004f94526b26cbaf6162308a79df0f68
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:46:57 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d8d3aac

dev-ml/jbuilder: Disable -Werror like behavior; ocaml 4.05 generates some new 
warnings.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild 
b/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild
index e085a50586f..7207b149918 100644
--- a/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild
+++ b/dev-ml/jbuilder/jbuilder-1.0_beta10.ebuild
@@ -25,6 +25,11 @@ OPAMSWITCH="system"
 S="${WORKDIR}/${MY_P}"
 OPAMROOT="${D}"
 
+src_prepare() {
+   # Disable Werror like behavior, doesnt build with ocaml 4.05 otherwise
+   sed -i -e 's/--dev//' Makefile || die
+}
+
 src_install() {
opam-installer -i \
--prefix="${ED}/usr" \



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

2017-06-30 Thread Alexis Ballier
commit: 489ebe9b9ace6fac3ed06337ee88ce568dfdb20d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:46:17 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489ebe9b

dev-ruby/dalli: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/dalli/dalli-2.7.6.ebuild 
b/dev-ruby/dalli/dalli-2.7.6.ebuild
index 1c1848c0cea..58c5b204bc1 100644
--- a/dev-ruby/dalli/dalli-2.7.6.ebuild
+++ b/dev-ruby/dalli/dalli-2.7.6.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/petergoldstein/dalli;
 SRC_URI="https://github.com/petergoldstein/dalli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND+="${DEPEND} test? ( >=net-misc/memcached-1.4.0 )"



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

2017-06-30 Thread Alexis Ballier
commit: 896e345691010d0ec3e97a88060535b4a410a63a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:39:56 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896e3456

dev-ruby/tzinfo: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/tzinfo/tzinfo-1.2.3.ebuild 
b/dev-ruby/tzinfo/tzinfo-1.2.3.ebuild
index 88c2a1bbfe6..f28de5080ad 100644
--- a/dev-ruby/tzinfo/tzinfo-1.2.3.ebuild
+++ b/dev-ruby/tzinfo/tzinfo-1.2.3.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://tzinfo.github.io/;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="sys-libs/timezone-data"



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

2017-06-30 Thread Alexis Ballier
commit: 20efa878757aa52228ea446f9f1fcb78df60ae6d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 11:50:10 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20efa878

dev-ruby/bundler: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/bundler/bundler-1.13.7.ebuild 
b/dev-ruby/bundler/bundler-1.13.7.ebuild
index 768832f0dab..1a076677097 100644
--- a/dev-ruby/bundler/bundler-1.13.7.ebuild
+++ b/dev-ruby/bundler/bundler-1.13.7.ebuild
@@ -23,7 +23,7 @@ 
SRC_URI="https://github.com/carlhuda/bundler/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 ruby_add_rdepend virtual/rubygems



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

2017-06-30 Thread Alexis Ballier
commit: ed93803717b3646f83e8208bff2230e3fb18d529
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:44:54 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed938037

dev-ruby/mocha: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/mocha/mocha-0.14.0.ebuild 
b/dev-ruby/mocha/mocha-0.14.0.ebuild
index dced3f1acb6..4cdc1e742be 100644
--- a/dev-ruby/mocha/mocha-0.14.0.ebuild
+++ b/dev-ruby/mocha/mocha-0.14.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://gofreerange.com/mocha/docs/;
 
 LICENSE="MIT"
 SLOT="0.14"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE=""
 
 ruby_add_bdepend "



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

2017-06-30 Thread Alexis Ballier
commit: 62c82a30ecefe8da05f9db962f19cc72097a6f40
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:04:27 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c82a30

dev-ruby/i18n: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/i18n/i18n-0.6.11-r1.ebuild | 2 +-
 dev-ruby/i18n/i18n-0.7.0-r2.ebuild  | 2 +-
 dev-ruby/i18n/i18n-0.8.4.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/i18n/i18n-0.6.11-r1.ebuild 
b/dev-ruby/i18n/i18n-0.6.11-r1.ebuild
index 67f0e3b5ed8..e0cfca82282 100644
--- a/dev-ruby/i18n/i18n-0.6.11-r1.ebuild
+++ b/dev-ruby/i18n/i18n-0.6.11-r1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="http://rails-i18n.org/;
 
 LICENSE="MIT"
 SLOT="0.6"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 RUBY_PATCHES=( ${PN}-0.7.0-frozen-classes.patch )

diff --git a/dev-ruby/i18n/i18n-0.7.0-r2.ebuild 
b/dev-ruby/i18n/i18n-0.7.0-r2.ebuild
index 690cc25f2b5..64a421eaf98 100644
--- a/dev-ruby/i18n/i18n-0.7.0-r2.ebuild
+++ b/dev-ruby/i18n/i18n-0.7.0-r2.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/svenfuchs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 RUBY_PATCHES=( ${P}-frozen-classes.patch )

diff --git a/dev-ruby/i18n/i18n-0.8.4.ebuild b/dev-ruby/i18n/i18n-0.8.4.ebuild
index 61995ac13ee..82314249252 100644
--- a/dev-ruby/i18n/i18n-0.8.4.ebuild
+++ b/dev-ruby/i18n/i18n-0.8.4.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/svenfuchs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? (



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

2017-06-30 Thread Alexis Ballier
commit: 6207bde4f178152871f66377684835e9bb9ff2d5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 12:40:09 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 12:47:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6207bde4

dev-ruby/thread_safe: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild 
b/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild
index 0d0a2b39e5f..de75f251f06 100644
--- a/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild
+++ b/dev-ruby/thread_safe/thread_safe-0.3.6.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/ruby-concurrency/thread_safe;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 # Higher atomic dependency since earlier versions crash on ruby20 while



[gentoo-commits] repo/gentoo:master commit in: app-i18n/anthy/

2017-06-30 Thread Patrice Clement
commit: 30cfa69ba63494feba9221f033696f59160e0d1a
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jun 30 12:31:19 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 12:31:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30cfa69b

app-i18n/anthy: EAPI 6 bump.

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

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

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-i18n/anthy/anthy-9100h-r2.ebuild | 68 
 1 file changed, 68 insertions(+)

diff --git a/app-i18n/anthy/anthy-9100h-r2.ebuild 
b/app-i18n/anthy/anthy-9100h-r2.ebuild
new file mode 100644
index 000..6ad6fbaf144
--- /dev/null
+++ b/app-i18n/anthy/anthy-9100h-r2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit elisp-common
+
+DESCRIPTION="Anthy -- free and secure Japanese input system"
+HOMEPAGE="http://anthy.sourceforge.jp/;
+SRC_URI="mirror://sourceforge.jp/anthy/37536/${P}.tar.gz"
+
+LICENSE="GPL-2 LGPL-2.1"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos"
+SLOT="0"
+IUSE="canna-2ch emacs static-libs"
+
+DEPEND="
+   !app-i18n/anthy-ss
+   canna-2ch? ( app-dicts/canna-2ch )
+   emacs? ( virtual/emacs )"
+
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${P}-anthy_context_t.patch" )
+
+DOCS=( AUTHORS DIARY NEWS README ChangeLog )
+
+src_prepare() {
+   default
+
+   if use canna-2ch; then
+   einfo "Adding nichan.ctd to anthy.dic."
+   sed -i \
+   -e "/set_input_encoding eucjp/aread 
${EPREFIX}/var/lib/canna/dic/canna/nichan.ctd" \
+   mkworddic/dict.args.in || die
+   fi
+}
+
+src_configure() {
+   local myconf
+
+   use emacs || myconf="EMACS=no"
+
+   econf \
+   $(use_enable static-libs static) \
+   ${myconf}
+}
+
+src_install() {
+   default
+
+   if use emacs; then
+   elisp-site-file-install "${FILESDIR}"/50anthy-gentoo.el || die
+   fi
+
+   rm -v doc/Makefile* || die
+   docinto doc
+   dodoc doc/*
+}
+
+pkg_postinst() {
+   use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}



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

2017-06-30 Thread Patrice Clement
commit: d255de756438544d0aeb12da260cc41483a4e5af
Author: Zoltan Puskas  sinustrom  info>
AuthorDate: Thu May 25 06:49:49 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 12:25:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d255de75

net-misc/youtube-viewer: version bump to 3.2.8.

Adjusted dependencies according to release, fixed RDEPEND of video players,
allowed ffmpeg with gnutls

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

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

 net-misc/youtube-viewer/Manifest   |  1 +
 .../youtube-viewer/youtube-viewer-3.2.8.ebuild | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/net-misc/youtube-viewer/Manifest b/net-misc/youtube-viewer/Manifest
index 30d50d048d6..acfe1ef4209 100644
--- a/net-misc/youtube-viewer/Manifest
+++ b/net-misc/youtube-viewer/Manifest
@@ -2,3 +2,4 @@ DIST youtube-viewer-3.1.9.tar.gz 76 SHA256 
9b7ba2b50cea054898024bc871e231673
 DIST youtube-viewer-3.2.0.tar.gz 222528 SHA256 
60a4ded8798da3cdadadf816b1c4e87c6feb697f01db70630f014584e5a2392e SHA512 
bda3592874ded71e6a60d87b669d2c80999425ef2f2061e942a8db5755d9d6f2dabf038b8b7984efb13a5f9f12b2fa56290be9db871b2784b2c464367c3b
 WHIRLPOOL 
73ec965bf4cf65d545b99d73e003ce7d74d92dcdc1f5d29c8b925e4d96e93d5924b66e06ec40e22f16119b6df6445344d650d5ca086e52aeb60a350c7ca8ce0d
 DIST youtube-viewer-3.2.4.tar.gz 224282 SHA256 
ca37024ce018e31bd4c99f5df208e842f44979c07c5d31647c1fbe4e17b1b296 SHA512 
06bb763460b90f26aa1671c29056374df62d4e840acb3a800f4840160535fef30e60e6655b1d4ba7423a0424384acdfc00aa068a420aa836110974a5f7152ec2
 WHIRLPOOL 
bfeb12bacd98b6da8ecb0ee4b626a8fdc98331f21049bdd99524d65ff5de109abe859c882dac5347fa07cee704d229e64496a369ae1c3ae6d24557c4ff142b59
 DIST youtube-viewer-3.2.5.tar.gz 228801 SHA256 
306199649972137e7181fac4efccb295b5c3aedc3f103975cca533db3be1f53b SHA512 
093c62a3fcbfdf538ae5a205b4263ef91408e4aa7f1824a12f4b5d7b387437fe48af5914e792d743b135e1389534ddba89aaa9a1226969d3cc360515a0d885ae
 WHIRLPOOL 
5d0168866d58ee88e6d7fa98f2a7ffdc3527203680c224bcd5998e322f6329e28cecbc33986aea764137c9917b78e65f250afe664af6fd5c308a50cfa626c869
+DIST youtube-viewer-3.2.8.tar.gz 233912 SHA256 
50e26c4f9548f0211cb0dd35ade192939ec12c5aab9d0d55692223390dbb9039 SHA512 
ae4012f164ff86208975968efe3460774f6740ada9badbfbb373b1e4a22b9983667d96c0f8d857431a6b344bbd061895abab39d353e850662b0b131ef9016f45
 WHIRLPOOL 
ac0c6176ec9636e0b9192e3018f73f3ef3e5ddd4498994e024392164510607891af0ee8c487d159822ad9601552c38c6f755307274df7798b7d1dcd33ba7f041

diff --git a/net-misc/youtube-viewer/youtube-viewer-3.2.8.ebuild 
b/net-misc/youtube-viewer/youtube-viewer-3.2.8.ebuild
new file mode 100644
index 000..3b5e362cd1b
--- /dev/null
+++ b/net-misc/youtube-viewer/youtube-viewer-3.2.8.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils gnome2-utils perl-module
+
+DESCRIPTION="A command line utility for viewing youtube-videos in Mplayer"
+HOMEPAGE="https://trizenx.blogspot.com/2012/03/gtk-youtube-viewer.html;
+SRC_URI="https://github.com/trizen/youtube-viewer/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( Artistic GPL-1+ )"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gtk"
+
+RDEPEND="
+   dev-perl/Data-Dump
+   dev-perl/JSON
+   dev-perl/libwww-perl[ssl]
+   dev-perl/Term-ReadLine-Gnu
+   dev-perl/LWP-Protocol-https
+   virtual/perl-Encode
+   virtual/perl-File-Path
+   virtual/perl-File-Spec
+   virtual/perl-Getopt-Long
+   virtual/perl-Scalar-List-Utils
+   virtual/perl-Term-ANSIColor
+   virtual/perl-Term-ReadLine
+   virtual/perl-Text-ParseWords
+   virtual/perl-Text-Tabs+Wrap
+   gtk? (
+   dev-perl/File-ShareDir
+   >=dev-perl/Gtk2-1.244.0
+   virtual/freedesktop-icon-theme
+   x11-libs/gdk-pixbuf:2[X,jpeg]
+   )
+   || ( media-video/ffmpeg[openssl] media-video/ffmpeg[gnutls] )
+   || ( media-video/mpv media-video/mplayer media-video/vlc gtk? ( 
media-video/smplayer ) )"
+DEPEND="dev-perl/Module-Build"
+
+src_configure() { 
+   local myconf
+   if use gtk ; then
+   myconf="--gtk-youtube-viewer"
+   fi
+   perl-module_src_configure
+}
+
+src_install() {
+   perl-module_src_install
+
+   if use gtk ; then
+   domenu share/gtk-youtube-viewer.desktop
+   doicon share/icons/gtk-youtube-viewer.png
+   fi
+}
+
+pkg_postinst() {
+   use gtk && gnome2_icon_cache_update
+   elog "Optional dependencies:"
+   optfeature "cache support" dev-perl/LWP-UserAgent-Cached
+   optfeature "faster JSON to HASH conversion" dev-perl/JSON-XS
+   optfeature "the case if there are SSL problems" dev-perl/Mozilla-CA
+   optfeature "printing results in a fixed-width format 

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

2017-06-30 Thread Patrice Clement
commit: b99293046515c6f305e797e607d8c1a75c717fbe
Author: Elvis Pranskevichus  magic  io>
AuthorDate: Tue Jun 27 19:14:32 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 30 12:22:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9929304

app-editors/atom: version bump to 1.18.0.

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

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

 app-editors/atom/Manifest   |   7 +
 app-editors/atom/atom-1.18.0.ebuild | 412 
 2 files changed, 419 insertions(+)

diff --git a/app-editors/atom/Manifest b/app-editors/atom/Manifest
index 22431b145e1..2c97f608c5f 100644
--- a/app-editors/atom/Manifest
+++ b/app-editors/atom/Manifest
@@ -1,17 +1,24 @@
 DIST asar-0.12.1.tar.gz 1016626 SHA256 
731714f0036318fe0878b517391a01977954bb088d4dbc7dd98682ff1e03c0e7 SHA512 
fc64be9b11215426d405f7acd7adf6c0eead3135b0012baf6d168a13c77675058a4e2c60682928ac014e4bef4538d452ad745d1e87dd315387997a19e04718a7
 WHIRLPOOL 
d73b8bb459724bb3b011de312171519c1f1954a94ce1bb0a20eb9877c168baa82a15786d3ab420d5b3d32ce8a11333e85f844b43c21cbd56c3b019e73774388e
 DIST atom-1.15.0.rpm 86561729 SHA256 
935b444d9122f46d3ab490611476498c963de1232f9c732d9ad33f0e380a37be SHA512 
e8f5ceaae020f9fbf8cb1ffbef0f64b7b5d23a0be20d063591e3ba3b9fd33c771a028aca9aa0ecad254e250342d40106dac85bf6bdeff4de64da0b57fe6de3ea
 WHIRLPOOL 
4d4311654b8afaa4aa2d07611960d24775aeb825e97ea65e6f69d72790d4c160e8a371432346f1873a71b2e1bf4158f3eb5d35fc1fd882906765f3ea4328e526
 DIST atom-1.16.0.rpm 90249819 SHA256 
6305f149f7b85e498e56d92fe0927ca81fd4cce62153f266fcd8f39958a59e69 SHA512 
e3e9096caf6d5ca802ad47e434a6e8a51c0ab25b967747621e2ea4eb440d5401df3b7cd3d101d6d5a1f2f12fa77525e7e54e252438ff24ec9b651601bb7f4d97
 WHIRLPOOL 
b294fa728388a2b1a85c02d7548e077e34c5db83ddea1d2b5d6bdebd4c72db906ccc856fd766e3f2f3900ad5f02de3c4bd22e273683c92e4f0dd027fa6f3
+DIST atom-1.18.0.rpm 128551353 SHA256 
08609b26776ee12effd47ff87a2eb44f7ba9000a0e28b8022ca0bace0216e8d8 SHA512 
c30df4b3c10e2e886c349a8c255ea6e9e308b38811f02b2517ba464959a873d159b5fa4fe89d68ed50500038b92219cb061d9dee0917b0b807e086cceec2803b
 WHIRLPOOL 
3a1607be3155ac614b403df94f8974a675a646e777e4cc7ce351b975e17a9e6708676f8c6772d35f90f9240757a0fbeb1e1fa1a304c3f08728041440e59b7192
 DIST atom-cached-run-in-this-context-0.4.1.tar.gz 3855 SHA256 
5487e7641d5031e652deeef8bebe2d3af4e4d2b89989dd8700bf14e33843ce89 SHA512 
dca2a6c77bb94e704aa99b405ae017bf0c56ce536a7246a8feaf133722556d444fb684cd6b9b475abcd0b946a42073a9fc0d61f5141b564320ac023ab2fbf79d
 WHIRLPOOL 
573d0f703989f31109854f0eb324d6b1364e93cd057c4cfe20409415dee3101964cacabc246d4df43124dad881d8fec8575c6bbb23ba98698e6c73cf3c5614d4
 DIST atom-git-utils-4.1.2.tar.gz 36492 SHA256 
fd627647742359946d3b8f88bc91dd4d68a047dcba5bfafbd690e1a20afeb908 SHA512 
d1f0a5bbd6b059131ccf4ab92174d80caddbb254ea6d0676a5ce71d7dba55d60c86ed1c412862b9d104a5f6deb2671facad84841f9644afb9b37416b743e917a
 WHIRLPOOL 
4ee4620b0208a30f848167fffce05c5999d38bf5a3e50567e6bcf295fdafc7861e870346cfeb28a61392e7a737e100f90ae1dbd25066469926e3148006e02937
+DIST atom-git-utils-5.0.0.tar.gz 36545 SHA256 
a79e4951de6ac0a81f2ea359f82c575f826a4409f91b90a11f75a85c7886bec9 SHA512 
42fd7589ca56049b1ad5cf7f2df7e295fc8575f4eee8a562fa103541157bd487c1748e3d6c536237b260dcbb4b530619dfcc121ba84b6d2fbf6d684dc959f819
 WHIRLPOOL 
03ae2290fc1ef0863c643a1fd4f9d4c98bc9b2939fddf6fd366eea9122b9d5612f53ad7ea6eb57c020eb376fa623253082da4c26f67d8de1bb59189b64f9d60b
 DIST atom-keyboard-layout-2.0.11.tar.gz 19294 SHA256 
fcef31c36619b76dd5f13a53c40eb9d3a7206a85cac3cd9dd0ba8e89d128258e SHA512 
e7cbf3e8686ce6a86549d913523db75af623d4c5a18104f911b7f3931c273b87b4695b9b85afaea9a5cb440201b34d9e7445786c9328b87a5b58176cf2dbb877
 WHIRLPOOL 
85f06e125fca0e4e4c8a50fba539d674a0aadd1fba0c75b2be5663503c97bc8b6a6c75ee6b9916df5e598f3cc2a18f84e8392f1fb1145113d36d5216c0a2e5af
+DIST atom-keyboard-layout-2.0.12.tar.gz 19605 SHA256 
4650855999cdf8bc1a3ed600210ac7a8a52f582dea13276e120f0b96d183fedd SHA512 
ad6c3f9289ec015406fb85fde5e6dd5111b0fad70ec311df2d26dec257bfff674e65ff0827025b1394f3773ddf6957deb67fa5dba647d3bc5485b928b2cf966b
 WHIRLPOOL 
9ba51082da4466a7e76339e12f4ebe53782b22f41cecc3886c00bff24ddbb27f0f7e5ff92dcb8ae3de40081bd8fe43fdcf76da6c996dba5fb65942c0d89ad26c
 DIST atom-node-ctags-3.0.0.tar.gz 15062 SHA256 
40605012d06d4dcbfc369862b57900b6963613e2e4ee3b37fea21693b2b418a7 SHA512 
6f7277a0ff872991c365f811c635fd881c3e466c20219d8a7bdaf6fec7c26c5feaa7ae2118691a8d52ceb3ecfda6d795bf39dfda7f8df5a6d02388575a010f87
 WHIRLPOOL 
2cff81d2ca405a615e5c7d284785f129f8fcd968998c68a42af1ca2e6d76a6fcb404a92f3c0d20220567b28593448b91657db6df8bce19de1f2eedbfe2959140
 DIST atom-node-keytar-3.0.2.tar.gz 5718 SHA256 
16af03d2a7876e3008f82d35e913753384655bc181e93cb771639b6d5a2439bf SHA512 
f08ec6e50071e6e8995244607144009eaa8fd61a1724c80c40ccfb497e2b4682b30d6a091de9480b78f49ceb11f1a655e12ccb6b43d3df34f7e089585381697a
 

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

2017-06-30 Thread Tony Vroon
commit: 9718fe6867c49da01a65ece4c375dfe73af000d7
Author: Tony Vroon  gentoo  org>
AuthorDate: Fri Jun 30 12:05:55 2017 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jun 30 12:06:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9718fe68

x11-plugins/purple-facebook: Version bump to 20170608 as requested by 
Christophe "kobboi" Lermytte, Vojtech Hrabal & Michael "veremit" Everitt.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 x11-plugins/purple-facebook/Manifest   |  1 +
 .../purple-facebook-20170608.ebuild| 27 ++
 2 files changed, 28 insertions(+)

diff --git a/x11-plugins/purple-facebook/Manifest 
b/x11-plugins/purple-facebook/Manifest
index 8d1df5ca807..78669cdd6dc 100644
--- a/x11-plugins/purple-facebook/Manifest
+++ b/x11-plugins/purple-facebook/Manifest
@@ -3,3 +3,4 @@ DIST purple-facebook-20160118.tar.gz 443498 SHA256 
620b71bba75f0b89f3c52b6ec2e5b
 DIST purple-facebook-20160409.tar.gz 448502 SHA256 
bc4420bc46295700af42c2e35adda210ab62ebb8bf9808adc2baba94205d6454 SHA512 
961d570c0e29a8016028bbd6c05e1dd6f3b754414e708b4688d7b49e972882833b7acf6334a5b4378f1da1c08d174de9d65123ea5d34522f0739474da6c87c8a
 WHIRLPOOL 
f8d469b8352308fc582df069b6f79f1e5a69bb84df818788e1d549cee4649974fa6170b4d22faa3d505a15524c59bcca49a9894df1b572984cb92f533da16d36
 DIST purple-facebook-20170329.tar.gz 458751 SHA256 
03b46fc574fa663f6bc318f216776a22332123a33a84ab8b49290c463e713509 SHA512 
cce2e3a3419f64348cc1f5d5feaec36c428435cfe959477608db65d7c1cfcf7840ce8037ba816319832bd6269929cb2c57fdc21d72241574f2dc37aa4c993ec7
 WHIRLPOOL 
551672f22ad73cfd42fe7f26d67948d6c0b012d4158451bc81e5f6474f63b0f812902f4c0fca5817542b3519535d2a423154e8962ba59b279f3ea70671064344
 DIST purple-facebook-20170330.tar.gz 459035 SHA256 
bec38bdcc1a81172d1a1d459aa7455b146bf2dda9faa1983fcde08e674220bf3 SHA512 
e665e92e25cfdb8eb12ef2e74dc75035ae558b37d504ce9330de254ede94da205b57b180fee373fa1ac16402c0291dbaab1800c8fbdfe0aa50ede5b955294261
 WHIRLPOOL 
d65fd921617ce66309ec5155d83df7a84229970ca8a5b2d2c0395a2437850f52651d0069082919f8eccd5b4e30e8d1c5331a81e9a284c14c50d69aab8e42e68f
+DIST purple-facebook-20170608.tar.gz 459535 SHA256 
cde5ef255668380abccf74b76844f95adf33e06421775ae302b93afbcb4eae8e SHA512 
50e8708afc059239347ccf1a5b92202469116848c63599cfc450d114f2b821a9c15ef340074e715ffebd46761b30f59ac8caf9bb2848af41c3ad0abc39fb39e2
 WHIRLPOOL 
338b9574ac214fea31b2bf7735e33ae94792259bdcf9fa1369693b21494022c195c2944dfdc89b98576ee092b5d76a3a2edfd07c82e4688fcecdb72c061f15ab

diff --git a/x11-plugins/purple-facebook/purple-facebook-20170608.ebuild 
b/x11-plugins/purple-facebook/purple-facebook-20170608.ebuild
new file mode 100644
index 000..01961de6bd6
--- /dev/null
+++ b/x11-plugins/purple-facebook/purple-facebook-20170608.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils autotools
+
+MY_PV="0.9.4-c9b74a765767"
+S="${WORKDIR}/${PN}-${MY_PV}"
+DESCRIPTION="Facebook protocol plugin for libpurple"
+HOMEPAGE="https://github.com/dequis/purple-facebook;
+SRC_URI="https://github.com/dequis/${PN}/releases/download/v${MY_PV}/${PN}-${MY_PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="dev-libs/json-glib
+net-im/pidgin"
+DEPEND="${RDEPEND}"
+DOCS=( AUTHORS ChangeLog NEWS README VERSION )
+
+src_prepare() {
+   eautoreconf
+   default
+}



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

2017-06-30 Thread Michał Górny
commit: a2baa78f261046f963c19a851c6343d9d3f653df
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 11:25:36 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:29:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2baa78f

confutils.eclass: Mark @DEAD for removal

 eclass/confutils.eclass | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/eclass/confutils.eclass b/eclass/confutils.eclass
index cfd1a64d9a0..63a65db867e 100644
--- a/eclass/confutils.eclass
+++ b/eclass/confutils.eclass
@@ -1,6 +1,15 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# @DEAD
+# Michał Górny  (30 Jun 2017)
+# This eclass is no longer useful. Most of it has been superseded by
+# new EAPI features such as REQUIRED_USE and USE dependencies.
+# The remaining functions are very specialized (probably to PHP)
+# and were not used for a long time. The last consumer is now redundant
+# to a new stable version and will be removed soon.
+# The eclass will be removed in 30 days.
+
 # @ECLASS: confutils.eclass
 # @MAINTAINER:
 # No maintainer 



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

2017-06-30 Thread Michał Górny
commit: 89311a4d0309bb7dab5dd2cbeb98c3645b7d0487
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 10:59:28 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89311a4d

app-arch/lzlib: Drop old

 app-arch/lzlib/Manifest |  3 ---
 app-arch/lzlib/lzlib-1.6.ebuild | 37 -
 app-arch/lzlib/lzlib-1.7.ebuild | 37 -
 app-arch/lzlib/lzlib-1.8.ebuild | 36 
 4 files changed, 113 deletions(-)

diff --git a/app-arch/lzlib/Manifest b/app-arch/lzlib/Manifest
index 5e2da51438b..b491460f64a 100644
--- a/app-arch/lzlib/Manifest
+++ b/app-arch/lzlib/Manifest
@@ -1,4 +1 @@
-DIST lzlib-1.6.tar.gz 91734 SHA256 
c187ef5ffa9ffb01abaec667dda4d8c8b378291c68ad094c63bd75ee049e4780 SHA512 
b4ebf3ad0c634593b7162479d43497b2daa1c47b979695988ed278e828fc6f6eac721b9eae238f50b7ee543f8c163fc4b51c6dcd575c37aa59aff8ca3cf903a2
 WHIRLPOOL 
da2b6e1755c7697e3f8c7dbd82c4fc51b3503234498bfa9b860a144e8a53345e40fcd0062ad152742b247c3b03ccfb9d66046dc237250f30a2692efaa18d
-DIST lzlib-1.7.tar.gz 94257 SHA256 
88c919dbb16a8b5409fc8ccec31d3c604551d73e84cec8c964fd639452536214 SHA512 
de91417f301e7c41da39b57a5bbce112d24170008f24c87ddbe7977ad912a982e62aac7ed5c2964abbf1905d6ebb2faf64b29cfba0a2bea40d35aed5eb437728
 WHIRLPOOL 
7ee577edf78a3f79319469eafbecd418917c6b2da29be4b000438481b3e4692dca13902516f0486d260832813404e6920c1e8234c6c65ba7fad8eb88093343c8
-DIST lzlib-1.8.tar.gz 96324 SHA256 
41bfa82c6ee184ed0884437dc4074ad505e64cb747432cefa97976b89045cbad SHA512 
4fe8e28068f67d377bcfb0b7335650acd03565f9c8ac247c87a2b4951b82bae5e8b82d8a537bae84ed13ee09555e7ffbf573a2b3738d9bc86771897981cd549b
 WHIRLPOOL 
31b89aac035f3db09c9a9ae2d3a7d81fb7ff1456305713af6cd41098b845f0321d11730f6763437f8fd4d48f47ea65f4bf8e34a14ec63ca8459d37b7ec987ba5
 DIST lzlib-1.9.tar.gz 96147 SHA256 
2472f8d93830d0952b0c75f67e372d38c8f7c174dde2252369d5b20c87d3ba8e SHA512 
2d36e0b27f544fdab958dbf7d966b41e44c134382ec9f792d94dacf60355eadc25a1cf2b8b7049287995fa5bfc27aec0f3e4253304e3b10813c96b0609408278
 WHIRLPOOL 
3da26a40c4c9bbe932c28615b257b4b99e835975cfc7e6c25e6864e3eb9511353273427a6ac6990aabd51abb15c534200072d45f9ee944f751a0db6ba151bf57

diff --git a/app-arch/lzlib/lzlib-1.6.ebuild b/app-arch/lzlib/lzlib-1.6.ebuild
deleted file mode 100644
index c29fada07ba..000
--- a/app-arch/lzlib/lzlib-1.6.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Library for lzip compression"
-HOMEPAGE="http://www.nongnu.org/lzip/lzlib.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz;
-
-LICENSE="libstdc++" # fancy form of GPL-2+ with library exception
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --enable-shared \
-   --prefix="${EPREFIX}"/usr \
-   --libdir="${EPREFIX}"/usr/$(get_libdir) \
-   CC="$(tc-getCC)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CFLAGS="${CXXFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" LDCONFIG=: install
-   einstalldocs
-
-   # this sucking thing does not support disabling static libs
-   if ! use static-libs; then
-   rm "${ED%/}"/usr/$(get_libdir)/*.a || die
-   fi
-}

diff --git a/app-arch/lzlib/lzlib-1.7.ebuild b/app-arch/lzlib/lzlib-1.7.ebuild
deleted file mode 100644
index c29fada07ba..000
--- a/app-arch/lzlib/lzlib-1.7.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Library for lzip compression"
-HOMEPAGE="http://www.nongnu.org/lzip/lzlib.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz;
-
-LICENSE="libstdc++" # fancy form of GPL-2+ with library exception
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --enable-shared \
-   --prefix="${EPREFIX}"/usr \
-   --libdir="${EPREFIX}"/usr/$(get_libdir) \
-   CC="$(tc-getCC)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CFLAGS="${CXXFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" LDCONFIG=: install
-   einstalldocs
-
-   # this sucking thing does not support disabling static libs
-   if ! use static-libs; then
-   rm "${ED%/}"/usr/$(get_libdir)/*.a || die
-   fi
-}

diff --git a/app-arch/lzlib/lzlib-1.8.ebuild 

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

2017-06-30 Thread Michał Górny
commit: ff35101584a11d331625d6f69404008f510bbad1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 11:01:47 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff351015

app-arch/pdlzip: Bump to 1.8

 app-arch/pdlzip/Manifest  |  1 +
 app-arch/pdlzip/pdlzip-1.8.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/app-arch/pdlzip/Manifest b/app-arch/pdlzip/Manifest
index 6148d43137b..9f514281ec0 100644
--- a/app-arch/pdlzip/Manifest
+++ b/app-arch/pdlzip/Manifest
@@ -1,3 +1,4 @@
 DIST pdlzip-1.5.tar.gz 64443 SHA256 
0c2e354cfe62f34ab2e12ac69f45242d8befcfdbdca645a62f039a66d3e63367 SHA512 
2e900b591c13c1be50f3dcd76d9a46495f90c1335787fedb09e7c7694371d9cd117bc9158748ff8d12a09369ad4d56e2a33026779bae45f7e7d4adbaceb12585
 WHIRLPOOL 
a86aa8d285f6b8d5efc26051c82ee2033c2a49ba296aacd6404914fc2b149a00ad65b3b49609b8bc3d137e2ca14096c390453d1ad5e37e0ccc56531b79a51071
 DIST pdlzip-1.6.tar.gz 64843 SHA256 
6520a45e96487374b4b66997f9855d67bc5dd7beab4ffbca03dff6ae7b40b9ff SHA512 
befdcde0826fb8d9f7809b10ed8f9cb7be34d86b19f426bd18637589d66d70275025d51bcd063c837a5db0ed274664f7170468f087501ab764d0edc96cadde5f
 WHIRLPOOL 
081441d87f512e1f7a86e6178139cf995876c58d33ff943f0fa00bf8f868022a0c0897875c4a0e898b4c48e38c43e7629fdf3bce8f37930c2e0f437633ed3ec5
 DIST pdlzip-1.7.tar.gz 58047 SHA256 
b318c6884f2a44ce45d9d3690c70215403e6a5bb6dca77a74254dd4f8577a3f5 SHA512 
65fa8ef2ef0eccabf05f220a8d1822579b42cf1041b68eb2be36569c6be8a7de11def6133ef1b93fce9608c78e5ef9d547015ef2b0260660b233f3376c844fbc
 WHIRLPOOL 
d20bd22dc109dce5a2f7886df0eae30d742e82bde913e28626ad45c226c8e83cbccd1ae1fef72a6c49bc2fd2ca5a4c17c6433b90ab56acc9045a3fee0ac5cd55
+DIST pdlzip-1.8.tar.gz 60564 SHA256 
05af84a34aaac66c96d34e4935ecfde3717b535d0980211981ba4c539f92cee5 SHA512 
ecab8500105754499448c0cc481917404ce5b9dcfb6ba66c5c51fbc8a6189b109d025f38bc7c497aa2f602e7722f302d6b05e4ee37c5ec8f97cdf253c128ad9e
 WHIRLPOOL 
150e7627525cbfa021ea7c42f04557917b95450f5e42827e021df293622b09c55e6984c6d7410713f41572124a3817e7d52cb47e7ffec8e9a22d0321cddc45f1

diff --git a/app-arch/pdlzip/pdlzip-1.8.ebuild 
b/app-arch/pdlzip/pdlzip-1.8.ebuild
new file mode 100644
index 000..160eee1561e
--- /dev/null
+++ b/app-arch/pdlzip/pdlzip-1.8.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Public-domain version of lzip compressor"
+HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html;
+SRC_URI="http://download.savannah.gnu.org/releases/lzip/pdlzip/${P}.tar.gz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
+IUSE=""
+
+src_configure() {
+   local myconf=(
+   --prefix="${EPREFIX}"/usr
+   CC="$(tc-getCC)"
+   CFLAGS="${CFLAGS}"
+   CPPFLAGS="${CPPFLAGS}"
+   LDFLAGS="${LDFLAGS}"
+   )
+
+   # not autotools-based
+   ./configure "${myconf[@]}" || die
+}



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

2017-06-30 Thread Michał Górny
commit: a3b242f50bba38fc238fdba40e5ddb47d4bbaba0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 11:10:42 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3b242f5

app-arch/zpaq: Bump to 7.15

 app-arch/zpaq/Manifest |  1 +
 app-arch/zpaq/zpaq-7.15.ebuild | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/app-arch/zpaq/Manifest b/app-arch/zpaq/Manifest
index f882cb3e0a6..1a551e05314 100644
--- a/app-arch/zpaq/Manifest
+++ b/app-arch/zpaq/Manifest
@@ -1 +1,2 @@
 DIST zpaq713.zip 829863 SHA256 
9120cf4fb1afdecea3ac4f690d7b0577f7cb004ca6b152856edd8ac444f0d919 SHA512 
93ef758e9c6c13f4cc89b1969fce3630132c941ee5076959c3a7988b28e12530346c5b489837af9187937be35129bde0c9cf0e8aa8bf326799c893ef9fc74f5f
 WHIRLPOOL 
494c3b9a6e6e0f50cecaf2630bcb4c9edd2433c128c13a1fc7a31d1695cbfbfadeda68f7fa2bd0023a0854d8548221ee52a1c218755b4a5a10b695db6b5a142d
+DIST zpaq715.zip 1000646 SHA256 
e85ec2529eb0ba22ceaeabd461e55357ef099b80f61c14f377b429ea3d49d418 SHA512 
4cddcc04dff5e9dceb7138cf9e82b718b696048368ff494339f877d93e4423ed7959c0cfb2e30ba7dcbcdd6bbd59fa1021ceaca6d51e3180d8034b7a3997c265
 WHIRLPOOL 
2d87e0e710ea3e19a599e21a17e69a0fa4441211a493be5ca114d5d69a063bc929606b687dc156ea04d35d8bb8df76dcc33c9b77940e0271a4a4f513bae5113a

diff --git a/app-arch/zpaq/zpaq-7.15.ebuild b/app-arch/zpaq/zpaq-7.15.ebuild
new file mode 100644
index 000..e4c812dd9a5
--- /dev/null
+++ b/app-arch/zpaq/zpaq-7.15.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic pax-utils toolchain-funcs
+
+MY_P=${PN}${PV/./}
+DESCRIPTION="Journaling incremental deduplicating archiving compressor"
+HOMEPAGE="http://mattmahoney.net/dc/zpaq.html;
+SRC_URI="http://mattmahoney.net/dc/${MY_P}.zip;
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug +jit"
+
+# perl for pod2man
+DEPEND="
+   app-arch/unzip
+   dev-lang/perl"
+
+S=${WORKDIR}
+
+src_compile() {
+   use debug || append-cppflags -DNDEBUG
+   use jit || append-cppflags -DNOJIT
+   emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}"
+}
+
+src_test() {
+   use jit && pax-mark m zpaq
+   default
+}
+
+src_install() {
+   emake install PREFIX="${ED%/}"/usr
+   use jit && pax-mark m "${ED%/}"/usr/bin/zpaq
+   einstalldocs
+}
+
+pkg_postinst() {
+   if ! has_version app-arch/zpaq-extras; then
+   elog "You may also want to install app-arch/zpaq-extras package 
which provides"
+   elog "few additional configs and preprocessors for use with 
zpaq."
+   fi
+}



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

2017-06-30 Thread Michał Górny
commit: 0885dae54e4b380f964ba382218fa1be2eeb07b7
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 10:59:13 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0885dae5

app-arch/plzip: Drop old

 app-arch/plzip/Manifest |  3 ---
 app-arch/plzip/plzip-1.3.ebuild | 28 
 app-arch/plzip/plzip-1.4.ebuild | 28 
 app-arch/plzip/plzip-1.5.ebuild | 28 
 4 files changed, 87 deletions(-)

diff --git a/app-arch/plzip/Manifest b/app-arch/plzip/Manifest
index 6d0616a5f82..d123ecd9279 100644
--- a/app-arch/plzip/Manifest
+++ b/app-arch/plzip/Manifest
@@ -1,4 +1 @@
-DIST plzip-1.3.tar.gz 60027 SHA256 
45f631ae849cb1372317432478c815725ba00ae67fd7df9fb97df994720234a7 SHA512 
7f32978b1c68d546df8c2a60f0dec3594981f08710216ec79d6cbe6fbc4163c5ab54781165689fd30b512159fc02a00a62d588b13166b53ccf94a544f1586173
 WHIRLPOOL 
e943978d600f4eac00c390cdf2168b1cc97a0e888c4be3f1f76814edbbca81c5d1ff2792249d923dd4c4d2f20f7f79dff3b436e78a6f10827583a572b94e428a
-DIST plzip-1.4.tar.gz 60291 SHA256 
2a152ee429495cb96c22a51b618d1d19882db3e24aff79329d9c755a2a2f67bb SHA512 
f093a121dd94622c666b9bf77ee88f1b6b32647331829b33b49f3e59b7a6c48a700b1f0091b691cd37a67f0a65477d2cc285d95b44db0d262fec5274c53a1755
 WHIRLPOOL 
cdcc3b55b50aaab6f6c66db24d5cfa536bc32475f8af91f435b073c3fec7e3446592e304436e13a09b24367f68dfb515705d545eb019f0b982f14c31eb1497a4
-DIST plzip-1.5.tar.gz 62874 SHA256 
cd401683c2c57ecf170c99a873e41e9e5fee0e9680341646e31032e31489cc8a SHA512 
af3f7b6cb249686286d90683c3040591e0bc362dc4c10c054836de179e52755539650963c06a21f76f3db418ed08606c754af73af1d5baf081f434ddcadd01c5
 WHIRLPOOL 
d344dc89b8f3f0afcc2b02f740b83f47717a563e2cd2e88bd73deb0822ee4f1954b0ed0f641bb361fd7a55a8832419797e0cf6b6a533525b3fe026189df1a52b
 DIST plzip-1.6.tar.gz 66214 SHA256 
5d1d79fe4a1e41aa05e3926d067243efbaa607ed238036152f867662b7d14c7c SHA512 
14f794e290eb58bcdf1fc5699c08c36f57473e36eeb3920dff519741c4265883f8ee348095a9315562812574c3f5ece7bd7ef4a11fbd955fe2ee54e361900f77
 WHIRLPOOL 
4efbf33363e489dd2ce7c3dd51e3a96b6137eb823506d0971e2fafcf143cc65733c31234e49f4efbb166b4f073e702e189c46fdc9f4111f2c6193bc84a3a3da5

diff --git a/app-arch/plzip/plzip-1.3.ebuild b/app-arch/plzip/plzip-1.3.ebuild
deleted file mode 100644
index 7e02d36b36d..000
--- a/app-arch/plzip/plzip-1.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Parallel lzip compressor"
-HOMEPAGE="http://www.nongnu.org/lzip/plzip.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-arch/lzlib:0="
-DEPEND=${RDEPEND}
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CXX="$(tc-getCXX)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CXXFLAGS="${CXXFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}

diff --git a/app-arch/plzip/plzip-1.4.ebuild b/app-arch/plzip/plzip-1.4.ebuild
deleted file mode 100644
index 7e02d36b36d..000
--- a/app-arch/plzip/plzip-1.4.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Parallel lzip compressor"
-HOMEPAGE="http://www.nongnu.org/lzip/plzip.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-arch/lzlib:0="
-DEPEND=${RDEPEND}
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CXX="$(tc-getCXX)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CXXFLAGS="${CXXFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}

diff --git a/app-arch/plzip/plzip-1.5.ebuild b/app-arch/plzip/plzip-1.5.ebuild
deleted file mode 100644
index 1da69f0d657..000
--- a/app-arch/plzip/plzip-1.5.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Parallel lzip compressor"
-HOMEPAGE="http://www.nongnu.org/lzip/plzip.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="app-arch/lzlib:0="
-DEPEND=${RDEPEND}
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CXX="$(tc-getCXX)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   

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

2017-06-30 Thread Michał Górny
commit: 0db024ece7702962c5c959b313416d486003403f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 10:58:41 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db024ec

app-arch/plzip: Bump to 1.6

 app-arch/plzip/Manifest |  1 +
 app-arch/plzip/plzip-1.6.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/app-arch/plzip/Manifest b/app-arch/plzip/Manifest
index 2c3b62a9f9a..6d0616a5f82 100644
--- a/app-arch/plzip/Manifest
+++ b/app-arch/plzip/Manifest
@@ -1,3 +1,4 @@
 DIST plzip-1.3.tar.gz 60027 SHA256 
45f631ae849cb1372317432478c815725ba00ae67fd7df9fb97df994720234a7 SHA512 
7f32978b1c68d546df8c2a60f0dec3594981f08710216ec79d6cbe6fbc4163c5ab54781165689fd30b512159fc02a00a62d588b13166b53ccf94a544f1586173
 WHIRLPOOL 
e943978d600f4eac00c390cdf2168b1cc97a0e888c4be3f1f76814edbbca81c5d1ff2792249d923dd4c4d2f20f7f79dff3b436e78a6f10827583a572b94e428a
 DIST plzip-1.4.tar.gz 60291 SHA256 
2a152ee429495cb96c22a51b618d1d19882db3e24aff79329d9c755a2a2f67bb SHA512 
f093a121dd94622c666b9bf77ee88f1b6b32647331829b33b49f3e59b7a6c48a700b1f0091b691cd37a67f0a65477d2cc285d95b44db0d262fec5274c53a1755
 WHIRLPOOL 
cdcc3b55b50aaab6f6c66db24d5cfa536bc32475f8af91f435b073c3fec7e3446592e304436e13a09b24367f68dfb515705d545eb019f0b982f14c31eb1497a4
 DIST plzip-1.5.tar.gz 62874 SHA256 
cd401683c2c57ecf170c99a873e41e9e5fee0e9680341646e31032e31489cc8a SHA512 
af3f7b6cb249686286d90683c3040591e0bc362dc4c10c054836de179e52755539650963c06a21f76f3db418ed08606c754af73af1d5baf081f434ddcadd01c5
 WHIRLPOOL 
d344dc89b8f3f0afcc2b02f740b83f47717a563e2cd2e88bd73deb0822ee4f1954b0ed0f641bb361fd7a55a8832419797e0cf6b6a533525b3fe026189df1a52b
+DIST plzip-1.6.tar.gz 66214 SHA256 
5d1d79fe4a1e41aa05e3926d067243efbaa607ed238036152f867662b7d14c7c SHA512 
14f794e290eb58bcdf1fc5699c08c36f57473e36eeb3920dff519741c4265883f8ee348095a9315562812574c3f5ece7bd7ef4a11fbd955fe2ee54e361900f77
 WHIRLPOOL 
4efbf33363e489dd2ce7c3dd51e3a96b6137eb823506d0971e2fafcf143cc65733c31234e49f4efbb166b4f073e702e189c46fdc9f4111f2c6193bc84a3a3da5

diff --git a/app-arch/plzip/plzip-1.6.ebuild b/app-arch/plzip/plzip-1.6.ebuild
new file mode 100644
index 000..1d8e4b07cda
--- /dev/null
+++ b/app-arch/plzip/plzip-1.6.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Parallel lzip compressor"
+HOMEPAGE="http://www.nongnu.org/lzip/plzip.html;
+SRC_URI="http://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-arch/lzlib:0="
+DEPEND=${RDEPEND}
+
+src_configure() {
+   local myconf=(
+   --prefix="${EPREFIX}"/usr
+   CXX="$(tc-getCXX)"
+   CPPFLAGS="${CPPFLAGS}"
+   CXXFLAGS="${CXXFLAGS}"
+   LDFLAGS="${LDFLAGS}"
+   )
+
+   # not autotools-based
+   ./configure "${myconf[@]}" || die
+}



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

2017-06-30 Thread Michał Górny
commit: 53e5da9e439d6b37088edde0bdce78ee46ff2c1d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 11:01:59 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53e5da9e

app-arch/pdlzip: Drop old

 app-arch/pdlzip/Manifest  |  3 ---
 app-arch/pdlzip/pdlzip-1.5.ebuild | 25 -
 app-arch/pdlzip/pdlzip-1.6.ebuild | 25 -
 app-arch/pdlzip/pdlzip-1.7.ebuild | 25 -
 4 files changed, 78 deletions(-)

diff --git a/app-arch/pdlzip/Manifest b/app-arch/pdlzip/Manifest
index 9f514281ec0..4f57cb24ddc 100644
--- a/app-arch/pdlzip/Manifest
+++ b/app-arch/pdlzip/Manifest
@@ -1,4 +1 @@
-DIST pdlzip-1.5.tar.gz 64443 SHA256 
0c2e354cfe62f34ab2e12ac69f45242d8befcfdbdca645a62f039a66d3e63367 SHA512 
2e900b591c13c1be50f3dcd76d9a46495f90c1335787fedb09e7c7694371d9cd117bc9158748ff8d12a09369ad4d56e2a33026779bae45f7e7d4adbaceb12585
 WHIRLPOOL 
a86aa8d285f6b8d5efc26051c82ee2033c2a49ba296aacd6404914fc2b149a00ad65b3b49609b8bc3d137e2ca14096c390453d1ad5e37e0ccc56531b79a51071
-DIST pdlzip-1.6.tar.gz 64843 SHA256 
6520a45e96487374b4b66997f9855d67bc5dd7beab4ffbca03dff6ae7b40b9ff SHA512 
befdcde0826fb8d9f7809b10ed8f9cb7be34d86b19f426bd18637589d66d70275025d51bcd063c837a5db0ed274664f7170468f087501ab764d0edc96cadde5f
 WHIRLPOOL 
081441d87f512e1f7a86e6178139cf995876c58d33ff943f0fa00bf8f868022a0c0897875c4a0e898b4c48e38c43e7629fdf3bce8f37930c2e0f437633ed3ec5
-DIST pdlzip-1.7.tar.gz 58047 SHA256 
b318c6884f2a44ce45d9d3690c70215403e6a5bb6dca77a74254dd4f8577a3f5 SHA512 
65fa8ef2ef0eccabf05f220a8d1822579b42cf1041b68eb2be36569c6be8a7de11def6133ef1b93fce9608c78e5ef9d547015ef2b0260660b233f3376c844fbc
 WHIRLPOOL 
d20bd22dc109dce5a2f7886df0eae30d742e82bde913e28626ad45c226c8e83cbccd1ae1fef72a6c49bc2fd2ca5a4c17c6433b90ab56acc9045a3fee0ac5cd55
 DIST pdlzip-1.8.tar.gz 60564 SHA256 
05af84a34aaac66c96d34e4935ecfde3717b535d0980211981ba4c539f92cee5 SHA512 
ecab8500105754499448c0cc481917404ce5b9dcfb6ba66c5c51fbc8a6189b109d025f38bc7c497aa2f602e7722f302d6b05e4ee37c5ec8f97cdf253c128ad9e
 WHIRLPOOL 
150e7627525cbfa021ea7c42f04557917b95450f5e42827e021df293622b09c55e6984c6d7410713f41572124a3817e7d52cb47e7ffec8e9a22d0321cddc45f1

diff --git a/app-arch/pdlzip/pdlzip-1.5.ebuild 
b/app-arch/pdlzip/pdlzip-1.5.ebuild
deleted file mode 100644
index 946911d3c5f..000
--- a/app-arch/pdlzip/pdlzip-1.5.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit toolchain-funcs
-
-DESCRIPTION="Public-domain version of lzip compressor"
-HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
-IUSE=""
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CC="$(tc-getCC)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CFLAGS="${CFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}

diff --git a/app-arch/pdlzip/pdlzip-1.6.ebuild 
b/app-arch/pdlzip/pdlzip-1.6.ebuild
deleted file mode 100644
index 3d4ea883489..000
--- a/app-arch/pdlzip/pdlzip-1.6.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Public-domain version of lzip compressor"
-HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/pdlzip/${P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
-IUSE=""
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CC="$(tc-getCC)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CFLAGS="${CFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}

diff --git a/app-arch/pdlzip/pdlzip-1.7.ebuild 
b/app-arch/pdlzip/pdlzip-1.7.ebuild
deleted file mode 100644
index 3d4ea883489..000
--- a/app-arch/pdlzip/pdlzip-1.7.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="Public-domain version of lzip compressor"
-HOMEPAGE="http://www.nongnu.org/lzip/pdlzip.html;
-SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/pdlzip/${P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~mips ~x86 ~x86-fbsd"
-IUSE=""
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CC="$(tc-getCC)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CFLAGS="${CFLAGS}" \

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

2017-06-30 Thread Michał Górny
commit: c1485266139691fa750135d45c37937d1129b446
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 30 10:52:00 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 30 11:19:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1485266

app-arch/lzlib: Bump to 1.9, improve ebuild

 app-arch/lzlib/Manifest |  1 +
 app-arch/lzlib/lzlib-1.9.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/app-arch/lzlib/Manifest b/app-arch/lzlib/Manifest
index 159899a780f..5e2da51438b 100644
--- a/app-arch/lzlib/Manifest
+++ b/app-arch/lzlib/Manifest
@@ -1,3 +1,4 @@
 DIST lzlib-1.6.tar.gz 91734 SHA256 
c187ef5ffa9ffb01abaec667dda4d8c8b378291c68ad094c63bd75ee049e4780 SHA512 
b4ebf3ad0c634593b7162479d43497b2daa1c47b979695988ed278e828fc6f6eac721b9eae238f50b7ee543f8c163fc4b51c6dcd575c37aa59aff8ca3cf903a2
 WHIRLPOOL 
da2b6e1755c7697e3f8c7dbd82c4fc51b3503234498bfa9b860a144e8a53345e40fcd0062ad152742b247c3b03ccfb9d66046dc237250f30a2692efaa18d
 DIST lzlib-1.7.tar.gz 94257 SHA256 
88c919dbb16a8b5409fc8ccec31d3c604551d73e84cec8c964fd639452536214 SHA512 
de91417f301e7c41da39b57a5bbce112d24170008f24c87ddbe7977ad912a982e62aac7ed5c2964abbf1905d6ebb2faf64b29cfba0a2bea40d35aed5eb437728
 WHIRLPOOL 
7ee577edf78a3f79319469eafbecd418917c6b2da29be4b000438481b3e4692dca13902516f0486d260832813404e6920c1e8234c6c65ba7fad8eb88093343c8
 DIST lzlib-1.8.tar.gz 96324 SHA256 
41bfa82c6ee184ed0884437dc4074ad505e64cb747432cefa97976b89045cbad SHA512 
4fe8e28068f67d377bcfb0b7335650acd03565f9c8ac247c87a2b4951b82bae5e8b82d8a537bae84ed13ee09555e7ffbf573a2b3738d9bc86771897981cd549b
 WHIRLPOOL 
31b89aac035f3db09c9a9ae2d3a7d81fb7ff1456305713af6cd41098b845f0321d11730f6763437f8fd4d48f47ea65f4bf8e34a14ec63ca8459d37b7ec987ba5
+DIST lzlib-1.9.tar.gz 96147 SHA256 
2472f8d93830d0952b0c75f67e372d38c8f7c174dde2252369d5b20c87d3ba8e SHA512 
2d36e0b27f544fdab958dbf7d966b41e44c134382ec9f792d94dacf60355eadc25a1cf2b8b7049287995fa5bfc27aec0f3e4253304e3b10813c96b0609408278
 WHIRLPOOL 
3da26a40c4c9bbe932c28615b257b4b99e835975cfc7e6c25e6864e3eb9511353273427a6ac6990aabd51abb15c534200072d45f9ee944f751a0db6ba151bf57

diff --git a/app-arch/lzlib/lzlib-1.9.ebuild b/app-arch/lzlib/lzlib-1.9.ebuild
new file mode 100644
index 000..72bec4c5725
--- /dev/null
+++ b/app-arch/lzlib/lzlib-1.9.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Library for lzip compression"
+HOMEPAGE="http://www.nongnu.org/lzip/lzlib.html;
+SRC_URI="http://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz;
+
+LICENSE="libstdc++" # fancy form of GPL-2+ with library exception
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_configure() {
+   local myconf=(
+   --enable-shared
+   --disable-static
+   --disable-ldconfig
+   --prefix="${EPREFIX}"/usr
+   --libdir='$(prefix)'/$(get_libdir)
+   CC="$(tc-getCC)"
+   CFLAGS="${CFLAGS}"
+   CPPFLAGS="${CPPFLAGS}"
+   LDFLAGS="${LDFLAGS}"
+   )
+
+   # not autotools-based
+   ./configure "${myconf[@]}" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/coffee-script-source/

2017-06-30 Thread Alexis Ballier
commit: 222d90a7ffbc1c99f367d72362f6ec364b1faff3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 10:52:26 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:17:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=222d90a7

dev-ruby/coffee-script-source: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild 
b/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild
index 89789047a67..bcf6a93a99c 100644
--- a/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild
+++ b/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild
@@ -14,6 +14,6 @@ HOMEPAGE="http://coffeescript.org/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x64-macos 
~x86-solaris"
 
 IUSE=""



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

2017-06-30 Thread Alexis Ballier
commit: ebef04cad9c4605ae4d949ec9202c00eb1941c88
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:27:00 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebef04ca

dev-lang/php: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-lang/php/php-5.6.30-r2.ebuild | 2 +-
 dev-lang/php/php-7.1.6.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/php/php-5.6.30-r2.ebuild 
b/dev-lang/php/php-5.6.30-r2.ebuild
index bcd67542c27..a0a35c64a42 100644
--- a/dev-lang/php/php-5.6.30-r2.ebuild
+++ b/dev-lang/php/php-5.6.30-r2.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+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"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2"

diff --git a/dev-lang/php/php-7.1.6.ebuild b/dev-lang/php/php-7.1.6.ebuild
index 4af25fe80fe..60720c867e8 100644
--- a/dev-lang/php/php-7.1.6.ebuild
+++ b/dev-lang/php/php-7.1.6.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+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"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2017-06-30 Thread Alexis Ballier
commit: 223ae9b64e89b08c49996b61f54bae36dfbcbaef
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:45:54 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=223ae9b6

dev-ruby/bluecloth: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild 
b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index aa4e333b4a2..32e49f21ca1 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://www.deveiate.org/projects/BlueCloth;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="test"
 
 DEPEND+=" doc? ( dev-lang/perl )"



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

2017-06-30 Thread Alexis Ballier
commit: 9ba0f9fee1ed78970409711944f1a363affd5b64
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:43:22 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba0f9fe

dev-ruby/tidy-ext: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/tidy-ext/tidy-ext-0.1.14-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/tidy-ext/tidy-ext-0.1.14-r3.ebuild 
b/dev-ruby/tidy-ext/tidy-ext-0.1.14-r3.ebuild
index 610e8d0549c..228e3710d01 100644
--- a/dev-ruby/tidy-ext/tidy-ext-0.1.14-r3.ebuild
+++ b/dev-ruby/tidy-ext/tidy-ext-0.1.14-r3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/carld/tidy;
 
 LICENSE="HTML-Tidy"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE=""
 
 RUBY_PATCHES=( 11CVE-2015-5522.patch )



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

2017-06-30 Thread Alexis Ballier
commit: dcc499dedd8c33226a393a8ec2705d8e610e4f0b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:26:02 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc499de

dev-ruby/sinatra: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/sinatra/sinatra-1.4.8.ebuild 
b/dev-ruby/sinatra/sinatra-1.4.8.ebuild
index 7e01de65b87..81a2a696fb0 100644
--- a/dev-ruby/sinatra/sinatra-1.4.8.ebuild
+++ b/dev-ruby/sinatra/sinatra-1.4.8.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="http://www.sinatrarb.com/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend "=dev-ruby/rack-1*:* >=dev-ruby/rack-1.5:*



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

2017-06-30 Thread Alexis Ballier
commit: 7bda5738bc57af4be5aa9cef26f52d64d7844269
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:36:14 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bda5738

dev-ruby/rack-protection: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild 
b/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild
index 5fad2f28015..0dc8fa0058b 100644
--- a/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild
+++ b/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/rkh/rack-protection;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1)"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/rack-test )"



[gentoo-commits] repo/gentoo:master commit in: virtual/ruby-ssl/

2017-06-30 Thread Alexis Ballier
commit: e24ec53edf4699421232515a85ac00f84ab688c9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:05:31 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e24ec53e

virtual/ruby-ssl: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 virtual/ruby-ssl/ruby-ssl-9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/ruby-ssl/ruby-ssl-9.ebuild 
b/virtual/ruby-ssl/ruby-ssl-9.ebuild
index 54c6075a8f6..2fbd2c315f3 100644
--- a/virtual/ruby-ssl/ruby-ssl-9.ebuild
+++ b/virtual/ruby-ssl/ruby-ssl-9.ebuild
@@ -8,7 +8,7 @@ inherit ruby-ng
 
 DESCRIPTION="Virtual ebuild for the Ruby OpenSSL bindings"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~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"
+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"
 
 RDEPEND="
ruby_targets_ruby21? ( dev-lang/ruby:2.1[ssl] )



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

2017-06-30 Thread Alexis Ballier
commit: 2874e7033cf730b419ea8d487c92cc89ef452d6f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 10:52:39 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:17:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2874e703

dev-ruby/execjs: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/execjs/execjs-2.7.0.ebuild 
b/dev-ruby/execjs/execjs-2.7.0.ebuild
index 689b98c1ad9..738e318a26d 100644
--- a/dev-ruby/execjs/execjs-2.7.0.ebuild
+++ b/dev-ruby/execjs/execjs-2.7.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos"
 
 IUSE="test"
 



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

2017-06-30 Thread Alexis Ballier
commit: 5c83712a73a65b306462bd3da705ba18162cdc86
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:15:59 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c83712a

dev-ruby/erubis: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/erubis/erubis-2.7.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/erubis/erubis-2.7.0-r2.ebuild 
b/dev-ruby/erubis/erubis-2.7.0-r2.ebuild
index 0dd7787016c..03013316ae4 100644
--- a/dev-ruby/erubis/erubis-2.7.0-r2.ebuild
+++ b/dev-ruby/erubis/erubis-2.7.0-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://www.kuwata-lab.com/erubis/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 # 
http://rubyforge.org/tracker/index.php?func=detail=29484_id=1320=5201



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

2017-06-30 Thread Alexis Ballier
commit: b4cad444e70fa1d8b908222cb308dfd9db15219c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:14:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4cad444

dev-ruby/abstract: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/abstract/abstract-1.0.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/abstract/abstract-1.0.0-r3.ebuild 
b/dev-ruby/abstract/abstract-1.0.0-r3.ebuild
index 2f2a6c8d359..854f264cc4a 100644
--- a/dev-ruby/abstract/abstract-1.0.0-r3.ebuild
+++ b/dev-ruby/abstract/abstract-1.0.0-r3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://rubygems.org/gems/abstract;
 
 LICENSE="Ruby"
 SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 each_ruby_test() {



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

2017-06-30 Thread Alexis Ballier
commit: e97c41d58970aa6b65e1c02224e381189ca82c19
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:30:42 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e97c41d5

dev-ruby/rack: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/rack/rack-1.6.7.ebuild b/dev-ruby/rack/rack-1.6.7.ebuild
index bce1580b6d5..c6b0b9e34de 100644
--- a/dev-ruby/rack/rack-1.6.7.ebuild
+++ b/dev-ruby/rack/rack-1.6.7.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://rack.github.com/;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RUBY_PATCHES=( ${PN}-1.2.1-gentoo.patch ${PN}-1.6-rewindable-ruby23.patch )



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

2017-06-30 Thread Alexis Ballier
commit: 6baa2fc441e4187e232d015a97d4ebd6810bb19d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:28:42 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6baa2fc4

dev-ruby/bacon: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/bacon/bacon-1.2.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/bacon/bacon-1.2.0-r2.ebuild 
b/dev-ruby/bacon/bacon-1.2.0-r2.ebuild
index 51e0acb093c..056350ff34a 100644
--- a/dev-ruby/bacon/bacon-1.2.0-r2.ebuild
+++ b/dev-ruby/bacon/bacon-1.2.0-r2.ebuild
@@ -14,5 +14,5 @@ HOMEPAGE="http://chneukirchen.org/repos/bacon;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""



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

2017-06-30 Thread Alexis Ballier
commit: 5f493b2a834bb1aa40b517a764e54a008f620ecd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 10:52:05 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f493b2a

dev-ruby/coffee-script: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/coffee-script/coffee-script-2.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild 
b/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild
index 4197df14468..7db935ed501 100644
--- a/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild
+++ b/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rails/ruby-coffee-script 
https://github.com/rails/c
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x64-macos"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86 ~amd64-linux ~x64-macos"
 
 IUSE=""
 



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

2017-06-30 Thread Alexis Ballier
commit: 06151875dbb4d0a6c03390df91d97388ff5e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:40:38 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06151875

dev-ruby/tilt: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/tilt/tilt-2.0.5.ebuild b/dev-ruby/tilt/tilt-2.0.5.ebuild
index 5850b064f1f..0306c6ae65e 100644
--- a/dev-ruby/tilt/tilt-2.0.5.ebuild
+++ b/dev-ruby/tilt/tilt-2.0.5.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rtomayko/tilt;
 
 LICENSE="MIT"
 SLOT="2"
-KEYWORDS="amd64 arm ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 # Block on some of the potential test dependencies. These dependencies



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

2017-06-30 Thread Alexis Ballier
commit: f16507e87bee420185371d10237215ab4ab86fd4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 30 08:17:59 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 30 11:16:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16507e8

dev-ruby/rack-test: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/rack-test/rack-test-0.6.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rack-test/rack-test-0.6.3.ebuild 
b/dev-ruby/rack-test/rack-test-0.6.3.ebuild
index be105cc8850..52a80be0b3f 100644
--- a/dev-ruby/rack-test/rack-test-0.6.3.ebuild
+++ b/dev-ruby/rack-test/rack-test-0.6.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/brynary/rack-test;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/rack-1.0:*"



  1   2   >