[gentoo-commits] proj/portage:master commit in: bin/, lib/portage/

2019-01-14 Thread Zac Medico
commit: fb406579b1d13c1ba23b28e0bb794c22878a58c0
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jan 13 23:06:35 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 15 05:45:55 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=fb406579

pid-sandbox: execute pid-ns-init as pid 1 (bug 675312)

Execute pid-ns-init as the first fork after unshare, as
required for it to have pid 1 and become the default reaper
of orphaned descendant processes. In _exec, exec a separate
pid-ns-init process to behave as a supervisor which will
forward signals to init and forward exit status to the parent
process.

Fixes: a75d5546e3a4 ("Introduce a tiny init replacement for inside pid 
namespace")
Bug: https://bugs.gentoo.org/675312
Reviewed-by: Brian Dolbec  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 bin/pid-ns-init| 44 
 lib/portage/process.py | 25 +++--
 2 files changed, 59 insertions(+), 10 deletions(-)

diff --git a/bin/pid-ns-init b/bin/pid-ns-init
index 843257b70..182d00a43 100644
--- a/bin/pid-ns-init
+++ b/bin/pid-ns-init
@@ -1,23 +1,59 @@
 #!/usr/bin/env python
-# Copyright 2018 Gentoo Authors
+# Copyright 2018-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+import functools
 import os
+import signal
 import sys
 
 
+KILL_SIGNALS = (
+   signal.SIGINT,
+   signal.SIGTERM,
+   signal.SIGHUP,
+)
+
+def forward_kill_signal(main_child_pid, signum, frame):
+   os.kill(main_child_pid, signum)
+
+
 def main(argv):
if len(argv) < 2:
-   return 'Usage: {} '.format(argv[0])
-   main_child_pid = int(argv[1])
+   return 'Usage: {}  or   
[arg]..'.format(argv[0])
+
+   if len(argv) == 2:
+   # The child process is init (pid 1) in a child pid namespace, 
and
+   # the current process supervises from within the global pid 
namespace
+   # (forwarding signals to init and forwarding exit status to the 
parent
+   # process).
+   main_child_pid = int(argv[1])
+   else:
+   # The current process is init (pid 1) in a child pid namespace.
+   binary = argv[1]
+   args = argv[2:]
+
+   main_child_pid = os.fork()
+   if main_child_pid == 0:
+   os.execv(binary, args)
+
+   sig_handler = functools.partial(forward_kill_signal, main_child_pid)
+   for signum in KILL_SIGNALS:
+   signal.signal(signum, sig_handler)
 
# wait for child processes
while True:
-   pid, status = os.wait()
+   try:
+   pid, status = os.wait()
+   except OSError as e:
+   if e.errno == errno.EINTR:
+   continue
+   raise
if pid == main_child_pid:
if os.WIFEXITED(status):
return os.WEXITSTATUS(status)
elif os.WIFSIGNALED(status):
+   signal.signal(os.WTERMSIG(status), 
signal.SIG_DFL)
os.kill(os.getpid(), os.WTERMSIG(status))
# go to the unreachable place
break

diff --git a/lib/portage/process.py b/lib/portage/process.py
index 7103b6b31..6af3ac37d 100644
--- a/lib/portage/process.py
+++ b/lib/portage/process.py
@@ -564,15 +564,28 @@ def _exec(binary, mycommand, opt_name, fd_pipes,
noiselevel=-1)
else:
if unshare_pid:
-   # pid namespace 
requires us to become init
-   fork_ret = os.fork()
-   if fork_ret != 0:
-   
os.execv(portage._python_interpreter, [
+   main_child_pid = 
os.fork()
+   if main_child_pid == 0:
+   # pid namespace 
requires us to become init
+   binary, myargs 
= portage._python_interpreter, [

portage._python_interpreter,

os.path.join(portage._bin_path,

'pid-ns-init'),
-   '%s' % 
fork_ret,
-   ])

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

2019-01-14 Thread Zac Medico
commit: a42fb4bf18ad3cefa26aa31cf961ad94c9b91cbc
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 15 06:11:06 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 15 06:22:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a42fb4bf

sys-apps/portage: remove old version 2.3.54-r1

Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/Manifest |   1 -
 sys-apps/portage/portage-2.3.54-r1.ebuild | 271 --
 2 files changed, 272 deletions(-)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index fceeec4528c..dacca98188c 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -3,7 +3,6 @@ DIST portage-2.3.40-bug-657436-937d0156aa06-1fc628eead43.patch 
4131 BLAKE2B 1b05
 DIST portage-2.3.40.tar.bz2 995122 BLAKE2B 
3bfadee6cf57dace32bb4a365850650e13664202f3b16bf75821ff6226e85da823785ac87875fa82bd5cf1b953d638773819495f73f471c06ffd6926518df1ac
 SHA512 
ded128c1941664fab6bc95f05115ec08900fddaedd1b6f12afa48da024531ee8939134d49759e09995c76a95e41beafdbf5528a5b62d3bf21c826ab1ac0cd1c5
 DIST portage-2.3.49.tar.bz2 1010414 BLAKE2B 
be8e0194855eda8e8a617ee4415d702199e10772bab9539ff27cb165b6749090be887b6f48d449f4e7650e618d43be1b0d26ba59597996a9d3d3ecd0caea166a
 SHA512 
d3daee0075eee61c354ad1d4865b1cf433d9afe5ed56101758219694325c7c5ad62a0d9ce41bf2205934b6e073d0eba3ef3f7c8b6633b5a3448e469783c5329a
 DIST portage-2.3.51.tar.bz2 1013015 BLAKE2B 
f7f5e6c9e627db5a9e4bfcc9a6cbebb40fda910d3cc928922870b295c706a9f669d3d812e726b220610efe6b182460811eb9420d6fa5b8756481df64a88fe2b9
 SHA512 
6c22b97959d4b5be263b9a1de6bb343b1f8300e989f37c7334a9d5d6fb65fe2390958e222bc5379ec95099124fc51a049ecca6e1bfc18f0a6c57e4601342bb94
-DIST portage-2.3.54.tar.bz2 1015477 BLAKE2B 
e9adfe59d09b4c7f7509364ada1bfb22d3e6d466d24ae47f6ec9eb9edf2147dad091815b323970b7a6cbf6c42c51a111252bb047862f6863b437d3b6e400ac0b
 SHA512 
8e12e904915232321669789d21f88e9750488d0cd49ec31de6378d3d372a1a463325351a0c4fed2c80cfecf0f43112e9a03e90b84dcc1dba9bb6813c37e22c72
 DIST portage-2.3.55.tar.bz2 1015755 BLAKE2B 
c6144d732a6eca9006512b8b647287b2dc72b453c67a9d46f0489736d5dbfe644f5527c29d6d0d3d2af077a181e6645624a310dd39ddc8bdb3629ef1b68b2cbe
 SHA512 
6937f9ca266291fef82ecd9ca25e78dd7bf25dfa65392013f905d59d850d6ea3c3cc00e991db0058ffb5ce27d7de3ece4dc01143cf19143cacf04404341df6a4
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8
 DIST portage-74d2509c99fbcb43e018ead4950b938e41e524e5-bug-671472.patch 1584 
BLAKE2B 
452cd4cb25e42dcfa05c4f9da2bd3cc279556b9cd87037d0d965d39678f347b701dac0eaa59bfdebee9e3715abb506bf3744900ebefafa8fa729a1eb442889b9
 SHA512 
5bbe163e8eec00ece831c113676e87f0cf61a40f30a75a0de548490eeb789479336feec5bf81868a284bf32bafa00209176156cfb9ce557390d0f4a2ab6d1c1a

diff --git a/sys-apps/portage/portage-2.3.54-r1.ebuild 
b/sys-apps/portage/portage-2.3.54-r1.ebuild
deleted file mode 100644
index 4bf3a6b2ded..000
--- a/sys-apps/portage/portage-2.3.54-r1.ebuild
+++ /dev/null
@@ -1,271 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=(
-   pypy
-   python3_4 python3_5 python3_6 python3_7
-   python2_7
-)
-PYTHON_REQ_USE='bzip2(+),threads(+)'
-
-inherit distutils-r1 epatch linux-info systemd
-
-DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
-SLOT="0"
-IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
-
-DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
-   >=app-arch/tar-1.27
-   dev-lang/python-exec:2
-   >=sys-apps/sed-4.0.5 sys-devel/patch
-   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
-   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
-# Require sandbox-2.2 for bug #288863.
-# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
-# quite slow, so it's not considered in the dependencies as an alternative to
-# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
-# for now, don't pull in xattr deps for other kernels.
-# For whirlpool hash, require python[ssl] (bug #425046).
-# For compgen, require bash[readline] (bug #445576).
-# app-portage/gemato goes without PYTHON_USEDEP since we're calling
-# the executable.
-RDEPEND="
-   >=app-arch/tar-1.27
-   dev-lang/python-exec:2
-   !build? (
-   >=sys-apps/sed-4.0.5
-   app-shells/bash:0[readline]
-   

[gentoo-commits] proj/portage: New tag: portage-2.3.56

2019-01-14 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 15 06:22:51 2019 +

New tag: portage-2.3.56




[gentoo-commits] proj/portage:master commit in: /

2019-01-14 Thread Zac Medico
commit: 5f831cc04aa0d6103d75f129fb6b41084fcab62a
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 15 05:52:27 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 15 05:52:27 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=5f831cc0

Updates for portage-2.3.56 release

Signed-off-by: Zac Medico  gentoo.org>

 RELEASE-NOTES | 7 +++
 setup.py  | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 0a5d49bb6..b6ccae5d8 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,13 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.56
+==
+* Bug Fixes:
+- Bug 675284 restore canonicalize func
+- Bug 675312 pid-sandbox: execute pid-ns-init as pid 1
+
+
 portage-2.3.55
 ==
 * Bug Fixes:

diff --git a/setup.py b/setup.py
index b93e2dae0..a8f841e84 100755
--- a/setup.py
+++ b/setup.py
@@ -662,7 +662,7 @@ class build_ext(_build_ext):
 
 setup(
name = 'portage',
-   version = '2.3.55',
+   version = '2.3.56',
url = 'https://wiki.gentoo.org/wiki/Project:Portage',
author = 'Gentoo Portage Development Team',
author_email = 'dev-port...@gentoo.org',



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

2019-01-14 Thread Zac Medico
commit: 4c7debeccab9d1ea546ffbd6cbb9ff352aba8f63
Author: Zac Medico  gentoo  org>
AuthorDate: Tue Jan 15 06:13:54 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue Jan 15 06:22:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c7debec

sys-apps/portage: version bump to 2.3.56

 #675284 restore canonicalize func
 #675312 pid-sandbox: execute pid-ns-init as pid 1

Bug: https://bugs.gentoo.org/670484
Bug: https://bugs.gentoo.org/671498
Bug: https://bugs.gentoo.org/675312
Package-Manager: Portage-2.3.56, Repoman-2.3.12
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/Manifest  |   1 +
 sys-apps/portage/portage-2.3.56.ebuild | 271 +
 2 files changed, 272 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index dacca98188c..77b5c3efc44 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -4,5 +4,6 @@ DIST portage-2.3.40.tar.bz2 995122 BLAKE2B 
3bfadee6cf57dace32bb4a365850650e13664
 DIST portage-2.3.49.tar.bz2 1010414 BLAKE2B 
be8e0194855eda8e8a617ee4415d702199e10772bab9539ff27cb165b6749090be887b6f48d449f4e7650e618d43be1b0d26ba59597996a9d3d3ecd0caea166a
 SHA512 
d3daee0075eee61c354ad1d4865b1cf433d9afe5ed56101758219694325c7c5ad62a0d9ce41bf2205934b6e073d0eba3ef3f7c8b6633b5a3448e469783c5329a
 DIST portage-2.3.51.tar.bz2 1013015 BLAKE2B 
f7f5e6c9e627db5a9e4bfcc9a6cbebb40fda910d3cc928922870b295c706a9f669d3d812e726b220610efe6b182460811eb9420d6fa5b8756481df64a88fe2b9
 SHA512 
6c22b97959d4b5be263b9a1de6bb343b1f8300e989f37c7334a9d5d6fb65fe2390958e222bc5379ec95099124fc51a049ecca6e1bfc18f0a6c57e4601342bb94
 DIST portage-2.3.55.tar.bz2 1015755 BLAKE2B 
c6144d732a6eca9006512b8b647287b2dc72b453c67a9d46f0489736d5dbfe644f5527c29d6d0d3d2af077a181e6645624a310dd39ddc8bdb3629ef1b68b2cbe
 SHA512 
6937f9ca266291fef82ecd9ca25e78dd7bf25dfa65392013f905d59d850d6ea3c3cc00e991db0058ffb5ce27d7de3ece4dc01143cf19143cacf04404341df6a4
+DIST portage-2.3.56.tar.bz2 1016476 BLAKE2B 
a7627bfd3536157efe7d20db78bef37ab025573b4519a07e08c04b3e9f9b42596a9bfa545241f78ba0e3b46333e8deebe20b75ea86fee89c70670b85dc8addc3
 SHA512 
98704382bce9816d458b33d3b3179c08a5c4b709b8c4ba7757b2ebccbd1d136d11c004806b30cf0cf9daf914062df94654bec255e239713995c7228d1c275938
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8
 DIST portage-74d2509c99fbcb43e018ead4950b938e41e524e5-bug-671472.patch 1584 
BLAKE2B 
452cd4cb25e42dcfa05c4f9da2bd3cc279556b9cd87037d0d965d39678f347b701dac0eaa59bfdebee9e3715abb506bf3744900ebefafa8fa729a1eb442889b9
 SHA512 
5bbe163e8eec00ece831c113676e87f0cf61a40f30a75a0de548490eeb789479336feec5bf81868a284bf32bafa00209176156cfb9ce557390d0f4a2ab6d1c1a

diff --git a/sys-apps/portage/portage-2.3.56.ebuild 
b/sys-apps/portage/portage-2.3.56.ebuild
new file mode 100644
index 000..4bf3a6b2ded
--- /dev/null
+++ b/sys-apps/portage/portage-2.3.56.ebuild
@@ -0,0 +1,271 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=(
+   pypy
+   python3_4 python3_5 python3_6 python3_7
+   python2_7
+)
+PYTHON_REQ_USE='bzip2(+),threads(+)'
+
+inherit distutils-r1 epatch linux-info systemd
+
+DESCRIPTION="Portage is the package management and distribution system for 
Gentoo"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
+SLOT="0"
+IUSE="build doc epydoc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux xattr"
+
+DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') )
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   >=sys-apps/sed-4.0.5 sys-devel/patch
+   doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 )
+   epydoc? ( >=dev-python/epydoc-2.0[$(python_gen_usedep 'python2*')] )"
+# Require sandbox-2.2 for bug #288863.
+# For xattr, we can spawn getfattr and setfattr from sys-apps/attr, but that's
+# quite slow, so it's not considered in the dependencies as an alternative to
+# to python-3.3 / pyxattr. Also, xattr support is only tested with Linux, so
+# for now, don't pull in xattr deps for other kernels.
+# For whirlpool hash, require python[ssl] (bug #425046).
+# For compgen, require bash[readline] (bug #445576).
+# app-portage/gemato goes without PYTHON_USEDEP since we're calling
+# the executable.
+RDEPEND="
+   >=app-arch/tar-1.27
+   dev-lang/python-exec:2
+   !build? (
+   >=sys-apps/sed-4.0.5
+   app-shells/bash:0[readline]
+   >=app-admin/eselect-1.2
+   $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' \
+   

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

2019-01-14 Thread Hans de Graaff
commit: f26b6acaa5d6c271fb85e92894e1968749a112c0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 06:02:33 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 06:02:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26b6aca

dev-ruby/hitimes: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/hitimes/hitimes-1.3.0.ebuild 
b/dev-ruby/hitimes/hitimes-1.3.0.ebuild
index 9a4b2696955..f605ee1bea6 100644
--- a/dev-ruby/hitimes/hitimes-1.3.0.ebuild
+++ b/dev-ruby/hitimes/hitimes-1.3.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README.md HISTORY.md"



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

2019-01-14 Thread Hans de Graaff
commit: 3e288b7e1b3a4a758f8035b98ae06fa0f2853f1a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:56:59 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:56:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e288b7e

dev-ruby/test_construct: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild 
b/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild
index d02da3418fa..a4233d5a6d9 100644
--- a/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild
+++ b/dev-ruby/test_construct/test_construct-2.0.1-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"



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

2019-01-14 Thread Hans de Graaff
commit: 443fb7184f557e9281b7693d3a69eec80419a5bc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:53:34 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:53:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=443fb718

dev-ruby/highline: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/highline/highline-2.0.0.ebuild 
b/dev-ruby/highline/highline-2.0.0.ebuild
index 6a3821d4835..8fd18cb45c6 100644
--- a/dev-ruby/highline/highline-2.0.0.ebuild
+++ b/dev-ruby/highline/highline-2.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



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

2019-01-14 Thread Hans de Graaff
commit: 9bf510b85c81cc18d45e22c296a8559f4f34e8d9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:59:39 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:59:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bf510b8

dev-ruby/tidy_table: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/tidy_table/tidy_table-0.0.5-r4.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/tidy_table/tidy_table-0.0.5-r4.ebuild 
b/dev-ruby/tidy_table/tidy_table-0.0.5-r4.ebuild
index 1b47836e391..fc378a13908 100644
--- a/dev-ruby/tidy_table/tidy_table-0.0.5-r4.ebuild
+++ b/dev-ruby/tidy_table/tidy_table-0.0.5-r4.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 
 RUBY_FAKEGEM_DOCDIR="doc"
@@ -23,5 +23,5 @@ IUSE=""
 
 all_ruby_prepare() {
# Remove reference to RSpec 1
-   sed -i -e '/spec/d' spec/spec_helper.rb || die
+   sed -i -e '/spec/d' -e '1irequire "date"' spec/spec_helper.rb || die
 }



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

2019-01-14 Thread Hans de Graaff
commit: 30b5bbc937af3c3bc9c06e82cfb2853ee1b9cd09
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:30:33 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:30:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b5bbc9

dev-ruby/http: add 4.0.1

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/http/Manifest  |  1 +
 dev-ruby/http/http-4.0.1.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index 8540baf1fd1..f7fe682a90f 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -1,3 +1,4 @@
 DIST http-0.9.8.gem 66560 BLAKE2B 
15b6cc066d2b04c3c6df604787f69b5079dacd277dc95a74b56832fc26cd84d2b631b60a60baadaf46368e5dfda30152983c335faea63649bc5153d11736
 SHA512 
bb89147a3c28ebd75d2453e51c0c422557907e055b9a20a560b803bc64edfcdfe96e997ff225a26c9ca278211b0f70faaccf2d18ce2cdc9fd95bc4048093ef68
 DIST http-3.3.0.gem 70656 BLAKE2B 
5c52864168663640389a0f107e1bf8a202654a8b479c92bf5126354d360adcae45a9b4596da7cff2e412fee88ed3622870c4e2bb18eca97466b4ede28baa2a08
 SHA512 
fcb2549c22974712e129306b472c1a32466c50add85eee9a558582697c7ece26cb7a1db6da6aaceedb8bfd134d1213090c158db510fe53ddbe201bba6bd22c68
 DIST http-4.0.0.gem 72704 BLAKE2B 
6a7abec739f545e96b013d4bc10b11acd2cd6e336032cab08977476a0c50b73993ba9c8d46b68c7f891ae6129cddc5566bcdc16cc958b16a2241a5fdc1d2bc8c
 SHA512 
78fee306d0d53068b8082bffc766cb12c8d1a030407648af6c4471cab9d63e2c55e75c9546b684bcaabc795c04b76b91c562e4969e597ec70aed0e16052586b1
+DIST http-4.0.1.gem 72704 BLAKE2B 
5c4366044955d93f1ad149254843c916f599cc69557c69e87a7e56a745b6e58ee1fc69e5334eeba3b5dec00dc2c7e48c8a8123cdfb3bd5a73163c3192a365515
 SHA512 
ea579721e5fd01933daea74f37abdf4703aef670457a3eb781515f51f38190a8fdf95a49310df953bafc325515d3e963680d3b4c4056ccc02fe5e5f6426c57b5

diff --git a/dev-ruby/http/http-4.0.1.ebuild b/dev-ruby/http/http-4.0.1.ebuild
new file mode 100644
index 000..de3cc7b35d9
--- /dev/null
+++ b/dev-ruby/http/http-4.0.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# 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="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An easy-to-use client library for making requests from Ruby"
+HOMEPAGE="https://github.com/tarcieri/http;
+
+LICENSE="MIT"
+SLOT="4"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/addressable-2.3:0
+   >=dev-ruby/http-cookie-1.0:0
+   dev-ruby/http-form_data:2
+   >=dev-ruby/http_parser_rb-0.6.0 =dev-ruby/http_parser_rb-0.6*"
+
+ruby_add_bdepend "
+   test? ( dev-ruby/certificate_authority dev-ruby/rspec-its )"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/,/end/ s:^:#:' \
+   -e '1irequire "cgi"' spec/spec_helper.rb || die
+
+   # Avoid specs that require network access
+   sed -i -e '/.persistent/,/^  end/ s:^:#:' \
+   spec/lib/http_spec.rb || die
+   sed -i -e '/with non-ASCII URLs/,/^end/ s:^:#:' \
+   spec/lib/http/client_spec.rb || die
+
+   # Avoid spec that may fail with a running web server
+   sed -i -e '/unifies socket errors into HTTP::ConnectionError/,/^  end/ 
s:^:#:' spec/lib/http_spec.rb || die
+
+   # Fix spec for production release
+   sed -i -e '/User-Agent:/ s/.dev//' 
spec/lib/http/features/logging_spec.rb || die
+}



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

2019-01-14 Thread Hans de Graaff
commit: f1864cb3b3723a60b29d6f6f567f54366105b196
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:51:41 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:51:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1864cb3

dev-ruby/term-ansicolor: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/term-ansicolor/term-ansicolor-1.7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/term-ansicolor/term-ansicolor-1.7.0.ebuild 
b/dev-ruby/term-ansicolor/term-ansicolor-1.7.0.ebuild
index 14b5c5ce7e7..0b79085ae38 100644
--- a/dev-ruby/term-ansicolor/term-ansicolor-1.7.0.ebuild
+++ b/dev-ruby/term-ansicolor/term-ansicolor-1.7.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_RECIPE_TEST="none"



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

2019-01-14 Thread Hans de Graaff
commit: 8ba02f7ea6584db15b8949ae5ced28f6766f77e0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:40:29 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:40:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba02f7e

dev-ruby/unindent: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/unindent/unindent-1.0.ebuild 
b/dev-ruby/unindent/unindent-1.0.ebuild
index 5b4a3ed06b2..7fd6337a7c0 100644
--- a/dev-ruby/unindent/unindent-1.0.ebuild
+++ b/dev-ruby/unindent/unindent-1.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2019-01-14 Thread Hans de Graaff
commit: 5e8ca525246d727b3d193703bb08f3cbd5cff8c1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:42:40 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:42:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e8ca525

dev-ruby/tdiff: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/tdiff/tdiff-0.3.4.ebuild 
b/dev-ruby/tdiff/tdiff-0.3.4.ebuild
index 3484cb165ca..56083062767 100644
--- a/dev-ruby/tdiff/tdiff-0.3.4.ebuild
+++ b/dev-ruby/tdiff/tdiff-0.3.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2019-01-14 Thread Hans de Graaff
commit: c720425d03157d79ec4a6a870ef81ebadf6e4bff
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Jan 15 05:34:14 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Jan 15 05:34:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c720425d

dev-ruby/nanotest: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild 
b/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild
index 52b03ad3f66..ab66d777969 100644
--- a/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild
+++ b/dev-ruby/nanotest/nanotest-0.9.4.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"



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

2019-01-14 Thread Thomas Deutschmann
commit: c5acf9e1782dbf9e6a54b227adab46c9132bb3fc
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jan 15 04:09:28 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jan 15 04:09:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5acf9e1

dev-php/pecl-geoip: add PHP 7.3 support

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild 
b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild
index 24bbcb5b0a0..bc68f7d9867 100644
--- a/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild
+++ b/dev-php/pecl-geoip/pecl-geoip-1.1.1-r4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
 PHP_EXT_NAME="geoip"
 DOCS="README ChangeLog"
-USE_PHP="php5-6 php7-0 php7-1 php7-2"
+USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3"
 
 inherit php-ext-pecl-r3
 



[gentoo-commits] repo/gentoo:master commit in: app-shells/bash/files/, app-shells/bash/

2019-01-14 Thread Thomas Deutschmann
commit: d1906c39529bc3af416fcc4e7b1edc4901981b71
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Jan 15 01:02:46 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Tue Jan 15 01:05:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1906c39

app-shells/bash: define SHOBJ_STATUS; fix static build

Link: http://lists.gnu.org/archive/html/bug-bash/2016-10/msg4.html
Bug: https://bugs.gentoo.org/675414
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 app-shells/bash/bash-4.4_p23-r1.ebuild | 260 +
 .../bash/files/bash-4.4-set-SHOBJ_STATUS.patch |  14 ++
 2 files changed, 274 insertions(+)

diff --git a/app-shells/bash/bash-4.4_p23-r1.ebuild 
b/app-shells/bash/bash-4.4_p23-r1.ebuild
new file mode 100644
index 000..506c772dc1b
--- /dev/null
+++ b/app-shells/bash/bash-4.4_p23-r1.ebuild
@@ -0,0 +1,260 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs multilib prefix
+
+# Official patchlevel
+# See ftp://ftp.cwru.edu/pub/bash/bash-4.4-patches/
+PLEVEL=${PV##*_p}
+MY_PV=${PV/_p*}
+MY_PV=${MY_PV/_/-}
+MY_P=${PN}-${MY_PV}
+is_release() {
+   case ${PV} in
+   *_alpha*|*_beta*|*_rc*) return 1 ;;
+   *) return 0 ;;
+   esac
+}
+[[ ${PV} != *_p* ]] && PLEVEL=0
+patches() {
+   local opt=$1 plevel=${2:-${PLEVEL}} pn=${3:-${PN}} pv=${4:-${MY_PV}}
+   [[ ${plevel} -eq 0 ]] && return 1
+   eval set -- {1..${plevel}}
+   set -- $(printf "${pn}${pv/\.}-%03d " "$@")
+   if [[ ${opt} == -s ]] ; then
+   echo "${@/#/${DISTDIR}/}"
+   else
+   local u
+   for u in ftp://ftp.cwru.edu/pub/bash mirror://gnu/${pn} ; do
+   printf "${u}/${pn}-${pv}-patches/%s " "$@"
+   done
+   fi
+}
+
+# The version of readline this bash normally ships with.
+READLINE_VER="7.0"
+
+DESCRIPTION="The standard GNU Bourne again shell"
+HOMEPAGE="http://tiswww.case.edu/php/chet/bash/bashtop.html;
+if is_release ; then
+   SRC_URI="mirror://gnu/bash/${MY_P}.tar.gz $(patches)"
+else
+   SRC_URI="ftp://ftp.cwru.edu/pub/bash/${MY_P}.tar.gz;
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline"
+
+DEPEND="
+   >=sys-libs/ncurses-5.2-r2:0=
+   readline? ( >=sys-libs/readline-${READLINE_VER}:0= )
+   nls? ( virtual/libintl )
+"
+RDEPEND="
+   ${DEPEND}
+   !http://lists.gnu.org/archive/html/bug-bash/2016-10/msg4.html
+
+--- a/configure
 b/configure
+@@ -16124,6 +16124,9 @@ $as_echo_n "checking shared object configuration for 
loadable builtins... " >&6;
+ 
+   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SHOBJ_STATUS" >&5
+ $as_echo "$SHOBJ_STATUS" >&6; }
++else
++  SHOBJ_STATUS=unsupported
++
+ fi
+ 
+ # try to create a directory tree if the source is elsewhere



[gentoo-commits] repo/gentoo:master commit in: app-metrics/rabbitmq_exporter/, app-metrics/rabbitmq_exporter/files/

2019-01-14 Thread William Hubbs
commit: 206c8ece17f3205f82b897bccf40136c717d8875
Author: William Hubbs  sony  com>
AuthorDate: Mon Jan 14 23:57:23 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jan 14 23:58:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=206c8ece

app-metrics/rabbitmq_exporter: Rabbitmq exporter for Prometheus

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 app-metrics/rabbitmq_exporter/Manifest | 12 
 .../files/rabbitmq_exporter.confd  |  6 ++
 .../files/rabbitmq_exporter.initd  | 79 ++
 app-metrics/rabbitmq_exporter/metadata.xml |  8 +++
 .../rabbitmq_exporter-0.29.0.ebuild| 59 
 5 files changed, 164 insertions(+)

diff --git a/app-metrics/rabbitmq_exporter/Manifest 
b/app-metrics/rabbitmq_exporter/Manifest
new file mode 100644
index 000..f3cbbd15225
--- /dev/null
+++ b/app-metrics/rabbitmq_exporter/Manifest
@@ -0,0 +1,12 @@
+DIST 
github.com-Sirupsen-logrus-78fb3852d92683dc28da6cc3d5f965100677c27d.tar.gz 
38596 BLAKE2B 
777c96b5da859d9db92653c922e0ee296c4d3839981389c7e31f0c92913772cbd83227420b9c5eb3de55f465d513b1b0b8fe72b07f80277bb891a127314ce45f
 SHA512 
cb08995d0705a8999b3eec044d3efe209e4110c15da5116f364ee3fb7dba0372d47e0d35cd1cfd7e75e31fd3c867bd023e90565bbd78f4eaf2c29ebf0e53fd53
+DIST github.com-beorn7-perks-3a771d992973f24aa725d07868b467d1ddfceafb.tar.gz 
10800 BLAKE2B 
5487155a4d010af70b6ea2625d10ae03b6642507902d7dc168edb5d7cf0efa1777b248d0df34ed1a2564950b12613256c1c6ce1d8c9723cc34977ed883b21c8d
 SHA512 
c6aa5df262ab607c0a5f64372fc2fec1ddda9e5624e9d9a22cdd1bc11822c99736d88bdf5e3fc6050217b5084548417cb2926c3940e156da9397d828d59ce277
+DIST github.com-golang-crypto-ff983b9c42bc9fbf91556e191cc8efb585c16908.tar.gz 
1645106 BLAKE2B 
3d7271479ef812761a02c1d20429800cd29706e802a8ccf57e916bdb8befc87a9b1b1a88d42adb764a32fa5f4c5f5a5e434af63812a5bcd3de625658792a49a3
 SHA512 
19746e84901c0749da544ba02c74c8ccabfee5f186a0d00509e54f20c191da9ea56844de988265f072af1fae671d78d741a44f782b8c1704c9da0441436c2122
+DIST 
github.com-golang-protobuf-347cf4a86c1cb8d262994d8ef5924d4576c5b331.tar.gz 
329489 BLAKE2B 
828678cee603917e7f4efee2dd0902730a73932b94b12d4f4b35f0fcecaa329cdc39c3fa9926ce3706f86cc52c0aa4984f68ee0943ecc6d9571b0175ff671ab0
 SHA512 
de4307b91923a6890ab2f8eaf2ed4f7f32a45a4a0cc7b0d6f53ce31c5fe3ed08f378072075456d2c99c89a3b5acbca315814b8e5ec70e6ceb0ca62f7013f618c
+DIST github.com-golang-sys-2be51725563103c17124a318f1745b66f2347acb.tar.gz 
1220240 BLAKE2B 
ae08467ca600c6f837a2b2203f2e86ecbdb14d8865bea9dd1069f30028324ca20a9a2f5b1a5dbd4323a0fe8a2aa94fd64878de37bc628f67149318ec9594614c
 SHA512 
87e9f267c06baa2ecf6fb84cd0b092c9fea54f729c27ab86f9702f05a971cbe47f23cd03c50a4eefc90e2b2559844b56866504df64829d8fb45451e461999807
+DIST github.com-kbudde-gobert-a6daecb9ddeb548b7cfb3f5ac9deef9ded522730.tar.gz 
14629 BLAKE2B 
0731b1fd24ac5139f12a2a11b9f921c2afeedb78c573e7a788bcf2d95695f3212ff8a2d107c6fc6ad5045c9f4a5610a34ffcdc3b1580bc366860331b0c4731b9
 SHA512 
daaeea3cbe1f813e024272479b2a4af550071c82cf9261b7901279c28fe44e8d12afff707fb8a393a46396a6eaec7c6ef5da07220a85c1b70aa0a13f769bbc73
+DIST 
github.com-matttproud-golang_protobuf_extensions-c182affec369e30f25d3eb8cd8a478dee585ae7d.tar.gz
 37541 BLAKE2B 
f78899afa1390aca6cb1b412271713c60107771d512ead83482e0bb1716d175b791b4b04bd24b7f469cc1a29176eadcf0545ac3bf166c5b350602420d3c05aec
 SHA512 
141b1b781a4d1c59f5eb1af93c966343b80ed405a5f63774e6cda9f12c34536e892c7a84699d6cf2e9c775457a4c2ad5d5d0b4d302fc25a923ab81d46ad65580
+DIST 
github.com-prometheus-client_golang-d2ead25884778582e740573999f7b07f47e171b4.tar.gz
 131949 BLAKE2B 
352e0ef2bd704f6c490e57520d415e89d950241c39f3cdf851524d4cca87c25c31bf2ffb77914981cb730cb474033f4551b50c5b6085e5e273c2d29aaab1f012
 SHA512 
ca89d613e8bc6cff928d9ce8d3d563c8277cb31756c66d8c0e6f6b6ce00c1405d10e465245ac63fd6889aeafae0d6914814384e94e127929fbcfd606a59e42a5
+DIST 
github.com-prometheus-client_model-f287a105a20ec685d797f65cd0ce8fbeaef42da1.tar.gz
 57203 BLAKE2B 
2d56b90ced967f5f7a2c59bb330aaf8c56cf522091ee413ff27c22cb9e7d656080bd7d4dd2372938a873617054c7c98925e10fdc7996b136eaa4fd1b6482b734
 SHA512 
b4f900e725a638a7131eee1c6ff5bf550025b4d9e5bb2dd09149e91ce02a7aba458039c2162b6a1f9a6b6c7c8fc0fc29510b6c752caad51282a960d18860f960
+DIST 
github.com-prometheus-common-2998b132700a7d019ff618c06a234b47c1f3f681.tar.gz 
87368 BLAKE2B 
fc6c6e197d4cc61afefa9fb8e3a8d6b36ab029f62e3cf9adf8359e4885554f94427f17218d45c90c9d7f4a6985b2e4143a4d304d39f806bd70d2c6f05de29bc2
 SHA512 
b2095da96596fc500ece6b331cda2558f8c813720853f2489aee3dec65de95eb13f7b0853e3812433fdc040f16990d2f05b2a6b8b41275210c504ff333ca625d
+DIST 
github.com-prometheus-procfs-b1a0a9a36d7453ba0f62578b99712f3a6c5f82d1.tar.gz 
61720 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: app-office/scribus/, app-office/scribus/files/

2019-01-14 Thread Andreas Sturmlechner
commit: 635e0dd7cf4a58a29f6fb44b1e0e39371e3e60bb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 14 22:26:53 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan 14 23:34:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635e0dd7

app-office/scribus: 1.5.5_pre20190113 snapshot, build w/ poppler-0.73

Bug: https://bugs.gentoo.org/674804
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/scribus/Manifest|  2 +-
 .../scribus-1.5.5_pre20190113-poppler-0.73.patch   | 24 ++
 ...227.ebuild => scribus-1.5.5_pre20190113.ebuild} |  3 ++-
 3 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/app-office/scribus/Manifest b/app-office/scribus/Manifest
index ee5658be540..4e57dbe3b39 100644
--- a/app-office/scribus/Manifest
+++ b/app-office/scribus/Manifest
@@ -1,3 +1,3 @@
 DIST scribus-1.5.4-poppler-0.64.0.patch.tar.xz 3020 BLAKE2B 
3388efe6498545ffef6604a41b9e697a0cb6cd053c4893f9d64349bb2251400aca7a4f7dd193eb94cf69ca3f4ae1a3ba3ed106127c4fa680f396940d8056e669
 SHA512 
4577b4b737948a2b41dc0cec90ec95ba260959343e4953929696ceab518a2723a28a891b189caf79435e7fc8f8fc0a1012e7079e890d10549cb2ba426d15b568
 DIST scribus-1.5.4.tar.xz 72832248 BLAKE2B 
64797e865ce44fb01f1e29823e3cb46b2b8f1501e8d07e8b265e93a37961582ec4118d0f32d460bc044e32cf7fa6069732f6b9ce60e4dc4b0b42f914b280e637
 SHA512 
7875ea5f3db5fb116856cf4cf56b4cce2d0b00d9c4820969f52b89e9bf2b36f96eb9e15b368d392be74d4c6d32e971fc28f6ecbf6661fce5e3b9cb61c4d02403
-DIST scribus-1.5.5_pre20181227.tar.gz 84926534 BLAKE2B 
1fa392a8a196aac028ad4f1b913f31c5655a191d5ff3db26f16b4b181885bb1035ca95d11b100ad1b6cc7aea0ea21677a211c83dbd94bfe730a94ed4feaaf6bc
 SHA512 
53a9494dca4520ec89b4b4487c09683da00876088ed2750fd80bca6cbc96536c0bcfb8c96d671d9ca0ed0b74cbd8f75382298e3d20285d52cec52951807f4797
+DIST scribus-1.5.5_pre20190113.tar.gz 84927002 BLAKE2B 
ff515bbd66267493e4558fa2cbdca57fb3e9514940c3c7cc48e435e5d78349674f57bdbeeeb0574c7e7e2d1a2d2482a5b16ccc48c62281f2d11c28a5cc38f915
 SHA512 
1ed9bd3add1a62234b8e26f10a31a015f3a224da588b7b72c854209a45faae61ee949d2986980700132f9d573a426c1283f4e375c25d7ea63ce6b04260a863bb

