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

2018-06-11 Thread Jason Zaman
commit: 3a42fbdae17de388d96fed660e15686b19473362
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Jun 12 06:52:14 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Jun 12 06:52:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a42fbda

net-libs/grpc: fix building with gcc8

Closes: https://bugs.gentoo.org/656166
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../grpc/files/0009-grpc-1.12.1-gcc8-fixes.patch   | 53 ++
 net-libs/grpc/grpc-1.12.1.ebuild   |  1 +
 2 files changed, 54 insertions(+)

diff --git a/net-libs/grpc/files/0009-grpc-1.12.1-gcc8-fixes.patch 
b/net-libs/grpc/files/0009-grpc-1.12.1-gcc8-fixes.patch
new file mode 100644
index 000..a9168f165e1
--- /dev/null
+++ b/net-libs/grpc/files/0009-grpc-1.12.1-gcc8-fixes.patch
@@ -0,0 +1,53 @@
+--- a/tmp/alts_transport_security.cc.ORIG  2018-04-13 20:08:11.0 
+0200
 b/src/core/tsi/alts_transport_security.cc  2018-05-20 16:54:49.995787548 
+0200
+@@ -45,7 +45,7 @@
+ }
+ 
+ void grpc_tsi_alts_init() {
+-  memset(&g_alts_resource, 0, sizeof(alts_shared_resource));
++  memset((void*)&g_alts_resource, 0, sizeof(alts_shared_resource));
+   gpr_mu_init(&g_alts_resource.mu);
+   gpr_cv_init(&g_alts_resource.cv);
+ }
+--- a/tmp/client_channel.cc.ORIG   2018-04-13 20:08:11.0 +0200
 b/src/core/ext/filters/client_channel/client_channel.cc2018-05-20 
17:07:20.604746186 +0200
+@@ -416,7 +416,7 @@
+ grpc_uri* uri = grpc_uri_parse(server_uri, true);
+ GPR_ASSERT(uri->path[0] != '\0');
+ service_config_parsing_state parsing_state;
+-memset(&parsing_state, 0, sizeof(parsing_state));
++memset((void*)&parsing_state, 0, sizeof(parsing_state));
+ parsing_state.server_name =
+ uri->path[0] == '/' ? uri->path + 1 : uri->path;
+ service_config->ParseGlobalParams(parse_retry_throttle_params,
+--- a/tmp/channel.cc.ORIG  2018-04-13 20:08:11.0 +0200
 b/src/core/lib/surface/channel.cc  2018-05-20 16:58:01.632776988 +0200
+@@ -103,7 +103,7 @@
+ return channel;
+   }
+ 
+-  memset(channel, 0, sizeof(*channel));
++  memset((void*)channel, 0, sizeof(*channel));
+   channel->target = target;
+   channel->is_client = grpc_channel_stack_type_is_client(channel_stack_type);
+   size_t channel_tracer_max_nodes = 0;  // default to off
+@@ -280,7 +280,7 @@
+   }
+ 
+   grpc_call_create_args args;
+-  memset(&args, 0, sizeof(args));
++  memset((void*)&args, 0, sizeof(args));
+   args.channel = channel;
+   args.parent = parent_call;
+   args.propagation_mask = propagation_mask;
+--- a/tmp/flow_control.cc.ORIG 2018-04-13 20:08:11.0 +0200
 b/src/core/ext/transport/chttp2/transport/flow_control.cc  2018-05-20 