diff --git 
a/app-office/scribus/files/scribus-1.5.5_pre20190113-poppler-0.73.patch 
b/app-office/scribus/files/scribus-1.5.5_pre20190113-poppler-0.73.patch
new file mode 100644
index 000..af98da7050c
--- /dev/null
+++ b/app-office/scribus/files/scribus-1.5.5_pre20190113-poppler-0.73.patch
@@ -0,0 +1,24 @@
+From 5a3255ac6dd1f19fb5fb5ab17452083bfe573f42 Mon Sep 17 00:00:00 2001
+From: Andreas Sturmlechner 
+Date: Mon, 14 Jan 2019 23:58:59 +0100
+Subject: [PATCH] Drop obsolete header, does not exist in poppler-0.73
+
+---
+ scribus/plugins/import/pdf/slaoutput.h | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/scribus/plugins/import/pdf/slaoutput.h 
b/scribus/plugins/import/pdf/slaoutput.h
+index c46448b..83e010c 100644
+--- a/scribus/plugins/import/pdf/slaoutput.h
 b/scribus/plugins/import/pdf/slaoutput.h
+@@ -28,7 +28,6 @@ for which a new license (GPL+exception) is in place.
+ #include "selection.h"
+ #include "vgradient.h"
+ 
+-#include 
+ #include 
+ #include 
+ #include 
+-- 
+2.20.1
+

diff --git a/app-office/scribus/scribus-1.5.5_pre20181227.ebuild 
b/app-office/scribus/scribus-1.5.5_pre20190113.ebuild
similarity index 98%
rename from app-office/scribus/scribus-1.5.5_pre20181227.ebuild
rename to app-office/scribus/scribus-1.5.5_pre20190113.ebuild
index b92edd436ae..77540ffb19b 100644
--- a/app-office/scribus/scribus-1.5.5_pre20181227.ebuild
+++ b/app-office/scribus/scribus-1.5.5_pre20190113.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="tk?"
 CMAKE_MAKEFILE_GENERATOR=ninja
-COMMIT=d857c1a3430acf207cdde2512db6822c45e98732
+COMMIT=6326f2af85935842fa7a93eb8f86bd2ae698245e
 inherit cmake-utils desktop flag-o-matic gnome2-utils python-single-r1 
xdg-utils
 
 DESCRIPTION="Desktop publishing (DTP) and layout program"
@@ -94,6 +94,7 @@ DEPEND="${COMMON_DEPEND}
 PATCHES=(
"${FILESDIR}"/${PN}-1.5.3-docdir.patch
"${FILESDIR}"/${PN}-1.5.3-fpic.patch
+   "${FILESDIR}"/${P}-poppler-0.73.patch
 )
 
 S="${WORKDIR}"/${PN}-${COMMIT}



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

2019-01-14 Thread Jeroen Roovers
commit: eed5dadcac3d64cf68bc36f6d50d58c4283938ba
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Jan 14 23:17:05 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Jan 14 23:17:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eed5dadc

dev-lang/spidermonkey: Stable for HPPA too.

Package-Manager: Portage-2.3.55, Repoman-2.3.12
RepoMan-Options: --ignore-arches
Signed-off-by: Jeroen Roovers  gentoo.org>

 dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild 
b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
index fdc25eefab6..1fb31101763 100644
--- a/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
+++ b/dev-lang/spidermonkey/spidermonkey-52.9.1_pre1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://ftp.mozilla.org/pub/spidermonkey/prereleases/52/pre1/mozjs-52.9.
 
 LICENSE="NPL-1.1"
 SLOT="52"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 s390 ~sh 
~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 s390 ~sh ~sparc 
x86 ~x86-fbsd"
 IUSE="debug minimal +system-icu test"
 
 RESTRICT="ia64? ( test )"



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

2019-01-14 Thread Sergei Trofimovich
commit: 4488acbbb6b05499b6f87e60eebf0b55fb9047db
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jan 14 23:06:26 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jan 14 23:07:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4488acbb

app-misc/pax-utils: drop old

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-misc/pax-utils/pax-utils-1.2.3-r2.ebuild | 70 
 1 file changed, 70 deletions(-)