17:09:47.055738116 +0200
+@@ -187,7 +187,7 @@
+ uint32_t TransportFlowControl::MaybeSendUpdate(bool writing_anyway) {
+   FlowControlTrace trace("t updt sent", this, nullptr);
+   const uint32_t target_announced_window =
+-  static_cast(target_window());
++  static_cast(target_window());
+   if ((writing_anyway || announced_window_ <= target_announced_window / 2) &&
+   announced_window_ != target_announced_window) {
+ const uint32_t announce = static_cast GPR_CLAMP(

diff --git a/net-libs/grpc/grpc-1.12.1.ebuild b/net-libs/grpc/grpc-1.12.1.ebuild
index 774c0518b1d..e57c672f483 100644
--- a/net-libs/grpc/grpc-1.12.1.ebuild
+++ b/net-libs/grpc/grpc-1.12.1.ebuild
@@ -62,6 +62,7 @@ PATCHES=(
"${FILESDIR}/0006-grpc-1.12.1-allow-system-openssl.patch"
"${FILESDIR}/0007-grpc-1.12.1-allow-system-zlib.patch"
"${FILESDIR}/0008-grpc-1.12.1-allow-system-cares.patch"
+   "${FILESDIR}/0009-grpc-1.12.1-gcc8-fixes.patch"
 )
 
 src_prepare() {



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

2018-06-11 Thread Jason Zaman
commit: 5a5cce25d69125ae024db31aa2b8f37689876164
Author: Georgy Yakovlev  sysdump  net>
AuthorDate: Mon Jun 11 08:33:19 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Jun 12 06:33:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5cce25

net-libs/grpc: bump to 1.12.1, add python and more

Add python useflag and module installation.
Add tools useflag and grpc_tools installation.
Add google-perftools dep.
Add systemtap useflag to fix automagic dep.
Add doc useflag
Add examples useflag
Add myself to metadata, as discussed with perfinion

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

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-libs/grpc/Manifest |   2 +
 .../0006-grpc-1.12.1-allow-system-openssl.patch|  65 +
 .../files/0007-grpc-1.12.1-allow-system-zlib.patch |  52 +++
 .../0008-grpc-1.12.1-allow-system-cares.patch  |  52 +++
 net-libs/grpc/grpc-1.12.1.ebuild   | 159 +
 net-libs/grpc/metadata.xml |  11 ++
 6 files changed, 341 insertions(+)

diff --git a/net-libs/grpc/Manifest b/net-libs/grpc/Manifest
index 99b7d82abd1..cd8bbcbf7ef 100644
--- a/net-libs/grpc/Manifest
+++ b/net-libs/grpc/Manifest
@@ -1 +1,3 @@
 DIST grpc-1.12.0.tar.gz 13692310 BLAKE2B 
86b9063416140453718c51df4f238bb3d5ac8549ece065c95d3c461c069358badec5a9a77aef694cd11a09f53e060f9ea51f3b40d9a2424837605c4899a21c57
 SHA512 
68a8c261ea570790974769d6c0ca8138cf4242b79e9ff74a11b10d35a27f98ff24c03f3d05932ac46811c0ba7d1a094388ae8dbeb495fc8e723ad74695994d49
+DIST grpc-1.12.1.tar.gz 13692045 BLAKE2B 
d35706b553917d0f27e4474509f361ec7962b738031f11ca814d7ec33429f848b3b3356cae9a28b9a0cb376df5a6348d312c80ed4eeb51b81e68b317584a2e4a
 SHA512 
9dd6d8c4b4e2713cf27ed55b1e97fdf5ed6d80f43b798b83f08e2f4646387dfd0696b21d4f44dbd99a061d388790dc15da49ac5afb0bb06116cfd6f07b7d6962
+DIST protobuf-3.5.2.tar.gz 4584659 BLAKE2B 
f582212169d802a5844574eb900c9f8cbb343b7e73f2074e5ff0bfc544ebd13f4bc2b78271fb70f4465d78fdc39972ed68339f453c0d3ffe98d8564fbf520544
 SHA512 
09d10cf0c07a0ba249428bbf20f5dbed840965fa06b3c09682f286a4dee9d84bb96f3b5b50e993d48ef1f20440531255ce7d0e60a648bf3fe536a5f2b0b74181

diff --git a/net-libs/grpc/files/0006-grpc-1.12.1-allow-system-openssl.patch 
b/net-libs/grpc/files/0006-grpc-1.12.1-allow-system-openssl.patch
new file mode 100644
index 000..61fd830d64d
--- /dev/null
+++ b/net-libs/grpc/files/0006-grpc-1.12.1-allow-system-openssl.patch
@@ -0,0 +1,65 @@
+From 30ce693621d61efb8596503a0da212077a8c4daa Mon Sep 17 00:00:00 2001
+From: Thomas Bechtold 
+Date: Thu, 24 May 2018 17:12:13 +0200
+Subject: [PATCH] Allow building the python module with system openssl
+
+When building the python module and using the new
+GRPC_PYTHON_BUILD_SYSTEM_OPENSSL env variable, the third party
+boringssl code is not compiled. Instead, the openssl shared library
+installed on the system is used during runtime.
+This is useful for distributions who don't want to include code copies
+but use shared libraries instead.
+---
+ setup.py | 17 +++--
+ 1 file changed, 15 insertions(+), 2 deletions(-)
+
+diff --git a/setup.py b/setup.py
+index 99d1a1c504e..3a5ed56c641 100644
+--- a/setup.py
 b/setup.py
+@@ -35,7 +35,7 @@
+ PY3 = sys.version_info.major == 3
+ PYTHON_STEM = os.path.join('src', 'python', 'grpcio')
+ CORE_INCLUDE = ('include', '.',)
+-BORINGSSL_INCLUDE = (os.path.join('third_party', 'boringssl', 'include'),)
++SSL_INCLUDE = (os.path.join('third_party', 'boringssl', 'include'),)
+ ZLIB_INCLUDE = (os.path.join('third_party', 'zlib'),)
+ CARES_INCLUDE = (
+ os.path.join('third_party', 'cares'),
+@@ -84,6 +84,12 @@
+ # present, then it will still attempt to use Cython.
+ BUILD_WITH_CYTHON = os.environ.get('GRPC_PYTHON_BUILD_WITH_CYTHON', False)
+ 
++# Export this variable to use the system installation of openssl. You need to
++# have the header files installed (in /usr/include/openssl) and during
++# runtime, the shared libary must be installed
++BUILD_WITH_SYSTEM_OPENSSL = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_OPENSSL',
++   False)
++
+ # Environment variable to determine whether or not to enable coverage analysis
+ # in Cython modules.
+ ENABLE_CYTHON_TRACING = os.environ.get(
+@@ -148,8 +154,13 @@
+ if "win32" in sys.platform:
+   CORE_C_FILES = filter(lambda x: 'third_party/cares' not in x, CORE_C_FILES)
+ 
++if BUILD_WITH_SYSTEM_OPENSSL:
++  CORE_C_FILES = filter(lambda x: 'third_party/boringssl' not in x, 
CORE_C_FILES)
++  CORE_C_FILES = filter(lambda x: 'src/boringssl' not in x, CORE_C_FILES)
++  SSL_INCLUDE = (os.path.join('/usr', 'include', 'openssl'),)
++
+ EXTENSION_INCLUDE_DIRECTORIES = (
+-(PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE + ZLIB_INCLUDE +
++(PYTHON_STEM,) + CORE_INCLUDE + SSL_INCLUDE + ZLIB_INCLUDE +
+ CARES_INCLUDE + ADDRESS_SORTING_INCLUDE)
+ 
+ EXTENSION_LIBRARIES = ()
+@@ -159,6 +170,8 @@
+   EXT

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

2018-06-11 Thread Hans de Graaff
commit: 2391ac5bab84a2fa6233554c030ca7de88120c51
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 12 05:03:36 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 12 05:03:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2391ac5b

dev-ruby/rspec-retry: add 0.6.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/rspec-retry/Manifest |  1 +
 dev-ruby/rspec-retry/rspec-retry-0.6.1.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ruby/rspec-retry/Manifest b/dev-ruby/rspec-retry/Manifest
index 8f90cca1f42..1582bfc6864 100644
--- a/dev-ruby/rspec-retry/Manifest
+++ b/dev-ruby/rspec-retry/Manifest
@@ -1,3 +1,4 @@
 DIST rspec-retry-0.5.6.gem 12800 BLAKE2B 
c1e67224c0923fff578a0afbf7a5d9ea28836aadf16dbe83357d116365f20dd0f324b2621399d3b49314db94efed83ae088eef7d26958000b257b5d409b196fc
 SHA512 
8bbc5dc37162370fa919ec7730709e5f9a9d0a751e20258caa4ba6fc2dac15701fce4d0ed82200357aff1a95dadaba278adaa2e99dce4c24d6e5a88f19261164
 DIST rspec-retry-0.5.7.gem 13312 BLAKE2B 
fdb726024425e1119fd34112263be1bac8d825085d1421d44aba28f1e0b4e0be37eb12926a700ad08ae4f7ca8cb5379b3f5e3ab1e9e161063394ef631d7c089e
 SHA512 
607e5ecfbb723073d7b2f2b40898b23c68bcd53f5e9db242b49b178156dfdff07f614db732ed254e6fb92e45f64b31647a63a12acaf3b6290bed11027cd2910a
 DIST rspec-retry-0.6.0.gem 13312 BLAKE2B 
d7c0e0d8ed9be38a594593a2631c53cfbe2e65bea7a28f1b6d63863a982fa9cb66c3f69ff2cc86d335764770222a99fae24a797f452c887b2fa558364d6f939b
 SHA512 
c5b868c05304fb2f9e7316de42929ec5f67389dc72a9c67afa1352c4dfa9c6f7682b9856f05f5ca0fe761cd5ced60e3f837a9947d5831db9b7ee09846380b446
+DIST rspec-retry-0.6.1.gem 13824 BLAKE2B 
5d5cebbfb8e5b85d2bcd4b05c2538fd083800b1b3fbf3140ec7e0535e4dcc3c270e45c1112e110315d517c48c300b96fa7d2c6c9fd553fe8de40e40acd9cd59b
 SHA512 
a5801bf0a4e9f4b8e20cc2b6087ec3b205a8a3c2aa0ff2c31b46927fa6a34aec6a2f525673cf06d9e474477e35db9f5c994639b399240fc680c5c820f51c3ffa

diff --git a/dev-ruby/rspec-retry/rspec-retry-0.6.1.ebuild 
b/dev-ruby/rspec-retry/rspec-retry-0.6.1.ebuild
new file mode 100644
index 000..12436eac347
--- /dev/null
+++ b/dev-ruby/rspec-retry/rspec-retry-0.6.1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Retry intermittently failing rspec examples"
+HOMEPAGE="https://github.com/NoRedInk/rspec-retry";
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+ruby_add_rdepend ">=dev-ruby/rspec-core-3.3:3"
+
+all_ruby_prepare() {
+   sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die
+}



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

2018-06-11 Thread Hans de Graaff
commit: 52d2418349e9a41ef541440cdd6995260532ea23
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 12 04:57:26 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 12 04:57:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52d24183

dev-ruby/uglifier: add 4.1.11

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/uglifier/Manifest   |  1 +
 dev-ruby/uglifier/uglifier-4.1.11.ebuild | 33 
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/uglifier/Manifest b/dev-ruby/uglifier/Manifest
index 6033a59362b..272b88c5ca4 100644
--- a/dev-ruby/uglifier/Manifest
+++ b/dev-ruby/uglifier/Manifest
@@ -1,4 +1,5 @@
 DIST uglifier-2.7.2.gem 84480 BLAKE2B 
a446f21f9b8682ba7ec020d355ec5b6eb573649116fddfe2d4d74849c59f6697065ca2837fb040a91a3f43264a71280660b947b138fd0fe67806f2c18631f498
 SHA512 
03c8fffbd385db9ee0fa8f422bf571ba99803f810828d536f1b00bc99a21108ac0ed232015d39f1ab88441fef0a3371df10944873fbadae6c8bd2624e3e1a65d
 DIST uglifier-3.2.0.tar.gz 169273 BLAKE2B 
b0263853c882859db8cc04c19e7f7f4bcbcef9d0b4080e414c9e1c86b691307c59d694abb33582485ea432b787f36445a49c39ece298d90806838bc56a4b7360
 SHA512 
5bc577753c175cddd7b3241f7343b75f593141c3bfa9ffa1325f7ade4a9acaf3b47e711007b5708f7cea1a7e9e768cbc3bc845d9eb362f877fe2fc83c047bb57
 DIST uglifier-4.1.10.tar.gz 199064 BLAKE2B 
e7acc4fc2548798fdd673e2b559a7039c8455854f451d6bc1c45d4cdcde7a9d96205e43e16df10717414eff6829c37a58e36a38081410533408e70d3ac297700
 SHA512 
4e3cd4e11c0f4eb019aa03231fcc7ea11a63f7598f07b21a0040219ef618972fcecbfed63ed77300ee32f36f95533c443f48d71bf069488392fec99362a180ed
+DIST uglifier-4.1.11.tar.gz 199761 BLAKE2B 
abbd696fead7dc22d76c3088934b713f3aefc609d5b5f3e0b3b54b68d6c9c832fc695423647c6ca8571142db8864093a533f4d654bb32525f0a7d9e2b04b7665
 SHA512 
bc4b735ef41093e245022d94448f3c1fc6a4e69fad664372924a8770576bbf6ae776863f8c440eaa356f7917643b8c22321fa0154d9d9507ef84f258311c8114
 DIST uglifier-4.1.9.tar.gz 198621 BLAKE2B 
3d2534b111e451daca5592559af999185b056fb61efa9ba2e22ef855479fd1ce316a58bbd48138c35c7f5b04813c24235616beb6d6dc0b6b8927a19c6bd8a7b3
 SHA512 
9daa50017f05a4637e2d3eba08500f2d967211c5155e6672e0e64bce713ccbb68ded04e471bd200336d972931ffd7affe50d2c22c6ae8d09d1cd17b080684f81

diff --git a/dev-ruby/uglifier/uglifier-4.1.11.ebuild 
b/dev-ruby/uglifier/uglifier-4.1.11.ebuild
new file mode 100644
index 000..b822aa8c1b9
--- /dev/null
+++ b/dev-ruby/uglifier/uglifier-4.1.11.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby wrapper for UglifyJS JavaScript compressor"
+HOMEPAGE="https://github.com/lautis/uglifier";
+SRC_URI="https://github.com/lautis/uglifier/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+
+IUSE="test"
+
+ruby_add_rdepend ">=dev-ruby/execjs-0.3.0:*"
+
+ruby_add_bdepend "test? ( dev-ruby/sourcemap )"
+
+all_ruby_prepare() {
+   sed -i -e 's/git ls-files -z/find -print0/' ${RUBY_FAKEGEM_GEMSPEC} || 
die
+}



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

2018-06-11 Thread Hans de Graaff
commit: 67059ef5b6bee486179f615f387e8e7a834d4c1d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jun 12 04:52:03 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jun 12 04:52:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67059ef5

dev-ruby/tdiff: add 0.3.4

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-ruby/tdiff/Manifest   |  1 +
 dev-ruby/tdiff/tdiff-0.3.4.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ruby/tdiff/Manifest b/dev-ruby/tdiff/Manifest
index 13abb4a3820..4c46fa578db 100644
--- a/dev-ruby/tdiff/Manifest
+++ b/dev-ruby/tdiff/Manifest
@@ -1 +1,2 @@
 DIST tdiff-0.3.3.gem 9216 BLAKE2B 
1171d354c4fa14e0f6813976ce82e44e24ef94089f090c2eec31767e032a143904f627df7634d3faae4d18f5591991fde77b26e0da7c37a6346d6487d881eec5
 SHA512 
18c8ee9025eedfbf78c24280bc318736e13d840a2be8b05257697d2c4de29831ed6a361ecd553fc1bcdf7961483fd0712ecb76dc3681a9549f4d3f7a18bc3d8d
+DIST tdiff-0.3.4.gem 10240 BLAKE2B 
fe764eaf70303670602758bba903202bb468c419e96909561c4d420a86b9237c9af4640947e9dbc27eaca7b7210e26236da20d41f03d3e8acd0556a23205a924
 SHA512 
2db5c9707a8654fb36b02c7fbdf2317da08c633c0d3768f0f76693d1b2b44e5f4309ae97df944c3bf9f25b596fd3ae19cb88b20435c0f9e50989d22ece40

diff --git a/dev-ruby/tdiff/tdiff-0.3.4.ebuild 
b/dev-ruby/tdiff/tdiff-0.3.4.ebuild
new file mode 100644
index 000..3484cb165ca
--- /dev/null
+++ b/dev-ruby/tdiff/tdiff-0.3.4.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="ChangeLog.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Calculates the differences between two tree-like structures"
+HOMEPAGE="https://github.com/postmodern/tdiff";
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""



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

2018-06-11 Thread Jason Zaman
commit: 696ea8983bcef0f4b86c8d73b966cb330a008561
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue Jun 12 04:07:05 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue Jun 12 04:07:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=696ea898

sci-libs/tensorflow: jemalloc distfile is needed even with -jemalloc

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-libs/tensorflow/tensorflow-1.9.0_rc0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/tensorflow/tensorflow-1.9.0_rc0.ebuild 
b/sci-libs/tensorflow/tensorflow-1.9.0_rc0.ebuild
index 45f3f98f810..77831fe2862 100644
--- a/sci-libs/tensorflow/tensorflow-1.9.0_rc0.ebuild
+++ b/sci-libs/tensorflow/tensorflow-1.9.0_rc0.ebuild
@@ -45,7 +45,7 @@ bazel_external_uris="

https://github.com/open-source-parsers/jsoncpp/archive/11086dd6a7eba04289944367ca82cea71299ed70.tar.gz
 -> jsoncpp-11086dd6a7eba04289944367ca82cea71299ed70.tar.gz
https://www.sqlite.org/2018/sqlite-amalgamation-3230100.zip
https://zlib.net/zlib-1.2.11.tar.gz
-   jemalloc? ( https://github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz 
-> jemalloc-4.4.0.tar.gz )
+   https://github.com/jemalloc/jemalloc/archive/4.4.0.tar.gz -> 
jemalloc-4.4.0.tar.gz
python? (
http://ftp.exim.org/pub/pcre/pcre-8.39.tar.gz

http://ufpr.dl.sourceforge.net/project/swig/swig/swig-3.0.8/swig-3.0.8.tar.gz



[gentoo-commits] repo/user/superposition:master commit in: games-puzzle/infinifactory/

2018-06-11 Thread Philip Miess
commit: da14e5aba797264ff65d193056eb369bea4bfa8f
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Jun 12 02:02:04 2018 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Jun 12 02:02:04 2018 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=da14e5ab

wrapper that calls it with full path

 games-puzzle/infinifactory/Manifest   | 2 +-
 games-puzzle/infinifactory/infinifactory-1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-puzzle/infinifactory/Manifest 
b/games-puzzle/infinifactory/Manifest
index 7cf1815..ddba6df 100644
--- a/games-puzzle/infinifactory/Manifest
+++ b/games-puzzle/infinifactory/Manifest
@@ -1,3 +1,3 @@
 DIST infinifactory_linux.zip 748029003 BLAKE2B 
d53077d9b5fdfb633eb20815cc2ca31b186356e182710182654dac0a08d076f45534a2a2018a6732b8344e1f266d17f7d92e6291fef2b2633bad6f1cb2fbd81a
 SHA512 
456af3482118e35a6947453a813419ca83f57c60df1cf99b6464cccb88d32c5ecc622a03783f4958eb6812a881d82901676e289ce624c2425593d9d79d2a3f5d
-EBUILD infinifactory-1.ebuild 1622 BLAKE2B 
563915fc02fba5f62015b1db4fed0a43814530b237500e746d955b8a3e512bbff5b71d83800e98c15b3907276745186dcc38d8450d0f7e28cc2dbac18f631dc7
 SHA512 
24b33baef1b0928e9a0378ba444c760b3ffc25b8aa62c424dd1b8db1b28d6df6180f7823800dfa1a826f4473d47ac96458260360ab27bd593d47cb59cb8839b2
+EBUILD infinifactory-1.ebuild 1633 BLAKE2B 
3d95c5eb0ada174f9201ec9912bb5af4c6f2818a87180d779cc1e3f800503c566814ed718a2bfddc565485d2e6e46e04a1e48963bde05edead73fc0d6bd9b125
 SHA512 
0aa69a97217a35221331f055a245bd131f0d9c8611242eb7fd0f4420db47f0b74dc958d542154c1311d712a5909a952f5e6c06d93074450e4d2c83bd29593cab
 MISC metadata.xml 925 BLAKE2B 
8fef69352a771e7abef0219d6b5c1c7274aad9b2edc6be09672eadd140c23f324e8acd23ff876d86925f43ad0d5e2ba0fae15672582f703b69b9d8addfd41027
 SHA512 
27d932d8fbaad85005be229c5bbed670e0fd1fe9a4aa622417e1b08a50a1491df9474e8ae0b6ec02aeb630457befd5e9c9ed62c3c2553101c0547df04978a5e6

diff --git a/games-puzzle/infinifactory/infinifactory-1.ebuild 
b/games-puzzle/infinifactory/infinifactory-1.ebuild
index 4420ab6..798762a 100644
--- a/games-puzzle/infinifactory/infinifactory-1.ebuild
+++ b/games-puzzle/infinifactory/infinifactory-1.ebuild
@@ -62,7 +62,7 @@ src_install() {
dodoc linux/CREDITS.txt  linux/LICENSE.txt
 
newicon -s 128 linux/infinifactory_Data/Resources/UnityPlayer.png 
${PN}.png
-   make_wrapper ${PN} "./${PN}" "${HOME}"
+   make_wrapper ${PN} "${MYGAMEDIR}/${PN}" "${HOME}"
make_desktop_entry "${PN}" "Infinifactory" "${PN}" "Game"

 



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

2018-06-11 Thread Matt Turner
commit: 2aa8dadd4a033d53c7b5ad85c6faa4a7971cbded
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Jun 12 00:57:22 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jun 12 01:50:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa8dadd

media-libs/mesa: Remove now dead nptl USE flag

Dead with the Meson transition.

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

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index efc874f4902..afa370713b0 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -38,7 +38,7 @@ done
 
 IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
-   lm_sensors +nptl opencl osmesa pax_kernel openmax pic selinux test 
unwind
+   lm_sensors opencl osmesa pax_kernel openmax pic selinux test unwind
vaapi valgrind vdpau vulkan wayland xvmc xa"
 
 REQUIRED_USE="



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

2018-06-11 Thread Matt Turner
commit: 7457a55b31bce1d433214f23e0150a9a993019bf
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Tue Jun 12 01:49:44 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Jun 12 01:49:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7457a55b

media-libs/mesa: Simplify and optimize driver_list()

Make *_DRIVERS arrays instead of strings.

 media-libs/mesa/mesa-.ebuild | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/media-libs/mesa/mesa-.ebuild b/media-libs/mesa/mesa-.ebuild
index 9df1aa45f58..efc874f4902 100644
--- a/media-libs/mesa/mesa-.ebuild
+++ b/media-libs/mesa/mesa-.ebuild
@@ -351,16 +351,16 @@ multilib_src_configure() {
fi
 
if use gallium; then
-   GALLIUM_DRIVERS+="swrast "
+   GALLIUM_DRIVERS+=(swrast)
emesonargs+=( -Dosmesa=$(usex osmesa gallium none) )
else
-   DRI_DRIVERS+="swrast "
+   DRI_DRIVERS+=(swrast)
emesonargs+=( -Dosmesa=$(usex osmesa classic none) )
fi
 
driver_list() {
-   arr=($(printf "%s\n" "$@" | sort -u | tr '\n' ','))
-   echo "${arr: : -1}"
+   local drivers="$(sort -u <<< "${1// /$'\n'}")"
+   echo "${drivers//$'\n'/,}"
}
 
emesonargs+=(
@@ -376,9 +376,9 @@ multilib_src_configure() {
$(meson_use unwind libunwind)
$(meson_use lm_sensors lmsensors)
-Dvalgrind=$(usex valgrind auto false)
-   -Ddri-drivers=$(driver_list ${DRI_DRIVERS})
-   -Dgallium-drivers=$(driver_list ${GALLIUM_DRIVERS})
-   -Dvulkan-drivers=$(driver_list ${VULKAN_DRIVERS})
+   -Ddri-drivers=$(driver_list "${DRI_DRIVERS[*]}")
+   -Dgallium-drivers=$(driver_list "${GALLIUM_DRIVERS[*]}")
+   -Dvulkan-drivers=$(driver_list "${VULKAN_DRIVERS[*]}")
)
meson_src_configure
 }
@@ -462,20 +462,20 @@ pkg_prerm() {
 dri_driver_enable() {
if use $1; then
shift
-   DRI_DRIVERS+="$@ "
+   DRI_DRIVERS+=("$@")
fi
 }
 
 gallium_enable() {
if use $1; then
shift
-   GALLIUM_DRIVERS+="$@ "
+   GALLIUM_DRIVERS+=("$@")
fi
 }
 
 vulkan_enable() {
if use $1; then
shift
-   VULKAN_DRIVERS+="$@ "
+   VULKAN_DRIVERS+=("$@")
fi
 }



[gentoo-commits] repo/user/superposition:master commit in: games-puzzle/infinifactory/

2018-06-11 Thread Philip Miess
commit: 8f2bd64ccd97991de68f583b4f74059525c3d968
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Jun 12 00:09:40 2018 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Jun 12 00:09:40 2018 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=8f2bd64c

maybe running from /home/pmiess?

 games-puzzle/infinifactory/Manifest   | 2 +-
 games-puzzle/infinifactory/infinifactory-1.ebuild | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/games-puzzle/infinifactory/Manifest 
b/games-puzzle/infinifactory/Manifest
index d2fe238..7cf1815 100644
--- a/games-puzzle/infinifactory/Manifest
+++ b/games-puzzle/infinifactory/Manifest
@@ -1,3 +1,3 @@
 DIST infinifactory_linux.zip 748029003 BLAKE2B 
d53077d9b5fdfb633eb20815cc2ca31b186356e182710182654dac0a08d076f45534a2a2018a6732b8344e1f266d17f7d92e6291fef2b2633bad6f1cb2fbd81a
 SHA512 
456af3482118e35a6947453a813419ca83f57c60df1cf99b6464cccb88d32c5ecc622a03783f4958eb6812a881d82901676e289ce624c2425593d9d79d2a3f5d
-EBUILD infinifactory-1.ebuild 1593 BLAKE2B 
43b52f038c9ee3034ad2a670f961f5a918cf50b1495f7c87a555d4779c298ac09968b6449af64aa9a8df0776a0c7efced66f8ddfee3541f20ba08b053a5c5a75
 SHA512 
e9683fd0c845a13a3bb1d61518a6fd6a4f581fb22d006a808171cf05c42be1b7f7e04ea5e1d116aa787b11e872342879ad3cd3a4691e96b17b3650bfda56a701
+EBUILD infinifactory-1.ebuild 1622 BLAKE2B 
563915fc02fba5f62015b1db4fed0a43814530b237500e746d955b8a3e512bbff5b71d83800e98c15b3907276745186dcc38d8450d0f7e28cc2dbac18f631dc7
 SHA512 
24b33baef1b0928e9a0378ba444c760b3ffc25b8aa62c424dd1b8db1b28d6df6180f7823800dfa1a826f4473d47ac96458260360ab27bd593d47cb59cb8839b2
 MISC metadata.xml 925 BLAKE2B 
8fef69352a771e7abef0219d6b5c1c7274aad9b2edc6be09672eadd140c23f324e8acd23ff876d86925f43ad0d5e2ba0fae15672582f703b69b9d8addfd41027
 SHA512 
27d932d8fbaad85005be229c5bbed670e0fd1fe9a4aa622417e1b08a50a1491df9474e8ae0b6ec02aeb630457befd5e9c9ed62c3c2553101c0547df04978a5e6

diff --git a/games-puzzle/infinifactory/infinifactory-1.ebuild 
b/games-puzzle/infinifactory/infinifactory-1.ebuild
index 9541cce..4420ab6 100644
--- a/games-puzzle/infinifactory/infinifactory-1.ebuild
+++ b/games-puzzle/infinifactory/infinifactory-1.ebuild
@@ -62,7 +62,9 @@ src_install() {
dodoc linux/CREDITS.txt  linux/LICENSE.txt
 
newicon -s 128 linux/infinifactory_Data/Resources/UnityPlayer.png 
${PN}.png
-   make_desktop_entry "${MYGAMEDIR}/${PN}" "Infinifactory" "${PN}" "Game"
+   make_wrapper ${PN} "./${PN}" "${HOME}"
+   make_desktop_entry "${PN}" "Infinifactory" "${PN}" "Game"
+   
 
domenu ${PN}
 



[gentoo-commits] repo/user/superposition:master commit in: games-puzzle/infinifactory/

2018-06-11 Thread Philip Miess
commit: ef9f45e99eb6d727871afbd689bdcf6839adb53c
Author: Philip Miess  yahoo  com>
AuthorDate: Tue Jun 12 00:00:01 2018 +
Commit: Philip Miess  yahoo  com>
CommitDate: Tue Jun 12 00:00:01 2018 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=ef9f45e9

update icon cache

 games-puzzle/infinifactory/Manifest   |  2 +-
 games-puzzle/infinifactory/infinifactory-1.ebuild | 16 +++-
 2 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/games-puzzle/infinifactory/Manifest 
b/games-puzzle/infinifactory/Manifest
index 14248d3..d2fe238 100644
--- a/games-puzzle/infinifactory/Manifest
+++ b/games-puzzle/infinifactory/Manifest
@@ -1,3 +1,3 @@
 DIST infinifactory_linux.zip 748029003 BLAKE2B 
d53077d9b5fdfb633eb20815cc2ca31b186356e182710182654dac0a08d076f45534a2a2018a6732b8344e1f266d17f7d92e6291fef2b2633bad6f1cb2fbd81a
 SHA512 
456af3482118e35a6947453a813419ca83f57c60df1cf99b6464cccb88d32c5ecc622a03783f4958eb6812a881d82901676e289ce624c2425593d9d79d2a3f5d
-EBUILD infinifactory-1.ebuild 1438 BLAKE2B 
e811d6610d0693808d89c9d78ae0bd3468f24057a16bfa59c179296b8c1c7ed8c71df71aab8b5a9b2520650d44db2e11d79c9177edf7a31b8a58bad7de024a4f
 SHA512 
b32fe949d728c36a72faf8c42f28fd9ec3b6939603e8db5b287deaec6b1b9145e3ee421a3c0fdaef7f76881c0f04466c435ede479531a95679c5d9420e43091f
+EBUILD infinifactory-1.ebuild 1593 BLAKE2B 
43b52f038c9ee3034ad2a670f961f5a918cf50b1495f7c87a555d4779c298ac09968b6449af64aa9a8df0776a0c7efced66f8ddfee3541f20ba08b053a5c5a75
 SHA512 
e9683fd0c845a13a3bb1d61518a6fd6a4f581fb22d006a808171cf05c42be1b7f7e04ea5e1d116aa787b11e872342879ad3cd3a4691e96b17b3650bfda56a701
 MISC metadata.xml 925 BLAKE2B 
8fef69352a771e7abef0219d6b5c1c7274aad9b2edc6be09672eadd140c23f324e8acd23ff876d86925f43ad0d5e2ba0fae15672582f703b69b9d8addfd41027
 SHA512 
27d932d8fbaad85005be229c5bbed670e0fd1fe9a4aa622417e1b08a50a1491df9474e8ae0b6ec02aeb630457befd5e9c9ed62c3c2553101c0547df04978a5e6

diff --git a/games-puzzle/infinifactory/infinifactory-1.ebuild 
b/games-puzzle/infinifactory/infinifactory-1.ebuild
index 53e8274..9541cce 100644
--- a/games-puzzle/infinifactory/infinifactory-1.ebuild
+++ b/games-puzzle/infinifactory/infinifactory-1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit unpacker eutils
+inherit unpacker eutils gnome2-utils
 
 DESCRIPTION="Build factories that assemble products for your alien overlords, 
and don't die."
 HOMEPAGE="http://www.zachtronics.com/infinifactory/";
@@ -67,3 +67,17 @@ src_install() {
domenu ${PN}
 
 }
+
+pkg_preinst() {
+gnome2_icon_savelist
+}
+
+pkg_postinst() {
+gnome2_icon_cache_update
+
+}
+
+pkg_postrm() {
+gnome2_icon_cache_update
+}
+



[gentoo-commits] repo/user/superposition:master commit in: games-puzzle/infinifactory/

2018-06-11 Thread Philip Miess
commit: 0f6080cb5df2f47d27d1a52a9f17a6bb5cb85908
Author: Philip Miess  yahoo  com>
AuthorDate: Mon Jun 11 03:51:33 2018 +
Commit: Philip Miess  yahoo  com>
CommitDate: Mon Jun 11 03:51:33 2018 +
URL:
https://gitweb.gentoo.org/repo/user/superposition.git/commit/?id=0f6080cb

no wrapper calling it directly may work better

 games-puzzle/infinifactory/Manifest   | 2 +-
 games-puzzle/infinifactory/infinifactory-1.ebuild | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/games-puzzle/infinifactory/Manifest 
b/games-puzzle/infinifactory/Manifest
index edd79ee..14248d3 100644
--- a/games-puzzle/infinifactory/Manifest
+++ b/games-puzzle/infinifactory/Manifest
@@ -1,3 +1,3 @@
 DIST infinifactory_linux.zip 748029003 BLAKE2B 
d53077d9b5fdfb633eb20815cc2ca31b186356e182710182654dac0a08d076f45534a2a2018a6732b8344e1f266d17f7d92e6291fef2b2633bad6f1cb2fbd81a
 SHA512 
456af3482118e35a6947453a813419ca83f57c60df1cf99b6464cccb88d32c5ecc622a03783f4958eb6812a881d82901676e289ce624c2425593d9d79d2a3f5d
-EBUILD infinifactory-1.ebuild 1470 BLAKE2B 
78322855dfe57564651f66e1ec29c8db1de5ef6c7891828a5d401c0596e31fe80b3234f9d566cdbfbcee77879fa505d187567b68aa24892eb2a5f16a512c7c0d
 SHA512 
7e54e80ed1bedb82d606b5e5350fe33873e4df2c49fb355ff0cb8fdf48e38f7fc3e812e78020c57f94f3b4c8e107d3f7ad3fa57634eaf11fe8d538c86eb4577e
+EBUILD infinifactory-1.ebuild 1438 BLAKE2B 
e811d6610d0693808d89c9d78ae0bd3468f24057a16bfa59c179296b8c1c7ed8c71df71aab8b5a9b2520650d44db2e11d79c9177edf7a31b8a58bad7de024a4f
 SHA512 
b32fe949d728c36a72faf8c42f28fd9ec3b6939603e8db5b287deaec6b1b9145e3ee421a3c0fdaef7f76881c0f04466c435ede479531a95679c5d9420e43091f
 MISC metadata.xml 925 BLAKE2B 
8fef69352a771e7abef0219d6b5c1c7274aad9b2edc6be09672eadd140c23f324e8acd23ff876d86925f43ad0d5e2ba0fae15672582f703b69b9d8addfd41027
 SHA512 
27d932d8fbaad85005be229c5bbed670e0fd1fe9a4aa622417e1b08a50a1491df9474e8ae0b6ec02aeb630457befd5e9c9ed62c3c2553101c0547df04978a5e6

diff --git a/games-puzzle/infinifactory/infinifactory-1.ebuild 
b/games-puzzle/infinifactory/infinifactory-1.ebuild
index a39f28e..53e8274 100644
--- a/games-puzzle/infinifactory/infinifactory-1.ebuild
+++ b/games-puzzle/infinifactory/infinifactory-1.ebuild
@@ -62,8 +62,7 @@ src_install() {
dodoc linux/CREDITS.txt  linux/LICENSE.txt
 
newicon -s 128 linux/infinifactory_Data/Resources/UnityPlayer.png 
${PN}.png
-   make_wrapper ${PN} "./${PN}" "${MYGAMEDIR}"
-   make_desktop_entry "${PN}" "Infinifactory" "${PN}" "Game"
+   make_desktop_entry "${MYGAMEDIR}/${PN}" "Infinifactory" "${PN}" "Game"
 
domenu ${PN}
 



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

2018-06-11 Thread Mike Pagano
commit: 1af13383a1e10575e0812a5bf0c2449ed8b81268
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 11 23:45:01 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 23:45:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1af13383

sys-kernel/gentoo-sources: Linux patch 4.17.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.17.1.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 0b0eff1f90c..a89782f1155 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -88,6 +88,9 @@ DIST genpatches-4.16-9.extras.tar.xz 17492 BLAKE2B 
2e9bb4e33e33f0b5ba923bc0036a3
 DIST genpatches-4.17-1.base.tar.xz 5392 BLAKE2B 
c0a5d1795ab5ab5dfa064986b53f5f9bdb5ac543795af4a33ce8f3e0e21d0240d7b741caf3971121738963c769f861fbab5744456b350727b29074c6f0f0d090
 SHA512 
06696fa4ee7a6a5e42a10b83401e25b0c6920ae43ca7f2106dcc208e094c74a82ee769f0d97b5ae04b6a997f7d6bc48a36674477112c74a297d6580b225a6080
 DIST genpatches-4.17-1.experimental.tar.xz 5168 BLAKE2B 
679183da1924b81b24e55fad23d57976bd33804f8d2e61bffbb9adf70d2c9d80ea83c2f6db0228baca1adb2ba5c57b8fe528e4e938a45ef9114bbb51a40106c7
 SHA512 
e7f68bf642616a1604f2d76a2e6310bd3f4147d85c29ddef829d0f59a785fd89f2532d854d32e3f4d132812f84ebb081936d2e5c68941ee5131b3004ed5b411b
 DIST genpatches-4.17-1.extras.tar.xz 17496 BLAKE2B 
115e99b501a0119809f2abe84c3bb8a66b2b450f53003441593654c23a4bb653c4b40da1ba31e53f7f4db69c99511b2dd41f53b4adf8bd377714b1ace8abd9e2
 SHA512 
a01c90e36504f17495c8691ba6fa99870fd03b65299730df57e767e2562a90b6a04da24c50983cb8ea12ac276e6805f3b5fdaa30ad175ae5ee28f147f75dc3ec
+DIST genpatches-4.17-2.base.tar.xz 11824 BLAKE2B 
e9daef9db6e614a0eaa6d99563805b30e5ab277c3d0cdb3d3480900c99fd6890de36e90fa2490ed7fe00b8dbf15139f1973439065592c44e02c6e8fcc029d12f
 SHA512 
65cca44521f0bc9e76aa40e9fb8734b9a02602ce09852670fb878c88551214b1b56e012476a930024da1705dca897b1f456e62f39b6a9853f54aa9abfde89f39
+DIST genpatches-4.17-2.experimental.tar.xz 5224 BLAKE2B 
d4e5cdbe5c0b11c273c757db6a55ed44ea53bbb1ad1772df9b4b75660f8c9f3b97d02d828730eec1a79918f857506e7829a4a8ddf80c4783bfa51cb00eb80f5b
 SHA512 
8fd4c6cf5ea0d5b5c4e83958911d147e84c9e51f71726bb45fe7d356cbd7e40b892e255d3abf9a34b92aebb3d1a14ade2c5e598129ffede3cedbdf62cde47286
+DIST genpatches-4.17-2.extras.tar.xz 17496 BLAKE2B 
402ab3be4571457aa71ad0e4785abc5ca4ab3b245d7009bb3c89d730f57b4cf78b6e7b0127907c31e4a21e96f3de367e19a71778d3dcf02ec269345d60a02cd2
 SHA512 
fc3d536bfa95854ddf788de3bd603a44b4aad3cfd11e464e54b7bcdd328513a048ff3a4e882c4a90fd3d21989aa3e5c0b46f4d0f22d58b93f3bab0f95801694f
 DIST genpatches-4.4-115.base.tar.xz 1692684 BLAKE2B 
8595bbb40d0f0172e5b6f5266d89b3aa67fad3889375c3925a39e01f9dd03e86f934d8d3c0bd93bab58ceee274277aaac4051d09f2edf665c106f2c0e29d
 SHA512 
43dac11a37c6cbef7a4070336bda44beb2d5a9a649188d188e37c4654ce94a71244a7e87652368da5a0f88dc53ad5c8d6194ad614c4033d08295debab0c90eca
 DIST genpatches-4.4-115.experimental.tar.xz 87744 BLAKE2B 
dc8a9f9ae6e6789e7c072e5c6dfa0e875765d77ffb746060f65cd708124f81f8a269a54ec6bd6f9bd159d0cd5d0d9dabd6ad9489ff5453e01c264b0f34153300
 SHA512 
e82343f1d4220ecab61503c7cefae9d5d9cd605187f4861eac21f330c39af77e90950badf1896a8fefee57133496f706e2b1905eee1d8c6cf945e77ed3b36094
 DIST genpatches-4.4-115.extras.tar.xz 16456 BLAKE2B 
3c854f5619d349eb7b20b8f92787564019769884c28cf8bd3191686e3fc8f5c764ebc3a3c99d3ea7290aab316b8a0a0728a4f679196b80b524943c503fef6705
 SHA512 
84d76421f1e3d3041ab18a2a6a019b571c1a6f27d2fc880da64ae11398c43e5eab79c538940df82aa02d697983a97145197b127613bb7f4765a26813cc36eacf

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.17.1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.17.1.ebuild
new file mode 100644
index 000..0cdac282a79
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.17.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="2"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/linux-patches: New tag: 4.17-2

2018-06-11 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 23:26:39 2018 +

New tag: 4.17-2




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

2018-06-11 Thread Mike Pagano
commit: 58958390f27f17a95695f75edae1abf561807349
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 11 23:14:45 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 23:14:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58958390

sys-kernel/gentoo-sources: Linux patch 4.16.15

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.16.15.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 0c1550d7314..0b0eff1f90c 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -64,6 +64,9 @@ DIST genpatches-4.16-14.extras.tar.xz 17488 BLAKE2B 
ef216bc2349f04ff2b9f6a0fff48
 DIST genpatches-4.16-15.base.tar.xz 402268 BLAKE2B 
1ce1a4da6e6ed219554adbf9acd0816747298c375a17794831ca9ecacd5bcf8c23c6eb49ab83d04d15b732f5ce6611be98f1d5acf151f3af172cfc6e48dab23d
 SHA512 
2a5d0a8f83597bed7ee6000786d336729d53a2d76b674c14f4f92230cfb4cae6aca688ad70f0aa922e4826eddb0eb5d6d3b8d63ac207c54c52781759dd90c4ce
 DIST genpatches-4.16-15.experimental.tar.xz 5164 BLAKE2B 
c059c922b3f371ba3fbea51e714ee056d59a7326ddcc122f0c1e94055793d654e8a57faee263fd7b70a088a092e3b1d828befcf406d3d647291ce17782dadcde
 SHA512 
ef3f4590aa9e4801c648b520a49eace811051422c4d849d80dd3d0ada07b71fd955cf520c8f1ce3d1c41d1bcc9f11f0fe05f329ca67f9098e924da3deb65d51b
 DIST genpatches-4.16-15.extras.tar.xz 17500 BLAKE2B 
f4c4d640834c03b2d0543b12fc6b227ac994201f9b31872342c63d930d4280bd1f93625c148eefb126f9269fc1fea1872ac4920ba679938c6aec7d916449
 SHA512 
a32823c41c47b26110da59d63bd6104d8b38ae9ecac43e87ec03ecef726349475e40fe88354a1680bf816a12f6edd0dbfb1a2b2865be0a0716047b12d2cfbded
+DIST genpatches-4.16-16.base.tar.xz 413996 BLAKE2B 
98d16c1a39e3c39c9c0692de34c5e0afc8c5c65b9de442503f66dfad21025ea5266be2567ec9d1699a25095df3f989b36c935fca314fac15a0da0dd54a0d5f28
 SHA512 
a35a28d60a8409c2b2759f4364c7b177d8a36e4e17daa66117905949789212acdfdd0b11f52bf6b2c199723917a241613ff5a6278359600d987ab8892ed2150d
+DIST genpatches-4.16-16.experimental.tar.xz 5164 BLAKE2B 
ae06262ea762605224f734183a6b14f2e8919ed00ef7104488cb8a20571e6b00b5de228c9f506013d3df1b82716bd5d0aa3100848feb1da926e2519913689ffa
 SHA512 
126b80ce6eb1c0ea91be5aa0e924ac3fadf983160941177827c6338e0d7ddd1f829812d02bd9a49f5b83587d23dc15ad412e6c3542d2d1c36e244a05053763bd
+DIST genpatches-4.16-16.extras.tar.xz 17496 BLAKE2B 
402ab3be4571457aa71ad0e4785abc5ca4ab3b245d7009bb3c89d730f57b4cf78b6e7b0127907c31e4a21e96f3de367e19a71778d3dcf02ec269345d60a02cd2
 SHA512 
fc3d536bfa95854ddf788de3bd603a44b4aad3cfd11e464e54b7bcdd328513a048ff3a4e882c4a90fd3d21989aa3e5c0b46f4d0f22d58b93f3bab0f95801694f
 DIST genpatches-4.16-4.base.tar.xz 46368 BLAKE2B 
30a98545ab83f25ca726d3b2fddd4abf2a5b325be187ff16836aecfa699526efde2d8c56dbfc7af068b2e281527525edc0d18a14244513636e42f31fd726dca7
 SHA512 
dd723b619926eaf4fe13db53197e2142d8ff6b2e18eacf829635ce84d442a795e3ec392ac70ddcf0ce55af48470a3ba594beaf27783b473cb169e3aa4f608223
 DIST genpatches-4.16-4.experimental.tar.xz 5164 BLAKE2B 
d64e5d3c47c7b98fe56b7d1fcfa331c8fb114e56829b602321ef52181934a5548f6a6a5bca578faf64637b277430e8378ed85285d2e422e0589d3292d96c2479
 SHA512 
b08c4fc95160ec60dce4e4dc15d885e3d7559a2b133dce76e134982139e1b9a6ae2034a60812e2b2c263e10be0e6422ee2e0ceea2b9bc00c2152bc19239856b4
 DIST genpatches-4.16-4.extras.tar.xz 17496 BLAKE2B 
04b98295a1a852516aefd1f99e806b1d471b98164948368e64179eb6c0131079b7743639eacb2b5852417e9dba0b34d7b2c92031c3f36bfc8845f230c6dc9f5d
 SHA512 
5941bf6ffbe7e79233b4d722404c76790ab0c7c2a5090e1fa52a41a9dd8b5597013676f9e877f7440f6ffbef3d3ef91da6da9241f5bc94e7337bc0f8a2001508

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.16.15.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.16.15.ebuild
new file mode 100644
index 000..5e911d2bf0c
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.16.15.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="16"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2018-06-11 Thread Ulrich Müller
commit: 848f6f15c122fb154c0f11d6bd272ae1d771965d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 23:12:38 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 23:12:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=848f6f15

app-emacs/nxml-gentoo-schemas: Fix Manifest.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-emacs/nxml-gentoo-schemas/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/nxml-gentoo-schemas/Manifest 
b/app-emacs/nxml-gentoo-schemas/Manifest
index 272f7860a40..df6870abb8b 100644
--- a/app-emacs/nxml-gentoo-schemas/Manifest
+++ b/app-emacs/nxml-gentoo-schemas/Manifest
@@ -1,2 +1,2 @@
 DIST nxml-gentoo-schemas-20170302.tar.xz 11496 BLAKE2B 
34e3517a6c57980f0a349e6c0a659ff8cbc38ade3a1cf2fd36ef7179e841de38eb73bbd85c65cf8e284f5b58583f850fd9e9622699c8dd5a909d2aa5a756164a
 SHA512 
34f02d2b5e3decad51b4d5801826cf0f7a7e863a1f61a529d3d53dc38d0a687cf100da8007c9dd1ee2172dc22af3dc963dddf3c8fefcdc47db616261d8f2f259
-DIST nxml-gentoo-schemas-20180611.tar.xz 10072 BLAKE2B 
89a422c4dd6e7f9571c98582dee95078cf967832ac43fee4137ccae9b9e7e9d0f8c210d0c8d8d8d2ddebbe8c938e76cb19619cb1f86d4dae9558bb299f78b28b
 SHA512 
cb8d20b6ce0a3fabb0eba011aeeaa96f104057bf3296fc6ed57927916999274f804154838f6272677afc42e20892ab972f0f46df58a4df6690b421e0ced45173
+DIST nxml-gentoo-schemas-20180611.tar.xz 11572 BLAKE2B 
e8a573e79d9531d676b8c52ba9c2869f765e6bb0326f3f00c99dd3ecfd19af6eaedbb06ddf84ae541690962a5e67b87726d6cc90a3bf7dd6d805b5c2c96b6321
 SHA512 
8473233141a56935e41a9d0371501f3fe055b21600746db29e14ec91d12a43da595e500a876eea8c885358df0825055143e901eb599a2fcbac7147a04fa8



[gentoo-commits] proj/linux-patches: New tag: 4.16-16

2018-06-11 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 22:54:27 2018 +

New tag: 4.16-16




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

2018-06-11 Thread Ulrich Müller
commit: 1a39b19911428fedd6f81071347d5165fde01e56
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 22:31:54 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 22:52:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a39b199

app-emacs/editorconfig-emacs: Update site-init file.

Follow Emacs project standards, i.e., don't activate features as
site default but leave this to the user.

Commit with permission of zmedico in #gentoo-dev.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 ...8.ebuild => editorconfig-emacs-0.7.8-r1.ebuild} | 22 --
 .../files/50editorconfig-emacs-gentoo.el   |  7 +++
 app-emacs/editorconfig-emacs/metadata.xml  |  5 +
 3 files changed, 20 insertions(+), 14 deletions(-)

diff --git a/app-emacs/editorconfig-emacs/editorconfig-emacs-0.7.8.ebuild 
b/app-emacs/editorconfig-emacs/editorconfig-emacs-0.7.8-r1.ebuild
similarity index 54%
rename from app-emacs/editorconfig-emacs/editorconfig-emacs-0.7.8.ebuild
rename to app-emacs/editorconfig-emacs/editorconfig-emacs-0.7.8-r1.ebuild
index 8b6ace3612d..f79186d032e 100644
--- a/app-emacs/editorconfig-emacs/editorconfig-emacs-0.7.8.ebuild
+++ b/app-emacs/editorconfig-emacs/editorconfig-emacs-0.7.8-r1.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit elisp
+inherit elisp readme.gentoo-r1
 
 DESCRIPTION="EditorConfig plugin for emacs"
 HOMEPAGE="https://github.com/editorconfig/editorconfig-emacs";
@@ -12,16 +12,10 @@ 
SRC_URI="https://github.com/editorconfig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
-RESTRICT="test"
+RESTRICT="test"# make test requires a git repo
 
-src_install() {
-   local site_file="${T}/50${PN}-gentoo.el"
-   echo "
-(require 'editorconfig)
-(editorconfig-mode 1)
-" > "${site_file}" || die
-   elisp-site-file-install "${site_file}"
-   elisp_src_install
-   dodoc README.md
-}
+SITEFILE="50${PN}-gentoo.el"
+DOCS="README.md"
+DOC_CONTENTS="The EditorConfig feature is not enabled as a site default.
+   Add the following line to your ~/.emacs file to activate it:
+   \n\t(editorconfig-mode 1)"

diff --git a/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el 
b/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el
new file mode 100644
index 000..93d6816e8e7
--- /dev/null
+++ b/app-emacs/editorconfig-emacs/files/50editorconfig-emacs-gentoo.el
@@ -0,0 +1,7 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'editorconfig-mode "editorconfig"
+  "Toggle EditorConfig feature." t)
+(autoload 'editorconfig-conf-mode "editorconfig-conf-mode"
+  "Major mode for editing .editorconfig files." t)
+(add-to-list 'auto-mode-alist
+'("/\\.editorconfig\\'" . editorconfig-conf-mode))

diff --git a/app-emacs/editorconfig-emacs/metadata.xml 
b/app-emacs/editorconfig-emacs/metadata.xml
index 14acb12060d..65f408f2b6b 100644
--- a/app-emacs/editorconfig-emacs/metadata.xml
+++ b/app-emacs/editorconfig-emacs/metadata.xml
@@ -7,4 +7,9 @@

zmed...@gentoo.org

+   
+   gnu-em...@gentoo.org
+   Gentoo GNU Emacs project
+   
+   
 



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

2018-06-11 Thread Ulrich Müller
commit: bda04ed3135af44abbbacaa115349608d1b9648c
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 22:50:23 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 22:52:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda04ed3

app-emacs/nxml-gentoo-schemas: Version bump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-emacs/nxml-gentoo-schemas/Manifest |  1 +
 .../nxml-gentoo-schemas-20180611.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/app-emacs/nxml-gentoo-schemas/Manifest 
b/app-emacs/nxml-gentoo-schemas/Manifest
index 655a1f00286..be7af3a0cab 100644
--- a/app-emacs/nxml-gentoo-schemas/Manifest
+++ b/app-emacs/nxml-gentoo-schemas/Manifest
@@ -1,2 +1,3 @@
 DIST nxml-gentoo-schemas-20160506.tar.xz 11472 BLAKE2B 
1cda5e285110d0b5f782777c897d275a946ee4b3e26e7e73c9aff5288976f7c1e65ed808608cc69c206e37b5a97b6b5a9080a2571b1921d8ac91e508497fdf62
 SHA512 
5f826342e3af11a93ca22abe4333838f3f26cb01ff98a270929d6e5091e65b4ab9971b1f7e52404b235bd208f195d51eef868580d19a4c113ddb7925a9118b8d
 DIST nxml-gentoo-schemas-20170302.tar.xz 11496 BLAKE2B 
34e3517a6c57980f0a349e6c0a659ff8cbc38ade3a1cf2fd36ef7179e841de38eb73bbd85c65cf8e284f5b58583f850fd9e9622699c8dd5a909d2aa5a756164a
 SHA512 
34f02d2b5e3decad51b4d5801826cf0f7a7e863a1f61a529d3d53dc38d0a687cf100da8007c9dd1ee2172dc22af3dc963dddf3c8fefcdc47db616261d8f2f259
+DIST nxml-gentoo-schemas-20180611.tar.xz 10072 BLAKE2B 
89a422c4dd6e7f9571c98582dee95078cf967832ac43fee4137ccae9b9e7e9d0f8c210d0c8d8d8d2ddebbe8c938e76cb19619cb1f86d4dae9558bb299f78b28b
 SHA512 
cb8d20b6ce0a3fabb0eba011aeeaa96f104057bf3296fc6ed57927916999274f804154838f6272677afc42e20892ab972f0f46df58a4df6690b421e0ced45173

diff --git a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20180611.ebuild 
b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20180611.ebuild
new file mode 100644
index 000..e7f0519c8d6
--- /dev/null
+++ b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20180611.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp
+
+DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas"
+HOMEPAGE="https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/";
+SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz";
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+SITEFILE="60${PN}-gentoo.el"
+
+src_compile() { :; }
+
+src_install() {
+   insinto "${SITEETC}/${PN}"
+   doins schemas.xml *.rnc
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   dodoc DONATING
+}



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

2018-06-11 Thread Ulrich Müller
commit: b716168c2c1d35122349c10d6766b64639eb6e9b
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 22:51:16 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 22:52:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b716168c

app-emacs/nxml-gentoo-schemas: Remove old.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-emacs/nxml-gentoo-schemas/Manifest |  1 -
 .../nxml-gentoo-schemas-20160506.ebuild| 25 --
 2 files changed, 26 deletions(-)

diff --git a/app-emacs/nxml-gentoo-schemas/Manifest 
b/app-emacs/nxml-gentoo-schemas/Manifest
index be7af3a0cab..272f7860a40 100644
--- a/app-emacs/nxml-gentoo-schemas/Manifest
+++ b/app-emacs/nxml-gentoo-schemas/Manifest
@@ -1,3 +1,2 @@
-DIST nxml-gentoo-schemas-20160506.tar.xz 11472 BLAKE2B 
1cda5e285110d0b5f782777c897d275a946ee4b3e26e7e73c9aff5288976f7c1e65ed808608cc69c206e37b5a97b6b5a9080a2571b1921d8ac91e508497fdf62
 SHA512 
5f826342e3af11a93ca22abe4333838f3f26cb01ff98a270929d6e5091e65b4ab9971b1f7e52404b235bd208f195d51eef868580d19a4c113ddb7925a9118b8d
 DIST nxml-gentoo-schemas-20170302.tar.xz 11496 BLAKE2B 
34e3517a6c57980f0a349e6c0a659ff8cbc38ade3a1cf2fd36ef7179e841de38eb73bbd85c65cf8e284f5b58583f850fd9e9622699c8dd5a909d2aa5a756164a
 SHA512 
34f02d2b5e3decad51b4d5801826cf0f7a7e863a1f61a529d3d53dc38d0a687cf100da8007c9dd1ee2172dc22af3dc963dddf3c8fefcdc47db616261d8f2f259
 DIST nxml-gentoo-schemas-20180611.tar.xz 10072 BLAKE2B 
89a422c4dd6e7f9571c98582dee95078cf967832ac43fee4137ccae9b9e7e9d0f8c210d0c8d8d8d2ddebbe8c938e76cb19619cb1f86d4dae9558bb299f78b28b
 SHA512 
cb8d20b6ce0a3fabb0eba011aeeaa96f104057bf3296fc6ed57927916999274f804154838f6272677afc42e20892ab972f0f46df58a4df6690b421e0ced45173

diff --git a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160506.ebuild 
b/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160506.ebuild
deleted file mode 100644
index 7c4a013456e..000
--- a/app-emacs/nxml-gentoo-schemas/nxml-gentoo-schemas-20160506.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 elisp
-
-DESCRIPTION="Extension for nxml-mode with Gentoo-specific schemas"
-HOMEPAGE="https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/";
-SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.tar.xz";
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-
-SITEFILE="60${PN}-gentoo.el"
-
-src_compile() { :; }
-
-src_install() {
-   insinto "${SITEETC}/${PN}"
-   doins schemas.xml *.rnc
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   dodoc DONATING
-}



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

2018-06-11 Thread Thomas Deutschmann
commit: 987bc3f518ed55f6e888a0c6c40182b956e9935c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 11 22:44:35 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 11 22:46:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=987bc3f5

net-misc/openssh: disable conch interopt tests

Bug: https://bugs.gentoo.org/605446
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../openssh-7.5_p1-disable-conch-interop-tests.patch | 20 
 net-misc/openssh/openssh-7.5_p1-r4.ebuild|  1 +
 net-misc/openssh/openssh-7.6_p1-r4.ebuild|  1 +
 net-misc/openssh/openssh-7.6_p1-r5.ebuild|  1 +
 net-misc/openssh/openssh-7.7_p1-r4.ebuild|  1 +
 5 files changed, 24 insertions(+)

diff --git 
a/net-misc/openssh/files/openssh-7.5_p1-disable-conch-interop-tests.patch 
b/net-misc/openssh/files/openssh-7.5_p1-disable-conch-interop-tests.patch
new file mode 100644
index 000..a5647ce9d8d
--- /dev/null
+++ b/net-misc/openssh/files/openssh-7.5_p1-disable-conch-interop-tests.patch
@@ -0,0 +1,20 @@
+Disable conch interop tests which are failing when called
+via portage for yet unknown reason and because using conch
+seems to be flaky (test is failing when using Python2 but
+passing when using Python3).
+
+Bug: https://bugs.gentoo.org/605446
+
+--- a/regress/conch-ciphers.sh
 b/regress/conch-ciphers.sh
+@@ -3,6 +3,10 @@
+ 
+ tid="conch ciphers"
+ 
++# https://bugs.gentoo.org/605446
++echo "conch interop tests skipped due to Gentoo bug #605446"
++exit 0
++
+ if test "x$REGRESS_INTEROP_CONCH" != "xyes" ; then
+   echo "conch interop tests not enabled"
+   exit 0

diff --git a/net-misc/openssh/openssh-7.5_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.5_p1-r4.ebuild
index 5574b9b318c..3deb8a130f7 100644
--- a/net-misc/openssh/openssh-7.5_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.5_p1-r4.ebuild
@@ -130,6 +130,7 @@ src_prepare() {
 
epatch "${FILESDIR}"/${PN}-7.5_p1-GSSAPI-dns.patch #165444 integrated 
into gsskex
epatch "${FILESDIR}"/${PN}-6.7_p1-openssl-ignore-status.patch
+   epatch "${FILESDIR}"/${PN}-7.5_p1-disable-conch-interop-tests.patch
epatch "${FILESDIR}"/${PN}-7.5_p1-cross-cache.patch
epatch "${FILESDIR}"/${PN}-7.5_p1-CVE-2017-15906.patch
use X509 || epatch "${FILESDIR}"/${PN}-7.5_p1-s390-seccomp.patch # 
already included in X509 patch set, #644252

diff --git a/net-misc/openssh/openssh-7.6_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.6_p1-r4.ebuild
index 01600c378d2..68ad3c2a252 100644
--- a/net-misc/openssh/openssh-7.6_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.6_p1-r4.ebuild
@@ -110,6 +110,7 @@ src_prepare() {
cp version.h version.h.pristine
 
eapply "${FILESDIR}/${P}-warnings.patch"
+   eapply "${FILESDIR}"/${PN}-7.5_p1-disable-conch-interop-tests.patch
 
# don't break .ssh/authorized_keys2 for fun
sed -i '/^AuthorizedKeysFile/s:^:#:' sshd_config || die

diff --git a/net-misc/openssh/openssh-7.6_p1-r5.ebuild 
b/net-misc/openssh/openssh-7.6_p1-r5.ebuild
index 46f1d676f5f..4c84767d116 100644
--- a/net-misc/openssh/openssh-7.6_p1-r5.ebuild
+++ b/net-misc/openssh/openssh-7.6_p1-r5.ebuild
@@ -111,6 +111,7 @@ src_prepare() {
 
eapply "${FILESDIR}/${P}-warnings.patch"
eapply "${FILESDIR}/${P}-permitopen.patch"
+   eapply "${FILESDIR}"/${PN}-7.5_p1-disable-conch-interop-tests.patch
 
# don't break .ssh/authorized_keys2 for fun
sed -i '/^AuthorizedKeysFile/s:^:#:' sshd_config || die

diff --git a/net-misc/openssh/openssh-7.7_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.7_p1-r4.ebuild
index e884e0b9d3e..8c98892dfd2 100644
--- a/net-misc/openssh/openssh-7.7_p1-r4.ebuild
+++ b/net-misc/openssh/openssh-7.7_p1-r4.ebuild
@@ -112,6 +112,7 @@ src_prepare() {
 
eapply "${FILESDIR}"/${PN}-7.7_p1-GSSAPI-dns.patch #165444 integrated 
into gsskex
eapply "${FILESDIR}"/${PN}-6.7_p1-openssl-ignore-status.patch
+   eapply "${FILESDIR}"/${PN}-7.5_p1-disable-conch-interop-tests.patch
 
local PATCHSET_VERSION_MACROS=()
 



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

2018-06-11 Thread Thomas Deutschmann
commit: 7d7ff6f0c26e07ab5dcf45b5bdd5f2fb8b67cfc7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jun 11 22:45:47 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jun 11 22:46:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d7ff6f0

net-misc/openssh: drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-misc/openssh/Manifest |   2 -
 net-misc/openssh/openssh-7.6_p1-r4.ebuild | 336 ---
 net-misc/openssh/openssh-7.7_p1-r1.ebuild | 414 -
 net-misc/openssh/openssh-7.7_p1-r2.ebuild | 426 -
 net-misc/openssh/openssh-7.7_p1-r3.ebuild | 427 --
 5 files changed, 1605 deletions(-)

diff --git a/net-misc/openssh/Manifest b/net-misc/openssh/Manifest
index 16fa1505ca1..b0fcdb7976a 100644
--- a/net-misc/openssh/Manifest
+++ b/net-misc/openssh/Manifest
@@ -6,9 +6,7 @@ DIST openssh-7.6_p1-sctp.patch.xz 6996 BLAKE2B 
4a857afdc8fa5cb2bfb9dd1805ac6343e
 DIST openssh-7.6p1+x509-11.2.diff.gz 466657 BLAKE2B 
3f4f108e2d97eb292c215bc3a6e2c64ae6b9e49704f46f46a21496a71d5ebd051ab648446bf71ef141e2114f4a03363d8cd043f5813f957c2c5f2e2eb193931d
 SHA512 
1c0fea91037bfcaed7aa3f0cb01d262410a99d3e1b98a25a012db5d683f3275ab52f78f1e446bd7e543c78f9d406b1dce2bb3997214534ae94e11c254658080f
 DIST openssh-7.6p1-hpnssh14v12-r1.tar.xz 15440 BLAKE2B 
e140852a3ce63e4f744ed4b18b474cf88d09ca55509e5a16d26eef5cf8574466b472073eef56e19467932959d9ba7e941ab561d9ea0704dfee3fd08a6ba7ba8c
 SHA512 
9d0450ec99fe550d790e471cb7815d0863788cf9c41dfef653d102f02be3d38a09e5103e537658279216a5815c1a075ded9f011e05ce216beee2c7daeea8c75a
 DIST openssh-7.6p1.tar.gz 1489788 BLAKE2B 
938bfeeff0a0aaa2fc7e4c345f04561c6c071c526e354a7d344a08742cb70ab1f4a41d325b31720f2fba5c4afa4db11f3fc87055c8c9c8bea37b29cc11dc8f39
 SHA512 
de17fdcb8239401f76740c8d689a8761802f6df94e68d953f3c70b9f4f8bdb403617c48c1d01cc8c368d88e9d50aee540bf03d5a36687dfb39dfd28d73029d72
-DIST openssh-7.7p1-hpnssh14v14-gentoo1.patch.xz 21448 BLAKE2B 
51d9324990d8098707359f355b9212679db38569e566f47659ffdae8046bdbb4e6873bd67ecb7da0b5706c5243f44f82089f08ecbc59c7e39062fceb4be78316
 SHA512 
63d2ffbcfe121ddedaa07955b1025d2c6e196ea694464610437368835cf46dd507d4d17361548cae93db53a1e3d93d9c409910620bbd0cd619d82b6215c833b5
 DIST openssh-7.7p1-hpnssh14v15-gentoo1.patch.xz 22060 BLAKE2B 
81a7f3d1346718c154b39920c126eb0b00ae43f1369d882b8a1bd0b885668805639d869581fb49a8e7c67b61d72a904fde45841e4396af426b136d6d2f0a0dc3
 SHA512 
7b437bc061677aeabe561ad74bb19bc6f85369119ad8a92fb430fb5c1394c2bb3afd472ee66b285362b2041f871c56633dc94fec33cb062c6b1817d63c1d4a78
-DIST openssh-7.7p1-patches-1.0.tar.xz 8176 BLAKE2B 
196b756f72bb3fccc927e31ae1b94adc3c9116de25258ac599c3653cd1234ff33f3dc608515a5ef56bea05191621974342bdb164b721c94d2c29a0de74731742
 SHA512 
9d56e306a5886a19d58c7a42389a82d8b912bb9250f97f64e9bf9752fc92e671539b24b0568f21072fb1ba7185e6bd1ec33511a39d26d48a699a911b910121c9
 DIST openssh-7.7p1-patches-1.1.tar.xz 16476 BLAKE2B 
fca2885a9e29faec40700ece37a995ba83e40bd2a6875129a5327770d8ee43663a7c063de33b4653994ed7332adb03730f613c047550d874190b95c66e2e9efa
 SHA512 
aa5e33ce4bb4be16abf27ac1bade1dc85c51d82002be546402e0b8b0685de3ec7029f0f56bf1295ec346eb3960a6bed7cfc882722e57957a19a732f3174b3039
 DIST openssh-7.7p1-sctp-1.0.patch.xz 7380 BLAKE2B 
6ad40972ece131ff148ede6ba94d63bffc606e0bcabb959d4c9056196cb6f4fddc285f97d7b49b73fde7ee84e3c981c07bddb058ad88eb7c7c2fe716e657c630
 SHA512 
bc5f50805ba25415f93f61b6654e5bcbaef673b0af48d339116ca9c94b6152afae294c5a9144adeb40190da97c2fc73b43e3ac7ac34feb4a647628327a7cac0a
 DIST openssh-7.7p1-x509-11.3.1.patch.xz 362672 BLAKE2B 
55b8b0ef00dc4d962a0db1115406b7b1e84110870c74198e9e4cb081b2ffde8daca67cb281c69d73b4c5cbffde361429d62634be194b57e888a0b434a0f42a37
 SHA512 
f84744f6d2e5a15017bce37bfa65ebb47dbafeac07ea9aab46bdc780b4062ff70687512d9d512cab81e3b9c701adb6ce17c5474f35cb4b49f57db2e2d45ac9ac

diff --git a/net-misc/openssh/openssh-7.6_p1-r4.ebuild 
b/net-misc/openssh/openssh-7.6_p1-r4.ebuild
deleted file mode 100644
index 68ad3c2a252..000
--- a/net-misc/openssh/openssh-7.6_p1-r4.ebuild
+++ /dev/null
@@ -1,336 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit user flag-o-matic multilib autotools pam systemd versionator
-
-# Make it more portable between straight releases
-# and _p? releases.
-PARCH=${P/_}
-
-HPN_PATCH="${PARCH}-hpnssh14v12-r1.tar.xz"
-SCTP_PATCH="${PN}-7.6_p1-sctp.patch.xz"
-LDAP_PATCH="${PN}-lpk-7.6p1-0.3.14.patch.xz"
-X509_VER="11.2" X509_PATCH="${PN}-${PV/_}+x509-${X509_VER}.diff.gz"
-
-DESCRIPTION="Port of OpenBSD's free SSH release"
-HOMEPAGE="http://www.openssh.org/";
-SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
-   ${SCTP_PATCH:+https://dev.gentoo.org/~polynomial-c/${SCTP_PATCH}}
-   ${HPN_PATCH:+hpn? ( https://dev.gentoo.org/~chutzpah/${HPN_PATCH} )}
-   ${LDAP_PATCH:+ldap? ( 
ht

[gentoo-commits] proj/nxml-gentoo-schemas: New tag: nxml-gentoo-schemas-20180611

2018-06-11 Thread Ulrich Müller
commit: 
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 22:45:36 2018 +

New tag: nxml-gentoo-schemas-20180611




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

2018-06-11 Thread Mike Pagano
commit: 427ff7787a3cce79b7ee489def3d1618c1b20562
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 11 22:42:06 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 22:42:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=427ff778

sys-kernel/gentoo-sources:

Update to cpu optimization patch.
Linux patch 4.14.49.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.14.49.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 572fb604cca..0c1550d7314 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -43,6 +43,9 @@ DIST genpatches-4.14-51.extras.tar.xz 17496 BLAKE2B 
115e99b501a0119809f2abe84c3b
 DIST genpatches-4.14-52.base.tar.xz 1393612 BLAKE2B 
f408007ae60b6580104f0a2ba35af383bb294508800540d62593a4d0cf57addc518b926a7ca8c0398c89c6762b0389de553af189a100031929770a5b84d08ce0
 SHA512 
f114baf7273dde352905f1dff5dd72f4822f01ba906ba04d49f68ff779d9b27359564f15e57d3d091fe942c8c1d679227020e5937fe82ac5dcb59d270104b971
 DIST genpatches-4.14-52.experimental.tar.xz 5188 BLAKE2B 
8212503f164cfbba9d6d59624ed29bea6ae1a5a027cf6afa484e90c931a4cc32c954216e91a442ad27834049ce90a4b262aa82b14763c72096d933d8459977ca
 SHA512 
8475a0f915b49e003ba362f47e909ae97bf9dd2f94c8eb96fbf07899fc6884309f4f49bc17ab49de0bd8ad0066ef1e63cf1d19ba2d8a493ea1478b431e2d2034
 DIST genpatches-4.14-52.extras.tar.xz 17496 BLAKE2B 
402ab3be4571457aa71ad0e4785abc5ca4ab3b245d7009bb3c89d730f57b4cf78b6e7b0127907c31e4a21e96f3de367e19a71778d3dcf02ec269345d60a02cd2
 SHA512 
fc3d536bfa95854ddf788de3bd603a44b4aad3cfd11e464e54b7bcdd328513a048ff3a4e882c4a90fd3d21989aa3e5c0b46f4d0f22d58b93f3bab0f95801694f
+DIST genpatches-4.14-53.base.tar.xz 1402232 BLAKE2B 
e71d86a6296bc0e00033d6d1105c119366694e6d6bb21e67b1d8187091fcf81a3140fd492fa403cb119baba60502ee4e4604f82fd411c367ce3a985267fe82af
 SHA512 
e96a69e6f2ab4bb8525e3d3ae214d228008d84cf2a4e57dbd7dba3966cbe066bec3d3accc2e986c957a02ebed68e13646d90cf15f1b762911d100266aa2e8325
+DIST genpatches-4.14-53.experimental.tar.xz 5224 BLAKE2B 
57b4282cfbd86aef19b48c12948a041b155b75184ee94b543d47e4bf754947c228f2c0f123b9814568ad6c782cd6f16908b825141ef1957299ccb21a0a10cc1b
 SHA512 
7eb0d1caeca30369eb2003b9814b9be8308b2081219b178363bc95645aac5f0d352546323ce17b2eb28b57f09e5efffe079449ce42e48f37ed96b4d853e77cb3
+DIST genpatches-4.14-53.extras.tar.xz 17496 BLAKE2B 
402ab3be4571457aa71ad0e4785abc5ca4ab3b245d7009bb3c89d730f57b4cf78b6e7b0127907c31e4a21e96f3de367e19a71778d3dcf02ec269345d60a02cd2
 SHA512 
fc3d536bfa95854ddf788de3bd603a44b4aad3cfd11e464e54b7bcdd328513a048ff3a4e882c4a90fd3d21989aa3e5c0b46f4d0f22d58b93f3bab0f95801694f
 DIST genpatches-4.16-10.base.tar.xz 215644 BLAKE2B 
b2706d34e5778c3453aac5e63c006a94a1f35ebf164cff8af692b754721205303a3d22a1cf7715a1809359d166191dbe29503ae0632af421c34ac59210876ee0
 SHA512 
0d290d1853481052b74dea62c16f1c9d25d3b27b9fffa5f444d48e23a4dcf79cd12008940c2ab8cd6af3733003a287620148a4535431081a7d37e7b9d5c1
 DIST genpatches-4.16-10.experimental.tar.xz 5164 BLAKE2B 
f99e68621a2e5b17e4f6bef55a24ec2c52c442abfa35230e869ae008e4fca3721375e4a93a4f6cd7c49f09e5412ba4cd753bedab2fb4ae85fad57dfb8761f04f
 SHA512 
4288ddbd0123242c5e22b69645f9da7d706c08c7dd313c7c59481ffd42c395076e7aac8bc26736729d04cebe5b1da579cadeca1ecd4644bcf1d786e402e87642
 DIST genpatches-4.16-10.extras.tar.xz 17488 BLAKE2B 
75169c7816271f85df521749f6da4a706217797b10a4b3bd8ff7cdb37e380c3427f442428707449afa361956bb0197cc4c30f794491bb9ba1f5056abc586d2ad
 SHA512 
dc8253041478cfb0ce1f6d5d1ec5a4e006320822e14b79f40fea752575e47444948987c17b8ad90d1bf5febece034393f49ab8a049e5e33078831e8e640c27e2

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.49.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.49.ebuild
new file mode 100644
index 000..0cab2a7eb57
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.49.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="53"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/nxml-gentoo-schemas:master commit in: /

2018-06-11 Thread Ulrich Müller
commit: 88b814fa147ad085a74be4308b4de56de254b19d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Thu Mar  2 08:37:32 2017 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Thu Mar  2 08:37:32 2017 +
URL:
https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/commit/?id=88b814fa

Update rnc schemas from dtds.

 book.rnc |  2 +-
 glsa.rnc |  3 ++-
 guide.rnc|  2 +-
 metadata.rnc |  1 +
 metadoc.rnc  | 12 ++--
 project.rnc  |  2 +-
 6 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/book.rnc b/book.rnc
index 51d57b1..bcffc69 100644
--- a/book.rnc
+++ b/book.rnc
@@ -43,4 +43,4 @@ subsection.attlist &=
   attribute id { text }?,
   attribute test { text }?
 body = element body { body.attlist, (\include | block.class+) }
-start = summary | glepindex | included | sections | book
+start = sections | book | included | summary | glepindex

diff --git a/glsa.rnc b/glsa.rnc
index f5adaf7..a9f182a 100644
--- a/glsa.rnc
+++ b/glsa.rnc
@@ -49,6 +49,7 @@ attlist.synopsis &= empty
 #infrastructure
 # 
 #   The text contains one keyword that defines the issue.
+#   Note: All type values but 'ebuild' are considered deprecated.
 # 
 # Example: openssl
 # Example: rsync mirror
@@ -87,7 +88,7 @@ attlist.access &= empty
 # Element:  affected
 # Description:  Describe what the affected subjects are.
 # 
-#   If product@type = 'build', the child elements are 'package'
+#   If product@type = 'ebuild', the child elements are 'package'
 #   If product@type = 'portage', the child elements are 'package'
 #   If product@type = 'infrastructure', the child elements are 
 #   'service'

diff --git a/guide.rnc b/guide.rnc
index aaef013..523af1c 100644
--- a/guide.rnc
+++ b/guide.rnc
@@ -81,4 +81,4 @@ mirrorlist.attlist &=
   [ a:defaultValue = "full" ] attribute select { "full" | "partial" }?
 mirrorlist.attlist &=
   [ a:defaultValue = "/main/en/mirrors3.xml" ] attribute src { text }?
-start = guide | included | news | mainpage
+start = guide | mainpage | included | news

diff --git a/metadata.rnc b/metadata.rnc
index 3919793..2ac5f01 100644
--- a/metadata.rnc
+++ b/metadata.rnc
@@ -83,6 +83,7 @@ attlist.remote-id &=
 | "ctan"
 | "freecode"
 | "freshmeat"
+| "gentoo"
 | "github"
 | "gitlab"
 | "gitorious"

diff --git a/metadoc.rnc b/metadoc.rnc
index a69bef0..481587c 100644
--- a/metadoc.rnc
+++ b/metadoc.rnc
@@ -69,12 +69,12 @@ section =
 body = element body { body.attlist, (\include | block.class+) }
 chapter |= notAllowed
 start =
-  summary
-  | glepindex
-  | values
-  | included
-  | dynamic
+  dynamic
   | author
   | license
-  | abstract
+  | values
+  | included
+  | summary
   | metadoc
+  | abstract
+  | glepindex

diff --git a/project.rnc b/project.rnc
index 6984fa9..6a885a5 100644
--- a/project.rnc
+++ b/project.rnc
@@ -120,4 +120,4 @@ milestone.attlist &=
 depends = element depends { depends.attlist, text }
 depends.attlist &= attribute ref { xsd:IDREF }
 chapter |= notAllowed
-start = values | \include | project | included | license | abstract
+start = project | license | values | included | \include | abstract



[gentoo-commits] proj/nxml-gentoo-schemas:master commit in: /

2018-06-11 Thread Ulrich Müller
commit: ea7cd6e092def3df76f45f3ed30ecd1e4473e499
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 22:41:51 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 22:41:51 2018 +
URL:
https://gitweb.gentoo.org/proj/nxml-gentoo-schemas.git/commit/?id=ea7cd6e0

Update rnc schemas.

 glsa.rnc |  4 +++-
 metadata.rnc | 11 ++-
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/glsa.rnc b/glsa.rnc
index a9f182a..2711a6a 100644
--- a/glsa.rnc
+++ b/glsa.rnc
@@ -128,7 +128,8 @@ vulnerable = element vulnerable { attlist.vulnerable, text }
 attlist.vulnerable &=
   attribute range {
 "le" | "lt" | "eq" | "gt" | "ge" | "rlt" | "rle" | "rgt" | "rge"
-  }
+  },
+  [ a:defaultValue = "*" ] attribute slot { text }?
 # Element:  unaffected
 # Description:  Version of the fixed (or unaffected) package. In case the 
 #   package is superseded by another package, you need to
@@ -144,6 +145,7 @@ attlist.unaffected &=
   attribute range {
 "le" | "lt" | "eq" | "gt" | "ge" | "rlt" | "rle" | "rgt" | "rge"
   },
+  [ a:defaultValue = "*" ] attribute slot { text }?,
   attribute name { text }?
 # Element:  service
 # Description:  Provide information about the Gentoo services that are

diff --git a/metadata.rnc b/metadata.rnc
index 2ac5f01..7f4c26e 100644
--- a/metadata.rnc
+++ b/metadata.rnc
@@ -10,7 +10,12 @@ attlist.catmetadata &=
 pkgmetadata =
   element pkgmetadata {
 attlist.pkgmetadata,
-(maintainer | longdescription | slots | use | upstream)*
+(maintainer
+ | longdescription
+ | slots
+ | stabilize-allarches
+ | use
+ | upstream)*
   }
 attlist.pkgmetadata &=
   [ a:defaultValue = "" ] attribute pkgname { text }?
@@ -42,6 +47,9 @@ attlist.slot &= attribute name { text }
 # The meaning of sub-SLOTs for the whole package
 subslots = element subslots { attlist.subslots, text* }
 attlist.subslots &= empty
+# whether it's possible to stabilize ALLARCHES
+stabilize-allarches =
+  element stabilize-allarches { attlist.stabilize-allarches, empty }
 # description of what this USE flag does for this package
 use = element use { attlist.use, flag* }
 flag = element flag { attlist.flag, (text | pkg | cat)* }
@@ -128,6 +136,7 @@ attlist.use &= [ a:defaultValue = "en" ] attribute lang { 
text }?
 attlist.maintainer &= attribute restrict { text }?
 attlist.longdescription &= attribute restrict { text }?
 attlist.flag &= attribute restrict { text }?
+attlist.stabilize-allarches &= attribute restrict { text }?
 # standard parts
 
 # an email address



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

2018-06-11 Thread Alexey Shvetsov
commit: 3f5d05a2e241db8ae7f5804e349943a94344ed2a
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Mon Jun 11 22:11:10 2018 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Mon Jun 11 22:11:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f5d05a2

www-apps/drupal: Version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-apps/drupal/Manifest | 2 +-
 www-apps/drupal/drupal-7.59.ebuild   | 2 +-
 www-apps/drupal/{drupal-8.5.3.ebuild => drupal-8.5.4.ebuild} | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-apps/drupal/Manifest b/www-apps/drupal/Manifest
index 890a5218895..26657d92e42 100644
--- a/www-apps/drupal/Manifest
+++ b/www-apps/drupal/Manifest
@@ -1,2 +1,2 @@
 DIST drupal-7.59.tar.gz 3282260 BLAKE2B 
bf7d74926fe4e94149ef7ff622cf7889f45f3e35b9bfd19fed12aa688c8131f2f8daa2a261796896d5386966603e837b6dec3b6c02221f9b0c527c4a6f5ff9da
 SHA512 
68f02b39d1a4658adc0f0046c22cc1059b68f952f9cd753f5a3e379cf93705be308b4727519e90d77a42437442daebaa78d76745954be4d40e1a5105c319069c
-DIST drupal-8.5.3.tar.gz 15527015 BLAKE2B 
1deb2e993a328edcbee511643126760c5dd95a6ac120dca41de89f7a7f0c05469644aeb3451b9f055a4157cf0f7e1636b7c98a6a94695935a754dcecb16f53c8
 SHA512 
282d558851fc96b1acf2f0c33bc66c1898e0f7b1346e83139ba923e131b6b75836692907418f73a430f9e67772e642a3b724ec4c12956691450bd4aa5cb31b13
+DIST drupal-8.5.4.tar.gz 15779939 BLAKE2B 
a016402e9165d64b8998df1f4aa76b6345400e8a3aa909941244fec21112edc05977c1f4464b3679f44aded3addf3174794e075db546d585da836f36d1771df1
 SHA512 
7171818533dba2c1cf19fc0dd4fc0884502e007c9fe8669dc8131a927ba1a5b14322a8ba1f465ff1aac5bd8e61a8fd17c632ea4b1e321469595d144a752546d2

diff --git a/www-apps/drupal/drupal-7.59.ebuild 
b/www-apps/drupal/drupal-7.59.ebuild
index 904fbef88e1..f2d68ea226d 100644
--- a/www-apps/drupal/drupal-7.59.ebuild
+++ b/www-apps/drupal/drupal-7.59.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 inherit webapp
 

diff --git a/www-apps/drupal/drupal-8.5.3.ebuild 
b/www-apps/drupal/drupal-8.5.4.ebuild
similarity index 99%
rename from www-apps/drupal/drupal-8.5.3.ebuild
rename to www-apps/drupal/drupal-8.5.4.ebuild
index 703cace2293..ec2dacba2d1 100644
--- a/www-apps/drupal/drupal-8.5.3.ebuild
+++ b/www-apps/drupal/drupal-8.5.4.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 inherit webapp
 



[gentoo-commits] proj/linux-patches: New tag: 4.14-53

2018-06-11 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 22:07:10 2018 +

New tag: 4.14-53




[gentoo-commits] repo/gentoo:master commit in: app-emacs/go-mode/, app-emacs/mediawiki/, app-emacs/tuareg-mode/, ...

2018-06-11 Thread Ulrich Müller
commit: 2e0c6889ba76db45b12f663c7132dad38aa998bb
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 21:55:45 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 21:56:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0c6889

app-emacs/*: Add stabilize-allarches to metadata where appropriate.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-emacs/actionscript-mode/metadata.xml | 1 +
 app-emacs/adaptive-wrap/metadata.xml | 1 +
 app-emacs/analog/metadata.xml| 1 +
 app-emacs/anything/metadata.xml  | 1 +
 app-emacs/apache-mode/metadata.xml   | 1 +
 app-emacs/apel/metadata.xml  | 1 +
 app-emacs/atomic-chrome/metadata.xml | 1 +
 app-emacs/auctex/metadata.xml| 1 +
 app-emacs/auto-complete/metadata.xml | 1 +
 app-emacs/autoconf-mode/metadata.xml | 1 +
 app-emacs/basic-toolkit/metadata.xml | 1 +
 app-emacs/bbdb/metadata.xml  | 1 +
 app-emacs/binclock/metadata.xml  | 1 +
 app-emacs/bison-mode/metadata.xml| 1 +
 app-emacs/blogmax/metadata.xml   | 1 +
 app-emacs/bm/metadata.xml| 1 +
 app-emacs/bongo/metadata.xml | 1 +
 app-emacs/boxquote/metadata.xml  | 1 +
 app-emacs/browse-kill-ring/metadata.xml  | 1 +
 app-emacs/bubblet/metadata.xml   | 1 +
 app-emacs/buffer-extension/metadata.xml  | 1 +
 app-emacs/calfw/metadata.xml | 1 +
 app-emacs/chess/metadata.xml | 1 +
 app-emacs/circe/metadata.xml | 1 +
 app-emacs/cldoc/metadata.xml | 1 +
 app-emacs/cmail/metadata.xml | 1 +
 app-emacs/color-browser/metadata.xml | 1 +
 app-emacs/color-moccur/metadata.xml  | 1 +
 app-emacs/color-theme/metadata.xml   | 1 +
 app-emacs/company-mode/metadata.xml  | 1 +
 app-emacs/crontab-mode/metadata.xml  | 1 +
 app-emacs/crypt++/metadata.xml   | 1 +
 app-emacs/csharp-mode/metadata.xml   | 1 +
 app-emacs/css-mode/metadata.xml  | 1 +
 app-emacs/csv-mode/metadata.xml  | 1 +
 app-emacs/cycle-buffer/metadata.xml  | 1 +
 app-emacs/d-mode/metadata.xml| 1 +
 app-emacs/dash/metadata.xml  | 1 +
 app-emacs/desktop+/metadata.xml  | 1 +
 app-emacs/develock/metadata.xml  | 1 +
 app-emacs/df-mode/metadata.xml   | 1 +
 app-emacs/dictionary/metadata.xml| 1 +
 app-emacs/dircolors/metadata.xml | 1 +
 app-emacs/dired-sort-menu/metadata.xml   | 1 +
 app-emacs/doctest-mode/metadata.xml  | 1 +
 app-emacs/dropdown-list/metadata.xml | 1 +
 app-emacs/dts-mode/metadata.xml  | 1 +
 app-emacs/ebuild-mode/metadata.xml   | 1 +
 app-emacs/ecb/metadata.xml   | 1 +
 app-emacs/edb/metadata.xml   | 1 +
 app-emacs/edit-list/metadata.xml | 1 +
 app-emacs/edit-server/metadata.xml   | 1 +
 app-emacs/elib/metadata.xml  | 1 +
 app-emacs/elscreen/metadata.xml  | 1 +
 app-emacs/emacs-common-gentoo/metadata.xml   | 1 +
 app-emacs/emacs-daemon/metadata.xml  | 1 +
 app-emacs/emacs-jabber/metadata.xml  | 1 +
 app-emacs/emacs-w3m/metadata.xml | 1 +
 app-emacs/emacs-wget/metadata.xml| 1 +
 app-emacs/emhacks/metadata.xml   | 1 +
 app-emacs/erobot/metadata.xml| 1 +
 app-emacs/eselect-mode/metadata.xml  | 1 +
 app-emacs/ess/metadata.xml   | 1 +
 app-emacs/evil/metadata.xml  | 1 +
 app-emacs/expand-region/metadata.xml | 1 +
 app-emacs/f/metadata.xml | 1 +
 app-emacs/fff/metadata.xml   | 1 +
 app-emacs/filladapt/metadata.xml | 1 +
 app-emacs/flashcard/metadata.xml | 1 +
 app-emacs/flim/metadata.xml  | 1 +
 app-emacs/folding/metadata.xml   | 1 +
 app-emacs/ghc-mod/metadata.xml   | 1 +
 app-emacs/ghub/metadata.xml  | 1 +
 app-emacs/gnuplot-mode/metadata.xml  | 1 +
 app-emacs/go-mode/metadata.xml   | 1 +
 app-emacs/google-c-style/metadata.xml| 1 +
 app-emacs/graphviz-dot-mode/metadata.xml | 1 +
 app-emacs/h4x0r/metadata.xml | 1 +
 app-emacs/haskell-mode/metadata.xml  | 1 +
 app-emacs/hexrgb/metadata.xml| 1 +
 app-emacs/highline/metadata.xml  | 1 +
 app-emacs/howm/metadata.xml  | 1 +
 app-emacs/htmlize/metadata.xml   | 1 +
 app-emacs/httpd/metadata.xml | 1 +
 app-emacs/icicles/metadata.xml   | 1 +
 app-emacs/identica-mode/metadata.xml | 1 +
 app-emacs/igrep/metadata.xml | 1 +
 app-emacs/inform-mode/metadata.xml   | 1 +
 app-emacs/i

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

2018-06-11 Thread Mike Pagano
commit: fa93352971e5dd4e0cda149358e6fb0af0a8218b
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 11 21:50:11 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 21:50:11 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=fa933529

Linux patch 4.17.1

 _README |   4 +
 1000_linux-4.17.1.patch | 602 
 2 files changed, 606 insertions(+)

diff --git a/_README b/_README
index 86e4a15..de4fd96 100644
--- a/_README
+++ b/_README
@@ -43,6 +43,10 @@ EXPERIMENTAL
 Individual Patch Descriptions:
 --
 
+Patch:  1000_linux-4.17.1.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.17.1
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1000_linux-4.17.1.patch b/1000_linux-4.17.1.patch
new file mode 100644
index 000..8c58c98
--- /dev/null
+++ b/1000_linux-4.17.1.patch
@@ -0,0 +1,602 @@
+diff --git a/Documentation/networking/netdev-FAQ.txt 
b/Documentation/networking/netdev-FAQ.txt
+index 2a3278d5cf35..fa951b820b25 100644
+--- a/Documentation/networking/netdev-FAQ.txt
 b/Documentation/networking/netdev-FAQ.txt
+@@ -179,6 +179,15 @@ A: No.  See above answer.  In short, if you think it 
really belongs in
+dash marker line as described in 
Documentation/process/submitting-patches.rst to
+temporarily embed that information into the patch that you send.
+ 
++Q: Are all networking bug fixes backported to all stable releases?
++
++A: Due to capacity, Dave could only take care of the backports for the last
++   2 stable releases. For earlier stable releases, each stable branch 
maintainer
++   is supposed to take care of them. If you find any patch is missing from an
++   earlier stable branch, please notify sta...@vger.kernel.org with either a
++   commit ID or a formal patch backported, and CC Dave and other relevant
++   networking developers.
++
+ Q: Someone said that the comment style and coding convention is different
+for the networking content.  Is this true?
+ 
+diff --git a/Makefile b/Makefile
+index 554dcaddbce4..e551c9af6a06 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 17
+-SUBLEVEL = 0
++SUBLEVEL = 1
+ EXTRAVERSION =
+ NAME = Merciless Moray
+ 
+diff --git a/drivers/net/dsa/b53/b53_common.c 
b/drivers/net/dsa/b53/b53_common.c
+index 3da5fca77cbd..bbc6cc609ec3 100644
+--- a/drivers/net/dsa/b53/b53_common.c
 b/drivers/net/dsa/b53/b53_common.c
+@@ -684,7 +684,8 @@ static int b53_switch_reset(struct b53_device *dev)
+* still use this driver as a library and need to perform the reset
+* earlier.
+*/
+-  if (dev->chip_id == BCM58XX_DEVICE_ID) {
++  if (dev->chip_id == BCM58XX_DEVICE_ID ||
++  dev->chip_id == BCM583XX_DEVICE_ID) {
+   b53_read8(dev, B53_CTRL_PAGE, B53_SOFTRESET, ®);
+   reg |= SW_RST | EN_SW_RST | EN_CH_RST;
+   b53_write8(dev, B53_CTRL_PAGE, B53_SOFTRESET, reg);
+@@ -1879,6 +1880,18 @@ static const struct b53_chip_data b53_switch_chips[] = {
+   .jumbo_pm_reg = B53_JUMBO_PORT_MASK,
+   .jumbo_size_reg = B53_JUMBO_MAX_SIZE,
+   },
++  {
++  .chip_id = BCM583XX_DEVICE_ID,
++  .dev_name = "BCM583xx/11360",
++  .vlans = 4096,
++  .enabled_ports = 0x103,
++  .arl_entries = 4,
++  .cpu_port = B53_CPU_PORT,
++  .vta_regs = B53_VTA_REGS,
++  .duplex_reg = B53_DUPLEX_STAT_GE,
++  .jumbo_pm_reg = B53_JUMBO_PORT_MASK,
++  .jumbo_size_reg = B53_JUMBO_MAX_SIZE,
++  },
+   {
+   .chip_id = BCM7445_DEVICE_ID,
+   .dev_name = "BCM7445",
+diff --git a/drivers/net/dsa/b53/b53_priv.h b/drivers/net/dsa/b53/b53_priv.h
+index 3b57f47d0e79..b232aaae20aa 100644
+--- a/drivers/net/dsa/b53/b53_priv.h
 b/drivers/net/dsa/b53/b53_priv.h
+@@ -62,6 +62,7 @@ enum {
+   BCM53018_DEVICE_ID = 0x53018,
+   BCM53019_DEVICE_ID = 0x53019,
+   BCM58XX_DEVICE_ID = 0x5800,
++  BCM583XX_DEVICE_ID = 0x58300,
+   BCM7445_DEVICE_ID = 0x7445,
+   BCM7278_DEVICE_ID = 0x7278,
+ };
+@@ -181,6 +182,7 @@ static inline int is5301x(struct b53_device *dev)
+ static inline int is58xx(struct b53_device *dev)
+ {
+   return dev->chip_id == BCM58XX_DEVICE_ID ||
++  dev->chip_id == BCM583XX_DEVICE_ID ||
+   dev->chip_id == BCM7445_DEVICE_ID ||
+   dev->chip_id == BCM7278_DEVICE_ID;
+ }
+diff --git a/drivers/net/dsa/b53/b53_srab.c b/drivers/net/dsa/b53/b53_srab.c
+index c37ffd1b6833..8247481eaa06 100644
+--- a/drivers/net/dsa/b53/b53_srab.c
 b/drivers/net/dsa/b53/b53_srab.c
+@@ -364,7 +364,7 @@ static const struct o

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

2018-06-11 Thread Mike Pagano
commit: 373445e16ce72726343d67d7fca5de454a00a4c3
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 11 21:47:57 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 21:47:57 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=373445e1

Linux patch 4.16.15

 _README  |4 +
 1014_linux-4.16.15.patch | 1544 ++
 2 files changed, 1548 insertions(+)

diff --git a/_README b/_README
index 5691b91..d817caf 100644
--- a/_README
+++ b/_README
@@ -99,6 +99,10 @@ Patch:  1013_linux-4.16.14.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.16.14
 
+Patch:  1014_linux-4.16.15.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.16.15
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1014_linux-4.16.15.patch b/1014_linux-4.16.15.patch
new file mode 100644
index 000..6820a0f
--- /dev/null
+++ b/1014_linux-4.16.15.patch
@@ -0,0 +1,1544 @@
+diff --git a/Documentation/networking/netdev-FAQ.txt 
b/Documentation/networking/netdev-FAQ.txt
+index 2a3278d5cf35..fa951b820b25 100644
+--- a/Documentation/networking/netdev-FAQ.txt
 b/Documentation/networking/netdev-FAQ.txt
+@@ -179,6 +179,15 @@ A: No.  See above answer.  In short, if you think it 
really belongs in
+dash marker line as described in 
Documentation/process/submitting-patches.rst to
+temporarily embed that information into the patch that you send.
+ 
++Q: Are all networking bug fixes backported to all stable releases?
++
++A: Due to capacity, Dave could only take care of the backports for the last
++   2 stable releases. For earlier stable releases, each stable branch 
maintainer
++   is supposed to take care of them. If you find any patch is missing from an
++   earlier stable branch, please notify sta...@vger.kernel.org with either a
++   commit ID or a formal patch backported, and CC Dave and other relevant
++   networking developers.
++
+ Q: Someone said that the comment style and coding convention is different
+for the networking content.  Is this true?
+ 
+diff --git a/Makefile b/Makefile
+index a043442e442f..e45c66b27241 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 16
+-SUBLEVEL = 14
++SUBLEVEL = 15
+ EXTRAVERSION =
+ NAME = Fearless Coyote
+ 
+diff --git a/drivers/gpu/drm/drm_file.c b/drivers/gpu/drm/drm_file.c
+index e394799979a6..6d9b9453707c 100644
+--- a/drivers/gpu/drm/drm_file.c
 b/drivers/gpu/drm/drm_file.c
+@@ -212,6 +212,7 @@ static int drm_open_helper(struct file *filp, struct 
drm_minor *minor)
+   return -ENOMEM;
+ 
+   filp->private_data = priv;
++  filp->f_mode |= FMODE_UNSIGNED_OFFSET;
+   priv->filp = filp;
+   priv->pid = get_pid(task_pid(current));
+   priv->minor = minor;
+diff --git a/drivers/isdn/hardware/eicon/diva.c 
b/drivers/isdn/hardware/eicon/diva.c
+index 944a7f338099..1b25d8bc153a 100644
+--- a/drivers/isdn/hardware/eicon/diva.c
 b/drivers/isdn/hardware/eicon/diva.c
+@@ -388,10 +388,10 @@ void divasa_xdi_driver_unload(void)
+ **  Receive and process command from user mode utility
+ */
+ void *diva_xdi_open_adapter(void *os_handle, const void __user *src,
+-  int length,
++  int length, void *mptr,
+   divas_xdi_copy_from_user_fn_t cp_fn)
+ {
+-  diva_xdi_um_cfg_cmd_t msg;
++  diva_xdi_um_cfg_cmd_t *msg = (diva_xdi_um_cfg_cmd_t *)mptr;
+   diva_os_xdi_adapter_t *a = NULL;
+   diva_os_spin_lock_magic_t old_irql;
+   struct list_head *tmp;
+@@ -401,21 +401,21 @@ void *diva_xdi_open_adapter(void *os_handle, const void 
__user *src,
+length, sizeof(diva_xdi_um_cfg_cmd_t)))
+   return NULL;
+   }
+-  if ((*cp_fn) (os_handle, &msg, src, sizeof(msg)) <= 0) {
++  if ((*cp_fn) (os_handle, msg, src, sizeof(*msg)) <= 0) {
+   DBG_ERR(("A: A(?) open, write error"))
+   return NULL;
+   }
+   diva_os_enter_spin_lock(&adapter_lock, &old_irql, "open_adapter");
+   list_for_each(tmp, &adapter_queue) {
+   a = list_entry(tmp, diva_os_xdi_adapter_t, link);
+-  if (a->controller == (int)msg.adapter)
++  if (a->controller == (int)msg->adapter)
+   break;
+   a = NULL;
+   }
+   diva_os_leave_spin_lock(&adapter_lock, &old_irql, "open_adapter");
+ 
+   if (!a) {
+-  DBG_ERR(("A: A(%d) open, adapter not found", msg.adapter))
++  DBG_ERR(("A: A(%d) open, adapter not found", msg->adapter))
+   }
+ 
+   return (a);
+@@ -437,8 +437,10 @@ void diva_xdi_close_adapter(void *adapter, void 
*os_handle)
+ 
+ int
+ diva_xdi_write(void *adapter, void *os_handle, const v

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

2018-06-11 Thread Mike Pagano
commit: 3035cefd0c0580095edc4a0b27514ec83d648a2e
Author: Mike Pagano  gentoo  org>
AuthorDate: Mon Jun 11 21:46:35 2018 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Mon Jun 11 21:46:35 2018 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=3035cefd

Linux patch 4.14.49

 _README  |4 +
 1048_linux-4.14.49.patch | 1356 ++
 2 files changed, 1360 insertions(+)

diff --git a/_README b/_README
index 023e213..4c28456 100644
--- a/_README
+++ b/_README
@@ -235,6 +235,10 @@ Patch:  1047_linux-4.14.48.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.14.48
 
+Patch:  1048_linux-4.14.49.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.14.49
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1048_linux-4.14.49.patch b/1048_linux-4.14.49.patch
new file mode 100644
index 000..4f8e7ec
--- /dev/null
+++ b/1048_linux-4.14.49.patch
@@ -0,0 +1,1356 @@
+diff --git a/Documentation/networking/netdev-FAQ.txt 
b/Documentation/networking/netdev-FAQ.txt
+index cfc66ea72329..a365656e4873 100644
+--- a/Documentation/networking/netdev-FAQ.txt
 b/Documentation/networking/netdev-FAQ.txt
+@@ -176,6 +176,15 @@ A: No.  See above answer.  In short, if you think it 
really belongs in
+dash marker line as described in 
Documentation/process/submitting-patches.rst to
+temporarily embed that information into the patch that you send.
+ 
++Q: Are all networking bug fixes backported to all stable releases?
++
++A: Due to capacity, Dave could only take care of the backports for the last
++   2 stable releases. For earlier stable releases, each stable branch 
maintainer
++   is supposed to take care of them. If you find any patch is missing from an
++   earlier stable branch, please notify sta...@vger.kernel.org with either a
++   commit ID or a formal patch backported, and CC Dave and other relevant
++   networking developers.
++
+ Q: Someone said that the comment style and coding convention is different
+for the networking content.  Is this true?
+ 
+diff --git a/Makefile b/Makefile
+index 7a246f1ce44e..480ae7ef755c 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 14
+-SUBLEVEL = 48
++SUBLEVEL = 49
+ EXTRAVERSION =
+ NAME = Petit Gorille
+ 
+diff --git a/drivers/gpu/drm/drm_file.c b/drivers/gpu/drm/drm_file.c
+index b3c6e997ccdb..03244b3c985d 100644
+--- a/drivers/gpu/drm/drm_file.c
 b/drivers/gpu/drm/drm_file.c
+@@ -212,6 +212,7 @@ static int drm_open_helper(struct file *filp, struct 
drm_minor *minor)
+   return -ENOMEM;
+ 
+   filp->private_data = priv;
++  filp->f_mode |= FMODE_UNSIGNED_OFFSET;
+   priv->filp = filp;
+   priv->pid = get_pid(task_pid(current));
+   priv->minor = minor;
+diff --git a/drivers/isdn/hardware/eicon/diva.c 
b/drivers/isdn/hardware/eicon/diva.c
+index 944a7f338099..1b25d8bc153a 100644
+--- a/drivers/isdn/hardware/eicon/diva.c
 b/drivers/isdn/hardware/eicon/diva.c
+@@ -388,10 +388,10 @@ void divasa_xdi_driver_unload(void)
+ **  Receive and process command from user mode utility
+ */
+ void *diva_xdi_open_adapter(void *os_handle, const void __user *src,
+-  int length,
++  int length, void *mptr,
+   divas_xdi_copy_from_user_fn_t cp_fn)
+ {
+-  diva_xdi_um_cfg_cmd_t msg;
++  diva_xdi_um_cfg_cmd_t *msg = (diva_xdi_um_cfg_cmd_t *)mptr;
+   diva_os_xdi_adapter_t *a = NULL;
+   diva_os_spin_lock_magic_t old_irql;
+   struct list_head *tmp;
+@@ -401,21 +401,21 @@ void *diva_xdi_open_adapter(void *os_handle, const void 
__user *src,
+length, sizeof(diva_xdi_um_cfg_cmd_t)))
+   return NULL;
+   }
+-  if ((*cp_fn) (os_handle, &msg, src, sizeof(msg)) <= 0) {
++  if ((*cp_fn) (os_handle, msg, src, sizeof(*msg)) <= 0) {
+   DBG_ERR(("A: A(?) open, write error"))
+   return NULL;
+   }
+   diva_os_enter_spin_lock(&adapter_lock, &old_irql, "open_adapter");
+   list_for_each(tmp, &adapter_queue) {
+   a = list_entry(tmp, diva_os_xdi_adapter_t, link);
+-  if (a->controller == (int)msg.adapter)
++  if (a->controller == (int)msg->adapter)
+   break;
+   a = NULL;
+   }
+   diva_os_leave_spin_lock(&adapter_lock, &old_irql, "open_adapter");
+ 
+   if (!a) {
+-  DBG_ERR(("A: A(%d) open, adapter not found", msg.adapter))
++  DBG_ERR(("A: A(%d) open, adapter not found", msg->adapter))
+   }
+ 
+   return (a);
+@@ -437,8 +437,10 @@ void diva_xdi_close_adapter(void *adapter, void 
*os_handle)
+ 
+ int
+ diva_xdi_write(void *adapter, void *os_handle, const v

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

2018-06-11 Thread Jeroen Roovers
commit: fda3f9ba0be3f6e4aef2a2836a1f0a35ac9b60ef
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jun 11 21:22:35 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Jun 11 21:22:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda3f9ba

www-client/vivaldi-snapshot: vivaldi-snapshot-1.16.1206.3_p1.ebuild

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-client/vivaldi-snapshot/Manifest   |   3 +
 .../vivaldi-snapshot-1.16.1206.3_p1.ebuild | 117 +
 2 files changed, 120 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 946180e62c5..b408c36702a 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -4,3 +4,6 @@ DIST vivaldi-snapshot-1.16.1183.3_p1-i386.deb 53694006 BLAKE2B 
6ccea2dd2f6c53858
 DIST vivaldi-snapshot-1.16.1195.3_p1-amd64.deb 53983692 BLAKE2B 
35d73cdb4f4a7e12adb8c42b27af1a1d04002463747038a5296f1299c7928d88af6875137582f1bdd62dfb53804d9257da27a645d327fb13cd2f8e436a2f07ea
 SHA512 
771fdf4c6c6aa05d3b2a3d533e7b819da6f1a906d5658597bedb4b0fd4d0f17cbc5d72bbe3abf2b59efeedca5d232db38d99dd06b7086e5c31359d34d33e3452
 DIST vivaldi-snapshot-1.16.1195.3_p1-armhf.deb 47756024 BLAKE2B 
51e9c4796d6d6e8ac1493e0ba9ddb7749f01bfc13dcd77cc07620b97431d2c5e13bb899315098ffbc40ad4036c7a3ee4d48d2e049c75ed2e5510b1107dc37f41
 SHA512 
202d1c9a3e8910c66229e549bebe9c33787b254aba7e9dcf8f6c2ca3deb7c58235580b9b7fd72dc7923b7b94170359a2ba5c60e89dc5299a6408712b2a904432
 DIST vivaldi-snapshot-1.16.1195.3_p1-i386.deb 53584334 BLAKE2B 
4214406a36e5b34ccde7a88c873c7dade9a06641bbe22bd56218ac54f3f6150667be7fa9d7eb9f40961e6090c2dd6cb86286db61751091da99449863d87d1304
 SHA512 
ad86404b5c52199e55b8a6ba1764894a937af22a93f09184a2d07b72c256cbf39796cdfae2c005e2a8a21784ecfdcda223769692cc957e28a297691776895d89
+DIST vivaldi-snapshot-1.16.1206.3_p1-amd64.deb 54026030 BLAKE2B 
8fe73fb90f43d1835afef932be441c915c8d8acd930b69abe3b2266331b788d34f7cb41f5d692f2f5161ae9c993ef2bb4985eff2fbd8de17cbe6f84962d76e33
 SHA512 
f9c220abc42ac73eb0e7042054cc0c70dff75e072abb0793e421c71c0655114faaa047619529e64186e75ecc3d5551dc4f1282dca1b0801ea8d01b1d3763e365
+DIST vivaldi-snapshot-1.16.1206.3_p1-armhf.deb 47758616 BLAKE2B 
e10a813393e78ed6645b1dda41ec742f275c881769ecc2576364c4c1f0d693959a39c2b924d9a1706a0f431e06ff7cb8f3717685a16b2533f30af739132a474d
 SHA512 
18a1260854e3b8960c53f26239be67c60a87081241456167544c7ca39630cf840ee102093bd69156dce85983821048de71a89131cb4cf4c1b2b083e68d74ffdf
+DIST vivaldi-snapshot-1.16.1206.3_p1-i386.deb 53606248 BLAKE2B 
89768824c38ec599d6ba72c918b67784c80c262229121b05ebf0cf22094673a96fb418b6ea825bd6bddd3df555c0911a43baddd4261f95eb7ea842f71192e11e
 SHA512 
4facab8b7d56e6c093286e19b75b1afea9ff09cb93b31c6920641dd7fa5b7cd418295eadb01b9c90ea57ba8654b7605dba1002a8fbb0d8a8afb553e488753a58

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.16.1206.3_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.16.1206.3_p1.ebuild
new file mode 100644
index 000..0b21131251e
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.16.1206.3_p1.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
+   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
+   sw ta te th tr uk vi zh-CN zh-TW
+"
+inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs 
xdg-utils
+
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/";
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_";
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~x86"
+RESTRICT="bindist mirror"
+
+DEPEND="
+   virtual/libiconv
+"
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   media-libs/speex
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango[X]
+"
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   iconv -c -t UTF-8 usr/share/applications/${PN}.desktop > 

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

2018-06-11 Thread Jeroen Roovers
commit: eb18e5d9752639c5ba6bd253552ca0118accedc6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jun 11 21:23:10 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Jun 11 21:23:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb18e5d9

www-client/vivaldi-snapshot: Old.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 www-client/vivaldi-snapshot/Manifest   |   3 -
 .../vivaldi-snapshot-1.16.1183.3_p1.ebuild | 117 -
 2 files changed, 120 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index b408c36702a..6f8018f2ed9 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-snapshot-1.16.1183.3_p1-amd64.deb 54115912 BLAKE2B 
4da1e44a5ae612cd9e42c536380f20d865ab03341eadee88c7d64013ff78503ef592314f4ffef6a64e9242c78b85199066f5c9cbeefa814b86a8115d61792676
 SHA512 
0bb313cdc5c0f800f29bcc5d2a1b528310968b4d311b943afa37961f4664ff0f280097fe1150301bc546e6252bc8d1f9828aa88f8fff40242910786757e93e3b
-DIST vivaldi-snapshot-1.16.1183.3_p1-armhf.deb 47836516 BLAKE2B 
cf15ad84f1b2ba6730b7a225fe19be96880764134b63f2fae78d18a4ff0c201ab35d303fcf25e48b76ead281ebda8a8771fb74b1c27a8eb1de2f5a089839e1a4
 SHA512 
7d954a9826a466b56e77a508a7655010e70c500bd76e47c5218c3da7de199a70677c0af0967261c5c32a2ed4a76a0038f63ec8e2cd38518344c7d74839c7f5ec
-DIST vivaldi-snapshot-1.16.1183.3_p1-i386.deb 53694006 BLAKE2B 
6ccea2dd2f6c538587df05ebb42121c8a11c9e3eb55fc18747e80ee122f1eee16989bc375f53e718e7b29681172e6f77df9031997ec10e3ebe14833be872bd60
 SHA512 
488f256d3dd9ca44f9553a2a6409707e4f526f9c97b4a8c2eaf1a039ebffd7e9d850a4762edaadfebc75f6074e33432e8d0d418747b3ceb561520e2ac6b73c5c
 DIST vivaldi-snapshot-1.16.1195.3_p1-amd64.deb 53983692 BLAKE2B 
35d73cdb4f4a7e12adb8c42b27af1a1d04002463747038a5296f1299c7928d88af6875137582f1bdd62dfb53804d9257da27a645d327fb13cd2f8e436a2f07ea
 SHA512 
771fdf4c6c6aa05d3b2a3d533e7b819da6f1a906d5658597bedb4b0fd4d0f17cbc5d72bbe3abf2b59efeedca5d232db38d99dd06b7086e5c31359d34d33e3452
 DIST vivaldi-snapshot-1.16.1195.3_p1-armhf.deb 47756024 BLAKE2B 
51e9c4796d6d6e8ac1493e0ba9ddb7749f01bfc13dcd77cc07620b97431d2c5e13bb899315098ffbc40ad4036c7a3ee4d48d2e049c75ed2e5510b1107dc37f41
 SHA512 
202d1c9a3e8910c66229e549bebe9c33787b254aba7e9dcf8f6c2ca3deb7c58235580b9b7fd72dc7923b7b94170359a2ba5c60e89dc5299a6408712b2a904432
 DIST vivaldi-snapshot-1.16.1195.3_p1-i386.deb 53584334 BLAKE2B 
4214406a36e5b34ccde7a88c873c7dade9a06641bbe22bd56218ac54f3f6150667be7fa9d7eb9f40961e6090c2dd6cb86286db61751091da99449863d87d1304
 SHA512 
ad86404b5c52199e55b8a6ba1764894a937af22a93f09184a2d07b72c256cbf39796cdfae2c005e2a8a21784ecfdcda223769692cc957e28a297691776895d89

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.16.1183.3_p1.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-1.16.1183.3_p1.ebuild
deleted file mode 100644
index 0b21131251e..000
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-1.16.1183.3_p1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
-   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
-   sw ta te th tr uk vi zh-CN zh-TW
-"
-inherit chromium-2 eutils gnome2-utils multilib unpacker toolchain-funcs 
xdg-utils
-
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/";
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_";
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
-"
-
-LICENSE="Vivaldi"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~x86"
-RESTRICT="bindist mirror"
-
-DEPEND="
-   virtual/libiconv
-"
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/speex
-   net-print/cups
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/pango[X]
-"
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   iconv -c -t UTF-8 usr/share/applications/${PN}.desktop > 
"${T}"/${PN}.desktop || die
-   mv "${T}"/${PN}.desktop usr/share/applications/${PN}.desktop || die
-
-  

[gentoo-commits] repo/gentoo:master commit in: media-sound/ardour/files/, media-sound/ardour/

2018-06-11 Thread Lars Wendler
commit: e23feed1818bd47ce44a3340276e2b21bc77ae2f
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 11 21:13:38 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 11 21:18:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e23feed1

media-sound/ardour: Removed old.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/ardour/Manifest|   8 --
 media-sound/ardour/ardour-2.8.16-r1.ebuild |  82 
 media-sound/ardour/ardour-4.7-r1.ebuild| 138 
 media-sound/ardour/ardour-4.7-r2.ebuild| 139 
 media-sound/ardour/ardour-5.10.ebuild  | 141 
 media-sound/ardour/ardour-5.3-r1.ebuild| 143 -
 media-sound/ardour/ardour-5.5-r1.ebuild| 141 
 media-sound/ardour/ardour-5.6-r1.ebuild| 141 
 media-sound/ardour/ardour-5.8-r1.ebuild| 141 
 media-sound/ardour/ardour-5.9.ebuild   | 141 
 media-sound/ardour/files/ardour-2.8.11-flags.patch |  28 
 .../ardour/files/ardour-2.8.14-boost-150.patch |  13 --
 .../ardour/files/ardour-2.8.14-syslibs.patch   | 108 
 media-sound/ardour/files/ardour-4.0-lv2.patch  |  56 
 media-sound/ardour/files/ardour-4.7-gcc.patch  | 100 --
 media-sound/ardour/metadata.xml|   3 -
 16 files changed, 1523 deletions(-)

diff --git a/media-sound/ardour/Manifest b/media-sound/ardour/Manifest
index 218f86e373b..2715b3fb7e1 100644
--- a/media-sound/ardour/Manifest
+++ b/media-sound/ardour/Manifest
@@ -1,9 +1 @@
-DIST ardour-2.8.16.tar.bz2 2169916 BLAKE2B 
47db892002f439312efdeec9840d96045a9852b078d4cd88de2fe089f510b904028cb7b0a2d2d39cf004a1bf60127bbfa91af6b9ff1118f3729f9c6d2363d14f
 SHA512 
02e74883cf466fcd5588ec8f2fd9d032b4611071d630b412c853a7ae7cb46045c0cde4308abbc78da3f54aae0ab1c32a980b8d1e1a965c8633ef43d8e08e0d0d
-DIST ardour-4.7.tar.gz 9863149 BLAKE2B 
1b81230a1add69506ad703b09cd683fad0ba5c78c30c1701b913ed42690665201541ff01ada9e5b913fc7000df1622cc9fb9b56fa95e46a48d6608ac4fc90f13
 SHA512 
5daff563ec0b2dc38ec6ca55bb12526ef54da9d8d5a29a9fd6d869f54b83e6fe5ff3c28ef654e6700455110b4a46ce42a33902eb66d96330c6c0948eb3cd3096
-DIST ardour-5.10.tar.bz2 8844840 BLAKE2B 
5dd0834b96e56d6ae215f30ab70a28e1cc5f1045ce1c118977fc7dd58e80b8093f1337d4836ca1b68035da7f6f600b36009c6d853e9e001f4f7d549ea62626e2
 SHA512 
4dc8c43ed81b931e855f4a19b5674712a8322edaa06f466d5dd0eb93076a67da12795944c8f17b30b89bb5e87f54279fc2b21d147d48e98e5cb69a3f965a8bb8
 DIST ardour-5.12.tar.bz2 8852834 BLAKE2B 
0409d920ab0abc9e52a40cc343c5481d53292bea6e5c89c58328f95c53f7f09f30ce421f2ed0da0e3fdb4eaeeb5a25da0d07ed1d4c382b5b607f3b89324eca1b
 SHA512 
c4b4332bddb2406924119c181622801725f4a7dd7741c1a66ddbc2236542764b786337da2f0a751f3bbe6e0389b5da765eb19b14a6a90c8f8a7fd68231e5067d
-DIST ardour-5.3.tar.bz2 8244811 BLAKE2B 
d2635ef720c03ec84bf481f09244c6fad78b857dcda52d7a40e0da9ce5c0a37f9cf5c8355429f86e17ddccb857a7b75c07481408dae2f10b8c71215e9ef8fa9e
 SHA512 
464c311cd3f3f4a580ad451be7a8143a3f2f7454364426c952e757999aba92af6611d0bc31f4d5e0ca301a3c79e4cd1ec19b01ec9941f34e6fa4cf338149291f
-DIST ardour-5.5.tar.bz2 9237459 BLAKE2B 
71e967202e46a7e7db1fc2717a8d27470e411dd686a5fd858da57aff72be1e277e20bd9f2568073cc91d21b6124af3ac3bf6024781fae344b83f4900025dc838
 SHA512 
63132681dda7890b8f455a8142935f0bdce28e718b98d1d79a9207ad86b25d31698285d28871bb5043b3b859efd8b1fb8b7b7324fa3abd952a7a9c8e1691e09c
-DIST ardour-5.6.tar.bz2 8590451 BLAKE2B 
ffafbac62d5bddfff2f4b4bda92692c1c7644050eec444e209f6b4d3b5c300c7ee39d46cd249196ca64b8a43c8716e5fc35272895dd059061669de629100697a
 SHA512 
6d7c72f4bb91e0d9d63dfb2273108e3f61bddac9c21f1f58fe6cb73d5f0a028e735d226c3aa2d1404916b566a103d556a2934b083a4c5d629ec7e28c0abd34f9
-DIST ardour-5.8.tar.bz2 8669692 BLAKE2B 
6628d0c6f81feb96f1d3bc5453cbeb3d5d7c012a2efa1e800d84fd1101c651bb4092e599ef6725507c6243a94107242a496b1b4f6df884bcaa8954c0f71a6861
 SHA512 
96b3a81f8c48f66839fb8cddeec5ed0c4a95a6092eab15eacb69007cf093cc6572c308e37c8acbc0194eeecf809980c22c04449fe65d683c298d8d0611e7950e
-DIST ardour-5.9.tar.bz2 8830842 BLAKE2B 
4c025475528f7b0b58b18b9a075abab4805efa538af774bd7aa4b86da98c4df1ee639bb253f4326a11924d577c49a7af8c77098edf63a76205c60880bdac31b3
 SHA512 
1ba713f3953456260df9d183b30730c959f2707f8c9dd1280a3ab5eb5d9dbdd0e81db98150346f60f777f6bd02eeaaf9f9bcf43cf2ec0b5addce3b50fcbf7413

diff --git a/media-sound/ardour/ardour-2.8.16-r1.ebuild 
b/media-sound/ardour/ardour-2.8.16-r1.ebuild
deleted file mode 100644
index 20db704fb18..000
--- a/media-sound/ardour/ardour-2.8.16-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils flag-o-matic toolchain-funcs scons-utils
-
-DESCRIPTION="Digital Audio Wo

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

2018-06-11 Thread Lars Wendler
commit: 1fcf255e57f136a173040ef65caa2bdc4f12ef4d
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 11 21:16:58 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 11 21:18:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fcf255e

net-dialup/ppp: Security revbump fixing pppd EAP-TLS buffer overflow

(CVE-2018-11574)

Bug: https://bugs.gentoo.org/657656
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-dialup/ppp/Manifest|   1 +
 net-dialup/ppp/ppp-2.4.7-r6.ebuild | 222 +
 2 files changed, 223 insertions(+)

diff --git a/net-dialup/ppp/Manifest b/net-dialup/ppp/Manifest
index 4d3ce3942a1..4ba1d0eff35 100644
--- a/net-dialup/ppp/Manifest
+++ b/net-dialup/ppp/Manifest
@@ -1,4 +1,5 @@
 DIST ppp-2.4.7-patches-4.tar.xz 37308 BLAKE2B 
a53ab7c230fac7fea38910c5d9bb89b8ecb8728e899ed938292040e788b43ab8566797256329c9326ab1e6d7a02bf231df035a6e7b427f187eab554d600a7822
 SHA512 
f217f7272a791605101e0f1885350db8ff8b580a647e670461b81fe0026ee9050ce68b9b9635edee89ec1ada7adf000c7e6b3aa5a5dafec875ce715a9dfb84d2
 DIST ppp-2.4.7-patches-5.tar.xz 38680 BLAKE2B 
56e4d3a5bc2486144791adf6ffb8a6cf0735f16fa8038a588f551d0fe7a71a15fe0d0630e4b5e3c4e0001ad161e22b660274885342807053277da14105958a69
 SHA512 
f8cdbb8fd4bf10eb5b4e911f1e8415f24d02297280aa6f5e63617c0533af41525bd54932eb050728320a2697efe5206d869f014bcfb8f8f3723ecefed1976adc
+DIST ppp-2.4.7-patches-6.tar.xz 39420 BLAKE2B 
22754af6f266ff43f6b3cc2931ca33e9d0865ce08b8eed6961740a3a06ec69b6406c702a86e7f4a7b2f7dc9e2a751581ae58cd4398cff5e6646e53ee069e08d7
 SHA512 
16342010515e6d69d446656b52208e3f034c47aad8643a1e2f48fa410343f8a2e0bc8b5223b4bdc381050d9dc49a7b7ac6bc74b37380072eb91214b216d8afa2
 DIST ppp-2.4.7.tar.gz 688117 BLAKE2B 
e1c94ce31d98674536929d19e956e4013eb2b02c20c34e6184c0b99b50262ad1cd7fb6f4a1ed302872527a0c164af340e15ad1e2eaf191392c3f6ae2de21f5dd
 SHA512 
e34ce24020af6a73e7a26c83c4f73a9c83fa455b7b363794dba27bf01f70368be06bff779777843949bd77f4bc9385d6ad455ea48bf8fff4e0d73cc8fef16ae2
 DIST ppp-dhcpc.tgz 33497 BLAKE2B 
ca59130012f007cf45af6bcfa468c112b0d521c8b11f42d42c566dd9de55bd6d6f1b1ceb83cbae18cfe79cb5cb36ba6c6858a4718915acc6987295008aca53da
 SHA512 
aeaf791b14f5a09c0e2079072a157e65132cbff46e608bc0724e6a5827a01da934f5006e2774eb7105f83e607a52cb4987238f4385cf6f5cc86cbe305a556738

diff --git a/net-dialup/ppp/ppp-2.4.7-r6.ebuild 
b/net-dialup/ppp/ppp-2.4.7-r6.ebuild
new file mode 100644
index 000..e0179693dca
--- /dev/null
+++ b/net-dialup/ppp/ppp-2.4.7-r6.ebuild
@@ -0,0 +1,222 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit linux-info multilib pam toolchain-funcs
+
+PATCH_VER="6"
+DESCRIPTION="Point-to-Point Protocol (PPP)"
+HOMEPAGE="https://ppp.samba.org/";
+SRC_URI="https://download.samba.org/pub/ppp/${P}.tar.gz
+   https://dev.gentoo.org/~polynomial-c/${P}-patches-${PATCH_VER}.tar.xz
+   http://www.netservers.net.uk/gpl/ppp-dhcpc.tgz";
+
+LICENSE="BSD GPL-2"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+IUSE="activefilter atm dhcp eap-tls gtk ipv6 libressl pam radius"
+
+DEPEND="activefilter? ( net-libs/libpcap )
+   atm? ( net-dialup/linux-atm )
+   pam? ( virtual/pam )
+   gtk? ( x11-libs/gtk+:2 )
+   eap-tls? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   )"
+RDEPEND="${DEPEND}"
+PDEPEND="net-dialup/ppp-scripts"
+
+src_prepare() {
+   mv "${WORKDIR}/dhcp" "${S}/pppd/plugins" || die
+
+   if ! use eap-tls ; then
+   rm "${WORKDIR}"/patch/8?_all_eaptls-* || die
+   fi
+   eapply "${WORKDIR}"/patch
+
+   if use atm ; then
+   einfo "Enabling PPPoATM support"
+   sed -i '/^#HAVE_LIBATM=yes/s:#::' \
+   pppd/plugins/pppoatm/Makefile.linux || die
+   fi
+
+   if ! use activefilter ; then
+   einfo "Disabling active filter"
+   sed -i '/^FILTER=y/s:^:#:' pppd/Makefile.linux || die
+   fi
+
+   if use pam ; then
+   einfo "Enabling PAM"
+   sed -i '/^#USE_PAM=y/s:^#::' pppd/Makefile.linux || die
+   fi
+
+   if use ipv6 ; then
+   einfo "Enabling IPv6"
+   sed -i '/#HAVE_INET6/s:#::' pppd/Makefile.linux || die
+   echo "+ipv6" >> etc.ppp/options || die
+   fi
+
+   einfo "Enabling CBCP"
+   sed -i '/^#CBCP=y/s:#::' pppd/Makefile.linux || die
+
+   if use dhcp ; then
+   einfo "Adding ppp-dhcp plugin files"
+   sed \
+   -e '/^SUBDIRS :=/s:$: dhcp:' \
+   -i pppd/plugins/Makefile.linux || die
+   fi
+
+   # Set correct libdir
+   sed -i -e "s:/lib/pppd:/$(get_libdir)/pppd:" \
+   pppd/{pathnames.h,pppd.8} || die
+
+   if use radius ; then
+  

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

2018-06-11 Thread Andreas Sturmlechner
commit: 9d3e73fe22ba46dfcf1457921cb1e5523e3332ab
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 11 20:48:21 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 11 20:51:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d3e73fe

dev-libs/granite: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-libs/granite/Manifest  |  3 -
 .../granite/files/granite-0.3.0-build-fix.patch| 22 
 .../granite/files/granite-0.3.0-build-fix2.patch   | 13 -
 .../granite/files/granite-0.3.0-build-fix3.patch   | 24 
 dev-libs/granite/granite-0.2.1.ebuild  | 56 ---
 dev-libs/granite/granite-0.2.3.1.ebuild| 58 
 dev-libs/granite/granite-0.3.0.ebuild  | 64 --
 7 files changed, 240 deletions(-)

diff --git a/dev-libs/granite/Manifest b/dev-libs/granite/Manifest
index ae5ec018283..e957f18e4c4 100644
--- a/dev-libs/granite/Manifest
+++ b/dev-libs/granite/Manifest
@@ -1,4 +1 @@
-DIST granite-0.2.1.tar.gz 146871 BLAKE2B 
300aac52a3d383adbc0668169abcfa1d171705694d909c0053fc8c0881f7e8ff9724a86f218316245a2e0b88a4d986c14e68e0d37e7a159fc2e619d62c9cdc72
 SHA512 
a9cbe43e836c1e5430260bb8643b63b6712c17a60c184ed7105a9e96eb68e8107c09de655f58262a1dcab85cfb59beb18352b49a5ddb0817f9aff7b86d1e2bb1
-DIST granite-0.2.3.1.tgz 152607 BLAKE2B 
57720ad6ab0502adde57a89a291f3114f217e931399db34356cb97687c5ae4bc7973bf33285e86a1f2227c0982bc1a13bfffc52cafbc0d6cd01d980050ad1f9b
 SHA512 
c4db7d3a9e65178fa961761355fdf4d3795513a5a8d0ba5a448761336817a0de027382421a86213b434449f257f3c869b6275357acb732b6dd382cf5ea86eca8
-DIST granite-0.3.0.tar.gz 285072 BLAKE2B 
21cb3d7216fd18d18f96e50b69a75db5127319c36129bd584b29cb359905cf4439163969b727dfa1decc642d03902390fbb656a5a76da6ad474475694d122590
 SHA512 
3ebbb7453b770f8b5b98cee0f96db8443d7583af0117b2d34c9daa82bf36d25418e0fcf61118e7551ced91e751d8b032998dc9cca2569e61c7227666c4383872
 DIST granite-0.5.0.tar.gz 365015 BLAKE2B 
47b88d0b08a300fecc561161e1722cc1a544f58580d21244b6584f6aba7756afe6548dd663620fe9a09406fc0be2766b1d1093a21d262a5ab001992f309239ed
 SHA512 
6042f40c1338768281ab3e6ad0bfdd8c5c69fc4951a069b0779a22b8999b35110ea8f09cf025dd88bafef7eca6cc0d076a608d55f01c078186e150908f8e4650

diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix.patch 
b/dev-libs/granite/files/granite-0.3.0-build-fix.patch
deleted file mode 100644
index f93a3c65df3..000
--- a/dev-libs/granite/files/granite-0.3.0-build-fix.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-=== modified file 'lib/Widgets/ContractorView.vala'
 lib/Widgets/ContractorView.vala2014-09-04 12:39:00 +
-+++ lib/Widgets/ContractorView.vala2015-03-23 05:21:46 +
-@@ -35,7 +35,7 @@
- public delegate void ContractCallback ();
- private Gee.HashMap outsiders;
- private int[] blacklisted_pos;
--private ListStore list;
-+private Gtk.ListStore list;
- 
- private struct DelegateWrapper { unowned ContractCallback method; }
- 
-@@ -73,7 +73,7 @@
-  */
- public ContractorView (string filename, string mime, int icon_size = 32, 
bool show_contract_name = true) {
- /* Setup the ListStore */
--list = new ListStore (2, typeof (Gdk.Pixbuf), typeof (string));
-+list = new Gtk.ListStore (2, typeof (Gdk.Pixbuf), typeof (string));
- outsiders = new Gee.HashMap ();
- this.model = list;
- 
-

diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix2.patch 
b/dev-libs/granite/files/granite-0.3.0-build-fix2.patch
deleted file mode 100644
index 7c6bcb9236e..000
--- a/dev-libs/granite/files/granite-0.3.0-build-fix2.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-=== modified file 'lib/Widgets/DynamicNotebook.vala'
 lib/Widgets/DynamicNotebook.vala   2014-08-30 13:28:37 +
-+++ lib/Widgets/DynamicNotebook.vala   2014-09-23 13:43:11 +
-@@ -941,7 +941,7 @@
- notebook.create_window.connect (on_create_window);
- }
- 
--~Notebook () {
-+~DynamicNotebook () {
- notebook.switch_page.disconnect (on_switch_page);
- notebook.page_added.disconnect (on_page_added);
- notebook.page_removed.disconnect (on_page_removed);
-

diff --git a/dev-libs/granite/files/granite-0.3.0-build-fix3.patch 
b/dev-libs/granite/files/granite-0.3.0-build-fix3.patch
deleted file mode 100644
index 145d552c7a0..000
--- a/dev-libs/granite/files/granite-0.3.0-build-fix3.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-=== modified file 'lib/Widgets/DynamicNotebook.vala'
 lib/Widgets/DynamicNotebook.vala   2014-07-31 12:41:52 +
-+++ lib/Widgets/DynamicNotebook.vala   2014-08-30 13:28:37 +
-@@ -658,10 +658,19 @@
-/**
- * The text shown in the add button tooltip
- */
-+#if VALA_0_26
-+public string add_button_tooltip {
-+get { _add_button_tooltip = add_button.tooltip_text; return 
_add

[gentoo-commits] repo/gentoo:master commit in: sci-visualization/paraview/

2018-06-11 Thread Andreas Sturmlechner
commit: 5bc713b633f2e67fffdcb1546395badcc0249f88
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun  3 12:29:28 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 11 20:51:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc713b6

sci-visualization/paraview: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-visualization/paraview/Manifest  |   1 -
 sci-visualization/paraview/paraview-5.3.0.ebuild | 284 ---
 2 files changed, 285 deletions(-)

diff --git a/sci-visualization/paraview/Manifest 
b/sci-visualization/paraview/Manifest
index 90a7a061616..d5bfb74ff34 100644
--- a/sci-visualization/paraview/Manifest
+++ b/sci-visualization/paraview/Manifest
@@ -1,3 +1,2 @@
-DIST ParaView-v5.3.0.tar.gz 45173528 BLAKE2B 
878e8dae0b5de4bee5d72a4a272a5048fa587fac8e949d39c8e040b9fe3553b787e53f183ae98d20f24755db7e355280b85a9f572037764c53740de2eb4a9e30
 SHA512 
3dc3c2a1c27a0f0dc82fc04ce84477a26aacb329d6ea42c276c4204e39d11bc78adbc1807e1e7168aade31aa48b6d628775841b8b94b5122084eac46e358a23f
 DIST ParaView-v5.4.1.tar.gz 43783720 BLAKE2B 
2197d7f390b7192eb58ad67b88c84119da35fc4229547a42ef12a600874304addb410d0a53684a785855f617011762bf6a819231821f0bff8ee226111df8e577
 SHA512 
6a720f9ed9e03b7b97f0e84bb6d67b2a28c4ffc5079427d544e9522ce313264eed273c9b7ae13b11e34ab4de903132a22bacc337452d1e9da9876416449520f5
 DIST ParaView-v5.5.0.tar.gz 51414419 BLAKE2B 
832a01701d21f463c07186912501796756c2477063803fa3b2b67dbb9ac2c9db28a45a8b3d22077085255adf16eb429c3289093848b3712ebab46c0ae4c17956
 SHA512 
0915eac75a710736334fa9d436369a14546e2f90a1b55f9a0f7a96fedb94ced043d27576d2a179f275478be17e326cd3bee76f06266a776d586f6510722f3172

diff --git a/sci-visualization/paraview/paraview-5.3.0.ebuild 
b/sci-visualization/paraview/paraview-5.3.0.ebuild
deleted file mode 100644
index ea2160482ea..000
--- a/sci-visualization/paraview/paraview-5.3.0.ebuild
+++ /dev/null
@@ -1,284 +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 eutils cmake-utils multilib python-single-r1 toolchain-funcs 
versionator
-
-MAIN_PV=$(get_major_version)
-MAJOR_PV=$(get_version_component_range 1-2)
-MY_P="ParaView-v${PV}"
-
-DESCRIPTION="ParaView is a powerful scientific data visualization application"
-HOMEPAGE="http://www.paraview.org";
-SRC_URI="http://www.paraview.org/files/v${MAJOR_PV}/${MY_P}.tar.gz";
-RESTRICT="mirror"
-
-LICENSE="paraview GPL-2"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-IUSE="boost cg coprocessing development doc examples ffmpeg mpi mysql 
nvcontrol openmp plugins python +qt5 sqlite tcl test tk"
-RESTRICT="test"
-
-REQUIRED_USE="python? ( mpi ${PYTHON_REQUIRED_USE} )
-   mysql? ( sqlite )" # "vtksqlite, needed by vtkIOSQL" and "vtkIOSQL, 
needed by vtkIOMySQL"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/jsoncpp
-   dev-libs/libxml2:2
-   dev-libs/protobuf
-   media-libs/freetype
-   media-libs/libpng:0
-   media-libs/libtheora
-   media-libs/tiff:0=
-   sci-libs/hdf5[mpi=]
-   >=sci-libs/netcdf-4.2[hdf5]
-   >=sci-libs/netcdf-cxx-4.2:3
-   sys-libs/zlib
-   virtual/jpeg:0
-   virtual/opengl
-   virtual/glu
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXmu
-   x11-libs/libXt
-   coprocessing? (
-   plugins? (
-   dev-python/PyQt5
-   dev-qt/qtgui:5[-gles2]
-   )
-   )
-   ffmpeg? ( virtual/ffmpeg )
-   mpi? ( virtual/mpi[cxx,romio] )
-   mysql? ( virtual/mysql )
-   python? (
-   ${PYTHON_DEPS}
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/sip[${PYTHON_USEDEP}]
-   dev-python/twisted-core
-   dev-python/zope-interface[${PYTHON_USEDEP}]
-   mpi? ( dev-python/mpi4py )
-   qt5? ( dev-python/PyQt5[opengl,webkit,${PYTHON_USEDEP}] )
-   )
-   qt5? (
-   dev-qt/designer:5
-   dev-qt/qtgui:5[-gles2]
-   dev-qt/qthelp:5
-   dev-qt/qtopengl:5[-gles2]
-   dev-qt/qtsql:5
-   dev-qt/qttest:5
-   dev-qt/qtwebkit:5
-   dev-qt/qtx11extras:5
-   )
-   sqlite? ( dev-db/sqlite:3 )
-   tcl? ( dev-lang/tcl:0= )
-   tk? ( dev-lang/tk:0= )"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   >=dev-util/cmake-3.4
-   boost? ( >=dev-libs/boost-1.40.0[mpi?,${PYTHON_USEDEP}] )
-   doc? ( app-doc/doxygen )"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-4.0.1-xdmf-cstring.patch
-   "${FILESDIR}"/${PN}-5.3.0-fix_buildsystem.patch
-)
-
-pkg_pretend() {
-   if [[ ${MERGE_TYPE} != "binary" ]] && use openmp && [[ $(tc-getCC)$ == 
*gcc* ]] && ! tc-has-openmp; then
-   eerr

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

2018-06-11 Thread Ole Reifschneider
commit: c57478609a5a0e68fff8da5965260215d02179ba
Author: Ole Reifschneider  gentoo  org>
AuthorDate: Mon Jun 11 20:49:36 2018 +
Commit: Ole Reifschneider  gentoo  org>
CommitDate: Mon Jun 11 20:50:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5747860

dev-ruby/neovim-ruby-client: Clean old

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 dev-ruby/neovim-ruby-client/Manifest  |  4 
 .../neovim-ruby-client-0.3.0.ebuild   | 19 ---
 .../neovim-ruby-client-0.3.1.ebuild   | 19 ---
 .../neovim-ruby-client-0.3.2.ebuild   | 19 ---
 .../neovim-ruby-client-0.4.0.ebuild   | 19 ---
 5 files changed, 80 deletions(-)

diff --git a/dev-ruby/neovim-ruby-client/Manifest 
b/dev-ruby/neovim-ruby-client/Manifest
index fed6f886250..0688815b43e 100644
--- a/dev-ruby/neovim-ruby-client/Manifest
+++ b/dev-ruby/neovim-ruby-client/Manifest
@@ -1,6 +1,2 @@
-DIST neovim-0.3.0.gem 32256 BLAKE2B 
43582130775bf4ed3fbdbb586f78ab93eb81f789daa2d101efbdad31adf7ceb5befbdd7663f8c52dcb56e7845dc173e631a70ba5c424e722b2cc6f01d6192a3f
 SHA512 
ba6494da2022b50942df22a91c54674bd66794c1a60f62c5c08886232f93a66465f9d696ce5a84399f09a1dfcb1eea4edc96f752770e23e47b041c32c4f0c594
-DIST neovim-0.3.1.gem 34304 BLAKE2B 
6a979d7355e69a6169ca0b7c11df70742a0b718201027083435ecbcb869b560d3d229cd34887a4e9618a0fbaa322a7f4a8b7083fbaf160e8dce04a8634741a2d
 SHA512 
1e786fa4cfb37f6769c2f717508eabbb4892c9c04a530036d7db481995e341040dd43648e77c7c00f183490ae21c08d4ae6f8379cd8800f967f54fd46c3b72a4
-DIST neovim-0.3.2.gem 35328 BLAKE2B 
83a0122a2eb52ef6487e2fcf59b49561f0257f8e5fc89f22995f85018ce7263d8325510187108c6b16c6b16e8e9d9390c718e79a7820ec9f8285f711bcc7911b
 SHA512 
252f8bf13c190ae138074e6fc90391c22cb56b9c8679af13ba1e914a57cbc1206ec296457763d2e41955ade17d0aafc0f61b81ceb9d94f3b3d7cdfb17f7aa404
-DIST neovim-0.4.0.gem 37888 BLAKE2B 
9e14aa3a643a1bea7b1836b387ed1fc78ee500352c8d34597fb85c0c36534f5fd8a7292a5b75d22bcaab73215301e98abea6c7cc2eacab340ebd4d6874ccaeb3
 SHA512 
0583c3bb108d8fdc19fe992f8879e65bec2e4cb94a985a7caa73d47cca58253eae43950671e3365b68a715362b54cafdb62b23367f893e48bdc0b32e746bd16e
 DIST neovim-0.5.1.gem 47104 BLAKE2B 
030448fb6df7d88dcb6440d9856f373c8e553c98c4ef769f18b517be6e104e35b78fb0bf1dd2e3aba8201367d2b89ea17105bbf84d31c1ee72632b7efb5ae894
 SHA512 
2c54292c426364e082e785eabd4046997db3e63e0679c29be60d58d3bec1a646afa6dd2eec764e2941d8214a62e9c9045a19ddb7df6fd6e5146f5bce091f8a79
 DIST neovim-0.7.1.gem 40960 BLAKE2B 
9f23c0f754c696b28679c839132c8fe4d9d7095249966187c1d378cd89b5468ae98349e7ef044a9ae3749443a0cb97206f1fed3617192afea31680a86b3124b7
 SHA512 
075de15135ab11f268211a2db90766d1de9e7581d945513c0fe2a1abb4f9dcba1f5814b62e91f2a615015eeb1dbd54ffa0f4edd0acd71ea635046963074ad32a

diff --git a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.0.ebuild 
b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.0.ebuild
deleted file mode 100644
index 8d760c0d3e4..000
--- a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_NAME="neovim"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby bindings for Neovim"
-HOMEPAGE="https://github.com/alexgenco/neovim-ruby";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-ruby_add_rdepend ">=dev-ruby/msgpack-1.0.0"

diff --git a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.1.ebuild 
b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.1.ebuild
deleted file mode 100644
index 8d760c0d3e4..000
--- a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_NAME="neovim"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby bindings for Neovim"
-HOMEPAGE="https://github.com/alexgenco/neovim-ruby";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-ruby_add_rdepend ">=dev-ruby/msgpack-1.0.0"

diff --git a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.2.ebuild 
b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.2.ebuild
deleted file mode 100644
index 074e014df7e..000
--- a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.3.2.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_NAME="neovim"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby bindings for Neovim"
-HOMEPAGE="https://github.com/alexgenco/neovim-ruby";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-ruby_add_rdep

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

2018-06-11 Thread Ole Reifschneider
commit: 51c1d481752dc8da26dd8432b1e6dd209a59225d
Author: Ole Reifschneider  gentoo  org>
AuthorDate: Mon Jun 11 20:48:56 2018 +
Commit: Ole Reifschneider  gentoo  org>
CommitDate: Mon Jun 11 20:50:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c1d481

dev-ruby/neovim-ruby-client: Bump version to 0.7.1

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 dev-ruby/neovim-ruby-client/Manifest |  1 +
 .../neovim-ruby-client-0.7.1.ebuild  | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-ruby/neovim-ruby-client/Manifest 
b/dev-ruby/neovim-ruby-client/Manifest
index fabf11b2230..fed6f886250 100644
--- a/dev-ruby/neovim-ruby-client/Manifest
+++ b/dev-ruby/neovim-ruby-client/Manifest
@@ -3,3 +3,4 @@ DIST neovim-0.3.1.gem 34304 BLAKE2B 
6a979d7355e69a6169ca0b7c11df70742a0b71820102
 DIST neovim-0.3.2.gem 35328 BLAKE2B 
83a0122a2eb52ef6487e2fcf59b49561f0257f8e5fc89f22995f85018ce7263d8325510187108c6b16c6b16e8e9d9390c718e79a7820ec9f8285f711bcc7911b
 SHA512 
252f8bf13c190ae138074e6fc90391c22cb56b9c8679af13ba1e914a57cbc1206ec296457763d2e41955ade17d0aafc0f61b81ceb9d94f3b3d7cdfb17f7aa404
 DIST neovim-0.4.0.gem 37888 BLAKE2B 
9e14aa3a643a1bea7b1836b387ed1fc78ee500352c8d34597fb85c0c36534f5fd8a7292a5b75d22bcaab73215301e98abea6c7cc2eacab340ebd4d6874ccaeb3
 SHA512 
0583c3bb108d8fdc19fe992f8879e65bec2e4cb94a985a7caa73d47cca58253eae43950671e3365b68a715362b54cafdb62b23367f893e48bdc0b32e746bd16e
 DIST neovim-0.5.1.gem 47104 BLAKE2B 
030448fb6df7d88dcb6440d9856f373c8e553c98c4ef769f18b517be6e104e35b78fb0bf1dd2e3aba8201367d2b89ea17105bbf84d31c1ee72632b7efb5ae894
 SHA512 
2c54292c426364e082e785eabd4046997db3e63e0679c29be60d58d3bec1a646afa6dd2eec764e2941d8214a62e9c9045a19ddb7df6fd6e5146f5bce091f8a79
+DIST neovim-0.7.1.gem 40960 BLAKE2B 
9f23c0f754c696b28679c839132c8fe4d9d7095249966187c1d378cd89b5468ae98349e7ef044a9ae3749443a0cb97206f1fed3617192afea31680a86b3124b7
 SHA512 
075de15135ab11f268211a2db90766d1de9e7581d945513c0fe2a1abb4f9dcba1f5814b62e91f2a615015eeb1dbd54ffa0f4edd0acd71ea635046963074ad32a

diff --git a/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.1.ebuild 
b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.1.ebuild
new file mode 100644
index 000..0aad7aca7be
--- /dev/null
+++ b/dev-ruby/neovim-ruby-client/neovim-ruby-client-0.7.1.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_NAME="neovim"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby bindings for Neovim"
+HOMEPAGE="https://github.com/alexgenco/neovim-ruby";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+ruby_add_rdepend ">=dev-ruby/msgpack-1.0.0"
+ruby_add_rdepend ">=dev-ruby/multi_json-1.0.0"



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

2018-06-11 Thread Ole Reifschneider
commit: 8bd012c26359a110fe321eb899f67e805c2735fa
Author: Ole Reifschneider  gentoo  org>
AuthorDate: Mon Jun 11 20:44:40 2018 +
Commit: Ole Reifschneider  gentoo  org>
CommitDate: Mon Jun 11 20:50:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd012c2

dev-python/neovim-python-client: Bump version to 0.3.0

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 dev-python/neovim-python-client/Manifest   |  1 +
 .../neovim-python-client-0.2.6.ebuild  | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/neovim-python-client/Manifest 
b/dev-python/neovim-python-client/Manifest
index 3007ba10674..3c39a25efb5 100644
--- a/dev-python/neovim-python-client/Manifest
+++ b/dev-python/neovim-python-client/Manifest
@@ -1,3 +1,4 @@
 DIST neovim-python-client-0.1.13.tar.gz 41413 BLAKE2B 
819c3e7763cfb357d45130928dab23ad149a5f9d8efb0df8699a805bc394662447837ad3edc869705a95d74a37f2eec4f155212da918ac779d389c150a0d7189
 SHA512 
ecef42601632551c98f8de019bfdf4dbff3ce1f0e1b6943b78a506b710e5810f6a7e611adc09435992b97288ff365a416870a74202a5c68236b5daeb51d15c8b
 DIST neovim-python-client-0.2.1.tar.gz 41971 BLAKE2B 
9ebff937e08963cb8c764c4dcfcef8b6e28e8d0219635f9602ccc77b0bf4412a797de71fbf149bcaafe85bd1122a0d3cec1d8bfa81217c8c2d5a89bc1772c572
 SHA512 
710be7f5355077fa1eae256c541a06d475902492a19638c5786e25aafb9181f40afcc8df70aca0da15a569a9d6b095ab7bd8008e4f947725cf081954fb7c042e
 DIST neovim-python-client-0.2.4.tar.gz 47216 BLAKE2B 
029bc18936fcd23518ee0b80e5396b2ad9477a4395c27ca5d7e30f897599b47d68529cfe0febafae321a2dc9bb8dfd7cdcdde97225e166bae0565bd301598a4b
 SHA512 
38dcd146060d1942d5ab58ab036f39667b908719b1fc48f79c0bd2b82cf458c3ef6750ccf6d0e4b5bdb71b42a9e5666c008f03a46b07801f2ea8435dec8c716a
+DIST neovim-python-client-0.2.6.tar.gz 50170 BLAKE2B 
d241ae0019bb8a4f08abf11866d7c964425d96756452e7bafb95fbce1795657c6911cf6bb706f5efa46ac3f5bd2c4af23ade9b9677d8f1f94905d72a39ddfde5
 SHA512 
a493c1e6be6a196d35e69e6b6b6a7752e939a254ed423079468c0e13ce40c2646ee8d65482648ea37a9d9c53b4f2c50cdd5e6c8dc130e63a7e40f424c4f4a9c0

diff --git a/dev-python/neovim-python-client/neovim-python-client-0.2.6.ebuild 
b/dev-python/neovim-python-client/neovim-python-client-0.2.6.ebuild
new file mode 100644
index 000..fba1505898d
--- /dev/null
+++ b/dev-python/neovim-python-client/neovim-python-client-0.2.6.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+inherit distutils-r1
+
+DESCRIPTION="Python client for Neovim"
+HOMEPAGE="https://github.com/neovim/python-client";
+SRC_URI="https://github.com/neovim/python-client/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   >=dev-python/msgpack-0.5.2[${PYTHON_USEDEP}]
+   virtual/python-greenlet[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/trollius[${PYTHON_USEDEP}]' 
python2_7)"
+
+RDEPEND="
+   ${DEPEND}
+   >=app-editors/neovim-0.2.1"
+
+S="${WORKDIR}/python-client-${PV}"
+
+python_prepare_all() {
+   # allow useage of renamed msgpack
+   sed -i '/^msgpack/d' setup.py || die
+   distutils-r1_python_prepare_all
+}



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

2018-06-11 Thread Ole Reifschneider
commit: 49f538ff410119e94b37eeb2990366223fd0aa9f
Author: Ole Reifschneider  gentoo  org>
AuthorDate: Mon Jun 11 20:43:24 2018 +
Commit: Ole Reifschneider  gentoo  org>
CommitDate: Mon Jun 11 20:50:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f538ff

app-editors/neovim: Bump version to 0.3.0

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 app-editors/neovim/Manifest|  1 +
 app-editors/neovim/neovim-0.3.0.ebuild | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/app-editors/neovim/Manifest b/app-editors/neovim/Manifest
index 4950cc63115..26d9e88a82c 100644
--- a/app-editors/neovim/Manifest
+++ b/app-editors/neovim/Manifest
@@ -1,2 +1,3 @@
 DIST neovim-0.2.0.tar.gz 7846467 BLAKE2B 
ee929122b3855ccab6247a0e8ab975b09d77e1034229ea324ed82ad705cacbd39f55d2fa96eea3f3677c7efe64c69ebecedd5fde09e508a6fd23acb6a1f5b489
 SHA512 
fc4be03c5bee1c9928376938679f9a900f3ee2e58df817d1cb9b5af51350dccca63a7638114b0326ec4565a047faaa4b50fecfc932c1d59ee92efa54625e22cd
 DIST neovim-0.2.2.tar.gz 8325879 BLAKE2B 
dbf43c5927b8c8719adae9a3f73c57429de47f1b7c7489a118b7467df2f0d32cd02df8e10889727b4dd77fe8b4fb4f95520c678d6775d5d908705770a47cec0c
 SHA512 
5609defe86ac98356f1b9ae9adc6049bb4df920a9a2ae3104f761d52d4dd54cbc84d2596231595dd9b0aa97201fef2121e6c5c86a19267ab6b871dbf4b568209
+DIST neovim-0.3.0.tar.gz 8903630 BLAKE2B 
44936f0042be1771725a42168865d65f9afe048c116ed0d5f1542dffd8206a21dc4cbab1e08e97fdc27083251655c43df0451c5808ed6c6ad99eb2d582c55b9b
 SHA512 
8944be5562a69d5da5bce3a6673cc0b1930eb5592eb15c40139a1991f89f63435141449e7b4371ee28ff426575fcad475396e3d982004e17a902bda1d8ae6a95

diff --git a/app-editors/neovim/neovim-0.3.0.ebuild 
b/app-editors/neovim/neovim-0.3.0.ebuild
new file mode 100644
index 000..b25617fdef5
--- /dev/null
+++ b/app-editors/neovim/neovim-0.3.0.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils xdg-utils
+
+DESCRIPTION="Vim-fork focused on extensibility and agility."
+HOMEPAGE="https://neovim.io";
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/neovim/neovim.git";
+else
+   SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="Apache-2.0 vim"
+SLOT="0"
+IUSE="+clipboard +luajit +nvimpager python remote ruby +tui +jemalloc"
+
+CDEPEND=">=dev-libs/libuv-1.2.0
+   >=dev-libs/msgpack-1.0.0
+   luajit? ( dev-lang/luajit:2 )
+   !luajit? (
+   dev-lang/lua:=
+   dev-lua/LuaBitOp
+   )
+   tui? (
+   >=dev-libs/libtermkey-0.19
+   >=dev-libs/unibilium-1.1.1:=
+   )
+   dev-libs/libvterm
+   dev-lua/lpeg[luajit=]
+   dev-lua/mpack[luajit=]
+   jemalloc? ( dev-libs/jemalloc )"
+
+DEPEND="
+   ${CDEPEND}
+   dev-util/gperf
+   virtual/libiconv
+   virtual/libintl"
+
+RDEPEND="
+   ${CDEPEND}
+   python? ( dev-python/neovim-python-client )
+   ruby? ( dev-ruby/neovim-ruby-client )
+   remote? ( dev-python/neovim-remote )
+   clipboard? ( || ( x11-misc/xsel x11-misc/xclip ) )"
+
+CMAKE_BUILD_TYPE=Release
+
+src_prepare() {
+   # use our system vim dir
+   sed -e '/^# define SYS_VIMRC_FILE/s|$VIM|'"${EPREFIX}"'/etc/vim|' \
+   -i src/nvim/globals.h || die
+
+   # add eclass to bash filetypes
+   sed -e 's|*.ebuild|*.ebuild,*.eclass|' -i runtime/filetype.vim || die
+
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DFEAT_TUI=$(usex tui)
+   -DENABLE_JEMALLOC=$(usex jemalloc)
+   -DPREFER_LUA=$(usex luajit no yes)
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   # install a default configuration file
+   insinto /etc/vim
+   doins "${FILESDIR}"/sysinit.vim
+
+   # conditionally install a symlink for nvimpager
+   if use nvimpager; then
+   dosym ../share/nvim/runtime/macros/less.sh /usr/bin/nvimpager
+   fi
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/gflags/, dev-cpp/gflags/files/

2018-06-11 Thread Andreas Sturmlechner
commit: 6e5e22032193c81fd1231a772062ceac9f1b81d1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jun  3 14:06:25 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 11 20:19:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5e2203

dev-cpp/gflags: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-cpp/gflags/Manifest  |  2 --
 dev-cpp/gflags/files/gflags-2.1.1-libs.patch | 45 
 dev-cpp/gflags/gflags-2.1.1-r1.ebuild| 32 
 dev-cpp/gflags/gflags-2.1.2.ebuild   | 30 ---
 4 files changed, 109 deletions(-)

diff --git a/dev-cpp/gflags/Manifest b/dev-cpp/gflags/Manifest
index 3e3f7057b31..8613f55b43d 100644
--- a/dev-cpp/gflags/Manifest
+++ b/dev-cpp/gflags/Manifest
@@ -1,4 +1,2 @@
-DIST gflags-2.1.1.tar.gz 102015 BLAKE2B 
93a6595730e338f171ba4d3f980aa84bafa7c5890e588027cad8f29f6397c4579186f675f1ba995c9e4be243beecde60ec3449d72baeec016948814aa65a1f86
 SHA512 
18d1a0a1271f12f0e87447e3a9d6810f531f5b190d84274465add5a928c189caac911ec2592422895961ab3c0c7566ff50c0c22f71d185ac3413c54bdbfb00ef
-DIST gflags-2.1.2.tar.gz 95716 BLAKE2B 
1f7aa19176cf4560e5be9d85217cdd3256d5a71db26d504bb9c845f27f303e46ee2debc5d9d791936dc05cff8ae0ace8cc38af8e782c86d0ca4e55fe94e29c3a
 SHA512 
f636023c1150e4d536d2d472e40d643ff0b02d3c96d8cb7f31544df23e6255fa6c4fd927ef94a3660c250d3faeae7d8d78519fc5e856749a577347a78d9d9ab5
 DIST gflags-2.2.0.tar.gz 96408 BLAKE2B 
571f07dd0972cec201eae8ce66d5e0592abb6ddb81bcf3c539f38861f0cd379de2db20ba99eab885ba030235938816d7a61e589b74a61743de7cdb2710646854
 SHA512 
e2106ca70ff539024f888bca12487b3bf7f4f51928acf5ae3e1022f6bbd5e3b7882196ec50b609fd52f739e1f7b13eec7d4b3535d8216ec019a3577de6b4228d
 DIST gflags-2.2.1.tar.gz 96985 BLAKE2B 
065dac9cf5d878e4179cb6d56ddf240052a552b72036fd06cb83197d9772a9b97fa544f809c6e1efd6f9ad8cd0222872fc6292c44bc013c5f70e235bcc5b290c
 SHA512 
e919cbdcff1f993ddbfa9c06d8e595566a4717c27ff62f388a64c0e6b4683a93211c24ce78485eae84c2c76053341574064e6c56af185fc2782e2816b26e1fc9

diff --git a/dev-cpp/gflags/files/gflags-2.1.1-libs.patch 
b/dev-cpp/gflags/files/gflags-2.1.1-libs.patch
deleted file mode 100644
index 0e59cb937e1..000
--- a/dev-cpp/gflags/files/gflags-2.1.1-libs.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 17d38b4..ca2c1df 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -22,6 +22,8 @@ version_numbers (
- PACKAGE_VERSION_PATCH
- )
- 
-+set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}")
-+
- # 
- # options
- set (GFLAGS_NAMESPACE   "${PACKAGE_NAME}" CACHE STRING "C++ namespace 
identifier of gflags library.")
-@@ -256,7 +258,9 @@ foreach (TYPE IN ITEMS STATIC SHARED)
- endif ()
- set_target_properties (
-   gflags${opts}-${type} PROPERTIES COMPILE_DEFINITIONS "${defines}"
--   OUTPUT_NAME "gflags${opts}"
-+   OUTPUT_NAME "gflags${opts}"
-+   VERSION 
"${PACKAGE_VERSION}"
-+   SOVERSION   
"${PACKAGE_SOVERSION}"
- )
- if (HAVE_SHLWAPI_H)
-   target_link_libraries (gflags${opts}-${type} shlwapi.lib)
-@@ -280,9 +284,18 @@ if (OS_WINDOWS)
-   set (CONFIG_INSTALL_DIR  CMake)
- else ()
-   set (RUNTIME_INSTALL_DIR bin)
--  set (LIBRARY_INSTALL_DIR lib)
-+  # The LIB_INSTALL_DIR and LIB_SUFFIX variables are used by the Fedora
-+  # package maintainers. Also package maintainers of other distribution
-+  # packages need to be able to specify the name of the library directory.
-+  if (NOT LIB_INSTALL_DIR)
-+set (LIB_INSTALL_DIR "lib${LIB_SUFFIX}")
-+  endif ()
-+  set (LIBRARY_INSTALL_DIR "${LIB_INSTALL_DIR}"
-+CACHE PATH "Directory of installed libraries, e.g., \"lib64\""
-+  )
-+  mark_as_advanced (LIBRARY_INSTALL_DIR)
-   set (INCLUDE_INSTALL_DIR include)
--  set (CONFIG_INSTALL_DIR  lib/cmake/${PACKAGE_NAME})
-+  set (CONFIG_INSTALL_DIR  ${LIBRARY_INSTALL_DIR}/cmake/${PACKAGE_NAME})
- endif ()
- 
- file (RELATIVE_PATH INSTALL_PREFIX_REL2CONFIG_DIR 
"${CMAKE_INSTALL_PREFIX}/${CONFIG_INSTALL_DIR}" "${CMAKE_INSTALL_PREFIX}")

diff --git a/dev-cpp/gflags/gflags-2.1.1-r1.ebuild 
b/dev-cpp/gflags/gflags-2.1.1-r1.ebuild
deleted file mode 100644
index 837721b2123..000
--- a/dev-cpp/gflags/gflags-2.1.1-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit cmake-multilib
-
-DESCRIPTION="Google's C++ argument parsing library"
-HOMEPAGE="http://gflags.github.io/gflags/";
-SRC_URI="https://github.com/schuhschuh/gflags/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa 

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

2018-06-11 Thread Mikle Kolyada
commit: 7ebd90f84b9832fdf66413ee05e424e50f7a80ea
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jun 11 19:42:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jun 11 19:42:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ebd90f8

x11-terms/tilda: Version bump

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-terms/tilda/Manifest   |  1 +
 x11-terms/tilda/tilda-1.4.1.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/x11-terms/tilda/Manifest b/x11-terms/tilda/Manifest
index 02a8777cd8c..35cd826bf93 100644
--- a/x11-terms/tilda/Manifest
+++ b/x11-terms/tilda/Manifest
@@ -1 +1,2 @@
 DIST tilda-0.9.6.tar.gz 307517 BLAKE2B 
dba49f28cf92a514977da5f8099e7f19366723b89785c9d9897138500eac7281a97d3ea3365acb08f17edb0a71ffe3a63d631987aaf39aa6e0058290f037e9dc
 SHA512 
7d0ddaf289de2c3f9f48f5cce3ee71534b9fdd91f79a4e56a32a301fd8fc82c4a3d760cfcd16d8d2e2d9f0d963b8130547720563ab15c2bb2220ff546ea562b0
+DIST tilda-1.4.1.tar.gz 471340 BLAKE2B 
a84d125bf81e384706347401ebbf7b11813bf5ed422e6b374e918ed564b9bfe168ebf3fef163b91a15350b49166b0040e90afdef716cc1762ecc410710f72c29
 SHA512 
d16878e762d94f94c219e8e711223a771a2ab816f02573f693cfbcfa0eee5aafff8a274898a65df168c0bf78258aa16e5a3be6b0c3dee418af61c68f43ed74c6

diff --git a/x11-terms/tilda/tilda-1.4.1.ebuild 
b/x11-terms/tilda/tilda-1.4.1.ebuild
new file mode 100644
index 000..ad1b85bd86f
--- /dev/null
+++ b/x11-terms/tilda/tilda-1.4.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic
+
+DESCRIPTION="A drop down terminal, similar to the consoles found in first 
person shooters"
+HOMEPAGE="https://github.com/lanoxx/tilda";
+SRC_URI="https://github.com/lanoxx/tilda/archive/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="x11-libs/vte:0
+   >=dev-libs/glib-2.8.4:2
+   dev-libs/confuse
+   gnome-base/libglade
+   x11-libs/libX11"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-devel/gettext"
+
+S="${WORKDIR}/${PN}-${P}"
+
+src_prepare() {
+   default
+   append-cflags -std=c99
+   eautoreconf
+}



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

2018-06-11 Thread Alexys Jacob
commit: 1ab717bd9632531fbecdce4e31a992a94268fbed
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri May 25 12:30:10 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 11 19:25:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ab717bd

app-admin/mongo-tools: bump to 3.6.5

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 app-admin/mongo-tools/Manifest |  1 +
 app-admin/mongo-tools/mongo-tools-3.6.5.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index 88627c6b6ce..6ab03912068 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -8,3 +8,4 @@ DIST mongo-tools-3.4.15.tar.gz 4697188 BLAKE2B 
690ec3187cb781c9cae903a27eca9d1d5
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f
+DIST mongo-tools-3.6.5.tar.gz 4720814 BLAKE2B 
5dd064f70557ec1ab979d08523f3dd305fb310c533b69bc99be3ad3d006036354f62b9f3d61c242e1481a254bed538a5e1cf5662f0e35705f1c50a76f31fddbb
 SHA512 
dd2d7cc64043b42a70b5de0ea493f94722a4476248bfd77d6892861e4be6ab20175992367965dfd687bf8b7ebece6113b7f7a3e59256497e3ecd7e2678875965

diff --git a/app-admin/mongo-tools/mongo-tools-3.6.5.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.6.5.ebuild
new file mode 100644
index 000..3589981cbd8
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.6.5.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PV=${PV/_rc/-rc}
+MY_P=${PN}-r${MY_PV}
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented 
database"
+HOMEPAGE="https://www.mongodb.com";
+SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> 
mongo-tools-${MY_PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="sasl ssl"
+
+RDEPEND="!

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

2018-06-11 Thread Alexys Jacob
commit: fbae11c158cc61c73be89d63b18b4ca272890926
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri May 25 12:47:16 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 11 19:25:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbae11c1

dev-db/mongodb: bump to 3.6.5

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-db/mongodb/Manifest |   1 +
 dev-db/mongodb/mongodb-3.6.5.ebuild | 170 
 2 files changed, 171 insertions(+)

diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
index 1b8212cf06e..d9824f06bd3 100644
--- a/dev-db/mongodb/Manifest
+++ b/dev-db/mongodb/Manifest
@@ -8,3 +8,4 @@ DIST mongodb-src-r3.4.15.tar.gz 40063153 BLAKE2B 
7912a1b0450337c8b9935deb6abfbda
 DIST mongodb-src-r3.6.2.tar.gz 3539 BLAKE2B 
3e38917ebaf79b63bf054279fbb91a648fe52e69d8194998dc74453ad6766688929a80456f6cb4801f2806ac938a5dfc0407e5f46345b47a80ecce0ba03d7fde
 SHA512 
7acfbcc68c1bd4e6e63eee09be1dfbb064be6f8b0144418105100a065f8162cafc9b776fe0429fd64c79b958561aa42d0bdef56588dda65acee27ccc98631f39
 DIST mongodb-src-r3.6.3.tar.gz 40093607 BLAKE2B 
bb21bf0487661eec6140ade22526617b26b2499bd36e138d955d14a4b13a0685ec7308bccfc11ef17c785cd8a71c5b6cd9d154d461b8973410b03952b93953ec
 SHA512 
94aa9955f99d5f6bbbe65dc3755583952525398308ca7cb9224b91d1fa403de5bb3abb63a651583815cbecaff58966b5cfe7334a36ef6583f73d8c213410ddbc
 DIST mongodb-src-r3.6.4.tar.gz 40159916 BLAKE2B 
d3878d4e6bbf331de672768b2c92a4d71f758232170432d757f7e61849e6e1ef3b190e6a089101c9ea23c4ce23087c684c86fc6ea0f32f6fe052ce322d47e438
 SHA512 
02c2a697af9fdcbb16d19792be17d987e18c684418a63ed4750471c7ec22eb2eabf84e93cb1d298f67898b7e23687f668bb333c50ffc4e1b8adf8859f856ad95
+DIST mongodb-src-r3.6.5.tar.gz 40310152 BLAKE2B 
72110ae47b17ec8b1f60636a5ef8491b076e1cc019513fd872ea38b3bb8393efff4bddc7b795b3da711f258d21be9fa23e24d396a9429349c51ce05fff180a53
 SHA512 
6ecb3140ee4a7929fabe62d698f23e87cb5030cf31abefe7f82374f407fb87dc05f712089998f96bc40e23698836a86e7f3590892bde9d2d6f2c4bcc15cc3ebf

diff --git a/dev-db/mongodb/mongodb-3.6.5.ebuild 
b/dev-db/mongodb/mongodb-3.6.5.ebuild
new file mode 100644
index 000..5297f47b0f1
--- /dev/null
+++ b/dev-db/mongodb/mongodb-3.6.5.ebuild
@@ -0,0 +1,170 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+SCONS_MIN_VERSION="2.5.0"
+CHECKREQS_DISK_BUILD="2400M"
+CHECKREQS_DISK_USR="512M"
+CHECKREQS_MEMORY="1024M"
+
+inherit check-reqs eutils flag-o-matic multilib multiprocessing pax-utils 
python-single-r1 scons-utils systemd toolchain-funcs user versionator
+
+MY_P=${PN}-src-r${PV/_rc/-rc}
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented 
database"
+HOMEPAGE="https://www.mongodb.com";
+SRC_URI="https://fastdl.mongodb.org/src/${MY_P}.tar.gz";
+
+LICENSE="AGPL-3 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="debug kerberos libressl mms-agent ssl test +tools"
+
+RDEPEND=">=app-arch/snappy-1.1.3
+   >=dev-cpp/yaml-cpp-0.5.3
+   >=dev-libs/boost-1.60:=[threads(+)]
+   >=dev-libs/libpcre-8.41[cxx]
+   dev-libs/snowball-stemmer
+   net-libs/libpcap
+   >=sys-libs/zlib-1.2.8:=
+   mms-agent? ( app-admin/mms-agent )
+   ssl? (
+   !libressl? ( >=dev-libs/openssl-1.0.1g:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   dev-python/cheetah[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/typing[${PYTHON_USEDEP}]
+   https://github.com/mongodb/mongo/wiki/Build-Mongodb-From-Source
+   # --use-system-icu fails tests
+   # --use-system-tcmalloc is strongly NOT recommended:
+   scons_opts=(
+   CC="$(tc-getCC)"
+   CXX="$(tc-getCXX)"
+
+   --disable-warnings-as-errors
+   --use-system-boost
+   --use-system-pcre
+   --use-system-snappy
+   --use-system-stemmer
+   --use-system-yaml
+   --use-system-zlib
+   )
+
+   use debug && scons_opts+=( --dbg=on )
+   use kerberos && scons_opts+=( --use-sasl-client )
+   use ssl && scons_opts+=( --ssl )
+
+   # respect mongoDB upstream's basic recommendations
+   # see bug #536688 and #526114
+   if ! use debug; then
+   filter-flags '-m*'
+   filter-flags '-O?'
+   fi
+
+   default
+}
+
+src_compile() {
+   escons "${scons_opts[@]}" core tools
+}
+
+# FEATURES="test -usersandbox" emerge dev-db/mongodb
+src_test() {
+   "${EPYTHON}" ./buildscripts/resmoke.py --dbpathPrefix=test --suites 
core --jobs=$(makeopts_jobs) || die "Tests failed"
+}
+
+src_install() {
+   escons "${scons_opts[@]}" --nostrip install --prefix="${ED}"/usr
+
+   local x
+   for x in /var/{lib,log}/${PN}; do
+   keepdir "${x}"
+   fowners mon

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

2018-06-11 Thread Alexys Jacob
commit: 1c5c2ab0c5cef9190b092d02b8a50956e8e3d325
Author: Tomas Mozes  sygic  com>
AuthorDate: Fri May 25 12:28:38 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 11 19:25:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5c2ab0

app-admin/mongo-tools: bump to 3.4.15

Package-Manager: Portage-2.3.38, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8578

 app-admin/mongo-tools/Manifest  |  1 +
 app-admin/mongo-tools/mongo-tools-3.4.15.ebuild | 60 +
 2 files changed, 61 insertions(+)

diff --git a/app-admin/mongo-tools/Manifest b/app-admin/mongo-tools/Manifest
index bf2f10c2a4c..88627c6b6ce 100644
--- a/app-admin/mongo-tools/Manifest
+++ b/app-admin/mongo-tools/Manifest
@@ -4,6 +4,7 @@ DIST mongo-tools-3.2.17.tar.gz 2719970 BLAKE2B 
666b67d8abdd10f7fa7c557e3c3906fb3
 DIST mongo-tools-3.4.10.tar.gz 4719399 BLAKE2B 
8165248bf58f2ea2b02e365a3609c72b72e98dd5902f176e251fa2add1ad26e90900e06c35dc6db4dbe161e541bedfc1776f5e15bbb41dcc9a7be17800424362
 SHA512 
b861bb3fb1a32c3aa2efefcf6a13bb6d4783ac1a9b006c477fd04deb338cbf6b7adc3944bc6919513b92bd96b8500813ff4af49c9dec0719ebd2fdaa99bc39a5
 DIST mongo-tools-3.4.13.tar.gz 4719488 BLAKE2B 
27c7716b21f1a23408d0f31aee111c5877f5172121a987c234ff01eb2690bbc71bca4e00fc13b701ca6b91dce0c9aaae43c2239a60a52e130e1390bf5bafef60
 SHA512 
c233268328ef868ec06c9a9d83009141b39c84ba642e7de7dece3210717ba8de600f39896a30ed23d1577db9f4697c3a8d720cf35248bca2b00a17642b043237
 DIST mongo-tools-3.4.14.tar.gz 4719370 BLAKE2B 
2add25ddf9b5b7d2ebecdd647dfb2c818643b16f623fd1faba36a8d6f5a181e80ad47de45fc56e462290f61f6c16c27a6b0587542315981537627256e69b4958
 SHA512 
a0d715fe36769740ba25e92b742b157dc264b141ddd56d64ca4c6f8ffea11df291ce871aaa723acdb8b7f5318ac1edb8c5fb9dd7bf2edfe08d4e7cef343abea7
+DIST mongo-tools-3.4.15.tar.gz 4697188 BLAKE2B 
690ec3187cb781c9cae903a27eca9d1d504e2e52cc7f48790b5d5b5a1dfe18cff95dd52f8fa03854548a2e634d2aed56e626b8702f2fcd27a10952a37dff9120
 SHA512 
f7c8655f56a1f5fedad00fbadd26b150d6fea071edccaa7ac18e80c9051ed2324691e98e799e6a9ca09e944ebe340b63a2ac0b9caeffbcc8c8dee0744cba1af7
 DIST mongo-tools-3.6.2.tar.gz 4693924 BLAKE2B 
61c44d579f6eb4013ee6c0118ebe89a2d454ef8cf6ad933479885cb71d169185272b03d9c63fa738d67bbd1b9efd4bc964eb17adcc5002508589d198cdb17752
 SHA512 
5ac2b1d2b33271f63c406c69bd8a576a21f4dcaa6f75839e0f907ebc9968f0e121eb3800e88da050c120856e7ddda4f12d551bb731d4acac0f5cf09f66fc948a
 DIST mongo-tools-3.6.3.tar.gz 4693833 BLAKE2B 
fc7139984cf3dcb7b4ce6f6c2028296651aa59ac68d7068bdf748e28eeb65b1fd9b07580d0c93f3f41dbb01030a12433a07a04deadf28e0ff792387fa78ae4aa
 SHA512 
7dba782c84a728aa9ceb28cbd9934f58b615dccfb238a9dbd63b18661ba4e74ddba21f93d9f12e6d80d293ebe42a82d31fa64448aacdba75bd07d964a5f631fc
 DIST mongo-tools-3.6.4.tar.gz 4693872 BLAKE2B 
5d72b32fa8ad7bc106c6ea3c09a27a093b9a1ae2392b4fa534042c5461fdc2b958dcbbf32e0ed596be234921e2ee21cc8f6132d57ae870a234abfc7adbb3b2e9
 SHA512 
53d06fa4a1b58de8001d6bf6e85f7edc97ce2cfbbb69c1ab05219deaa05ad9dd77d93f98c5526b4f58644a766e1b0f123686358095f059c71a4277634603f23f

diff --git a/app-admin/mongo-tools/mongo-tools-3.4.15.ebuild 
b/app-admin/mongo-tools/mongo-tools-3.4.15.ebuild
new file mode 100644
index 000..509a9eb6a0e
--- /dev/null
+++ b/app-admin/mongo-tools/mongo-tools-3.4.15.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PV=${PV/_rc/-rc}
+MY_P=${PN}-r${MY_PV}
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented 
database"
+HOMEPAGE="https://www.mongodb.com";
+SRC_URI="https://github.com/mongodb/mongo-tools/archive/r${MY_PV}.tar.gz -> 
mongo-tools-${MY_PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="sasl ssl"
+
+RDEPEND="!

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

2018-06-11 Thread Alexys Jacob
commit: 4d626972b3e1c929152a64e96336b652128911cc
Author: Tomas Mozes  gmail  com>
AuthorDate: Fri May 25 12:41:01 2018 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Mon Jun 11 19:25:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d626972

dev-db/mongodb: bump to 3.4.15

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 dev-db/mongodb/Manifest  |   1 +
 dev-db/mongodb/mongodb-3.4.15.ebuild | 167 +++
 2 files changed, 168 insertions(+)

diff --git a/dev-db/mongodb/Manifest b/dev-db/mongodb/Manifest
index 157f3976c7f..1b8212cf06e 100644
--- a/dev-db/mongodb/Manifest
+++ b/dev-db/mongodb/Manifest
@@ -4,6 +4,7 @@ DIST mongodb-src-r3.2.17.tar.gz 29295394 BLAKE2B 
3fa9d8fa0b50b72c3b2aa86980dd4d4
 DIST mongodb-src-r3.4.10.tar.gz 39959937 BLAKE2B 
f14f081525f694b939bc21f8cb6364c2a37573c0e1867322dd2062dc167b112751579c3e2d76730b3ff07b0c6bbfd3bbea99162b7c10eef62d92eb1b0850
 SHA512 
6293dde40a8433477ba3b1cf77abbdb32b28ce58279cc616b488647c8ab71b5ab3eab2146058c4a74b9e00f0938f1415020e2f26ea01f2b29dd78a1a38d58c3a
 DIST mongodb-src-r3.4.13.tar.gz 39992720 BLAKE2B 
5620711c5ffddd9a96c29be1f2801a37f30536d1b7afe5a7b339a41cacf1f97caf8d03aafdf1d6b71cc488e48f5066ebc49a63a6bf318483d552863cd47a0c0e
 SHA512 
295dbb38d44c99e0dce46c5e4aa5d73c64d813a3767e71a7187aff05e30f896d283ca7ef19c0a7bbd036eecf3d419e38ea3bc7d98ba93d12296c49e565df0f66
 DIST mongodb-src-r3.4.14.tar.gz 40017360 BLAKE2B 
617ebf0346b9ea5034d05ba607b21b745a44e70edb347c6bf0cd8b273b448caef7da2d5f11036d48add6f452883a9b15259fe8ad466e58199be5eb9512167b6d
 SHA512 
f8c38d12e24ae332221db15aab646725ef666012837b8127a1ab128ac2d6da2ab702f3edd17fdf3e6a840f603c8c66acf2a87fe74adf30bd9c4fe6b873c98186
+DIST mongodb-src-r3.4.15.tar.gz 40063153 BLAKE2B 
7912a1b0450337c8b9935deb6abfbda6080f8fec68222b6eb9fbbd278e4d8a1ffb873c7c4a63c78c3eadc722c694d4d48b3f5d9247531f1731d7713a527daec5
 SHA512 
8b29c1cef4c34e9c2e16bbaf50aa10574eb63c9692ab248849a0cc476acc637794c3be27df0663a27ee4ced28c6d80bb0e11ac00fcd6d0a8babfc835b78fce59
 DIST mongodb-src-r3.6.2.tar.gz 3539 BLAKE2B 
3e38917ebaf79b63bf054279fbb91a648fe52e69d8194998dc74453ad6766688929a80456f6cb4801f2806ac938a5dfc0407e5f46345b47a80ecce0ba03d7fde
 SHA512 
7acfbcc68c1bd4e6e63eee09be1dfbb064be6f8b0144418105100a065f8162cafc9b776fe0429fd64c79b958561aa42d0bdef56588dda65acee27ccc98631f39
 DIST mongodb-src-r3.6.3.tar.gz 40093607 BLAKE2B 
bb21bf0487661eec6140ade22526617b26b2499bd36e138d955d14a4b13a0685ec7308bccfc11ef17c785cd8a71c5b6cd9d154d461b8973410b03952b93953ec
 SHA512 
94aa9955f99d5f6bbbe65dc3755583952525398308ca7cb9224b91d1fa403de5bb3abb63a651583815cbecaff58966b5cfe7334a36ef6583f73d8c213410ddbc
 DIST mongodb-src-r3.6.4.tar.gz 40159916 BLAKE2B 
d3878d4e6bbf331de672768b2c92a4d71f758232170432d757f7e61849e6e1ef3b190e6a089101c9ea23c4ce23087c684c86fc6ea0f32f6fe052ce322d47e438
 SHA512 
02c2a697af9fdcbb16d19792be17d987e18c684418a63ed4750471c7ec22eb2eabf84e93cb1d298f67898b7e23687f668bb333c50ffc4e1b8adf8859f856ad95

diff --git a/dev-db/mongodb/mongodb-3.4.15.ebuild 
b/dev-db/mongodb/mongodb-3.4.15.ebuild
new file mode 100644
index 000..3869755fe9f
--- /dev/null
+++ b/dev-db/mongodb/mongodb-3.4.15.ebuild
@@ -0,0 +1,167 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+SCONS_MIN_VERSION="2.3.0"
+CHECKREQS_DISK_BUILD="2400M"
+CHECKREQS_DISK_USR="512M"
+CHECKREQS_MEMORY="1024M"
+
+inherit check-reqs eutils flag-o-matic multilib multiprocessing pax-utils 
python-single-r1 scons-utils systemd toolchain-funcs user versionator
+
+MY_P=${PN}-src-r${PV/_rc/-rc}
+
+DESCRIPTION="A high-performance, open source, schema-free document-oriented 
database"
+HOMEPAGE="https://www.mongodb.com";
+SRC_URI="https://fastdl.mongodb.org/src/${MY_P}.tar.gz";
+
+LICENSE="AGPL-3 Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="debug kerberos libressl mms-agent ssl test +tools"
+
+RDEPEND=">=app-arch/snappy-1.1.3
+   >=dev-cpp/yaml-cpp-0.5.3
+   >=dev-libs/boost-1.60:=[threads(+)]
+   >=dev-libs/libpcre-8.41[cxx]
+   dev-libs/snowball-stemmer
+   net-libs/libpcap
+   >=sys-libs/zlib-1.2.8:=
+   mms-agent? ( app-admin/mms-agent )
+   ssl? (
+   !libressl? ( >=dev-libs/openssl-1.0.1g:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   https://github.com/mongodb/mongo/wiki/Build-Mongodb-From-Source
+   # --use-system-icu fails tests
+   # --use-system-tcmalloc is strongly NOT recommended:
+
+   scons_opts=(
+   CC="$(tc-getCC)"
+   CXX="$(tc-getCXX)"
+
+   --disable-warnings-as-errors
+   --use-system-boost
+   --use-system-pcre
+   --use-system-snappy
+   --use-system-stemmer
+   --use-system-yaml
+   --use-system-zlib
+   )
+
+   use debug && sco

[gentoo-commits] repo/gentoo:master commit in: sys-process/psmisc/

2018-06-11 Thread Lars Wendler
commit: 7cf2570f4938b7e3f31b54ead515e1799d79e832
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 11 19:14:43 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 11 19:15:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cf2570f

sys-process/psmisc: Removed old.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-process/psmisc/Manifest   |  1 -
 sys-process/psmisc/psmisc-23.0.ebuild | 53 ---
 2 files changed, 54 deletions(-)

diff --git a/sys-process/psmisc/Manifest b/sys-process/psmisc/Manifest
index 07b989eb3df..f5084862c9e 100644
--- a/sys-process/psmisc/Manifest
+++ b/sys-process/psmisc/Manifest
@@ -1,3 +1,2 @@
 DIST psmisc-22.21.tar.gz 457702 BLAKE2B 
7e81b695546c3dca6e1ade47bd1cd736ad434eb964608ead3e7d5a3b97f6d3d6c927e8e13ee525e716b66067e5a1573c4f0b8434540b9c66aac6e6b8f15bcfde
 SHA512 
766aeb45687090b88b17176c5117a603e83fe92a13c013aea72c8ee80048adf02e18c7daa52ddfb8b2135f7c9a1bcae38896cdfb8d0158728d85a446c5e0d5ae
-DIST psmisc-23.0.tar.xz 295128 BLAKE2B 
0dd787ba449085fb6241c09c5c947bb05daab26adefe5d63524fe1ee536aaf7b7814bbc38c8ac2f97ca481f9cdd3dd74703df6be2436291662efb45b8d2718a0
 SHA512 
334d625202fccd741363787c3f1d750515d63e2b5322b8ada5979144c8d841f505244c569bae9b63ce332aeace41b7caacd5354014c0301b56aca720a227f10d
 DIST psmisc-23.1.tar.xz 296136 BLAKE2B 
e53f7b80f1106622d652dad772d4236a62a1eb58e277f078cf0392d5a0bd7963c66805e28f6d1300999f2e2e5dcb692b1ecb3f6d39cefa77ebbc87302cd730be
 SHA512 
f678869ea555986a2538ada9630b74ce79304f3ee85cc9d69a3912d8d30ad491829eac0dcb69aae7003ee9b5de9645d2135b80a9e0b77824e60c417dc0be5f95

diff --git a/sys-process/psmisc/psmisc-23.0.ebuild 
b/sys-process/psmisc/psmisc-23.0.ebuild
deleted file mode 100644
index b2ccbcd6c3e..000
--- a/sys-process/psmisc/psmisc-23.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A set of tools that use the proc filesystem"
-HOMEPAGE="http://psmisc.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
-IUSE="ipv6 nls selinux X"
-
-RDEPEND=">=sys-libs/ncurses-5.7-r7:0=
-   nls? ( virtual/libintl )
-   selinux? ( sys-libs/libselinux )"
-DEPEND="${RDEPEND}
-   >=sys-devel/libtool-2.2.6b
-   nls? ( sys-devel/gettext )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable selinux)
-   --disable-harden-flags
-   $(use_enable ipv6)
-   $(use_enable nls)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-   # peekfd is a fragile crap hack #330631
-   nonfatal emake -C src peekfd || touch src/peekfd{.o,}
-   emake
-}
-
-src_install() {
-   default
-
-   use X || rm -f "${ED}"/usr/bin/pstree.x11
-
-   [[ -s ${ED}/usr/bin/peekfd ]] || rm -f "${ED}"/usr/bin/peekfd
-   [[ -e ${ED}/usr/bin/peekfd ]] || rm -f 
"${ED}"/usr/share/man/man1/peekfd.1
-
-   # fuser is needed by init.d scripts; use * wildcard for #458250
-   dodir /bin
-   mv "${ED}"/usr/bin/*fuser "${ED}"/bin || die
-}



[gentoo-commits] repo/gentoo:master commit in: sys-process/psmisc/

2018-06-11 Thread Lars Wendler
commit: fbc71b8200b4e63a54e904ffd7555b5babf18024
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jun 11 19:14:03 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jun 11 19:15:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc71b82

sys-process/psmisc: EAPI-6 revbump.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sys-process/psmisc/psmisc-23.1-r1.ebuild | 51 
 1 file changed, 51 insertions(+)

diff --git a/sys-process/psmisc/psmisc-23.1-r1.ebuild 
b/sys-process/psmisc/psmisc-23.1-r1.ebuild
new file mode 100644
index 000..87dc7a307bc
--- /dev/null
+++ b/sys-process/psmisc/psmisc-23.1-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A set of tools that use the proc filesystem"
+HOMEPAGE="http://psmisc.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="ipv6 nls selinux X"
+
+RDEPEND=">=sys-libs/ncurses-5.7-r7:0=
+   nls? ( virtual/libintl )
+   selinux? ( sys-libs/libselinux )"
+DEPEND="${RDEPEND}
+   >=sys-devel/libtool-2.2.6b
+   nls? ( sys-devel/gettext )"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable selinux)
+   --disable-harden-flags
+   $(use_enable ipv6)
+   $(use_enable nls)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   # peekfd is a fragile crap hack #330631
+   nonfatal emake -C src peekfd || touch src/peekfd{.o,}
+   emake
+}
+
+src_install() {
+   default
+
+   use X || rm -f "${ED%/}"/usr/bin/pstree.x11
+
+   [[ -s ${ED%/}/usr/bin/peekfd ]] || rm -f "${ED%/}"/usr/bin/peekfd
+   [[ -e ${ED%/}/usr/bin/peekfd ]] || rm -f 
"${ED%/}"/usr/share/man/man1/peekfd.1
+
+   # fuser is needed by init.d scripts; use * wildcard for #458250
+   dodir /bin
+   mv "${ED%/}"/usr/bin/*fuser "${ED%/}"/bin || die
+}



[gentoo-commits] proj/kde:master commit in: media-sound/elisa/

2018-06-11 Thread Johannes Huber
commit: f9e5adb8089ae542b26a5d0f21c436cfd2217144
Author: Johannes Huber  gentoo  org>
AuthorDate: Mon Jun 11 18:57:52 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Mon Jun 11 18:57:52 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f9e5adb8

media-sound/elisa: Version bump 0.1.80

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/elisa/{elisa-.ebuild => elisa-0.1.80.ebuild} | 4 +++-
 media-sound/elisa/elisa-.ebuild  | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/media-sound/elisa/elisa-.ebuild 
b/media-sound/elisa/elisa-0.1.80.ebuild
similarity index 91%
copy from media-sound/elisa/elisa-.ebuild
copy to media-sound/elisa/elisa-0.1.80.ebuild
index 59f7d8a72c..e76e825e2a 100644
--- a/media-sound/elisa/elisa-.ebuild
+++ b/media-sound/elisa/elisa-0.1.80.ebuild
@@ -8,7 +8,7 @@ KDE_HANDBOOK="optional"
 inherit kde5
 
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+   SRC_URI="mirror://kde/unstable/${PN}/${PV}/${P}.tar.xz"
KEYWORDS="~amd64"
 fi
 
@@ -26,6 +26,8 @@ COMMON_DEPEND="
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kfilemetadata)
$(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)

diff --git a/media-sound/elisa/elisa-.ebuild 
b/media-sound/elisa/elisa-.ebuild
index 59f7d8a72c..c768c2d4d5 100644
--- a/media-sound/elisa/elisa-.ebuild
+++ b/media-sound/elisa/elisa-.ebuild
@@ -26,6 +26,8 @@ COMMON_DEPEND="
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kfilemetadata)
$(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)



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

2018-06-11 Thread Andreas Sturmlechner
commit: f35c610d7919a72eb4f1840b9225255c5305640f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jun 11 18:45:04 2018 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jun 11 18:45:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f35c610d

app-office/libreoffice: Drop upstreamed patch from 6.0 stable branch

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-office/libreoffice/libreoffice-6.0..ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-6.0..ebuild 
b/app-office/libreoffice/libreoffice-6.0..ebuild
index 58a7a8a3240..b1c28905c33 100644
--- a/app-office/libreoffice/libreoffice-6.0..ebuild
+++ b/app-office/libreoffice/libreoffice-6.0..ebuild
@@ -247,8 +247,6 @@ PATCHES=(
"${FILESDIR}/${PN}-5.4-system-pyuno.patch"
"${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch"
"${FILESDIR}/${PN}-6.0.3.2-disable-flaky-tests-1.patch" #bug 656676
-   # 6.1 branch
-   "${FILESDIR}/${PN}-6.0.4.2-glm-0.9.9.patch" # bug 657178
 
# TODO: upstream
"${FILESDIR}/${PN}-5.2.5.1-glibc-2.24.patch"



[gentoo-commits] repo/gentoo:master commit in: dev-ada/libgpr/

2018-06-11 Thread Alfredo Tupone
commit: ad5949f020f00ce5e20c60cdfe2598471e1b9811
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Mon Jun 11 18:36:14 2018 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Mon Jun 11 18:36:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad5949f0

dev-ada/libgpr: Version bump to dev-ada/libgpr-2018

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ada/libgpr/Manifest   |  1 +
 dev-ada/libgpr/libgpr-2018.ebuild | 66 +++
 dev-ada/libgpr/metadata.xml   |  1 +
 3 files changed, 68 insertions(+)

diff --git a/dev-ada/libgpr/Manifest b/dev-ada/libgpr/Manifest
index cbdaab7d6a4..38cc471e74b 100644
--- a/dev-ada/libgpr/Manifest
+++ b/dev-ada/libgpr/Manifest
@@ -1,2 +1,3 @@
 DIST gprbuild-gpl-2016-src.tar.gz 2142261 BLAKE2B 
69948427eb6315b9fb2b84755192b53c035f74093dacb34852713083779bf8bd88dac6b38fe7685f6a40ecb2482f78b15a5221913df997847eee8b1359cf6c14
 SHA512 
6b9e00248aaee90f3c00e7ce442c2b551b8532ec4d94a4471858d117feb27e91fd6d218995d4b71ee3f1f0677e9547d562fc2cda9ba80c3f6eb8d840ed56eb7e
 DIST gprbuild-gpl-2017-src.tar.gz 2454957 BLAKE2B 
890e5aa29e9f8fa8b140988ee8e5d6042640c34fe0877acde959de803bf690bb33c63b1c7e7db486f804882bddd77ab76ffbaa4dd27da327e21ed0376cadb99d
 SHA512 
12f3682d64ce0718de4940c1e71a4380b20021805d88543842dbf3b5ce5d518c23a6b2d868565579baf81efa1d8cf05c7778253162f0df5d7adc0eb1865c9f88
+DIST gprbuild-gpl-2018-src.tar.gz 2479651 BLAKE2B 
b0e24f4d97f06fe84569f8f0284e1028fce8e4ae90cfd27ab31ada0988f4f1b37eca4868bc212a21d26fb1a0a7ba6f031062e16d9758ab211e2fee40e25077ab
 SHA512 
d22c0133baa6a0b626a0c1d145b21865bd0699cd8155ca22727272b0f8988c78163410b432ae148e87099e931df19d51ea867981556c79cb1cceb25456333044

diff --git a/dev-ada/libgpr/libgpr-2018.ebuild 
b/dev-ada/libgpr/libgpr-2018.ebuild
new file mode 100644
index 000..fa24b7210d5
--- /dev/null
+++ b/dev-ada/libgpr/libgpr-2018.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs multiprocessing
+
+MYP=gprbuild-gpl-${PV}
+
+DESCRIPTION="Ada library to handle GPRbuild project files"
+HOMEPAGE="http://libre.adacore.com/";
+SRC_URI="http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27a68
+   -> ${MYP}-src.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gnat_2016 gnat_2017 +gnat_2018 +shared static-libs static-pic"
+
+RDEPEND="dev-ada/xmlada[static-libs,gnat_2016=,gnat_2017=,gnat_2018=]"
+DEPEND="${RDEPEND}
+   dev-ada/gprbuild"
+
+S="${WORKDIR}"/${MYP}-src
+
+REQUIRED_USE="|| ( shared static-libs static-pic )"
+PATCHES=( "${FILESDIR}"/${PN}-2017-gentoo.patch )
+
+src_configure() {
+   emake prefix="${D}"usr setup
+}
+
+src_compile() {
+   build () {
+   gprbuild -p -m -j$(makeopts_jobs) -XBUILD=production -v \
+   -XLIBRARY_TYPE=$1 -XXMLADA_BUILD=$1 \
+   gpr/gpr.gpr -cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} 
|| die
+   }
+   if use gnat_2016; then
+   GCC_PV=4.9.4
+   elif use gnat_2017; then
+   GCC_PV=6.3.0
+   else
+   GCC_PV=7.3.0
+   fi
+   GCC=${CHOST}-gcc-${GCC_PV}
+   if use shared; then
+   build relocatable
+   fi
+   if use static-libs; then
+   build static
+   fi
+   if use static-pic; then
+   build static-pic
+   fi
+}
+
+src_install() {
+   if use static-libs; then
+   emake DESTDIR="${D}" libgpr.install.static
+   fi
+   for kind in shared static-pic; do
+   if use ${kind}; then
+   emake DESTDIR="${D}" libgpr.install.${kind}
+   fi
+   done
+}

diff --git a/dev-ada/libgpr/metadata.xml b/dev-ada/libgpr/metadata.xml
index 05c462d3407..aa6b2a5d355 100644
--- a/dev-ada/libgpr/metadata.xml
+++ b/dev-ada/libgpr/metadata.xml
@@ -8,6 +8,7 @@

Compile with 
dev-lang/gnat-gpl-2016
Compile with 
dev-lang/gnat-gpl-2017
+   Compile with 
dev-lang/gnat-gpl-2018
Build shared library
Build static library with pic 
code




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

2018-06-11 Thread Matt Thode
commit: 3682c3c7ff65cd45d77a539866a10af32c6f96f1
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun 11 18:25:56 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 11 18:26:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3682c3c7

media-sound/spotify: remove 1.0.77

Closes: https://github.com/gentoo/gentoo/pull/8804
Closes: https://bugs.gentoo.org/657918
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-sound/spotify/Manifest |   1 -
 media-sound/spotify/spotify-1.0.77-r1.ebuild | 124 ---
 2 files changed, 125 deletions(-)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index 890c06d6df9..759ddc645ab 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,3 +1,2 @@
 DIST spotify-client_1.0.72.117.g6bd7cc73-35_i386.deb 95135550 BLAKE2B 
ad4587dd6b3c64a0398e0790203a7826e290a27542fa39ebbd6c7198d8ad1fd3fb06e8b030b64e1e61e0624ef20aafda08189266486cd073cb779ebff62ef502
 SHA512 
51d60f7592e5f31ea4b7e67736a85271cb48d4108459630da61c4ab67d2a470038240c1d6ff577280cb4498cf44f14d7bc7e0312f63d34265bcd1e70cd13142f
-DIST spotify-client_1.0.77.338.g758ebd78-41_amd64.deb 96717978 BLAKE2B 
91a4e8099076e7ccb9f44e67f2ba4ee2899ef6c5c818093a62fafd7e31e84b3bd6f44aa1439d4c0c9b8818be89c6898067ca1694946bf92da19fd92ecde6d2e7
 SHA512 
c0c08d4f6af8ffef3d9784e176c6112975ce56c7eec961df11821f4ac52785dc090e794c25874fce004da5f3e42979402e921ef12fbe1cfc80f02034448724db
 DIST spotify-client_1.0.80.480.g51b03ac3-13_amd64.deb 97542898 BLAKE2B 
a89f3f607c9fb03327886fc1b6eb8d433b32913aa7ff32e95f626a8ef7710c4d6102721b76e9a83f1342d1ac6f6941d85376b4cb878cf641f42f3c3756582eb9
 SHA512 
a46b1d28e6c40dbe9a86a38794186f2cdf31341fff953eaa5a5fdbb37c27c00ffe14a918b2552df0996d2842f009e6700bf8683e0667fc671dfd5b343251f20e

diff --git a/media-sound/spotify/spotify-1.0.77-r1.ebuild 
b/media-sound/spotify/spotify-1.0.77-r1.ebuild
deleted file mode 100644
index 45262d923a5..000
--- a/media-sound/spotify/spotify-1.0.77-r1.ebuild
+++ /dev/null
@@ -1,124 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils xdg-utils gnome2-utils pax-utils unpacker
-
-DESCRIPTION="Spotify is a social music platform"
-HOMEPAGE="https://www.spotify.com/ch-de/download/previews/";
-SRC_BASE="http://repository.spotify.com/pool/non-free/s/${PN}-client/";
-BUILD_ID_AMD64="338.g758ebd78-41"
-#BUILD_ID_X86=""
-#SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.${BUILD_ID_AMD64}_amd64.deb )
-#  x86? ( ${SRC_BASE}${PN}-client_${PV}.${BUILD_ID_X86}_i386.deb )"
-SRC_URI="${SRC_BASE}${PN}-client_${PV}.${BUILD_ID_AMD64}_amd64.deb"
-LICENSE="Spotify"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="libnotify systray pax_kernel pulseaudio"
-RESTRICT="mirror strip"
-
-DEPEND=">=dev-util/patchelf-0.9_p20180129"
-# zenety needed for filepicker
-RDEPEND="
-   dev-libs/openssl:0
-   dev-libs/nss
-   gnome-base/gconf
-   gnome-extra/zenity
-   media-libs/alsa-lib
-   media-libs/harfbuzz
-   media-libs/fontconfig
-   media-libs/mesa
-   net-misc/curl[ssl]
-   net-print/cups[ssl]
-   x11-libs/gtk+:2
-   x11-libs/libXScrnSaver
-   x11-libs/libXtst
-   dev-python/pygobject:3
-   dev-python/dbus-python
-   libnotify? ( x11-libs/libnotify )
-   pulseaudio? ( media-sound/pulseaudio )
-   systray? ( gnome-extra/gnome-integration-spotify )"
-   #sys-libs/glibc
-
-S=${WORKDIR}/
-
-QA_PREBUILT="opt/spotify/spotify-client/spotify"
-
-src_prepare() {
-   # Fix desktop entry to launch spotify-dbus.py for systray integration
-   if use systray ; then
-   sed -i \
-   -e 's/spotify \%U/spotify-dbus.py \%U/g' \
-   usr/share/spotify/spotify.desktop || die "sed failed"
-   fi
-   default
-
-   # Spotify links against libcurl-gnutls.so.4, which does not exist in 
Gentoo.
-   patchelf --replace-needed libcurl-gnutls.so.4 libcurl.so.4 
usr/bin/spotify \
-   || die "failed to patch libcurl library dependency"
-}
-
-src_install() {
-   dodoc usr/share/doc/spotify-client/changelog.gz
-
-   SPOTIFY_PKG_HOME=usr/share/spotify
-   insinto /usr/share/pixmaps
-   doins ${SPOTIFY_PKG_HOME}/icons/*.png
-
-   # install in /opt/spotify
-   SPOTIFY_HOME=/opt/spotify/spotify-client
-   insinto ${SPOTIFY_HOME}
-   doins -r ${SPOTIFY_PKG_HOME}/*
-   fperms +x ${SPOTIFY_HOME}/spotify
-
-   dodir /usr/bin
-   cat <<-EOF >"${D}"/usr/bin/spotify || die
-   #! /bin/sh
-   exec ${SPOTIFY_HOME}/spotify "\$@"
-   EOF
-   fperms +x /usr/bin/spotify
-
-   local size
-   for size in 16 22 24 32 48 64 128 256 512; do
-   newicon -s ${size} 
"${S}${SPOTIFY_PKG_HOME}/icons/spotify-linux-${size}.png" \
-   "spotify-client.png"
-   done
-  

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

2018-06-11 Thread Jason Zaman
commit: 91cca6514a9f4035b7628b135894527535e149ef
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Jun 11 18:24:05 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Jun 11 18:24:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91cca651

dev-util/bazel: add myself as maintainer

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/bazel/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/bazel/metadata.xml b/dev-util/bazel/metadata.xml
index e7d5f3b34fd..7ddb1068e6a 100644
--- a/dev-util/bazel/metadata.xml
+++ b/dev-util/bazel/metadata.xml
@@ -4,6 +4,9 @@

zmed...@gentoo.org

+   
+   perfin...@gentoo.org
+   

bazelbuild/bazel




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

2018-06-11 Thread Jason Zaman
commit: 05cce07c9350ff54d4d2433a83f35be351922486
Author: Jason Zaman  gentoo  org>
AuthorDate: Mon Jun 11 08:18:30 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Jun 11 18:21:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05cce07c

sci-libs/tensorflow: bump to 1.9_rc0

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-libs/tensorflow/Manifest|  11 +
 sci-libs/tensorflow/tensorflow-1.9.0_rc0.ebuild | 361 
 2 files changed, 372 insertions(+)

diff --git a/sci-libs/tensorflow/Manifest b/sci-libs/tensorflow/Manifest
index e6b446f4ed5..4e0f9fea773 100644
--- a/sci-libs/tensorflow/Manifest
+++ b/sci-libs/tensorflow/Manifest
@@ -1,27 +1,35 @@
 DIST ARM_NEON_2_x86_SSE-0f77d9d182265259b135dad949230ecbf1a2633d.tar.gz 99753 
BLAKE2B 
79b0c9e2f3a8de91bb042e55cbc9f589970add4c9bdccd96c9a0f38887418c97aa67fc433b4feffb92a1384039b0d68a7cc6cda141371427a310172422bd41d6
 SHA512 
a21df040a5b3f67d9be006ae414113fa1ca86d38fa446acfab18afcbbb89ee7c48776fac5565d0694c99f1ff6ead3b10a9915eac7aae4d2a532ef5ac126a0072
 DIST LMDB_0.9.19.tar.gz 143141 BLAKE2B 
69f39e2194638989d8a17b79edd7918966d5608f4e611a7446b45e7321adf3b7d4bd69107fe00a1476d32cbd43b83f512c8498cefa3fca7eea8ba615821341fe
 SHA512 
1d9825f09592ad92a540a1dec232cf6649f41cc67b0d59dc8958a71f4090f347c84995f32a166e2c2efecb862981f455814dd07af99bc3489e42fe3fd8bc6191
+DIST abseil-cpp-9613678332c976568272c8f4a78631a29159271d.tar.gz 875263 BLAKE2B 
f11af5582ef3e00155361de2185b703fc9edde1b6cbefce62224da7b13e1beae219076f144b7b8d4bf63d1b21a73beb77fbb437e6d91e6d59a233846d91c1a99
 SHA512 
a3694d4c74f542f7a55872707548469e1bdc6dcd05d40ffd62de41d7440dc1fb98d260f690a6799ad39142e35226b04aacc6122aa1edf104fc9d396997995a8c
+DIST abseil-py-ea8c4d2ddbf3fba610c4d613260561699b776db8.tar.gz 189090 BLAKE2B 
ac4e7b6dc2ad922d03cbfee1858335728fffe5721761fb0207b242ccf0f8d9739bed29987c8cc718f7cc3c297e05bf7506b36f31a06b9019be8215f842a7
 SHA512 
faf00229a062dcf71d9147bc76538dd4ee3adcb76b7e46943663eb43e3023587c68819d1ca157709c3f071e5796bbcf8e10277ccca1f5b83f33fb0025520d373
 DIST abseil_cpp-720c017e30339fd1786ce4aac68bc8559736e53f.tar.gz 529637 BLAKE2B 
fea7eceda492764613ffe944331e6b08af33d600036e9b2453f4c09e892f22f79a95b00a29a9bdf9e705d11502027d88659e19aa484cf4a02158209b058cec13
 SHA512 
3ac70cb924518627dfc6ec2eb5f65bc0e1235898eefebb0d0410867270065aa745d21456f1212b916e732b3f5dada18b03e526e02d09a09f445531798219006e
 DIST abseil_py-acec853355ef987eae48a8d87a79351c15dff593.tar.gz 175877 BLAKE2B 
f3c9b36101321f1e72c4eb2cbf11b42e36dc95bb1682b124b77652d2a2bee912459fa92f40718c80aa22f18611c77d13ad08e2888b20ae8895c115191e2b7397
 SHA512 
154056acee09b8c193d0bc8c64dd98bab87bfd779b04f81b1da7ace3004fcdf780f3ed0066ca3204850c2b80a6b1185e5e435ed852b73af85a6d899addc1c8bc
 DIST astor-0.6.2.tar.gz 29494 BLAKE2B 
aec99ed7702da3125f7a8666b0e432ca7f32511451b0922a7c7b2239414674be205f555ba4d1672f3d44f9140c0690d17e0374d339b2bbcd40737d69d748e95a
 SHA512 
a6df0e65f429025caa0fbdd95f119fff94867709c10ade99fdc681a9886e916b67411384bf6ca37ceea478c65add5dc0a74585e17aafc706c8f0363e3c8585a4
 DIST aws_sdk_cpp-1.3.15.tar.gz 14181795 BLAKE2B 
8e6d407876c4d68b73e22a21c3863efe1155231835be8edb4d7c0f1cceca1880ba1c6791bc3fda8226a22a201515cd44dbe7020883f21cdbbeb3559c8c733a0e
 SHA512 
844addabf01bdbba2c50f94303f23fd092ac5593c42c782aad5959d5edaadb0bec8a6408a91f4605cef996f0d5a23fd94ca3c194829c65db98291d5fa7150bff
 DIST backports.weakref-1.0rc1.tar.gz 7761 BLAKE2B 
4cb2554a4b71bb1f8c41a790268511e4b382effc7e0328f74346d086de539a177111de9e2dabac19a44b2a1cdbf59a7425e30eee4caa4bfe66b0ca97f1f460a9
 SHA512 
f37e9eb0d9060d2e1588a941f623460bd4477d7e180b38b5cd46d9c1db1ee094ae63e4f5eeeb422823bf3d067f46c4124cb124a9e4ddb795bc0bfbc4802ab826
 DIST bazel-rules_closure-08039ba8ca59f64248bb3b6ae016460fe9c9914f.tar.gz 
42 BLAKE2B 
a5a9022c046a8362681cc54e755f1ae1c96a9100be0c1891841ab0326f56f564b4c494ba268573cb5450525e9e35d337ba2505ce63e576ea37da84e7a6554b5d
 SHA512 
9fee59ae3485cbde8adec062af68e9de6be588607bb9280fffd64edbd6ba6f973dd4e158fe229b4228a44d949e68271645f918da720a2a398d1ba30b0b31c4bf
+DIST bazelbuild-rules_closure-dbb96841cc0a5fb2664c37822803b06dab20c7d1.tar.gz 
435984 BLAKE2B 
1ec325861e5e5292b2153119beff3b3be743b4833adf3571eab1a066fef06a61131ef0a761e6f8ba4bf978e7c1c073f197f48a507cd1259ee346d4209129211d
 SHA512 
13991822624e5bdcc2424299acb1b9ce12880f46ebbf2065d7d19a66c77f1a6802862a7ea96334fc91a1c85cff516fd32a493320f0a4d98f19e9d33e5f887986
 DIST boringssl-a0fb951d2a26a8ee746b52f3ba81ab011a0af778.tar.gz 22702000 
BLAKE2B 
d54e52832ea2655590ee6d3c9063f684cd1ac1efacc6e6c60fe3177f799eaae6cf3d6fbb1a616e98514dd0bdc84ee35731bd9e285b5cd7a91a19b9493f694582
 SHA512 
879a48626fb58263d117f8a8b1c5b69fa99e1f06e71d5321620b16c107011c1f22d3e3443b5ad6a908ca139fcc55bdfc36fb80e884fe4490fc4dd982b668f128
 DIST cub-1.8.0.zip 602396 BLAKE2B 
a5e302a52e04f85ae8e1836c59e799532a8b961a8d10c08fe1241c9045f88e31f1ebda6d26124b85c6df40968e1c7b3985a39961bf7614535aafcab2da1a576a
 SHA512 
6167c5be

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

2018-06-11 Thread Jason Zaman
commit: 59832c2ae8b20635e3ae3f34ce426bedbda0205a
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jun 10 05:30:52 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Mon Jun 11 18:21:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59832c2a

dev-util/bazel: bump 0.14.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-util/bazel/Manifest|   2 +
 dev-util/bazel/bazel-0.14.1.ebuild | 141 +
 2 files changed, 143 insertions(+)

diff --git a/dev-util/bazel/Manifest b/dev-util/bazel/Manifest
index f54010da7c1..1d86787612f 100644
--- a/dev-util/bazel/Manifest
+++ b/dev-util/bazel/Manifest
@@ -1,3 +1,5 @@
 DIST bazel-0.10.1-dist.zip 92973197 BLAKE2B 
a1d681407e2c72a57b3dcbb5e2afc49e59670be65da3d7d038dc3b8593bc0ab5b4a06c8dd8fc8a617a92eef2fc26a049b6de9a1eab0d05f31efb2fbeeb9ce711
 SHA512 
1894c951fd39a084011f89dd0d458e182525c2bfd6c80da071865e981e21a8c2b8363530ab53af18e6deae4a488744d6d2b7a5a4acf04715c2e26560a01df707
 DIST bazel-0.13.0-dist.zip 90105262 BLAKE2B 
cb065025524123babef187bac2e1f54f43645d08cb1282a5fe8f8c8b090e595570646072e2380836e2c43403f7953f97321becc24b743d7b9ab43ad208cf2c2d
 SHA512 
3c128e551cff1b685250a68892ca3e1ad6be8b152ee2b8eb527c94adbb8fd50c70e703a363bb938916275030ddb14d756c14e4dc238e7a7b40289c700c5d53c7
+DIST bazel-0.14.1-dist.zip 89415405 BLAKE2B 
7be5d4630d024d235a66f6bdf495c282b04a4034dde156c50d37a7e2eb3bf98df0caead7887f421b664fe92486e6baa5cd90e61b1e82b07b1691dc509ab93a68
 SHA512 
02c7125438f060d8e5e25b91ce3ca76fac6681b4f12033d807955a4ca5a5c22a3508a7229581b7349f35f343911f8408f43f8d78d54601277576dd32539e4681
 DIST bazel-0.7.0-dist.zip 84669893 BLAKE2B 
2f8bbe3a48224a797bdebdaad8f7c403c8b0232ada5eee8c8619f241e9670dda311b9280f48b5e2013079f959891d94f55aee2af0dfae9fc4f6a486663fa245d
 SHA512 
039ab6a04fd4422bd14503187e6cc0d07301723b3ecae906606fa12ccea72190d82237899c103c1adfdf05dc8672887790780ddfb4cce87cd590adbde3d3f6d4
+DIST google-desugar_jdk_libs-f5e6d80c6b4ec6b0a46603f72b015d45cf3c11cd.zip 
1056996 BLAKE2B 
bf168c41a9958bcdc679a40d1e88911c6af0e47207362204326b712e0129b37348360a855f44af8b76acc46108ac89a707d0c0f793500c513a919070248939b9
 SHA512 
40cb9ffcaa3c57c69bcbec7b070fad5865e7317817049b7588dd42899054eb97cd17cb0019df99ad2324ed8e2efd8334cd83ace758a4c2d3f453503ccf54a91e

diff --git a/dev-util/bazel/bazel-0.14.1.ebuild 
b/dev-util/bazel/bazel-0.14.1.ebuild
new file mode 100644
index 000..b972de19c2d
--- /dev/null
+++ b/dev-util/bazel/bazel-0.14.1.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit bash-completion-r1 java-pkg-2 multiprocessing
+
+DESCRIPTION="Fast and correct automated build system"
+HOMEPAGE="http://bazel.io/";
+
+bazel_external_uris="https://github.com/google/desugar_jdk_libs/archive/f5e6d80c6b4ec6b0a46603f72b015d45cf3c11cd.zip
 -> google-desugar_jdk_libs-f5e6d80c6b4ec6b0a46603f72b015d45cf3c11cd.zip"
+SRC_URI="https://github.com/bazelbuild/bazel/releases/download/${PV}/${P}-dist.zip
+   ${bazel_external_uris}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples tools zsh-completion"
+# strip corrupts the bazel binary
+RESTRICT="strip"
+RDEPEND="virtual/jdk:1.8"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   app-arch/zip"
+
+S="${WORKDIR}"
+
+bazel-get-flags() {
+   local i fs=()
+   for i in ${CFLAGS}; do
+   fs+=( "--copt=${i}" "--host_copt=${i}" )
+   done
+   for i in ${CXXFLAGS}; do
+   fs+=( "--cxxopt=${i}" "--host_cxxopt=${i}" )
+   done
+   for i in ${CPPFLAGS}; do
+   fs+=( "--copt=${i}" "--host_copt=${i}" )
+   fs+=( "--cxxopt=${i}" "--host_cxxopt=${i}" )
+   done
+   for i in ${LDFLAGS}; do
+   fs+=( "--linkopt=${i}" "--host_linkopt=${i}" )
+   done
+   echo "${fs[*]}"
+}
+
+load_distfiles() {
+   # Populate the bazel distdir to fetch from since it cannot use the 
network
+   local s d uri rename
+   mkdir -p "${T}/bazel-distdir" || die "failed to create distdir"
+
+   while read uri rename d; do
+   [[ -z "$uri" ]] && continue
+   if [[ "$rename" == "->" ]]; then
+   s="${uri##*/}"
+   einfo "Copying $d to bazel distdir $s ..."
+   else
+   s="${uri##*/}"
+   d="${s}"
+   einfo "Copying $d to bazel distdir ..."
+   fi
+   cp "${DISTDIR}/${d}" "${T}/bazel-distdir/${s}" || die
+   done <<< "${bazel_external_uris}"
+}
+
+pkg_setup() {
+   echo ${PATH} | grep -q ccache && \
+   ewarn "${PN} usually fails to compile with ccache, you have 
been warned"
+   java-pkg-2_pkg_setup
+}
+
+src_unpack() {
+   # Only unpack the main distfile
+   unpack ${P}-dist.zip
+}
+
+src_prepare() {
+   load_distfiles
+   default
+
+   # F: fopen_wr
+  

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

2018-06-11 Thread Tobias Klausmann
commit: 5dbdb3093355f6e0f6592e348c65bd0909951e47
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Jun 11 18:04:21 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Jun 11 18:04:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dbdb309

net-im/prosody: Clean up old/vulnerable versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-im/prosody/Manifest  |  2 -
 net-im/prosody/prosody-0.9.11.ebuild | 83 
 net-im/prosody/prosody-0.9.12.ebuild | 83 
 3 files changed, 168 deletions(-)

diff --git a/net-im/prosody/Manifest b/net-im/prosody/Manifest
index b422cffce06..af0978c715d 100644
--- a/net-im/prosody/Manifest
+++ b/net-im/prosody/Manifest
@@ -1,4 +1,2 @@
 DIST prosody-0.10.2.tar.gz 331874 BLAKE2B 
0e0af95a9168810263e6f60b825393d1088f69dba1faabf6c0c9dda3ef6b039a92f7edb9643cb9a60a3131a64038de5c3598f7076837b58ad196ac03fa98bfc4
 SHA512 
9fc05e34b45b0c16835ba94a73532fb3b4ee335f27d56bb9260e1b3e22614f89f44eb5d04b4e90d016db0b5bee6f5c7e7d099e1defb027e6823ee7667c1fe28f
-DIST prosody-0.9.11.tar.gz 267832 BLAKE2B 
f5992c7b34f02557338fec9f8c11c19dc5f31aaee326a33834fc28e06fd4bc41bb46cc79e6c7f206f34a074a52448cfdd98045ab49cf4188a93162cfc16da1ca
 SHA512 
9de11e130f88d1f9a830a4cd9ad90c0176d97977c81fd7a4405ce735f12d23eaa0bb0f124ce406102c2d072247133bddf371256d696e806cac9ef4bf0821684f
-DIST prosody-0.9.12.tar.gz 267869 BLAKE2B 
dff18a9fdf795afa2b6e5c6695bc1bbe64398351b6e600a85b4ca6d4ab5c866e897cacd0cb2ac4425ad7ccc630604fd7089d05a3cbb041262d84cd7027c9e8a9
 SHA512 
e87b5f3b3e327722cec9d8d0470684e2ec2788a1c5ae623c4f505a00572ef21f65afe84cd5b7de47d6a65fe8872506fe34e5e8886e20979ff84710669857ca76
 DIST prosody-0.9.14.tar.gz 268253 BLAKE2B 
0ae62ca3c8eb89feb34f1f67aa3d14aa1e6bf02cf10ff90a43fd7de8bd257d70508e36b10b3f159040c1fa5dcfb6ad8018e3411a5d6042992f71f643a13c11d4
 SHA512 
30116ebc20c719d88bae7f2f44c129604ec4477004581c3556ff548c75ee026a83dc519701a61a8c3f547776ba74c571e38c3e1e5240da9148dad35a5d1f67e3

diff --git a/net-im/prosody/prosody-0.9.11.ebuild 
b/net-im/prosody/prosody-0.9.11.ebuild
deleted file mode 100644
index 56a9af38c7b..000
--- a/net-im/prosody/prosody-0.9.11.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit flag-o-matic multilib systemd versionator
-
-MY_PV=$(replace_version_separator 3 '')
-MY_P="${PN}-${MY_PV}"
-DESCRIPTION="Prosody is a flexible communications server for Jabber/XMPP 
written in Lua"
-HOMEPAGE="http://prosody.im/";
-SRC_URI="http://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm x86"
-IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit libressl"
-
-DEPEND="net-im/jabber-base
-   !jit? ( >=dev-lang/lua-5.1:0 )
-   jit? ( dev-lang/luajit:2 )
-   >=net-dns/libidn-1.1
-   !libressl? ( dev-libs/openssl:0 ) libressl? ( 
dev-libs/libressl:= )"
-RDEPEND="${DEPEND}
-   >=dev-lua/luaexpat-1.3.0
-   dev-lua/luafilesystem
-   ipv6? ( >=dev-lua/luasocket-3 )
-   !ipv6? ( dev-lua/luasocket )
-   libevent? ( >=dev-lua/luaevent-0.4.3 )
-   mysql? ( dev-lua/luadbi[mysql] )
-   postgres? ( dev-lua/luadbi[postgres] )
-   sqlite? ( dev-lua/luadbi[sqlite] )
-   ssl? ( dev-lua/luasec )
-   zlib? ( dev-lua/lua-zlib )"
-
-S=${WORKDIR}/${MY_P}
-
-JABBER_ETC="/etc/jabber"
-JABBER_SPOOL="/var/spool/jabber"
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-0.9.2-cfg.lua.patch"
-   sed -i -e "s!MODULES = \$(DESTDIR)\$(PREFIX)/lib/!MODULES = 
\$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\
-   -e "s!SOURCE = \$(DESTDIR)\$(PREFIX)/lib/!SOURCE = 
\$(DESTDIR)\$(PREFIX)/$(get_libdir)/!"\
-   -e "s!INSTALLEDSOURCE = \$(PREFIX)/lib/!INSTALLEDSOURCE = 
\$(PREFIX)/$(get_libdir)/!"\
-   -e "s!INSTALLEDMODULES = \$(PREFIX)/lib/!INSTALLEDMODULES = 
\$(PREFIX)/$(get_libdir)/!"\
-Makefile || die
-}
-
-src_configure() {
-   # the configure script is handcrafted (and yells at unknown options)
-   # hence do not use 'econf'
-   append-cflags -D_GNU_SOURCE
-   luajit=""
-   if use jit; then
-   luajit="--runwith=luajit"
-   fi
-   ./configure \
-   --ostype=linux $luajit \
-   --prefix="${EPREFIX}/usr" \
-   --libdir="${EPREFIX}/usr/lib64" \
-   --sysconfdir="${JABBER_ETC}" \
-   --datadir="${JABBER_SPOOL}" \
-   --with-lua-include=/usr/include \
-   --with-lua-lib=/usr/$(get_libdir)/lua \
-   --cflags="${CFLAGS} -Wall -fPIC" \
-   --ldflags="${LDFLAGS} -shared" \
-   --c-compiler="$(tc-getCC)" \
-   --linker="$(tc-getCC)" \
-   --req

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

2018-06-11 Thread Markus Meier
commit: 96d387f5f562868807a58ada6504bc454b6c5bf9
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Jun 11 17:57:51 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Jun 11 17:57:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96d387f5

net-im/prosody: arm stable, bug #656998

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 net-im/prosody/prosody-0.9.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/prosody/prosody-0.9.14.ebuild 
b/net-im/prosody/prosody-0.9.14.ebuild
index 2a27e8cdf22..1e99fc2e9a2 100644
--- a/net-im/prosody/prosody-0.9.14.ebuild
+++ b/net-im/prosody/prosody-0.9.14.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://prosody.im/tmp/${MY_PV}/${MY_P}.tar.gz";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 arm x86"
 IUSE="ipv6 libevent mysql postgres sqlite ssl zlib jit libressl"
 
 DEPEND="net-im/jabber-base



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

2018-06-11 Thread Markus Meier
commit: 643bfe4bad579cab57f32c8ff808ebfae8b0ee28
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Jun 11 17:56:34 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Jun 11 17:56:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=643bfe4b

www-servers/apache: arm stable, bug #651406

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 www-servers/apache/apache-2.4.33-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/apache/apache-2.4.33-r1.ebuild 
b/www-servers/apache/apache-2.4.33-r1.ebuild
index bde56cae7a6..13fbf91148b 100644
--- a/www-servers/apache/apache-2.4.33-r1.ebuild
+++ b/www-servers/apache/apache-2.4.33-r1.ebuild
@@ -130,7 +130,7 @@ HOMEPAGE="https://httpd.apache.org/";
 # some helper scripts are Apache-1.1, thus both are here
 LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint 
~sparc64-solaris ~x64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos ~m68k-mint 
~sparc64-solaris ~x64-solaris"
 # Enable http2 by default (bug #563452)
 # FIXME: Move to apache-2.eclass once this has reached stable.
 IUSE="${IUSE/apache2_modules_http2/+apache2_modules_http2}"



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

2018-06-11 Thread Markus Meier
commit: 3cb048e7c7dc59b0c8f6459562baf0ea1dbf4935
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Jun 11 17:56:01 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Jun 11 17:56:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cb048e7

app-arch/rpm: arm stable, bug #533740

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 app-arch/rpm/rpm-4.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/rpm/rpm-4.14.1.ebuild b/app-arch/rpm/rpm-4.14.1.ebuild
index 13ab11f0928..98bc72f73cb 100644
--- a/app-arch/rpm/rpm-4.14.1.ebuild
+++ b/app-arch/rpm/rpm-4.14.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 
1-2).x/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux"
 
 IUSE="acl caps doc lua nls python selinux test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2018-06-11 Thread Markus Meier
commit: 25415c4e492a0904b115df74ade7b9dcd48974de
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Jun 11 17:56:59 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Jun 11 17:56:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25415c4e

net-vpn/openvpn: arm stable, bug #654028

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 net-vpn/openvpn/openvpn-2.4.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/openvpn/openvpn-2.4.6.ebuild 
b/net-vpn/openvpn/openvpn-2.4.6.ebuild
index 390731822f6..957fe13513c 100644
--- a/net-vpn/openvpn/openvpn-2.4.6.ebuild
+++ b/net-vpn/openvpn/openvpn-2.4.6.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://openvpn.net/";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-macos"
 
 IUSE="down-root examples inotify iproute2 libressl lz4 +lzo mbedtls pam"
 IUSE+=" pkcs11 +plugins selinux +ssl static systemd test userland_BSD"



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

2018-06-11 Thread Markus Meier
commit: 8280b0323c08f8ec4ea70e35ba5ec4a0dbd6a225
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Jun 11 17:57:27 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Jun 11 17:57:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8280b032

net-analyzer/wireshark: arm stable, bug #656806

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 net-analyzer/wireshark/wireshark-2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-2.6.1.ebuild 
b/net-analyzer/wireshark/wireshark-2.6.1.ebuild
index c5eea4d2e6e..088cd5cb5d0 100644
--- a/net-analyzer/wireshark/wireshark-2.6.1.ebuild
+++ b/net-analyzer/wireshark/wireshark-2.6.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm hppa ia64 ~ppc64 x86"
+KEYWORDS="amd64 arm hppa ia64 ~ppc64 x86"
 IUSE="
adns androiddump bcg729 +capinfos +captype ciscodump +dftest doc
+dumpcap +editcap gtk kerberos libxml2 lua lz4 maxminddb +mergecap 
+netlink



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

2018-06-11 Thread Markus Meier
commit: afd64baef6844280b39506b6659ed3c021dfb868
Author: Markus Meier  gentoo  org>
AuthorDate: Mon Jun 11 17:56:26 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Mon Jun 11 17:56:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afd64bae

app-admin/apache-tools: arm stable, bug #651406

Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm"

 app-admin/apache-tools/apache-tools-2.4.33.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/apache-tools/apache-tools-2.4.33.ebuild 
b/app-admin/apache-tools/apache-tools-2.4.33.ebuild
index 9591b97800e..5460b83bb68 100644
--- a/app-admin/apache-tools/apache-tools-2.4.33.ebuild
+++ b/app-admin/apache-tools/apache-tools-2.4.33.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-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 ~m68k-mint ~sparc64-solaris ~x64-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 ~m68k-mint ~sparc64-solaris ~x64-solaris"
 IUSE="libressl ssl"
 RESTRICT="test"
 



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

2018-06-11 Thread Tobias Klausmann
commit: 05744748e9d866af03c257b212a58435e834f6f8
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Jun 11 17:50:14 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Jun 11 17:50:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05744748

dev-python/pycodestyle: Add 2.4.0 and clean old versions

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-python/pycodestyle/Manifest|  4 +--
 dev-python/pycodestyle/pycodestyle-2.1.0.ebuild| 37 --
 dev-python/pycodestyle/pycodestyle-2.2.0.ebuild| 37 --
 ...style-2.0.0.ebuild => pycodestyle-2.4.0.ebuild} |  4 +--
 4 files changed, 3 insertions(+), 79 deletions(-)

diff --git a/dev-python/pycodestyle/Manifest b/dev-python/pycodestyle/Manifest
index 7422364d22c..dc177866ba9 100644
--- a/dev-python/pycodestyle/Manifest
+++ b/dev-python/pycodestyle/Manifest
@@ -1,4 +1,2 @@
-DIST pycodestyle-2.0.0.tar.gz 81701 BLAKE2B 
8b209762f7edce1d47a078f8b836efd9a47656c16ecbed1beba6fe989c7898769013433be5902b47ef15d919560534976ae21bb2a18b76c02b95763ce379bd3f
 SHA512 
c003a75bb8873d8ec09cbaf7391c75ebd4739eeab518bbea03c8b2cdc18839773190352166ded78d32992adb56895ee1502003bca11b2d63676c10facb879ac8
-DIST pycodestyle-2.1.0.tar.gz 85519 BLAKE2B 
95b0a260ba0cf4b07b02baf9b0a9f7c58634568854455add3bcf8d0597debdec8a1dbf95db4b6d4f8aebd327843a398a88826ed6dad403f0363bdf23ae4dd7b9
 SHA512 
901025813884612a04a1f37d2197a7757a050cb38f0dcbff7602b636ad22ae73e943d9b6a5028feda3bec9e55eca91064ace0416ffab8ea0c1721c50dd5c2673
-DIST pycodestyle-2.2.0.tar.gz 85811 BLAKE2B 
22ec88146292d024ba46ae469d76b45b073f1d914b57fea104483fccec438c8922bf808fa5acda0ce391fb25d27a5ed245be17c19b3a7865299622b9dc073d9b
 SHA512 
19c925158d6d0fa704f58387585aa4a618c4973d9f6e99a7831d9a41cb7886a4f1fec8b696162787a84dc575adb6e1cc253fb4af31252ae9cff0ced4b066c346
 DIST pycodestyle-2.3.1.tar.gz 89460 BLAKE2B 
0b7e23be13830954277d521262e9504ade8a4d0275a77e6365201ccffae955a8f505a1cd5e739145e1fc5551c3b956ff9a51bb57cede819f2886ee36637f7f9e
 SHA512 
276bc21b4e6898e379be88f3582135a21314460ad20d4b6c3e12825ac1a72082b2c08bb62099e704c3222f879a1098d0b305132fac1095aaa60ca239b9763a2d
+DIST pycodestyle-2.4.0.tar.gz 96665 BLAKE2B 
9c847aa9c9ffa1f401595d1c2c3f81f971f69628fb34d4e572ccb99203f8e9abe8101302d61c4ae7d330c03e7d0dd5e252d658065b7ed6660dea186880030529
 SHA512 
cb35238291fed30f1a4363e65b754165772d01e6006e19ce31769691aed17411cd893899fcd22dfca0455401bee899097fff6f3d63825c7656f186e37b7da3a0

diff --git a/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild 
b/dev-python/pycodestyle/pycodestyle-2.1.0.ebuild
deleted file mode 100644
index 875a490fe5e..000
--- a/dev-python/pycodestyle/pycodestyle-2.1.0.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
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python style guide checker (fka pep8)"
-HOMEPAGE="https://pypi.org/project/pycodestyle/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --statistics 
pycodestyle.py || die
-   PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py -v --testsuite=testsuite 
|| die
-   PYTHONPATH="${S}" "${PYTHON}" pycodestyle.py --doctest -v || die
-   esetup.py test
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild 
b/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild
deleted file mode 100644
index b4831ef4d10..000
--- a/dev-python/pycodestyle/pycodestyle-2.2.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Python style guide checker (fka pep8)"
-HOMEPAGE="https://pypi.org/project/pycodestyle/";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc"
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python

[gentoo-commits] proj/musl:master commit in: sys-apps/iproute2/files/, sys-apps/iproute2/

2018-06-11 Thread Aric Belsito
commit: 7355c99b8c22fcd81e1c7513cbe066ed015a8f10
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Jun 11 17:46:42 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Jun 11 17:46:42 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=7355c99b

sys-apps/iproute2: refresh patch

 sys-apps/iproute2/files/iproute2-4.17.0-musl.patch | 268 +
 sys-apps/iproute2/iproute2-4.17.0.ebuild   |   2 +-
 2 files changed, 269 insertions(+), 1 deletion(-)

diff --git a/sys-apps/iproute2/files/iproute2-4.17.0-musl.patch 
b/sys-apps/iproute2/files/iproute2-4.17.0-musl.patch
new file mode 100644
index 000..2a75596
--- /dev/null
+++ b/sys-apps/iproute2/files/iproute2-4.17.0-musl.patch
@@ -0,0 +1,268 @@
+diff -Naur iproute2-4.17.0.orig/include/uapi/linux/if_tunnel.h 
iproute2-4.17.0/include/uapi/linux/if_tunnel.h
+--- iproute2-4.17.0.orig/include/uapi/linux/if_tunnel.h2018-06-11 
10:31:44.723159108 -0700
 iproute2-4.17.0/include/uapi/linux/if_tunnel.h 2018-06-11 
10:32:17.676158518 -0700
+@@ -3,7 +3,6 @@
+ #define _IF_TUNNEL_H_
+ 
+ #include 
+-#include 
+ #include 
+ #include 
+ #include 
+diff -Naur iproute2-4.17.0.orig/include/uapi/linux/ip6_tunnel.h 
iproute2-4.17.0/include/uapi/linux/ip6_tunnel.h
+--- iproute2-4.17.0.orig/include/uapi/linux/ip6_tunnel.h   2018-06-11 
10:31:44.722159108 -0700
 iproute2-4.17.0/include/uapi/linux/ip6_tunnel.h2018-06-11 
10:32:24.676158393 -0700
+@@ -3,7 +3,6 @@
+ #define _IP6_TUNNEL_H
+ 
+ #include 
+-#include  /* For IFNAMSIZ. */
+ #include /* For struct in6_addr. */
+ 
+ #define IPV6_TLV_TNL_ENCAP_LIMIT 4
+diff -Naur iproute2-4.17.0.orig/include/uapi/linux/kernel.h 
iproute2-4.17.0/include/uapi/linux/kernel.h
+--- iproute2-4.17.0.orig/include/uapi/linux/kernel.h   2018-06-11 
10:31:44.722159108 -0700
 iproute2-4.17.0/include/uapi/linux/kernel.h2018-06-11 
10:32:41.676158088 -0700
+@@ -2,7 +2,9 @@
+ #ifndef _LINUX_KERNEL_H
+ #define _LINUX_KERNEL_H
+ 
++#ifdef __GLIBC__
+ #include 
++#endif
+ 
+ /*
+  * 'kernel.h' contains some often-used function prototypes etc
+diff -Naur iproute2-4.17.0.orig/include/uapi/linux/libc-compat.h 
iproute2-4.17.0/include/uapi/linux/libc-compat.h
+--- iproute2-4.17.0.orig/include/uapi/linux/libc-compat.h  2018-06-11 
10:31:44.721159108 -0700
 iproute2-4.17.0/include/uapi/linux/libc-compat.h   2018-06-11 
10:37:37.376152793 -0700
+@@ -49,47 +49,57 @@
+ #ifndef _LIBC_COMPAT_H
+ #define _LIBC_COMPAT_H
+ 
+-/* We have included glibc headers... */
+-#if defined(__GLIBC__)
++/* We're used from userspace... */
++#if !defined(__KERNEL__)
+ 
+-/* Coordinate with glibc net/if.h header. */
++/* Coordinate with libc net/if.h header. */
+ #if defined(_NET_IF_H) && defined(__USE_MISC)
+ 
+-/* GLIBC headers included first so don't define anything
++/* libc headers included first so don't define anything
+  * that would already be defined. */
+ 
+ #define __UAPI_DEF_IF_IFCONF 0
+ #define __UAPI_DEF_IF_IFMAP 0
+ #define __UAPI_DEF_IF_IFNAMSIZ 0
+ #define __UAPI_DEF_IF_IFREQ 0
+-/* Everything up to IFF_DYNAMIC, matches net/if.h until glibc 2.23 */
+ #define __UAPI_DEF_IF_NET_DEVICE_FLAGS 0
++#if !defined(__GLIBC__)
++#define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO 0
++#else
+ /* For the future if glibc adds IFF_LOWER_UP, IFF_DORMANT and IFF_ECHO */
+ #ifndef __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO
+ #define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO 1
+ #endif /* __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO */
++#endif /* !defined(__GLIBC__) */
+ 
+ #else /* _NET_IF_H */
+ 
+ /* Linux headers included first, and we must define everything
+- * we need. The expectation is that glibc will check the
++ * we need. The expectation is that libc will check the
+  * __UAPI_DEF_* defines and adjust appropriately. */
+ 
+ #define __UAPI_DEF_IF_IFCONF 1
+ #define __UAPI_DEF_IF_IFMAP 1
+ #define __UAPI_DEF_IF_IFNAMSIZ 1
+ #define __UAPI_DEF_IF_IFREQ 1
+-/* Everything up to IFF_DYNAMIC, matches net/if.h until glibc 2.23 */
+ #define __UAPI_DEF_IF_NET_DEVICE_FLAGS 1
+ /* For the future if glibc adds IFF_LOWER_UP, IFF_DORMANT and IFF_ECHO */
+ #define __UAPI_DEF_IF_NET_DEVICE_FLAGS_LOWER_UP_DORMANT_ECHO 1
+ 
+ #endif /* _NET_IF_H */
+ 
+-/* Coordinate with glibc netinet/in.h header. */
++/* Coordinate with libc netinet/if_ether.h */
++#ifdef _NETINET_IF_ETHER_H
++#define __UAPI_DEF_ETHHDR 0
++#else
++/* glibc uses __NETINET_IF_ETHER_H and uses the uapi header */
++#define __UAPI_DEF_ETHHDR 1
++#endif /* _NETINET_IF_ETHER_H */
++
++/* Coordinate with libc netinet/in.h header. */
+ #if defined(_NETINET_IN_H)
+ 
+-/* GLIBC headers included first so don't define anything
++/* libc headers included first so don't define anything
+  * that would already be defined. */
+ #define __UAPI_DEF_IN_ADDR0
+ #define __UAPI_DEF_IN_IPPROTO 0
+@@ -99,15 +109,7 @@
+ #define __UAPI_DEF_IN_CLASS   0
+

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

2018-06-11 Thread Michał Górny
commit: df7efd56ce2c7901208710c54c7d09bf2466583d
Author: Stefan Cristian B  gmail  com>
AuthorDate: Sun Jun 10 08:28:13 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 11 17:38:17 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=df7efd56

repositories: Update e-mail for Stefan Cristian Brindusa

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

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 13548ce..f0bdde8 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -395,7 +395,7 @@ FIN
 Argent Linux
 https://gitlab.com/argent/argent-main
 
-  stefan.crist...@rogentos.ro
+  stefan.cristian+gen...@rogentos.ro
   Stefan Cristian Brindusa
 
 https://gitlab.com/argent/argent-main.git



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

2018-06-11 Thread Michał Górny
commit: 623f35b1c173a52715b496e5eb210cd720563d5b
Author: glicOne  gmail  com>
AuthorDate: Sun Jun 10 19:16:48 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 11 17:39:42 2018 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=623f35b1

repositories: Changed repository url for glicOne overlay.

Moved to gitlab and changed links to repository

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

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index f0bdde8..5df6475 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1955,14 +1955,14 @@ FIN
   
 glicOne
 glicOne Overlay with non existing in layman 
utils
-https://github.com/RomaniukVadim/glicOne
+https://gitlab.com/glicOne/glicOne-overlay
 
-  lavadimka1...@gmail.com
+  romaniuk...@gmail.com
   Vadim Romaniuk
 
-git://github.com/RomaniukVadim/glicOne-overlay.git
-https://github.com/RomaniukVadim/glicOne-overlay.git
-g...@github.com:RomaniukVadim/glicOne-overlay.git
+git://gitlab.com/glicOne/glicOne-overlay.git
+https://gitlab.com/glicOne/glicOne-overlay.git
+g...@gitlab.com:glicOne/glicOne-overlay.git
 
http://github.com/RomaniukVadim/glicOne-overlay/commits/master.atom
   
   



[gentoo-commits] proj/musl:master commit in: sys-apps/iproute2/

2018-06-11 Thread Aric Belsito
commit: 7d569be74440f3c69bbc3156a94a9798dc0fbbfb
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Jun 11 17:29:15 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Jun 11 17:29:15 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=7d569be7

sys-apps/iproute2: version bump to 4.17.0

 sys-apps/iproute2/Manifest   | 1 +
 sys-apps/iproute2/{iproute2-4.16.0.ebuild => iproute2-4.17.0.ebuild} | 0
 2 files changed, 1 insertion(+)

diff --git a/sys-apps/iproute2/Manifest b/sys-apps/iproute2/Manifest
index 769cee9..74ab904 100644
--- a/sys-apps/iproute2/Manifest
+++ b/sys-apps/iproute2/Manifest
@@ -1,3 +1,4 @@
 DIST iproute2-4.14.1.tar.xz 636876 BLAKE2B 
232dbe29b9af516d8345c86c044359d3b0cfe73fb88a2ba1dcd05534b52dea37c9155d2b273a4a0d40b55fba8b5503a0fbe5bc71f37864c0a2ba9d6f08b6bf41
 SHA512 
e593b68c46ef5f98bd6911ee7beb38388a14935a29fefabdeccc96aa012593b6f3a49b3bb1baed7d77e54f1f4a857172e058b73407f4070f158b8713f44f5d2c
 DIST iproute2-4.15.0.tar.xz 648836 BLAKE2B 
e7f3a027ec88de7c6ac82c5529b37fdf22311bc9290e71662bc3b1e32d4cb6a1845e2badb961a21b50b5ed1b9d23130e512a011767183f7df1b33eb05101044b
 SHA512 
bcc54b8dc83d7b0e759a2de77eb38fed483d7f7f82698f482e0259000f2f55ba79c556b721730eb999e85c865ad136fd7549304ebe936545e02e848ba7f698bc
 DIST iproute2-4.16.0.tar.xz 661336 BLAKE2B 
4efb08c88a60b1bbbeef807c0731e610032bfb11d022562c1df052d324eb43cb25b9523f49730d22a3f92eb06bd5037c70d8ed0b58276a0cf0854a0f82800b64
 SHA512 
a8fbc92665a8d4ca6ee1e894bfb27373cf6b16dac9e2ab3831e418fcc9b895acc7d6fc64efa0b0e37b3affd4ef8eacf4dae5715536138d6a05c65ad49a2becad
+DIST iproute2-4.17.0.tar.xz 675268 BLAKE2B 
3d1455c119c9c56b11a64092c152fcea2b161f571006878215425b95deef779fed523368252ce672a1a70251c019edbe6ff2bdac8c3ee8abab1fb29e2a3c669c
 SHA512 
ccd7fb70afd58f1fcd4e17c38a24607207da853c4d6118fda423efa6e51faad3ad03c4d6d58a579c40ef9c68aaf13b1c455e12b0c36e155712d3d4db3c2ff4b5

diff --git a/sys-apps/iproute2/iproute2-4.16.0.ebuild 
b/sys-apps/iproute2/iproute2-4.17.0.ebuild
similarity index 100%
rename from sys-apps/iproute2/iproute2-4.16.0.ebuild
rename to sys-apps/iproute2/iproute2-4.17.0.ebuild



[gentoo-commits] proj/musl:master commit in: dev-libs/elfutils/files/, dev-libs/elfutils/

2018-06-11 Thread Aric Belsito
commit: 6996199dda78dc093e6ff2aeb0f80f5f3c23bdfd
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Jun 11 17:24:00 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Jun 11 17:24:00 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=6996199d

dev-libs/elfutils: bump patch

 dev-libs/elfutils/elfutils-0.171.ebuild|   2 +-
 .../elfutils/files/elfutils-0.171-musl-utils.patch | 134 +
 2 files changed, 135 insertions(+), 1 deletion(-)

diff --git a/dev-libs/elfutils/elfutils-0.171.ebuild 
b/dev-libs/elfutils/elfutils-0.171.ebuild
index 874fd07..b42dcab 100644
--- a/dev-libs/elfutils/elfutils-0.171.ebuild
+++ b/dev-libs/elfutils/elfutils-0.171.ebuild
@@ -35,7 +35,7 @@ src_prepare() {
# Add MUSL patches
epatch "${FILESDIR}"/${PN}-0.170-musl-obstack-fts.patch
epatch "${FILESDIR}"/${P}-musl-libs.patch
-   epatch "${FILESDIR}"/${PN}-0.170-musl-utils.patch
+   epatch "${FILESDIR}"/${P}-musl-utils.patch
 
eautoreconf
 

diff --git a/dev-libs/elfutils/files/elfutils-0.171-musl-utils.patch 
b/dev-libs/elfutils/files/elfutils-0.171-musl-utils.patch
new file mode 100644
index 000..a6b9684
--- /dev/null
+++ b/dev-libs/elfutils/files/elfutils-0.171-musl-utils.patch
@@ -0,0 +1,134 @@
+diff -Naur elfutils-0.171.orig/src/arlib.h elfutils-0.171/src/arlib.h
+--- elfutils-0.171.orig/src/arlib.h2018-06-11 10:11:02.221181359 -0700
 elfutils-0.171/src/arlib.h 2018-06-11 10:21:30.810170102 -0700
+@@ -29,6 +29,12 @@
+ #include 
+ #include 
+ 
++#if !defined(ALLPERMS)
++# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 0 
*/
++#endif
++#if !defined(DEFFILEMODE)
++# define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)/* 
0666*/
++#endif
+ 
+ /* State of -D/-U flags.  */
+ extern bool arlib_deterministic_output;
+diff -Naur elfutils-0.171.orig/src/elfcompress.c 
elfutils-0.171/src/elfcompress.c
+--- elfutils-0.171.orig/src/elfcompress.c  2018-06-11 10:11:02.221181359 
-0700
 elfutils-0.171/src/elfcompress.c   2018-06-11 10:21:30.813170102 -0700
+@@ -37,6 +37,13 @@
+ #include "libeu.h"
+ #include "printversion.h"
+ 
++#if !defined(ALLPERMS)
++# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO) /* 0 
*/
++#endif
++#if !defined(FNM_EXTMATCH)
++# define FNM_EXTMATCH ( 1 << 5)
++#endif
++
+ /* Name and version of program.  */
+ ARGP_PROGRAM_VERSION_HOOK_DEF = print_version;
+ 
+diff -Naur elfutils-0.171.orig/src/readelf.c elfutils-0.171/src/readelf.c
+--- elfutils-0.171.orig/src/readelf.c  2018-06-11 10:11:02.221181359 -0700
 elfutils-0.171/src/readelf.c   2018-06-11 10:21:43.630169873 -0700
+@@ -4771,10 +4771,11 @@
+   return cudie_base (&cu);
+ }
+ 
++static const char *listptr_name;
++
+ static int
+-compare_listptr (const void *a, const void *b, void *arg)
++compare_listptr (const void *a, const void *b)
+ {
+-  const char *name = arg;
+   struct listptr *p1 = (void *) a;
+   struct listptr *p2 = (void *) b;
+ 
+@@ -4790,21 +4791,21 @@
+ p1->warned = p2->warned = true;
+ error (0, 0,
+gettext ("%s %#" PRIx64 " used with different address sizes"),
+-   name, (uint64_t) p1->offset);
++   listptr_name, (uint64_t) p1->offset);
+   }
+   if (p1->dwarf64 != p2->dwarf64)
+   {
+ p1->warned = p2->warned = true;
+ error (0, 0,
+gettext ("%s %#" PRIx64 " used with different offset sizes"),
+-   name, (uint64_t) p1->offset);
++   listptr_name, (uint64_t) p1->offset);
+   }
+   if (listptr_base (p1) != listptr_base (p2))
+   {
+ p1->warned = p2->warned = true;
+ error (0, 0,
+gettext ("%s %#" PRIx64 " used with different base addresses"),
+-   name, (uint64_t) p1->offset);
++   listptr_name, (uint64_t) p1->offset);
+   }
+   if (p1->attr != p2 ->attr)
+   {
+@@ -4812,7 +4813,7 @@
+ error (0, 0,
+gettext ("%s %#" PRIx64
+ " used with different attribute %s and %s"),
+-   name, (uint64_t) p1->offset, dwarf_attr_name (p2->attr),
++   listptr_name, (uint64_t) p1->offset, dwarf_attr_name 
(p2->attr),
+dwarf_attr_name (p2->attr));
+   }
+ }
+@@ -4884,8 +4885,11 @@
+ sort_listptr (struct listptr_table *table, const char *name)
+ {
+   if (table->n > 0)
+-qsort_r (table->table, table->n, sizeof table->table[0],
+-   &compare_listptr, (void *) name);
++{
++  listptr_name = name;
++  qsort (table->table, table->n, sizeof table->table[0],
++  &compare_listptr);
++}
+ }
+ 
+ static bool
+diff -Naur elfutils-0.171.orig/src/strip.c elfutils-0.171/src/strip.c
+--- elfutils-0.171.orig/src/strip.c2018-06-11 10:11:02.221181359 -0700
 elfutils-0.171/src/strip.c 2018-06-11 10:21:30.818170102 -0700
+@@ -47,6 +47,13 @@
+ #include 
+

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/posix-spawn/, dev-ruby/posix-spawn/files/

2018-06-11 Thread Hans de Graaff
commit: 402a4305cf5eb7f6fdddb0aa63bbba94932b4524
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun 11 17:18:06 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 11 17:18:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=402a4305

dev-ruby/posix-spawn: fix compilation on x86

Closes: https://bugs.gentoo.org/657806
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../posix-spawn/files/posix-spawn-0.3.13-x86.patch | 23 ++
 dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild  | 37 ++
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch 
b/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch
new file mode 100644
index 000..b96579b1828
--- /dev/null
+++ b/dev-ruby/posix-spawn/files/posix-spawn-0.3.13-x86.patch
@@ -0,0 +1,23 @@
+From 5201e921a788fbb97f14ea0c617a2213dc3da1ca Mon Sep 17 00:00:00 2001
+From: Pascal Terjan 
+Date: Sun, 20 Aug 2017 12:13:15 +0100
+Subject: [PATCH] Fix build when SIZEOF_INT == SIZEOF_LONG
+
+Signed-off-by: Aman Gupta 
+---
+ ext/posix-spawn.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/ext/posix-spawn.c b/ext/posix-spawn.c
+index 1659bed..2e4c4de 100644
+--- a/ext/posix-spawn.c
 b/ext/posix-spawn.c
+@@ -61,7 +61,7 @@ posixspawn_obj_to_fd(VALUE obj)
+* rb_fix2int takes care of raising if the provided 
object is a
+* Bignum and is out of range of an int
+*/
+-  fd = (int)rb_fix2int(obj);
++  fd = FIX2INT(obj);
+   break;
+ 
+   case T_SYMBOL:

diff --git a/dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild 
b/dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild
new file mode 100644
index 000..e9cd83e0d10
--- /dev/null
+++ b/dev-ruby/posix-spawn/posix-spawn-0.3.13-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md TODO HACKING"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Library that implements a subset of the Ruby 1.9 Process::spawn"
+HOMEPAGE="https://github.com/rtomayko/posix-spawn/";
+
+KEYWORDS="~amd64"
+
+LICENSE="MIT LGPL-2.1"
+SLOT="0"
+IUSE="test"
+
+all_ruby_prepare() {
+   eapply "${FILESDIR}/${P}-x86.patch"
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext
+   cp ext/*$(get_modname) lib/ || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:.:test -e 'Dir["test/test_*.rb"].each {|f| require f}' || 
die
+}



[gentoo-commits] proj/musl:master commit in: dev-libs/elfutils/, dev-libs/elfutils/files/

2018-06-11 Thread Aric Belsito
commit: 77466dc98168a7edba16360eee1e10bb1f8a1ccb
Author: Aric Belsito  gmail  com>
AuthorDate: Mon Jun 11 17:15:55 2018 +
Commit: Aric Belsito  gmail  com>
CommitDate: Mon Jun 11 17:15:55 2018 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=77466dc9

dev-libs/elfutils: version bump to 0.171

cleanup

 dev-libs/elfutils/Manifest |   5 +-
 dev-libs/elfutils/elfutils-0.166.ebuild|  82 
 dev-libs/elfutils/elfutils-0.170-r1.ebuild |   4 +-
 ...utils-0.169-r1.ebuild => elfutils-0.171.ebuild} |  14 +-
 .../elfutils/files/elfutils-0.166-musl-libs.patch  | 218 -
 .../files/elfutils-0.166-musl-obstack-fts.patch| 124 
 .../elfutils/files/elfutils-0.166-musl-utils.patch | 183 -
 .../files/elfutils-0.168-musl-obstack-fts.patch| 102 --
 .../elfutils/files/elfutils-0.168-musl-utils.patch | 122 
 .../elfutils/files/elfutils-0.171-musl-libs.patch  |  86 
 10 files changed, 97 insertions(+), 843 deletions(-)

diff --git a/dev-libs/elfutils/Manifest b/dev-libs/elfutils/Manifest
index d672ecd..625bc52 100644
--- a/dev-libs/elfutils/Manifest
+++ b/dev-libs/elfutils/Manifest
@@ -1,3 +1,2 @@
-DIST elfutils-0.166.tar.bz2 6496225 SHA256 
3c056914c8a438b210be0d790463b960fc79d234c3f05ce707cbff80e94cba30 SHA512 
543e8f9fbebbef86c40b1d6dc93da04a8431071aad636b70e7a1b9536450990b237d100d354c29fd0c3605074b7a0621f5bdaab4c2664be42b2912ad283bc614
 WHIRLPOOL 
4de083bbb397235dd46c2ba6e0cbb615825c13d7e8413015d5ff08d72deae1d9a508c0f6e5f90e27cc709870064bc53a51b2a681f2a9b80e1f658bb7dc475f8d
-DIST elfutils-0.169.tar.bz2 8067758 SHA256 
9412fac7b30872b738bc1ed1ebcaed54493c26ef9a67887913498c17b10f3bc2 SHA512 
0a81a20bb2aff533d035d6b76f1403437b2e11bce390db57e34b8c26e4b9b3150346d83dddcbfbbdc58063f046ca3223508dba35c6ce88e375d201e7a777a8b9
 WHIRLPOOL 
dc4f689b403160272dccb1e306ee3584f6d06156d3318d745bba46f9b4a31a477795223233ffb420b096b1c196aba09492e4ab5803f6150326b48e1045f92e06
-DIST elfutils-0.170.tar.bz2 8358001 SHA256 
1f844775576b79bdc9f9c717a50058d08620323c1e935458223a12f249c9e066 SHA512 
aca0b5e271138eaf86e36505ffb101181207b151e833e6cd7c18986ac50678542a5ecd2250f8dd6923ca497142f197c8b08fd225e4130b16b6203c24013d6d28
 WHIRLPOOL 
ebb3069aa52e49b7e137c722ac490b12393e0c54656d6d7476193eaa4253b48209e62e4babd4819a52cf5a9f3a1a6f56945eb776f014df9cbd841aa392e94823
+DIST elfutils-0.170.tar.bz2 8358001 BLAKE2B 
03ea3ba7d3feaac43065312c475f4a3cd9083a6c56c9982fa00c0ed02b28440f6a37bbeca4be18db13749647ea1c8a6f00dae7efcb1c70235110e60ad7d56d06
 SHA512 
aca0b5e271138eaf86e36505ffb101181207b151e833e6cd7c18986ac50678542a5ecd2250f8dd6923ca497142f197c8b08fd225e4130b16b6203c24013d6d28
+DIST elfutils-0.171.tar.bz2 8654558 BLAKE2B 
709b5a4090867ec536563ed31178f7fb820f6b0ca8fb7c379b9081fa0d0027c8c2904cf17e9ee36245dd1fea8d2853ee3e7af457167e007fb7b08eec2e921a30
 SHA512 
777be2d63ca9b11440bf358a33428d9ca974e2612a880934156c9f7194af596ed627c1ed2d48dbd47a3761c94913b8f39565f9dcb6b62c92bf229f04c96d5ee3

diff --git a/dev-libs/elfutils/elfutils-0.166.ebuild 
b/dev-libs/elfutils/elfutils-0.166.ebuild
deleted file mode 100644
index 38a5cc5..000
--- a/dev-libs/elfutils/elfutils-0.166.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit autotools eutils flag-o-matic multilib-minimal
-
-DESCRIPTION="Libraries/utilities to handle ELF objects (drop in replacement 
for libelf)"
-HOMEPAGE="https://fedorahosted.org/elfutils/";
-SRC_URI="https://fedorahosted.org/releases/e/l/${PN}/${PV}/${P}.tar.bz2";
-
-LICENSE="|| ( GPL-2+ LGPL-3+ ) utils? ( GPL-3+ )"
-SLOT="0"
-KEYWORDS="amd64 arm ia64 ~mips ppc sh sparc x86"
-IUSE="bzip2 lzma nls static-libs test +threads +utils"
-
-# This pkg does not actually seem to compile currently in a uClibc
-# environment (xrealloc errs), but we need to ensure that glibc never
-# gets pulled in as a dep since this package does not respect virtual/libc
-RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   bzip2? ( >=app-arch/bzip2-1.0.6-r4[${MULTILIB_USEDEP}] )
-   lzma? ( >=app-arch/xz-utils-5.0.5-r1[${MULTILIB_USEDEP}] )
-   !dev-libs/libelf
-   abi_x86_32? (
-   !<=app-emulation/emul-linux-x86-baselibs-20130224-r11
-   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
-   )"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )
-   >=sys-devel/flex-2.5.4a
-   sys-devel/m4
-   elibc_musl? (
-   sys-libs/argp-standalone
-   sys-libs/fts-standalone
-   sys-libs/obstack-standalone
-   )"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-0.118-PaX-support.patch
-
-   # Add MUSL patches
-   epatch "${FILESDIR}"/${P}-musl-obstack-fts.patch
-   epatch "${FILESDIR}"/${P}-musl-libs.patch
-   epatch "${FILESDIR}"/${P}-musl-utils.patch
-
-   eautoreconf
-
- 

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

2018-06-11 Thread Sergei Trofimovich
commit: 847cf02d48213a9ed1c2df41faa86d3768d61a0d
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:53:39 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847cf02d

dev-perl/Module-Build-Tiny: stable 0.39.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild 
b/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild
index 5a9de6aa490..dd8428f8028 100644
--- a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild
+++ b/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild
@@ -8,7 +8,7 @@ inherit perl-module
 
 DESCRIPTION='A tiny replacement for Module::Build'
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: aead0fc38c1facd7ee41d73689aef5ea040a0478
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:50:57 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aead0fc3

dev-perl/Authen-Simple: stable 0.500.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Authen-Simple/Authen-Simple-0.500.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Authen-Simple/Authen-Simple-0.500.0.ebuild 
b/dev-perl/Authen-Simple/Authen-Simple-0.500.0.ebuild
index 68486676b37..ce636886395 100644
--- a/dev-perl/Authen-Simple/Authen-Simple-0.500.0.ebuild
+++ b/dev-perl/Authen-Simple/Authen-Simple-0.500.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Simple Authentication"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Devel-StackTrace-AsHTML/

2018-06-11 Thread Sergei Trofimovich
commit: 9a7da00593cea95a5addd4f3c7f96fe8f36cf1bd
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:53:01 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a7da005

dev-perl/Devel-StackTrace-AsHTML: stable 0.150.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Devel-StackTrace-AsHTML/Devel-StackTrace-AsHTML-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Devel-StackTrace-AsHTML/Devel-StackTrace-AsHTML-0.150.0.ebuild 
b/dev-perl/Devel-StackTrace-AsHTML/Devel-StackTrace-AsHTML-0.150.0.ebuild
index 778f19f83e3..2e789a4716a 100644
--- a/dev-perl/Devel-StackTrace-AsHTML/Devel-StackTrace-AsHTML-0.150.0.ebuild
+++ b/dev-perl/Devel-StackTrace-AsHTML/Devel-StackTrace-AsHTML-0.150.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Displays stack trace in HTML"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: bf1910360ec5031df0be82be5547226b6f49d51c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:47:50 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf191036

dev-perl/FCGI: stable 0.780.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-perl/FCGI/FCGI-0.780.0.ebuild 
b/dev-perl/FCGI/FCGI-0.780.0.ebuild
index 12903cacf60..40e7f726b50 100644
--- a/dev-perl/FCGI/FCGI-0.780.0.ebuild
+++ b/dev-perl/FCGI/FCGI-0.780.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Fast CGI module"
 
 LICENSE="FastCGI"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE=""
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 3d80a730522cd68ba488aa04df5dd767932593b0
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:48:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d80a730

dev-perl/Stream-Buffered: stable 0.30.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Stream-Buffered/Stream-Buffered-0.30.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Stream-Buffered/Stream-Buffered-0.30.0.ebuild 
b/dev-perl/Stream-Buffered/Stream-Buffered-0.30.0.ebuild
index 5d7b8c3e014..f345171e3ae 100644
--- a/dev-perl/Stream-Buffered/Stream-Buffered-0.30.0.ebuild
+++ b/dev-perl/Stream-Buffered/Stream-Buffered-0.30.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Temporary buffer to save bytes"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="virtual/perl-IO"



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

2018-06-11 Thread Sergei Trofimovich
commit: 9e31eb8506172e0b7617a4941ea525933e1eebea
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:59:25 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e31eb85

media-libs/soxr: stable 0.1.3-r1 for sparc

Bug: https://bugs.gentoo.org/657768
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/media-libs/soxr/soxr-0.1.3-r1.ebuild 
b/media-libs/soxr/soxr-0.1.3-r1.ebuild
index 0393942ed95..c7ec8866a28 100644
--- a/media-libs/soxr/soxr-0.1.3-r1.ebuild
+++ b/media-libs/soxr/soxr-0.1.3-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/soxr/${MY_P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 sparc ~x86 
~amd64-fbsd"
 IUSE="examples test"
 
 # CMakeLists.txt builds examples if either test or examples USE flag is 
enabled.



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

2018-06-11 Thread Sergei Trofimovich
commit: 5c05a1797e5f133c002bb401a5822cce99871f66
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:49:24 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c05a179

dev-perl/CGI-Compile: stable 0.220.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/CGI-Compile/CGI-Compile-0.220.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/CGI-Compile/CGI-Compile-0.220.0.ebuild 
b/dev-perl/CGI-Compile/CGI-Compile-0.220.0.ebuild
index 5ea7482b631..f5fdecbd984 100644
--- a/dev-perl/CGI-Compile/CGI-Compile-0.220.0.ebuild
+++ b/dev-perl/CGI-Compile/CGI-Compile-0.220.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Compile .cgi scripts to a code reference like ModPerl::Registry"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/CGI-Emulate-PSGI/

2018-06-11 Thread Sergei Trofimovich
commit: 47427bf898c8d04aa246eb3ba55d77ac1f03b5b6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:52:31 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47427bf8

dev-perl/CGI-Emulate-PSGI: stable 0.230.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.230.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.230.0.ebuild 
b/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.230.0.ebuild
index b7bb105d49e..560dd19cc89 100644
--- a/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.230.0.ebuild
+++ b/dev-perl/CGI-Emulate-PSGI/CGI-Emulate-PSGI-0.230.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PSGI adapter for CGI"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: f0138fa109a5ee92f941bcb6a379e392fd391473
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:56:44 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0138fa1

dev-perl/Filesys-Notify-Simple: stable 0.120.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.120.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.120.0.ebuild 
b/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.120.0.ebuild
index a6fac97bd2e..361b4d363d4 100644
--- a/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.120.0.ebuild
+++ b/dev-perl/Filesys-Notify-Simple/Filesys-Notify-Simple-0.120.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple and dumb file system watcher"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="dev-perl/Filter"



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

2018-06-11 Thread Sergei Trofimovich
commit: 0186bb875784d4a680892d7afe1b1de9865c5766
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:54:11 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0186bb87

dev-perl/Module-Refresh: stable 0.170.0-r1 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Module-Refresh/Module-Refresh-0.170.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Module-Refresh/Module-Refresh-0.170.0-r1.ebuild 
b/dev-perl/Module-Refresh/Module-Refresh-0.170.0-r1.ebuild
index 978c13a677a..0dda356246d 100644
--- a/dev-perl/Module-Refresh/Module-Refresh-0.170.0-r1.ebuild
+++ b/dev-perl/Module-Refresh/Module-Refresh-0.170.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Refresh %INC files when updated on disk"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTTP-Server-Simple-PSGI/

2018-06-11 Thread Sergei Trofimovich
commit: 45b2ee8fe131b483d902af1e579f7d9f8cb0b461
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:54:41 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45b2ee8f

dev-perl/HTTP-Server-Simple-PSGI: stable 0.160.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/HTTP-Server-Simple-PSGI/HTTP-Server-Simple-PSGI-0.160.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/HTTP-Server-Simple-PSGI/HTTP-Server-Simple-PSGI-0.160.0.ebuild 
b/dev-perl/HTTP-Server-Simple-PSGI/HTTP-Server-Simple-PSGI-0.160.0.ebuild
index b137d7e7279..a94f38d6240 100644
--- a/dev-perl/HTTP-Server-Simple-PSGI/HTTP-Server-Simple-PSGI-0.160.0.ebuild
+++ b/dev-perl/HTTP-Server-Simple-PSGI/HTTP-Server-Simple-PSGI-0.160.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="PSGI handler for HTTP::Server::Simple"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 81fcda89ad5daa1496c6bd5aa49ed775bb6cf538
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:57:46 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fcda89

dev-perl/JSON-RPC: stable 1.60.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/JSON-RPC/JSON-RPC-1.60.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/JSON-RPC/JSON-RPC-1.60.0.ebuild 
b/dev-perl/JSON-RPC/JSON-RPC-1.60.0.ebuild
index 43e910dd565..b38bfdef85a 100644
--- a/dev-perl/JSON-RPC/JSON-RPC-1.60.0.ebuild
+++ b/dev-perl/JSON-RPC/JSON-RPC-1.60.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="JSON RPC 2.0 Server Implementation"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test minimal"
 
 # Plack::Request,Plack::Test -> Plack



[gentoo-commits] repo/gentoo:master commit in: dev-perl/LWP-Protocol-http10/

2018-06-11 Thread Sergei Trofimovich
commit: dbfa73609447a707c49957e91e6e034e0413ee22
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:56:13 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbfa7360

dev-perl/LWP-Protocol-http10: stable 6.30.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/LWP-Protocol-http10/LWP-Protocol-http10-6.30.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/LWP-Protocol-http10/LWP-Protocol-http10-6.30.0.ebuild 
b/dev-perl/LWP-Protocol-http10/LWP-Protocol-http10-6.30.0.ebuild
index 171050e2d4b..dd11ca05039 100644
--- a/dev-perl/LWP-Protocol-http10/LWP-Protocol-http10-6.30.0.ebuild
+++ b/dev-perl/LWP-Protocol-http10/LWP-Protocol-http10-6.30.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Legacy HTTP/1.0 support for LWP"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 781d2a4534435c8feefc94571a0852ab07a55820
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:55:12 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=781d2a45

dev-perl/Test-Time: stable 0.50.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Test-Time/Test-Time-0.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Time/Test-Time-0.50.0.ebuild 
b/dev-perl/Test-Time/Test-Time-0.50.0.ebuild
index 9e3f50a7139..6c29493af22 100644
--- a/dev-perl/Test-Time/Test-Time-0.50.0.ebuild
+++ b/dev-perl/Test-Time/Test-Time-0.50.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Overrides the time() and sleep() core functions for testing"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/POSIX-strftime-Compiler/

2018-06-11 Thread Sergei Trofimovich
commit: b06be24550b547bdf3c3e445651f09c343a59a01
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:58:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b06be245

dev-perl/POSIX-strftime-Compiler: stable 0.420.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/POSIX-strftime-Compiler/POSIX-strftime-Compiler-0.420.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/POSIX-strftime-Compiler/POSIX-strftime-Compiler-0.420.0.ebuild 
b/dev-perl/POSIX-strftime-Compiler/POSIX-strftime-Compiler-0.420.0.ebuild
index a0b4853aba6..b9e1446b6bf 100644
--- a/dev-perl/POSIX-strftime-Compiler/POSIX-strftime-Compiler-0.420.0.ebuild
+++ b/dev-perl/POSIX-strftime-Compiler/POSIX-strftime-Compiler-0.420.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="GNU C library compatible strftime for loggers and servers"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test minimal"
 
 # POSIX -> perl



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

2018-06-11 Thread Sergei Trofimovich
commit: 971cc0145d938a25bd42b02b65974f7fed693ef6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:55:43 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=971cc014

dev-perl/FCGI-ProcManager: stable 0.280.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.280.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.280.0.ebuild 
b/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.280.0.ebuild
index b94a020eb76..a7df40ba6db 100644
--- a/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.280.0.ebuild
+++ b/dev-perl/FCGI-ProcManager/FCGI-ProcManager-0.280.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="A FastCGI process manager"
 
 SLOT="0"
 LICENSE="LGPL-2.1"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Accessor-Lite/

2018-06-11 Thread Sergei Trofimovich
commit: 3eb2946a67edfd5c5c834a68f9655c7cb16d45b6
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:57:14 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb2946a

dev-perl/Class-Accessor-Lite: stable 0.80.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild 
b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
index a82c80b657b..589c77b02ee 100644
--- a/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
+++ b/dev-perl/Class-Accessor-Lite/Class-Accessor-Lite-0.80.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A minimalistic variant of Class::Accessor"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND=""



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

2018-06-11 Thread Sergei Trofimovich
commit: c7cb2fbc8e248275b6593c2be8b33f6dcb325c6f
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:58:18 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7cb2fbc

dev-perl/Test-Class: stable 0.500.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Test-Class/Test-Class-0.500.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Class/Test-Class-0.500.0.ebuild 
b/dev-perl/Test-Class/Test-Class-0.500.0.ebuild
index c34efe619ae..38cc5ff4136 100644
--- a/dev-perl/Test-Class/Test-Class-0.500.0.ebuild
+++ b/dev-perl/Test-Class/Test-Class-0.500.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Easily create test classes in an xUnit/JUnit style"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 9e698322e2aaea3824d19afbdc3466ccf25d7e2e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:51:29 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e698322

dev-perl/File-pushd: stable 1.14.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/File-pushd/File-pushd-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-pushd/File-pushd-1.14.0.ebuild 
b/dev-perl/File-pushd/File-pushd-1.14.0.ebuild
index d9946c1a3b8..71c1600c9f2 100644
--- a/dev-perl/File-pushd/File-pushd-1.14.0.ebuild
+++ b/dev-perl/File-pushd/File-pushd-1.14.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Change directory temporarily for a limited scope"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 sparc x86 ~x86-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 6537d45b53014a0271e014a7a16fb03ffec9bed7
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:52:01 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6537d45b

dev-perl/Router-Simple: stable 0.170.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild 
b/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild
index 79c3436b1a6..5fa0fc5f6ff 100644
--- a/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild
+++ b/dev-perl/Router-Simple/Router-Simple-0.170.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Simple HTTP router"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 797b2eec86e88a61a280691445ac17ceec8abb49
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:46:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=797b2eec

dev-perl/File-ShareDir: stable 1.104.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/File-ShareDir/File-ShareDir-1.104.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-ShareDir/File-ShareDir-1.104.0.ebuild 
b/dev-perl/File-ShareDir/File-ShareDir-1.104.0.ebuild
index 9742ef72ef7..5e877333778 100644
--- a/dev-perl/File-ShareDir/File-ShareDir-1.104.0.ebuild
+++ b/dev-perl/File-ShareDir/File-ShareDir-1.104.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Locate per-dist and per-module shared files"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~ppc-aix ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 sparc x86 
~ppc-aix ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Apache-LogFormat-Compiler/

2018-06-11 Thread Sergei Trofimovich
commit: fd8dc340ccf2bb06c836249298cb39e9e4ae973c
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:50:26 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd8dc340

dev-perl/Apache-LogFormat-Compiler: stable 0.350.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 .../Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.350.0.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.350.0.ebuild 
b/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.350.0.ebuild
index 7d2e600da32..bf3c14ec6b9 100644
--- 
a/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.350.0.ebuild
+++ 
b/dev-perl/Apache-LogFormat-Compiler/Apache-LogFormat-Compiler-0.350.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Compile an Apache log format string to perl-code"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 # POSIX -> perl



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

2018-06-11 Thread Sergei Trofimovich
commit: 43771fd38d82031cece7fe5f2b992a6ba18beab9
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:49:54 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43771fd3

dev-perl/Time-TZOffset: stable 0.40.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Time-TZOffset/Time-TZOffset-0.40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Time-TZOffset/Time-TZOffset-0.40.0.ebuild 
b/dev-perl/Time-TZOffset/Time-TZOffset-0.40.0.ebuild
index b6719f6d2da..dc8f4c2b6a9 100644
--- a/dev-perl/Time-TZOffset/Time-TZOffset-0.40.0.ebuild
+++ b/dev-perl/Time-TZOffset/Time-TZOffset-0.40.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Show timezone offset strings like +0900"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Authen-Simple-Passwd/

2018-06-11 Thread Sergei Trofimovich
commit: 561cd9652d50c9b0f023c9b41677f46aeb319d55
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:47:20 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561cd965

dev-perl/Authen-Simple-Passwd: stable 0.600.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

 dev-perl/Authen-Simple-Passwd/Authen-Simple-Passwd-0.600.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Authen-Simple-Passwd/Authen-Simple-Passwd-0.600.0.ebuild 
b/dev-perl/Authen-Simple-Passwd/Authen-Simple-Passwd-0.600.0.ebuild
index bd361d1c1bb..a1d5f1b9da6 100644
--- a/dev-perl/Authen-Simple-Passwd/Authen-Simple-Passwd-0.600.0.ebuild
+++ b/dev-perl/Authen-Simple-Passwd/Authen-Simple-Passwd-0.600.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Simple Passwd authentication"
 SLOT="0"
-KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="



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

2018-06-11 Thread Sergei Trofimovich
commit: 3013cdb76542eeccbf8829a02ab8320b3ac81cff
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jun 11 16:48:51 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jun 11 17:08:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3013cdb7

dev-perl/JSON: stable 2.940.0 for sparc

Bug: https://bugs.gentoo.org/657690
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"

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

diff --git a/dev-perl/JSON/JSON-2.940.0.ebuild 
b/dev-perl/JSON/JSON-2.940.0.ebuild
index 2f00129883d..15a61fa2bb8 100644
--- a/dev-perl/JSON/JSON-2.940.0.ebuild
+++ b/dev-perl/JSON/JSON-2.940.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="JSON (JavaScript Object Notation) encoder/decoder"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~x86-solaris"
 IUSE="test +xs"
 
 RDEPEND="xs? ( >=dev-perl/JSON-XS-2.340.0 )"



[gentoo-commits] repo/gentoo:master commit in: mail-client/novell-groupwise-client/

2018-06-11 Thread Andreas Hüttel
commit: a6562494ba833d4b096bf39e8f36f8d0ca85ddca
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Mon Jun 11 16:44:25 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Mon Jun 11 16:44:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6562494

mail-client/novell-groupwise-client: Needs recent patchelf.

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../novell-groupwise-client-8.0.2.96933-r1.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/mail-client/novell-groupwise-client/novell-groupwise-client-8.0.2.96933-r1.ebuild
 
b/mail-client/novell-groupwise-client/novell-groupwise-client-8.0.2.96933-r1.ebuild
index c89c0c051fb..4bc65dc713d 100644
--- 
a/mail-client/novell-groupwise-client/novell-groupwise-client-8.0.2.96933-r1.ebuild
+++ 
b/mail-client/novell-groupwise-client/novell-groupwise-client-8.0.2.96933-r1.ebuild
@@ -18,7 +18,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-DEPEND="dev-util/patchelf"
+DEPEND=">=dev-util/patchelf-0.9"
 RDEPEND="
sys-libs/libstdc++-v3
>=x11-libs/libX11-1.6.2[abi_x86_32(-)]



[gentoo-commits] repo/proj/prefix:master commit in: scripts/

2018-06-11 Thread Fabian Groffen
commit: ddf86254b773b1a2205c8ef166c7d8c7fdcfa697
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Jun 11 16:37:47 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jun 11 16:37:47 2018 +
URL:https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=ddf86254

scripts/bootstrap-prefix: (try to) workaround libtool stage3 issue

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

 scripts/bootstrap-prefix.sh | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh
index 910483897c..c9debd1bd3 100755
--- a/scripts/bootstrap-prefix.sh
+++ b/scripts/bootstrap-prefix.sh
@@ -1541,6 +1541,17 @@ bootstrap_stage2() {
EXTRA_ECONF=$(rapx --with-sysroot=/) \
emerge_pkgs --nodeps ${linker} || return 1
 
+   # automake and autoconf need to be installed in /tmp in order for
+   # autotools.eclass to run successfully, bug #655414, #657414
+   # rely on Perl from host, let's hope it's there
+   unset PERL
+   if [[ -x $(type -P perl) ]] ; then
+   ( cd "${ROOT}"/tmp/usr/bin && ln -s $(type -P perl) )
+   emerge_pkgs --nodeps sys-devel/autoconf sys-devel/automake || 
return 1
+   else
+   einfo "You don't have perl available, you'll likely run into 
bug #657414"
+   fi
+
# Old versions of gcc has been masked.  We need gcc-4.7 to bootstrap
# on systems without a c++ compiler.
echo '> "${ROOT}"/tmp/etc/portage/package.unmask



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

2018-06-11 Thread Ulrich Müller
commit: 68bc333509848bad6a24628582a77313bfffb713
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon Jun 11 16:27:18 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon Jun 11 16:28:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68bc3335

app-emacs/yc: Fix byte-compilation with Emacs 26.

Closes: https://bugs.gentoo.org/657914
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-emacs/yc/files/yc-5.2.1-emacs-26.patch | 11 +++
 app-emacs/yc/yc-5.2.1.ebuild   |  3 ++-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/app-emacs/yc/files/yc-5.2.1-emacs-26.patch 
b/app-emacs/yc/files/yc-5.2.1-emacs-26.patch
new file mode 100644
index 000..19925c65c45
--- /dev/null
+++ b/app-emacs/yc/files/yc-5.2.1-emacs-26.patch
@@ -0,0 +1,11 @@
+--- a/yc.el
 b/yc.el
+@@ -2071,7 +2071,7 @@
+ ;; $BJ8@a$r;XDj$7$J$$>l9g!"8=:_$NJ8@a$,BP>]$H$J$k(B
+ ;; $BFI$_$rl9g!";XDjJ8@a0J9_$NFI$_$r:o=|$9$k(B
+-(defun yc-yomi (&optional idx &optional cut)
++(defun yc-yomi (&optional idx cut)
+   (if (integerp idx)
+   (yc-put-bunsetsu-yomi idx (yc-get-bunsetsu-yomi idx cut) cut)
+ (yc-put-bunsetsu-yomi yc-mark (yc-get-bunsetsu-yomi yc-mark cut) cut)))

diff --git a/app-emacs/yc/yc-5.2.1.ebuild b/app-emacs/yc/yc-5.2.1.ebuild
index eb6992a1aa2..22ccd0a3230 100644
--- a/app-emacs/yc/yc-5.2.1.ebuild
+++ b/app-emacs/yc/yc-5.2.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -16,6 +16,7 @@ IUSE=""
 
 RDEPEND="app-i18n/canna"
 
+ELISP_PATCHES="${P}-emacs-26.patch"
 SITEFILE="50${PN}-gentoo.el"
 
 src_install() {



  1   2   >