diff --git a/app-misc/pax-utils/pax-utils-1.2.3-r2.ebuild 
b/app-misc/pax-utils/pax-utils-1.2.3-r2.ebuild
deleted file mode 100644
index f0127f587d2..000
--- a/app-misc/pax-utils/pax-utils-1.2.3-r2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit eutils python-single-r1 toolchain-funcs unpacker
-
-DESCRIPTION="ELF utils that can check files for security relevant properties"
-HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities;
-SRC_URI="mirror://gentoo/${P}.tar.xz
-   https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="caps debug python seccomp"
-
-RDEPEND="caps? ( >=sys-libs/libcap-2.24 )
-   python? (
-   ${PYTHON_DEPS}
-   dev-python/pyelftools[${PYTHON_USEDEP}]
-   )
-   seccomp? ( sys-libs/libseccomp )"
-DEPEND="${RDEPEND}
-   caps? ( virtual/pkgconfig )
-   seccomp? ( virtual/pkgconfig )
-   app-arch/xz-utils"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-_emake() {
-   emake \
-   USE_CAP=$(usex caps) \
-   USE_DEBUG=$(usex debug) \
-   USE_PYTHON=$(usex python) \
-   USE_SECCOMP=$(usex seccomp) \
-   "$@"
-}
-
-pkg_setup() {
-   if use python; then
-   python-single-r1_pkg_setup
-   fi
-}
-
-src_configure() {
-   # Avoid slow configure+gnulib+make if on an up-to-date Linux system
-   if use prefix || ! use kernel_linux ||
-   has_version '

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

2019-01-14 Thread Sergei Trofimovich
commit: e0f669f55fce79532270330064564c65c4e6d378
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jan 14 23:05:49 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jan 14 23:07:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f669f5

app-misc/pax-utils: bump up to 1.2.4

Two main fixes since main release:
- Python 3.7 support
- better fakeroot cooperation on powerpc and others

Bug: https://bugs.gentoo.org/671522
Bug: https://bugs.gentoo.org/675378
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-misc/pax-utils/Manifest   |  1 +
 app-misc/pax-utils/pax-utils-1.2.4.ebuild | 70 +++
 2 files changed, 71 insertions(+)

diff --git a/app-misc/pax-utils/Manifest b/app-misc/pax-utils/Manifest
index 1db68d4cb31..84ce7bf2896 100644
--- a/app-misc/pax-utils/Manifest
+++ b/app-misc/pax-utils/Manifest
@@ -1 +1,2 @@
 DIST pax-utils-1.2.3.tar.xz 661828 BLAKE2B 
4764c47b7a31e7470a454127b9db3b5b27c703a96a66973a6248529a2d858ea38adb246a270a1f343a499515f55b25613bb20c46978e2e0dddc03e5ddb9a2aa7
 SHA512 
efcbce49aa7e5cd433f9b3fbc8fa82f6d7b0eb80ec40aafde453d6fe96e3565e066e5020f04d71537d8d4e820147f4203c0df2dd330ebb1358a26def3dd5484c
+DIST pax-utils-1.2.4.tar.xz 665648 BLAKE2B 
f0003f912e42a25c8b587764591f7c466aa4c7a24f38fe101d7b64ea5abca5511b2f9329fa5620d1b4ae1926c2272eb97d4ada0210d4e55d16c7766a055672f4
 SHA512 
03b84054c59e8ce64d2c07276c61245c8e9b3eca2fc430269531e2dafe120009b541ebb6adc4ff54c13a1da63caf0755fb026ba272cf17d04f75e06b893a3e95

diff --git a/app-misc/pax-utils/pax-utils-1.2.4.ebuild 
b/app-misc/pax-utils/pax-utils-1.2.4.ebuild
new file mode 100644
index 000..92c08069a83
--- /dev/null
+++ b/app-misc/pax-utils/pax-utils-1.2.4.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit eutils python-single-r1 toolchain-funcs unpacker
+
+DESCRIPTION="ELF utils that can check files for security relevant properties"
+HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities;
+SRC_URI="mirror://gentoo/${P}.tar.xz
+   https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="caps debug python seccomp"
+
+RDEPEND="caps? ( >=sys-libs/libcap-2.24 )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pyelftools[${PYTHON_USEDEP}]
+   )
+   seccomp? ( sys-libs/libseccomp )"
+DEPEND="${RDEPEND}
+   caps? ( virtual/pkgconfig )
+   seccomp? ( virtual/pkgconfig )
+   app-arch/xz-utils"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+_emake() {
+   emake \
+   USE_CAP=$(usex caps) \
+   USE_DEBUG=$(usex debug) \
+   USE_PYTHON=$(usex python) \
+   USE_SECCOMP=$(usex seccomp) \
+   "$@"
+}
+
+pkg_setup() {
+   if use python; then
+   python-single-r1_pkg_setup
+   fi
+}
+
+src_configure() {
+   # Avoid slow configure+gnulib+make if on an up-to-date Linux system
+   if use prefix || ! use kernel_linux ||
+   has_version '

[gentoo-commits] proj/pax-utils: New tag: v1.2.4

2019-01-14 Thread Sergei Trofimovich
commit: 
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jan 14 23:00:13 2019 +

New tag: v1.2.4




[gentoo-commits] proj/pax-utils:master commit in: /

2019-01-14 Thread Sergei Trofimovich
commit: 519f07f7f3bdb29382a0f1491f6fce0a07bbc4fc
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jan 14 22:35:29 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jan 14 22:35:29 2019 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=519f07f7

security.c: whitelist ipc() syscall for fakeroot on ppc64 and friends

On amd64 and friends msgget() and similar syscalls are standalone syscalls.
On i386 and friends msgget() is a subcall of ipc() syscall.

This makes fakechroot break 'scanelf' as:
$ LANG=C  fakeroot scanelf -t /bin/bash
/usr/bin/fakeroot: line 178:  6820 Bad system call (core dumped)

The change whitelists ipc() call which allows all sysv syscalls, namely:
- semop, semget, semctl, semtimedop
- msgsnd, msgrcv, msgget, msgctl
- shmat, shmdt, shmget, shmctl

Reported-and-fixed-by: Samuel Holland
Bug: https://bugs.gentoo.org/675378
Signed-off-by: Sergei Trofimovich  gentoo.org>

 security.c | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/security.c b/security.c
index a86f375..78e04d4 100644
--- a/security.c
+++ b/security.c
@@ -162,6 +162,12 @@ static void pax_seccomp_init(bool allow_forking)
SCMP_SYS(msgsnd),
SCMP_SYS(semget),
SCMP_SYS(semop),
+   /*
+* Some targets like ppc and i386 implement the above
+* syscall as subcalls via ipc() syscall.
+* https://bugs.gentoo.org/675378
+*/
+   SCMP_SYS(ipc),
};
int fork_syscalls[] = {
SCMP_SYS(clone),



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

2019-01-14 Thread Amy Liffey
commit: 9e7938189272bae00cd3da81d868cfe85748d08d
Author: Amy Liffey  gentoo  org>
AuthorDate: Mon Jan 14 22:15:53 2019 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Mon Jan 14 22:20:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e793818

media-libs/opencv: patch to remove git autodetect

Closes: https://bugs.gentoo.org/672162
Signed-off-by: Amy Liffey  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 .../files/opencv-3.4.1-remove-git-autodetect.patch | 42 ++
 media-libs/opencv/opencv-3.4.1-r5.ebuild   |  3 +-
 2 files changed, 44 insertions(+), 1 deletion(-)

diff --git a/media-libs/opencv/files/opencv-3.4.1-remove-git-autodetect.patch 
b/media-libs/opencv/files/opencv-3.4.1-remove-git-autodetect.patch
new file mode 100644
index 000..94b221ab9a8
--- /dev/null
+++ b/media-libs/opencv/files/opencv-3.4.1-remove-git-autodetect.patch
@@ -0,0 +1,42 @@
+--- a/CMakeLists.txt   2019-01-10 19:29:06.831367707 +0100
 b/CMakeLists.txt   2019-01-10 19:30:11.125364384 +0100
+@@ -522,23 +522,23 @@
+ # 
+ #  Autodetect if we are in a GIT repository
+ # 
+-find_host_package(Git QUIET)
++# find_host_package(Git QUIET)
+ 
+-if(NOT DEFINED OPENCV_VCSVERSION AND GIT_FOUND)
+-  execute_process(COMMAND "${GIT_EXECUTABLE}" describe --tags --always 
--dirty --match "[0-9].[0-9].[0-9]*"
+-WORKING_DIRECTORY "${OpenCV_SOURCE_DIR}"
+-OUTPUT_VARIABLE OPENCV_VCSVERSION
+-RESULT_VARIABLE GIT_RESULT
+-ERROR_QUIET
+-OUTPUT_STRIP_TRAILING_WHITESPACE
+-  )
+-  if(NOT GIT_RESULT EQUAL 0)
+-set(OPENCV_VCSVERSION "unknown")
+-  endif()
+-elseif(NOT DEFINED OPENCV_VCSVERSION)
+-  # We don't have git:
+-  set(OPENCV_VCSVERSION "unknown")
+-endif()
++# if(NOT DEFINED OPENCV_VCSVERSION AND GIT_FOUND)
++#  execute_process(COMMAND "${GIT_EXECUTABLE}" describe --tags --always 
--dirty --match "[0-9].[0-9].[0-9]*"
++#WORKING_DIRECTORY "${OpenCV_SOURCE_DIR}"
++#OUTPUT_VARIABLE OPENCV_VCSVERSION
++#RESULT_VARIABLE GIT_RESULT
++#ERROR_QUIET
++#OUTPUT_STRIP_TRAILING_WHITESPACE
++#  )
++#  if(NOT GIT_RESULT EQUAL 0)
++#set(OPENCV_VCSVERSION "unknown")
++#  endif()
++# elseif(NOT DEFINED OPENCV_VCSVERSION)
++#  # We don't have git:
++# set(OPENCV_VCSVERSION "unknown")
++#endif()
+ 
+ 
+ # 

diff --git a/media-libs/opencv/opencv-3.4.1-r5.ebuild 
b/media-libs/opencv/opencv-3.4.1-r5.ebuild
index b03f24a8491..569397d8555 100644
--- a/media-libs/opencv/opencv-3.4.1-r5.ebuild
+++ b/media-libs/opencv/opencv-3.4.1-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -230,6 +230,7 @@ PATCHES=(
"${FILESDIR}/${P}-compilation-C-mode.patch" # 
https://bugs.gentoo.org/656530
"${FILESDIR}/${P}-python-lib-suffix-hack.patch"
"${FILESDIR}/${P}-cuda-add-relaxed-constexpr.patch"
+   "${FILESDIR}/${P}-remove-git-autodetect.patch"
 )
 
 pkg_pretend() {



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

2019-01-14 Thread Lars Wendler
commit: 840f9941e610fb28cedbba444a7ee17f938df287
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan 14 21:47:01 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan 14 21:47:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=840f9941

dev-util/cmake: Removed old.

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 dev-util/cmake/Manifest|   1 -
 dev-util/cmake/cmake-3.13.1.ebuild | 226 -
 2 files changed, 227 deletions(-)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index f6bdd15ddd9..dd62a170783 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -1,7 +1,6 @@
 DIST cmake-3.10.3.tar.gz 7825559 BLAKE2B 
1db8c21abdcfac2612fa914d49f9edcf199240b714104dba1d470c8e1e487d8e6cc5d486febae88d4a71eb9419064bcf94f9bb2c779771323221c1f117baa693
 SHA512 
1ba6381321cb34c3c050548a1346d3b92d590a196d8aff7435c079cd485d01f7a6cd650ad97d00931aff424fcdc195bbaa6d9d7db679bf02f72f586c7b528ae4
 DIST cmake-3.11.4.tar.gz 7955301 BLAKE2B 
2bad70e9e8b1a4081daf79fbec46d7389f685920d3158d05eae51fb24a0ecaad722c3e8a2eab1bcc75d599bee7a8202d432176e6ac1d87ed8815c84a7a8bb925
 SHA512 
c5d03ad66a004292038e49e391c390ebc328fbb089ea699742a9b75f0ada9398c3dc971b868f75d8438bf437ecbeaa62541beb53cae14a699bf244ad101a2290
 DIST cmake-3.12.3.tar.gz 8388552 BLAKE2B 
3e4150461f0d03ddaec790c7aa701bdb84b7f22b9e948262214d363d8457a9e2986470e7a0237f46e8a72109b61dc05d657516bb19c42d63c951af92055dd4d9
 SHA512 
2b5b006bd0fa09431eb525a7f419c64b811afbe1cc81d34e6167e04112966d9f48f28652b21b5a04c889de6227315db57dd2099a17ea6329e27f3e97eac9051c
-DIST cmake-3.13.1.tar.gz 8614663 BLAKE2B 
d05012a1b13de78388f96da1b28a28538d14e9851abee79618c10f7c126574c4c8cca3f3197970ec1acf4361f70f30baf7ef4f377e507e054dde20f2d5d48c82
 SHA512 
693520e53fa21e81f5f15e6f8979e5264e3bf7e194e4c19b884a44767b3b6d6535dee674f355440e7dcac480372882152c0523ac3c2f1c12d51b43540bcffa59
 DIST cmake-3.13.2.tar.gz 8614687 BLAKE2B 
2917116870bf6248865502d093e7974da5e22b053fb7eb1fc93581ee8bc6bdc719f7250619ca5657baff9d5e8e796a62964503b32e199a57e5f44ece25331037
 SHA512 
da095d483326ed379bfc8fa54e95db3426149ab923479a757149a4aed5c90693c0244bc2c9550cf4b64385f5003ee2060fea1698d989ed13bd0198e718c40903
 DIST cmake-3.13.3.tar.gz 8616403 BLAKE2B 
1c0df89a8cbed3fe94e9fb1491d77b9b87b3ce4d4dad6e90cf7bd3a259ab4839f941f4f52fb8d1cd89711a2f022d72a638a6e907f8d047419508aebe5bd8255d
 SHA512 
3033c434b6880d76a1496c9b1a32835307296a68e4c677acbe09cadb6562088dc9b04fb314d28b4611a1f4ea4d5a1e41c94e7ccf135f21c372a0eadc25aba585
 DIST cmake-3.9.6.tar.gz 7705400 BLAKE2B 
e0a5307af0a34863c50ea6aa9323025ef588b27e648107c3a81c362ee7ae4a1d2a07cc335d816b286ce4ddb249f9c6c08c3e8cf99856c7113f3724f47c62da43
 SHA512 
9fda2c9ac054ef8fb1bf3885fbdec02c518da89ade220eba06b5502ac3ff300f635ec0922e61f3b2d090644fb743b8f71a04c532ab66b2d890a180cc7da54e6c

diff --git a/dev-util/cmake/cmake-3.13.1.ebuild 
b/dev-util/cmake/cmake-3.13.1.ebuild
deleted file mode 100644
index 73aee46de55..000
--- a/dev-util/cmake/cmake-3.13.1.ebuild
+++ /dev/null
@@ -1,226 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-CMAKE_MAKEFILE_GENERATOR="emake"
-CMAKE_REMOVE_MODULES="no"
-inherit bash-completion-r1 elisp-common eutils flag-o-matic gnome2-utils 
toolchain-funcs eapi7-ver virtualx xdg-utils cmake-utils
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="Cross platform Make"
-HOMEPAGE="https://cmake.org/;
-SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz"
-
-LICENSE="CMake"
-SLOT="0"
-[[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc emacs system-jsoncpp ncurses qt5"
-
-RDEPEND="
-   app-crypt/rhash
-   >=app-arch/libarchive-3.0.0:=
-   >=dev-libs/expat-2.0.1
-   >=dev-libs/libuv-1.10.0:=
-   >=net-misc/curl-7.21.5[ssl]
-   sys-libs/zlib
-   virtual/pkgconfig
-   emacs? ( virtual/emacs )
-   ncurses? ( sys-libs/ncurses:0= )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-   system-jsoncpp? ( >=dev-libs/jsoncpp-0.6.0_rc2:0= )
-"
-DEPEND="${RDEPEND}
-   doc? (
-   dev-python/requests
-   dev-python/sphinx
-   )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-PATCHES=(
-   # prefix
-   "${FILESDIR}"/${PN}-3.4.0_rc1-darwin-bundle.patch
-   "${FILESDIR}"/${PN}-3.9.0_rc2-prefix-dirs.patch
-   "${FILESDIR}"/${PN}-3.1.0-darwin-isysroot.patch
-
-   # handle gentoo packaging in find modules
-   "${FILESDIR}"/${PN}-3.11.0_rc2-FindBLAS.patch
-   "${FILESDIR}"/${PN}-3.0.2-FindLAPACK.patch
-   "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch
-
-   # 

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

2019-01-14 Thread Lars Wendler
commit: b2dde71db7bea5d074c7a47f2e07fc8cde695d06
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan 14 21:45:13 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan 14 21:47:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2dde71d

dev-util/cmake: Bump to version 3.13.3

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 dev-util/cmake/Manifest|   1 +
 dev-util/cmake/cmake-3.13.3.ebuild | 226 +
 2 files changed, 227 insertions(+)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index 2b17c81c4c2..f6bdd15ddd9 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -3,4 +3,5 @@ DIST cmake-3.11.4.tar.gz 7955301 BLAKE2B 
2bad70e9e8b1a4081daf79fbec46d7389f68592
 DIST cmake-3.12.3.tar.gz 8388552 BLAKE2B 
3e4150461f0d03ddaec790c7aa701bdb84b7f22b9e948262214d363d8457a9e2986470e7a0237f46e8a72109b61dc05d657516bb19c42d63c951af92055dd4d9
 SHA512 
2b5b006bd0fa09431eb525a7f419c64b811afbe1cc81d34e6167e04112966d9f48f28652b21b5a04c889de6227315db57dd2099a17ea6329e27f3e97eac9051c
 DIST cmake-3.13.1.tar.gz 8614663 BLAKE2B 
d05012a1b13de78388f96da1b28a28538d14e9851abee79618c10f7c126574c4c8cca3f3197970ec1acf4361f70f30baf7ef4f377e507e054dde20f2d5d48c82
 SHA512 
693520e53fa21e81f5f15e6f8979e5264e3bf7e194e4c19b884a44767b3b6d6535dee674f355440e7dcac480372882152c0523ac3c2f1c12d51b43540bcffa59
 DIST cmake-3.13.2.tar.gz 8614687 BLAKE2B 
2917116870bf6248865502d093e7974da5e22b053fb7eb1fc93581ee8bc6bdc719f7250619ca5657baff9d5e8e796a62964503b32e199a57e5f44ece25331037
 SHA512 
da095d483326ed379bfc8fa54e95db3426149ab923479a757149a4aed5c90693c0244bc2c9550cf4b64385f5003ee2060fea1698d989ed13bd0198e718c40903
+DIST cmake-3.13.3.tar.gz 8616403 BLAKE2B 
1c0df89a8cbed3fe94e9fb1491d77b9b87b3ce4d4dad6e90cf7bd3a259ab4839f941f4f52fb8d1cd89711a2f022d72a638a6e907f8d047419508aebe5bd8255d
 SHA512 
3033c434b6880d76a1496c9b1a32835307296a68e4c677acbe09cadb6562088dc9b04fb314d28b4611a1f4ea4d5a1e41c94e7ccf135f21c372a0eadc25aba585
 DIST cmake-3.9.6.tar.gz 7705400 BLAKE2B 
e0a5307af0a34863c50ea6aa9323025ef588b27e648107c3a81c362ee7ae4a1d2a07cc335d816b286ce4ddb249f9c6c08c3e8cf99856c7113f3724f47c62da43
 SHA512 
9fda2c9ac054ef8fb1bf3885fbdec02c518da89ade220eba06b5502ac3ff300f635ec0922e61f3b2d090644fb743b8f71a04c532ab66b2d890a180cc7da54e6c

diff --git a/dev-util/cmake/cmake-3.13.3.ebuild 
b/dev-util/cmake/cmake-3.13.3.ebuild
new file mode 100644
index 000..758e6f4742d
--- /dev/null
+++ b/dev-util/cmake/cmake-3.13.3.ebuild
@@ -0,0 +1,226 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+CMAKE_MAKEFILE_GENERATOR="emake"
+CMAKE_REMOVE_MODULES="no"
+inherit bash-completion-r1 elisp-common eutils flag-o-matic gnome2-utils 
toolchain-funcs eapi7-ver virtualx xdg-utils cmake-utils
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="Cross platform Make"
+HOMEPAGE="https://cmake.org/;
+SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz"
+
+LICENSE="CMake"
+SLOT="0"
+[[ "${PV}" = *_rc* ]] || \
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc emacs system-jsoncpp ncurses qt5"
+
+RDEPEND="
+   app-crypt/rhash
+   >=app-arch/libarchive-3.0.0:=
+   >=dev-libs/expat-2.0.1
+   >=dev-libs/libuv-1.10.0:=
+   >=net-misc/curl-7.21.5[ssl]
+   sys-libs/zlib
+   virtual/pkgconfig
+   emacs? ( virtual/emacs )
+   ncurses? ( sys-libs/ncurses:0= )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   )
+   system-jsoncpp? ( >=dev-libs/jsoncpp-0.6.0_rc2:0= )
+"
+DEPEND="${RDEPEND}
+   doc? (
+   dev-python/requests
+   dev-python/sphinx
+   )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+SITEFILE="50${PN}-gentoo.el"
+
+PATCHES=(
+   # prefix
+   "${FILESDIR}"/${PN}-3.4.0_rc1-darwin-bundle.patch
+   "${FILESDIR}"/${PN}-3.9.0_rc2-prefix-dirs.patch
+   "${FILESDIR}"/${PN}-3.1.0-darwin-isysroot.patch
+
+   # handle gentoo packaging in find modules
+   "${FILESDIR}"/${PN}-3.11.0_rc2-FindBLAS.patch
+   "${FILESDIR}"/${PN}-3.0.2-FindLAPACK.patch
+   "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch
+
+   # respect python eclasses
+   "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
+   "${FILESDIR}"/${PN}-3.9.0_rc2-FindPythonInterp.patch
+
+   # boost (#660980)
+   "${FILESDIR}"/${PN}-3.11.4-fix-boost-detection.patch
+
+   # upstream fixes (can usually be removed with a version bump)
+)
+
+cmake_src_bootstrap() {
+   # Cleanup args to extract only JOBS.
+   # Because bootstrap does not know anything else.
+   echo ${MAKEOPTS} | egrep -o 
'(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null
+   

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

2019-01-14 Thread James Le Cuirot
commit: 2edc2a7914a5175332d2b3bdf713477ee9061a85
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Jan 14 20:49:10 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Jan 14 20:50:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edc2a79

media-libs/leptonica: Version bump to 1.77.0, EAPI 7

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: James Le Cuirot  gentoo.org>

 media-libs/leptonica/Manifest   |  1 +
 media-libs/leptonica/files/1.77.0-gnuplot.patch | 25 +
 media-libs/leptonica/leptonica-1.77.0.ebuild| 75 +
 3 files changed, 101 insertions(+)

diff --git a/media-libs/leptonica/Manifest b/media-libs/leptonica/Manifest
index f41ecb5fcdf..74485e4a7d9 100644
--- a/media-libs/leptonica/Manifest
+++ b/media-libs/leptonica/Manifest
@@ -1,2 +1,3 @@
 DIST leptonica-1.74.4.tar.gz 12349877 BLAKE2B 
5c4a71c1c4f44b617f16b1b1029455badee268dc1ac459f1c7ffe6af5b8dbe702bdbaa6e5564af6e41d0881c59e1aa43dc40d5164f618f13ca2a563b2aa3bd0e
 SHA512 
e74732c10218430463ca01f15e19d329dceb938e315586ed100c634c4d50809824f1d9bf7eeaf91654caf42ed78a5ae5de7c08e7a1d8884c580c536121627891
 DIST leptonica-1.76.0.tar.gz 12436958 BLAKE2B 
3cbb581340531762090f009393b21252d6f7ecbe3dd7c30043f42e8a437f6ae16d3e95229fedcf6845ca47e4323a35ab3e72e349c6fae35f0587c21b44461ef8
 SHA512 
83c77bebbf739cecab997ee08f7c9abf3ca884019c559b8f77c292ea2676c464cbf9b6812d7f12aefceef86c19d04bb3bc85119de298647a641b984dcdf3b111
+DIST leptonica-1.77.0.tar.gz 12888756 BLAKE2B 
a1de6ff8d886c4e302faa362ad5c18ece727771e5cdbe62b33c34c950d1af9e0e97418e59485568a6386eb2a7e51fd42ffb2fd01f16591c5bc668961640f1f4d
 SHA512 
3cf764c76d5acb6d5982c44e78c02d7a7c3b5e79937c41df193e71dd8a02dbbf965d34a2ecdf0444e907cb73c06bdb8bcae4ceafbf5ee1483c022659e897015b

diff --git a/media-libs/leptonica/files/1.77.0-gnuplot.patch 
b/media-libs/leptonica/files/1.77.0-gnuplot.patch
new file mode 100644
index 000..0d6b0e3cb15
--- /dev/null
+++ b/media-libs/leptonica/files/1.77.0-gnuplot.patch
@@ -0,0 +1,25 @@
+From 5204b5453fe8035d77e34add80f8ebb1f36b9350 Mon Sep 17 00:00:00 2001
+From: James Le Cuirot 
+Date: Mon, 14 Jan 2019 20:26:14 +
+Subject: [PATCH] Add boxa2_reg and numa[12]_reg to gnuplot-dependent test list
+
+---
+ prog/reg_wrapper.sh | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/prog/reg_wrapper.sh b/prog/reg_wrapper.sh
+index 5568c8e..ff9264d 100755
+--- a/prog/reg_wrapper.sh
 b/prog/reg_wrapper.sh
+@@ -31,7 +31,7 @@ TEST_NAME="${TEST##*/}"
+ TEST_NAME="${TEST_NAME%_reg*}"
+ 
+ case "${TEST_NAME}" in
+-
baseline|boxa1|colormask|colorspace|dna|enhance|extrema|fpix1|italic|kernel|nearline|projection|rankbin|rankhisto|wordboxes)
++
baseline|boxa[12]|colormask|colorspace|dna|enhance|extrema|fpix1|italic|kernel|nearline|numa[12]|projection|rankbin|rankhisto|wordboxes)
+ GNUPLOT=$(type -P gnuplot || type -P wgnuplot)
+ 
+ if [ -z "${GNUPLOT}" ] || ! "${GNUPLOT}" -e "set terminal png" 
2>/dev/null ; then
+-- 
+2.19.2
+

diff --git a/media-libs/leptonica/leptonica-1.77.0.ebuild 
b/media-libs/leptonica/leptonica-1.77.0.ebuild
new file mode 100644
index 000..1e8f7a678d8
--- /dev/null
+++ b/media-libs/leptonica/leptonica-1.77.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal
+
+DESCRIPTION="C library for image processing and analysis"
+HOMEPAGE="http://www.leptonica.org/;
+SRC_URI="https://github.com/DanBloomberg/${PN}/releases/download/${PV}/${P}.tar.gz;
+LICENSE="Apache-2.0"
+SLOT="0/5"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+IUSE="gif jpeg jpeg2k png static-libs test tiff utils webp zlib"
+
+# N.B. Tests need some features enabled:
+REQUIRED_USE="test? ( jpeg png tiff zlib )"
+
+RDEPEND="gif? ( >=media-libs/giflib-5.1.3:=[${MULTILIB_USEDEP}] )
+   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
+   jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] )
+   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}]
+  sys-libs/zlib:=[${MULTILIB_USEDEP}] )
+   tiff? ( media-libs/tiff:0=[${MULTILIB_USEDEP}] )
+   webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )
+   zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] )"
+
+DEPEND="${RDEPEND}
+   test? ( media-libs/tiff:0[zlib] )"
+
+PATCHES=(
+   "${FILESDIR}"/${PV}-gnuplot.patch
+)
+
+ECONF_SOURCE="${S}"
+DOCS=( README version-notes )
+
+src_prepare() {
+   default
+
+   # unhtmlize docs
+   local X
+   for X in ${DOCS[@]}; do
+   awk '/<\/pre>/{s--} {if (s) print $0} //{s++}' \
+   "${X}.html" > "${X}" || die 'awk failed'
+   rm -f -- "${X}.html"
+   done
+}
+
+multilib_src_configure() {
+   econf \
+   --enable-shared \
+   $(use_with gif giflib) \
+   $(use_with jpeg) 

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

2019-01-14 Thread Mikle Kolyada
commit: b068231ae8605a51ee34ead64bb48702fad57675
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 20:46:03 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 20:46:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b068231a

app-arch/lzip: Version bump (v1.21)

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-arch/lzip/Manifest |  1 +
 app-arch/lzip/lzip-1.21.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/app-arch/lzip/Manifest b/app-arch/lzip/Manifest
index 77f442ad4e8..617f234820a 100644
--- a/app-arch/lzip/Manifest
+++ b/app-arch/lzip/Manifest
@@ -1 +1,2 @@
 DIST lzip-1.20.tar.gz 103426 BLAKE2B 
1d72b2132e9ceb67339a10bfdb728be2e5057df571306c698fb06b97c8fc310ce6cceca1a9fd6470fe34f4f6c3b63ee28d791d293418ffe302c84219cb92d35d
 SHA512 
0349b4c6c0b41e601b7ee381c3254d741397beb3ef9354c08162f346f131f4f48f6613ee0a610cdc6d827530df634f884ecfeee35215b10045a40fee76f8e938
+DIST lzip-1.21.tar.gz 105558 BLAKE2B 
07658ec901bdfc255fef5af24b62614b2db9821b9a2820daa5137fd47ede0b68bbf3eac340ad5484d2ef7011d15c2eaccf19abc9e33b5c96273fc9b9d323083e
 SHA512 
02e31a8fc9431e88edbb0fd467e9dd0947203e693e6581be1a8d25d96c74d9c3794f1fef9e4c993553ba74330c8f5851cad6315b49f263fe9cf2444225af4362

diff --git a/app-arch/lzip/lzip-1.21.ebuild b/app-arch/lzip/lzip-1.21.ebuild
new file mode 100644
index 000..f854ad4914a
--- /dev/null
+++ b/app-arch/lzip/lzip-1.21.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="lossless data compressor based on the LZMA algorithm"
+HOMEPAGE="https://www.nongnu.org/lzip/lzip.html;
+SRC_URI="https://download.savannah.gnu.org/releases-noredirect/${PN}/${P/_/-}.tar.gz
+   https://download.savannah.gnu.org/releases/${PN}/${P/_/-}.tar.gz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+S="${WORKDIR}/${P/_/-}"
+
+src_configure() {
+   # not autotools-based
+   ./configure \
+   --prefix="${EPREFIX}"/usr \
+   CXX="$(tc-getCXX)" \
+   CPPFLAGS="${CPPFLAGS}" \
+   CXXFLAGS="${CXXFLAGS}" \
+   LDFLAGS="${LDFLAGS}" || die
+}



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

2019-01-14 Thread Mikle Kolyada
commit: 9ba2efa16a703d1ec7ddb3a9af80d3945b8be4bf
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 20:39:56 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 20:40:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba2efa1

sys-apps/findutils: Drop old

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-apps/findutils/Manifest|   2 -
 .../files/findutils-4.4.2-gnulib-date-x32.patch|  26 --
 .../findutils/files/findutils-4.4.2-selinux.diff   | 464 -
 sys-apps/findutils/findutils-4.4.2-r2.ebuild   |  55 ---
 sys-apps/findutils/findutils-4.5.18.ebuild |  54 ---
 5 files changed, 601 deletions(-)

diff --git a/sys-apps/findutils/Manifest b/sys-apps/findutils/Manifest
index b758d6d8a67..5643ce25844 100644
--- a/sys-apps/findutils/Manifest
+++ b/sys-apps/findutils/Manifest
@@ -1,3 +1 @@
-DIST findutils-4.4.2.tar.gz 2149838 BLAKE2B 
be061487c8b50bbb8aa1e085dc46f9b71dcc465c884417531d56bda6dcf35746ec9c25f940ec660d83431787b88a3cb6931382326fdc3ab82575f236e9543163
 SHA512 
262d0a8301158e6541b9f24e4e043d8d8c1b196b18dbe59c3bedcf17b50c95708e33ab23a07e3bfb947ad495faafffdca3c296fb525794ca60f2dfd682f228c1
-DIST findutils-4.5.18.tar.gz 3870196 BLAKE2B 
766c072aed143313460facf8179ff3645f441e8f1253a5e7b59d67e20207a060c074f17f0a839e60027810fed739839ffe066ff40e2e07fb23c6f20d326ec8d8
 SHA512 
2ae70cef9aee81d4402298db11890efa0ec38dba561dfc11afc9c91af7c1c6a7cca221f669c45b00e65eba53a8b08f5124ed4e862d9e26bcf69c48a927e6b398
 DIST findutils-4.6.0.tar.gz 3780154 BLAKE2B 
cae93c4e6bac93fa374ffba18ada95b783335fa7f9f9491cdd1848cd9bb6781a98e7b0ae3677c88bb3052afca2e90e066e072ee0f67c407cb7b087b49831d799
 SHA512 
41fcd4197c1efbd77f7420e5754e2cf9332dfef19f90c65a8fa1844bb4bc5d529c8393ee0ff979a054e9ac65ff71d7fe3921ea079f9960843412fc9a71f8afd4

diff --git a/sys-apps/findutils/files/findutils-4.4.2-gnulib-date-x32.patch 
b/sys-apps/findutils/files/findutils-4.4.2-gnulib-date-x32.patch
deleted file mode 100644
index 9ff86f6b84a..000
--- a/sys-apps/findutils/files/findutils-4.4.2-gnulib-date-x32.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-newer gnulib has rewritten these checks in a way that works for the x32,
-and for the targets we care about, these checks won't return false.  so
-just drop them to make our life simpler.
-
-https://sites.google.com/site/x32abi/x32-patches
-
 findutils-4.4.2/gnulib/lib/getdate.c.x32   2009-05-10 14:23:57.0 
-0700
-+++ findutils-4.4.2/gnulib/lib/getdate.c   2011-12-05 11:41:18.130675712 
-0800
-@@ -114,7 +114,6 @@
-wraps around, but there's no portable way to check for that at
-compile-time.  */
- verify (TYPE_IS_INTEGER (time_t));
--verify (LONG_MIN <= TYPE_MINIMUM (time_t) && TYPE_MAXIMUM (time_t) <= 
LONG_MAX);
- 
- /* An integer value, and the number of digits in its textual
-representation.  */
 findutils-4.4.2/gnulib/lib/mktime.c.x322009-05-10 14:25:13.0 
-0700
-+++ findutils-4.4.2/gnulib/lib/mktime.c2011-12-05 11:49:38.368589386 
-0800
-@@ -166,7 +166,5 @@ ydhms_diff (long int year1, long int yda
- {
-   verify (C99_integer_division, -1 / 2 == 0);
--  verify (long_int_year_and_yday_are_wide_enough,
--INT_MAX <= LONG_MAX / 2 || TIME_T_MAX <= UINT_MAX);
- 
-   /* Compute intervening leap days correctly even if year is negative.
-  Take care to avoid integer overflow here.  */

diff --git a/sys-apps/findutils/files/findutils-4.4.2-selinux.diff 
b/sys-apps/findutils/files/findutils-4.4.2-selinux.diff
deleted file mode 100644
index 66c9c412a0a..000
--- a/sys-apps/findutils/files/findutils-4.4.2-selinux.diff
+++ /dev/null
@@ -1,464 +0,0 @@
-diff -purN findutils-4.4.2.orig/find/Makefile.am 
findutils-4.4.2/find/Makefile.am
 findutils-4.4.2.orig/find/Makefile.am  2009-05-16 15:17:01.0 
+
-+++ findutils-4.4.2/find/Makefile.am   2010-04-25 03:58:33.762402367 +
-@@ -2,6 +2,7 @@ AUTOMAKE_OPTIONS = std-options
- localedir = $(datadir)/locale
- # noinst_PROGRAMS = regexprops
- # regexprops_SOURCES = regexprops.c
-+DEFS = @DEFS@ -I. -I$(srcdir) -I.. -DWITH_SELINUX
- 
- noinst_LIBRARIES = libfindtools.a
- libfindtools_a_SOURCES = finddata.c fstype.c parser.c pred.c tree.c util.c
-@@ -26,7 +27,7 @@ endif
- 
- EXTRA_DIST = defs.h $(man_MANS)
- INCLUDES = -I../gnulib/lib -I$(top_srcdir)/lib -I$(top_srcdir)/gnulib/lib 
-I../intl -DLOCALEDIR=\"$(localedir)\"
--LDADD = ./libfindtools.a ../lib/libfind.a ../gnulib/lib/libgnulib.a 
@INTLLIBS@ @LIB_CLOCK_GETTIME@ @FINDLIBS@
-+LDADD = ./libfindtools.a ../lib/libfind.a ../gnulib/lib/libgnulib.a 
@INTLLIBS@ @LIB_CLOCK_GETTIME@ @FINDLIBS@ -lselinux
- man_MANS = find.1
- SUBDIRS = . testsuite
- 
-diff -purN findutils-4.4.2.orig/find/Makefile.in 
findutils-4.4.2/find/Makefile.in
 findutils-4.4.2.orig/find/Makefile.in  2009-05-16 15:28:13.0 
+
-+++ findutils-4.4.2/find/Makefile.in   2010-04-25 

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

2019-01-14 Thread Craig Andrews
commit: d93b1da0473409053475d30a3d15bd659a479bd4
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Dec 14 04:05:22 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jan 14 20:25:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93b1da0

dev-libs/rocr-runtime: Radeon Open Compute Runtime

Bug: https://bugs.gentoo.org/650804
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 dev-libs/rocr-runtime/Manifest |  1 +
 .../rocr-runtime-2.0.0-cmake-install-paths.patch   | 42 ++
 dev-libs/rocr-runtime/metadata.xml | 18 ++
 dev-libs/rocr-runtime/rocr-runtime-2.0.0.ebuild| 34 ++
 4 files changed, 95 insertions(+)

diff --git a/dev-libs/rocr-runtime/Manifest b/dev-libs/rocr-runtime/Manifest
new file mode 100644
index 000..1049c994c5b
--- /dev/null
+++ b/dev-libs/rocr-runtime/Manifest
@@ -0,0 +1 @@
+DIST rocr-runtime-2.0.0.tar.gz 313087 BLAKE2B 
5fe5ea99728f7d7337c9e8a174a31d4ca8bdd559fad3400955ba6d86947d5bf9004094d78548cab2cb2089bfd028d0e4dfdd4d5fd7b41bed73feeebf2f33b705
 SHA512 
662d3d8fff8aeb17557df67207d885edc1266bb9800ec46ecab28bbd6ace7fbffb9e4092d74beb0366cacfe8873b1b257bcf2f8345d81a9b6657a7adcfc53c0c

diff --git 
a/dev-libs/rocr-runtime/files/rocr-runtime-2.0.0-cmake-install-paths.patch 
b/dev-libs/rocr-runtime/files/rocr-runtime-2.0.0-cmake-install-paths.patch
new file mode 100644
index 000..ece1571ab40
--- /dev/null
+++ b/dev-libs/rocr-runtime/files/rocr-runtime-2.0.0-cmake-install-paths.patch
@@ -0,0 +1,42 @@
+From 866c2fbcf1efa3e84e6f25bebc12dc1d4caa4e74 Mon Sep 17 00:00:00 2001
+From: Craig Andrews 
+Date: Mon, 7 Jan 2019 21:06:14 -0500
+Subject: [PATCH] Correctly install the library into the system
+
+Install to standard locations in /usr/{lib,include}/lib (as opposed to 
/usr/hsa/{lib,include}/hsa)
+Use CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR from GNUInstallDirs 
instead of using "lib" and "include"
+---
+ src/CMakeLists.txt | 11 +--
+ 1 file changed, 5 insertions(+), 6 deletions(-)
+
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 37a9b09..e39f3d2 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -53,6 +53,7 @@ project( ${CORE_RUNTIME_TARGET} )
+ 
+ list ( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules" )
+ include ( utils )
++include ( GNUInstallDirs )
+ include ( hsa_common )
+ 
+ ## Find LibElf
+@@ -177,14 +178,12 @@ if ( "${CMAKE_BUILD_TYPE}" STREQUAL Release )
+ endif ()
+ 
+ ## Create symlinks for packaging and install
+-add_custom_target ( hsa-link ALL WORKING_DIRECTORY 
${CMAKE_CURRENT_BINARY_DIR} COMMAND ${CMAKE_COMMAND} -E create_symlink 
../hsa/include/hsa hsa-link )
+-add_custom_target ( ${CORE_RUNTIME_TARGET}.so-link ALL WORKING_DIRECTORY 
${CMAKE_CURRENT_BINARY_DIR} COMMAND ${CMAKE_COMMAND} -E create_symlink 
../hsa/lib/${CORE_RUNTIME_LIBRARY}.so ${CORE_RUNTIME_LIBRARY}.so-link )
++add_custom_target ( ${CORE_RUNTIME_TARGET}.so-link ALL WORKING_DIRECTORY 
${CMAKE_CURRENT_BINARY_DIR} COMMAND ${CMAKE_COMMAND} -E create_symlink 
hsa/${CORE_RUNTIME_LIBRARY}.so ${CORE_RUNTIME_LIBRARY}.so-link )
+ 
+ ## Set install information
+-install ( TARGETS ${CORE_RUNTIME_TARGET} LIBRARY DESTINATION hsa/lib )
+-install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/inc/ DESTINATION 
hsa/include/hsa )
+-install ( FILES ${CMAKE_CURRENT_BINARY_DIR}/hsa-link DESTINATION include 
PERMISSIONS OWNER_WRITE OWNER_READ RENAME hsa )
+-install ( FILES ${CMAKE_CURRENT_BINARY_DIR}/${CORE_RUNTIME_LIBRARY}.so-link 
DESTINATION lib PERMISSIONS OWNER_WRITE OWNER_READ RENAME 
${CORE_RUNTIME_LIBRARY}.so )
++install ( TARGETS ${CORE_RUNTIME_TARGET} LIBRARY DESTINATION 
${CMAKE_INSTALL_LIBDIR}/hsa )
++install ( DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/inc/ DESTINATION 
${CMAKE_INSTALL_INCLUDEDIR}/hsa )
++install ( FILES ${CMAKE_CURRENT_BINARY_DIR}/${CORE_RUNTIME_LIBRARY}.so-link 
DESTINATION ${CMAKE_INSTALL_LIBDIR} PERMISSIONS OWNER_WRITE OWNER_READ RENAME 
${CORE_RUNTIME_LIBRARY}.so )
+ 
+ ## Packaging directives
+ set ( CPACK_PACKAGE_NAME "hsa-rocr-dev" )

diff --git a/dev-libs/rocr-runtime/metadata.xml 
b/dev-libs/rocr-runtime/metadata.xml
new file mode 100644
index 000..d53b83185ad
--- /dev/null
+++ b/dev-libs/rocr-runtime/metadata.xml
@@ -0,0 +1,18 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+candr...@gentoo.org
+Craig Andrews
+
+
+gen...@holzke.net
+Wilfried Holzke
+
+
+RadeonOpenCompute/ROCR-Runtime
+
+
+Radeon Open Compute Platform Runtime
+
+

diff --git a/dev-libs/rocr-runtime/rocr-runtime-2.0.0.ebuild 
b/dev-libs/rocr-runtime/rocr-runtime-2.0.0.ebuild
new file mode 100644
index 000..d75707a03ba
--- /dev/null
+++ b/dev-libs/rocr-runtime/rocr-runtime-2.0.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public 

[gentoo-commits] repo/gentoo:master commit in: dev-libs/roct-thunk-interface/files/, dev-libs/roct-thunk-interface/

2019-01-14 Thread Craig Andrews
commit: 950f935be6030e5ea62f0b922927b0013b120c90
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Dec 14 03:54:40 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jan 14 20:25:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=950f935b

dev-libs/roct-thunk-interface: Radeon Open Compute Thunk Interface

Bug: https://bugs.gentoo.org/650804
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 dev-libs/roct-thunk-interface/Manifest |   1 +
 ...t-thunk-interface-2.0.0-correctly-install.patch | 288 +
 dev-libs/roct-thunk-interface/metadata.xml |  22 ++
 .../roct-thunk-interface-2.0.0.ebuild  |  32 +++
 4 files changed, 343 insertions(+)

diff --git a/dev-libs/roct-thunk-interface/Manifest 
b/dev-libs/roct-thunk-interface/Manifest
new file mode 100644
index 000..5a78b9fd36a
--- /dev/null
+++ b/dev-libs/roct-thunk-interface/Manifest
@@ -0,0 +1 @@
+DIST roct-thunk-interface-2.0.0.tar.gz 1958218 BLAKE2B 
c1ba89cac9a18964e040e6b1e57a464216e7086c400e3360cfca6f376ac90b0b1afbb3a2a4d995581d1829ca57afe62bf6f2ac59cc103a48d384a8e52b1457d0
 SHA512 
7d2e35df2bec201bcc977328d7d36b921f76b57a0c54fc2332eb1faf3a722b6a3a1e3b1658e93b216ed68b965426c463a2dbf52a22af64ce1dcc9fad0f27ca9c

diff --git 
a/dev-libs/roct-thunk-interface/files/roct-thunk-interface-2.0.0-correctly-install.patch
 
b/dev-libs/roct-thunk-interface/files/roct-thunk-interface-2.0.0-correctly-install.patch
new file mode 100644
index 000..8248c5f4b36
--- /dev/null
+++ 
b/dev-libs/roct-thunk-interface/files/roct-thunk-interface-2.0.0-correctly-install.patch
@@ -0,0 +1,288 @@
+https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface/pull/25
+From c60501d7e69db24f5d880aace73662384ea90b27 Mon Sep 17 00:00:00 2001
+From: Andreas Schneider 
+Date: Fri, 7 Sep 2018 10:30:05 +0200
+Subject: [PATCH 1/7] cmake: Do not mess with CMAKE_C_FLAGS
+
+---
+ CMakeLists.txt | 11 +++
+ 1 file changed, 3 insertions(+), 8 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index cb2605b..8a0f362 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -59,15 +59,9 @@ set ( BUILD_VERSION_STRING 
"${BUILD_VERSION_MAJOR}.${BUILD_VERSION_MINOR}.${BUIL
+ #set ( CMAKE_VERBOSE_MAKEFILE on )
+ 
+ ## Compiler flags
+-set ( CMAKE_C_FLAGS "-fPIC -W -Wall -Wextra -Wno-unused-parameter 
-Wformat-security -Wswitch-default -Wundef -Wshadow -Wpointer-arith 
-Wbad-function-cast -Wcast-qual -Wlogical-op -Wstrict-prototypes 
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls 
-Wunreachable-code -std=gnu99 -fvisibility=hidden" )
++set (HSAKMT_C_FLAGS -fPIC -W -Wall -Wextra -Wno-unused-parameter 
-Wformat-security -Wswitch-default -Wundef -Wshadow -Wpointer-arith 
-Wbad-function-cast -Wcast-qual -Wlogical-op -Wstrict-prototypes 
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls 
-Wunreachable-code -std=gnu99 -fvisibility=hidden)
+ if ( "${CMAKE_C_COMPILER_VERSION}" STRGREATER "4.8.0")
+-set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror" )
+-endif ()
+-
+-if ( "${CMAKE_BUILD_TYPE}" STREQUAL Release )
+-set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -O2" )
+-else ()
+-set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g" )
++set (HSAKMT_C_FLAGS ${HSAKMT_C_FLAGS} -Werror)
+ endif ()
+ 
+ set ( HSAKMT_LINKER_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/src/libhsakmt.ver" )
+@@ -96,6 +90,7 @@ include_directories ( ${CMAKE_CURRENT_SOURCE_DIR}/src )
+ 
+ ## Add the library
+ add_library ( ${HSAKMT_TARGET} SHARED ${HSAKMT_SRC} )
++target_compile_options(${HSAKMT_TARGET} PRIVATE ${HSAKMT_C_FLAGS})
+ 
+ ## Set the VERSION and SOVERSION values
+ set_property ( TARGET ${HSAKMT_TARGET} PROPERTY VERSION 
"${LIB_VERSION_STRING}" )
+
+From d37b3e2e634a40192c113d9a8256f3d2aa24acfa Mon Sep 17 00:00:00 2001
+From: Andreas Schneider 
+Date: Fri, 7 Sep 2018 10:31:59 +0200
+Subject: [PATCH 2/7] cmake: Do not mess with CMAKE_SHARED_LINKER_FLAGS
+
+---
+ CMakeLists.txt | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8a0f362..a2a36cd 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -67,7 +67,7 @@ endif ()
+ set ( HSAKMT_LINKER_SCRIPT "${CMAKE_CURRENT_SOURCE_DIR}/src/libhsakmt.ver" )
+ 
+ ## Linker Flags
+-set ( CMAKE_SHARED_LINKER_FLAGS "-Wl,--version-script=${HSAKMT_LINKER_SCRIPT} 
-Wl,-soname=${HSAKMT_COMPONENT}.so.$(PROJECT_VERSION_MAJOR) -Wl,-z,nodelete 
-Wl,-no-undefined" )
++set (HSAKMT_LINK_FLAGS "-Wl,--version-script=${HSAKMT_LINKER_SCRIPT} 
-Wl,-soname=${HSAKMT_COMPONENT}.so.$(PROJECT_VERSION_MAJOR) -Wl,-z,nodelete 
-Wl,-no-undefined" )
+ 
+ ## Source files
+ set ( HSAKMT_SRC "src/debug.c"
+@@ -91,6 +91,7 @@ include_directories ( ${CMAKE_CURRENT_SOURCE_DIR}/src )
+ ## Add the library
+ add_library ( ${HSAKMT_TARGET} SHARED ${HSAKMT_SRC} )
+ target_compile_options(${HSAKMT_TARGET} PRIVATE ${HSAKMT_C_FLAGS})
++set_property(TARGET ${HSAKMT_TARGET} PROPERTY LINK_FLAGS 

[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtk+/

2019-01-14 Thread Mart Raudsepp
commit: 08c744a1049630762de0e6633827c8036e7a1f2c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:35:49 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:50:48 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08c744a1

x11-libs/gtk+: bump to 3.24.3

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-libs/gtk+/Manifest   |   1 +
 x11-libs/gtk+/gtk+-3.24.3.ebuild | 229 +++
 2 files changed, 230 insertions(+)

diff --git a/x11-libs/gtk+/Manifest b/x11-libs/gtk+/Manifest
index 1d6b0ab0725..7b2787f49f6 100644
--- a/x11-libs/gtk+/Manifest
+++ b/x11-libs/gtk+/Manifest
@@ -1,3 +1,4 @@
 DIST gtk+-2.24.32-patchset-r1.tar.xz 13364 BLAKE2B 
15e5429b11cc4ccef1bf44105c790b5325e833ab12f393fe718c06470b90f3e4004bea4b51076a725f4bb10bcfd0c48b7063d9b9b021919ad0367d1b981be980
 SHA512 
1a15dce7578a914585981426d2e5d1cc45866866a70c3f443d1867ab1c0c28fb279bde6c3117b28eec2758a62c1b54bb6fb1b382ad6e9a7cf0114b13f2afd858
 DIST gtk+-2.24.32.tar.xz 12620860 BLAKE2B 
03f4c0a8be98473f62bc8c86859937969c4169960a5f93d37ff6dcde00413215fa6c7125b15781bf50d67b40aa0056cb71b83fb50acb2c3467b5deb3c8d938f0
 SHA512 
8e8fd9ae32f1d6fb544da260f00599f0f05090d910d767b06ef086ab4f1f8373a29bb0da9767761c9b5f4cfd51b5c45d0fa5d39b0428c839ddf0a579df806696
 DIST gtk+-3.24.1.tar.xz 19307612 BLAKE2B 
f09b7cb252898b7290a3806f8fb579b706fc0ecd021817e34e71b101a7d222604b395c850c559f3ff0c38e0848abdffc483efe65f086357532be85db872028e7
 SHA512 
13ddb1099a2a0eb44ea53fa4be5054a403e1b27468a33862646ba111577b7bb72b9bbe4f6aea15889c2a2bee1238023bc23524b901cf2dbb3adf0e126eb6ea5d
+DIST gtk+-3.24.3.tar.xz 21099144 BLAKE2B 
d0493a720b310ebba3b64b643ccf3880ed1611418127a6997d885638b46f1f44e3a0b01651319d0fe476906a53fbee0f84ca1ba142aaa634a01841ce9c7e7efc
 SHA512 
72a69d71f2e16a1dd169cc74d568da47131bd5d77994bcdd3b427ec1cd37c5daf0841a6e4824b125d860bc1c4f07c9835a3b2e74d951666253d3e4edbed0e5fc

diff --git a/x11-libs/gtk+/gtk+-3.24.3.ebuild b/x11-libs/gtk+/gtk+-3.24.3.ebuild
new file mode 100644
index 000..6d73439415d
--- /dev/null
+++ b/x11-libs/gtk+/gtk+-3.24.3.ebuild
@@ -0,0 +1,229 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+GNOME2_EAUTORECONF="yes"
+
+inherit flag-o-matic gnome2 multilib virtualx multilib-minimal
+
+DESCRIPTION="Gimp ToolKit +"
+HOMEPAGE="https://www.gtk.org/;
+
+LICENSE="LGPL-2+"
+SLOT="3"
+IUSE="aqua broadway cloudprint colord cups examples gtk-doc +introspection 
test vim-syntax wayland +X xinerama"
+REQUIRED_USE="
+   || ( aqua wayland X )
+   xinerama? ( X )
+"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# Upstream wants us to do their job:
+# https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1
+RESTRICT="test"
+
+# FIXME: introspection data is built against system installation of gtk+:3,
+# bug #
+COMMON_DEPEND="
+   >=dev-libs/atk-2.15[introspection?,${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.53.4:2[${MULTILIB_USEDEP}]
+   media-libs/fontconfig[${MULTILIB_USEDEP}]
+   >=media-libs/libepoxy-1.4[X(+)?,${MULTILIB_USEDEP}]
+   >=x11-libs/cairo-1.14[aqua?,glib,svg,X?,${MULTILIB_USEDEP}]
+   >=x11-libs/gdk-pixbuf-2.30:2[introspection?,${MULTILIB_USEDEP}]
+   >=x11-libs/pango-1.41.0[introspection?,${MULTILIB_USEDEP}]
+   >=media-libs/harfbuzz-0.9:=
+   x11-misc/shared-mime-info
+
+   cloudprint? (
+   >=net-libs/rest-0.7[${MULTILIB_USEDEP}]
+   >=dev-libs/json-glib-1.0[${MULTILIB_USEDEP}] )
+   colord? ( >=x11-misc/colord-0.1.9:0=[${MULTILIB_USEDEP}] )
+   cups? ( >=net-print/cups-1.2[${MULTILIB_USEDEP}] )
+   introspection? ( >=dev-libs/gobject-introspection-1.39:= )
+   wayland? (
+   >=dev-libs/wayland-1.9.91[${MULTILIB_USEDEP}]
+   >=dev-libs/wayland-protocols-1.12
+   media-libs/mesa[wayland,${MULTILIB_USEDEP}]
+   >=x11-libs/libxkbcommon-0.2[${MULTILIB_USEDEP}]
+   )
+   X? (
+   >=app-accessibility/at-spi2-atk-2.5.3[${MULTILIB_USEDEP}]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   >=x11-libs/libXi-1.3[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrandr-1.5[${MULTILIB_USEDEP}]
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXcomposite[${MULTILIB_USEDEP}]
+   x11-libs/libXdamage[${MULTILIB_USEDEP}]
+   xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xsl-stylesheets
+   app-text/docbook-xml-dtd:4.1.2
+   

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

2019-01-14 Thread Mart Raudsepp
commit: 448339ff7989a8338b66f7d1c11a260f27edd0ba
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:43:53 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:51:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448339ff

www-client/epiphany: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 www-client/epiphany/Manifest   |  1 -
 www-client/epiphany/epiphany-3.26.7.ebuild | 82 --
 2 files changed, 83 deletions(-)

diff --git a/www-client/epiphany/Manifest b/www-client/epiphany/Manifest
index 92432007439..41788f3b44a 100644
--- a/www-client/epiphany/Manifest
+++ b/www-client/epiphany/Manifest
@@ -1,2 +1 @@
-DIST epiphany-3.26.7.tar.xz 4429308 BLAKE2B 
cdd8cf084631891e97585307c90bd67f45e71deb6564f54711deb8dfd39c09007732efeb22ad5be45c1b0af6af7be30cf13a9d90aa1e9506a2e997f6f3f8d854
 SHA512 
686c8825d476a4c6675dadd7a68bf72727714bc6fe01b4dbf67d39b2dc7e3f21d4f630417865800664a716d6316df8a97fde5201ec72c90f448fd6f0af4b49a0
 DIST epiphany-3.30.2.tar.xz 4528100 BLAKE2B 
3b711df8aa3166c26f639658de188e730f346be7c9bdfc65a5064804c1b0e22a744aec6c559c4131125e8fb34e7bb80636f559c7257cca3ad044c6b810bbe657
 SHA512 
4edaa042357ad44f2069412508cff9524e6e397da868b78768b493d03d77d16807d78f074eb1a4b18fcc1143d3a63d21f3eb1c0f126a31290320016c76c5130e

diff --git a/www-client/epiphany/epiphany-3.26.7.ebuild 
b/www-client/epiphany/epiphany-3.26.7.ebuild
deleted file mode 100644
index 98a2a339cee..000
--- a/www-client/epiphany/epiphany-3.26.7.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome.org gnome2-utils meson xdg virtualx
-
-DESCRIPTION="GNOME webbrowser based on Webkit"
-HOMEPAGE="https://wiki.gnome.org/Apps/Web;
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="test"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.52.0:2
-   >=x11-libs/gtk+-3.22.13:3
-   >=dev-libs/nettle-3.2:=
-   >=net-libs/webkit-gtk-2.17.4:4=
-   >=x11-libs/cairo-1.2
-   >=app-crypt/gcr-3.5.5:=[gtk]
-   >=x11-libs/gdk-pixbuf-2.36.5:2
-   >=gnome-base/gnome-desktop-2.91.2:3=
-   dev-libs/icu:=
-   >=app-text/iso-codes-0.35
-   >=dev-libs/json-glib-1.2.4
-   >=x11-libs/libnotify-0.5.1
-   >=app-crypt/libsecret-0.14
-   >=net-libs/libsoup-2.48:2.4
-   >=dev-libs/libxml2-2.6.12:2
-   >=dev-libs/libxslt-1.1.7
-   dev-db/sqlite:3
-   dev-libs/gmp:0=
-   >=gnome-base/gsettings-desktop-schemas-0.0.1
-"
-RDEPEND="${COMMON_DEPEND}
-   x11-themes/adwaita-icon-theme
-"
-# paxctl needed for bug #407085
-# appstream-glib needed for appdata.xml gettext translation
-DEPEND="${COMMON_DEPEND}
-   app-text/yelp-tools
-   dev-libs/appstream-glib
-   dev-util/gdbus-codegen
-   sys-apps/paxctl
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   # https://bugzilla.gnome.org/show_bug.cgi?id=751591
-   # ephy-file-helpers tests are currently disabled due to 
https://gitlab.gnome.org/GNOME/epiphany/issues/419
-   # So this patch is currently without effect. Retest with 
PORTAGE_TMPDIR=/var/tmp once re-enabled upstream.
-   #"${FILESDIR}"/${PN}-3.16.0-unittest-1.patch
-)
-
-src_configure() {
-   local emesonargs=(
-   -Ddeveloper_mode=false
-   -Ddistributor_name=Gentoo
-   -Dhttps_everywhere=false # removed in 3.28
-   $(meson_use test unit_tests)
-   )
-   meson_src_configure
-}
-
-src_test() {
-   virtx meson_src_test
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_icon_cache_update
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_icon_cache_update
-   gnome2_schemas_update
-}



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

2019-01-14 Thread Mart Raudsepp
commit: 4c4552ad0796e45f655cec8056d23774d5ef560e
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:49:37 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:51:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4552ad

net-libs/gupnp-igd: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/gupnp-igd/Manifest|   1 -
 .../gupnp-igd-0.1.11-disable_static_modules.patch  |  10 --
 net-libs/gupnp-igd/gupnp-igd-0.2.4.ebuild  | 109 -
 3 files changed, 120 deletions(-)

diff --git a/net-libs/gupnp-igd/Manifest b/net-libs/gupnp-igd/Manifest
index 119e1afa2ea..1b60b6e11b0 100644
--- a/net-libs/gupnp-igd/Manifest
+++ b/net-libs/gupnp-igd/Manifest
@@ -1,2 +1 @@
-DIST gupnp-igd-0.2.4.tar.xz 272004 BLAKE2B 
d195187faab17fcb5510afec0d024071936c5d61ac9ce4b4fd266cbc1ac238876935b588d91d7e55d3280ded4a0b39560a3b3bdbfec9cbccc3ab883ab1f75e1c
 SHA512 
4da8d401935c4237661310aec0acb38e9c9fe54aeb6b2ef1c9533a8576dbd2d9f9db3b50c4e86b7efc81c80059a10ea52f73517dab23f3cdc0f91a5c0944dab8
 DIST gupnp-igd-0.2.5.tar.xz 287964 BLAKE2B 
2267b991a0137006f122b3454bfb1bd9df0fd7fae2c47b50a394a2859f6e04375b55447830f6606c8a25260b9cafb75329cbdcd201c220a66fe881dce368abfe
 SHA512 
3d2af29d10c2939a81c8745a50d9cc20be53f97a2112cec6e45bf05373d807d86404b61c776fea34b15ac341f9b7bfff2f3c48901dd241e64e18b5bc7e614cc8

diff --git 
a/net-libs/gupnp-igd/files/gupnp-igd-0.1.11-disable_static_modules.patch 
b/net-libs/gupnp-igd/files/gupnp-igd-0.1.11-disable_static_modules.patch
deleted file mode 100644
index ccd4b8da2fe..000
--- a/net-libs/gupnp-igd/files/gupnp-igd-0.1.11-disable_static_modules.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 a/python/Makefile.am
-+++ b/python/Makefile.am
-@@ -27,7 +28,7 @@
- 
- igd_la_LDFLAGS =  \
--  -module -avoid-version
-+  -module -avoid-version -shared
- 
- pygupnp-igd.c: $(srcdir)/pygupnp-igd.override $(srcdir)/pygupnp-igd.defs
-   $(PYCODEGEN)\

diff --git a/net-libs/gupnp-igd/gupnp-igd-0.2.4.ebuild 
b/net-libs/gupnp-igd/gupnp-igd-0.2.4.ebuild
deleted file mode 100644
index 2b84b9c579f..000
--- a/net-libs/gupnp-igd/gupnp-igd-0.2.4.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-AUTOTOOLS_AUTORECONF=true
-
-inherit eutils gnome.org python-r1 multilib-minimal xdg-utils
-
-DESCRIPTION="Library to handle UPnP IGD port mapping for GUPnP"
-HOMEPAGE="http://gupnp.org;
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86"
-IUSE="+introspection python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
-   >=net-libs/gssdp-0.14.7[${MULTILIB_USEDEP}]
-   >=net-libs/gupnp-0.20.10[${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-0.10 )
-   python? (
-   ${PYTHON_DEPS}
-   >=dev-libs/gobject-introspection-0.10
-   >=dev-python/pygobject-2.16:2[${PYTHON_USEDEP}]
-   )"
-DEPEND="${RDEPEND}
-   dev-util/glib-utils
-   dev-util/gtk-doc-am
-   sys-devel/gettext
-   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
-"
-
-# The only existing test is broken
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-0.1.11-disable_static_modules.patch
-)
-
-multilib_src_configure() {
-   xdg_environment_reset
-
-   local myconf=(
-   --disable-static
-   --disable-gtk-doc
-   $(multilib_native_use_enable introspection)
-   # python is built separately
-   --disable-python
-   )
-
-   ECONF_SOURCE=${S} \
-   econf "${myconf[@]}"
-
-   if multilib_is_native_abi; then
-   ln -s "${S}"/doc/html doc/html || die
-
-   python_configure() {
-   mkdir -p "${BUILD_DIR}" || die
-   cd "${BUILD_DIR}" || die
-
-   ECONF_SOURCE=${S} \
-   econf "${myconf[@]}" \
-   --enable-python
-   }
-
-   use python && python_foreach_impl python_configure
-   fi
-}
-
-multilib_src_compile() {
-   default
-
-   if multilib_is_native_abi && use python; then
-   local native_builddir=${BUILD_DIR}
-
-   python_compile() {
-   emake -C "${BUILD_DIR}"/python \
-   VPATH="${S}/python:${native_builddir}/python" \
-   igd_la_LIBADD="\$(PYGUPNP_IGD_LIBS) 
${native_builddir}/libgupnp-igd/libgupnp-igd-1.0.la"
-   }
-
-   python_foreach_impl python_compile
-   fi
-}
-
-multilib_src_install() {
-  

[gentoo-commits] repo/gentoo:master commit in: x11-libs/gdk-pixbuf/files/, x11-libs/gdk-pixbuf/

2019-01-14 Thread Mart Raudsepp
commit: a92cdbc6d2dfbbf011658e49c888153ccbcdbdf5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:50:19 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:51:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a92cdbc6

x11-libs/gdk-pixbuf: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-libs/gdk-pixbuf/Manifest   |   1 -
 .../files/2.36.11-fix-libtiff-disable.patch|  26 -
 x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild  | 127 -
 3 files changed, 154 deletions(-)

diff --git a/x11-libs/gdk-pixbuf/Manifest b/x11-libs/gdk-pixbuf/Manifest
index 8c610bda12c..3e4ce22587e 100644
--- a/x11-libs/gdk-pixbuf/Manifest
+++ b/x11-libs/gdk-pixbuf/Manifest
@@ -1,3 +1,2 @@
-DIST gdk-pixbuf-2.36.11.tar.xz 5675908 BLAKE2B 
1b111c2866b06ff5da5d5e043481956d6ffbc69fa66236d91b29a6e923c01b91054eb491d2ba15a2e5d2d694f143eb0cc472bbed9bfce0bc015d6602449920fa
 SHA512 
231e13ef2339fc6953788e8597a0c455143273338793ed835dac6ccf42e26e0292dec4121a4976b859ba8ffaa81b3ca5b250b54bd4897dbd3146a1874a59d4e3
 DIST gdk-pixbuf-2.36.12-bug753605-atsize.jpg 80850 BLAKE2B 
17e414ca097b7aaf513241eacae97c5bc582f7ebd8870e8b67ce4af4e57134b8b4ae0ed579eb4cf0f57db2891e95a673d2129a1bafefe5ab8e2a8dd5f66da271
 SHA512 
d27197d2395446cd3c970841381958f7eb1b8df78913f7da70bec5f09af6edfc5dd74cd809c37ec8cf69f0eba504e0cc6354f1ec6ce3ec2192ad316cb64b69c9
 DIST gdk-pixbuf-2.36.12.tar.xz 5675768 BLAKE2B 
da9e18b5dc55ad13a1bdab76d9c63a6233da1b45235ae5eb620e6e3f83888a0cc846f1ba17f72cb3b5af1ccd59a69631b3403bf09e262c53e0149e6f26896a33
 SHA512 
5d3bd620cf464bf92079b15c78f8400db48c427053c6eeedc4ea9652a4c290a09a26310100cc7eb487daf4b565df9f7e3a6edf14685f81ddbff6a0652fb6b41b

diff --git a/x11-libs/gdk-pixbuf/files/2.36.11-fix-libtiff-disable.patch 
b/x11-libs/gdk-pixbuf/files/2.36.11-fix-libtiff-disable.patch
deleted file mode 100644
index 23caca99a59..000
--- a/x11-libs/gdk-pixbuf/files/2.36.11-fix-libtiff-disable.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 5c4edf2cc22468a8410c19cb8b236b227fca300a Mon Sep 17 00:00:00 2001
-From: Alexander Kanavin 
-Date: Tue, 10 Oct 2017 14:33:18 +0300
-Subject: [PATCH] build: Fix --without-libtiff not having an effect
-
-https://bugzilla.gnome.org/show_bug.cgi?id=788770

- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index b45f407b5..9f5d6fbee 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -676,7 +676,7 @@ if test x$gio_can_sniff = x; then
-   AC_DEFINE(GDK_PIXBUF_USE_GIO_MIME, 1, [Define if gio can sniff image data])
- fi
- 
--AM_CONDITIONAL(HAVE_TIFF, test "x$libtiff_found" != x)
-+AM_CONDITIONAL(HAVE_TIFF, test "x$libtiff_found" != xno)
- AM_CONDITIONAL(HAVE_PNG, test "x$LIBPNG" != x)
- AM_CONDITIONAL(HAVE_JPEG, test "x$LIBJPEG" != x)
- AM_CONDITIONAL(HAVE_JASPER, test "x$LIBJASPER" != x)
--- 
-2.15.0
-

diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild 
b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild
deleted file mode 100644
index 5cf84878340..000
--- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.36.11.ebuild
+++ /dev/null
@@ -1,127 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-GNOME2_EAUTORECONF="yes"
-
-inherit flag-o-matic gnome2 multilib multilib-minimal
-
-DESCRIPTION="Image loading library for GTK+"
-HOMEPAGE="https://git.gnome.org/browse/gdk-pixbuf;
-
-LICENSE="LGPL-2+"
-SLOT="2"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="X debug +introspection jpeg jpeg2k tiff test"
-
-COMMON_DEPEND="
-   >=dev-libs/glib-2.48.0:2[${MULTILIB_USEDEP}]
-   >=media-libs/libpng-1.4:0=[${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-0.9.3:= )
-   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
-   jpeg2k? ( media-libs/jasper:=[${MULTILIB_USEDEP}] )
-   tiff? ( >=media-libs/tiff-3.9.2:0=[${MULTILIB_USEDEP}] )
-   X? ( x11-libs/libX11[${MULTILIB_USEDEP}] )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-util/glib-utils
-   >=dev-util/gtk-doc-am-1.20
-   >=sys-devel/gettext-0.19
-   virtual/pkgconfig
-"
-# librsvg blocker is for the new pixbuf loader API, you lose icons otherwise
-RDEPEND="${COMMON_DEPEND}
-   !https://bugzilla.gnome.org/show_bug.cgi?id=756590
-   "${FILESDIR}"/${PN}-2.32.3-fix-lowmem-uclibc.patch
-   # Fix --without-libtiff having no effect (from master)
-   # https://bugzilla.gnome.org/show_bug.cgi?id=788770
-   "${FILESDIR}"/${PV}-fix-libtiff-disable.patch
-)
-
-src_prepare() {
-   # This will avoid polluting the pkg-config file with versioned libpng,
-   # which is causing problems with libpng14 -> 

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgsf/

2019-01-14 Thread Mart Raudsepp
commit: 6343d8e50aa9a1a4e7f9ac83fec3d3405887ad64
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:47:21 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:51:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6343d8e5

gnome-extra/libgsf: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 gnome-extra/libgsf/Manifest |  1 -
 gnome-extra/libgsf/libgsf-1.14.41-r1.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/gnome-extra/libgsf/Manifest b/gnome-extra/libgsf/Manifest
index 474262a522c..e097abb676c 100644
--- a/gnome-extra/libgsf/Manifest
+++ b/gnome-extra/libgsf/Manifest
@@ -1,2 +1 @@
-DIST libgsf-1.14.41.tar.xz 616944 BLAKE2B 
300da197dcbd5568758da21ea25b25636fcd7b16483a5b526e1c9e0242145208580f6edd41ac1028b7b51fe159eab506a32947ef81beb47883cf133bf2ea9cb7
 SHA512 
e3892500288e5d1d9e46cdd3940d872ae2504fe54babe2dc085218c3e1a5aff5a7220c88bde730239af4a56c340a22f47337280b8892f0ab31e1e751adea9bc3
 DIST libgsf-1.14.43.tar.xz 618272 BLAKE2B 
a381125ce75d06ae4bf1c9dbe9b2e207534ff7c3310e40984e482bc5120eae45a7e3ed4cfd878890037f31ee540c700dea3120119b9a533fa79cab317a0c83a8
 SHA512 
bb487de9358c057fc73f3414c9515726315be9b6d78456253daaca1cbd58281de8766e0b72914532d63fab04d3ae2cf90f711f436c7b4f70620d77e8a7802ac9

diff --git a/gnome-extra/libgsf/libgsf-1.14.41-r1.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.41-r1.ebuild
deleted file mode 100644
index 24145aa1ebb..000
--- a/gnome-extra/libgsf/libgsf-1.14.41-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="The GNOME Structured File Library"
-HOMEPAGE="https://developer.gnome.org/gsf/;
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0/114" # libgsf-1.so version
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="bzip2 gtk +introspection"
-
-RDEPEND="
-   >=dev-libs/glib-2.26:2
-   >=dev-libs/libxml2-2.4.16:2
-   sys-libs/zlib
-   bzip2? ( app-arch/bzip2 )
-   gtk? (
-   x11-libs/gdk-pixbuf:2
-   virtual/imagemagick-tools
-   )
-   introspection? ( >=dev-libs/gobject-introspection-1:= )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.12
-   >=dev-util/intltool-0.35.0
-   dev-libs/gobject-introspection-common
-   virtual/pkgconfig
-"
-
-src_configure() {
-   gnome2_src_configure \
-   --disable-static \
-   $(use_with bzip2 bz2) \
-   $(use_enable introspection) \
-   $(use_with gtk gdk-pixbuf)
-}



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

2019-01-14 Thread Mart Raudsepp
commit: 7a2e92b76a01c928a6d85675704111bc355d4bb4
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:44:38 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:51:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a2e92b7

dev-libs/libdazzle: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/libdazzle/Manifest|  1 -
 dev-libs/libdazzle/libdazzle-3.28.5.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/dev-libs/libdazzle/Manifest b/dev-libs/libdazzle/Manifest
index 9f492bb20b3..9414304dbc5 100644
--- a/dev-libs/libdazzle/Manifest
+++ b/dev-libs/libdazzle/Manifest
@@ -1,2 +1 @@
-DIST libdazzle-3.28.5.tar.xz 422792 BLAKE2B 
65b994798c2f9c7ec0d5ec5b3506896ba3fe09e8e563f1c03246684837a876d0918763f8589deccfc1477071434acda56973097904c3ad5469aa4374a56d1914
 SHA512 
e4616994226a7e755913343487a2850030dc13816c94dd0de166bb617a001097f6b849fa45ee546e75a15ad3357bd5a61a0caf436c4e3656eaa3480ed4b7f903
 DIST libdazzle-3.30.2.tar.xz 432192 BLAKE2B 
4c31b74b0a5c972b5c86bbacf50862a0c2db5c9ed1e67124671e2ece75d72de4c3605c6ecc81bde10cf2566ae06cbd7f14fccaff5d154c1bd9e53a9f8b2dc2eb
 SHA512 
591c3bb9dd65ae02e6234a1599497dce78d843ee6ca47e8d50656b9f98bab91c7b89424c23eb387184bdb28132e1fbe11ee7c01d4a7f0598bcef92739aa8bff6

diff --git a/dev-libs/libdazzle/libdazzle-3.28.5.ebuild 
b/dev-libs/libdazzle/libdazzle-3.28.5.ebuild
deleted file mode 100644
index bd629ecc4e4..000
--- a/dev-libs/libdazzle/libdazzle-3.28.5.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome.org meson xdg vala virtualx
-
-DESCRIPTION="Experimental new features for GTK+ and GLib"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/libdazzle;
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
-
-IUSE="gtk-doc +introspection test vala"
-REQUIRED_USE="vala? ( introspection )"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-libs/glib-2.56.0:2
-   x11-libs/gtk+:3[introspection?]
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-# libxml2 required for glib-compile-resources; glib-utils for glib-mkenums
-DEPEND="${RDEPEND}
-   vala? ( $(vala_depend) )
-   dev-libs/libxml2:2
-   dev-util/glib-utils
-   virtual/pkgconfig
-   gtk-doc? ( dev-util/gtk-doc )
-"
-
-src_prepare() {
-   use vala && vala_src_prepare
-   xdg_src_prepare
-}
-
-src_configure() {
-   local emesonargs=(
-   -Denable_tracing=false # extra trace debugging that would make 
things slower
-   -Denable_profiling=false # -pg passing
-   # -Denable_rdtscp=false # TODO: CPU_FLAGS_X86 for it?
-   -Denable_tools=true # /usr/bin/dazzle-list-counters
-   $(meson_use introspection with_introspection)
-   $(meson_use vala with_vapi)
-   $(meson_use gtk-doc enable_gtk_doc)
-   $(meson_use test enable_tests)
-   )
-   meson_src_configure
-}
-
-src_test() {
-   virtx meson_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/gtk-update-icon-cache/

2019-01-14 Thread Mart Raudsepp
commit: 4106ee1dd28ce6ea9480e5e888320697059245bd
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:37:05 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:50:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4106ee1d

dev-util/gtk-update-icon-cache: bump to 3.24.3

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-util/gtk-update-icon-cache/Manifest|  1 +
 .../gtk-update-icon-cache-3.24.3.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-util/gtk-update-icon-cache/Manifest 
b/dev-util/gtk-update-icon-cache/Manifest
index 028edfb7679..404c7f3d7a6 100644
--- a/dev-util/gtk-update-icon-cache/Manifest
+++ b/dev-util/gtk-update-icon-cache/Manifest
@@ -1,2 +1,3 @@
 DIST gtk-update-icon-cache-3.22.19.tar.xz 367224 BLAKE2B 
be3fb3785776052eed0f102e9665628aec1bec93953de1cdb795af8db458cedd07fa717abee4dc9e6d8c4c8f45209371ac130fa29e8a77622290524b771b5c89
 SHA512 
3ca12d38781a716c1b3f8584089e2c038aa18584c5e1b4c41098173f73f839cabdbb0e8b25b1c69a8b9b9f016b9c3c8594c4b26c2463cea278754f13afb7c795
 DIST gtk-update-icon-cache-3.24.0.tar.xz 372708 BLAKE2B 
2a6bffd4453c2201bbb78e4ba581f6bd6453f650ca32de7e8002cb88f5872c868ef25973587c96b58b28d2b74fbbac192dd608e72cd5bbbc0823486a9c55c46c
 SHA512 
9dada697ace2ea5f3b5ab64c6063c1a9a792f9b9aa23d4c3888e3a487fda9b1c99a5d0793bb0f9e182dc66a1a5c7ff944f8b9f2ca2f4de7ecc24c048d7a55339
+DIST gtk-update-icon-cache-3.24.3.tar.xz 372612 BLAKE2B 
6087334fdca3aa7f93b1b6c5a7195ede2376ec80d2618809f924f9b612de46a8d3e95f0a90030deb939f27949458f9ec72b11600c2bf8b1ae6089284324f2c9d
 SHA512 
0e47977567314abc64419440cc0f276525286fb65acbfe7fff21d6cf548fbc072865f8a2ed18e3114508a7e8fa696453c26e1ad53e638ee11dab57b4a6cf75a5

diff --git a/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.3.ebuild 
b/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.3.ebuild
new file mode 100644
index 000..e315db3b953
--- /dev/null
+++ b/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.3.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2
+
+DESCRIPTION="GTK update icon cache"
+HOMEPAGE="https://www.gtk.org/ https://github.com/EvaSDK/gtk-update-icon-cache;
+SRC_URI="https://dev.gentoo.org/~leio/distfiles/${PN}/${P}.tar.xz;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+IUSE=""
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# man page was previously installed by gtk+:3 ebuild
+RDEPEND="
+   >=dev-libs/glib-2.53.4:2
+   >=x11-libs/gdk-pixbuf-2.30:2
+   !

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

2019-01-14 Thread Mart Raudsepp
commit: f4f494096c5392ca700f07321633a836a02e50ac
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:46:32 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:51:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4f49409

app-arch/gcab: remove old

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 app-arch/gcab/Manifest|  1 -
 app-arch/gcab/gcab-0.7.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/app-arch/gcab/Manifest b/app-arch/gcab/Manifest
index e9c0ce1d6bb..9959cfa87c8 100644
--- a/app-arch/gcab/Manifest
+++ b/app-arch/gcab/Manifest
@@ -1,2 +1 @@
-DIST gcab-0.7.tar.xz 332248 BLAKE2B 
ef9c03b86c0e73b94286ff30dcc41c031a91dad0b124b601adda3ccaf5ae5924c4ea4408dcc52960b641e799e1c31e8ae882a205a3707c7a5dfa796036a00dbf
 SHA512 
db8c0b4ee2bc75b8bb540b4fe0e9304782b9848b3ab0ba3077638d13cdec652f6178206ec6474af036fba90e952ef0052dd9d19be9eb72bae97d98f8f18a0c02
 DIST gcab-0.8.tar.xz 337016 BLAKE2B 
6f9ccf6d33c4bd32b6cda09083c98ee9b24ffc3b42be9019493a864011a4d3f1e2d1fa766bbdd0a5de29eb04608d91a2ad5c17aa25302e3d94d2ef6ca659d764
 SHA512 
044b1cbe71b08946031161ca97379df8500be5569d6f4989b8fd8f1d8c48ba0fe757306955de9137958eb870cd4024e4c56f833ce847e5a972339883b39454f2

diff --git a/app-arch/gcab/gcab-0.7.ebuild b/app-arch/gcab/gcab-0.7.ebuild
deleted file mode 100644
index a14c0902d34..000
--- a/app-arch/gcab/gcab-0.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-GCONF_DEBUG="no"
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome2 vala
-
-DESCRIPTION="Library and tool for working with Microsoft Cabinet (CAB) files"
-HOMEPAGE="https://wiki.gnome.org/msitools;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ppc ppc64 sparc x86"
-
-IUSE="+introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.22:2
-   sys-libs/zlib
-   introspection? ( >=dev-libs/gobject-introspection-0.9.4:= )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.40
-   sys-devel/gettext
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-src_prepare() {
-   gnome2_src_prepare
-   use vala && vala_src_prepare
-}
-
-src_configure() {
-   local myconf
-   use vala || myconf="VAPIGEN=no"
-   gnome2_src_configure \
-   --disable-static \
-   $(use_enable introspection) \
-   ${myconf}
-}



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

2019-01-14 Thread Mart Raudsepp
commit: 24932e909957a76f1df73e97b157ab61a79cf274
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Mon Jan 14 19:41:56 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Mon Jan 14 19:50:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24932e90

net-libs/webkit-gtk: security cleanup

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 net-libs/webkit-gtk/Manifest |   2 -
 net-libs/webkit-gtk/webkit-gtk-2.22.2.ebuild | 274 --
 net-libs/webkit-gtk/webkit-gtk-2.22.4.ebuild | 279 ---
 3 files changed, 555 deletions(-)

diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest
index 682450d5c3d..0d1f8e478e9 100644
--- a/net-libs/webkit-gtk/Manifest
+++ b/net-libs/webkit-gtk/Manifest
@@ -1,3 +1 @@
-DIST webkitgtk-2.22.2.tar.xz 16769120 BLAKE2B 
19b226e657a324ab0efcfdcda3b22bc21a3b1cae29325f89ebd555dfb45d02d23f495ebf3817cb4c5e662c813b8d75754e0051d84afb84ea1347bf25a321e5d0
 SHA512 
0bb885726872f128a0e0d71cbc75ba076e5c0c928c40e71e030c87444a7068568c568587514407d6549c27d0bfe121dc33f96f0c516d2ae1c6801e005ad52756
-DIST webkitgtk-2.22.4.tar.xz 16752132 BLAKE2B 
a60f1c6168ba1ef19c931030017a58a640f0ff4a8d5bf97b278fff50f86374d5e10e06d95837e90c5a653a4c226095321ae86fdd64e61d846821979343b7350b
 SHA512 
a46107f7da8513b06bd1e5685c03ca7f1a48af66b817908b8e61f1b343d98e122af73ccdeb47657cf4378fe33107fdc119a9a51d87db07ad5316ab39ed0db55f
 DIST webkitgtk-2.22.5.tar.xz 16774560 BLAKE2B 
fb022febf72727d59a1ca9490c8de48ade5a07ff3688b6962481608b9e0d27319282c842eb214783021745c1beb893b8842036c62542874e011f2ab60d275f17
 SHA512 
fcea9fab3d71869cc10e322b1b63864a9594624f6aa3e29efd8b47e5ca639145f8c2cdb299ecb51eadf3ac1238dac06b4b7ebe94969b2f61a21cea8b609007bc

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.22.2.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.22.2.ebuild
deleted file mode 100644
index 4b4d6c0314c..000
--- a/net-libs/webkit-gtk/webkit-gtk-2.22.2.ebuild
+++ /dev/null
@@ -1,274 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-CMAKE_MAKEFILE_GENERATOR="ninja"
-PYTHON_COMPAT=( python2_7 )
-USE_RUBY="ruby23 ruby24 ruby25"
-
-inherit check-reqs cmake-utils flag-o-matic gnome2 pax-utils python-any-r1 
ruby-single toolchain-funcs virtualx
-
-MY_P="webkitgtk-${PV}"
-DESCRIPTION="Open source web browser engine"
-HOMEPAGE="https://www.webkitgtk.org;
-SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
-
-LICENSE="LGPL-2+ BSD"
-SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd 
~amd64-linux ~x86-linux ~x86-macos"
-
-IUSE="aqua coverage doc +egl +geolocation gles2 gnome-keyring +gstreamer 
+introspection +jit libnotify nsplugin +opengl spell wayland +webgl +X"
-
-# webgl needs gstreamer, bug #560612
-REQUIRED_USE="
-   geolocation? ( introspection )
-   gles2? ( egl !opengl )
-   introspection? ( gstreamer )
-   nsplugin? ( X )
-   webgl? ( gstreamer
-   || ( gles2 opengl ) )
-   wayland? ( egl )
-   || ( aqua wayland X )
-"
-
-# Tests fail to link for inexplicable reasons
-# https://bugs.webkit.org/show_bug.cgi?id=148210
-RESTRICT="test"
-
-# Aqua support in gtk3 is untested
-# Dependencies found at Source/cmake/OptionsGTK.cmake
-# Various compile-time optionals for gtk+-3.22.0 - ensure it
-# Missing OpenWebRTC checks and conditionals, but 
ENABLE_MEDIA_STREAM/ENABLE_WEB_RTC is experimental upstream (PRIVATE OFF)
-# TODO: Raise gst-plugins-opus dep to 1.14.4-r1 once we can, and eventually 
drop the blocker from epiphany; or remove the dep when older than 
-opus-1.14.4-r1 is not available anymore
-RDEPEND="
-   >=x11-libs/cairo-1.10.2:=[X?]
-   >=media-libs/fontconfig-2.8.0:1.0
-   >=media-libs/freetype-2.4.2:2
-   >=dev-libs/libgcrypt-1.6.0:0=
-   >=x11-libs/gtk+-3.22:3[aqua?,introspection?,wayland?,X?]
-   >=media-libs/harfbuzz-1.3.3:=[icu(+)]
-   >=dev-libs/icu-3.8.1-r1:=
-   virtual/jpeg:0=
-   >=net-libs/libsoup-2.48:2.4[introspection?]
-   >=dev-libs/libxml2-2.8.0:2
-   >=media-libs/libpng-1.4:0=
-   dev-db/sqlite:3=
-   sys-libs/zlib:0
-   >=dev-libs/atk-2.8.0
-   media-libs/libwebp:=
-
-   >=dev-libs/glib-2.40:2
-   >=dev-libs/libxslt-1.1.7
-   media-libs/woff2
-   gnome-keyring? ( app-crypt/libsecret )
-   geolocation? ( >=app-misc/geoclue-2.1.5:2.0 )
-   introspection? ( >=dev-libs/gobject-introspection-1.32.0:= )
-   dev-libs/libtasn1:=
-   >=dev-libs/libgcrypt-1.7.0:0=
-   nsplugin? ( >=x11-libs/gtk+-2.24.10:2 )
-   spell? ( >=app-text/enchant-0.22:= )
-   gstreamer? (
-   >=media-libs/gstreamer-1.8.3:1.0
-   >=media-libs/gst-plugins-base-1.8.3:1.0
-   >=media-plugins/gst-plugins-opus-1.8.3:1.0
-   

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

2019-01-14 Thread Alon Bar-Lev
commit: 9a28e54de3798ec4ce92508cc2c4c67b985f817f
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Mon Jan 14 19:17:22 2019 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Mon Jan 14 19:17:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a28e54d

net-libs/gnutls: fix build failure

Closes: https://bugs.gentoo.org/show_bug.cgi?id=675424
Thanks: Toralf Förster
Signed-off-by: Alon Bar-Lev  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 net-libs/gnutls/files/gnutls-3.6.5-build.patch | 31 ++
 net-libs/gnutls/gnutls-3.6.5.ebuild|  4 
 2 files changed, 35 insertions(+)

diff --git a/net-libs/gnutls/files/gnutls-3.6.5-build.patch 
b/net-libs/gnutls/files/gnutls-3.6.5-build.patch
new file mode 100644
index 000..00c11da4ae7
--- /dev/null
+++ b/net-libs/gnutls/files/gnutls-3.6.5-build.patch
@@ -0,0 +1,31 @@
+From b7fdb4125e4eebc5af2155b6d36cf17339a3abf5 Mon Sep 17 00:00:00 2001
+From: Dmitry Eremin-Solenikov 
+Date: Tue, 25 Dec 2018 14:44:11 +0300
+Subject: [PATCH] tests: cipher-openssl-compat: don't call
+ EVP_CIPHER_CTX_init()
+
+There is no need to call EVP_CIPHER_CTX_init() after
+EVP_CIPHER_CTX_new().
+
+Fixes #658
+
+Signed-off-by: Dmitry Eremin-Solenikov 
+---
+ tests/slow/cipher-openssl-compat.c | 1 -
+ 1 file changed, 1 deletion(-)
+
+diff --git a/tests/slow/cipher-openssl-compat.c 
b/tests/slow/cipher-openssl-compat.c
+index a4cb3522d..64adf25a4 100644
+--- a/tests/slow/cipher-openssl-compat.c
 b/tests/slow/cipher-openssl-compat.c
+@@ -106,7 +106,6 @@ static int cipher_test(const char *ocipher, 
gnutls_cipher_algorithm_t gcipher,
+ #if OPENSSL_VERSION_NUMBER >= 0x1010L
+   if (gcipher == GNUTLS_CIPHER_AES_128_CCM
+   || gcipher == GNUTLS_CIPHER_AES_256_CCM) {
+-  assert(EVP_CIPHER_CTX_init(ctx)==1);
+   assert(EVP_CipherInit_ex(ctx, evp_cipher, 0, 0, 0, 0) >
+  0);
+ 
+-- 
+2.19.2
+

diff --git a/net-libs/gnutls/gnutls-3.6.5.ebuild 
b/net-libs/gnutls/gnutls-3.6.5.ebuild
index 0e4f46b96b2..883584c16a7 100644
--- a/net-libs/gnutls/gnutls-3.6.5.ebuild
+++ b/net-libs/gnutls/gnutls-3.6.5.ebuild
@@ -53,6 +53,10 @@ DOCS=(
 
 HTML_DOCS=()
 
+PATCHES=(
+   "${FILESDIR}/${P}-build.patch"
+)
+
 pkg_setup() {
# bug#520818
export TZ=UTC



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

2019-01-14 Thread Patrick McLean
commit: 15a05df756dfe779224fc9e61981d52b386892bb
Author: Patrick McLean  sony  com>
AuthorDate: Mon Jan 14 18:57:44 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Jan 14 18:57:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a05df7

sys-kernel/vanilla-sources: Version bump to 4.4.170

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.4.169.ebuild => vanilla-sources-4.4.170.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index ce5d526cfef..bdd7f2203aa 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -8,5 +8,5 @@ DIST patch-3.16.62.xz 2280016 BLAKE2B 
5ec85d7e7e345cb21ed48c860dd263067f58ee29fb
 DIST patch-4.14.93.xz 2156464 BLAKE2B 
82fc6ed98c8526fbf92106e2ba867280c90d0769676b2a3bf780b5c953908a2c94ba89dce0482c58df15aca7a0e6a969b3fc7c45f083ad38d6171167abad5ebe
 SHA512 
966f75a094ddedd261d80c2b4488ad4cdfe9b3bc40f1cc11ad975b096ac822fd2c262c9b8a2423f9c2d38b9783aab85181e141c03b189addbb88265a6f2c7a46
 DIST patch-4.19.15.xz 497188 BLAKE2B 
9ba21b4e84be1f9e492a5e69f2c948a50c71da8654e18a78d55e4cabfd2ada4901bdaf4ad17ea3491681e8fa606390e24cef6298bf91b75d10094a38e2ef978b
 SHA512 
f2f649d8d3951ea742d419037d1d712c853a6f2b1531bf00b88028ca36909838f93a6424d397461acc120ccbce993d41975ede7733f8d6640e209eb07655cc9f
 DIST patch-4.20.2.xz 77196 BLAKE2B 
27e00c59e29c35f5e01f82750bc808be3f620ec135fa7b3dc44fdfc97ff7b46de8654f7873c37827f10a8dc78d0ab0f9c8de6af327c069986e15def3afb93f9c
 SHA512 
1df1e8e92005f6a665049eea16e5c14317cc345403fea55b4a28255782a7abbfce830464bac52e762ad39253a599db6afc6789077b70234200d245dafe97687d
-DIST patch-4.4.169.xz 2314936 BLAKE2B 
969dcc293069cbe9ca7c2d52a7e04fdc060ad4c69d6eead965ed347fc8a9a1a07036124128ba03d6e4e65fd43cb0300ca9f92519697dad66d37139ecb07783a8
 SHA512 
17651af8a2f87830e4019ec1d84bb1865ed5becaadf979f9c4c51d25ac5820341654c6120c8c54ab5fdd32ebfd52a90920f04474f4aa52d5ef85526c31c6f232
+DIST patch-4.4.170.xz 2327236 BLAKE2B 
08dc52572b8c318dc305e9229552039734c73a9d3685f6792d24060e732c51e3207cd8c9513e7365a4ce218d6610c8635aa46a59986ad23c153f59c0a5e6ab7c
 SHA512 
cc21ff36277daa1446d0837c40ca9fca1d8e6958cc28d41e940af94c79022ab6f8923d5fc0e068acbf56e989f58cbea7a8b7ba9b0bd5d5a6d0ce861b50b432b5
 DIST patch-4.9.150.xz 2507660 BLAKE2B 
e63d35b1e13c2df81a793dd514049d83d27d81fe883d0e427dab5e2ca4c5760060bdec258d509acfa4b7f37fdb5c26566aab9095f71eeca3fdb155eea81e7bea
 SHA512 
df49cb619dfa42204e3cfc66043e7e889d5bfba5b7e3069efe078fcdb7de3fb6b42f2efbbac57606327b153c00fe2ed12da8010a23fe1ab333ae7c67c6a9e8f0

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.169.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.170.ebuild
similarity index 91%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.169.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.170.ebuild
index 4d8a2803b8a..6f2f5701c4e 100644
--- a/sys-kernel/vanilla-sources/vanilla-sources-4.4.169.ebuild
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.4.170.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"



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

2019-01-14 Thread Patrick McLean
commit: c02b25794d13510327e9b33c6e2ea3a5352fb188
Author: Patrick McLean  sony  com>
AuthorDate: Mon Jan 14 18:55:50 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Jan 14 18:55:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02b2579

sys-kernel/vanilla-sources: Version bump to 4.14.93

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.14.92.ebuild => vanilla-sources-4.14.93.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index af3a2013037..2fe693861e3 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -5,7 +5,7 @@ DIST linux-4.20.tar.xz 104257836 BLAKE2B 
fb52cad2897da319299486fa8c3b9415cd0aee0
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST patch-3.16.62.xz 2280016 BLAKE2B 
5ec85d7e7e345cb21ed48c860dd263067f58ee29fb2ea11980b37c1973dc944b4ffda7bf7098b8c12573915f564a76db94b35a337d172525979cf87aa8cb2ae8
 SHA512 
c438d9b8df33484ede82634352dfce366b6b21dd589c21556582337ba16e73788e6219ba64b57160264cbde4da2508f54a716287c5520b89ba9be21c0de63bc3
-DIST patch-4.14.92.xz 2133380 BLAKE2B 
ccebe67228002414d5fea6ec1172344f4af528a593374a17676e4962f10324565aabc1adb31b8bb9151513583915145f12c27c3de31a85dc1a0286648edfed4e
 SHA512 
4fb0e654342516f3dbccdc73296b4e08ed3249dd18e6fd02d325a82471eac861bcdc98ab676b1dba1d57c0e1ee13d95486140fc6add5287e29c91d8ecfed23e2
+DIST patch-4.14.93.xz 2156464 BLAKE2B 
82fc6ed98c8526fbf92106e2ba867280c90d0769676b2a3bf780b5c953908a2c94ba89dce0482c58df15aca7a0e6a969b3fc7c45f083ad38d6171167abad5ebe
 SHA512 
966f75a094ddedd261d80c2b4488ad4cdfe9b3bc40f1cc11ad975b096ac822fd2c262c9b8a2423f9c2d38b9783aab85181e141c03b189addbb88265a6f2c7a46
 DIST patch-4.19.14.xz 459580 BLAKE2B 
38e299cfe6ae94d06d39a2fae37cdea3b5ad8abff2646055c88b4d479dcd1c952d9e75dd323af97c20b443967a223e63735afd4e7047af6d7e7f20685c728e52
 SHA512 
e94ae7235b689aac03cb8bf47f9ed004fd9ae97b6c9d65297c4ef8c2ef33372af148a1e3be49db47cd2911b1d5afcac8115952e607370ae85df4ddcd1caf15ca
 DIST patch-4.20.2.xz 77196 BLAKE2B 
27e00c59e29c35f5e01f82750bc808be3f620ec135fa7b3dc44fdfc97ff7b46de8654f7873c37827f10a8dc78d0ab0f9c8de6af327c069986e15def3afb93f9c
 SHA512 
1df1e8e92005f6a665049eea16e5c14317cc345403fea55b4a28255782a7abbfce830464bac52e762ad39253a599db6afc6789077b70234200d245dafe97687d
 DIST patch-4.4.169.xz 2314936 BLAKE2B 
969dcc293069cbe9ca7c2d52a7e04fdc060ad4c69d6eead965ed347fc8a9a1a07036124128ba03d6e4e65fd43cb0300ca9f92519697dad66d37139ecb07783a8
 SHA512 
17651af8a2f87830e4019ec1d84bb1865ed5becaadf979f9c4c51d25ac5820341654c6120c8c54ab5fdd32ebfd52a90920f04474f4aa52d5ef85526c31c6f232

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.14.92.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.14.93.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.14.92.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.14.93.ebuild



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

2019-01-14 Thread Patrick McLean
commit: c61479012b721e9d30d383d78cf67c24c4686617
Author: Patrick McLean  sony  com>
AuthorDate: Mon Jan 14 18:56:52 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Jan 14 18:56:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6147901

sys-kernel/vanilla-sources: Version bump to 4.9.150

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.9.149.ebuild => vanilla-sources-4.9.150.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index ca4cef8189a..ce5d526cfef 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -9,4 +9,4 @@ DIST patch-4.14.93.xz 2156464 BLAKE2B 
82fc6ed98c8526fbf92106e2ba867280c90d076967
 DIST patch-4.19.15.xz 497188 BLAKE2B 
9ba21b4e84be1f9e492a5e69f2c948a50c71da8654e18a78d55e4cabfd2ada4901bdaf4ad17ea3491681e8fa606390e24cef6298bf91b75d10094a38e2ef978b
 SHA512 
f2f649d8d3951ea742d419037d1d712c853a6f2b1531bf00b88028ca36909838f93a6424d397461acc120ccbce993d41975ede7733f8d6640e209eb07655cc9f
 DIST patch-4.20.2.xz 77196 BLAKE2B 
27e00c59e29c35f5e01f82750bc808be3f620ec135fa7b3dc44fdfc97ff7b46de8654f7873c37827f10a8dc78d0ab0f9c8de6af327c069986e15def3afb93f9c
 SHA512 
1df1e8e92005f6a665049eea16e5c14317cc345403fea55b4a28255782a7abbfce830464bac52e762ad39253a599db6afc6789077b70234200d245dafe97687d
 DIST patch-4.4.169.xz 2314936 BLAKE2B 
969dcc293069cbe9ca7c2d52a7e04fdc060ad4c69d6eead965ed347fc8a9a1a07036124128ba03d6e4e65fd43cb0300ca9f92519697dad66d37139ecb07783a8
 SHA512 
17651af8a2f87830e4019ec1d84bb1865ed5becaadf979f9c4c51d25ac5820341654c6120c8c54ab5fdd32ebfd52a90920f04474f4aa52d5ef85526c31c6f232
-DIST patch-4.9.149.xz 2495792 BLAKE2B 
cc015b4417408451e8a8859f8361a98cc8b7778a9776ca8740bf23b64de22bf8f54242b1527e50d5bfe5f73306e4b476180b2d57253fb3f0b4616dec4cc0e83f
 SHA512 
e70a6b32f5106f6ef9ddc38754dc8ead72d1b32dc0cf84e2556f248099c91d1098c4d475c3a6a0fed7d2ad83363468b6deda8cbdee8d18c9607694e4aca00b10
+DIST patch-4.9.150.xz 2507660 BLAKE2B 
e63d35b1e13c2df81a793dd514049d83d27d81fe883d0e427dab5e2ca4c5760060bdec258d509acfa4b7f37fdb5c26566aab9095f71eeca3fdb155eea81e7bea
 SHA512 
df49cb619dfa42204e3cfc66043e7e889d5bfba5b7e3069efe078fcdb7de3fb6b42f2efbbac57606327b153c00fe2ed12da8010a23fe1ab333ae7c67c6a9e8f0

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.9.149.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.9.150.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.9.149.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.9.150.ebuild



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

2019-01-14 Thread Patrick McLean
commit: ee548842dd6a4f96c6801c0339016a6b5ec3621e
Author: Patrick McLean  sony  com>
AuthorDate: Mon Jan 14 18:56:20 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Jan 14 18:56:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee548842

sys-kernel/vanilla-sources: Version bump to 4.19.15

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.19.14.ebuild => vanilla-sources-4.19.15.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 2fe693861e3..ca4cef8189a 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -6,7 +6,7 @@ DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 DIST patch-3.16.62.xz 2280016 BLAKE2B 
5ec85d7e7e345cb21ed48c860dd263067f58ee29fb2ea11980b37c1973dc944b4ffda7bf7098b8c12573915f564a76db94b35a337d172525979cf87aa8cb2ae8
 SHA512 
c438d9b8df33484ede82634352dfce366b6b21dd589c21556582337ba16e73788e6219ba64b57160264cbde4da2508f54a716287c5520b89ba9be21c0de63bc3
 DIST patch-4.14.93.xz 2156464 BLAKE2B 
82fc6ed98c8526fbf92106e2ba867280c90d0769676b2a3bf780b5c953908a2c94ba89dce0482c58df15aca7a0e6a969b3fc7c45f083ad38d6171167abad5ebe
 SHA512 
966f75a094ddedd261d80c2b4488ad4cdfe9b3bc40f1cc11ad975b096ac822fd2c262c9b8a2423f9c2d38b9783aab85181e141c03b189addbb88265a6f2c7a46
-DIST patch-4.19.14.xz 459580 BLAKE2B 
38e299cfe6ae94d06d39a2fae37cdea3b5ad8abff2646055c88b4d479dcd1c952d9e75dd323af97c20b443967a223e63735afd4e7047af6d7e7f20685c728e52
 SHA512 
e94ae7235b689aac03cb8bf47f9ed004fd9ae97b6c9d65297c4ef8c2ef33372af148a1e3be49db47cd2911b1d5afcac8115952e607370ae85df4ddcd1caf15ca
+DIST patch-4.19.15.xz 497188 BLAKE2B 
9ba21b4e84be1f9e492a5e69f2c948a50c71da8654e18a78d55e4cabfd2ada4901bdaf4ad17ea3491681e8fa606390e24cef6298bf91b75d10094a38e2ef978b
 SHA512 
f2f649d8d3951ea742d419037d1d712c853a6f2b1531bf00b88028ca36909838f93a6424d397461acc120ccbce993d41975ede7733f8d6640e209eb07655cc9f
 DIST patch-4.20.2.xz 77196 BLAKE2B 
27e00c59e29c35f5e01f82750bc808be3f620ec135fa7b3dc44fdfc97ff7b46de8654f7873c37827f10a8dc78d0ab0f9c8de6af327c069986e15def3afb93f9c
 SHA512 
1df1e8e92005f6a665049eea16e5c14317cc345403fea55b4a28255782a7abbfce830464bac52e762ad39253a599db6afc6789077b70234200d245dafe97687d
 DIST patch-4.4.169.xz 2314936 BLAKE2B 
969dcc293069cbe9ca7c2d52a7e04fdc060ad4c69d6eead965ed347fc8a9a1a07036124128ba03d6e4e65fd43cb0300ca9f92519697dad66d37139ecb07783a8
 SHA512 
17651af8a2f87830e4019ec1d84bb1865ed5becaadf979f9c4c51d25ac5820341654c6120c8c54ab5fdd32ebfd52a90920f04474f4aa52d5ef85526c31c6f232
 DIST patch-4.9.149.xz 2495792 BLAKE2B 
cc015b4417408451e8a8859f8361a98cc8b7778a9776ca8740bf23b64de22bf8f54242b1527e50d5bfe5f73306e4b476180b2d57253fb3f0b4616dec4cc0e83f
 SHA512 
e70a6b32f5106f6ef9ddc38754dc8ead72d1b32dc0cf84e2556f248099c91d1098c4d475c3a6a0fed7d2ad83363468b6deda8cbdee8d18c9607694e4aca00b10

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.19.14.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.19.15.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.19.14.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.19.15.ebuild



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

2019-01-14 Thread Patrick McLean
commit: 1fa9de490c43df9d2d80c1cd8c700b6eb762862f
Author: Patrick McLean  sony  com>
AuthorDate: Mon Jan 14 18:55:09 2019 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon Jan 14 18:55:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fa9de49

sys-kernel/vanilla-sources: Version bump to 4.20.2

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Patrick McLean  gentoo.org>

 sys-kernel/vanilla-sources/Manifest | 2 +-
 .../{vanilla-sources-4.20.1.ebuild => vanilla-sources-4.20.2.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 61dc872f341..af3a2013037 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -7,6 +7,6 @@ DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c
 DIST patch-3.16.62.xz 2280016 BLAKE2B 
5ec85d7e7e345cb21ed48c860dd263067f58ee29fb2ea11980b37c1973dc944b4ffda7bf7098b8c12573915f564a76db94b35a337d172525979cf87aa8cb2ae8
 SHA512 
c438d9b8df33484ede82634352dfce366b6b21dd589c21556582337ba16e73788e6219ba64b57160264cbde4da2508f54a716287c5520b89ba9be21c0de63bc3
 DIST patch-4.14.92.xz 2133380 BLAKE2B 
ccebe67228002414d5fea6ec1172344f4af528a593374a17676e4962f10324565aabc1adb31b8bb9151513583915145f12c27c3de31a85dc1a0286648edfed4e
 SHA512 
4fb0e654342516f3dbccdc73296b4e08ed3249dd18e6fd02d325a82471eac861bcdc98ab676b1dba1d57c0e1ee13d95486140fc6add5287e29c91d8ecfed23e2
 DIST patch-4.19.14.xz 459580 BLAKE2B 
38e299cfe6ae94d06d39a2fae37cdea3b5ad8abff2646055c88b4d479dcd1c952d9e75dd323af97c20b443967a223e63735afd4e7047af6d7e7f20685c728e52
 SHA512 
e94ae7235b689aac03cb8bf47f9ed004fd9ae97b6c9d65297c4ef8c2ef33372af148a1e3be49db47cd2911b1d5afcac8115952e607370ae85df4ddcd1caf15ca
-DIST patch-4.20.1.xz 54216 BLAKE2B 
3777a4bad4616c344fc3295e74091fd204f7140bf333456256b436a5c12e5384081c176362659311de26f222c179d5054f91d87ec666e29a67a3cb85a7a63f37
 SHA512 
082cdf87ac1df876c71b82afb4c9339a7b8c3d70ed4f209b9707623827e790f54b93b5ad9a79f3ea4f88a22a3c2756f1e87d0e4f111f77cb1c622292903ba7d4
+DIST patch-4.20.2.xz 77196 BLAKE2B 
27e00c59e29c35f5e01f82750bc808be3f620ec135fa7b3dc44fdfc97ff7b46de8654f7873c37827f10a8dc78d0ab0f9c8de6af327c069986e15def3afb93f9c
 SHA512 
1df1e8e92005f6a665049eea16e5c14317cc345403fea55b4a28255782a7abbfce830464bac52e762ad39253a599db6afc6789077b70234200d245dafe97687d
 DIST patch-4.4.169.xz 2314936 BLAKE2B 
969dcc293069cbe9ca7c2d52a7e04fdc060ad4c69d6eead965ed347fc8a9a1a07036124128ba03d6e4e65fd43cb0300ca9f92519697dad66d37139ecb07783a8
 SHA512 
17651af8a2f87830e4019ec1d84bb1865ed5becaadf979f9c4c51d25ac5820341654c6120c8c54ab5fdd32ebfd52a90920f04474f4aa52d5ef85526c31c6f232
 DIST patch-4.9.149.xz 2495792 BLAKE2B 
cc015b4417408451e8a8859f8361a98cc8b7778a9776ca8740bf23b64de22bf8f54242b1527e50d5bfe5f73306e4b476180b2d57253fb3f0b4616dec4cc0e83f
 SHA512 
e70a6b32f5106f6ef9ddc38754dc8ead72d1b32dc0cf84e2556f248099c91d1098c4d475c3a6a0fed7d2ad83363468b6deda8cbdee8d18c9607694e4aca00b10

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.20.1.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.20.2.ebuild
similarity index 100%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.20.1.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.20.2.ebuild



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

2019-01-14 Thread Craig Andrews
commit: 2e29bb29e57ff5256371265b0762a6d2256f2a7a
Author: David Roman  gmail  com>
AuthorDate: Sun Jan 13 12:37:27 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jan 14 18:51:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e29bb29

dev-libs/spdlog: verbump to 1.3.0

Closes: https://bugs.gentoo.org/675366
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: David Roman  gmail.com>
Signed-off-by: Craig Andrews  gentoo.org>

 dev-libs/spdlog/Manifest| 1 +
 dev-libs/spdlog/{spdlog-.ebuild => spdlog-1.3.0.ebuild} | 7 ---
 dev-libs/spdlog/spdlog-.ebuild  | 7 ---
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/dev-libs/spdlog/Manifest b/dev-libs/spdlog/Manifest
index 32fe47d178d..f506ef1a56b 100644
--- a/dev-libs/spdlog/Manifest
+++ b/dev-libs/spdlog/Manifest
@@ -1,3 +1,4 @@
 DIST spdlog-1.0.0.tar.gz 183855 BLAKE2B 
30d54fef03a83f968cfebacf95a484ff397126771a7ea022556aebd07e2f7694af35b278f75ee24372283ff1428e21247fd4329794d64a65bd6220a93f21db3c
 SHA512 
4d3cbc1926be513256b5837a53fce425f6d352bb4ab262074f205450cd4eadc09feea9dc8d8c03b3f1e9792bcfbcff414be79e51d58234f540946428bbd88cd1
 DIST spdlog-1.1.0.tar.gz 183937 BLAKE2B 
51af49f641df69e78835bd6b9545da53c0e111bab60a5f0dbf4a1d0e70101309394ffea195176ea371f08b772c2be1c22c2da16006fc9699f47593cf82a6c0fd
 SHA512 
65fbe6e9dffb25e814f72f2ef7982eed213fc16edfabb1377f865c94fd0488190e160dfea83ac06979a41f2fb2fa47a454989ebee0a2c5012bd404b977648439
 DIST spdlog-1.2.1.tar.gz 188284 BLAKE2B 
c3491a9c44d8a94c51d50c9ef36a2105f77e8fb61bb7b2b81a341609f433abbe3a74e7b4a467dd715a5d906f976740716488d07b4510f366556ab59d160ceefe
 SHA512 
418f91efc207fa227558212d82c41639c0bb59e84ea47447e0b6276c4842e97f1f8aaf5802c071ef15d80ec525e317e70b6a39661a6c96ab39d33d9bd1570da1
+DIST spdlog-1.3.0.tar.gz 202637 BLAKE2B 
97027a3672b826e294dbdc202afa913a42ddae5a02a569ac28c41d79b96128de045ac5df30a76d888d6b3bea5093fb75b006365d7b1b296842750a39f43835d6
 SHA512 
019a52d4b6c66287ee2a6e8177457ecbbb78e1cb894f4a0a90b83a84d66cd37b397cdf77892d9116e4c34113bd3277d606d578bc96ec6521ae7745f08b1aa54f

diff --git a/dev-libs/spdlog/spdlog-.ebuild 
b/dev-libs/spdlog/spdlog-1.3.0.ebuild
similarity index 86%
copy from dev-libs/spdlog/spdlog-.ebuild
copy to dev-libs/spdlog/spdlog-1.3.0.ebuild
index 03aaec9bd60..497e7da9b41 100644
--- a/dev-libs/spdlog/spdlog-.ebuild
+++ b/dev-libs/spdlog/spdlog-1.3.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-utils
 
@@ -32,7 +32,8 @@ src_configure() {
 
local mycmakeargs=(
-DSPDLOG_BUILD_EXAMPLES=no
-   -DSPDLOG_BUILD_TESTING=$(usex test)
+   -DSPDLOG_BUILD_BENCH=no
+   -DSPDLOG_BUILD_TESTS=$(usex test)
)
 
cmake-utils_src_configure

diff --git a/dev-libs/spdlog/spdlog-.ebuild 
b/dev-libs/spdlog/spdlog-.ebuild
index 03aaec9bd60..497e7da9b41 100644
--- a/dev-libs/spdlog/spdlog-.ebuild
+++ b/dev-libs/spdlog/spdlog-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-utils
 
@@ -32,7 +32,8 @@ src_configure() {
 
local mycmakeargs=(
-DSPDLOG_BUILD_EXAMPLES=no
-   -DSPDLOG_BUILD_TESTING=$(usex test)
+   -DSPDLOG_BUILD_BENCH=no
+   -DSPDLOG_BUILD_TESTS=$(usex test)
)
 
cmake-utils_src_configure



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

2019-01-14 Thread Craig Andrews
commit: 7c9456b2f82b9ebdfd82aa33ef5fea6a5e69a220
Author: David Roman  gmail  com>
AuthorDate: Mon Jan 14 18:39:34 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jan 14 18:51:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9456b2

dev-libs/spdlog: drop old ebuilds

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: David Roman  gmail.com>
Signed-off-by: Craig Andrews  gentoo.org>

 dev-libs/spdlog/Manifest|  2 --
 dev-libs/spdlog/spdlog-1.0.0.ebuild | 39 -
 dev-libs/spdlog/spdlog-1.1.0.ebuild | 39 -
 3 files changed, 80 deletions(-)

diff --git a/dev-libs/spdlog/Manifest b/dev-libs/spdlog/Manifest
index f506ef1a56b..253b0728966 100644
--- a/dev-libs/spdlog/Manifest
+++ b/dev-libs/spdlog/Manifest
@@ -1,4 +1,2 @@
-DIST spdlog-1.0.0.tar.gz 183855 BLAKE2B 
30d54fef03a83f968cfebacf95a484ff397126771a7ea022556aebd07e2f7694af35b278f75ee24372283ff1428e21247fd4329794d64a65bd6220a93f21db3c
 SHA512 
4d3cbc1926be513256b5837a53fce425f6d352bb4ab262074f205450cd4eadc09feea9dc8d8c03b3f1e9792bcfbcff414be79e51d58234f540946428bbd88cd1
-DIST spdlog-1.1.0.tar.gz 183937 BLAKE2B 
51af49f641df69e78835bd6b9545da53c0e111bab60a5f0dbf4a1d0e70101309394ffea195176ea371f08b772c2be1c22c2da16006fc9699f47593cf82a6c0fd
 SHA512 
65fbe6e9dffb25e814f72f2ef7982eed213fc16edfabb1377f865c94fd0488190e160dfea83ac06979a41f2fb2fa47a454989ebee0a2c5012bd404b977648439
 DIST spdlog-1.2.1.tar.gz 188284 BLAKE2B 
c3491a9c44d8a94c51d50c9ef36a2105f77e8fb61bb7b2b81a341609f433abbe3a74e7b4a467dd715a5d906f976740716488d07b4510f366556ab59d160ceefe
 SHA512 
418f91efc207fa227558212d82c41639c0bb59e84ea47447e0b6276c4842e97f1f8aaf5802c071ef15d80ec525e317e70b6a39661a6c96ab39d33d9bd1570da1
 DIST spdlog-1.3.0.tar.gz 202637 BLAKE2B 
97027a3672b826e294dbdc202afa913a42ddae5a02a569ac28c41d79b96128de045ac5df30a76d888d6b3bea5093fb75b006365d7b1b296842750a39f43835d6
 SHA512 
019a52d4b6c66287ee2a6e8177457ecbbb78e1cb894f4a0a90b83a84d66cd37b397cdf77892d9116e4c34113bd3277d606d578bc96ec6521ae7745f08b1aa54f

diff --git a/dev-libs/spdlog/spdlog-1.0.0.ebuild 
b/dev-libs/spdlog/spdlog-1.0.0.ebuild
deleted file mode 100644
index 03aaec9bd60..000
--- a/dev-libs/spdlog/spdlog-1.0.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Very fast, header only, C++ logging library"
-HOMEPAGE="https://github.com/gabime/spdlog;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/gabime/spdlog;
-else
-   SRC_URI="https://github.com/gabime/spdlog/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="MIT"
-SLOT="0/1"
-IUSE="test"
-
-DEPEND="
-   >=dev-libs/libfmt-5.0.0
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-1.0.0-unbundle-fmt.patch" )
-
-src_configure() {
-   rm -r include/spdlog/fmt/bundled || die
-
-   local mycmakeargs=(
-   -DSPDLOG_BUILD_EXAMPLES=no
-   -DSPDLOG_BUILD_TESTING=$(usex test)
-   )
-
-   cmake-utils_src_configure
-}

diff --git a/dev-libs/spdlog/spdlog-1.1.0.ebuild 
b/dev-libs/spdlog/spdlog-1.1.0.ebuild
deleted file mode 100644
index 03aaec9bd60..000
--- a/dev-libs/spdlog/spdlog-1.1.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Very fast, header only, C++ logging library"
-HOMEPAGE="https://github.com/gabime/spdlog;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/gabime/spdlog;
-else
-   SRC_URI="https://github.com/gabime/spdlog/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="MIT"
-SLOT="0/1"
-IUSE="test"
-
-DEPEND="
-   >=dev-libs/libfmt-5.0.0
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=( "${FILESDIR}/${PN}-1.0.0-unbundle-fmt.patch" )
-
-src_configure() {
-   rm -r include/spdlog/fmt/bundled || die
-
-   local mycmakeargs=(
-   -DSPDLOG_BUILD_EXAMPLES=no
-   -DSPDLOG_BUILD_TESTING=$(usex test)
-   )
-
-   cmake-utils_src_configure
-}



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

2019-01-14 Thread Manuel Rüger
commit: c566d722230c99bfa1e8d6931fc7836720598920
Author: Manuel Rüger  gentoo  org>
AuthorDate: Mon Jan 14 18:37:16 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jan 14 18:37:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c566d722

app-admin/helm: Version bump to 2.12.2

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Manuel Rüger  gentoo.org>

 app-admin/helm/Manifest   |   1 +
 app-admin/helm/helm-2.12.2.ebuild | 152 ++
 2 files changed, 153 insertions(+)

diff --git a/app-admin/helm/Manifest b/app-admin/helm/Manifest
index 69434d54e52..9c552c7 100644
--- a/app-admin/helm/Manifest
+++ b/app-admin/helm/Manifest
@@ -138,4 +138,5 @@ DIST helm-2.10.0.tar.gz 1158857 BLAKE2B 
942474eacea109559baaa9d83d023b746ba0ec89
 DIST helm-2.11.0.tar.gz 1169696 BLAKE2B 
b4736e5d4cf7d16406c7b1544b0f1960295d90651b1028968c98f03fc515c13cd0151a495b5ccdc2b251585b71faad32432b1aeda4b68304e01363ae2a0005a2
 SHA512 
1b769f969010ee8df5d0ab0f169ead3ba8c3dc6838fbc608122ce133bdf9b978fbef0e698f594c2ad6e39e5e8a5c1f8d24ecc7e5d58495e2b9a6bf179fd73669
 DIST helm-2.12.0.tar.gz 1177781 BLAKE2B 
2fba13bbd813c356ca94b8a89b2eabd1e61bc3c7f80a5fd1cd8bd9c62f5ad8a3fb8b5516221736534900c91f20442938d4f9d22ad2276bd1f3709a1a779c86e9
 SHA512 
773d9a95c305a832f63745dc3a5ffde0db5727b24bf9118768c7ecc8bb0ffcaced4016243e74bcca12ce0ec38aabcb4db78d7ef9af1205f014e524c090bdf98f
 DIST helm-2.12.1.tar.gz 1177575 BLAKE2B 
804a908659ab5b3f1cdbe116251743281f9e441aed6dfcb45786672023d9cee0200141a59f02c22090f6466f6fbf611db6120e63981d784d3207f5507cf9e216
 SHA512 
1396bddb5ede097ec11e6e175de91f8d65304beb161d6cbf3c16b341ab22b851c79c9e599248379f771777a728ac2b930c995862f7232bb6f9c753f092d9b0b6
+DIST helm-2.12.2.tar.gz 1179286 BLAKE2B 
ee1a3229e5567dfada4eb2f721f0f67a2fc6ee4e54c7d58f342895483a49d6ef1028a746ebb990a8b68b0a8386591f5e5ce0b3593b83d66d00427a69b1ede938
 SHA512 
38927ee8179f53a0bc4863b85bd090bc88364b1cf0e5491d1313fa4becbb7665aeec9b41854f86617882b66d1b8b31f065202d78c93593994744965c914e0cde
 DIST helm-2.9.1.tar.gz 1136941 BLAKE2B 
57e319df56d60b1285df99ee6c0213e9700b80aa4117f11ab3e37493d552481875a42acd200d2183c2e587dc13130b9c47cbacee7dd7bfeaaf4dc9bb0a17dcc5
 SHA512 
c9830ae3de76e219dc4effad749fa6f80d24f47f034bd7150afc5817700947b678db64a0889fe1e3c3c69ed0932933ebf9bb893c065d7d77c2953190ab15b033

diff --git a/app-admin/helm/helm-2.12.2.ebuild 
b/app-admin/helm/helm-2.12.2.ebuild
new file mode 100644
index 000..258d8c1e7e3
--- /dev/null
+++ b/app-admin/helm/helm-2.12.2.ebuild
@@ -0,0 +1,152 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="k8s.io/helm"
+
+MY_PV=${PV/_rc/-rc.}
+
+EGO_VENDOR=(
+"cloud.google.com/go 3b1ae45394a234c385be014e9a488f2bb6eef821 
github.com/GoogleCloudPlatform/gcloud-golang"
+"github.com/aokoli/goutils 9c37978a95bd5c709a15883b6242714ea6709e64"
+"github.com/asaskevich/govalidator 7664702784775e51966f0885f5cd27435916517b"
+"github.com/Azure/go-ansiterm d6e3b3328b783f23731bc4d058875b0371ff8109"
+"github.com/Azure/go-autorest bca49d5b51a50dc5bb17bbf6204c711c6dbded06"
+"github.com/beorn7/perks 3ac7bf7a47d159a033b107610db8a1b6575507a4"
+"github.com/BurntSushi/toml 3012a1dbe2e4bd1391d42b32f0577cb7bbc7f005"
+"github.com/chai2010/gettext-go c6fed771bfd517099caf0f7a961671fa8ed08723"
+"github.com/cpuguy83/go-md2man 71acacd42f85e5e82f70a55327789582a5200a90"
+"github.com/cyphar/filepath-securejoin 
a261ee33d7a517f054effbf451841abaafe3e0fd"
+"github.com/davecgh/go-spew 782f4967f2dc4564575ca782fe2d04090b5faca8"
+"github.com/dgrijalva/jwt-go 01aeca54ebda6e0fbfafd0a524d234159c05ec20"
+"github.com/docker/distribution edc3ab29cdff8694dd6feb85cfeb4b5f1b38ed9c"
+"github.com/docker/docker a9fbbdc8dd8794b20af358382ab780559bca589d"
+"github.com/docker/go-connections 3ede32e2033de7505e6500d6c868c2b9ed9f169d"
+"github.com/docker/go-units 9e638d38cf6977a37a8ea0078f3ee75a7cdb2dd1"
+"github.com/docker/spdystream 449fdfce4d962303d702fec724ef0ad181c92528"
+"github.com/evanphx/json-patch 36442dbdb585210f8d5a1b45e67aa323c197d5c4"
+"github.com/exponent-io/jsonpath d6023ce2651d8eafb5c75bb0c7167536102ec9f5"
+"github.com/fatih/camelcase f6a740d52f961c60348ebb109adde9f4635d7540"
+"github.com/ghodss/yaml 73d445a93680fa1a78ae23a5839bad48f32ba1ee"
+"github.com/go-openapi/jsonpointer 46af16f9f7b149af66e5d1bd010e3574dc06de98"
+"github.com/go-openapi/jsonreference 13c6e3589ad90f49bd3e3bbe2c2cb3d7a4142272"
+"github.com/go-openapi/spec 1de3e0542de65ad8d75452a595886fdd0befb363"
+"github.com/go-openapi/swag f3f9494671f93fcff853e3c6e9e948b3eb71e590"
+"github.com/gobwas/glob 5ccd90ef52e1e632236f7326478d4faa74f99438"
+"github.com/gogo/protobuf c0656edd0d9eab7c66d1eb0c568f9039345796f7"
+"github.com/golang/glog 44145f04b68cf362d9c4df2182967c2275eaefed"
+"github.com/golang/groupcache 02826c3e79038b59d737d3b1c0a1d937f71a4433"
+"github.com/golang/protobuf 1643683e1b54a9e88ad26d98f81400c8c9d9f4f9"

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

2019-01-14 Thread Fabian Groffen
commit: d313c0b00f13e307b6e24eb202a63c300c7a8f80
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Jan 14 18:30:55 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jan 14 18:32:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d313c0b0

app-crypt/rhash: fix configure for Solaris

Signed-off-by: Fabian Groffen  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-crypt/rhash/rhash-1.3.7.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-crypt/rhash/rhash-1.3.7.ebuild 
b/app-crypt/rhash/rhash-1.3.7.ebuild
index 52b9332ac35..e179038547c 100644
--- a/app-crypt/rhash/rhash-1.3.7.ebuild
+++ b/app-crypt/rhash/rhash-1.3.7.ebuild
@@ -32,6 +32,9 @@ S="${WORKDIR}/RHash-${PV}"
 
 src_prepare() {
default
+   # fix Solaris detection, upstream:
+   # https://github.com/rhash/RHash/pull/81
+   sed -i -e 's/sunos)/solaris2.*)/' configure || die
multilib_copy_sources
 }
 



[gentoo-commits] proj/sci:master commit in: sci-biology/samri/

2019-01-14 Thread Horea Christian
commit: 9b73be5982c6c1dffb122a1cd10f5997d4d50731
Author: Horea Christian  yandex  com>
AuthorDate: Mon Jan 14 17:36:42 2019 +
Commit: Horea Christian  gmail  com>
CommitDate: Mon Jan 14 17:38:55 2019 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9b73be59

sci-biology/samri: testing required atlases

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Horea Christian  yandex.com>

 sci-biology/samri/samri-0.2.ebuild  | 4 +++-
 sci-biology/samri/samri-.ebuild | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/sci-biology/samri/samri-0.2.ebuild 
b/sci-biology/samri/samri-0.2.ebuild
index af8210de2..12c8d5e01 100644
--- a/sci-biology/samri/samri-0.2.ebuild
+++ b/sci-biology/samri/samri-0.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/IBT-FMI/SAMRI/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="atlases labbookdb test"
+IUSE="+atlases labbookdb test"
 KEYWORDS="~amd64 ~x86"
 
 # Numpy dependency to circumvent scikits_learn dependency bug:
@@ -47,6 +47,8 @@ RDEPEND="
sci-biology/nilearn[${PYTHON_USEDEP}]
"
 
+REQUIRED_USE="test? ( atlases )"
+
 S="${WORKDIR}/SAMRI-${PV}"
 
 python_test() {

diff --git a/sci-biology/samri/samri-.ebuild 
b/sci-biology/samri/samri-.ebuild
index ad9b6a35c..4f2c64bc7 100644
--- a/sci-biology/samri/samri-.ebuild
+++ b/sci-biology/samri/samri-.ebuild
@@ -14,7 +14,7 @@ EGIT_REPO_URI="https://github.com/IBT-FMI/SAMRI;
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="atlases labbookdb test"
+IUSE="+atlases labbookdb test"
 KEYWORDS=""
 
 # Numpy dependency to circumvent scikits_learn dependency bug:
@@ -48,6 +48,8 @@ RDEPEND="
sci-biology/nilearn[${PYTHON_USEDEP}]
"
 
+REQUIRED_USE="test? ( atlases )"
+
 python_test() {
distutils_install_for_testing
export MPLBACKEND="agg"



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

2019-01-14 Thread Bernard Cafarelli
commit: 10d349f0233868497aabbdea679656b035a517dd
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 17:32:47 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 17:32:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d349f0

dev-python/tld: 0.9.2 bump

Bugfixes and Python 3.7 support

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 dev-python/tld/Manifest |  1 +
 dev-python/tld/tld-0.9.2.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/tld/Manifest b/dev-python/tld/Manifest
index 5aacf2191a9..048f46354b9 100644
--- a/dev-python/tld/Manifest
+++ b/dev-python/tld/Manifest
@@ -1,2 +1,3 @@
 DIST tld-0.7.10.tar.gz 242027 BLAKE2B 
b72d673ecf4753f95d0bf8403abb296eef67b7aeea7233e1b8e3ae262667a252d7cd5125c8cd3a11b5422eded604ccc3c86fd7d5ae1a500f926b9fd6464b9acf
 SHA512 
e144f2eb037da482965636cb14c1d0bd91f66d9836f1ea0662b1a34d6760fba7784f26a398d0a1fe0ae4f15bc79372dfd92d94eb624b04955320813b08ab4968
 DIST tld-0.9.1.tar.gz 479262 BLAKE2B 
908be345720b2e8131c89fac9fbbee7137674aa036b99076e60352b5ff37f682c3f5dcd8bf4bade58fffeeebeb6cbd2924042db9da383373ba4542639189e1d1
 SHA512 
167629fc1f837c12d8baeb83b032fe10291ba5444373b225eb73bab515e46efe5f29f83acd1eea07caa54d6b69fad8238d531867f1956c13243bc1908961a4cf
+DIST tld-0.9.2.tar.gz 562143 BLAKE2B 
6b7f3c15127d2a97240054b3ee53c628ebf3f381399f7b4460879cd0034dae4f944e33950cafeaf36ab222b9578146564369c0401dc8066d8092bc00ebeb40c4
 SHA512 
72e829efa48fccb7f8f771f7b84e98d7f38de8f214c26d25741448981de432bbe09f3dac646779135a74c8f3fd0669e3c371d2136e5edc3c2e3750fd5d5631dd

diff --git a/dev-python/tld/tld-0.9.2.ebuild b/dev-python/tld/tld-0.9.2.ebuild
new file mode 100644
index 000..13ac6558a49
--- /dev/null
+++ b/dev-python/tld/tld-0.9.2.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Extract the top level domain (TLD) from the URL given"
+HOMEPAGE="https://github.com/barseghyanartur/tld;
+SRC_URI="https://github.com/barseghyanartur/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND=""



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

2019-01-14 Thread Lars Wendler
commit: bf80b30548b904aff57482f8eeaa352a1ebcad36
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan 14 16:39:21 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan 14 17:03:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf80b305

sys-process/cronie: Removed old.

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-process/cronie/Manifest   |   1 -
 sys-process/cronie/cronie-1.5.1-r1.ebuild | 101 --
 2 files changed, 102 deletions(-)

diff --git a/sys-process/cronie/Manifest b/sys-process/cronie/Manifest
index bbbaf37067c..5b198abb6e9 100644
--- a/sys-process/cronie/Manifest
+++ b/sys-process/cronie/Manifest
@@ -1,2 +1 @@
-DIST cronie-1.5.1.tar.gz 114848 BLAKE2B 
9b2a045c2c3c18a931588c620e455c4f2efbf17a5f5826bc1b276bd2c4537fe91d7f81cdb7434dc7d8357414c14d9dc89c90bb7a5dc22956d90b6a84c731f498
 SHA512 
7e5b2e5cc782d04b84ffced21b4601ed5a041c125ec9daa3ae3c704c04b376b07f8f6e6e1351659690ce695ca4c9373456420099eefde985e15fbe5d3ebdcf5a
 DIST cronie-1.5.2.tar.gz 121604 BLAKE2B 
4225439fd13a32bba3bd24f25d7dd405cdb123e666ebbf14574143af9d161867f82ea3fc479d81a884590faaa9c42e19c971285e01a19d6ac793b7deb7fc4775
 SHA512 
6455e234becc44e6568fa25fd72abfaa293cb0bc2d2f1d124e551c068ba01083192b21e82e941158c8c1f41cb6dad3851d665b9f3baa82fd49080f3f8619740b

diff --git a/sys-process/cronie/cronie-1.5.1-r1.ebuild 
b/sys-process/cronie/cronie-1.5.1-r1.ebuild
deleted file mode 100644
index 43b64498605..000
--- a/sys-process/cronie/cronie-1.5.1-r1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools cron pam systemd user
-
-DESCRIPTION="Cronie is a standard UNIX daemon cron based on the original 
vixie-cron"
-HOMEPAGE="https://github.com/cronie-crond/cronie;
-SRC_URI="https://github.com/cronie-crond/cronie/archive/${P}.tar.gz;
-
-LICENSE="ISC BSD BSD-2 GPL-2"
-KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
-IUSE="+anacron +inotify pam selinux"
-
-DEPEND="pam? ( virtual/pam )
-   anacron? ( !sys-process/anacron )"
-RDEPEND="${DEPEND}
-   sys-apps/debianutils"
-
-#cronie supports /etc/crontab
-CRON_SYSTEM_CRONTAB="yes"
-
-S="${WORKDIR}/${PN}-${P}"
-
-PATCHES=(
-   "${FILESDIR}/cronie-systemd.patch"
-)
-
-pkg_setup() {
-   enewgroup crontab
-}
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   SPOOL_DIR="/var/spool/cron/crontabs" \
-   ANACRON_SPOOL_DIR="/var/spool/anacron" \
-   econf \
-   $(use_with inotify) \
-   $(use_with pam) \
-   $(use_with selinux) \
-   $(use_enable anacron) \
-   --enable-syscrontab \
-   --with-daemon_username=cron \
-   --with-daemon_groupname=cron
-}
-
-src_install() {
-   emake install DESTDIR="${D}"
-
-   docrondir -m 1730 -o root -g crontab
-   fowners root:crontab /usr/bin/crontab
-   fperms 2751 /usr/bin/crontab
-
-   newconfd "${S}"/crond.sysconfig ${PN}
-
-   insinto /etc
-   newins "${FILESDIR}/${PN}-crontab" crontab
-   newins "${FILESDIR}/${PN}-1.2-cron.deny" cron.deny
-
-   insinto /etc/cron.d
-   doins contrib/0hourly
-
-   newinitd "${FILESDIR}/${PN}-1.3-initd" ${PN}
-   newpamd "${FILESDIR}/${PN}-1.4.3-pamd" crond
-
-   systemd_newunit contrib/cronie.systemd cronie.service
-
-   if use anacron ; then
-   local anacrondir="/var/spool/anacron"
-   keepdir ${anacrondir}
-   fowners root:cron ${anacrondir}
-   fperms 0750 ${anacrondir}
-
-   insinto /etc
-   doins contrib/anacrontab
-
-   insinto /etc/cron.hourly
-   doins contrib/0anacron
-   fperms 0750 /etc/cron.hourly/0anacron
-   else
-   insinto /etc/cron.d
-   doins contrib/dailyjobs
-   fi
-
-   einstalldocs
-}
-
-pkg_postinst() {
-   cron_pkg_postinst
-
-   if [[ -n "${REPLACING_VERSIONS}" ]] ; then
-   ewarn "You should restart ${PN} daemon or else you might 
experience segfaults"
-   ewarn "or ${PN} not working reliably anymore."
-   einfo "(see https://bugs.gentoo.org/557406 for details.)"
-   fi
-}



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

2019-01-14 Thread Hans de Graaff
commit: 5b3a9696834e936835fd3afb4b7c2aef1716bb43
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 14 16:26:20 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 14 16:26:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b3a9696

dev-ruby/warden: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/warden/warden-1.2.8.ebuild 
b/dev-ruby/warden/warden-1.2.8.ebuild
index 43eecbd6e5f..1cf6a161c4e 100644
--- a/dev-ruby/warden/warden-1.2.8.ebuild
+++ b/dev-ruby/warden/warden-1.2.8.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2019-01-14 Thread Hans de Graaff
commit: f3fab799dc181b77493df0d4a8e58840f0b55289
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 14 16:28:40 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 14 16:28:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3fab799

dev-ruby/websocket-extensions: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ruby/websocket-extensions/websocket-extensions-0.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/websocket-extensions/websocket-extensions-0.1.3.ebuild 
b/dev-ruby/websocket-extensions/websocket-extensions-0.1.3.ebuild
index 0898b5ce07b..be1e21f483a 100644
--- a/dev-ruby/websocket-extensions/websocket-extensions-0.1.3.ebuild
+++ b/dev-ruby/websocket-extensions/websocket-extensions-0.1.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2019-01-14 Thread Hans de Graaff
commit: 4929a6223d65543e0e253e27e2eeef3c6bba5110
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 14 16:31:30 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 14 16:31:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4929a622

dev-ruby/windows_error: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/windows_error/windows_error-0.1.2.ebuild 
b/dev-ruby/windows_error/windows_error-0.1.2.ebuild
index 88a54a29d02..81203fd2545 100644
--- a/dev-ruby/windows_error/windows_error-0.1.2.ebuild
+++ b/dev-ruby/windows_error/windows_error-0.1.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2019-01-14 Thread Hans de Graaff
commit: 0b2b073ffe6e08940f2932db65a973690ac112bf
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 14 16:36:45 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 14 16:36:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b2b073f

dev-ruby/plist: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/plist/plist-3.4.0.ebuild 
b/dev-ruby/plist/plist-3.4.0.ebuild
index b7acbddff13..e61a98bd1f1 100644
--- a/dev-ruby/plist/plist-3.4.0.ebuild
+++ b/dev-ruby/plist/plist-3.4.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc"



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

2019-01-14 Thread Hans de Graaff
commit: bba511beaa13e3d796cf1062e38d8539b5409161
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jan 14 16:33:32 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jan 14 16:33:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba511be

dev-ruby/websocket: add ruby26

Signed-off-by: Hans de Graaff  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-ruby/websocket/websocket-1.2.8.ebuild 
b/dev-ruby/websocket/websocket-1.2.8.ebuild
index e29d617a82e..75a9fcb1f5b 100644
--- a/dev-ruby/websocket/websocket-1.2.8.ebuild
+++ b/dev-ruby/websocket/websocket-1.2.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2019-01-14 Thread Craig Andrews
commit: 3a19c8172c6e0b736ea746132956aa5dddc18d1b
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Jan 14 16:14:57 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jan 14 16:15:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a19c817

media-libs/vidstab: For tests, use sse2 only if it is available

Reported upstream at https://github.com/georgmartius/vid.stab/pull/70

Closes: https://bugs.gentoo.org/675318
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 ...ab-1.1.0-tests-use-sse2-only-if-available.patch | 33 ++
 media-libs/vidstab/vidstab-1.1.0-r1.ebuild |  9 --
 media-libs/vidstab/vidstab-.ebuild |  9 +++---
 3 files changed, 44 insertions(+), 7 deletions(-)

diff --git 
a/media-libs/vidstab/files/vidstab-1.1.0-tests-use-sse2-only-if-available.patch 
b/media-libs/vidstab/files/vidstab-1.1.0-tests-use-sse2-only-if-available.patch
new file mode 100644
index 000..fc7deca503e
--- /dev/null
+++ 
b/media-libs/vidstab/files/vidstab-1.1.0-tests-use-sse2-only-if-available.patch
@@ -0,0 +1,33 @@
+From 80932fbd1e77d397a7b503697c78fd888ede396a Mon Sep 17 00:00:00 2001
+From: Craig Andrews 
+Date: Mon, 14 Jan 2019 11:08:30 -0500
+Subject: [PATCH] In tests, use sse2 only if it is available
+
+Use FindSSE and SSE2_FOUND in the same way as done in the main CMakeLists.txt 
in commit 0f41dfb89ba3fa7d20f45cbeb02cc1ff37c89c27
+---
+ tests/CMakeLists.txt | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
+index 9597141..6812916 100644
+--- a/tests/CMakeLists.txt
 b/tests/CMakeLists.txt
+@@ -7,6 +7,8 @@ project (vid.stab)
+ 
+ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_SOURCE_DIR}/../CMakeModules/")
+ 
++include (FindSSE)
++
+ option(USE_OMP "use parallelization use OMP" ON)
+ 
+ # Default to debug builds if no explicit build type specified.
+@@ -23,7 +25,9 @@ else()
+ add_definitions( -DDISABLE_ORC)
+ endif()
+ 
++if(SSE2_FOUND)
+ add_definitions( -DUSE_SSE2 -msse2 -ffast-math -fno-show-column ) # 
-DUSE_SSE2_ASM
++endif()
+ 
+ if(USE_OMP)
+ add_definitions(-fopenmp -DUSE_OMP)

diff --git a/media-libs/vidstab/vidstab-1.1.0-r1.ebuild 
b/media-libs/vidstab/vidstab-1.1.0-r1.ebuild
index 31b7ac65819..a6e5eadfa24 100644
--- a/media-libs/vidstab/vidstab-1.1.0-r1.ebuild
+++ b/media-libs/vidstab/vidstab-1.1.0-r1.ebuild
@@ -24,14 +24,16 @@ SLOT="0"
 IUSE="openmp cpu_flags_x86_sse2"
 PATCHES=(

"${FILESDIR}/vidstab-1.1.0-tests-should-exit-with-code-0-on-success.patch"
+   "${FILESDIR}/vidstab-1.1.0-tests-use-sse2-only-if-available.patch"
 )
 src_prepare() {
# USE=cpu_flags_x86_sse2 instead
-   sed -E 's#include (FindSSE)##' -i CMakeLists.txt
+   sed -E 's#include (FindSSE)##' -i CMakeLists.txt || die
+   sed -E 's#include (FindSSE)##' -i tests/CMakeLists.txt || die
# strip some CFLAGS
for FILE_TO_PATCH in {,transcode/,tests/}CMakeLists.txt; do
-   sed -E 's#(add_definitions.* )-g #\1#' -i ${FILE_TO_PATCH}
-   sed -E 's#(add_definitions.* )-O3 #\1#' -i ${FILE_TO_PATCH}
+   sed -E 's#(add_definitions.* )-g #\1#' -i ${FILE_TO_PATCH} || 
die
+   sed -E 's#(add_definitions.* )-O3 #\1#' -i ${FILE_TO_PATCH} || 
die
done
cmake-utils_src_prepare
 }
@@ -48,6 +50,7 @@ src_configure() {
 multilib_src_test() {
local mycmakeargs=(
-DUSE_OMP="$(usex openmp)"
+   -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)"
)
local CMAKE_USE_DIR="${CMAKE_USE_DIR}/tests"
local BUILD_DIR="${BUILD_DIR}/tests"

diff --git a/media-libs/vidstab/vidstab-.ebuild 
b/media-libs/vidstab/vidstab-.ebuild
index c694caee1d9..447fa855686 100644
--- a/media-libs/vidstab/vidstab-.ebuild
+++ b/media-libs/vidstab/vidstab-.ebuild
@@ -22,14 +22,14 @@ fi
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="openmp cpu_flags_x86_sse2"
-
 src_prepare() {
# USE=cpu_flags_x86_sse2 instead
-   sed -E 's#include (FindSSE)##' -i CMakeLists.txt
+   sed -E 's#include (FindSSE)##' -i CMakeLists.txt || die
+   sed -E 's#include (FindSSE)##' -i tests/CMakeLists.txt || die
# strip some CFLAGS
for FILE_TO_PATCH in {,transcode/,tests/}CMakeLists.txt; do
-   sed -E 's#(add_definitions.* )-g #\1#' -i ${FILE_TO_PATCH}
-   sed -E 's#(add_definitions.* )-O3 #\1#' -i ${FILE_TO_PATCH}
+   sed -E 's#(add_definitions.* )-g #\1#' -i ${FILE_TO_PATCH} || 
die
+   sed -E 's#(add_definitions.* )-O3 #\1#' -i ${FILE_TO_PATCH} || 
die
done
cmake-utils_src_prepare
 }
@@ -46,6 +46,7 @@ src_configure() {
 multilib_src_test() {
local mycmakeargs=(
-DUSE_OMP="$(usex openmp)"
+   -DSSE2_FOUND="$(usex cpu_flags_x86_sse2)"
)
local CMAKE_USE_DIR="${CMAKE_USE_DIR}/tests"
local 

[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-art/

2019-01-14 Thread Bernard Cafarelli
commit: 339a39012d0393d7056c625886eae3203d637649
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 16:02:10 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:12:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=339a3901

gnustep-base/gnustep-back-art: 0.27.0 bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 gnustep-base/gnustep-back-art/Manifest |  1 +
 .../gnustep-back-art-0.27.0.ebuild | 83 ++
 2 files changed, 84 insertions(+)

diff --git a/gnustep-base/gnustep-back-art/Manifest 
b/gnustep-base/gnustep-back-art/Manifest
index b4f97fa95c1..b3eafd3986d 100644
--- a/gnustep-base/gnustep-back-art/Manifest
+++ b/gnustep-base/gnustep-back-art/Manifest
@@ -1,3 +1,4 @@
 DIST gnustep-back-0.25.0.tar.gz 974762 BLAKE2B 
ef3ef5bf822b2cd96ac8f6256708c275193db9ba2bfe3d669c3a50e1f4ff9bfb1560a0a2ee1c38e58a13e0e3e081548102dd83a06bdf880fe857046d3d7940ef
 SHA512 
38a098e7fe207c902428c05f01ebf0336b33fb9213368038c2513236255723b642fd9576524ad119ee9511c708be21c155eeaaf297e05c6ebdab8e59efe05770
 DIST gnustep-back-0.25.1.tar.gz 974775 BLAKE2B 
8050c20f405da340a0f42655ca2b0f43761d60b8ee6eab7ce4bbd5f323f7ab8b59506b0b8c5c057eb8303c0b7efe4d80ab428ca100b319a9b927d74bdb37ddd4
 SHA512 
0515672c38265499dc3f0be5127053bc7b2478130cac69cb70c29e5887832472dfdcf90b756ab0926ba5967c0be93e041a1f820dc58f973e41b648e08a569656
 DIST gnustep-back-0.26.2.tar.gz 969473 BLAKE2B 
a16b8663492ca1d59ac1267b3e5421cc14672251c273624e4bcc5e587783968baebfcca020c3f0ccaf73de9c0c43f872a303be4c1ef83c78e1bf102d47f2feea
 SHA512 
99912430425e36b386b3f7bb3a49989c92edd20e3166292e6697c532a7f8ae17682c80bb39fa6177c67bb75bcd9befc44f53874eb5ca1406f51af44b15c9685e
+DIST gnustep-back-0.27.0.tar.gz 972099 BLAKE2B 
ca3090d743a3bcc0995e7b2bfbb39dd72aac6d3b8b62036a17860306728e58d432d3075918b7d49e7e1930974e5a5ae5e0c2ae3c2c7ebb383e859106cfc1c072
 SHA512 
0823a50b6719af1a48139fb7d85eb70d7c1ae367d0c0d7568131b56372063437ae7b464f0314fc1e7f8d25b87e87b58bcc914c27d2d000ff31deea948ab3

diff --git a/gnustep-base/gnustep-back-art/gnustep-back-art-0.27.0.ebuild 
b/gnustep-base/gnustep-back-art/gnustep-back-art-0.27.0.ebuild
new file mode 100644
index 000..cc8e689b3ce
--- /dev/null
+++ b/gnustep-base/gnustep-back-art/gnustep-back-art-0.27.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnustep-base
+
+DESCRIPTION="libart_lgpl back-end component for the GNUstep GUI Library"
+HOMEPAGE="http://www.gnustep.org;
+SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl xim"
+
+RDEPEND="${GNUSTEP_CORE_DEPEND}
+   =gnustep-base/gnustep-gui-${PV%.*}*
+   opengl? ( virtual/opengl virtual/glu )
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXt
+   x11-libs/libXft
+   x11-libs/libXrender
+   >=media-libs/freetype-2.1.9
+
+   >=media-libs/libart_lgpl-2.3
+   >=gnustep-base/mknfonts-0.5-r1
+   media-fonts/dejavu
+
+   !gnustep-base/gnustep-back-cairo
+   !gnustep-base/gnustep-back-xlib"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/gnustep-back-${PV}
+
+src_configure() {
+   egnustep_env
+
+   myconf="$(use_enable opengl glx)"
+   myconf="$myconf $(use_enable xim)"
+   myconf="$myconf --enable-server=x11"
+   myconf="$myconf --enable-graphics=art"
+
+   econf $myconf
+}
+
+src_compile() {
+   gnustep-base_src_compile
+
+   # Create font lists for DejaVu
+   einfo "Generating nfonts support files"
+   (
+   cd Fonts
+   export "${GS_ENV[@]}"
+   ${GNUSTEP_SYSTEM_TOOLS}/mknfonts \
+   $(fc-list : file|grep -v '\.gz'|cut -d: -f1) \
+   || die "nfonts support files creation failed"
+   # Trim whitepsaces
+   for fdir in *\ */; do
+   mv "$fdir" `echo $fdir | tr -d [:space:]`
+   done
+   )
+}
+
+src_install() {
+   gnustep-base_src_install
+
+   mkdir -p "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts"
+   cp -pPR Fonts/*.nfont "${D}/${GNUSTEP_SYSTEM_LIBRARY}/Fonts"
+}
+
+gnustep_config_script() {
+   echo "echo ' * setting normal font to DejaVuSans'"
+   echo "defaults write NSGlobalDomain NSFont DejaVuSans"
+   echo "echo ' * setting bold font to DejaVuSans-Bold'"
+   echo "defaults write NSGlobalDomain NSBoldFont DejaVuSans-Bold"
+   echo "echo ' * setting fixed font to DejaVuSansMono'"
+   echo "defaults write NSGlobalDomain NSUserFixedPitchFont DejaVuSansMono"
+}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-gui/

2019-01-14 Thread Bernard Cafarelli
commit: d09853a1e12de3379bdf1ce929d541ae532d2981
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 15:55:36 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:12:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d09853a1

gnustep-base/gnustep-gui: 0.27.0 bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 gnustep-base/gnustep-gui/Manifest  |  1 +
 gnustep-base/gnustep-gui/gnustep-gui-0.27.0.ebuild | 55 ++
 2 files changed, 56 insertions(+)

diff --git a/gnustep-base/gnustep-gui/Manifest 
b/gnustep-base/gnustep-gui/Manifest
index b7e2026..2a027dc2e58 100644
--- a/gnustep-base/gnustep-gui/Manifest
+++ b/gnustep-base/gnustep-gui/Manifest
@@ -1,3 +1,4 @@
 DIST gnustep-gui-0.25.0.tar.gz 2882556 BLAKE2B 
65ac762c5dcc0419d275f2418de695131f87df804350c93dfbcde3a33d7ddd3038b1a4a1fdef2a4b0bfce2a75d21b5b5b46b6837830d701884324ae3bd394b7d
 SHA512 
568c0c9160febbd9bc563bfc7fbec024bc583a2d6ccfb54e527630f1e761a51f57f984a8b83f06cab97f85e3eec183386057fed2d551a383a16cecb60f102dc2
 DIST gnustep-gui-0.25.1.tar.gz 2888779 BLAKE2B 
4d11442660b746e4667d3472dadebff93768254efbd8b7548230c5c0df6d4727d582e720ffbd61a5e79ca89735eb104ff7a88dede5932569b2c1d111a30540db
 SHA512 
d69416c471d4f2fc9971e4aaddc5471b13854d00be6e03b78c3e89f9e7f90285c9024fc6992811296434d5dadf8ac02bcb69a1ceaa1c651461f83778165328e8
 DIST gnustep-gui-0.26.2.tar.gz 2860931 BLAKE2B 
f597901e3a8d3f2d9a334cdcb7f1c89d1761dc6f99d80ae56bca3b2be553abbadc6f3616f98d45f50efe4accb7f8cd119aad1a5a7ad019572fbf0c65d9df
 SHA512 
165106d96e933b101ca13cc8643c13626165cb2a49794b34a0e898b288c24b9c7e68115362bd363518f0abf2b21341a0746e2d331f320ab0a0685209f3406800
+DIST gnustep-gui-0.27.0.tar.gz 2868892 BLAKE2B 
a4d60f76355ab5ab3c9c7d810106eef8c0d68f53ddefc14948aab4bc3181b72f6df678f53f902627923d250cfeed98ba9c430a70412966a37251d0614df4882c
 SHA512 
b8c708a249a2103c60e9b75e464fc9ffd6ac658b1f7c5c75997894879969d332ede3c8d5806489cd1b58bdd6e3ad47fb6ae8c2512bb00b69c27d70d42d6c2375

diff --git a/gnustep-base/gnustep-gui/gnustep-gui-0.27.0.ebuild 
b/gnustep-base/gnustep-gui/gnustep-gui-0.27.0.ebuild
new file mode 100644
index 000..9b11a07f43f
--- /dev/null
+++ b/gnustep-base/gnustep-gui/gnustep-gui-0.27.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnustep-base multilib
+
+DESCRIPTION="Library of GUI classes written in Obj-C"
+HOMEPAGE="http://www.gnustep.org/;
+SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~x86-solaris"
+IUSE="cups gif icu jpeg png speech"
+
+DEPEND="${GNUSTEP_CORE_DEPEND}
+   app-text/aspell
+   >=gnustep-base/gnustep-base-1.26.0[icu?]
+   media-libs/audiofile
+   >=media-libs/tiff-3:=
+   x11-libs/libXt
+   cups? ( >=net-print/cups-1.7.4:= )
+   gif? ( >=media-libs/giflib-4.1:= )
+   icu? ( dev-libs/icu:= )
+   jpeg? ( virtual/jpeg:= )
+   png? ( >=media-libs/libpng-1.2:= )
+   speech? ( app-accessibility/flite )"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   gnustep-base_src_prepare
+
+   # remove hardcoded -g -Werror, bug #378179
+   sed -i -e 's/-g -Werror//' \
+   Tools/say/GNUmakefile \
+   Tools/speech/GNUmakefile \
+   || die
+}
+
+src_configure() {
+   egnustep_env
+
+   local myconf=
+   use gif && myconf="--disable-ungif --enable-libgif"
+
+   econf \
+   $(use_enable cups) \
+   $(use_enable icu) \
+   $(use_enable jpeg) \
+   $(use_enable png) \
+   $(use_enable speech) \
+   --with-tiff-include="${EPREFIX}"/usr/include \
+   --with-tiff-library="${EPREFIX}"/usr/$(get_libdir) \
+   ${myconf}
+}



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-xlib/

2019-01-14 Thread Bernard Cafarelli
commit: 97996cf32fd8f12b86ab5ac139ac2d2c9c3923c2
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 16:01:43 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:12:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97996cf3

gnustep-base/gnustep-back-xlib: 0.27.0 bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 gnustep-base/gnustep-back-xlib/Manifest|  1 +
 .../gnustep-back-xlib-0.27.0.ebuild| 45 ++
 2 files changed, 46 insertions(+)

diff --git a/gnustep-base/gnustep-back-xlib/Manifest 
b/gnustep-base/gnustep-back-xlib/Manifest
index b4f97fa95c1..b3eafd3986d 100644
--- a/gnustep-base/gnustep-back-xlib/Manifest
+++ b/gnustep-base/gnustep-back-xlib/Manifest
@@ -1,3 +1,4 @@
 DIST gnustep-back-0.25.0.tar.gz 974762 BLAKE2B 
ef3ef5bf822b2cd96ac8f6256708c275193db9ba2bfe3d669c3a50e1f4ff9bfb1560a0a2ee1c38e58a13e0e3e081548102dd83a06bdf880fe857046d3d7940ef
 SHA512 
38a098e7fe207c902428c05f01ebf0336b33fb9213368038c2513236255723b642fd9576524ad119ee9511c708be21c155eeaaf297e05c6ebdab8e59efe05770
 DIST gnustep-back-0.25.1.tar.gz 974775 BLAKE2B 
8050c20f405da340a0f42655ca2b0f43761d60b8ee6eab7ce4bbd5f323f7ab8b59506b0b8c5c057eb8303c0b7efe4d80ab428ca100b319a9b927d74bdb37ddd4
 SHA512 
0515672c38265499dc3f0be5127053bc7b2478130cac69cb70c29e5887832472dfdcf90b756ab0926ba5967c0be93e041a1f820dc58f973e41b648e08a569656
 DIST gnustep-back-0.26.2.tar.gz 969473 BLAKE2B 
a16b8663492ca1d59ac1267b3e5421cc14672251c273624e4bcc5e587783968baebfcca020c3f0ccaf73de9c0c43f872a303be4c1ef83c78e1bf102d47f2feea
 SHA512 
99912430425e36b386b3f7bb3a49989c92edd20e3166292e6697c532a7f8ae17682c80bb39fa6177c67bb75bcd9befc44f53874eb5ca1406f51af44b15c9685e
+DIST gnustep-back-0.27.0.tar.gz 972099 BLAKE2B 
ca3090d743a3bcc0995e7b2bfbb39dd72aac6d3b8b62036a17860306728e58d432d3075918b7d49e7e1930974e5a5ae5e0c2ae3c2c7ebb383e859106cfc1c072
 SHA512 
0823a50b6719af1a48139fb7d85eb70d7c1ae367d0c0d7568131b56372063437ae7b464f0314fc1e7f8d25b87e87b58bcc914c27d2d000ff31deea948ab3

diff --git a/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.27.0.ebuild 
b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.27.0.ebuild
new file mode 100644
index 000..ce757d840d6
--- /dev/null
+++ b/gnustep-base/gnustep-back-xlib/gnustep-back-xlib-0.27.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnustep-base
+
+DESCRIPTION="Default X11 back-end component for the GNUstep GUI Library"
+HOMEPAGE="http://www.gnustep.org;
+SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~x86-solaris"
+IUSE="opengl xim"
+
+RDEPEND="${GNUSTEP_CORE_DEPEND}
+   =gnustep-base/gnustep-gui-${PV%.*}*
+   opengl? ( virtual/opengl virtual/glu )
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXt
+   x11-libs/libXft
+   x11-libs/libXrender
+   >=media-libs/freetype-2.1.9
+
+   !gnustep-base/gnustep-back-art
+   !gnustep-base/gnustep-back-cairo"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/gnustep-back-${PV}
+
+src_configure() {
+   egnustep_env
+
+   myconf="$(use_enable opengl glx)"
+   myconf="$myconf $(use_enable xim)"
+   myconf="$myconf --enable-server=x11"
+   myconf="$myconf --enable-graphics=xlib"
+
+   econf $myconf
+}



[gentoo-commits] repo/gentoo:master commit in: virtual/gnustep-back/

2019-01-14 Thread Bernard Cafarelli
commit: 7384eb93ee03e494808c2f5a0e04bd0d5127bdb9
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 16:04:05 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:12:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7384eb93

virtual/gnustep-back: 0.27.0 bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 virtual/gnustep-back/gnustep-back-0.27.0.ebuild | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/virtual/gnustep-back/gnustep-back-0.27.0.ebuild 
b/virtual/gnustep-back/gnustep-back-0.27.0.ebuild
new file mode 100644
index 000..8ee45a95552
--- /dev/null
+++ b/virtual/gnustep-back/gnustep-back-0.27.0.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual for back-end component for the GNUstep GUI Library"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~x86-solaris"
+
+RDEPEND="|| (
+   ~gnustep-base/gnustep-back-cairo-${PV}
+   ~gnustep-base/gnustep-back-art-${PV}
+   ~gnustep-base/gnustep-back-xlib-${PV}
+   )"



[gentoo-commits] repo/gentoo:master commit in: gnustep-base/gnustep-back-cairo/

2019-01-14 Thread Bernard Cafarelli
commit: 2259132e480cd9ef8532996cfe364058c877e526
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 16:01:13 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:12:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2259132e

gnustep-base/gnustep-back-cairo: 0.27.0 bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 gnustep-base/gnustep-back-cairo/Manifest   |  1 +
 .../gnustep-back-cairo-0.27.0.ebuild   | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/gnustep-base/gnustep-back-cairo/Manifest 
b/gnustep-base/gnustep-back-cairo/Manifest
index b4f97fa95c1..b3eafd3986d 100644
--- a/gnustep-base/gnustep-back-cairo/Manifest
+++ b/gnustep-base/gnustep-back-cairo/Manifest
@@ -1,3 +1,4 @@
 DIST gnustep-back-0.25.0.tar.gz 974762 BLAKE2B 
ef3ef5bf822b2cd96ac8f6256708c275193db9ba2bfe3d669c3a50e1f4ff9bfb1560a0a2ee1c38e58a13e0e3e081548102dd83a06bdf880fe857046d3d7940ef
 SHA512 
38a098e7fe207c902428c05f01ebf0336b33fb9213368038c2513236255723b642fd9576524ad119ee9511c708be21c155eeaaf297e05c6ebdab8e59efe05770
 DIST gnustep-back-0.25.1.tar.gz 974775 BLAKE2B 
8050c20f405da340a0f42655ca2b0f43761d60b8ee6eab7ce4bbd5f323f7ab8b59506b0b8c5c057eb8303c0b7efe4d80ab428ca100b319a9b927d74bdb37ddd4
 SHA512 
0515672c38265499dc3f0be5127053bc7b2478130cac69cb70c29e5887832472dfdcf90b756ab0926ba5967c0be93e041a1f820dc58f973e41b648e08a569656
 DIST gnustep-back-0.26.2.tar.gz 969473 BLAKE2B 
a16b8663492ca1d59ac1267b3e5421cc14672251c273624e4bcc5e587783968baebfcca020c3f0ccaf73de9c0c43f872a303be4c1ef83c78e1bf102d47f2feea
 SHA512 
99912430425e36b386b3f7bb3a49989c92edd20e3166292e6697c532a7f8ae17682c80bb39fa6177c67bb75bcd9befc44f53874eb5ca1406f51af44b15c9685e
+DIST gnustep-back-0.27.0.tar.gz 972099 BLAKE2B 
ca3090d743a3bcc0995e7b2bfbb39dd72aac6d3b8b62036a17860306728e58d432d3075918b7d49e7e1930974e5a5ae5e0c2ae3c2c7ebb383e859106cfc1c072
 SHA512 
0823a50b6719af1a48139fb7d85eb70d7c1ae367d0c0d7568131b56372063437ae7b464f0314fc1e7f8d25b87e87b58bcc914c27d2d000ff31deea948ab3

diff --git a/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.27.0.ebuild 
b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.27.0.ebuild
new file mode 100644
index 000..ff5ef5e818a
--- /dev/null
+++ b/gnustep-base/gnustep-back-cairo/gnustep-back-cairo-0.27.0.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils gnustep-base
+
+DESCRIPTION="Cairo back-end component for the GNUstep GUI Library"
+HOMEPAGE="http://www.gnustep.org;
+SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-back-${PV}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl xim"
+
+RDEPEND="${GNUSTEP_CORE_DEPEND}
+   =gnustep-base/gnustep-gui-${PV%.*}*
+   opengl? ( virtual/opengl virtual/glu )
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXt
+   x11-libs/libXft
+   x11-libs/libXrender
+   >=media-libs/freetype-2.1.9
+
+   >=x11-libs/cairo-1.2.0[X]
+
+   !gnustep-base/gnustep-back-art
+   !gnustep-base/gnustep-back-xlib"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+S=${WORKDIR}/gnustep-back-${PV}
+
+src_configure() {
+   egnustep_env
+
+   myconf="$(use_enable opengl glx)"
+   myconf="$myconf $(use_enable xim)"
+   myconf="$myconf --enable-server=x11"
+   myconf="$myconf --enable-graphics=cairo"
+
+   econf $myconf
+}



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

2019-01-14 Thread Bernard Cafarelli
commit: 150b0aa8a49d1b54ea41f8305f641d174f81daee
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 15:53:08 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:12:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150b0aa8

gnustep-base/gnustep-base: 1.26.0 bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 gnustep-base/gnustep-base/Manifest |  1 +
 .../gnustep-base/gnustep-base-1.26.0.ebuild| 65 ++
 2 files changed, 66 insertions(+)

diff --git a/gnustep-base/gnustep-base/Manifest 
b/gnustep-base/gnustep-base/Manifest
index 08ef4f1aca7..ba63df41fd0 100644
--- a/gnustep-base/gnustep-base/Manifest
+++ b/gnustep-base/gnustep-base/Manifest
@@ -1,3 +1,4 @@
 DIST gnustep-base-1.24.9.tar.gz 3561094 BLAKE2B 
a50e92ae774826082e743581425cfaab6bcbcdbf65a88df4d58988d3c6723e5d3d76d09cf57b4f9278c489e2ff0d178257e2be1c7147a284d8624f3629aaf4f4
 SHA512 
baaa3541edf48a5d902f706f9dad261378bf65e5d89f7308ece6a1fe55c348506df4b6d474ae17cdf0072f1e8dec1b2050d59413abe28bd001d5717c54a3ab96
 DIST gnustep-base-1.25.0.tar.gz 3528599 BLAKE2B 
aa86de9dc26fb48f49bdd796fc25863e8b1baa48a7c8a1536cc39497843b8d37f02e1cc72ea343795d1be6392a6679a4810ae62e6f9c5ec6c34f9ee099f32746
 SHA512 
0c38baa439a87557e054e37ed7b337e9f90f349fd6683551cf6482a0a53c247e2ca23b7df9ab369e8819a7d0f9f29e8a8dc639b148ec1c0223764796dbbd3608
 DIST gnustep-base-1.25.1.tar.gz 3475169 BLAKE2B 
4e2d26ad5782e117f778d298add4c92d40f7c6c73d5aff9692d8eaf7cf06d6ccf6487282e03d4f86bb434d0c7c327b3d80187ca43fdc1c0ff282a246958448fc
 SHA512 
a93c3b4c0fb7df4946ed52dc62c11dfa58f8606fc9666cc7ec7ff5e1c088b67608410b715680e801636bf5ce2caa08e172372f6cab94933459c5e870f962ab11
+DIST gnustep-base-1.26.0.tar.gz 4000708 BLAKE2B 
87a5761f3e4db484c5ea934fbc4cf2949a993aec19b673134cd29626e25fca5efba161ef15d81816796e03aa929d3bd497afd528fea259c84f1a38d860aa0ee2
 SHA512 
454943d44668817589e0d2c0aa731a1ea7c886946ad3f1188e1e1149a40d8b97bb55e3bfe02de0385f03065326149fb0a60ac181cf3f72e1ee7f55c56863745f

diff --git a/gnustep-base/gnustep-base/gnustep-base-1.26.0.ebuild 
b/gnustep-base/gnustep-base/gnustep-base-1.26.0.ebuild
new file mode 100644
index 000..373bdd88c78
--- /dev/null
+++ b/gnustep-base/gnustep-base/gnustep-base-1.26.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils gnustep-base
+
+DESCRIPTION="A library of general-purpose, non-graphical Objective C objects"
+HOMEPAGE="http://www.gnustep.org;
+SRC_URI="ftp://ftp.gnustep.org/pub/gnustep/core/${P}.tar.gz;
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~sparc-solaris ~x86-solaris"
+IUSE="+gnutls +icu +libffi zeroconf"
+
+RDEPEND="${GNUSTEP_CORE_DEPEND}
+   >=gnustep-base/gnustep-make-2.6.0
+   gnutls? ( net-libs/gnutls )
+   icu? ( >=dev-libs/icu-50.0:= )
+   !libffi? ( dev-libs/ffcall
+   gnustep-base/gnustep-make[-native-exceptions] )
+   libffi? ( virtual/libffi )
+   >=dev-libs/libxml2-2.6
+   >=dev-libs/libxslt-1.1
+   >=dev-libs/gmp-4.1:=
+   >=sys-libs/zlib-1.2
+   zeroconf? ( net-dns/avahi )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_configure() {
+   egnustep_env
+
+   local myconf
+   if use libffi ; then
+   myconf="--enable-libffi --disable-ffcall 
--with-ffi-include=$(pkg-config --variable=includedir libffi)"
+   else
+   myconf="--disable-libffi --enable-ffcall"
+   fi
+
+   myconf="$myconf $(use_enable gnutls tls)"
+   myconf="$myconf $(use_enable icu)"
+   myconf="$myconf $(use_enable zeroconf)"
+   myconf="$myconf --with-xml-prefix=${EPREFIX}/usr"
+   myconf="$myconf --with-gmp-include=${EPREFIX}/usr/include 
--with-gmp-library=${EPREFIX}/usr/lib"
+   myconf="$myconf 
--with-default-config=${EPREFIX}/etc/GNUstep/GNUstep.conf"
+
+   econf $myconf
+}
+
+src_install() {
+   # We need to set LD_LIBRARY_PATH because the doc generation program
+   # uses the gnustep-base libraries.  Since egnustep_env "cleans the
+   # environment" including our LD_LIBRARY_PATH, we're left no choice
+   # but doing it like this.
+
+   egnustep_env
+   egnustep_install
+
+   if use doc ; then
+   export LD_LIBRARY_PATH="${S}/Source/obj:${LD_LIBRARY_PATH}"
+   egnustep_doc
+   fi
+   egnustep_install_config
+}



[gentoo-commits] proj/gnustep:master commit in: x11-themes/gnustep-gtk-theme/

2019-01-14 Thread Bernard Cafarelli
commit: 0b50e1f98aaa9d37775fcdffa4a681c2694a6a9e
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 16:10:53 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:10:53 2019 +
URL:https://gitweb.gentoo.org/proj/gnustep.git/commit/?id=0b50e1f9

x11-themes/gnustep-gtk-theme: switch git URI to https

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Manifest-Sign-Key: 00F7AB331B0F097F
Signed-off-by: Bernard Cafarelli  gentoo.org>

 x11-themes/gnustep-gtk-theme/Manifest  | 32 +++---
 .../gnustep-gtk-theme-.ebuild  |  6 ++--
 2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/x11-themes/gnustep-gtk-theme/Manifest 
b/x11-themes/gnustep-gtk-theme/Manifest
index aef5bd8..9485006 100644
--- a/x11-themes/gnustep-gtk-theme/Manifest
+++ b/x11-themes/gnustep-gtk-theme/Manifest
@@ -1,25 +1,25 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA256
 
-EBUILD gnustep-gtk-theme-.ebuild 543 SHA256 
2b3730b9e71f283b30caf88dd74be32985e8b16609a17c2cedb0a00e0e983c39 SHA512 
ff9de089c69910452682c2a4b740e97d4a1842289eba9596f632cdfbca18b35dc7aef26a369d9e386ef6858d8f6339d33623fbfb8a87a47db49f1b51146ad87c
 WHIRLPOOL 
07a334d39a548582b436358d87139745b8ad0c4641da337aab6e63fb93b85b2ce4b582f93a5c28a3cb0d4e67eb16ec9a7fcee2d734ff3a222f6e9983e4f4
-MISC ChangeLog 808 SHA256 
64354f2499be68c171508cdbe4be171ac5aad1eacafff57e1b5f8d68b996a119 SHA512 
c03b1396255e379fc4c0cb60657291f8f3cded8054e17064a0bf8a84a1bc4c8efa7935b6046ede0c031e6b97a88a59d103d5f032c7441d84bf095414ba309128
 WHIRLPOOL 
21c45b0389e738d507c2143544e09cc5490201602a29c219c7ad15487cd5e5ab2e6b9c3548a9e7fe3a1fa54b54c787db039163fca241b24e8814b6f9f37bc124
-MISC metadata.xml 401 SHA256 
9930c42a659a7561369d8a9ba79feacc0b85469b351457a114fead884ea71d0a SHA512 
1608cacc64c28e0391b853718bf8b5631ce1a191466d6cfc3a576fc993aa48c7db7f66d577c8e0985a28eb3b0ae1fe724c90e1d753cf0c7faf6ee27efa79cca9
 WHIRLPOOL 
dd09e84f068dabb50c54d8e2f0f1c89b71cc86d05a66bfed3f5f4ac2c985f9d5c717cb89f9200386d814c489ebbcaa3d89492b8bc0fce1813606ccb9082dbb6d
+EBUILD gnustep-gtk-theme-.ebuild 546 BLAKE2B 
b9e15fdb3c4fcbac4b80e8d2735b2f207c333c38954a749499ad062043fca332b0055cbf459f9e95f27cdf8e60bff2f92fa592f8a6702b43de08feea82ed1d09
 SHA512 
1afc706cb48af88cb5f0e78439c5887efddc2c9262528d79ebdd4f619863774637d1a264e0fcf205e80f3cbbef56062a0ae3388ddcdad8f19e3d53e6dbde1dd4
+MISC ChangeLog 808 BLAKE2B 
b30146a7fa337b23a3ecd980275d7a5a6c3f3dd6ab6275e26e147445dca25fe28880ec6a2d6603c591ecb0d2b1962f1631d1a3d1c11cfd063c04be17edb4fd78
 SHA512 
c03b1396255e379fc4c0cb60657291f8f3cded8054e17064a0bf8a84a1bc4c8efa7935b6046ede0c031e6b97a88a59d103d5f032c7441d84bf095414ba309128
+MISC metadata.xml 401 BLAKE2B 
082b9cdf98f7a25ab4fbec6a8c3a9f9b162dcc4086b6341fafcefa689beb061da117cab65beba01e05c49fcc7158fa98cfae0f817a1b05a5bf1532309613bdb1
 SHA512 
1608cacc64c28e0391b853718bf8b5631ce1a191466d6cfc3a576fc993aa48c7db7f66d577c8e0985a28eb3b0ae1fe724c90e1d753cf0c7faf6ee27efa79cca9
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2
 
-iQKTBAEBCAB9FiEE0xzR9NDgJnbExk7AAPerMxsPCX8FAlome69fFIAALgAo
+iQKTBAEBCAB9FiEE0xzR9NDgJnbExk7AAPerMxsPCX8FAlw8tIxfFIAALgAo
 aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldEQz
 MUNEMUY0RDBFMDI2NzZDNEM2NEVDMDAwRjdBQjMzMUIwRjA5N0YACgkQAPerMxsP
-CX/RPhAApRMwAVLCce+oVbob7ZbykQdK0S+Z7ia+cYSLOXokqZGEWYcByz4EGC2Q
-Sphxh0XvA/aCr0qDiHCeQgNfa3W9FxHr8Fqc3CwVAKC4PqwddPFk90gaSAWW12TP
-3VsiEoplULY51APVVrlCT5b+kbwhKWTW5WsAajskG85LgpEFHabQFf+RXmxrt7SX
-6lDIIlOyzaAnTwhYoPoSt9nWXmgEN8qSWs+GZajJe0Dtx8QqN7iXn6TB8W8beE6c
-Ke1fPATH4VrawCQmKxgdRjIxW2ZzKH58bvAIABle5TVqZqr+AJuPXgPn2wUIl3Os
-Pszo1O7NrkKYD6+Jsv75ZHE4JINWt2NNzOX1e5cJnDDxM3x7WdzPBkGXORTx1lvW
-x3COYHhVXVz8124VgxbZauBFLSel1l+fZsP6jlnHdeYnDHXf+HXBRM2ljB+dAgjR
-OxX08In8FU6QADaf2RIW8deiYlOjOCkrhagq8vEOQFw85u2TWJXduIrfL66BuQ/s
-9/Lwd0YAU5cyzSiJGFxnazYTFbfIP1i4Km100KlR9pllLZ71FG21W3uI7IGbEGnF
-9dsahs5WaNrcxmok5hvODJ6F6C+BdnLVUNzdj3mg2TrORR52p70CSjg51yzoxAHv
-YYfciIY7lq3Q+ADaqD4WX2FpDh2KGUnUjP+vnLp3ubID8qle67c=
-=xMHc
+CX9o4w//ekLKU6pGn679JlGTe4XhWlDyN1gISzomJEs4pMsQarVo3lZN9sz8B5q3
+SDpG1r7dlciP7sYgkUSrJAGHEWnd5O0SnmGN15/eaADpQi3Q5myFwRNMzoGqbZhU
+WMaD6ce7DcDISzbAZZCDUM7hgelgBejXy1liSJ8JHBZ+alz6CvLU9joEcPvTlOd1
+uXG97IDGv2toLT94X/4Rc8AL5pSBCD9aaUOPCvX6Rv1bmzdgHJoObbZ/r7aCO4KB
+mY91/YpHQNfx24DSVCVa9qoQrdJGcK1U3YZZWi5jk1uXNUuJxKrlXcQ6Q4DEOb+T
+CEcFPJEEMhLeq5V5DcOR8XLbCF/OCu7lUsKt/tYrQcAht2+Ypdh5I15Zy70g5PIG
+QDdi2F3O+Z5OX3RDyDmM4/+Tv+3QvfAalYFKMmcV69VII/La+oFBmyWQu4UT7nZL
+PJKkrxG+Vv4h998IvoxW89vJkyl1uAwvALrtzGtqU2PzcJejWRUhpQjJHrRVaTQY
+CVWtlhVwHNmIZykkMoY1rQ7Gr2R8sVJuZmP3A4nnWpsA5GyiYjSWoD3PvmNB+pRt
+yPMWXaYv4q5bvA7n0SWWJoIi4a9ke1OznQgmhD50TqS3vqRIzxuzp2uRNmgs8IGa
+cmpI8abFz9AKeoM+MbaECvaiXS/4L2FG8SQWCY/Lv6c9pFp4qkU=
+=PTZq
 -END PGP SIGNATURE-

diff --git a/x11-themes/gnustep-gtk-theme/gnustep-gtk-theme-.ebuild 
b/x11-themes/gnustep-gtk-theme/gnustep-gtk-theme-.ebuild
index 601c8c4..a7edd14 100644
--- 

[gentoo-commits] proj/gnustep:master commit in: metadata/md5-cache/x11-themes/, metadata/md5-cache/gnustep-apps/

2019-01-14 Thread Bernard Cafarelli
commit: 61afb2f49e59356a51bddb45a0c4acf318018406
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 16:11:46 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 16:11:46 2019 +
URL:https://gitweb.gentoo.org/proj/gnustep.git/commit/?id=61afb2f4

Update metadata cache

Signed-off-by: Bernard Cafarelli  gentoo.org>

 metadata/md5-cache/gnustep-apps/thematic-| 4 ++--
 metadata/md5-cache/x11-themes/gnustep-gtk-theme- | 9 +
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/metadata/md5-cache/gnustep-apps/thematic- 
b/metadata/md5-cache/gnustep-apps/thematic-
index 439ed0f..b665f28 100644
--- a/metadata/md5-cache/gnustep-apps/thematic-
+++ b/metadata/md5-cache/gnustep-apps/thematic-
@@ -1,5 +1,5 @@
 DEFINED_PHASES=compile configure install postinst prepare setup unpack
-DEPEND=>=dev-vcs/git-1.8.2.1 >=gnustep-base/gnustep-make-2.0 
virtual/gnustep-back
+DEPEND=>=dev-vcs/git-1.8.2.1[curl] >=gnustep-base/gnustep-make-2.0 
virtual/gnustep-back
 DESCRIPTION=Thematic.app is a theme editor for GNUstep
 EAPI=6
 HOMEPAGE=https://github.com/gnustep/apps-thematic
@@ -7,5 +7,5 @@ IUSE=debug doc
 LICENSE=GPL-2+
 RDEPEND=>=gnustep-base/gnustep-make-2.0 virtual/gnustep-back debug? ( 
!=dev-vcs/git-1.8.2.1[curl]
 DEFINED_PHASES=compile configure install postinst prepare setup unpack
-DEPEND=virtual/pkgconfig gnome-base/gconf x11-libs/gtk+:2 
>=dev-vcs/git-1.8.2.1 >=gnustep-base/gnustep-make-2.0 virtual/gnustep-back
+DEPEND=virtual/pkgconfig gnome-base/gconf x11-libs/gtk+:2 
>=gnustep-base/gnustep-make-2.0 virtual/gnustep-back
 DESCRIPTION=a GNUstep theme engine using current Gtk+ theme
-EAPI=6
+EAPI=7
 HOMEPAGE=https://github.com/gnustep/plugins-themes-Gtk
 IUSE=debug doc
 LICENSE=LGPL-2.1
 RDEPEND=gnome-base/gconf x11-libs/gtk+:2 >=gnustep-base/gnustep-make-2.0 
virtual/gnustep-back debug? ( !

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

2019-01-14 Thread Lars Wendler
commit: 47e4ff1eaf0fe345d49494757f1b47fb4437ded8
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon Jan 14 16:09:54 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon Jan 14 16:10:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47e4ff1e

sys-apps/fwupd: License is LGPL-2.1+

Closes: https://bugs.gentoo.org/675400
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Lars Wendler  gentoo.org>

 sys-apps/fwupd/fwupd-1.2.2-r1.ebuild | 2 +-
 sys-apps/fwupd/fwupd-1.2.3.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/fwupd/fwupd-1.2.2-r1.ebuild 
b/sys-apps/fwupd/fwupd-1.2.2-r1.ebuild
index 72cc697499b..58920bdfbf6 100644
--- a/sys-apps/fwupd/fwupd-1.2.2-r1.ebuild
+++ b/sys-apps/fwupd/fwupd-1.2.2-r1.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Aims to make updating firmware on Linux 
automatic, safe and reliabl
 HOMEPAGE="https://fwupd.org;
 SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="GPL-2+"
+LICENSE="LGPL-2.1+"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"

diff --git a/sys-apps/fwupd/fwupd-1.2.3.ebuild 
b/sys-apps/fwupd/fwupd-1.2.3.ebuild
index 72cc697499b..58920bdfbf6 100644
--- a/sys-apps/fwupd/fwupd-1.2.3.ebuild
+++ b/sys-apps/fwupd/fwupd-1.2.3.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Aims to make updating firmware on Linux 
automatic, safe and reliabl
 HOMEPAGE="https://fwupd.org;
 SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
-LICENSE="GPL-2+"
+LICENSE="LGPL-2.1+"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86"



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

2019-01-14 Thread Andreas Sturmlechner
commit: 4dffbdff7a8ac762599ba5b8b33c19eadc63921b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 14 14:37:35 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan 14 16:03:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dffbdff

media-video/guvcview: Drop 2.0.5

Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-video/guvcview/Manifest  |   1 -
 media-video/guvcview/files/ffmpeg4.patch   | 195 -
 media-video/guvcview/guvcview-2.0.5.ebuild |  59 -
 3 files changed, 255 deletions(-)

diff --git a/media-video/guvcview/Manifest b/media-video/guvcview/Manifest
index 6c49a0fc76d..5b2772755ce 100644
--- a/media-video/guvcview/Manifest
+++ b/media-video/guvcview/Manifest
@@ -1,2 +1 @@
-DIST guvcview-src-2.0.5.tar.gz 1134237 BLAKE2B 
6165349005a07e3e9ea555a7b4aa731ec218f8073dfce8ac5036dd3ccbe4228aeb3b29491c8ad545d5b5ab193045704a60bfcd48459bfc56ad923b583c08f5be
 SHA512 
b4a1216ab2effbd0022d5ba0ce266ac06a781e453d3dbedfe29b654864d3a26fe1e8b68245d76eff854281d42f1871a8a82b06f783b5115e94ec1c111aac05eb
 DIST guvcview-src-2.0.6.tar.gz 1131013 BLAKE2B 
ec8d7a82344e26890fe184d0edf77d0e415aa708bdf3cf55f96c555aaef479b1b7441a0425db035d10a6dc31f90282c169afff2d13684599ab1c005a5ea50ab1
 SHA512 
f73ba0a013f5afadb45c9bf60f723058ee31e99e204c951c49335a8ef9902a2caa752d6d51f6dd20ae960217cc25155e70efe4c49299a95e6780aaf8034078ec

diff --git a/media-video/guvcview/files/ffmpeg4.patch 
b/media-video/guvcview/files/ffmpeg4.patch
deleted file mode 100644
index e6421834b5b..000
--- a/media-video/guvcview/files/ffmpeg4.patch
+++ /dev/null
@@ -1,195 +0,0 @@
-Index: guvcview-src-2.0.5/guvcview/gui_qt5_callbacks.cpp
-===
 guvcview-src-2.0.5.orig/guvcview/gui_qt5_callbacks.cpp
-+++ guvcview-src-2.0.5/guvcview/gui_qt5_callbacks.cpp
-@@ -1590,10 +1590,8 @@ void MainWindow::video_codec_properties(
-   framerefs->setValue(defaults->framerefs);
-   form.addRow(_("framerefs:   "), framerefs);
-   /*me method*/
--  QSpinBox *me_method = new QSpinBox();
--  me_method->setRange(1, 10);
--  me_method->setSingleStep(1);
--  me_method->setValue(defaults->me_method);
-+  QLabel *me_method = new QLabel();
-+  me_method->setText(defaults->me_method);
-   form.addRow(_("me method:   "), me_method);
-   /*mb decision*/
-   QSpinBox *mb_decision = new QSpinBox();
-@@ -1645,7 +1643,7 @@ void MainWindow::video_codec_properties(
-   defaults->qblur = qblur->value();
-   defaults->subq = subq->value();
-   defaults->framerefs = framerefs->value();
--  defaults->me_method = me_method->value();
-+  defaults->me_method = me_method->text().toLatin1().data();
-   defaults->mb_decision = mb_decision->value();
-   defaults->max_b_frames = max_b_frames->value();
-   defaults->num_threads = num_threads->value();
-Index: guvcview-src-2.0.5/gview_encoder/encoder.c
-===
 guvcview-src-2.0.5.orig/gview_encoder/encoder.c
-+++ guvcview-src-2.0.5/gview_encoder/encoder.c
-@@ -445,10 +445,8 @@ static encoder_video_context_t *encoder_
- #if !LIBAVCODEC_VER_AT_LEAST(56,60)
-   video_codec_data->codec_context->me_method = video_defaults->me_method;
- #else
--  if( video_defaults->codec_id == AV_CODEC_ID_H264 && 
video_defaults->me_method > 4)
--  video_defaults->me_method = X264_ME_HEX;
--
--  av_dict_set_int(_codec_data->private_options, "motion-est", 
video_defaults->me_method, 0);
-+  if(video_defaults->me_method)
-+  av_dict_set(_codec_data->private_options, "motion-est", 
video_defaults->me_method, 0);
- #endif
- 
- #if !LIBAVCODEC_VER_AT_LEAST(57,00)
-Index: guvcview-src-2.0.5/gview_encoder/gviewencoder.h
-===
 guvcview-src-2.0.5.orig/gview_encoder/gviewencoder.h
-+++ guvcview-src-2.0.5/gview_encoder/gviewencoder.h
-@@ -104,7 +104,7 @@ typedef struct _video_codec_t
-   char codec_name[20];  //lavc codec_name
-   int mb_decision;  //lavc mb_decision
-   int trellis;  //lavc trellis quantization
--  int me_method;//lavc motion estimation method
-+  const char* me_method;//lavc motion estimation method
-   int mpeg_quant;   //lavc mpeg quantization
-   int max_b_frames; //lavc max b frames
-   int num_threads;  //lavc num threads
-Index: guvcview-src-2.0.5/gview_encoder/video_codecs.c
-===
 guvcview-src-2.0.5.orig/gview_encoder/video_codecs.c
-+++ guvcview-src-2.0.5/gview_encoder/video_codecs.c
-@@ -97,7 +97,7 

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

2019-01-14 Thread Andreas Sturmlechner
commit: 98d0ef6652be6d2564d499086d1d56816d85225d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 14 14:38:55 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan 14 16:03:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d0ef66

media-gfx/nomacs: Drop 3.8.1

Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-gfx/nomacs/Manifest |   1 -
 media-gfx/nomacs/files/nomacs-3.8.1-qt-5.11.patch | 103 --
 media-gfx/nomacs/nomacs-3.8.1.ebuild  |  83 -
 3 files changed, 187 deletions(-)

diff --git a/media-gfx/nomacs/Manifest b/media-gfx/nomacs/Manifest
index ce05039a465..19d73acf879 100644
--- a/media-gfx/nomacs/Manifest
+++ b/media-gfx/nomacs/Manifest
@@ -1,3 +1,2 @@
 DIST nomacs-3.10.2.tar.gz 32302506 BLAKE2B 
14f9eb9188f74c91cf088bac757a4023f6590bc05687b4809794a70bdd1e2dbcc2b58ad65062db14cfec9f4c639ceb21e64df19f1c1584256ee9586ab588d8af
 SHA512 
977dbe24e09b1dd8a33b18c1dbbb3a59106715746b07892f289918205818664fd7b4213028d4288009bcf14a0195759ac1eafca076f81ee72a1e2ae027dd
 DIST nomacs-3.12.tar.gz 1736648 BLAKE2B 
533e18dec4be5d945213ccd629262a2cbae1eba93599f43be0a98d32d0b54d9caad7d963809f2fc9bb5c1ba682a39f44763b5d04e50c6e86658f6cd84324f3d2
 SHA512 
4508354d48a6115cd40f701cc90cbbcb84490e99eaac0295db48f6fea99550d5e2b3e7365128d0c9cc4eeb621906f55e275603d84cb8b6bb164d0b5e2e192119
-DIST nomacs-3.8.1.tar.gz 32184536 BLAKE2B 
3ba4e0b0220797991c5999164e27fb3c57218d87d17858f5cf6098d8b91ddd0b3330836642999ce953f3ce9b538dcb35ecb48400f94f11805cd8eedeed05b110
 SHA512 
ff27570bc15096d0e331ad2c871b2f504a414927b8e6418dedbbbc41f8cd031d9fb142c89c22cff76bf79156f93decf1038e30eecfc3de3e328a325f0134

diff --git a/media-gfx/nomacs/files/nomacs-3.8.1-qt-5.11.patch 
b/media-gfx/nomacs/files/nomacs-3.8.1-qt-5.11.patch
deleted file mode 100644
index e9e68af826f..000
--- a/media-gfx/nomacs/files/nomacs-3.8.1-qt-5.11.patch
+++ /dev/null
@@ -1,103 +0,0 @@
-From 8480a1c62aa99b6a73a76c9af80392568e0dae5e Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Fri, 13 Apr 2018 21:09:17 +0200
-Subject: [PATCH 1/2] Fix cmake with Qt 5.11_beta3
-

- cmake/MacBuildTarget.cmake  | 4 ++--
- cmake/UnixBuildTarget.cmake | 4 ++--
- cmake/WinBuildTarget.cmake  | 4 ++--
- 3 files changed, 6 insertions(+), 6 deletions(-)
-
-diff --git a/cmake/MacBuildTarget.cmake b/cmake/MacBuildTarget.cmake
-index eae9a76b..54633ca1 100644
 a/cmake/MacBuildTarget.cmake
-+++ b/cmake/MacBuildTarget.cmake
-@@ -66,8 +66,8 @@ add_dependencies(
-   ${QUAZIP_DEPENDENCY} 
-   ${LIBQPSD_LIBRARY}) 
- 
--qt5_use_modules(${BINARY_NAME}Widgets Gui Network 
LinguistTools PrintSupport Concurrent Svg)
--qt5_use_modules(${DLL_CORE_NAME}  Widgets Gui Network LinguistTools 
PrintSupport Concurrent Svg)
-+qt5_use_modules(${BINARY_NAME} Qt5::Widgets Qt5::Gui Qt5::Network 
Qt5::PrintSupport Qt5::Concurrent Qt5::Svg)
-+qt5_use_modules(${DLL_CORE_NAME} Qt5::Widgets Qt5::Gui Qt5::Network 
Qt5::PrintSupport Qt5::Concurrent Qt5::Svg)
- 
- # core flags
- set_target_properties(${DLL_CORE_NAME} PROPERTIES 
ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}/libs)
-diff --git a/cmake/UnixBuildTarget.cmake b/cmake/UnixBuildTarget.cmake
-index 4eb3108e..3f592764 100644
 a/cmake/UnixBuildTarget.cmake
-+++ b/cmake/UnixBuildTarget.cmake
-@@ -58,8 +58,8 @@ add_dependencies(
-   ${QUAZIP_DEPENDENCY}
-   ${LIBQPSD_LIBRARY})
- 
--qt5_use_modules(${BINARY_NAME}Widgets Gui Network 
LinguistTools PrintSupport Concurrent Svg)
--qt5_use_modules(${DLL_CORE_NAME}  Widgets Gui Network LinguistTools 
PrintSupport Concurrent Svg)
-+target_link_libraries(${BINARY_NAME} Qt5::Widgets Qt5::Gui Qt5::Network 
Qt5::PrintSupport Qt5::Concurrent Qt5::Svg)
-+target_link_libraries(${DLL_CORE_NAME} Qt5::Widgets Qt5::Gui Qt5::Network 
Qt5::PrintSupport Qt5::Concurrent Qt5::Svg)
- 
- # core flags
- set_target_properties(${DLL_CORE_NAME} PROPERTIES 
ARCHIVE_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}/libs)
-diff --git a/cmake/WinBuildTarget.cmake b/cmake/WinBuildTarget.cmake
-index 9a71d508..63a4b27d 100644
 a/cmake/WinBuildTarget.cmake
-+++ b/cmake/WinBuildTarget.cmake
-@@ -62,8 +62,8 @@ add_dependencies(
- target_include_directories(${BINARY_NAME} PRIVATE 
${OpenCV_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS})
- target_include_directories(${DLL_CORE_NAME}   PRIVATE ${OpenCV_INCLUDE_DIRS} 
${ZLIB_INCLUDE_DIRS})
- 
--qt5_use_modules(${BINARY_NAME}Widgets Gui Network 
LinguistTools PrintSupport Concurrent Svg WinExtras)
--qt5_use_modules(${DLL_CORE_NAME}  Widgets Gui Network LinguistTools 
PrintSupport Concurrent Svg WinExtras)
-+target_link_libraries(${BINARY_NAME} Qt5::Widgets Qt5::Gui Qt5::Network 
Qt5::PrintSupport Qt5::Concurrent Qt5::Svg Qt5::WinExtras)
-+target_link_libraries(${DLL_CORE_NAME} Qt5::Widgets 

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

2019-01-14 Thread Andreas Sturmlechner
commit: 7b0e3372c1436dadb12b09499a8f8f74c7e456e0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Jan 14 15:11:50 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Jan 14 16:03:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0e3372

media-gfx/krita: Drop 4.1.5

Signed-off-by: Andreas Sturmlechner  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-gfx/krita/Manifest   |   1 -
 .../krita/files/krita-4.1.5-desktopfile.patch  |  39 ---
 media-gfx/krita/krita-4.1.5.ebuild | 118 -
 3 files changed, 158 deletions(-)

diff --git a/media-gfx/krita/Manifest b/media-gfx/krita/Manifest
index e3b4fa1a135..fc40c80ff6e 100644
--- a/media-gfx/krita/Manifest
+++ b/media-gfx/krita/Manifest
@@ -1,3 +1,2 @@
-DIST krita-4.1.5.tar.gz 243929094 BLAKE2B 
7288717978e3370b435d73dc1f7005dc339f3d11e0023cb29abf964d16a5751107287d0eca31b053a2068978c4ed40b745358afc5667b71df98e41373171ff82
 SHA512 
7790e3e61c18f5a2f5ba0c5d08f09bf78bcfba563b46751689db00814b9775db85cc64c162aa1c1dc47b5e73e49598b24e6a4599b8350a9e07c15aa4eb463499
 DIST krita-4.1.7-patchset.tar.xz 7208 BLAKE2B 
0c5ca308d5d11878f63312a3980e66838d82a50ad64f67326a4cf35e36b500b22e5d56441516f65c3c09dd9ec7adf2f3b76ed90e3644c24e86a8ddbc499bf772
 SHA512 
a4290b7973cbe157c1d21f914130a3d43fcf6afa223795d1c52ca2ef22b552f0eac7714f97766d70cbfee2b88f5367c5da21baeb76febd7490cec5896791f3b4
 DIST krita-4.1.7.101.tar.gz 243977488 BLAKE2B 
84cfb0f7e6e7b63c3bb9303793c2b74f180982f66ed0756c8878bf8db64b5d9bf9d3cbdb28afba11a952737b02e46759a465d90a2e8822fbb382ae679ba3c3de
 SHA512 
8558501684bc686f431660f3dffeb75575fea3bd23662b6c598c27173cce3145c3ec2caff32b56dd597c50907a69b2faab5259cc6f518f5a0e160cae89004791

diff --git a/media-gfx/krita/files/krita-4.1.5-desktopfile.patch 
b/media-gfx/krita/files/krita-4.1.5-desktopfile.patch
deleted file mode 100644
index 8721ab8a8a9..000
--- a/media-gfx/krita/files/krita-4.1.5-desktopfile.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From d267979af9524372f00a0759f02e75c60f604da5 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Mon, 15 Oct 2018 13:08:09 +0200
-Subject: [PATCH] krita_qimageio.desktop: Fix MimeType separators
-
-Summary:
-desktop file did not pass validation.
-
-/usr/share/applications/krita_qimageio.desktop: error: (will be fatal in the 
future): value 
"image/bmp,image/x-xpixmap,image/x-xbitmap,image/webp,image/vnd.microsoft.icon" 
for key
-"MimeType" in group "Desktop Entry" contains value 
"image/bmp,image/x-xpixmap,image/x-xbitmap,image/webp,image/vnd.microsoft.icon" 
which is an invalid MIME type:
-"image/bmp,image/x-xpixmap,image/x-xbitmap,image/webp,image/vnd.microsoft.icon"
 contains an invalid character in the subtype
-
-Reviewers: #krita, rempt
-
-Reviewed By: #krita, rempt
-
-Tags: #krita
-
-Differential Revision: https://phabricator.kde.org/D16222

- plugins/impex/qimageio/krita_qimageio.desktop | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/plugins/impex/qimageio/krita_qimageio.desktop 
b/plugins/impex/qimageio/krita_qimageio.desktop
-index 4d7dabe235..af366fef07 100644
 a/plugins/impex/qimageio/krita_qimageio.desktop
-+++ b/plugins/impex/qimageio/krita_qimageio.desktop
-@@ -63,7 +63,7 @@ Name[x-test]=xxKritaxx
- Name[zh_CN]=Krita
- Name[zh_TW]=Krita
- Exec=krita %f
--MimeType=image/bmp,image/x-xpixmap,image/x-xbitmap,image/webp,image/vnd.microsoft.icon
-+MimeType=image/bmp;image/x-xpixmap;image/x-xbitmap;image/webp;image/vnd.microsoft.icon;
- Type=Application
- Icon=calligrakrita
- Categories=Qt;KDE;Office;Graphics;
--- 
-2.18.0
-

diff --git a/media-gfx/krita/krita-4.1.5.ebuild 
b/media-gfx/krita/krita-4.1.5.ebuild
deleted file mode 100644
index 71d42ec6ccc..000
--- a/media-gfx/krita/krita-4.1.5.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-PYTHON_COMPAT=( python3_{4,5,6} )
-inherit kde5 python-single-r1
-
-if [[ ${KDE_BUILD_TYPE} = release ]]; then
-   SRC_URI="mirror://kde/stable/${PN}/${PV%.1}/${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-fi
-
-DESCRIPTION="Free digital painting application. Digital Painting, Creative 
Freedom!"
-HOMEPAGE="https://www.kde.org/applications/graphics/krita/ https://krita.org/;
-LICENSE="GPL-3"
-IUSE="color-management fftw gif +gsl heif +jpeg openexr pdf qtmedia +raw tiff 
vc"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemmodels)

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

2019-01-14 Thread Mikle Kolyada
commit: 77e0dc3e1238738667f02a90b130f9482a9db290
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 16:02:41 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 16:03:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77e0dc3e

dev-util/re2c: amd64 stable wrt bug #675138

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-util/re2c/re2c-1.1.1.ebuild b/dev-util/re2c/re2c-1.1.1.ebuild
index 56705fa1c0f..dc7a3a52681 100644
--- a/dev-util/re2c/re2c-1.1.1.ebuild
+++ b/dev-util/re2c/re2c-1.1.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/skvadrik/re2c/releases/download/${PV}/${P}.tar.gz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 
 src_prepare() {
default



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

2019-01-14 Thread Brian Evans
commit: a47c46ccf86d80bb7650bc028a81cf134b89fb78
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Jan 14 16:00:55 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Jan 14 16:02:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a47c46cc

dev-php/xdebug-client: Stable 2.6.1 for amd64

Bug: https://bugs.gentoo.org/675412
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/xdebug-client/xdebug-client-2.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/xdebug-client/xdebug-client-2.6.1.ebuild 
b/dev-php/xdebug-client/xdebug-client-2.6.1.ebuild
index 6956e42e79f..3363f47cf06 100644
--- a/dev-php/xdebug-client/xdebug-client-2.6.1.ebuild
+++ b/dev-php/xdebug-client/xdebug-client-2.6.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
 
 MY_PV="${PV/_/}"
 MY_PV="${MY_PV/rc/RC}"



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

2019-01-14 Thread Brian Evans
commit: 3e758e7c0c0395f639b31693c0d5fba2577dac49
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Jan 14 16:02:03 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Jan 14 16:03:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e758e7c

dev-php/xdebug: Stable 2.6.1 for amd64

Bug: https://bugs.gentoo.org/675412
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/xdebug/xdebug-2.6.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/xdebug/xdebug-2.6.1.ebuild 
b/dev-php/xdebug/xdebug-2.6.1.ebuild
index 6450d9968aa..6310b4c4c4d 100644
--- a/dev-php/xdebug/xdebug-2.6.1.ebuild
+++ b/dev-php/xdebug/xdebug-2.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -16,7 +16,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 inherit php-ext-source-r3
 
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~x86"
 
 DESCRIPTION="A PHP debugging and profiling extension"
 HOMEPAGE="http://www.xdebug.org/;



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

2019-01-14 Thread Mikle Kolyada
commit: c5b3828293e9a7a6e46cb02c346b025a2fe4907e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 15:59:07 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 15:59:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b38282

media-libs/libextractor: security cleanup

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-libs/libextractor/Manifest|   1 -
 media-libs/libextractor/libextractor-1.7.ebuild | 113 
 2 files changed, 114 deletions(-)

diff --git a/media-libs/libextractor/Manifest b/media-libs/libextractor/Manifest
index 7e7cdee03de..5ae63784c0f 100644
--- a/media-libs/libextractor/Manifest
+++ b/media-libs/libextractor/Manifest
@@ -1,2 +1 @@
-DIST libextractor-1.7.tar.gz 8075299 BLAKE2B 
ce738f8839dded4065f8f8d4241c8ad525930f852492605af75c7031b5204c09763c2d4c7a84df6e062512e66509fa308163bcbfd5b655e071c8e43d4fe48f07
 SHA512 
00340af0987f58c16824f50a18484e76f110fa2b4a43788b950ea4313e6916b94d5e7f16e1f21c8a54509885d9b44dabdc5be7727547549836ddd8ca7251dbff
 DIST libextractor-1.8.tar.gz 8315688 BLAKE2B 
2c617cfa667f79faef33e5f445f8d1f38dac61a7d1abd064165f0171b2fcdd812b42f1a5ee78def075383ab74b686f5de6864ce9b9a1983262a3d251ea271dc0
 SHA512 
770a0f1711964657ffb570c0509996b0a109886bfa0652c3a9ca63aa645f495fe5919215cf17da68e8a81a09de54bc937b61c82ec03c9e3998149c780f93451a

diff --git a/media-libs/libextractor/libextractor-1.7.ebuild 
b/media-libs/libextractor/libextractor-1.7.ebuild
deleted file mode 100644
index 02ba88e54be..000
--- a/media-libs/libextractor/libextractor-1.7.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Library to extract metadata from files of arbitrary type"
-HOMEPAGE="https://www.gnu.org/software/libextractor/;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
-IUSE="apparmor +archive +bzip2 ffmpeg flac gif gsf gstreamer gtk jpeg +magic 
midi mp4 mpeg tidy tiff vorbis +zlib" # test
-
-RESTRICT="test"
-
-DEPEND="
-   app-text/iso-codes
-   dev-libs/glib:2
-   media-gfx/exiv2:=
-   sys-devel/libtool
-   virtual/libiconv
-   virtual/libintl
-   apparmor? ( sys-libs/libapparmor )
-   archive? ( app-arch/libarchive:= )
-   bzip2? ( app-arch/bzip2 )
-   ffmpeg? ( virtual/ffmpeg )
-   flac? (
-   media-libs/flac
-   media-libs/libogg
-   )
-   gif? ( media-libs/giflib:= )
-   gsf? ( gnome-extra/libgsf:= )
-   gstreamer? (
-   media-libs/gstreamer:1.0
-   media-libs/gst-plugins-base:1.0
-   )
-   gtk? ( x11-libs/gtk+:3 )
-   jpeg? ( virtual/jpeg:0 )
-   magic? ( sys-apps/file )
-   midi? ( media-libs/libsmf )
-   mp4? ( media-libs/libmp4v2:0 )
-   mpeg? ( media-libs/libmpeg2 )
-   tidy? ( app-text/htmltidy )
-   tiff? ( media-libs/tiff:0 )
-   vorbis? (
-   media-libs/libogg
-   media-libs/libvorbis
-   )
-   zlib? ( sys-libs/zlib )
-"
-BDEPEND="
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-# test? ( app-forensics/zzuf )
-RDEPEND="${DEPEND}
-   !sci-biology/glimmer
-"
-
-src_prepare() {
-   default
-
-   # m4/ax_create_pkgconfig_info.m4 is passing environment LDFLAGS to Libs:
-   sed -i \
-   -e '/^ax_create_pkgconfig_ldflags=/s:$LDFLAGS ::' \
-   -e 's:tidy/tidy.h:tidy.h:' \
-   -e 's:tidy/tidybuffio.h:buffio.h:' \
-   configure src/plugins/html_extractor.c || die
-
-   if ! use tidy; then
-   sed -i -e 's:tidy.h:dIsAbLe&:' configure || die
-   fi
-}
-
-src_configure() {
-   e_ac_cv() {
-   export ac_cv_"$@"
-   }
-
-   e_ac_cv {lib_rpm_rpmReadPackageFile,prog_HAVE_ZZUF}=no
-
-   e_ac_cv header_FLAC_all_h=$(usex flac)
-   e_ac_cv lib_FLAC_FLAC__stream_decoder_init_stream=$(usex flac)
-   e_ac_cv lib_FLAC_FLAC__stream_decoder_init_ogg_stream=$(usex flac)
-
-   e_ac_cv header_sys_apparmor_h=$(usex apparmor)
-   e_ac_cv header_archive_h=$(usex archive)
-   e_ac_cv header_bzlib_h=$(usex bzip2)
-   e_ac_cv header_gif_lib_h=$(usex gif)
-   e_ac_cv header_jpeglib_h=$(usex jpeg)
-   e_ac_cv header_magic_h=$(usex magic)
-   e_ac_cv header_mpeg2dec_mpeg2_h=$(usex mpeg)
-   e_ac_cv header_tiffio_h=$(usex tiff)
-   e_ac_cv header_vorbis_vorbisfile_h=$(usex vorbis)
-   e_ac_cv header_zlib_h=$(usex zlib)
-   e_ac_cv lib_mp4v2_MP4ReadProvider=$(usex mp4)
-   e_ac_cv lib_smf_smf_load_from_memory=$(usex midi)
-
-   econf \
-   --disable-static \
-   --enable-experimental \
-   --enable-glib \
-   --disable-gsf-gnome \
-   $(use_enable ffmpeg) \
-   

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

2019-01-14 Thread Mikle Kolyada
commit: f0b4d92f6941d5805ab5582fe3682b02b98ea288
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 15:57:20 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 15:57:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0b4d92f

media-libs/libextractor: amd64 stable wrt bug #673742

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

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



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

2019-01-14 Thread Matthew Thode
commit: 17bb162dc017bad171ed716641f03483d259d020
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jan 14 15:37:11 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Jan 14 15:37:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17bb162d

app-admin/ansible: 2.5.14 2.6.11 2.7.5 stable amd64/x86 w/ cleanup

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Matthew Thode  gentoo.org>

 app-admin/ansible/Manifest  |  3 --
 app-admin/ansible/ansible-2.5.13.ebuild | 66 -
 app-admin/ansible/ansible-2.5.14.ebuild |  4 +-
 app-admin/ansible/ansible-2.6.10.ebuild | 66 -
 app-admin/ansible/ansible-2.6.11.ebuild |  4 +-
 app-admin/ansible/ansible-2.7.4.ebuild  | 66 -
 app-admin/ansible/ansible-2.7.5.ebuild  |  4 +-
 7 files changed, 6 insertions(+), 207 deletions(-)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index f76dcfbd0e4..986ae10f18e 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,6 +1,3 @@
-DIST ansible-2.5.13.tar.gz 10117549 BLAKE2B 
d5a53f411ff7cc8dfa3cbbcb6623b95d0a736b7359579aef1c81b391d75dc90c81396ffdd1906d1306d1d5ded7a745499fc82db086758b85ece027d9d243ad63
 SHA512 
f9968738b4aea6d6e84cca27159c757b2248bf9fccbc2db0bcafccaba4700ebf87718fe98c912481cb0e8ed6b7a3b7be7a88ab7824092a2db838301fdec2
 DIST ansible-2.5.14.tar.gz 10119785 BLAKE2B 
6e771aafc16053185ee6d275d6d41f64aa3f0d6dffbe721a66b548b97e84d78916e03827d592b961f9a4e0bb03fae09320731a4b8fdb814126cecdfb51f9f136
 SHA512 
9635b1c4bc9a93a24f4bb2894c9fed63803cecb01c5562559e3b808791d1007b26aa0aade4aa05fd4bae0f7d01216588d4e2e0bf4c5fb6cdf677d9b40e9e2de8
-DIST ansible-2.6.10.tar.gz 10716578 BLAKE2B 
cf769c65a25cebe799c9aedebacb3f07e9fa95dc8dfa57ec805861679ac5917432ec894ccd68bef7cb78dcf3b2bb2165c94274ebd932fd376b80ad17238e8922
 SHA512 
8eac8bab53042c25d12aef8ee3fd1b5361a339c176cd21daf8782150183fa5ab05ad65ec4636178c341771544742a487c5ce06f8e9b1492dcab3140788784b5c
 DIST ansible-2.6.11.tar.gz 10722546 BLAKE2B 
d98a82323409b894343c22c0b6226ef643bae34198627a6de426fdb65ef2a9892429edda20d522b8f501fe34c47b463f844abc7e6cf38009bd22398ca0c35f11
 SHA512 
5b795644d2bc02470b8a71be42720405614eac3e602a8906257c82ace36dc4c3727322b12ffadda6e2b752d963a40559cc35b1bc0a85596123896e7d1ac75b6b
-DIST ansible-2.7.4.tar.gz 11769861 BLAKE2B 
3aee95d19ab057e39d174b19f29acf8d2c1011c0f5408f0a78ddd172089794a40a11455cc693a6457f3fd6e30eeb986579bbcc57a384cef0d8aef1013f7f71ec
 SHA512 
4b7cb202577e3c87ec89598ec9a81ebac4b60f62f670322c24b655f5f3a7fab4657c27cce6cfa4f1bb41e7d60f7f6cf80251d86fcb36b1312f6f3ad47be777c9
 DIST ansible-2.7.5.tar.gz 11781337 BLAKE2B 
cbb1ae02ee5733c03797db8acbb79980e24afe6e265aa609bbb22d8b43675c8ec995a4b10f3212e8dbf2fe49fdbccf1d2f8ee251bb4bd11ee5198a2ca2443147
 SHA512 
b3a8a2c10e42f4dcf0f3867901eaaf555e6b9bcbd808b91765a8825db3ec49d618d8893f244d52e49e944d0900a876bbb31b3a7b89d636e435e94cd4b281be18

diff --git a/app-admin/ansible/ansible-2.5.13.ebuild 
b/app-admin/ansible/ansible-2.5.13.ebuild
deleted file mode 100644
index 652b1374c85..000
--- a/app-admin/ansible/ansible-2.5.13.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 python3_{5,6} )
-
-inherit distutils-r1 eutils
-
-DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
-HOMEPAGE="https://ansible.com/;
-SRC_URI="https://releases.ansible.com/${PN}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x64-macos"
-IUSE="doc test"
-
-RDEPEND="
-   dev-python/paramiko[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/httplib2[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/netaddr[${PYTHON_USEDEP}]
-   net-misc/sshpass
-   virtual/ssh
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? (
-   ${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]
-   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-   dev-python/passlib[${PYTHON_USEDEP}]
-   dev-python/coverage[${PYTHON_USEDEP}]
-   dev-python/unittest2[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )"
-
-# not included in release tarball
-RESTRICT="test"
-
-python_compile_all() {
-   if use doc; then
-   cd docs/docsite || die
-   export CPUS=4
-   emake -f Makefile.sphinx html
-   fi
-}
-
-python_test() {
-   nosetests -d -w test/units -v --with-coverage --cover-package=ansible 
--cover-branches || die
-}
-

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

2019-01-14 Thread Brian Evans
commit: 53d954a1a890a2491b7637740b749fd6e78ef15f
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Jan 14 15:30:04 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Jan 14 15:30:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d954a1

dev-php/xdebug-client: Drop old versions

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/xdebug-client/Manifest   |  3 ---
 dev-php/xdebug-client/xdebug-client-2.4.1.ebuild | 29 
 dev-php/xdebug-client/xdebug-client-2.5.0.ebuild | 29 
 dev-php/xdebug-client/xdebug-client-2.6.0.ebuild | 29 
 4 files changed, 90 deletions(-)

diff --git a/dev-php/xdebug-client/Manifest b/dev-php/xdebug-client/Manifest
index 24f74d9c583..ac7f273e765 100644
--- a/dev-php/xdebug-client/Manifest
+++ b/dev-php/xdebug-client/Manifest
@@ -1,6 +1,3 @@
-DIST xdebug-2.4.1.tgz 265542 BLAKE2B 
01526f01bc24f6b241c9647da100b3c080a93bcce4cc00f6a0311b15759457735f1465022874d673069afe6a9a51fe5a7d6a1a2bbf190200193496d640e4381d
 SHA512 
64b345b4809fb0f020eb8fe7a0826056a64728ec9565bbb2d0e717ac7b3ca8aa0856b91c2ba47a7435b7500c5efa643682f245d6cd9d0a537f8bb9ab0d5cea3a
-DIST xdebug-2.5.0.tgz 267640 BLAKE2B 
beaa0ac97867a4d28f7daca3277f3c2071f2bc5cfa9302b64f8e02b65b2745340a689962d4f8e1668e3434ed271af741f8d47466f501e1d05c0e2240f0f39730
 SHA512 
75b1dbf32059eebb6ea3fb6ebb50ab26d73f8ce2964be1fec41ecfd9ae3d8bd55b6997daf03727b28b91ba06d08734865158bed6f038a46f00a1da5424ce5fe6
 DIST xdebug-2.5.3.tgz 279085 BLAKE2B 
cbbfb15e92c3f80cda502340396a6137e2234442fd98bc3fe4b2e08e76cba6292fb5176992aadba7193308ec4c9ab32356922a4416a21b23603e9b48a0d73c06
 SHA512 
b301a5abb92e123bbe2b36f7838b56d370a0f2c0c4d3c350b5014f4b86d31daa66e9bff995eed67a570558f6a72ca46a097266e6ab94c413f1dcb99c0fbd4f22
 DIST xdebug-2.5.5.tgz 279491 BLAKE2B 
2492911db7afca2bc96761788c4ec7eac92cb22a6d65b69070b74f702df2bae1ba7dff9f5edfe83542229dbb7ebb3850b6ed1cf19a5e5969413aac3f2d39fc73
 SHA512 
9faab421bd90c03734c047d8c6dcc021c8bc665eb36781c692f194d04c7dca24fe1eb920ca8dc407e5bf4ae0912c4b917587f940f34b07171a8881d4cf8695d1
-DIST xdebug-2.6.0.tgz 283644 BLAKE2B 
1065585b3bdf07a7448e584dbd94b250d61247d577fe5a0c51fe9aad200ead766c140501ee9f2a6ec2a991896b9f542f911519af8c1351dbe80ac4857d4c8d34
 SHA512 
e81f771478eb45cdae5814037ac1b86bcb8c5616d22dcac436482c350187c53d3cc6d54be740a49dca6d38c58c086db6e4a68eb3004a0152d6215c97512538a2
 DIST xdebug-2.6.1.tgz 283961 BLAKE2B 
4478d591591102a9efa248820831e4d43d89eb9b80379c92fe85c888377a31d855ac4ea98c13ad87da68f7e7f659483cfa36fd4651f245d5603fcada2e2fcf73
 SHA512 
31f26e592b3888d7cc74c6a7c51e0cc1151cf8a32100dda78098fb5b3e307cf8d0445b97247986c75b303a787f89b3937bc042dc52f19ca995753a6843bbd80b

diff --git a/dev-php/xdebug-client/xdebug-client-2.4.1.ebuild 
b/dev-php/xdebug-client/xdebug-client-2.4.1.ebuild
deleted file mode 100644
index 3728ad41804..000
--- a/dev-php/xdebug-client/xdebug-client-2.4.1.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
-
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/rc/RC}"
-
-DESCRIPTION="Xdebug client for the Common Debugger Protocol (DBGP)"
-HOMEPAGE="http://www.xdebug.org/;
-SRC_URI="http://pecl.php.net/get/xdebug-${MY_PV}.tgz;
-LICENSE="Xdebug"
-SLOT="0"
-IUSE="libedit"
-
-S="${WORKDIR}/xdebug-${MY_PV}/debugclient"
-
-DEPEND="libedit? ( dev-libs/libedit )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   econf $(use_with libedit)
-}
-
-src_install() {
-   newbin debugclient xdebug
-}

diff --git a/dev-php/xdebug-client/xdebug-client-2.5.0.ebuild 
b/dev-php/xdebug-client/xdebug-client-2.5.0.ebuild
deleted file mode 100644
index 0251001539e..000
--- a/dev-php/xdebug-client/xdebug-client-2.5.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/rc/RC}"
-
-DESCRIPTION="Xdebug client for the Common Debugger Protocol (DBGP)"
-HOMEPAGE="http://www.xdebug.org/;
-SRC_URI="http://pecl.php.net/get/xdebug-${MY_PV}.tgz;
-LICENSE="Xdebug"
-SLOT="0"
-IUSE="libedit"
-
-S="${WORKDIR}/xdebug-${MY_PV}/debugclient"
-
-DEPEND="libedit? ( dev-libs/libedit )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   econf $(use_with libedit)
-}
-
-src_install() {
-   newbin debugclient xdebug
-}

diff --git a/dev-php/xdebug-client/xdebug-client-2.6.0.ebuild 
b/dev-php/xdebug-client/xdebug-client-2.6.0.ebuild
deleted file mode 100644
index 6956e42e79f..000
--- a/dev-php/xdebug-client/xdebug-client-2.6.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-

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

2019-01-14 Thread Brian Evans
commit: 7e8f393c767275d6e69cc5d139f78759d788231c
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Jan 14 15:26:45 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Jan 14 15:30:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e8f393c

dev-php/xdebug: Drop old versions

Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/xdebug/Manifest|  3 ---
 dev-php/xdebug/xdebug-2.4.1.ebuild | 39 -
 dev-php/xdebug/xdebug-2.5.0.ebuild | 40 --
 dev-php/xdebug/xdebug-2.6.0.ebuild | 40 --
 4 files changed, 122 deletions(-)

diff --git a/dev-php/xdebug/Manifest b/dev-php/xdebug/Manifest
index 24f74d9c583..ac7f273e765 100644
--- a/dev-php/xdebug/Manifest
+++ b/dev-php/xdebug/Manifest
@@ -1,6 +1,3 @@
-DIST xdebug-2.4.1.tgz 265542 BLAKE2B 
01526f01bc24f6b241c9647da100b3c080a93bcce4cc00f6a0311b15759457735f1465022874d673069afe6a9a51fe5a7d6a1a2bbf190200193496d640e4381d
 SHA512 
64b345b4809fb0f020eb8fe7a0826056a64728ec9565bbb2d0e717ac7b3ca8aa0856b91c2ba47a7435b7500c5efa643682f245d6cd9d0a537f8bb9ab0d5cea3a
-DIST xdebug-2.5.0.tgz 267640 BLAKE2B 
beaa0ac97867a4d28f7daca3277f3c2071f2bc5cfa9302b64f8e02b65b2745340a689962d4f8e1668e3434ed271af741f8d47466f501e1d05c0e2240f0f39730
 SHA512 
75b1dbf32059eebb6ea3fb6ebb50ab26d73f8ce2964be1fec41ecfd9ae3d8bd55b6997daf03727b28b91ba06d08734865158bed6f038a46f00a1da5424ce5fe6
 DIST xdebug-2.5.3.tgz 279085 BLAKE2B 
cbbfb15e92c3f80cda502340396a6137e2234442fd98bc3fe4b2e08e76cba6292fb5176992aadba7193308ec4c9ab32356922a4416a21b23603e9b48a0d73c06
 SHA512 
b301a5abb92e123bbe2b36f7838b56d370a0f2c0c4d3c350b5014f4b86d31daa66e9bff995eed67a570558f6a72ca46a097266e6ab94c413f1dcb99c0fbd4f22
 DIST xdebug-2.5.5.tgz 279491 BLAKE2B 
2492911db7afca2bc96761788c4ec7eac92cb22a6d65b69070b74f702df2bae1ba7dff9f5edfe83542229dbb7ebb3850b6ed1cf19a5e5969413aac3f2d39fc73
 SHA512 
9faab421bd90c03734c047d8c6dcc021c8bc665eb36781c692f194d04c7dca24fe1eb920ca8dc407e5bf4ae0912c4b917587f940f34b07171a8881d4cf8695d1
-DIST xdebug-2.6.0.tgz 283644 BLAKE2B 
1065585b3bdf07a7448e584dbd94b250d61247d577fe5a0c51fe9aad200ead766c140501ee9f2a6ec2a991896b9f542f911519af8c1351dbe80ac4857d4c8d34
 SHA512 
e81f771478eb45cdae5814037ac1b86bcb8c5616d22dcac436482c350187c53d3cc6d54be740a49dca6d38c58c086db6e4a68eb3004a0152d6215c97512538a2
 DIST xdebug-2.6.1.tgz 283961 BLAKE2B 
4478d591591102a9efa248820831e4d43d89eb9b80379c92fe85c888377a31d855ac4ea98c13ad87da68f7e7f659483cfa36fd4651f245d5603fcada2e2fcf73
 SHA512 
31f26e592b3888d7cc74c6a7c51e0cc1151cf8a32100dda78098fb5b3e307cf8d0445b97247986c75b303a787f89b3937bc042dc52f19ca995753a6843bbd80b

diff --git a/dev-php/xdebug/xdebug-2.4.1.ebuild 
b/dev-php/xdebug/xdebug-2.4.1.ebuild
deleted file mode 100644
index 322f4d39742..000
--- a/dev-php/xdebug/xdebug-2.4.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PHP_EXT_NAME="xdebug"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="yes"
-PHP_EXT_INIFILE="2.4.1-xdebug.ini"
-
-USE_PHP="php7-0 php5-6"
-
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/rc/RC}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-inherit php-ext-source-r3
-
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
-
-DESCRIPTION="A PHP debugging and profiling extension"
-HOMEPAGE="http://www.xdebug.org/;
-SRC_URI="http://pecl.php.net/get/${PN}-${MY_PV}.tgz;
-LICENSE="Xdebug"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}
-   ~dev-php/xdebug-client-${PV}"
-DOCS=( README.rst CREDITS )
-
-pkg_postinst() {
-   ewarn "We have set xdebug.default_enable to 0 (off), as xdebug can be"
-   ewarn "installed as a dependency, and not all users will want xdebug to 
be"
-   ewarn "enabled by default. If you want to enable it, you should edit 
the"
-   ewarn "ini file and set xdebug.default_enable to 1. Alternatively you 
can"
-   ewarn "call xdebug_enable() in your code."
-}

diff --git a/dev-php/xdebug/xdebug-2.5.0.ebuild 
b/dev-php/xdebug/xdebug-2.5.0.ebuild
deleted file mode 100644
index 6c947603240..000
--- a/dev-php/xdebug/xdebug-2.5.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PHP_EXT_NAME="xdebug"
-PHP_EXT_INI="yes"
-PHP_EXT_ZENDEXT="yes"
-PHP_EXT_INIFILE="2.4.1-xdebug.ini"
-
-USE_PHP="php7-1 php7-0 php5-6"
-
-MY_PV="${PV/_/}"
-MY_PV="${MY_PV/rc/RC}"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-inherit php-ext-source-r3
-
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
-
-DESCRIPTION="A PHP debugging and profiling extension"
-HOMEPAGE="http://www.xdebug.org/;
-SRC_URI="http://pecl.php.net/get/${PN}-${MY_PV}.tgz;
-LICENSE="Xdebug"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}
-   ~dev-php/xdebug-client-${PV}"
-DOCS=( README.rst CREDITS )
-PHP_EXT_ECONF_ARGS=()
-

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

2019-01-14 Thread Thomas Deutschmann
commit: 6ae778ba036ae27fc5f3a914483b2911482a211c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 14 15:24:11 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 14 15:28:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ae778ba

dev-php/pecl-memcached: bump to v3.1.3

- Add PHP 7.3 support

- Make test suite run

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/pecl-memcached/Manifest|  1 +
 dev-php/pecl-memcached/pecl-memcached-3.1.3.ebuild | 88 ++
 2 files changed, 89 insertions(+)

diff --git a/dev-php/pecl-memcached/Manifest b/dev-php/pecl-memcached/Manifest
index ab6b86e794b..706a7ea5eef 100644
--- a/dev-php/pecl-memcached/Manifest
+++ b/dev-php/pecl-memcached/Manifest
@@ -1,4 +1,5 @@
 DIST memcached-2.2.0.tgz 70449 BLAKE2B 
dca76bfb993c647860ae2ce648580e6131c6df30d30def9a1f907fce06621f3d5a21b93605da9fc50bda542fd950317a5a398d6bf0db85f61469cfb5e9757566
 SHA512 
61207d3f8c11b0620dbcb20fb2ebb6d1fc10159a7e879ee91556a303c3dcdf3d2571e8dda5efcbed77ff779f5c9b226aa48800630b9e7781cd964126b848c356
 DIST memcached-3.0.3.tgz 77310 BLAKE2B 
9756878087594f1bf13b1edaa38dd18f7cd4d6a61618444f2c2a32972acb67e3aee66b2083b7303d50f53cfd7902374fed49db68a2780e0d824d90f4289ecb54
 SHA512 
cb24d76f82ce8c1fdd8877bbb46131545bba5011cfff965e3c190b7c0f71f754b47ded6289d3125724d9de781b916971aaadfa0b247c6fe2f51aab77dce61b61
 DIST memcached-3.0.4.tgz 78776 BLAKE2B 
ce2539e2e4960217d9ee3b50ed5625214d4b22c4d7e64595fdbfa2d130bce0402a67561f76a50690991996d84f16f926f27a057722bfab66ba3c388772ed77a8
 SHA512 
d0a0f9e99cbcc6829528554551dfacf0d943d54d4be60c9da708de82913a2a0bed7c51d594ae3ecf0c13b56064739f074ce6ada5d7433bdc7e26e8caf9cf5ca2
+DIST memcached-3.1.3.tgz 82673 BLAKE2B 
ccb9267cbd974337b7cd8836ab6e35c4fd9398d731dcd333bcb664b91037d1775651e6bb5d00b602767834681289064ede678ea2e6e3641631bba4990a380dee
 SHA512 
9c09648c26011c5e749bee1a556c976e6e5e648dc65580e7caa296dab79e3764edf1408f96edcaca5efb0229320c86fcfa0422e55d486beb6466892f7e08c4a3
 DIST pecl-memcached-3.0.0.tar.gz 83732 BLAKE2B 
0e38d34b6ccd72f1e58305c3b4fbb3437d53ba93bb00a610bf4e91701e2bee6acb20667f3a74b2f2aa8d09dfcd1475e82808aeade6b22364aea0a359edf1e889
 SHA512 
ddc6b6fbdd55c6cdf64b9a7833142ea43eb974ecaae3437b30ed731f0ddbf4108b46ea5eb01a197788978273bdff31da6a0c0fb0354335b85618d98ba070bfec

diff --git a/dev-php/pecl-memcached/pecl-memcached-3.1.3.ebuild 
b/dev-php/pecl-memcached/pecl-memcached-3.1.3.ebuild
new file mode 100644
index 000..c4e0fb13e2e
--- /dev/null
+++ b/dev-php/pecl-memcached/pecl-memcached-3.1.3.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PHP_EXT_NAME="memcached"
+DOCS=( ChangeLog README.markdown )
+
+USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3" # Pretend to support all four 
targets...
+inherit php-ext-pecl-r3
+USE_PHP="php7-0 php7-1 php7-2 php7-3" # But only truly build for these three.
+
+DESCRIPTION="Interface PHP with memcached via libmemcached library"
+LICENSE="PHP-3"
+SLOT="7"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples igbinary json sasl +session test"
+
+COMMON_DEPEND=">=dev-libs/libmemcached-1.0.14[sasl?]
+   sys-libs/zlib
+   igbinary? ( 
dev-php/igbinary[php_targets_php7-0?,php_targets_php7-1?,php_targets_php7-2?,php_targets_php7-3?]
 )
+"
+
+DEPEND="
+   php_targets_php7-0? (
+   ${COMMON_DEPEND} dev-lang/php:7.0[session?,json?]
+   )
+   php_targets_php7-1? (
+   ${COMMON_DEPEND} dev-lang/php:7.1[session?,json?]
+   )
+   php_targets_php7-2? (
+   ${COMMON_DEPEND} dev-lang/php:7.2[session?,json?]
+   )
+   php_targets_php7-3? (
+   ${COMMON_DEPEND} dev-lang/php:7.3[session?,json?]
+   )
+   test? ( net-misc/memcached )"
+RDEPEND="
+   php_targets_php7-0? (
+   ${COMMON_DEPEND} dev-lang/php:7.0[session?,json?]
+   )
+   php_targets_php7-1? (
+   ${COMMON_DEPEND} dev-lang/php:7.1[session?,json?]
+   )
+   php_targets_php7-2? (
+   ${COMMON_DEPEND} dev-lang/php:7.2[session?,json?]
+   )
+   php_targets_php7-3? (
+   ${COMMON_DEPEND} dev-lang/php:7.3[session?,json?]
+   )"
+
+src_prepare(){
+   if use php_targets_php7-0 || use php_targets_php7-1 || use 
php_targets_php7-2 || use php_targets_php7-3 ; then
+   php-ext-source-r3_src_prepare
+   else
+   default_src_prepare
+   fi
+}
+
+src_configure() {
+   local PHP_EXT_ECONF_ARGS="--enable-memcached
+   $(use_enable session memcached-session)
+   $(use_enable sasl memcached-sasl)
+   $(use_enable json memcached-json)
+   $(use_enable igbinary memcached-igbinary)"
+
+   php-ext-source-r3_src_configure
+}
+
+src_test() {
+   local memcached_opts=( -d -P "${T}/memcached.pid" -p 11211 

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

2019-01-14 Thread Bernard Cafarelli
commit: f0e4fd25d5431bbd7b0312dd0f1005906af0e7b8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Mon Jan 14 14:51:17 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Mon Jan 14 14:57:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e4fd25

media-video/peek: depend on media-video/ffmpeg[xcb]

Closes: https://bugs.gentoo.org/674954
Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-video/peek/{peek-1.3.1-r1.ebuild => peek-1.3.1-r2.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/peek/peek-1.3.1-r1.ebuild 
b/media-video/peek/peek-1.3.1-r2.ebuild
similarity index 92%
rename from media-video/peek/peek-1.3.1-r1.ebuild
rename to media-video/peek/peek-1.3.1-r2.ebuild
index d6a13683e4e..93add0710fa 100644
--- a/media-video/peek/peek-1.3.1-r1.ebuild
+++ b/media-video/peek/peek-1.3.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="keybinder test"
 
 RDEPEND=">=dev-libs/glib-2.38:2
-   media-video/ffmpeg[X,encode,vpx]
+   media-video/ffmpeg[X,encode,vpx,xcb]
virtual/imagemagick-tools
>=x11-libs/gtk+-3.14:3
keybinder? ( dev-libs/keybinder:3 )"



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-imagick/files/, dev-php/pecl-imagick/

2019-01-14 Thread Thomas Deutschmann
commit: 507e6ed891234a0078758860bfa6da1c1a067e99
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Jan 14 14:47:09 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Jan 14 14:47:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=507e6ed8

dev-php/pecl-imagick: bump to snapshot version to add PHP 7.3 support

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/pecl-imagick/Manifest  |  1 +
 .../pecl-imagick-3.4.3-tsrm_ls-is-undeclared.patch | 18 
 .../pecl-imagick-3.4.3_p20181129.ebuild| 32 ++
 3 files changed, 51 insertions(+)

diff --git a/dev-php/pecl-imagick/Manifest b/dev-php/pecl-imagick/Manifest
index 0d16e258963..7c89f1f4088 100644
--- a/dev-php/pecl-imagick/Manifest
+++ b/dev-php/pecl-imagick/Manifest
@@ -1 +1,2 @@
 DIST imagick-3.4.3.tgz 245410 BLAKE2B 
778c3b8ad3ad5e698044a832d71409eea220a82041544abeb88b59370d4b719388ce13b277d7aad84e67e40fcbbfa06d66a2458d4d9e8d33bb7358ab46368230
 SHA512 
2cb2b856cf83a78d3542cdf7c69554dcc063a0541e9092b24e5e1fbd8928066a4a3de154049d0202c35addbc5055ccfbb5910ae92f2f13da80ddfc025340ddcd
+DIST pecl-imagick-3.4.3_p20181129.tar.gz 260443 BLAKE2B 
43d30514f5faeeaa5894e2eb51d5b2ebbe2940728c7770eec60c41c9f01f86f7423d87a71a9ad2068e388f3994c31e499940c2042994846a6b6ab66542c7ea53
 SHA512 
7f3719118849857d19b9a35a63de68d4e992780fd41231a041d6d152ab2f0abd3d8215ab2362a998f8fe6a733c087d3c3e5d09fa826480d621739e92f5aeabf2

diff --git 
a/dev-php/pecl-imagick/files/pecl-imagick-3.4.3-tsrm_ls-is-undeclared.patch 
b/dev-php/pecl-imagick/files/pecl-imagick-3.4.3-tsrm_ls-is-undeclared.patch
new file mode 100644
index 000..ff0a1eb3888
--- /dev/null
+++ b/dev-php/pecl-imagick/files/pecl-imagick-3.4.3-tsrm_ls-is-undeclared.patch
@@ -0,0 +1,18 @@
+https://github.com/mkoppanen/imagick/issues/264
+
+--- a/imagick_file.c
 b/imagick_file.c
+@@ -160,11 +160,13 @@ static
+ int php_imagick_read_image_using_imagemagick(php_imagick_object *intern, 
struct php_imagick_file_t *file, ImagickOperationType type TSRMLS_DC)
+ {
+ 
++#ifdef ZTS
+ #ifndef ZEND_ENGINE_3
+ #if PHP_VERSION_ID >= 50600
+   // This suppresses an 'unused parameter' warning.
+   (void)tsrm_ls;
+ #endif
++#endif
+ #endif
+ 
+   if (type == ImagickReadImage) {

diff --git a/dev-php/pecl-imagick/pecl-imagick-3.4.3_p20181129.ebuild 
b/dev-php/pecl-imagick/pecl-imagick-3.4.3_p20181129.ebuild
new file mode 100644
index 000..e1c86fc7343
--- /dev/null
+++ b/dev-php/pecl-imagick/pecl-imagick-3.4.3_p20181129.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PHP_EXT_NAME="imagick"
+
+MY_COMMIT="d57a444766a321fa226266f51f1f42ee2cc29cc7"
+
+USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3"
+
+S="${WORKDIR}/imagick-${MY_COMMIT}"
+
+inherit php-ext-source-r3
+
+KEYWORDS="~amd64 ~x86"
+
+DESCRIPTION="PHP wrapper for the ImageMagick library"
+HOMEPAGE="https://pecl.php.net/imagick https://github.com/mkoppanen/imagick;
+SRC_URI="https://github.com/mkoppanen/imagick/archive/${MY_COMMIT}.tar.gz -> 
${P}.tar.gz"
+LICENSE="PHP-3.01"
+SLOT="0"
+IUSE="examples test"
+
+# imagemagick[-openmp] is needed wrt bug 547922 and upstream
+# https://github.com/mkoppanen/imagick#openmp
+RDEPEND=">=media-gfx/imagemagick-6.2.4:=[-openmp]"
+DEPEND="${RDEPEND}
+   test? ( >=media-gfx/imagemagick-6.2.4:=[jpeg,png,truetype] )"
+
+PATCHES=( "${FILESDIR}"/${PN}-3.4.3-tsrm_ls-is-undeclared.patch )
+
+PHP_EXT_ECONF_ARGS="--with-imagick=${EPREFIX%/}/usr"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-mediaportal-tvserver/

2019-01-14 Thread Craig Andrews
commit: 9fd6cbc63342ca450a4c1de0a85675a5f074d279
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Jan 14 14:45:22 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jan 14 14:47:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fd6cbc6

media-plugins/kodi-pvr-mediaportal-tvserver: 3.5.15 version bump

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-pvr-mediaportal-tvserver/Manifest  | 1 +
 ...er-.ebuild => kodi-pvr-mediaportal-tvserver-3.5.15.ebuild} | 8 
 .../kodi-pvr-mediaportal-tvserver-.ebuild | 8 
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest 
b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
index 021cdecd9ce..e56f40f1cc0 100644
--- a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
+++ b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
@@ -1,2 +1,3 @@
 DIST kodi-pvr-mediaportal-tvserver-2.4.16.tar.gz 385817 BLAKE2B 
9602fbd123f47b8586014637f66361e95d9b9946867d7f2280f1ae36e9316e762ea5536d9d223e48a0699eb99778e7c9fa3426b6b838af4a7920cdf196eedb30
 SHA512 
f59e1fdcaaa1179452efa4226f780172a34602848ac6dc1d6c563c7baf72f8025fd1e418c33dc93d5bdac7d477e46702731aa1e8892207a47b6a07199cec3757
 DIST kodi-pvr-mediaportal-tvserver-2.4.19.tar.gz 385817 BLAKE2B 
2cd89d3940ef6a52a78be8791152715db8a55683120405eea2c42c3c58df58ac905b4f3c7aa50a6c45f8b94fe32e6d2d05811242c741a8ba7b10d8801d5d959f
 SHA512 
d017d3d4b01fc86aaf22a1f44612e35c55b07888d8d0548cfad644d94aadedc4c86a50dd3d9c681c5e01e744971d25869f8bfa1a106c780492e4f3ee1b017e0f
+DIST kodi-pvr-mediaportal-tvserver-3.5.15.tar.gz 390146 BLAKE2B 
5c07fed246b7df90374cba2fdd448fc9a3dc26e33fdc51a700bf6d250eee3d3b0fac24035c0a5cc640aee8772edaa30d6695ad637353b6025af631cfa345dbaf
 SHA512 
7ccac03752283dd9f33f53eecdb1bdf573fe17ae6a93bf695bf00aff35cca228e511467d2241cc3a82599be0f0622a450b2d98fe3229cf7e706d37c8f5089043

diff --git 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.15.ebuild
similarity index 85%
copy from 
media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
copy to 
media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.15.ebuild
index 0ffde16926b..15c92436c88 100644
--- 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
+++ 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-3.5.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ case ${PV} in
inherit git-r3
;;
 *)
-   CODENAME="Krypton"
+   CODENAME="Leia"
KEYWORDS="~amd64 ~x86"

SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}"
@@ -28,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-
-   =media-libs/kodi-platform-
+   =media-tv/kodi-18*
+   =media-libs/kodi-platform-18*
dev-libs/tinyxml
"
 

diff --git 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
index 0ffde16926b..277ea63d523 100644
--- 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
+++ 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -16,7 +16,7 @@ case ${PV} in
inherit git-r3
;;
 *)
-   CODENAME="Krypton"
+   CODENAME="Leia"
KEYWORDS="~amd64 ~x86"

SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}"
@@ -28,8 +28,8 @@ SLOT="0"
 IUSE=""
 
 DEPEND="
-   =media-tv/kodi-
-   =media-libs/kodi-platform-
+   ~media-tv/kodi-
+   ~media-libs/kodi-platform-
dev-libs/tinyxml
"
 



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

2019-01-14 Thread Mikle Kolyada
commit: 8c5c8f6896b9061b5ca9d7d309b350f3a776863b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:42:46 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:42:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c5c8f68

app-office/calligra: amd64 stable wrt bug #674856

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-office/calligra/calligra-3.1.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/calligra/calligra-3.1.0-r3.ebuild 
b/app-office/calligra/calligra-3.1.0-r3.ebuild
index 766e2b2b60a..c771b3f427f 100644
--- a/app-office/calligra/calligra-3.1.0-r3.ebuild
+++ b/app-office/calligra/calligra-3.1.0-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.calligra.org/;
 SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 CAL_FTS=( karbon sheets stage words )
 



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

2019-01-14 Thread Mikle Kolyada
commit: 140f00e4c7dee050b6d7ddf438a86a785650c5e5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:42:52 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:42:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=140f00e4

app-office/calligraplan: amd64 stable wrt bug #674856

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-office/calligraplan/calligraplan-3.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/calligraplan/calligraplan-3.1.0.ebuild 
b/app-office/calligraplan/calligraplan-3.1.0.ebuild
index 1ee634ee176..750bd0f7af6 100644
--- a/app-office/calligraplan/calligraplan-3.1.0.ebuild
+++ b/app-office/calligraplan/calligraplan-3.1.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://www.calligra.org/;
 SRC_URI="mirror://kde/stable/${PN/plan/}/${PV}/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="activities +holidays kwallet pim X"
 
 # FIXME: Disabled by upstream for good reason



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

2019-01-14 Thread Mikle Kolyada
commit: 5431c9bd1b77cba4a82652e403f9b386aa46c658
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:40:43 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:40:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5431c9bd

media-gfx/krita: amd64 stable wrt bug #673232

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-gfx/krita/krita-4.1.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/krita/krita-4.1.7-r1.ebuild 
b/media-gfx/krita/krita-4.1.7-r1.ebuild
index 9a37a3abbdb..929971405f1 100644
--- a/media-gfx/krita/krita-4.1.7-r1.ebuild
+++ b/media-gfx/krita/krita-4.1.7-r1.ebuild
@@ -12,7 +12,7 @@ inherit kde5 python-single-r1
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV%.1}/${P}.101.tar.gz
https://dev.gentoo.org/~asturm/distfiles/${P}-patchset.tar.xz;
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 DESCRIPTION="Free digital painting application. Digital Painting, Creative 
Freedom!"



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

2019-01-14 Thread Mikle Kolyada
commit: 50b9696d6978f5ecca665f88e758fa4773d6bfbf
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:39:19 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:39:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b9696d

dev-libs/libdazzle: amd64 stable wrt bug #674870

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-libs/libdazzle/libdazzle-3.30.2.ebuild 
b/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
index 176f07af959..3fd594c2511 100644
--- a/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
+++ b/dev-libs/libdazzle/libdazzle-3.30.2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libdazzle;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~sparc x86"
 
 IUSE="gtk-doc +introspection test vala"
 REQUIRED_USE="vala? ( introspection )"



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

2019-01-14 Thread Mikle Kolyada
commit: dbd0cc6a45a26bc54ce6b297f506d416e9e06a60
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:39:28 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:39:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbd0cc6a

www-client/epiphany: amd64 stable wrt bug #674870

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/www-client/epiphany/epiphany-3.30.2.ebuild 
b/www-client/epiphany/epiphany-3.30.2.ebuild
index 07d03ef129a..d189facc12e 100644
--- a/www-client/epiphany/epiphany-3.30.2.ebuild
+++ b/www-client/epiphany/epiphany-3.30.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Web;
 LICENSE="GPL-3+"
 SLOT="0"
 IUSE="test"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
 
 COMMON_DEPEND="
>=dev-libs/glib-2.52.0:2



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

2019-01-14 Thread Mikle Kolyada
commit: 9c66f40d06cabd55b09b5de8fa02cd48ccbdfd3c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:36:23 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:36:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c66f40d

kde-misc/wacomtablet: amd64 stable wrt bug #674964

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 kde-misc/wacomtablet/wacomtablet-3.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-misc/wacomtablet/wacomtablet-3.1.1.ebuild 
b/kde-misc/wacomtablet/wacomtablet-3.1.1.ebuild
index 18299936372..00a61245cbd 100644
--- a/kde-misc/wacomtablet/wacomtablet-3.1.1.ebuild
+++ b/kde-misc/wacomtablet/wacomtablet-3.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ 
HOMEPAGE="https://www.linux-apps.com/content/show.php?action=content=114
 SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 CDEPEND="



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

2019-01-14 Thread Mikle Kolyada
commit: e0b022febbb98574f4dc141665e8fd7cbdaacc22
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:37:51 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:37:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b022fe

dev-libs/libunistring: amd64 stable wrt bug #674644

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/dev-libs/libunistring/libunistring-0.9.10.ebuild 
b/dev-libs/libunistring/libunistring-0.9.10.ebuild
index 226a286a26c..68132ba6cef 100644
--- a/dev-libs/libunistring/libunistring-0.9.10.ebuild
+++ b/dev-libs/libunistring/libunistring-0.9.10.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-3 GPL-3"
 SLOT="0/2"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 PATCHES=(



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

2019-01-14 Thread Mikle Kolyada
commit: 0165b782483946cab80dc6e9845d6e39b9817435
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:34:50 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:35:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0165b782

dev-lang/php: amd64 stable wrt bug #675182

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-lang/php/php-5.6.40.ebuild | 2 +-
 dev-lang/php/php-7.1.26.ebuild | 2 +-
 dev-lang/php/php-7.2.14.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

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

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

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



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

2019-01-14 Thread Mikle Kolyada
commit: 8670ca29d28cbb3b413decb0e701e946e8c522b9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:33:34 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:35:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8670ca29

media-gfx/nomacs: amd64 stable wrt bug #674030

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-gfx/nomacs/nomacs-3.10.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/nomacs/nomacs-3.10.2.ebuild 
b/media-gfx/nomacs/nomacs-3.10.2.ebuild
index 049b159eda8..8e7356daf99 100644
--- a/media-gfx/nomacs/nomacs-3.10.2.ebuild
+++ b/media-gfx/nomacs/nomacs-3.10.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 x86 ~amd64-linux"
+KEYWORDS="amd64 x86 ~amd64-linux"
 IUSE="+jpeg +opencv raw tiff zip"
 
 REQUIRED_USE="



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

2019-01-14 Thread Manuel Rüger
commit: 5853d927bfeaa19de0843b7c73a17144d123e0fa
Author: Dan Molik  danmolik  com>
AuthorDate: Fri Jan 11 15:03:28 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Mon Jan 14 14:33:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5853d927

sys-cluster/kubeadm: New Package

kubeadm is the new stable tool for standing up kubernetes clusters. It
reached general availability in 1.13.0 and is positioned to become the
go to tool to bootstap kuberentes clusters.

Package-Manager: Portage-2.3.55, Repoman-2.3.12
Signed-off-by: Dan Molik  danmolik.com>
Tested-by: Dan Molik  danmolik.com>
Signed-off-by: Manuel Rüger  gentoo.org>

 sys-cluster/kubeadm/Manifest  |  1 +
 sys-cluster/kubeadm/kubeadm-1.13.2.ebuild | 47 +++
 sys-cluster/kubeadm/metadata.xml  | 30 
 3 files changed, 78 insertions(+)

diff --git a/sys-cluster/kubeadm/Manifest b/sys-cluster/kubeadm/Manifest
new file mode 100644
index 000..5ecce56fc15
--- /dev/null
+++ b/sys-cluster/kubeadm/Manifest
@@ -0,0 +1 @@
+DIST kubernetes-1.13.2.tar.gz 28771642 BLAKE2B 
4a5c5a8e0c05faab3fb6a26854e7c8643b893c2a1f5d5b56aacea869d86426dffe358222034b826d66dfd19855bee71cad7356ff483c27218019e4adda499ce7
 SHA512 
2f24119fc21d7bdbb60174b46da94ce3f2f6a3c638e9d96323c93c20039aeb06f9c9a3a48c43bb36b71eff25cf72967e780e3339b35ad7ad7a7a7c35662c96bd

diff --git a/sys-cluster/kubeadm/kubeadm-1.13.2.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.13.2.ebuild
new file mode 100644
index 000..6c4b699b759
--- /dev/null
+++ b/sys-cluster/kubeadm/kubeadm-1.13.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot bash-completion-r1
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.11
+   dev-go/go-bindata"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" -e 
"s/-s -w/-w/" src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN} GOFLAGS=-v
+   pushd src/${EGO_PN} || die
+   _output/bin/${PN} completion bash > ${PN}.bash || die
+   _output/bin/${PN} completion zsh > ${PN}.zsh || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+
+   newbashcomp ${PN}.bash ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   popd || die
+}

diff --git a/sys-cluster/kubeadm/metadata.xml b/sys-cluster/kubeadm/metadata.xml
new file mode 100644
index 000..c1a4c821066
--- /dev/null
+++ b/sys-cluster/kubeadm/metadata.xml
@@ -0,0 +1,30 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   d...@danmolik.com
+   Dan Molik
+   
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   
+   kubeadm performs the actions necessary to get a minimum viable 
cluster up
+   and running. By design, it cares only about bootstrapping, not 
about
+   provisioning machines. Likewise, installing various 
nice-to-have addons,
+   like the Kubernetes Dashboard, monitoring solutions, and 
cloud-specific
+   addons, is not in scope.
+
+   Instead, we expect higher-level and more tailored tooling to be 
built on
+   top of kubeadm, and ideally, using kubeadm as the basis of all 
deployments
+   will make it easier to create conformant clusters.
+   
+   
+   kubernetes/kubernetes
+   
+



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

2019-01-14 Thread Mikle Kolyada
commit: 30e87cb93b2e6233fbe142b229f79e69a1f9c574
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:32:38 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:32:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e87cb9

media-libs/phonon: amd64 stable wrt bug #674860

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/media-libs/phonon/phonon-4.10.2.ebuild 
b/media-libs/phonon/phonon-4.10.2.ebuild
index 264801e2557..9fb77676d3b 100644
--- a/media-libs/phonon/phonon-4.10.2.ebuild
+++ b/media-libs/phonon/phonon-4.10.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 if [[ ${PV} != ** ]]; then
SRC_URI="mirror://kde/stable/phonon/${PV}/${P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3



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

2019-01-14 Thread Mikle Kolyada
commit: 28c1734002f67984ce5bd8dbad6d298724a1fd16
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:32:45 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:32:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c17340

media-libs/phonon-gstreamer: amd64 stable wrt bug #674860

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r3.ebuild 
b/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r3.ebuild
index cc7a98acb8d..adda03c843e 100644
--- a/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r3.ebuild
+++ b/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,7 +8,7 @@ MY_P=${MY_PN}-${PV}
 
 if [[ ${PV} != ** ]]; then
SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3



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

2019-01-14 Thread Mikle Kolyada
commit: abead00cd7307edbe86c52021e5d0c41994dddfd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:32:52 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:32:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abead00c

media-libs/phonon-vlc: amd64 stable wrt bug #674860

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild 
b/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild
index f4ae408d5c7..77e5d972c17 100644
--- a/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild
+++ b/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild
@@ -7,7 +7,7 @@ MY_PN="phonon-backend-vlc"
 
 if [[ ${PV} != ** ]]; then

SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_PN}-${PV}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3



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

2019-01-14 Thread Mikle Kolyada
commit: 0977d0e5a6929572cf90fe790f00fe273d8c7fa2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:31:31 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:31:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0977d0e5

sys-libs/efivar: amd64 stable wrt bug #673538

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

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

diff --git a/sys-libs/efivar/efivar-37.ebuild b/sys-libs/efivar/efivar-37.ebuild
index ca9c71b8bfe..237f2835e60 100644
--- a/sys-libs/efivar/efivar-37.ebuild
+++ b/sys-libs/efivar/efivar-37.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rhinstaller/efivar/releases/download/${PV}/${P}.tar.
 
 LICENSE="GPL-2"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 x86"
 
 RDEPEND="dev-libs/popt"
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: sys-boot/efibootmgr/

2019-01-14 Thread Mikle Kolyada
commit: 003d306757b7d9a2287a4455a62737640a97f0f9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:31:35 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:31:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=003d3067

sys-boot/efibootmgr: amd64 stable wrt bug #673538

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 sys-boot/efibootmgr/efibootmgr-16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/efibootmgr/efibootmgr-16.ebuild 
b/sys-boot/efibootmgr/efibootmgr-16.ebuild
index 83a3903ac37..70350fc76a4 100644
--- a/sys-boot/efibootmgr/efibootmgr-16.ebuild
+++ b/sys-boot/efibootmgr/efibootmgr-16.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rhinstaller/efibootmgr/releases/download/${PV}/${P}.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 x86"
 IUSE=""
 
 RDEPEND="sys-apps/pciutils



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

2019-01-14 Thread Mikle Kolyada
commit: 8df3209d5baa8a8c6ab664169236eae881e51d93
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Jan 14 14:29:37 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Jan 14 14:29:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8df3209d

media-video/guvcview: amd64 stable wrt bug #674208

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 media-video/guvcview/guvcview-2.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/guvcview/guvcview-2.0.6.ebuild 
b/media-video/guvcview/guvcview-2.0.6.ebuild
index 8f62edffa65..92634f1db14 100644
--- a/media-video/guvcview/guvcview-2.0.6.ebuild
+++ b/media-video/guvcview/guvcview-2.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="gsl libav pulseaudio qt5"
 
 RDEPEND="



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

2019-01-14 Thread Anthony G. Basile
commit: 0c172006fa4df0a9b35bed388213211b722d9383
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Jan 14 14:17:31 2019 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Jan 14 14:17:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c172006

www-apps/moodle: bump to 3.1.16, 3.4.7, 3.5.4, 3.6.2

Signed-off-by: Anthony G. Basile  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 www-apps/moodle/Manifest   |   9 +-
 .../{moodle-3.1.15.ebuild => moodle-3.1.16.ebuild} |   2 +-
 www-apps/moodle/moodle-3.3.9.ebuild| 123 -
 .../{moodle-3.5.3.ebuild => moodle-3.4.7.ebuild}   |   2 +-
 .../{moodle-3.6.1.ebuild => moodle-3.5.4.ebuild}   |   2 +-
 .../{moodle-3.4.6.ebuild => moodle-3.6.2.ebuild}   |   2 +-
 6 files changed, 8 insertions(+), 132 deletions(-)

diff --git a/www-apps/moodle/Manifest b/www-apps/moodle/Manifest
index 0f54d954082..bce00339cf2 100644
--- a/www-apps/moodle/Manifest
+++ b/www-apps/moodle/Manifest
@@ -1,5 +1,4 @@
-DIST moodle-3.1.15.tgz 38055035 BLAKE2B 
d55f523fce2f7193330665132b4d7faf6a7a698ca8f297d7e2dbc03e859ed43aef34292666e931e6c86aee2f414097accfd8ece7f5ecf53a8439697fdb28ba31
 SHA512 
17100ad6caa3a7ca5dc8f09b12215700061ead3a30701985e89d39e1e063d6142391c01c2dc0d1c7f4b86bd80b8d1ccc1d0477389691d6545b3be590b0508912
-DIST moodle-3.3.9.tgz 45123816 BLAKE2B 
0e23668fb6ac536a1a87067fc9574424c33934402184ffc6f25f48f7e87c70fb0d9b25bb12b46320d54968ddb8b337471be7b5795369585ce4c488f93168f6d9
 SHA512 
6150a4c0f4a85ac508d2da9b35fd506eca614c3a44d582096fdecd113899a72481507ce85101505570e0e8237f7af744e3d7a8cf990cf8b250f5ac335ebae1de
-DIST moodle-3.4.6.tgz 45961570 BLAKE2B 
49a20412b386cc3f463dd3be58dc56f50821298d36109889b3eb092d39f4dfe477dfbbf1ea3f1b6ce8076b4d4dca21efc00e7d772b0ced395139d76e56759482
 SHA512 
2afa7facb2068c63d0a1bd42da40a1cb688a1bcdedc5287e59633bb085f96c65598396f03b99b35c9aa3769463dea316584ce3793978101989fc53f53140ff04
-DIST moodle-3.5.3.tgz 46645219 BLAKE2B 
bd1aa2ae73f807c3b8a0e341893c7b004761e147fe42eac615153ae1ee7fa4bf9268e160a14ab1ac62dfe2c5e462d042cb30b725d6a28844e4749492b6a9b193
 SHA512 
130d1c30acb78452021f4fd5c0d29bfc4c938993e7d0cf3b2fdf13061fa993f9cebc7214f287e62ceb13bfd5999c12132a45fd4aec5efe8c25078dfe97bee861
-DIST moodle-3.6.1.tgz 47660920 BLAKE2B 
3dba1adb2a2c9926a0efb1942df4239a020c2c2d661a6a2a6825acc70b6e7aab69afb4f0f297cd316fd5f693ab711cccea8bc5c68fa1b72288297b8d00791088
 SHA512 
79cf5127748e6511101b9f802165eefbe6dafbe89806e8616902765d14481af0b6ba06757be5fecd343bda7dde261c58018f940254549decc66452415a99ab9d
+DIST moodle-3.1.16.tgz 38057145 BLAKE2B 
09995a5ff87069e47b891e0e19a038d10af820d37b756803ceb2dcebad9a04a827a5b2548a3dd205d07eb4d9e116a15a12fa3d6832e524dde76450b5170e979a
 SHA512 
46ed0cd702e86529dda32b128604acc7c6bc13530bb3acab402d5c36f59a55dd35e0ffaa827aef85f7e75b0b9939514f868c0dc8ddc1b5f8aa49637acdf89c5c
+DIST moodle-3.4.7.tgz 46051440 BLAKE2B 
2b6a2eb7c071da56236a0a8d08b944fa9f5028bf9f22de259302885804cbb7e3e5bc5f1e18524a183fea362c8809ee38590dfcd836bef9de976fd7ab89b2fbdd
 SHA512 
6819a20cd477b37744786793b74dcf258098640e453345cc940fae02789cca31b43730dc421715be411ce77ef23fa876189a2c481efb5e643282355b4fdf043b
+DIST moodle-3.5.4.tgz 46648296 BLAKE2B 
2ed589f46061beb81e558b96461729aafe0624237c99b2e306c57da04ca6bff709d8377012bcfbb73a9a03dabf12dfa5d2a21e47139702b067f3fde0b99794f8
 SHA512 
03d0821f0863ed360129f00dda834618ae6b5dbb5794ee1a993eaaecbbac4dae8e6085f83cd86674bd93104a17229cb662db57a5500c3eff09f1480fbef9772d
+DIST moodle-3.6.2.tgz 47673889 BLAKE2B 
f81844f933ec3bc2ebd92957d16a9e59c43678b9ee548767bfacc443a68f574792c641787722cad8fe3007fd0c8d279ac097c361843089441bbe21b4af5b7492
 SHA512 
30e48e6fff788294db83d7889e32caf12fa07459dbd61a5cb0495f3c5b6bc005e41faee447a0cd6441e5120dbd04ee02056425c67a118755d45bc29e32867d74

diff --git a/www-apps/moodle/moodle-3.1.15.ebuild 
b/www-apps/moodle/moodle-3.1.16.ebuild
similarity index 98%
rename from www-apps/moodle/moodle-3.1.15.ebuild
rename to www-apps/moodle/moodle-3.1.16.ebuild
index 13576b6f03f..b96de5d5680 100644
--- a/www-apps/moodle/moodle-3.1.15.ebuild
+++ b/www-apps/moodle/moodle-3.1.16.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"

diff --git a/www-apps/moodle/moodle-3.3.9.ebuild 
b/www-apps/moodle/moodle-3.3.9.ebuild
deleted file mode 100644
index e7b7c22a19e..000
--- a/www-apps/moodle/moodle-3.3.9.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit versionator webapp
-
-AVC=( $(get_version_components) )
-MY_BRANCH="stable${AVC[0]}${AVC[1]}"
-
-DESCRIPTION="The Moodle Course Management System"
-HOMEPAGE="https://moodle.org;
-SRC_URI="https://download.moodle.org/${MY_BRANCH}/${P}.tgz;
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-KEYWORDS="~alpha 

  1   2   >