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

2019-10-18 Thread Zac Medico
commit: 4331274f2faca6052f771eb2c4840afd25efa58c
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Oct 19 05:25:27 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Oct 19 05:27:20 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4331274f

testEbuildFetch: test emirrordist invocation

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

 lib/portage/tests/ebuild/test_fetch.py | 24 +++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/lib/portage/tests/ebuild/test_fetch.py 
b/lib/portage/tests/ebuild/test_fetch.py
index c0a76b701..da63d9dea 100644
--- a/lib/portage/tests/ebuild/test_fetch.py
+++ b/lib/portage/tests/ebuild/test_fetch.py
@@ -9,11 +9,12 @@ import tempfile
 
 import portage
 from portage import shutil, os
-from portage.const import BASH_BINARY
+from portage.const import BASH_BINARY, PORTAGE_PYM_PATH
 from portage.tests import TestCase
 from portage.tests.resolver.ResolverPlayground import ResolverPlayground
 from portage.tests.util.test_socks5 import AsyncHTTPServer
 from portage.util.configparser import ConfigParserError
+from portage.util.futures import asyncio
 from portage.util.futures.executor.fork import ForkExecutor
 from portage.util._async.SchedulerInterface import SchedulerInterface
 from portage.util._eventloop.global_event_loop import global_event_loop
@@ -98,6 +99,27 @@ class EbuildFetchTestCase(TestCase):
portdb = root_config.trees["porttree"].dbapi
settings = config(clone=playground.settings)
 
+   emirrordist_cmd = (portage._python_interpreter, 
'-b', '-Wd',
+   os.path.join(self.bindir, 
'emirrordist'),
+   '--distfiles', settings['DISTDIR'],
+   '--config-root', settings['EPREFIX'],
+   '--repositories-configuration', 
settings.repositories.config_string(),
+   '--repo', 'test_repo', '--mirror')
+
+   env = os.environ.copy()
+   env['PYTHONPATH'] = ':'.join(
+   filter(None, [PORTAGE_PYM_PATH] + 
os.environ.get('PYTHONPATH', '').split(':')))
+
+   for k in distfiles:
+   
os.unlink(os.path.join(settings['DISTDIR'], k))
+
+   proc = 
loop.run_until_complete(asyncio.create_subprocess_exec(*emirrordist_cmd, 
env=env))
+   
self.assertEqual(loop.run_until_complete(proc.wait()), 0)
+
+   for k in distfiles:
+   with 
open(os.path.join(settings['DISTDIR'], k), 'rb') as f:
+   self.assertEqual(f.read(), 
distfiles[k])
+
# Tests only work with one ebuild at a time, so 
the config
# pool only needs a single config instance.
class config_pool:



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

2019-10-18 Thread Hans de Graaff
commit: 5430bf43ee6b06c0eb9ef66cd1bd668a4f5e591b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Oct 18 10:35:44 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Oct 19 05:28:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5430bf43

app-text/hyperestraier: add ruby25

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

 app-text/hyperestraier/hyperestraier-1.4.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/hyperestraier/hyperestraier-1.4.13.ebuild 
b/app-text/hyperestraier/hyperestraier-1.4.13.ebuild
index 533097cd25a..283cffc0303 100644
--- a/app-text/hyperestraier/hyperestraier-1.4.13.ebuild
+++ b/app-text/hyperestraier/hyperestraier-1.4.13.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby24 ruby25"
 RUBY_OPTIONAL="yes"
 
 inherit autotools java-pkg-opt-2 perl-functions ruby-ng



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

2019-10-18 Thread Hans de Graaff
commit: fbc2fa209afed2fa86ba6fb14e4204f9f8f0a634
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Oct 18 06:40:39 2019 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Oct 19 05:28:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc2fa20

x11-libs/libgxim: add ruby25

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

 x11-libs/libgxim/libgxim-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libgxim/libgxim-0.5.0.ebuild 
b/x11-libs/libgxim/libgxim-0.5.0.ebuild
index 6ea2f2c4e7e..b712cd49c53 100644
--- a/x11-libs/libgxim/libgxim-0.5.0.ebuild
+++ b/x11-libs/libgxim/libgxim-0.5.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
-USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+USE_RUBY="ruby24 ruby25"
 
 inherit autotools ruby-single
 



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

2019-10-18 Thread Matt Turner
commit: b6cecba7cc51375d6e1e81191ef2f9b54f216da3
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 19 02:31:32 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 19 02:31:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6cecba7

dev-vcs/git-2.23.0: alpha stable, bug 697962

Signed-off-by: Matt Turner  gentoo.org>

 dev-vcs/git/git-2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.23.0.ebuild b/dev-vcs/git/git-2.23.0.ebuild
index 7610de3655f..152ef178805 100644
--- a/dev-vcs/git/git-2.23.0.ebuild
+++ b/dev-vcs/git/git-2.23.0.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-10-18 Thread Matt Turner
commit: 2f1d63411e7c55a7201387522e83f58ba561562c
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 19 02:18:46 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 19 02:18:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f1d6341

dev-vcs/git-2.23.0: ppc64 stable, bug 697962

Signed-off-by: Matt Turner  gentoo.org>

 dev-vcs/git/git-2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.23.0.ebuild b/dev-vcs/git/git-2.23.0.ebuild
index 09ff7203800..7610de3655f 100644
--- a/dev-vcs/git/git-2.23.0.ebuild
+++ b/dev-vcs/git/git-2.23.0.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-10-18 Thread Matt Turner
commit: ef75801c2bdfd35bd5f3bd2b4c1da27640b4c652
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 19 02:18:43 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 19 02:18:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef75801c

dev-vcs/git-2.23.0: ppc stable, bug 697962

Signed-off-by: Matt Turner  gentoo.org>

 dev-vcs/git/git-2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.23.0.ebuild b/dev-vcs/git/git-2.23.0.ebuild
index 9aaca331c17..09ff7203800 100644
--- a/dev-vcs/git/git-2.23.0.ebuild
+++ b/dev-vcs/git/git-2.23.0.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-10-18 Thread Zac Medico
commit: ab481a27e3a672ec762140f9d7cc6be883665a7b
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Oct 19 01:32:45 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Oct 19 01:36:15 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ab481a27

testEbuildFetch: add mirror support

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

 lib/portage/tests/ebuild/test_fetch.py | 25 +++--
 1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/lib/portage/tests/ebuild/test_fetch.py 
b/lib/portage/tests/ebuild/test_fetch.py
index ac45f8720..c0a76b701 100644
--- a/lib/portage/tests/ebuild/test_fetch.py
+++ b/lib/portage/tests/ebuild/test_fetch.py
@@ -29,6 +29,13 @@ class EbuildFetchTestCase(TestCase):
 
def testEbuildFetch(self):
 
+   user_config = {
+   "make.conf":
+   (
+   
'GENTOO_MIRRORS="{scheme}://{host}:{port}"',
+   ),
+   }
+
distfiles = {
'bar': b'bar\n',
'foo': b'foo\n',
@@ -37,7 +44,6 @@ class EbuildFetchTestCase(TestCase):
ebuilds = {
'dev-libs/A-1': {
'EAPI': '7',
-   'RESTRICT': 'primaryuri',
'SRC_URI': 
'''{scheme}://{host}:{port}/distfiles/bar.txt -> bar

{scheme}://{host}:{port}/distfiles/foo.txt -> foo''',
},
@@ -47,7 +53,13 @@ class EbuildFetchTestCase(TestCase):
scheme = 'http'
host = '127.0.0.1'
content = {}
+
+   content['/distfiles/layout.conf'] = b'[structure]\n0=flat\n'
+
for k, v in distfiles.items():
+   # mirror path
+   content['/distfiles/{}'.format(k)] = v
+   # upstream path
content['/distfiles/{}.txt'.format(k)] = v
 
with AsyncHTTPServer(host, content, loop) as server:
@@ -58,7 +70,16 @@ class EbuildFetchTestCase(TestCase):
scheme=scheme, host=host, 
port=server.server_port)
ebuilds_subst[cpv] = metadata
 
-   playground = ResolverPlayground(ebuilds=ebuilds_subst, 
distfiles=distfiles)
+   user_config_subst = user_config.copy()
+   for configname, configdata in user_config.items():
+
+   configdata_sub = []
+   for line in configdata:
+   configdata_sub.append(line.format(
+   scheme=scheme, host=host, 
port=server.server_port))
+   user_config_subst[configname] = 
tuple(configdata_sub)
+
+   playground = ResolverPlayground(ebuilds=ebuilds_subst, 
distfiles=distfiles, user_config=user_config_subst)
ro_distdir = tempfile.mkdtemp()
eubin = os.path.join(playground.eprefix, "usr", "bin")
try:



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

2019-10-18 Thread Mike Gilbert
commit: 838b6612b964efa1ceba6bdd548cff6fb9da68c3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Oct 19 01:05:37 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Oct 19 01:05:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=838b6612

dev-lang/python: re-enable all openssl algorithms

Package-Manager: Portage-2.3.77_p5, Repoman-2.3.17_p81
Signed-off-by: Mike Gilbert  gentoo.org>

 dev-lang/python/files/python-3.7.5-hashlib.patch |  25 ++
 dev-lang/python/python-3.7.5-r1.ebuild   | 329 +++
 2 files changed, 354 insertions(+)

diff --git a/dev-lang/python/files/python-3.7.5-hashlib.patch 
b/dev-lang/python/files/python-3.7.5-hashlib.patch
new file mode 100644
index 000..a70a4796310
--- /dev/null
+++ b/dev-lang/python/files/python-3.7.5-hashlib.patch
@@ -0,0 +1,25 @@
+From 2c0c356ca109d1550bfb09b0da7dec3f80db77a3 Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Fri, 18 Oct 2019 16:39:16 -0400
+Subject: [PATCH] Call OPENSSL_init_crypto for openssl >= 1.1.0
+
+---
+ Modules/_hashopenssl.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c
+index b13ade60496..8abbde5120f 100644
+--- a/Modules/_hashopenssl.c
 b/Modules/_hashopenssl.c
+@@ -1077,6 +1077,8 @@ PyInit__hashlib(void)
+ /* Load all digest algorithms and initialize cpuid */
+ OPENSSL_add_all_algorithms_noconf();
+ ERR_load_crypto_strings();
++#else
++
OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS|OPENSSL_INIT_ADD_ALL_DIGESTS, 
NULL);
+ #endif
+ 
+ /* TODO build EVP_functions openssl_* entries dynamically based
+-- 
+2.23.0
+

diff --git a/dev-lang/python/python-3.7.5-r1.ebuild 
b/dev-lang/python/python-3.7.5-r1.ebuild
new file mode 100644
index 000..fb27d536f6e
--- /dev/null
+++ b/dev-lang/python/python-3.7.5-r1.ebuild
@@ -0,0 +1,329 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+WANT_LIBTOOL="none"
+
+inherit autotools flag-o-matic pax-utils python-utils-r1 toolchain-funcs
+
+MY_P="Python-${PV}"
+PATCHSET_VERSION="3.7.4-1"
+
+DESCRIPTION="An interpreted, interactive, object-oriented programming language"
+HOMEPAGE="https://www.python.org/;
+SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~floppym/python/python-gentoo-patches-${PATCHSET_VERSION}.tar.xz;
+
+LICENSE="PSF-2"
+SLOT="3.7/3.7m"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86"
+IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline 
sqlite +ssl test tk wininst +xml"
+RESTRICT="!test? ( test )"
+
+# Do not add a dependency on dev-lang/python to this ebuild.
+# If you need to apply a patch which requires python for bootstrapping, please
+# run the bootstrap code on your dev box and include the results in the
+# patchset. See bug 447752.
+
+RDEPEND="app-arch/bzip2:0=
+   app-arch/xz-utils:0=
+   sys-apps/util-linux:0=
+   >=sys-libs/zlib-1.1.3:0=
+   virtual/libffi:=
+   virtual/libintl
+   gdbm? ( sys-libs/gdbm:0=[berkdb] )
+   ncurses? ( >=sys-libs/ncurses-5.2:0= )
+   readline? ( >=sys-libs/readline-4.1:0= )
+   sqlite? ( >=dev-db/sqlite-3.3.8:3= )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   tk? (
+   >=dev-lang/tcl-8.0:0=
+   >=dev-lang/tk-8.0:0=
+   dev-tcltk/blt:0=
+   dev-tcltk/tix
+   )
+   xml? ( >=dev-libs/expat-2.1:0= )
+   !!https://bugs.gentoo.org/show_bug.cgi?id=50309
+   if is-flagq -O3; then
+   is-flagq -fstack-protector-all && replace-flags -O3 -O2
+   use hardened && replace-flags -O3 -O2
+   fi
+
+   # Export CXX so it ends up in /usr/lib/python3.X/config/Makefile.
+   tc-export CXX
+
+   # Set LDFLAGS so we link modules with -lpython3.2 correctly.
+   # Needed on FreeBSD unless Python 3.2 is already installed.
+   # Please query BSD team before removing this!
+   append-ldflags "-L."
+
+   # Fix implicit declarations on cross and prefix builds. Bug #674070.
+   use ncurses && append-cppflags -I"${ESYSROOT}"/usr/include/ncursesw
+
+   local dbmliborder
+   if use gdbm; then
+   dbmliborder+="${dbmliborder:+:}gdbm"
+   fi
+
+   local myeconfargs=(
+   --enable-shared
+   $(use_enable ipv6)
+   --infodir='${prefix}/share/info'
+   --mandir='${prefix}/share/man'
+   --with-computed-gotos
+   --with-dbmliborder="${dbmliborder}"
+   --with-libc=
+   --enable-loadable-sqlite-extensions
+   --without-ensurepip
+   --with-system-expat
+   --with-system-ffi
+   )
+
+   OPT="" econf 

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

2019-10-18 Thread Yixun Lan
commit: d18adaa71d33bfe32f4ead31a735d1cf225693e3
Author: Yixun Lan  gentoo  org>
AuthorDate: Sat Oct 19 00:36:24 2019 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sat Oct 19 00:36:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d18adaa7

net-misc/you-get: version bump, 0.4.1355

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Yixun Lan  gentoo.org>

 net-misc/you-get/Manifest|  1 +
 net-misc/you-get/you-get-0.4.1355.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/net-misc/you-get/Manifest b/net-misc/you-get/Manifest
index 7f1a8b84fea..311bd15b49e 100644
--- a/net-misc/you-get/Manifest
+++ b/net-misc/you-get/Manifest
@@ -1,2 +1,3 @@
 DIST you-get-0.4.1270.tar.gz 143127 BLAKE2B 
2c18a97001caf0c44a5baf30042cde61ac0ad2e8a5d0c0dc178474ba9cb70671c4bc9ecbbb72515f4fec2306598ba1b42d66192f2a16aa8fd0d65ff47eeb0b61
 SHA512 
fc21563396d73b0fbd7ff02c423a256be548957ef5d72277c887d33ee05269c2aa404a66972e934d4f0076ebd30bfa1b0914b05c25b38b63b3701dad1361587b
+DIST you-get-0.4.1355.tar.gz 143921 BLAKE2B 
da303fbcedd0818d785f846da4022364c3782d74b50f01b8aa2c0da38f4d61108da22a991e3ae02660021df6ee3378fb9e03826210563aee37e7f85e72b52fa1
 SHA512 
20f092d49e554f994b57dec4f12a8a0f4aaf418f8e0ce68611e1424f5ee512cad104c5498fe7d133ae8fa1c65440fdbebb8d523d9792336ea5c62ac3a58aa9ba
 DIST you-get-0.4.536.tar.gz 104745 BLAKE2B 
48a5432ae1d4448ce0dcbbfdf52225920eb8cd8e575030cc62da0637f10cc7bb02a983c27c5bdd4a9fac1b45ab129db4f7fcc2ebb4bd17189918e04dabae0cfd
 SHA512 
13d280dd5f0e6b6b5033de6eb94a251007bfc21bd99a9c0af86a5ed7b1c9b267d742c278dd80ec0a13445e09f2e22aea23bc77a5da12557be33f97731258abc6

diff --git a/net-misc/you-get/you-get-0.4.1355.ebuild 
b/net-misc/you-get/you-get-0.4.1355.ebuild
new file mode 100644
index 000..4565235b149
--- /dev/null
+++ b/net-misc/you-get/you-get-0.4.1355.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=(python{3_5,3_6,3_7})
+
+inherit eutils distutils-r1
+
+DESCRIPTION="utility to download media contents from the web"
+HOMEPAGE="http://www.soimort.org/you-get;
+SRC_URI="https://github.com/soimort/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   virtual/ffmpeg
+"



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

2019-10-18 Thread Andreas Sturmlechner
commit: 73309c9f2c62bf1c2b1c32814bd77d6fbfd7a3bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Oct 18 23:47:47 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Oct 18 23:59:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73309c9f

app-office/libreoffice: Fix build with >=dev-db/mysql-connector-c-8

Thanks-to: Peter Levine  gmail.com>
Closes: https://bugs.gentoo.org/692422
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../libreoffice-6.3.2.2-mysql-connector-c-8.patch  | 45 ++
 app-office/libreoffice/libreoffice-6.3.2.2.ebuild  |  3 ++
 app-office/libreoffice/libreoffice-6.3..ebuild |  3 ++
 3 files changed, 51 insertions(+)

diff --git 
a/app-office/libreoffice/files/libreoffice-6.3.2.2-mysql-connector-c-8.patch 
b/app-office/libreoffice/files/libreoffice-6.3.2.2-mysql-connector-c-8.patch
new file mode 100644
index 000..677ba399575
--- /dev/null
+++ b/app-office/libreoffice/files/libreoffice-6.3.2.2-mysql-connector-c-8.patch
@@ -0,0 +1,45 @@
+From 5917ba8bc645a2b105ec089101b8a664481b5b61 Mon Sep 17 00:00:00 2001
+From: Peter Levine 
+Date: Thu, 17 Oct 2019 23:08:57 -0400
+Subject: Fix building against MySQL Connector/C 8
+
+In MySQL Connector/C 8, my_bool is replaced by bool. It was
+previously defined as char. When building against
+MySQL Connector/C 8, this leads to type punning build errors.
+Redefine affected members of struct BindMetaData as bool if using
+version 8 of greater. Otherwise, default to char.
+
+Change-Id: If12b975d95afae86502867cb334cb4195802f91d
+Reviewed-on: https://gerrit.libreoffice.org/81002
+Reviewed-by: Samuel Mehrbrodt 
+Tested-by: Samuel Mehrbrodt 
+---
+ .../source/drivers/mysqlc/mysqlc_preparedstatement.hxx | 10 --
+ 1 file changed, 8 insertions(+), 2 deletions(-)
+
+diff --git a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx 
b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
+index 1df2c70..3450473 100644
+--- a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
 b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
+@@ -39,11 +39,17 @@ using ::com::sun::star::uno::Reference;
+ using ::com::sun::star::uno::RuntimeException;
+ using ::com::sun::star::uno::Type;
+ 
++#if defined MYSQL_VERSION_ID && (MYSQL_VERSION_ID >= 8)
++using my_bool = bool;
++#else
++using my_bool = char;
++#endif
++
+ struct BindMetaData
+ {
+-char is_null = 0;
++my_bool is_null = 0;
+ unsigned long length = 0;
+-char error = 0;
++my_bool error = 0;
+ };
+ 
+ typedef ::cppu::ImplHelper5

[gentoo-commits] repo/gentoo:master commit in: games-strategy/hedgewars/

2019-10-18 Thread James Le Cuirot
commit: e2ed095b96abdc83a8e7502fe6fdc9f5909386da
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Oct 18 22:08:44 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Oct 18 22:08:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2ed095b

games-strategy/hedgewars: Drop obsolete patches in 1.0.0

Closes: https://github.com/gentoo/gentoo/pull/13240
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: James Le Cuirot  gentoo.org>

 .../{hedgewars-1.0.0.ebuild => hedgewars-1.0.0-r1.ebuild} | 8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/games-strategy/hedgewars/hedgewars-1.0.0.ebuild 
b/games-strategy/hedgewars/hedgewars-1.0.0-r1.ebuild
similarity index 94%
rename from games-strategy/hedgewars/hedgewars-1.0.0.ebuild
rename to games-strategy/hedgewars/hedgewars-1.0.0-r1.ebuild
index c98f3a05e5d..9e8d0f6b128 100644
--- a/games-strategy/hedgewars/hedgewars-1.0.0.ebuild
+++ b/games-strategy/hedgewars/hedgewars-1.0.0-r1.ebuild
@@ -7,12 +7,10 @@ CMAKE_MAKEFILE_GENERATOR=emake
 inherit cmake-utils xdg-utils
 
 MY_P=${PN}-src-${PV}
-DEB_PATCH_VER=2
 
 DESCRIPTION="A turn-based strategy, artillery, action and comedy game"
 HOMEPAGE="https://www.hedgewars.org/;
-SRC_URI="https://www.hedgewars.org/download/releases/${MY_P}.tar.bz2
-   
mirror://debian/pool/main/h/${PN}/${PN}_0.9.23-dfsg-${DEB_PATCH_VER}.debian.tar.xz"
+SRC_URI="https://www.hedgewars.org/download/releases/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2 Apache-2.0 FDL-1.3"
 SLOT="0"
@@ -70,10 +68,6 @@ BDEPEND="
 
 S="${WORKDIR}"/${MY_P}
 
-PATCHES=(
-   "${FILESDIR}"/${PN}-0.9.22-rpath-fix.patch
-)
-
 src_configure() {
local mycmakeargs=(
-DMINIMAL_FLAGS=ON



[gentoo-commits] repo/gentoo:master commit in: games-strategy/hedgewars/files/, games-strategy/hedgewars/

2019-10-18 Thread James Le Cuirot
commit: 6ad4cd876224d1f588a427c2d103889e538ddc66
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Oct 18 22:09:22 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Oct 18 22:09:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad4cd87

games-strategy/hedgewars: Drop old 0.9.25

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

 games-strategy/hedgewars/Manifest  |   2 -
 .../files/hedgewars-0.9.22-rpath-fix.patch |   9 --
 games-strategy/hedgewars/hedgewars-0.9.25.ebuild   | 111 -
 3 files changed, 122 deletions(-)

diff --git a/games-strategy/hedgewars/Manifest 
b/games-strategy/hedgewars/Manifest
index 83790d60101..71168ed483b 100644
--- a/games-strategy/hedgewars/Manifest
+++ b/games-strategy/hedgewars/Manifest
@@ -1,3 +1 @@
-DIST hedgewars-src-0.9.25.tar.bz2 175276967 BLAKE2B 
8f0779ca05ffbf18f607716bbec03bf0d6633cd6c3594bcb94b78ba606ed8c36d418d7b5456574cc0a08489e143d2390ed7ebcc8637e7987231ba04c0d5b5331
 SHA512 
956c21a7203586485e885f98fa4eccdc2fd34b50c0f817c1f6f610af1b4f341a5bb32bb8e0ace13f78ce2fb79a48934b89c1b56459a411c07a1809041968
 DIST hedgewars-src-1.0.0.tar.bz2 177668452 BLAKE2B 
cbd99a4403b911023fb4a522ed1ed04272f07705321585b0e7a8f56785ef11bf8c654df95016b0af94f603c387f73804cbd95e13a92e875990adf5fec149e334
 SHA512 
9aeb904550239040a878a0e7ae5006aa4d824124b61d813b9e6f6dfe1bd1c8f5fe395e0fd6e58d685ef1259abd4669e03b985be129c620be15f6e5ad82519ec2
-DIST hedgewars_0.9.23-dfsg-2.debian.tar.xz 77488 BLAKE2B 
5de6fa2ad91f1346f679d07b3b445bd119d2cdd3c715ace20fc36abe726330ccf9a9b69ec56c58cfca4cc6256ff248b0cc0b0e27caf2a79df0f1662ea7727e8e
 SHA512 
03680446930279178ddff85a87fc27b7c26ad6d850c8f26571517ebbd6dff296db216da6b56d4bd55c659786bc5c76e2b67a63052ee38e150655e60c08f7c491

diff --git a/games-strategy/hedgewars/files/hedgewars-0.9.22-rpath-fix.patch 
b/games-strategy/hedgewars/files/hedgewars-0.9.22-rpath-fix.patch
deleted file mode 100644
index 881c0d3217d..000
--- a/games-strategy/hedgewars/files/hedgewars-0.9.22-rpath-fix.patch
+++ /dev/null
@@ -1,9 +0,0 @@
 a/cmake_modules/paths.cmake2015-12-02 15:02:38.0 +0100
-+++ b/cmake_modules/paths.cmake2015-12-02 15:15:24.729980850 +0100
-@@ -67,5 +67,5 @@ else(APPLE AND NOT (${CMAKE_INSTALL_PREF
- # - the third one is the full path of the system dir
- #source http://www.cmake.org/pipermail/cmake/2008-January/019290.html
- #skip this if the install prefix is the standard one
--set(CMAKE_INSTALL_RPATH 
"$ORIGIN/../${target_library_install_dir}/:$ORIGIN/:${CMAKE_INSTALL_PREFIX}/${target_library_install_dir}/")
-+#set(CMAKE_INSTALL_RPATH 
"$ORIGIN/../${target_library_install_dir}/:$ORIGIN/:${CMAKE_INSTALL_PREFIX}/${target_library_install_dir}/")
- endif(APPLE)

diff --git a/games-strategy/hedgewars/hedgewars-0.9.25.ebuild 
b/games-strategy/hedgewars/hedgewars-0.9.25.ebuild
deleted file mode 100644
index c98f3a05e5d..000
--- a/games-strategy/hedgewars/hedgewars-0.9.25.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR=emake
-inherit cmake-utils xdg-utils
-
-MY_P=${PN}-src-${PV}
-DEB_PATCH_VER=2
-
-DESCRIPTION="A turn-based strategy, artillery, action and comedy game"
-HOMEPAGE="https://www.hedgewars.org/;
-SRC_URI="https://www.hedgewars.org/download/releases/${MY_P}.tar.bz2
-   
mirror://debian/pool/main/h/${PN}/${PN}_0.9.23-dfsg-${DEB_PATCH_VER}.debian.tar.xz"
-
-LICENSE="GPL-2 Apache-2.0 FDL-1.3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="libav server"
-
-QA_FLAGS_IGNORED="/usr/bin/hwengine" # pascal sucks
-QA_PRESTRIPPED="/usr/bin/hwengine" # pascal sucks
-
-# qtcore:5= - depends on private header
-DEPEND="
-   >=dev-games/physfs-3.0.1
-   dev-lang/lua:0=
-   dev-qt/qtcore:5=
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-libs/libpng:0=
-   media-libs/libsdl2:=
-   media-libs/sdl2-image:=
-   media-libs/sdl2-mixer:=[vorbis]
-   media-libs/sdl2-net:=
-   media-libs/sdl2-ttf:=
-   sys-libs/zlib
-   !x86? (
-   libav? ( media-video/libav:= )
-   !libav? ( media-video/ffmpeg:= )
-   )"
-RDEPEND="${DEPEND}
-   app-arch/xz-utils
-   >=media-fonts/dejavu-2.28
-   media-fonts/wqy-zenhei"
-BDEPEND="
-   dev-qt/linguist-tools:5
-   server? (
-   >=dev-lang/ghc-6.10
-   dev-haskell/entropy
-   dev-haskell/hslogger
-   >=dev-haskell/mtl-2
-   >=dev-haskell/network-2.3
-   dev-haskell/random
-   dev-haskell/regex-tdfa
-   dev-haskell/sandi
-   dev-haskell/sha
-   dev-haskell/vector
-   dev-haskell/utf8-string
-   dev-haskell/yaml
-   

[gentoo-commits] repo/gentoo:master commit in: x11-libs/libva-compat/

2019-10-18 Thread James Le Cuirot
commit: 9fb12bde7ab7a5be9684eedbda6c799a6bf071f3
Author: James Le Cuirot  gentoo  org>
AuthorDate: Fri Oct 18 21:44:04 2019 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Fri Oct 18 21:44:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb12bde

x11-libs/libva-compat: Marking stable on all arches

This is almost identical to the earlier libva-1.8.3 ebuild. Now that's
gone, this needs to be marked stable for stable users. It reportedly
works fine.

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

 x11-libs/libva-compat/libva-compat-1.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild 
b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
index 7d5b3a6f092..5b82b4eb887 100644
--- a/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
+++ b/x11-libs/libva-compat/libva-compat-1.8.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/01org/libva/archive/${PV}.tar.gz 
-> ${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="+drm egl opengl vdpau wayland X"
 
 VIDEO_CARDS="nvidia intel i965 nouveau"



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/maxima/files/, sci-mathematics/maxima/

2019-10-18 Thread Ulrich Müller
commit: 35338f9e73b8ddbf63c2c2c75639ae142bf0c686
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Oct 18 21:12:17 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Oct 18 21:12:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35338f9e

sci-mathematics/maxima: Declare encoding of imaxima texinfo file.

Closes: https://bugs.gentoo.org/697494
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller  gentoo.org>

 sci-mathematics/maxima/files/texinfo-0.patch | 12 
 sci-mathematics/maxima/maxima-5.43.0.ebuild  |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/sci-mathematics/maxima/files/texinfo-0.patch 
b/sci-mathematics/maxima/files/texinfo-0.patch
new file mode 100644
index 000..9b8782dffce
--- /dev/null
+++ b/sci-mathematics/maxima/files/texinfo-0.patch
@@ -0,0 +1,12 @@
+Fix build with texinfo-6.7.
+https://bugs.gentoo.org/697494
+
+--- maxima-5.43.0.orig/interfaces/emacs/imaxima/imaxima.texi
 maxima-5.43.0/interfaces/emacs/imaxima/imaxima.texi
+@@ -1,5 +1,6 @@
+ \input texinfo  @c -*-texinfo-*-
+ @c %**start of header
++@documentencoding ISO-8859-1
+ @setfilename imaxima.info
+ @settitle Imaxima Manual
+ @paragraphindent 0

diff --git a/sci-mathematics/maxima/maxima-5.43.0.ebuild 
b/sci-mathematics/maxima/maxima-5.43.0.ebuild
index c537cea53d2..3d2e0121287 100644
--- a/sci-mathematics/maxima/maxima-5.43.0.ebuild
+++ b/sci-mathematics/maxima/maxima-5.43.0.ebuild
@@ -96,7 +96,7 @@ pkg_setup() {
 
 src_prepare() {
local n PATCHES v
-   PATCHES=( emacs-0 rmaxima-0 wish-2 xdg-utils-1 )
+   PATCHES=( emacs-0 rmaxima-0 wish-2 xdg-utils-1 texinfo-0 )
 
n=${#PATCHES[*]}
for ((n--; n >= 0; n--)); do



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

2019-10-18 Thread Craig Andrews
commit: c89068c8b74e900fca20880f42ed9ccc099e7986
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Oct 18 20:55:50 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Oct 18 20:56:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c89068c8

net-analyzer/netdata: 1.18.1 version bump

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

 net-analyzer/netdata/Manifest  |   1 +
 net-analyzer/netdata/netdata-1.18.1.ebuild | 128 +
 2 files changed, 129 insertions(+)

diff --git a/net-analyzer/netdata/Manifest b/net-analyzer/netdata/Manifest
index 4bb3db30b32..1ae54b3285a 100644
--- a/net-analyzer/netdata/Manifest
+++ b/net-analyzer/netdata/Manifest
@@ -6,3 +6,4 @@ DIST netdata-1.16.1.tar.gz 3286225 BLAKE2B 
4411baa2da9282173abef872dce02bc0a3f1b
 DIST netdata-1.17.0.tar.gz 3313545 BLAKE2B 
4225ed7e53d9d79d4e0e5e6c4c5408a78bcb1ce05a5d20925c231d55131e13ef3426586962c85f814073fad389495ac010b6843288865a44d8a0f22e55eab065
 SHA512 
fb1a2295868df3a161cc777dddece3bd8c6a2338a75ba72d6eaa7ca6914a1661cb056680229ad67d3059081309130f60eeff98d8e60ab3a03622f5c1947d1b08
 DIST netdata-1.17.1.tar.gz 3332115 BLAKE2B 
4811d36beade1d990ddafdef2843f2740656c1127f192c89863639a0c44753b78743cae3eab49a5a4e4c65aa36a3e52479624ea7c45248b3a55a841753b834ec
 SHA512 
795610ef3e7153982665edd90ece1f06fef264a3eaf28f49ef59505aa83983822f9dd88035a30885db1d462e72b6ce2416ef6365abb94229d6155b896d12a8aa
 DIST netdata-1.18.0.tar.gz 3401415 BLAKE2B 
2491f6d180a30e0fbc5a6af8dab9fe920188934eccd9891df11f36c8e4e9d386f5d5b5639d91f232e7cc3505fd8842844cf8c6b3120a9281701a1013609f16d6
 SHA512 
012400c555ea24f7f2bcc32f59bd37594811602c1e4d3428c19e1091ca21bd52f5fb2db7469de276a5461e38bd3323a2fba5aa496769e31df92a272c5300a923
+DIST netdata-1.18.1.tar.gz 3413907 BLAKE2B 
9047f23875f446b378c80962e7f8e5c9424fbc2a405c75b76e242b26ae48336cbb026d3fc5c0e4127b0e5d1f1d5a14652ae92661474cd11ecbd64614461ab118
 SHA512 
fb72f4729e05ab83fe9462e31b10fc40243472ea9f6cbb9421e2ca549810f2f80b28b05e886faa66e15c53b317ee559a3e0fb3d382c36a424dd39fec779918d9

diff --git a/net-analyzer/netdata/netdata-1.18.1.ebuild 
b/net-analyzer/netdata/netdata-1.18.1.ebuild
new file mode 100644
index 000..a9120717c5d
--- /dev/null
+++ b/net-analyzer/netdata/netdata-1.18.1.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit autotools fcaps linux-info python-r1 systemd
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/netdata/${PN}.git;
+   inherit git-r3
+else
+   SRC_URI="https://github.com/netdata/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Linux real time system monitoring, done right!"
+HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/;
+
+LICENSE="GPL-3+ MIT BSD"
+SLOT="0"
+IUSE="caps +compression cpu_flags_x86_sse2 cups dbengine ipmi mysql nfacct 
nodejs postgres +python tor xen"
+REQUIRED_USE="
+   mysql? ( python )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   tor? ( python )"
+
+# most unconditional dependencies are for plugins.d/charts.d.plugin:
+RDEPEND="
+   acct-group/netdata
+   acct-user/netdata
+   app-misc/jq
+   >=app-shells/bash-4:0
+   || (
+   net-analyzer/openbsd-netcat
+   net-analyzer/netcat
+   )
+   net-analyzer/tcpdump
+   net-analyzer/traceroute
+   net-misc/curl
+   net-misc/wget
+   sys-apps/util-linux
+   virtual/awk
+   caps? ( sys-libs/libcap )
+   cups? ( net-print/cups )
+   dbengine? (
+   dev-libs/libuv
+   app-arch/lz4
+   dev-libs/judy
+   dev-libs/openssl:=
+   )
+   compression? ( sys-libs/zlib )
+   ipmi? ( sys-libs/freeipmi )
+   nfacct? (
+   net-firewall/nfacct
+   net-libs/libmnl
+   )
+   nodejs? ( net-libs/nodejs )
+   python? (
+   ${PYTHON_DEPS}
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   mysql? (
+   || (
+   dev-python/mysqlclient[${PYTHON_USEDEP}]
+   dev-python/mysql-python[${PYTHON_USEDEP}]
+   )
+   )
+   postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
+   tor? ( net-libs/stem[${PYTHON_USEDEP}] )
+   )
+   xen? (
+   app-emulation/xen-tools
+   dev-libs/yajl
+   )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+FILECAPS=(
+   'cap_dac_read_search,cap_sys_ptrace+ep' 
'usr/libexec/netdata/plugins.d/apps.plugin'
+)
+
+pkg_setup() {
+   linux-info_pkg_setup
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   

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

2019-10-18 Thread Ulrich Müller
commit: 3428ee0a9bd7e21147de08992e5d3c47789c4e8c
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Oct 18 20:18:19 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Oct 18 20:21:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3428ee0a

app-emacs/desktop+: Fix typo in site-init file.

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/desktop+/{desktop+-0.2-r1.ebuild => desktop+-0.2-r2.ebuild} | 0
 app-emacs/desktop+/files/50desktop+-gentoo.el | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/desktop+/desktop+-0.2-r1.ebuild 
b/app-emacs/desktop+/desktop+-0.2-r2.ebuild
similarity index 100%
rename from app-emacs/desktop+/desktop+-0.2-r1.ebuild
rename to app-emacs/desktop+/desktop+-0.2-r2.ebuild

diff --git a/app-emacs/desktop+/files/50desktop+-gentoo.el 
b/app-emacs/desktop+/files/50desktop+-gentoo.el
index 6f547c0..49a731f077e 100644
--- a/app-emacs/desktop+/files/50desktop+-gentoo.el
+++ b/app-emacs/desktop+/files/50desktop+-gentoo.el
@@ -6,4 +6,4 @@
 (autoload 'desktop+-create-auto "desktop+"
   "Create a new session, identified by the current working directory." t)
 (autoload 'desktop+-load-auto "desktop+"
-  "Load a session previously created using `desktop+-create-auto'. t)
+  "Load a session previously created using `desktop+-create-auto'." t)



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

2019-10-18 Thread William Hubbs
commit: 92e86cccb78a8f52c8b6cb1430e2a0d37b30f43b
Author: William Hubbs  sony  com>
AuthorDate: Fri Oct 18 18:59:50 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Oct 18 19:01:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e86ccc

dev-lang/go: 1.12.12 and 1.13.3 bump

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

 dev-lang/go/Manifest  |   2 +
 dev-lang/go/go-1.12.12.ebuild | 246 ++
 dev-lang/go/go-1.13.3.ebuild  | 246 ++
 3 files changed, 494 insertions(+)

diff --git a/dev-lang/go/Manifest b/dev-lang/go/Manifest
index ee44edfd9a3..4c66a9f1e70 100644
--- a/dev-lang/go/Manifest
+++ b/dev-lang/go/Manifest
@@ -11,7 +11,9 @@ DIST go-linux-s390x-bootstrap-1.8.tbz 57124869 BLAKE2B 
920a176b8f4fc3a816e724324
 DIST go-solaris-amd64-bootstrap-1.8.tbz 54926326 BLAKE2B 
0a45312f090d81ebf46fe5950cb65c059e2801394231e715e94145d1f918eb59b10472b2385e57ebd5cfb9eca0ad7290fb118436486b665520bb540970f971ab
 SHA512 
52b849e5b9a940e10de7ba3df0ebdf6e1c5d631de9581d936c9edf8f38e6bb3314acbc2b2d5202b0528fde2a359d52bc0c6f39acf9b1b614725e4b4a947ed10d
 DIST go1.12.10.src.tar.gz 21980044 BLAKE2B 
95ebf0a6f04d055e5e9d6f8e2a13835aaf33c4f7113772f7a70af218f4e929a047fc12b0ef9e93a9156877f61361219da16bb2830799247b8200a7648c562abc
 SHA512 
9d40cf8d71daffe43f5872597b316cd1150ae640d852ff0f0be3126cc7bb40b9a0290bb02d7fabdf808f40ab3f67a56d2eaeba3b32299fa9b0a3df03899f6ac2
 DIST go1.12.11.src.tar.gz 21979795 BLAKE2B 
421cda167948f1818b95395630d1a0dbfb29b996ffee31992199ce3acd54b5399bf28c5f3490e049bd57ad802aa276aff569c706b7b166198a7e217885eaec4f
 SHA512 
ece666235394a56bc82918166cf14805164397f9609dff89abd5137fca8a0e20e0b48097f49b6aba17bed24f2fadbc685984d687c0cd67e88df31c394f791444
+DIST go1.12.12.src.tar.gz 21980254 BLAKE2B 
b5d241d584339c999f5fffad427b70c04e431220fd68272f45deef3cf27b4d8039f9161ab64fd7338056978ff3e5e42bbb49aa1cf71e6a8a3aaf7700d5c02e8a
 SHA512 
f173adbe1ad1c5c422a3374aa15d49881059b67cdca61b56ddc477a1b178cf418853aff78c3acec46194e60726805e53d8ac8466780343eb205a2a7285960995
 DIST go1.12.9.src.tar.gz 21979950 BLAKE2B 
dca7e3afcabd513c4b8193e93c0a1ed1a2326dccfce9b909d97b3731fffbe7e26712ab164645e06a316baa949b1e0b14a2fea8d23e6f90fd5b72afa0d15b432b
 SHA512 
57041e7fb767f528aa9fc2592d205d3a7c120c73f92dc8d91f17f816e12aa6152c8421b333081800a5f50b1bb656f203a25faf8ed92c69a6ec164ce0a5619c13
 DIST go1.13.1.src.tar.gz 21622361 BLAKE2B 
08a836d3bd57befed8cd07c4d6faaf9d926629b06e5fe97d1fe364df8b2368310b31b04019fbd0803caf7f52c8927122ba1638c3c26b6fb38c9236ff96eb06d7
 SHA512 
696fc735271bd76ae59c5015c8efa52121243257f4ffcc1460fd79cf9a5e167db0b30d04137ec71a8789742673c2288bd62d55b546c2d2b2a05e8b3669af8616
 DIST go1.13.2.src.tar.gz 21622878 BLAKE2B 
b65a495f94bbc1711734a8e171097abea28bfba138fc0ac09998b1fbb2c61e58feea94a3ce79dc2b9f4685df5a5e8fc1d93ea2ecdcb1134149d181d554ec1dc8
 SHA512 
2741ccbb13abf69cbb575145c65fc9f3c422692009d6bf6e991f6d6e3ddfed94374b242deb5fffbe4a22f64c3734cc7dba0b1438c24ae295eecef2b515504892
+DIST go1.13.3.src.tar.gz 21618379 BLAKE2B 
1f45d84b373fb886e7cb4764bb82a003bfd3b8f8aa6bb52a91d8859056341b25e908861a23094ee4034fb7ea2e92ada3bd0985b724ef06a64e823dd5fba8851b
 SHA512 
0999876f995a3d9189640ce15b496ab72a6273649d27acdc190c1d50b88ab8b7facaabfc832334911d178f0b9a645ea4169716ed5c593a7540b075e6901d51f2
 DIST go1.13.src.tar.gz 21621948 BLAKE2B 
dff6024287c0805ec735cb40aef4ffd872bdc17df6e0d531be3d16806292edde2a63299fe7b9b3c97a79f6f864ab0f95962a0cd2e1a0ba0216b3f4bc59bf4bcf
 SHA512 
c6346b1ab256cb743dd98625d8b16cdcc1365b186e039e99747d6c18041045daa065f6bdce17cca0a9800be2dbb34e90adf5518d5295693f80435c02fe5b2cd8

diff --git a/dev-lang/go/go-1.12.12.ebuild b/dev-lang/go/go-1.12.12.ebuild
new file mode 100644
index 000..5e3547cfead
--- /dev/null
+++ b/dev-lang/go/go-1.12.12.ebuild
@@ -0,0 +1,246 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+
+MY_PV=${PV/_/}
+
+inherit toolchain-funcs
+
+BOOTSTRAP_VERSION="bootstrap-1.8"
+BOOTSTRAP_DIST="https://dev.gentoo.org/~williamh/dist;
+BOOTSTRAP_URI="
+   ${BOOTSTRAP_DIST}/go-linux-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-arm-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-arm64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64le-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-s390x-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-386-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-freebsd-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-freebsd-386-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-darwin-amd64-${BOOTSTRAP_VERSION}.tbz
+   

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

2019-10-18 Thread Lars Wendler
commit: 356db3ad1fb473df88975568131fd86b6d35f214
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 18:48:42 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 18:48:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=356db3ad

dev-util/cmake: Bump to version 3.16.0_rc2. Removed old

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

 dev-util/cmake/Manifest | 2 +-
 dev-util/cmake/{cmake-3.16.0_rc1.ebuild => cmake-3.16.0_rc2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index eeb17eb7cf6..cf34c351ae7 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -3,4 +3,4 @@ DIST cmake-3.14.6.tar.gz 8861359 BLAKE2B 
257a9a89fe880f8945f47a4bb1980e66f0f28ee
 DIST cmake-3.14.7.tar.gz 8861587 BLAKE2B 
c1aa136fde8cd22592f15318a8ad7c37ef6e8895df3e097362077e8e1bf2125ba8f1a431a11ec40e7ab0d9e818452460f516aafac46cef4cc3b184bea12dbb09
 SHA512 
2f0e37cab2bde521452a30fffebf24429cea8a68c675f6970b0ea46dae5743fb80c0fe1d3ad174d226d968ac0760ecd33710232740a9b4b2f071df9e648cfec4
 DIST cmake-3.15.3.tar.gz 9270184 BLAKE2B 
bdca3d45d603d9f40584e54102fedd736dae9eadb3ccaaf9bdb2e071da57eff5201dab390ba651772fb5f78fdd7683a86ac721a8b8273936782559a95be0167d
 SHA512 
7d0abf2f7c661c6b555a7e93a2fce5ab5610c653b0aa4949bed6e97bfbe6523fd0665f67115d3944d3729cbe07ae3aaf780ee673b06dd80f90018cec8a999658
 DIST cmake-3.15.4.tar.gz 9270648 BLAKE2B 
b1c46ce76a549c78caa5c95be38fdbdcca685b1fade0a1687971d3b1cbb10953ec62b12401f67c389b096c87a6fa895ff339e1646e449472df76660b76e7d1ed
 SHA512 
4058b89d35d243146f4f521356d483a850cbade316b60cf896c90da5d6b6504bc35224c0702fa525d90fe97a5311c7a895466e5eb2edb4cd4306a3cc45182650
-DIST cmake-3.16.0-rc1.tar.gz 9097643 BLAKE2B 
979bd9a659a84348d261600536b876c7bfc255b37e3dc1a87b03759d47cfa1871c2c0e22e1fd75bca8e614906f8e029b4cdd590e48c4b5c98bb34a1ebc99000c
 SHA512 
82dd74ca1f3ceacc1ea0e078a95effbae2f680903c7a730ea8491499f788b7e3b6fb3b899a471dfb251ac70df8c2a0d486a445b13ae95cb41e5411b6afc250b4
+DIST cmake-3.16.0-rc2.tar.gz 9100272 BLAKE2B 
facce463a92b32a51676d638aad4dbd84f2184c48e7df478fcc34fbcd9c7e5dbf18223fc11a774ebe588160a9458507c7974a9e9c564e8fddd86b88ea0a60238
 SHA512 
d457388f4cf0512e3aee12d12d445b160bb6b19888caf0c2fd69ec10bfbcd910790aecb025a1062cfb2b0048c4cac0e2370a76116c75db2a7000aa56af4c81f7

diff --git a/dev-util/cmake/cmake-3.16.0_rc1.ebuild 
b/dev-util/cmake/cmake-3.16.0_rc2.ebuild
similarity index 100%
rename from dev-util/cmake/cmake-3.16.0_rc1.ebuild
rename to dev-util/cmake/cmake-3.16.0_rc2.ebuild



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

2019-10-18 Thread Jeroen Roovers
commit: 6e51e27e63285b95a204a2ecae96428ec13de947
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 18 16:47:38 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 18 18:11:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e51e27e

www-client/vivaldi-snapshot: Old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

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

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 63ac0b74d91..2117f7cf06e 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-snapshot-2.9.1692.4_p1-amd64.deb 65438496 BLAKE2B 
8031aea0f43d7125d8308d9f5748102f871841c913178918d766c2a90e4ecfe3e10ec63e4ec6ce18d3e1e93a998c227c1985934d35f6bd6e821c0ac433af6603
 SHA512 
ada620915ba0b6bb73bee7a0baa90e6c244b74de001f8706f748922a579804e34455f479b2c987f47dc5be66fb4a5a4e7edd8d11c83b844ca92ab6bc525b89a9
-DIST vivaldi-snapshot-2.9.1692.4_p1-arm64.deb 58619460 BLAKE2B 
338430ee4a250101742a18d71cf1ad0ac6e8cb9f3d3b0fb1cfa88fb860cf18dee327ee33b1bd79eed7fb07d7434e97d117838c06181f38f004fb617db7d57c6f
 SHA512 
ad54091b3d5f10899de1808d0791b2645b5061c994846bfed289c0da781bfaa092eedbe2f67e9d95475108163e86f88ee962bcaa7a14c68f78937c55deaafc10
-DIST vivaldi-snapshot-2.9.1692.4_p1-i386.deb 63833764 BLAKE2B 
b375078bdc469904842743fd55a00f1a5a58c100d484536398e94fbf8bf1c9e3cf3a19d812e31c0cac7ee087c74c8b2a096740d39bd2471c1b992483ee37cb09
 SHA512 
49a8648f2ce2b350d51ac3b68348b850f9f0d7272798322b702a10e8a3642a11d6149630c979afab688c2146d5fc19eb4e95ccb4e177f89735b68cc4873507ca
 DIST vivaldi-snapshot-2.9.1697.4_p1-amd64.deb 65426800 BLAKE2B 
89e7028b49dc033fd68204abb25db0024ea03811a5cc4a3ded1198f6d8e4c9a91ee62eb9868d446f6a3b59a9fe5b98a6cb3d2c40dadefd1e8dd63c0e8393e306
 SHA512 
3871273b0baae88873da5600e4a0169157561f64a359b5fa972aa6b36606f2c8bc2e30b79f74d2b4ddd1c7c2fc858985ff4e528516bc59a8855d279e68cbcc7a
 DIST vivaldi-snapshot-2.9.1697.4_p1-arm64.deb 58609608 BLAKE2B 
e44d541204ff445095765bae24681a6295db46e82cdc716fe091b6618596c44cdeb3b11f8ff2af74a09881c3d485b0ae735081a12842e7c297cb96e8fee7be4a
 SHA512 
9aaa865a6b5558b6c88384d2f0f05167008929f3cf4f098d249610966436a3768d0c81be8c49fb6e11215ea1d1072044afddf85bf9f870d34b8e5e4a37dfd88a
 DIST vivaldi-snapshot-2.9.1697.4_p1-i386.deb 63834344 BLAKE2B 
c95c32ac98b0e61acc6f4505d709b835abea6b4445fe7db60622f832d2ec1fdc7e1cd2a2e3dfca48866b13448910f7ab1910518a7b74c9a2ed936571ccb7acff
 SHA512 
f7cb17dd0d571e542b18f9fe0f29d20aa3620d567ba382e6bfeb9edefdfb882db267fa1c1ca4259b4613ae778e2da78ad5fbb2a4ab04e41c364ec10a07fb6914

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

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/arpon/files/, net-analyzer/arpon/

2019-10-18 Thread Jeroen Roovers
commit: 6c7b97d38da92e053a8df2942c87449c825d3305
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 18 12:14:41 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 18 18:11:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c7b97d3

net-analyzer/arpon: EAPI=7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/arpon/arpon-2.7.2-r1.ebuild  | 37 +++
 net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch | 14 +
 net-analyzer/arpon/files/arpon-2.7.2-etc.patch| 11 +++
 3 files changed, 62 insertions(+)

diff --git a/net-analyzer/arpon/arpon-2.7.2-r1.ebuild 
b/net-analyzer/arpon/arpon-2.7.2-r1.ebuild
new file mode 100644
index 000..92f553b7ab1
--- /dev/null
+++ b/net-analyzer/arpon/arpon-2.7.2-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake-utils
+
+DESCRIPTION="ArpON (Arp handler inspectiON) is a portable Arp handler"
+
+MY_PN="ArpON"
+MY_P="${MY_PN}-${PV}"
+HOMEPAGE="http://arpon.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   dev-libs/libdnet
+   net-libs/libnet:1.1
+   net-libs/libpcap
+"
+RDEPEND="
+   ${DEPEND}
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.7.2-CFLAGS.patch
+   "${FILESDIR}"/${PN}-2.7.2-etc.patch
+)
+DOCS=( AUTHOR CHANGELOG )
+S="${WORKDIR}"/${MY_P}
+
+src_install() {
+   cmake-utils_src_install
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}

diff --git a/net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch 
b/net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch
new file mode 100644
index 000..525f03740dd
--- /dev/null
+++ b/net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch
@@ -0,0 +1,14 @@
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -51,11 +51,9 @@
+ if(cmake_build_type_tolower STREQUAL "debug")
+   message(STATUS "Build Type: Debug")
+   set(CMAKE_BUILD_TYPE "Debug")
+-  set(CMAKE_C_FLAGS "-Wall -Werror -pedantic -O0 -g")
+ else()
+   message(STATUS "Build Type: Release")
+   set(CMAKE_BUILD_TYPE "Release")
+-  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror")
+ endif()
+ 
+ include_directories(

diff --git a/net-analyzer/arpon/files/arpon-2.7.2-etc.patch 
b/net-analyzer/arpon/files/arpon-2.7.2-etc.patch
new file mode 100644
index 000..03e80f9d595
--- /dev/null
+++ b/net-analyzer/arpon/files/arpon-2.7.2-etc.patch
@@ -0,0 +1,11 @@
+--- a/etc/CMakeLists.txt
 b/etc/CMakeLists.txt
+@@ -14,7 +14,7 @@
+ COMPONENT Etcfile)
+ else(${CMAKE_INSTALL_PREFIX} STREQUAL "/")
+   install(FILES ${arpon_etc_src}
+-DESTINATION ${CMAKE_INSTALL_PREFIX}/etc
++DESTINATION /etc
+ PERMISSIONS OWNER_READ GROUP_READ WORLD_READ
+ COMPONENT Etcfile)
+ endif(${CMAKE_INSTALL_PREFIX} STREQUAL "/")



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

2019-10-18 Thread Jeroen Roovers
commit: 30d737520fa6ef86df9d1fe4fcba01be52f714ec
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 18 16:46:57 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 18 18:11:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d73752

www-client/vivaldi-snapshot: Version 2.9.1699.4_p1

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

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

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index b443a8fa3c4..63ac0b74d91 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -4,3 +4,6 @@ DIST vivaldi-snapshot-2.9.1692.4_p1-i386.deb 63833764 BLAKE2B 
b375078bdc46990484
 DIST vivaldi-snapshot-2.9.1697.4_p1-amd64.deb 65426800 BLAKE2B 
89e7028b49dc033fd68204abb25db0024ea03811a5cc4a3ded1198f6d8e4c9a91ee62eb9868d446f6a3b59a9fe5b98a6cb3d2c40dadefd1e8dd63c0e8393e306
 SHA512 
3871273b0baae88873da5600e4a0169157561f64a359b5fa972aa6b36606f2c8bc2e30b79f74d2b4ddd1c7c2fc858985ff4e528516bc59a8855d279e68cbcc7a
 DIST vivaldi-snapshot-2.9.1697.4_p1-arm64.deb 58609608 BLAKE2B 
e44d541204ff445095765bae24681a6295db46e82cdc716fe091b6618596c44cdeb3b11f8ff2af74a09881c3d485b0ae735081a12842e7c297cb96e8fee7be4a
 SHA512 
9aaa865a6b5558b6c88384d2f0f05167008929f3cf4f098d249610966436a3768d0c81be8c49fb6e11215ea1d1072044afddf85bf9f870d34b8e5e4a37dfd88a
 DIST vivaldi-snapshot-2.9.1697.4_p1-i386.deb 63834344 BLAKE2B 
c95c32ac98b0e61acc6f4505d709b835abea6b4445fe7db60622f832d2ec1fdc7e1cd2a2e3dfca48866b13448910f7ab1910518a7b74c9a2ed936571ccb7acff
 SHA512 
f7cb17dd0d571e542b18f9fe0f29d20aa3620d567ba382e6bfeb9edefdfb882db267fa1c1ca4259b4613ae778e2da78ad5fbb2a4ab04e41c364ec10a07fb6914
+DIST vivaldi-snapshot-2.9.1699.4_p1-amd64.deb 65489400 BLAKE2B 
ad0b55cafd44bbc08c91b2143b2eb80c0923272987a15a8d6523cabd3a9320cbeb5d396ca713cd09d9df5371e1e75ac6ad092fdfae80bf6b44ccd4bdd2cedf30
 SHA512 
7971654189ff19aab770c0450369581f70e7aa36738b1d745ec8535101c6259d0252f07c6dcd345b39c98deeec8557eaea244072875f63e1c1f1bb86d56a6bb1
+DIST vivaldi-snapshot-2.9.1699.4_p1-arm64.deb 58695212 BLAKE2B 
5fbb7f6091f0b89d017af96cc50caba31cdb541ec6eb63a15309a27ece401e47d10e9134d6177a800da656476c9b62aa0a4bba0f742bcfca3c5a28aef430c75e
 SHA512 
4a6ae27a1b20e419ac38c289289ea7697555089ab345d129bd874942ce92732298dd0e08001eb997db4a5c4bc8e2018f2436366fd3893113c579b29938c3fb7e
+DIST vivaldi-snapshot-2.9.1699.4_p1-i386.deb 63901024 BLAKE2B 
74cae8016914cccdfe7cf5caaa62bc94dfd66e3b8552158d15a1d2dcb1cdb10de605c69724af801cd70271ef4e6901b1724b7fee793f9f0c67f78792e720d3af
 SHA512 
6641149d8b8a82cd3814bb404b602c1df3cac55e989b9148492eeed62e23088d2fbdc81e0fe696d3e1389a4c429730eb1966796165bede1f6884e17d3f939cbe

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

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

2019-10-18 Thread Ulrich Müller
commit: a33ce22f1bea7ad557fcef3f676d00901a2e6d56
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Oct 18 18:05:15 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Oct 18 18:05:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33ce22f

app-emacs/matlab: Generate autoload file.

Closes: https://bugs.gentoo.org/698006
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/matlab/files/50matlab-gentoo-3.3.6.el| 2 ++
 ...3.3.6_pre20191010.ebuild => matlab-3.3.6_pre20191010-r1.ebuild} | 7 ++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/app-emacs/matlab/files/50matlab-gentoo-3.3.6.el 
b/app-emacs/matlab/files/50matlab-gentoo-3.3.6.el
new file mode 100644
index 000..499ac3d66b2
--- /dev/null
+++ b/app-emacs/matlab/files/50matlab-gentoo-3.3.6.el
@@ -0,0 +1,2 @@
+(add-to-list 'load-path "@SITELISP@")
+(load "matlab-load" nil t)

diff --git a/app-emacs/matlab/matlab-3.3.6_pre20191010.ebuild 
b/app-emacs/matlab/matlab-3.3.6_pre20191010-r1.ebuild
similarity index 79%
rename from app-emacs/matlab/matlab-3.3.6_pre20191010.ebuild
rename to app-emacs/matlab/matlab-3.3.6_pre20191010-r1.ebuild
index 42573b3e47c..33487fa8e1b 100644
--- a/app-emacs/matlab/matlab-3.3.6_pre20191010.ebuild
+++ b/app-emacs/matlab/matlab-3.3.6_pre20191010-r1.ebuild
@@ -14,5 +14,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos"
 
 S="${WORKDIR}/matlab-emacs-src"
-SITEFILE="50${PN}-gentoo.el"
+SITEFILE="50${PN}-gentoo-3.3.6.el"
 DOCS="README.org INSTALL ChangeLog*"
+
+src_compile() {
+   elisp-compile *.el
+   elisp-make-autoload-file matlab-load.el
+}



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

2019-10-18 Thread Michał Górny
commit: 9db9917b43ad6e9d48d95d47cc733e73b086ff46
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 18 17:47:55 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 18:01:55 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db9917b

app-portage/gemato: Bump to 14.2

Signed-off-by: Michał Górny  gentoo.org>

 app-portage/gemato/Manifest   |  1 +
 app-portage/gemato/gemato-14.2.ebuild | 44 +++
 2 files changed, 45 insertions(+)

diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest
index 27ef0bbf0c3..2ed7cb7c140 100644
--- a/app-portage/gemato/Manifest
+++ b/app-portage/gemato/Manifest
@@ -1,2 +1,3 @@
 DIST gemato-14.1-multiprocessing.tar.gz 71707 BLAKE2B 
d7d22615a65bd598160b23e01a938c20ecadfb1a1332db3842b14bfac69006269efd0f1da6d6bf0f10f3aafb07ebe01af09e64f9612c50b8e98a0bd6aff27651
 SHA512 
fd4722dd2f632bda4abac59b7e62f531edbdc455be1f1ec94d8bf99194956de15b6cfa4d623713bf3c25e55a6cc6adcdf8039cb7d20a556924bed0ddefd95daf
 DIST gemato-14.1.tar.gz 71142 BLAKE2B 
a7c8f814f9c6875e977aa178d4a49e3454ea8d6e19750786452aa2f34f0904f0ccc0a9a58411a0214a68cecd571320769c6374b265e2aa7f52fbead53ba6b284
 SHA512 
de57f3b7aa17e650894876bc2423c4fa9809f2de25aa2fb8ef070e943faa182c80f7ea8a519ecdf6edec8098d11f786344ee872b9e98c69bd6739760652baa2e
+DIST gemato-14.2.tar.gz 71315 BLAKE2B 
e94284512bc42d129ef29b686a007dfaf74e8d325a5596f44ddae0e6ce76bf86cf24fa94ea72476fc17eb575a472ee39b02b987c1f97d987eb03ffe6901d472f
 SHA512 
de4e2764bf5778cb5c5fe23c912d9d8c89c4201256305ce5820555fcb5eea4236b8d64ccac9b1a72fc497ec9a4a4e64446835850a8f9be7a8271cddde52eb561

diff --git a/app-portage/gemato/gemato-14.2.ebuild 
b/app-portage/gemato/gemato-14.2.ebuild
new file mode 100644
index 000..d58a025ed50
--- /dev/null
+++ b/app-portage/gemato/gemato-14.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# pysha3 is broken with pypy3
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy{,3} )
+PYTHON_REQ_USE='threads(+)'
+inherit distutils-r1
+
+DESCRIPTION="Stand-alone Manifest generation & verification tool"
+HOMEPAGE="https://github.com/mgorny/gemato;
+SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux"
+IUSE="+blake2 bzip2 +gpg lzma sha3 test tools"
+RESTRICT="!test? ( test )"
+
+MODULE_RDEPEND="
+   blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' 
python{2_7,3_5} pypy{,3}) )
+   bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' 
python2_7 pypy) )
+   gpg? ( app-crypt/gnupg )
+   lzma? ( $(python_gen_cond_dep 
'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) )
+   sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' 
python{2_7,3_5} pypy) )"
+
+RDEPEND="${MODULE_RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+DEPEND=">=dev-python/setuptools-34[${PYTHON_USEDEP}]
+   test? ( ${MODULE_RDEPEND} )"
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use tools; then
+   exeinto /usr/share/gemato
+   doexe utils/*.{bash,py}
+   fi
+}



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

2019-10-18 Thread Thomas Deutschmann
commit: 31aa5bb491b0f00bb70fef537333eb28e742902e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Oct 18 17:17:26 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Oct 18 17:17:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31aa5bb4

dev-lang/php: bump to v7.4.0_rc4

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

 dev-lang/php/Manifest |   1 +
 dev-lang/php/php-7.4.0_rc4.ebuild | 724 ++
 2 files changed, 725 insertions(+)

diff --git a/dev-lang/php/Manifest b/dev-lang/php/Manifest
index 9c50777fdf1..fe069080c30 100644
--- a/dev-lang/php/Manifest
+++ b/dev-lang/php/Manifest
@@ -8,4 +8,5 @@ DIST php-7.3.10.tar.xz 12086948 BLAKE2B 
0dec94952fde19619d2f27ec9e4076a41d51ba70
 DIST php-7.3.8.tar.xz 12064620 BLAKE2B 
cfe2fde5e48080e13bd21cb2e2ca0c0ae38da03c94d0692e11bfe6722e50bd0b864d629a0ef6aed4ac5d9830ec4b4b214b9abdf917519a0c0cb70a4362fc8390
 SHA512 
9e9e13845350f3d4a8a80c3e2fe8291996e2749b2c862261b96346c01e5e24640cb81adad5e3b7668b56b2266c1fcbb713e8c38da4f9aa474f5f632f91378a8d
 DIST php-7.3.9.tar.xz 12064244 BLAKE2B 
2837463a74a0ccffc1a2193f9fbce78c98c15dd60214cb5d5d704aed7d74449696c3a516e86f440aed9ff3dc2ed8e7bbebcaf0a1268afa55aca2b642e958abf1
 SHA512 
017d2ae3cd499a7f6ee30111baf0a119e2f404919575acc5ae91fa6e53a303c9d1b5d165205eec3943c3547ff8759e21fbccc62845e3269176f6fc0f2ba88490
 DIST php-7.4.0RC3.tar.xz 10220844 BLAKE2B 
dc3912533dc52234c5733c89e9353391ddffebe0f08e0de4b9155707d49db43700bfffb91d27391f56fbb2663752742346d7b2947ea77c4175322003b53d1bb4
 SHA512 
433f5bdafe753948f9ea837205988ae3c779a03c23505795f4c7c71a6cc62354cf61a2f30aa3480a588b9b44faa184664322616025af74627784d5b64b1e8dfb
+DIST php-7.4.0RC4.tar.xz 10223780 BLAKE2B 
03c19129fbe6e7326144660321769a31b832afbf9c468a4502e8e055be049bc39407003799f1c86bc96141d112571f3f12efb7c8d1d65acf96baae21c8a17423
 SHA512 
473bd7dd021d2377957799b36b410b29b6650c4813431ff27884e6b0511d4af32ed0500f241b449fefeb562538b0db81df76c14d84654c1d6faaee6e4c560a70
 DIST php-patches-7.1.31bp.tar.bz2 37219 BLAKE2B 
4f3ead2f69adf00ac1317371172c8adbb823f597cd8e3cafe7044d6a46671437fd2e5eaef4309a6fd5825123394044543284d3cbe892c918353a5b07c12b7401
 SHA512 
eb52679d035ceb4124c8e9175024f4f753e20d139479af4a57e01de941991716b2ce37f6190242c1bec46fd5305bad1f91613b04ee849a0d94f4a33ce013781e

diff --git a/dev-lang/php/php-7.4.0_rc4.ebuild 
b/dev-lang/php/php-7.4.0_rc4.ebuild
new file mode 100644
index 000..2e7801342bf
--- /dev/null
+++ b/dev-lang/php/php-7.4.0_rc4.ebuild
@@ -0,0 +1,724 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+WANT_AUTOMAKE="none"
+
+inherit flag-o-matic systemd autotools
+
+MY_PV=${PV/_rc/RC}
+DESCRIPTION="The PHP language runtime engine"
+HOMEPAGE="https://php.net/;
+SRC_URI="https://downloads.php.net/~derick/${PN}-${MY_PV}.tar.xz;
+
+LICENSE="PHP-3.01
+   BSD
+   Zend-2.0
+   bcmath? ( LGPL-2.1+ )
+   fpm? ( BSD-2 )
+   gd? ( gd )
+   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-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+# We can build the following SAPIs in the given order
+SAPIS="embed cli cgi fpm apache2 phpdbg"
+
+# SAPIs and SAPI-specific USE flags (cli SAPI is default on):
+IUSE="${IUSE}
+   ${SAPIS/cli/+cli}
+   threads"
+
+IUSE="${IUSE} acl argon2 bcmath berkdb bzip2 calendar cdb cjk
+   coverage +ctype curl debug
+   enchant exif ffi +fileinfo +filter firebird
+   +flatfile ftp gd gdbm gmp +iconv imap inifile
+   intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb
+   mhash mssql mysql mysqli nls
+   oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm
+   readline selinux +session session-mm sharedmem
+   +simplexml snmp soap sockets sodium spell sqlite ssl
+   sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode webp
+   +xml xmlreader xmlwriter xmlrpc xpm xslt zip zlib"
+
+# The supported (that is, autodetected) versions of BDB are listed in
+# the ./configure script. Other versions *work*, but we need to stick to
+# the ones that can be detected to avoid a repeat of bug #564824.
+COMMON_DEPEND="
+   >=app-eselect/eselect-php-0.9.1[apache2?,fpm?]
+   >=dev-libs/libpcre2-10.30[unicode]
+   fpm? ( acl? ( sys-apps/acl ) )
+   apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] )
+   argon2? ( app-crypt/argon2:= )
+   berkdb? ( || (  sys-libs/db:5.3
+   sys-libs/db:5.1
+   sys-libs/db:4.8
+   sys-libs/db:4.7
+   sys-libs/db:4.6
+   

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

2019-10-18 Thread Alfredo Tupone
commit: 0a35416afa79b90dd6127f857400078484ee2833
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 17:14:19 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 17:14:19 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a35416a

dev-ada/langkit: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/langkit/langkit-2019.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ada/langkit/langkit-2019.ebuild 
b/dev-ada/langkit/langkit-2019.ebuild
index 72bcd4d3adb..07c0444b168 100644
--- a/dev-ada/langkit/langkit-2019.ebuild
+++ b/dev-ada/langkit/langkit-2019.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8f8a31e87a8f1c967d31
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2019-10-18 Thread Alfredo Tupone
commit: 43cbf1dc64eee7d325397ca06f0038a62c9d5c61
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 17:10:52 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 17:10:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43cbf1dc

dev-ada/gps-bin: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/gps-bin/gps-bin-2016.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ada/gps-bin/gps-bin-2016.ebuild 
b/dev-ada/gps-bin/gps-bin-2016.ebuild
index f112dba176b..a3f6dbb5721 100644
--- a/dev-ada/gps-bin/gps-bin-2016.ebuild
+++ b/dev-ada/gps-bin/gps-bin-2016.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
@@ -12,7 +12,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5739cefdc7a447658e0b016b -> ${MY_P}.
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 DEPEND=""



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

2019-10-18 Thread Alfredo Tupone
commit: f5412423ff15882bb20ba34b24d9abba33473744
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 17:06:44 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 17:06:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5412423

dev-ada/gnatsymbolize: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/gnatsymbolize/gnatsymbolize-2019-r1.ebuild | 2 +-
 dev-ada/gnatsymbolize/gnatsymbolize-2019.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ada/gnatsymbolize/gnatsymbolize-2019-r1.ebuild 
b/dev-ada/gnatsymbolize/gnatsymbolize-2019-r1.ebuild
index d2aae7347b9..f7b4ff74b02 100644
--- a/dev-ada/gnatsymbolize/gnatsymbolize-2019-r1.ebuild
+++ b/dev-ada/gnatsymbolize/gnatsymbolize-2019-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cc7d5e431e87a23952f18c4 ->
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="${ADA_DEPS}"

diff --git a/dev-ada/gnatsymbolize/gnatsymbolize-2019.ebuild 
b/dev-ada/gnatsymbolize/gnatsymbolize-2019.ebuild
index b295bd6063e..41e7c88b7fa 100644
--- a/dev-ada/gnatsymbolize/gnatsymbolize-2019.ebuild
+++ b/dev-ada/gnatsymbolize/gnatsymbolize-2019.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cc7d5e431e87a23952f18c4 ->
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gnat_2018 +gnat_2019"
 
 RDEPEND=""



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

2019-10-18 Thread Alfredo Tupone
commit: 4c91776b0771395d352ed5c90b083309e2db42ae
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 17:05:17 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 17:05:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c91776b

dev-ada/gnatmem: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/gnatmem/gnatmem-2019-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ada/gnatmem/gnatmem-2019-r1.ebuild 
b/dev-ada/gnatmem/gnatmem-2019-r1.ebuild
index c5bc8a4e16d..44e18966d1e 100644
--- a/dev-ada/gnatmem/gnatmem-2019-r1.ebuild
+++ b/dev-ada/gnatmem/gnatmem-2019-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8e1431e87a8f1d425089
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="${ADA_DEPS}"



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

2019-10-18 Thread Alfredo Tupone
commit: 57a82aa078f2754b3dfbc73ef82bf7f1d47025d2
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 17:03:45 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 17:03:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57a82aa0

dev-ada/aunit: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/aunit/aunit-2019-r1.ebuild | 2 +-
 dev-ada/aunit/aunit-2019.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ada/aunit/aunit-2019-r1.ebuild 
b/dev-ada/aunit/aunit-2019-r1.ebuild
index 04342833bc1..ebb8f8545ce 100644
--- a/dev-ada/aunit/aunit-2019-r1.ebuild
+++ b/dev-ada/aunit/aunit-2019-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf859431e87aa2cdf16b18
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="${ADA_DEPS}"

diff --git a/dev-ada/aunit/aunit-2019.ebuild b/dev-ada/aunit/aunit-2019.ebuild
index 58339ce37a4..5fe8d14ab21 100644
--- a/dev-ada/aunit/aunit-2019.ebuild
+++ b/dev-ada/aunit/aunit-2019.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf859431e87aa2cdf16b18
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="gnat_2016 gnat_2017 gnat_2018 +gnat_2019"
 
 RDEPEND="gnat_2016? ( dev-lang/gnat-gpl:4.9.4 )



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

2019-10-18 Thread Alfredo Tupone
commit: c7e958bdef876919b68cf2cb0da67b114fa36ade
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 17:02:29 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 17:02:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7e958bd

dev-ada/gnat_util: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/gnat_util/gnat_util-2017-r2.ebuild | 2 +-
 dev-ada/gnat_util/gnat_util-2018-r1.ebuild | 2 +-
 dev-ada/gnat_util/gnat_util-2018-r2.ebuild | 2 +-
 dev-ada/gnat_util/gnat_util-2019-r1.ebuild | 2 +-
 dev-ada/gnat_util/gnat_util-2019.ebuild| 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-ada/gnat_util/gnat_util-2017-r2.ebuild 
b/dev-ada/gnat_util/gnat_util-2017-r2.ebuild
index 14bd222fea4..fa96acade33 100644
--- a/dev-ada/gnat_util/gnat_util-2017-r2.ebuild
+++ b/dev-ada/gnat_util/gnat_util-2017-r2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/591c45e2c7a447af2deed037
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+shared static-libs static-pic"
 
 RDEPEND="${ADA_DEPS}"

diff --git a/dev-ada/gnat_util/gnat_util-2018-r1.ebuild 
b/dev-ada/gnat_util/gnat_util-2018-r1.ebuild
index 48e3c176860..54ff9a99e51 100644
--- a/dev-ada/gnat_util/gnat_util-2018-r1.ebuild
+++ b/dev-ada/gnat_util/gnat_util-2018-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27a6b
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+gnat_2018 gnat_2019 +shared static-libs static-pic"
 
 RDEPEND="gnat_2018? ( dev-lang/gnat-gpl:7.3.1 )

diff --git a/dev-ada/gnat_util/gnat_util-2018-r2.ebuild 
b/dev-ada/gnat_util/gnat_util-2018-r2.ebuild
index 5183ca27da9..6a6c7fabb65 100644
--- a/dev-ada/gnat_util/gnat_util-2018-r2.ebuild
+++ b/dev-ada/gnat_util/gnat_util-2018-r2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5b0819dfc7a447df26c27a6b
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+shared static-libs static-pic"
 
 RDEPEND="${ADA_DEPS}"

diff --git a/dev-ada/gnat_util/gnat_util-2019-r1.ebuild 
b/dev-ada/gnat_util/gnat_util-2019-r1.ebuild
index 24096b6b28e..d5c480d1d59 100644
--- a/dev-ada/gnat_util/gnat_util-2019-r1.ebuild
+++ b/dev-ada/gnat_util/gnat_util-2019-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8e5031e87a8f1d425090
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+shared static-libs static-pic"
 
 RDEPEND="${ADA_DEPS}"

diff --git a/dev-ada/gnat_util/gnat_util-2019.ebuild 
b/dev-ada/gnat_util/gnat_util-2019.ebuild
index 9620ea72705..f813b8c 100644
--- a/dev-ada/gnat_util/gnat_util-2019.ebuild
+++ b/dev-ada/gnat_util/gnat_util-2019.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8e5031e87a8f1d425090
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+gnat_2019 +shared static-libs static-pic"
 
 RDEPEND="dev-lang/gnat-gpl:8.3.1"



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

2019-10-18 Thread Alfredo Tupone
commit: d65df60e643d301790a33544221ea7da6e6eef6f
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 16:59:33 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 16:59:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d65df60e

dev-ada/libgpr: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/libgpr/libgpr-2019-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ada/libgpr/libgpr-2019-r1.ebuild 
b/dev-ada/libgpr/libgpr-2019-r1.ebuild
index 01d8cf7cfbd..08adbdbfde3 100644
--- a/dev-ada/libgpr/libgpr-2019-r1.ebuild
+++ b/dev-ada/libgpr/libgpr-2019-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf8e8031e87a8f1d425093
-> ${MYP}-src.tar.gz"
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+shared static-libs static-pic"
 
 RDEPEND="dev-ada/xmlada[shared?,static-libs?,static-pic?,${ADA_USEDEP}]



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

2019-10-18 Thread Michał Górny
commit: 00ac54a0f250fdae8e8d8f16437ae22e32bea76b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 18 15:56:59 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 16:24:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ac54a0

dev-python/pypy3-bin: Bump to 7.2.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pypy3-bin/Manifest  |   5 +
 .../pypy3-bin/files/7.2.0-distutils-cxx.patch  | 306 +
 dev-python/pypy3-bin/pypy3-bin-7.2.0.ebuild| 184 +
 3 files changed, 495 insertions(+)

diff --git a/dev-python/pypy3-bin/Manifest b/dev-python/pypy3-bin/Manifest
index 2ff35e7bb57..7ed305dcae7 100644
--- a/dev-python/pypy3-bin/Manifest
+++ b/dev-python/pypy3-bin/Manifest
@@ -4,4 +4,9 @@ DIST pypy3-bin-7.1.1-x86+bzip2+jit+ncurses+sse2.tar.lz 8540485 
BLAKE2B a7de0db24
 DIST pypy3-bin-7.1.1-x86+bzip2+ncurses+sse2.tar.lz 5523574 BLAKE2B 
44f760842b0f232f7f5fb7a2fe3f60ff1f832dec3b0c16d1fd27ab36d09c12d6be8aa6727a880c3400506ea415317ddfb982439c1a581a03909099eeb6ea8cf6
 SHA512 
df664a7afa5bdd329d19046c81e362782c4f9358add2b7e54100df10a23434b9a341ec504ac1d49b2b017917937ab23ffd3cf723f86b65d7080789f795f5a4d3
 DIST pypy3-bin-7.1.1-x86+bzip2+ncurses.r1.tar.lz 5550959 BLAKE2B 
72b1f84f0c70b07bd622b4d9ba67b165ce047037acc9a4fb46427b07db8793610f71dc389fc5cede209663c7d36750faf6247d5b6eb3be006c6cc58e4a94b0eb
 SHA512 
3c522a9cf0e94aa8c14e9982a09231517c2c2b46e73a9c69bc6c43c44afefa3958de8879ac0fff2d43f8a0fc79117bdee645599d8e1d6a0def9806b44a4b1bc9
 DIST pypy3-bin-7.1.1-x86+bzip2+ncurses.tar.lz 5545191 BLAKE2B 
2afc40968977cd6956cb305a829811640e8437f0a811435a20ec694181286c94c820fd4148e3b6323a014ff391400d5265a7c1ee8b918c3db91ac02b44f3d585
 SHA512 
a1dad750491c5f524217986817a046c5c7a97b2b250a1d24b6a077d2d8067e249966cd331a5336fa2960a3d317c1aa83196c3e3b2f4a0734d79fe43cd9b55032
+DIST pypy3-bin-7.2.0-amd64+bzip2+jit+ncurses.tar.lz 11429130 BLAKE2B 
41de1efcfc72704a3b8fcee1fa0ca030bca0dc07b75856dbc9ee5a9e40c6298406360d3342dffde38131f6d708a6dc07d3708d6e6478dc95d7c6a6ece2d7b86b
 SHA512 
7a97797a961e12d5498dadb5bc87ad9d43a9e9dea88a7617236dba79230f5f0cc02ab8ab21a60c279cca4a341dd3d814d50d4029b94be1f525bf7b9294d19269
+DIST pypy3-bin-7.2.0-amd64+bzip2+ncurses.tar.lz 7174734 BLAKE2B 
c2f916433a6105a04c70f6b53c43dc479b64f26794a75a6e6b7122fb7d2f4f825c47d2eb82cf95ecb795e494879718aad88661b2fe12faa87b737cbcd20b5a47
 SHA512 
c4a635b6b819a104ff1b1f3b39363c9bb5cab4299cff2fb6e78c64984691d3116b8378e8a47500f9c626bbf48c4a3a8d26fa23fe2daa945bcc3dc97db9b4a8c9
+DIST pypy3-bin-7.2.0-x86+bzip2+jit+ncurses+sse2.tar.lz 8662494 BLAKE2B 
bf37ac682098c49efba0f05999ce70368c91cbc0012cdcde86303424fd225eb50a8b6fa058e0c3a9511c2668da47a042f1b836f9142ed4b112db43da3addd6ce
 SHA512 
6fc0d15e5d82ab06937ca099d1ea2f77d00a6d4e1b4c6d9637c39944c0f077ae0c5eb0edb7c6746aaafb76cb0e8a0458340c888e340df2c8438515f55a38017e
+DIST pypy3-bin-7.2.0-x86+bzip2+ncurses+sse2.tar.lz 5625900 BLAKE2B 
d6642cc8b37f9c032ed23da41c5597bd41615c55312bee5b0de3e8543fb74ecf2504c74d9d3c8a51c0fc42285812835cab70d6f8a5a5f15f0d7b637260e0a656
 SHA512 
1014ea6d37cfa7a6cb60eb47b6a0e959036aaa5c774852484a57f75d4e5450fb50c1b170f571a1288ba70d710b0731e946773cb05751eca6478b4fffb185dc94
 DIST pypy3.6-v7.1.1-src.tar.bz2 23171982 BLAKE2B 
be43528bc6f3e02d146016a4969bd8c7a9e880a3bd3b77f441aac6d22ef67700f71e0171ec66bd2c0bd506db64af69d6b75b59a9dd0353ee70e6629b
 SHA512 
17e78f9c7080d597a6283d8e8247d1ca78f09a14ff221db8c3d90d255b5befc73102b317ca34a80979e544d5ee72f3e5e649f89d185a085f4cc15012da4d0473
+DIST pypy3.6-v7.2.0-src.tar.bz2 21850076 BLAKE2B 
756ea3034fe8971c979ec83c9cbfac55a680f3ef03b276475aa4318f3480ae5ede609b8413412df64db553a33979670498b1f97184f3b57406619c9db7f01127
 SHA512 
bcbb53062a473d504bcc082cf6286f6169c83d1f38d22c4d7c4e46ddc32bca9d91e71194637e6650db5bec02b29fe262b22fe236d627b6bc3e6e0c59c66c07cc

diff --git a/dev-python/pypy3-bin/files/7.2.0-distutils-cxx.patch 
b/dev-python/pypy3-bin/files/7.2.0-distutils-cxx.patch
new file mode 100644
index 000..89a38050c80
--- /dev/null
+++ b/dev-python/pypy3-bin/files/7.2.0-distutils-cxx.patch
@@ -0,0 +1,306 @@
+diff --git a/lib-python/3/distutils/cygwinccompiler.py 
b/lib-python/3/distutils/cygwinccompiler.py
+index 1c36990..ead3174 100644
+--- a/lib-python/3/distutils/cygwinccompiler.py
 b/lib-python/3/distutils/cygwinccompiler.py
+@@ -125,8 +125,10 @@ class CygwinCCompiler(UnixCCompiler):
+ # dllwrap 2.10.90 is buggy
+ if self.ld_version >= "2.10.90":
+ self.linker_dll = "gcc"
++self.linker_dll_cxx = "g++"
+ else:
+ self.linker_dll = "dllwrap"
++self.linker_dll_cxx = "dllwrap"
+ 
+ # ld_version >= "2.13" support -shared so use it instead of
+ # -mdll -static
+@@ -140,9 +142,13 @@ class CygwinCCompiler(UnixCCompiler):
+ self.set_executables(compiler='gcc -mcygwin -O -Wall',
+  compiler_so='gcc -mcygwin -mdll -O 

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

2019-10-18 Thread Michał Górny
commit: 10bda6bb6bcc130a2e5e89ee1f17fec3981d2846
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 18 15:54:15 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 16:24:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10bda6bb

dev-python/pypy-bin: Bump to 7.2.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pypy-bin/Manifest  |   5 +
 dev-python/pypy-bin/pypy-bin-7.2.0.ebuild | 188 ++
 2 files changed, 193 insertions(+)

diff --git a/dev-python/pypy-bin/Manifest b/dev-python/pypy-bin/Manifest
index faec8ae0817..de743c9b612 100644
--- a/dev-python/pypy-bin/Manifest
+++ b/dev-python/pypy-bin/Manifest
@@ -8,5 +8,10 @@ DIST pypy-bin-7.1.1-x86+bzip2+libressl+ncurses+sse2.tar.lz 
6092434 BLAKE2B 71141
 DIST pypy-bin-7.1.1-x86+bzip2+libressl+ncurses.tar.lz 6060032 BLAKE2B 
660d834c3a76ed699170b7c13d36f6dc00df3b4811a09c5dec161af7f9b0416c7fda461ca04481ad656bea39b6ed25f5220b8d38c8ec02c9634a025e3b3d6cfc
 SHA512 
21baa8cd6bd255a335c67a1197ccef856553987740f517e1b33c27758e57b61c22b8274419b445a257ad32511d3c07901d4550151047e04adcd39c9cbf20058e
 DIST pypy-bin-7.1.1-x86+bzip2+ncurses+sse2.tar.lz 6091202 BLAKE2B 
c173cf6890143e27677e6d6ee68b2a1f55ec97897817622559c25f2f49ca5bbb5a0a2c32785a3356a6bb8f4899ff19164e550fd2762003ee018faadf80227c95
 SHA512 
a630e380177da78daef288e69f15a4cb333c4ef1ab2da8b4b6cf76ec139c1961d692873c7ec119e54f596ef4e1435a6c6b3ef933edca2b0b5cd6fc24963d3b0d
 DIST pypy-bin-7.1.1-x86+bzip2+ncurses.tar.lz 6088838 BLAKE2B 
555bca61d4693b3e5d3c8344bac3781cfe06acc4a50bcd74add2d122c68f177258ef438a7801ca4633a006e8a001500110287934f232ceb52789f3cc72b9b34b
 SHA512 
0748e14e903b0863bb2a067b558826f47cad2063c31c935b84249eee2a9cf96cfa36a5d5ef92f0facca61356499f4b9cfee6496a6cc3228bae7729e50edf6be0
+DIST pypy-bin-7.2.0-amd64+bzip2+jit+ncurses.tar.lz 13208672 BLAKE2B 
526e2f4eeb57d1f169344244384f3aa35d77bd0f9dc4e1f463248eeac023e7c98a21e565080d0cc3e56c1950128450b1fc6e830e33032e8267aa21c5beb4f80b
 SHA512 
d49942d1cd97ab580850b95590cf0982eb7f53e0b88681408392266cdad814d00d195edd757b106e4016d8df9e0d3c53bf937de145f9257313f33ffb86c2229e
+DIST pypy-bin-7.2.0-amd64+bzip2+ncurses.tar.lz 7865924 BLAKE2B 
1d3cf776274285aee433de2dc8ebd5e0bf52a7cc700f1bbfb16ca071ac5b6017dddad211d9dcdf809f97289e12d38e5758023dbd80c6a68323ffaa02e8c72614
 SHA512 
ad481a62359c615a0fcb1bb3e57b84c536b43d569ac88393000bd8b9e9d0fc3e685c3907cfcf241c3dc60479589d042009ffe1382a27be2581c8ab421e7f0397
+DIST pypy-bin-7.2.0-x86+bzip2+jit+ncurses+sse2.tar.lz 9887935 BLAKE2B 
177780ff596b1256f623982ba44ec2ec1c951e420a4521520ffee93e6e480864c59e8e55769f583841a0622693a578f84f408f6e577f97e7812ced7fb7594104
 SHA512 
dd0c71bff27beaef98ab0ce114108cd586863ef2d6eac999dbb0bdbef7cda1f5f568b465e803339a7b92262354bfe674cc6161ee1c0d479545c6d7bcd58ec3cd
+DIST pypy-bin-7.2.0-x86+bzip2+ncurses+sse2.tar.lz 6092349 BLAKE2B 
e285f4c5443c356cba90c0e56dcf9ad75357613bcf486e80816d4304bc9459ba53250a58f09155382f6ebb624610780a9f77c312aeb55a28236474cedf994e26
 SHA512 
0a4d782f5b074cc5fb206cd2843a59ea59c3a17ac8fd8bf2c74f0997d906e5f722142f0d33a20cdb3a7c7eb476f3799a797d5c2ccac2632c425317d38cb54b7c
 DIST pypy2.7-v7.1.1-src.tar.bz2 20027876 BLAKE2B 
a411d7312ed3b9be9297e7ff4cc569530529272156117ca037bbe29ad477e7ce3b8903d13c6a5a35e9867a8ccbfaa418061a7b37317b4b713508c429a41ffe9a
 SHA512 
f998931ecf4f9aeee24f0fed95589716175971816c00e50bc53de6de0cfe2a8537b89c1aee636d15faecf91df8c29943295485686185f5247a3e0913fa514f48
+DIST pypy2.7-v7.2.0-src.tar.bz2 20219532 BLAKE2B 
225e2cebdfa3ceb310f2a047b1d9e1d375b181c10707822890f39fc0a5ec9e6ddd7a8cf6e073074067960b766a0a813294042513a08b8e7e02b011f612e17917
 SHA512 
8f724490f9fa06686c8e25ddd3592b260bbffae460395de4c7d29d983780ce9b8925fa87434aac6446aac2034381cc1a13074faf252f5d1ac466a252f219f1ae
 DIST python-gentoo-patches-2.7.15.tar.xz 16208 BLAKE2B 
5739c2b3a236d48f8e33f0fe6515bfe7a8f99096f6223b402653988feac2513d37d26b6e40e5e049852f42657358170e468ca60097e0e2294e760787c12ad591
 SHA512 
687fd008d1d41b1e65ce5417f6f6aba84ffd42f7af44ef97c03a7806b28e6888f8df043a0c15187a8b229cc17642853e6feb25494db97f4d10f8a66f8ebcbcca

diff --git a/dev-python/pypy-bin/pypy-bin-7.2.0.ebuild 
b/dev-python/pypy-bin/pypy-bin-7.2.0.ebuild
new file mode 100644
index 000..5cc2d81de0b
--- /dev/null
+++ b/dev-python/pypy-bin/pypy-bin-7.2.0.ebuild
@@ -0,0 +1,188 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit pax-utils python-utils-r1 unpacker
+
+BINHOST="https://dev.gentoo.org/~mgorny/dist/pypy-bin/${PV};
+CPY_PATCHSET_VERSION="2.7.15"
+MY_P=pypy2.7-v${PV}
+
+DESCRIPTION="Pre-built version of PyPy"
+HOMEPAGE="https://pypy.org/;
+SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2
+   
https://dev.gentoo.org/~floppym/python/python-gentoo-patches-${CPY_PATCHSET_VERSION}.tar.xz
+   amd64? (
+   jit? ( ${BINHOST}/${P}-amd64+bzip2+jit+ncurses.tar.lz )
+   !jit? ( 

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

2019-10-18 Thread Michał Górny
commit: 120efe206fbea6a42c5c9a484f1c6b8920ff83ad
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 17 20:47:28 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 16:24:15 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=120efe20

dev-python/pypy: Bump to 7.2.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pypy/Manifest   |  1 +
 .../pypy/{pypy-.ebuild => pypy-7.2.0.ebuild}   | 41 ++
 dev-python/pypy/pypy-.ebuild   | 29 +++
 3 files changed, 34 insertions(+), 37 deletions(-)

diff --git a/dev-python/pypy/Manifest b/dev-python/pypy/Manifest
index 16213caaed8..41aeb208617 100644
--- a/dev-python/pypy/Manifest
+++ b/dev-python/pypy/Manifest
@@ -1,2 +1,3 @@
 DIST pypy2.7-v7.1.1-src.tar.bz2 20027876 BLAKE2B 
a411d7312ed3b9be9297e7ff4cc569530529272156117ca037bbe29ad477e7ce3b8903d13c6a5a35e9867a8ccbfaa418061a7b37317b4b713508c429a41ffe9a
 SHA512 
f998931ecf4f9aeee24f0fed95589716175971816c00e50bc53de6de0cfe2a8537b89c1aee636d15faecf91df8c29943295485686185f5247a3e0913fa514f48
+DIST pypy2.7-v7.2.0-src.tar.bz2 20219532 BLAKE2B 
225e2cebdfa3ceb310f2a047b1d9e1d375b181c10707822890f39fc0a5ec9e6ddd7a8cf6e073074067960b766a0a813294042513a08b8e7e02b011f612e17917
 SHA512 
8f724490f9fa06686c8e25ddd3592b260bbffae460395de4c7d29d983780ce9b8925fa87434aac6446aac2034381cc1a13074faf252f5d1ac466a252f219f1ae
 DIST python-gentoo-patches-2.7.15.tar.xz 16208 BLAKE2B 
5739c2b3a236d48f8e33f0fe6515bfe7a8f99096f6223b402653988feac2513d37d26b6e40e5e049852f42657358170e468ca60097e0e2294e760787c12ad591
 SHA512 
687fd008d1d41b1e65ce5417f6f6aba84ffd42f7af44ef97c03a7806b28e6888f8df043a0c15187a8b229cc17642853e6feb25494db97f4d10f8a66f8ebcbcca

diff --git a/dev-python/pypy/pypy-.ebuild 
b/dev-python/pypy/pypy-7.2.0.ebuild
similarity index 89%
copy from dev-python/pypy/pypy-.ebuild
copy to dev-python/pypy/pypy-7.2.0.ebuild
index 708273fc4d5..15c787deb86 100644
--- a/dev-python/pypy/pypy-.ebuild
+++ b/dev-python/pypy/pypy-7.2.0.ebuild
@@ -4,24 +4,23 @@
 EAPI=7
 
 PYTHON_COMPAT=( python2_7 pypy )
-EHG_REPO_URI="https://bitbucket.org/pypy/pypy;
-inherit check-reqs mercurial pax-utils python-any-r1 toolchain-funcs
+inherit check-reqs pax-utils python-any-r1 toolchain-funcs
 
 # note: remember to update this to newest dev-lang/python:2.7 on bump
 CPY_PATCHSET_VERSION="2.7.15"
 MY_P=pypy2.7-v${PV}
 
 DESCRIPTION="A fast, compliant alternative implementation of the Python 
language"
-HOMEPAGE="http://pypy.org/;
-SRC_URI="
+HOMEPAGE="https://pypy.org/;
+SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2

https://dev.gentoo.org/~floppym/python/python-gentoo-patches-${CPY_PATCHSET_VERSION}.tar.xz;
 
 LICENSE="MIT"
 # pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")'
 # pypy 7.0.0: install directory changed to 'pypy2.7'
 SLOT="0/41-py27"
-KEYWORDS=""
-IUSE="bzip2 gdbm +jit libressl low-memory ncurses sandbox sqlite 
cpu_flags_x86_sse2 test tk"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 gdbm +jit libressl low-memory ncurses sandbox sqlite 
cpu_flags_x86_sse2 tk"
 
 RDEPEND=">=sys-libs/zlib-1.1.3:0=
virtual/libffi:0=
@@ -99,11 +98,6 @@ pkg_setup() {
fi
 }
 
-src_unpack() {
-   default
-   mercurial_src_unpack
-}
-
 src_prepare() {
eapply "${FILESDIR}/7.0.0-gentoo-path.patch"
eapply 
"${FILESDIR}/1.9-distutils.unixccompiler.UnixCCompiler.runtime_library_dir_option.patch"
@@ -202,6 +196,7 @@ src_compile() {
# Generate cffi modules
# Please keep in sync with pypy/tool/build_cffi_imports.py!
 #cffi_build_scripts = {
+#"_ssl": "_ssl_build.py",
 #"sqlite3": "_sqlite3_build.py",
 #"audioop": "_audioop_build.py",
 #"tk": "_tkinter/tklib_build.py",
@@ -210,7 +205,7 @@ src_compile() {
 #"gdbm": "_gdbm_build.py"  if sys.platform != "win32" else None,
 #"pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None,
 #"resource": "_resource_build.py" if sys.platform != "win32" else None,
-   cffi_targets=( audioop syslog pwdgrp resource )
+   cffi_targets=( ssl audioop syslog pwdgrp resource )
use gdbm && cffi_targets+=( gdbm )
use ncurses && cffi_targets+=( curses )
use sqlite && cffi_targets+=( sqlite3 )
@@ -253,7 +248,7 @@ src_install() {
einfo "Installing PyPy ..."
exeinto "${dest}"
doexe pypy-c libpypy-c.so
-   pax-mark m "${ED%/}${dest}/pypy-c" "${ED%/}${dest}/libpypy-c.so"
+   pax-mark m "${ED}${dest}/pypy-c" "${ED}${dest}/libpypy-c.so"
insinto "${dest}"
# preserve mtimes to avoid obsoleting caches
insopts -p
@@ -262,21 +257,21 @@ src_install() {
dodoc README.rst
 
if ! use gdbm; then
-   rm -r "${ED%/}${dest}"/lib_pypy/gdbm.py \
-   "${ED%/}${dest}"/lib-python/*2.7/test/test_gdbm.py || 
die
+   rm -r 

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

2019-10-18 Thread Michał Górny
commit: b34e62b817a2b0ac8ad3152bca2f1c37940c87be
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 18 10:47:29 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 16:24:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b34e62b8

virtual/pypy: Bump to 7.2.0

Signed-off-by: Michał Górny  gentoo.org>

 virtual/pypy/pypy-7.2.0.ebuild | 17 +
 1 file changed, 17 insertions(+)

diff --git a/virtual/pypy/pypy-7.2.0.ebuild b/virtual/pypy/pypy-7.2.0.ebuild
new file mode 100644
index 000..76abaa12420
--- /dev/null
+++ b/virtual/pypy/pypy-7.2.0.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A virtual for PyPy Python implementation"
+# pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")'
+# pypy 7.0.0: install directory changed to 'pypy2.7'
+SLOT="0/41-py27"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 gdbm ncurses sqlite tk"
+
+RDEPEND="
+   || (
+   
>=dev-python/pypy-${PV}:${SLOT}[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?]
+   >=dev-python/pypy-bin-${PV}:${SLOT}[gdbm(-)?,sqlite?,tk?]
+   )"



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

2019-10-18 Thread Michał Górny
commit: f67461511d56d00071fe41624d587ce9e9f52a42
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct 18 10:47:58 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 16:24:27 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6746151

virtual/pypy3: Bump to 7.2.0

Signed-off-by: Michał Górny  gentoo.org>

 virtual/pypy3/pypy3-7.2.0.ebuild | 16 
 1 file changed, 16 insertions(+)

diff --git a/virtual/pypy3/pypy3-7.2.0.ebuild b/virtual/pypy3/pypy3-7.2.0.ebuild
new file mode 100644
index 000..7f21db04c90
--- /dev/null
+++ b/virtual/pypy3/pypy3-7.2.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A virtual for PyPy3 Python implementation"
+# pypy3 -c 'import sysconfig; print(sysconfig.get_config_var("SOABI"))'
+SLOT="0/72-py36"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 gdbm ncurses sqlite tk"
+
+RDEPEND="
+   || (
+   
>=dev-python/pypy3-${PV}:${SLOT}[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?]
+   >=dev-python/pypy3-bin-${PV}:${SLOT}[gdbm(-)?,sqlite?,tk?]
+   )"



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

2019-10-18 Thread Michał Górny
commit: 3a339e9997a03f170066624b4eb7c4e92f0eddb4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 17 17:34:59 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Oct 18 16:24:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a339e99

dev-python/pypy3: Bump to 7.2.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pypy3/Manifest  |   1 +
 dev-python/pypy3/files/7.2.0-distutils-cxx.patch   | 306 +
 .../{pypy3-.ebuild => pypy3-7.2.0.ebuild}  |  49 ++--
 dev-python/pypy3/pypy3-.ebuild |  35 ++-
 4 files changed, 342 insertions(+), 49 deletions(-)

diff --git a/dev-python/pypy3/Manifest b/dev-python/pypy3/Manifest
index d687ce6ca9f..1c2085f148f 100644
--- a/dev-python/pypy3/Manifest
+++ b/dev-python/pypy3/Manifest
@@ -1 +1,2 @@
 DIST pypy3.6-v7.1.1-src.tar.bz2 23171982 BLAKE2B 
be43528bc6f3e02d146016a4969bd8c7a9e880a3bd3b77f441aac6d22ef67700f71e0171ec66bd2c0bd506db64af69d6b75b59a9dd0353ee70e6629b
 SHA512 
17e78f9c7080d597a6283d8e8247d1ca78f09a14ff221db8c3d90d255b5befc73102b317ca34a80979e544d5ee72f3e5e649f89d185a085f4cc15012da4d0473
+DIST pypy3.6-v7.2.0-src.tar.bz2 21850076 BLAKE2B 
756ea3034fe8971c979ec83c9cbfac55a680f3ef03b276475aa4318f3480ae5ede609b8413412df64db553a33979670498b1f97184f3b57406619c9db7f01127
 SHA512 
bcbb53062a473d504bcc082cf6286f6169c83d1f38d22c4d7c4e46ddc32bca9d91e71194637e6650db5bec02b29fe262b22fe236d627b6bc3e6e0c59c66c07cc

diff --git a/dev-python/pypy3/files/7.2.0-distutils-cxx.patch 
b/dev-python/pypy3/files/7.2.0-distutils-cxx.patch
new file mode 100644
index 000..89a38050c80
--- /dev/null
+++ b/dev-python/pypy3/files/7.2.0-distutils-cxx.patch
@@ -0,0 +1,306 @@
+diff --git a/lib-python/3/distutils/cygwinccompiler.py 
b/lib-python/3/distutils/cygwinccompiler.py
+index 1c36990..ead3174 100644
+--- a/lib-python/3/distutils/cygwinccompiler.py
 b/lib-python/3/distutils/cygwinccompiler.py
+@@ -125,8 +125,10 @@ class CygwinCCompiler(UnixCCompiler):
+ # dllwrap 2.10.90 is buggy
+ if self.ld_version >= "2.10.90":
+ self.linker_dll = "gcc"
++self.linker_dll_cxx = "g++"
+ else:
+ self.linker_dll = "dllwrap"
++self.linker_dll_cxx = "dllwrap"
+ 
+ # ld_version >= "2.13" support -shared so use it instead of
+ # -mdll -static
+@@ -140,9 +142,13 @@ class CygwinCCompiler(UnixCCompiler):
+ self.set_executables(compiler='gcc -mcygwin -O -Wall',
+  compiler_so='gcc -mcygwin -mdll -O -Wall',
+  compiler_cxx='g++ -mcygwin -O -Wall',
++ compiler_so_cxx='g++ -mcygwin -mdll -O -Wall',
+  linker_exe='gcc -mcygwin',
+  linker_so=('%s -mcygwin %s' %
+-(self.linker_dll, shared_option)))
++(self.linker_dll, shared_option)),
++ linker_exe_cxx='g++ -mcygwin',
++ linker_so_cxx=('%s -mcygwin %s' %
++(self.linker_dll_cxx, 
shared_option)))
+ 
+ # cygwin and mingw32 need different sets of libraries
+ if self.gcc_version == "2.91.57":
+@@ -166,8 +172,12 @@ class CygwinCCompiler(UnixCCompiler):
+ raise CompileError(msg)
+ else: # for other files use the C-compiler
+ try:
+-self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
+-   extra_postargs)
++if self.detect_language(src) == 'c++':
++self.spawn(self.compiler_so_cxx + cc_args + [src, '-o', 
obj] +
++   extra_postargs)
++else:
++self.spawn(self.compiler_so + cc_args + [src, '-o', obj] +
++   extra_postargs)
+ except DistutilsExecError as msg:
+ raise CompileError(msg)
+ 
+@@ -302,9 +312,14 @@ class Mingw32CCompiler(CygwinCCompiler):
+ self.set_executables(compiler='gcc -O -Wall',
+  compiler_so='gcc -mdll -O -Wall',
+  compiler_cxx='g++ -O -Wall',
++ compiler_so_cxx='g++ -mdll -O -Wall',
+  linker_exe='gcc',
+  linker_so='%s %s %s'
+ % (self.linker_dll, shared_option,
++   entry_point),
++ linker_exe_cxx='g++',
++ linker_so_cxx='%s %s %s'
++% (self.linker_dll_cxx, shared_option,
+entry_point))
+ # Maybe we should also append -mthreads, but then the finished
+ # dlls need another dll 

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

2019-10-18 Thread Matthew Thode
commit: 2fc28526575fa8a99887606d2db998bccbac08d3
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 16:19:04 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:19:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fc28526

app-admin/puppet: actually fix 6.10.1 patching

Bug: https://bugs.gentoo.org/697982
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 .../puppet/files/puppet-fix-tests-6.10.1.patch | 107 -
 1 file changed, 19 insertions(+), 88 deletions(-)

diff --git a/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch 
b/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
index adb9e8dd7d4..daa065dabb5 100644
--- a/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
+++ b/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
@@ -1,88 +1,19 @@
-* puppet-fix-tests-6.4.1.patch *
-PWD: /var/tmp/portage/app-admin/puppet-6.10.1/work/all/puppet-6.10.1
-PATCH TOOL: patch -> /usr/bin/patch
-VERSION INFO:
-GNU patch 2.7.6
-Copyright (C) 2003, 2009-2012 Free Software Foundation, Inc.
-Copyright (C) 1988 Larry Wall
-
-License GPLv3+: GNU GPL version 3 or later .
-This is free software: you are free to change and redistribute it.
-There is NO WARRANTY, to the extent permitted by law.
-
-Written by Larry Wall and Paul Eggert
-
-
-
-PATCH COMMAND:  patch -p0 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
-
-
-checking file spec/unit/network/http/api/indirected_routes_spec.rb
-Hunk #1 FAILED at 144.
-1 out of 1 hunk FAILED
-
-patch program exited with status 1
-
-
-PATCH COMMAND:  patch -p1 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
-
-
-can't find file to patch at input line 3
-Perhaps you used the wrong -p or --strip option?
-The text leading up to this was:
---
-|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
-|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
---
-No file to patch.  Skipping patch.
-1 out of 1 hunk ignored
-
-patch program exited with status 1
-
-
-PATCH COMMAND:  patch -p2 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
-
-
-can't find file to patch at input line 3
-Perhaps you used the wrong -p or --strip option?
-The text leading up to this was:
---
-|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
-|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
---
-No file to patch.  Skipping patch.
-1 out of 1 hunk ignored
-
-patch program exited with status 1
-
-
-PATCH COMMAND:  patch -p3 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
-
-
-can't find file to patch at input line 3
-Perhaps you used the wrong -p or --strip option?
-The text leading up to this was:
---
-|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
-|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
---
-No file to patch.  Skipping patch.
-1 out of 1 hunk ignored
-
-patch program exited with status 1
-
-
-PATCH COMMAND:  patch -p4 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
-
-
-can't find file to patch at input line 3
-Perhaps you used the wrong -p or --strip option?
-The text leading up to this was:
---
-|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
-|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
---
-No file to patch.  Skipping patch.
-1 out of 1 hunk ignored
-
-patch program exited with status 1
+--- spec/unit/network/http/api/indirected_routes_spec.rb   2018-09-17 
19:36:56.0 -0500
 spec/unit/network/http/api/indirected_routes_spec.rb   2018-09-19 
10:52:35.841614932 -0500
+@@ -158,16 +158,6 @@
+   handler.uri2indirection("GET", uri_escaped, params)
+

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

2019-10-18 Thread Matthew Thode
commit: fcd913346c8541d34dcf5cec2723cc77ca88907d
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 16:01:11 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:03:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcd91334

app-admin/puppetdb: 6.6.0 stable amd64/x86 with cleanup

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

 app-admin/puppetdb/Manifest  |  1 -
 app-admin/puppetdb/puppetdb-6.4.0.ebuild | 92 
 app-admin/puppetdb/puppetdb-6.6.0.ebuild |  2 +-
 3 files changed, 1 insertion(+), 94 deletions(-)

diff --git a/app-admin/puppetdb/Manifest b/app-admin/puppetdb/Manifest
index 0181fa046d7..81f9e473349 100644
--- a/app-admin/puppetdb/Manifest
+++ b/app-admin/puppetdb/Manifest
@@ -1,4 +1,3 @@
-DIST puppetdb-6.4.0.tar.gz 41720668 BLAKE2B 
a4637750c553eed8ee5bdd46212a7455fe1d59015aa78fe01f6fa9ee2b4a98ec50a2a8b551f65d4bc6965b2a969f559c53f5a6324a8e48983a1d027948387ce7
 SHA512 
c49afce1661ed284280e89ed9dbc2406a657e5f2cdbc501acf50900d431b58a341f1541789ea4ffe9109e8d30faf47eb85573a589426c40ad50597a7d81b5552
 DIST puppetdb-6.5.0.tar.gz 41768030 BLAKE2B 
2a52239dabb5c026f4d00ee2942e3128ce50f1de23aa5ff5d53f2020237b54867b48727e774ecc27f5f18bd1617b43fcf30fbd3b03a730ca60d5bab7296e3f9c
 SHA512 
8aee40101a17e22ef5b9b7b965ffe8d8a9b8dfaa787721b3e6a5e7363b98e0c52dc0583216a058540618a6a980cf80f138fa6b358a9daac518abd50981910cf5
 DIST puppetdb-6.6.0.tar.gz 43366185 BLAKE2B 
224c13ff2583a7c8124f03845eca4756be6446e7470565c44d3fe1fcb756d5564ae2ded69d0bef1dda939efe082756c0e44afd3c6b0fc4268a744946860b5a02
 SHA512 
5076f52af51b7a3b43a0deb9cf1f10d77da98a5e531983d3661cda522c8d46f70882457934be6f70e77587b930077c0a4d2eaf7ed41eff9c6bcf4bc5ecbf2205
 DIST puppetdb-6.7.1.tar.gz 43563417 BLAKE2B 
902397b2bedb64f4ccb2d6932d6dbfb7d67c479640fb8429aecf3de558ce31ab0017175f183ee3e66268d802fc9901f5473271b6598414a7b57182bc1788f1e3
 SHA512 
58c6f3db268885e603bb1219f89c2aeb237c042fe7eccc95ce5622cfc739f971d9d37e0cc37cae335552d0d9845fccfd9425381faf6ec3534b20991bd9f7db0e

diff --git a/app-admin/puppetdb/puppetdb-6.4.0.ebuild 
b/app-admin/puppetdb/puppetdb-6.4.0.ebuild
deleted file mode 100644
index 77d1c1ca9cc..000
--- a/app-admin/puppetdb/puppetdb-6.4.0.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib systemd user
-
-DESCRIPTION="PuppetDB collects data generated by Puppet."
-HOMEPAGE="http://docs.puppetlabs.com/puppetdb/;
-SRC_URI="https://downloads.puppetlabs.com/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-# will need the same keywords as puppet
-KEYWORDS="amd64 x86"
-
-RDEPEND+=">=virtual/jdk-1.8.0"
-DEPEND+=""
-
-pkg_setup() {
-   enewgroup puppetdb
-   enewuser puppetdb -1 -1 /opt/puppetlabs/server/data/puppetdb "puppetdb"
-}
-
-src_prepare() {
-   sed -i 's/sysconfig/conf\.d/g' ext/redhat/puppetdb.service || die
-   sed -i 's/sysconfig/conf\.d/g' ext/bin/puppetdb || die
-   sed -i 's/sysconfig/conf\.d/g' install.sh || die
-   sed -i 's/var\/run/run/g' ext/puppetdb.tmpfiles.conf || die
-   sed -i 's/var\/run/run/g' install.sh || die
-   default
-}
-
-src_compile() {
-   einfo "not compiling"
-}
-
-src_install() {
-   dodir /opt/puppetlabs/server/data/puppetdb
-   insinto /opt/puppetlabs/server/apps/puppetdb
-   insopts -m0744
-   doins ext/ezbake-functions.sh
-   insopts -m0644
-   doins ext/ezbake.manifest
-   doins puppetdb.jar
-   insinto /etc/puppetlabs/puppetdb
-   doins ext/config/logback.xml
-   doins ext/config/bootstrap.cfg
-   doins ext/config/request-logging.xml
-   insinto /etc/puppetlabs/puppetdb/conf.d
-   doins ext/config/conf.d/jetty.ini
-   doins ext/config/conf.d/repl.ini
-   doins ext/config/conf.d/database.ini
-   doins ext/config/conf.d/config.ini
-   insopts -m0755
-   insinto /opt/puppetlabs/server/apps/puppetdb/scripts
-   doins install.sh
-   insinto /opt/puppetlabs/server/apps/puppetdb/cli/apps
-   doins ext/cli/foreground
-   doins ext/cli/ssl-setup
-   doins ext/cli/config-migration
-   doins ext/cli/foreground
-   doins ext/cli/anonymize
-   doins ext/cli/reload
-   doins ext/cli/start
-   doins ext/cli/stop
-   insinto /opt/puppetlabs/server/apps/puppetdb/bin
-   doins ext/bin/puppetdb
-   insopts -m0644
-   dodir /opt/puppetlabs/server/bin
-   dosym ../apps/puppetdb/bin/puppetdb /opt/puppetlabs/server/bin/puppetdb
-   dodir /opt/puppetlabs/bin
-   dosym ../server/apps/puppetdb/bin/puppetdb /opt/puppetlabs/bin/puppetdb
-   dosym ../../opt/puppetlabs/server/apps/puppetdb/bin/puppetdb 
/usr/bin/puppetdb
-   # init type tasks
-   newconfd ext/default puppetdb
-   systemd_dounit ext/redhat/puppetdb.service
-   

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

2019-10-18 Thread Matthew Thode
commit: a4661159f50e7b86563bffd4650596a9d33b4828
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 16:01:53 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:03:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4661159

app-admin/puppetserver: 6.6.0-r1 stable amd64/x86 with cleanup

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

 app-admin/puppetserver/puppetserver-6.6.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppetserver/puppetserver-6.6.0-r1.ebuild 
b/app-admin/puppetserver/puppetserver-6.6.0-r1.ebuild
index 45ac7ad8e73..19d3602bfcb 100644
--- a/app-admin/puppetserver/puppetserver-6.6.0-r1.ebuild
+++ b/app-admin/puppetserver/puppetserver-6.6.0-r1.ebuild
@@ -13,7 +13,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="puppetdb"
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND+="
>=virtual/jdk-1.8.0



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

2019-10-18 Thread Matthew Thode
commit: 75aaaf8d49010cf4b022afc8e70f2c342bc2189a
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:41:16 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75aaaf8d

dev-libs/leatherman: 1.7.3 stable amd64/x86 with cleanup

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

 dev-libs/leatherman/Manifest|  2 -
 dev-libs/leatherman/leatherman-1.7.1.ebuild | 58 -
 dev-libs/leatherman/leatherman-1.7.2.ebuild | 58 -
 dev-libs/leatherman/leatherman-1.7.3.ebuild |  2 +-
 4 files changed, 1 insertion(+), 119 deletions(-)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index c4db3823183..f82f6072fe3 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,5 +1,3 @@
 DIST leatherman-1.3.0.tar.gz 434229 BLAKE2B 
e0c19bca2378afc4928554ac0862543504ba725aadc6cffd78220f7f7f1b725cad960fc6d9fdd2d54a43c233b35959ebcb9c71d1191a5535703599fa32e3301e
 SHA512 
5e06be7add652f69b0d4a8d778e33dfb68183c4d598217cc6542d2431f7984f0af989c27bd69e89b77ab03d6dd2adab9d70f68cd87dae20d8e24ae05923fbe9b
-DIST leatherman-1.7.1.tar.gz 814579 BLAKE2B 
e29e8bbdb58800e35c4c790b833a512ead0e177e22f140f16ef725738336b49afa709976ab6062b7219b705e14a369f31eef0ded26d51240919ace2cba1de739
 SHA512 
753cb89f7511b6fbc66e49e9c1fc3ecf1a2d61781b65baea763666f49780cf84a20e0a90fb98e7146f6e11555f892cbfb9c3b4f0d84961af7cce7fc4a277a7f1
-DIST leatherman-1.7.2.tar.gz 815088 BLAKE2B 
d011d2ae8b75c2a6c10c35da0293624fac0a30dac35d5b7f8b2fee264140666996821f60c8f67eeafc351b669c8263d1a95a00ffcdcd28448b36852c607ca69f
 SHA512 
2976e8d56e603ba86bc22217c1c6b729fed62536ea56b0a74afed4d48a85429d2c79900652344e63905448a13d60d29440623980fd770d40e3db729af5d70ef3
 DIST leatherman-1.7.3.tar.gz 815236 BLAKE2B 
26bb6cbf19675741c0d325f42ccce993cd7fa58b116601fa5fc79d2fb443f2c8b26799138289714a1663996247c267efb5485b04cfa68161bc291d91758f7f84
 SHA512 
4ce424d90c83e5268925095f267f3365b0a75e60d92af83836c790f538d381153c200fff1a1e152b60e247240698d3cbe9a59c4e366040eece0101819775ddff
 DIST leatherman-1.8.0.tar.gz 815287 BLAKE2B 
a8377cedac49e0845e689e4e8ff58fb59e6e59c77e8cd363774d22650b4b286d85e0b5e52b926c3e4169ba2eadf9fc50f16f5161001a16f63c49f3ca66c996cc
 SHA512 
fb308025f0807b12527fe6fc287fee861eb27b6987df38c03e1da73c477aec5a2a6c92860c983c4cc10282388ee34f2cf657a38831db007519c471f815f492f6

diff --git a/dev-libs/leatherman/leatherman-1.7.1.ebuild 
b/dev-libs/leatherman/leatherman-1.7.1.ebuild
deleted file mode 100644
index 3e365ff23fc..000
--- a/dev-libs/leatherman/leatherman-1.7.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils multilib
-
-DESCRIPTION="A C++ toolkit"
-HOMEPAGE="https://github.com/puppetlabs/leatherman;
-SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-IUSE="debug static-libs test"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
-SLOT="0/${PV}"
-
-RDEPEND="net-misc/curl"
-DEPEND=">=dev-libs/boost-1.54:=[nls]
-   net-misc/curl
-   >=sys-devel/gcc-4.8:*"
-
-PATCHES=( "${FILESDIR}"/portage-sandbox-test-fix.patch )
-
-src_prepare() {
-   sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
-   cmake-utils_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_VERBOSE_MAKEFILE=ON
-   -DCMAKE_BUILD_TYPE=None
-   -DCMAKE_INSTALL_PREFIX=/usr
-   )
-   if ! use static-libs; then
-   mycmakeargs+=(
-   -DLEATHERMAN_SHARED=ON
-   )
-   else
-   mycmakeargs+=(
-   -DLEATHERMAN_SHARED=OFF
-   )
-   fi
-   if use debug; then
-   mycmakeargs+=(
- -DCMAKE_BUILD_TYPE=Debug
-   )
-   fi
-   cmake-utils_src_configure
-}
-
-src_test() {
-   "${WORKDIR}/${P}"_build/bin/leatherman_test
-}
-
-src_install() {
-   cmake-utils_src_install
-}

diff --git a/dev-libs/leatherman/leatherman-1.7.2.ebuild 
b/dev-libs/leatherman/leatherman-1.7.2.ebuild
deleted file mode 100644
index 33542697140..000
--- a/dev-libs/leatherman/leatherman-1.7.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils multilib
-
-DESCRIPTION="A C++ toolkit"
-HOMEPAGE="https://github.com/puppetlabs/leatherman;
-SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-IUSE="debug static-libs test"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-SLOT="0/${PV}"
-
-RDEPEND="net-misc/curl"
-DEPEND=">=dev-libs/boost-1.54:=[nls]
-   net-misc/curl
- 

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

2019-10-18 Thread Matthew Thode
commit: de8394e029d2e975ae7aa3a57bf44350111adc27
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:45:32 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de8394e0

www-apps/icingaweb2: 2.7.3 bump with cleanup of 2.7.2

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

 www-apps/icingaweb2/Manifest| 2 +-
 .../icingaweb2/{icingaweb2-2.7.2.ebuild => icingaweb2-2.7.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/icingaweb2/Manifest b/www-apps/icingaweb2/Manifest
index 69c58e6175a..ad6384a490d 100644
--- a/www-apps/icingaweb2/Manifest
+++ b/www-apps/icingaweb2/Manifest
@@ -1,3 +1,3 @@
 DIST icingaweb2-2.6.3.tar.gz 8174959 BLAKE2B 
6301a0a509031828b8db886e4ab060596f2239de4e65fe714d98a8f8f73305a1116b534f5c2747ab78446ff39b34fa96fe4eae758942aab2de4946c7cf1cdbcb
 SHA512 
f1d14c7ed87cd677a1c4ac03fd6a54514e7e4693000215e0e1628b0480c738848858546e54866eda3a55b4e7c35b5837ad01dc08b5b76502e24d5a727e271710
 DIST icingaweb2-2.7.1.tar.gz 8389123 BLAKE2B 
f5e469c1fde2b7bc2c22f898a5fb5370ca3788571501f070ed56b32afe8a155aafe70a06bbe09b77cd996725c3e176363aaf0fa885bc843102c56ddfa14da11d
 SHA512 
0300e483e83699a79750dcfd4467a151fcfa95a1eb8735e8d0d8e5d59595ad252b630add3cb462fa4c115b2891f9ab904739ee36d5eb7fcdfb489c9d7658f1b6
-DIST icingaweb2-2.7.2.tar.gz 8389920 BLAKE2B 
6acdc87b782bc0b745d5abd6734328763523e97296c3da34a16b62141c400c6082a6a8c45be360ad9792b36ea613579137fdcd41f3ad95a9728f8637a2d61789
 SHA512 
b14419b1194ce091e106990b0249c84fcde906ec8bd9d42683ea5d6c2e5f5083e593d61744421f87efdcd8218f55ce60bf5bc18ba92368ba176a2cf348aa7423
+DIST icingaweb2-2.7.3.tar.gz 8388950 BLAKE2B 
8d32f770020f72f1fbbf4c73de1935430976afe976c0b4497a1dd470aad286a9ec57d16dcd1f3f7354082206033d58b43966884c453fd8dd4106c13d8d3e8359
 SHA512 
eee3f81bb3eb29eeaeffe2f890639a12d75f9acf3b7c6649faaff3ab817ab2a5b6cd93b31637794969817f2d42ef5a46704fdc09488642caf6380f57c90d97cb

diff --git a/www-apps/icingaweb2/icingaweb2-2.7.2.ebuild 
b/www-apps/icingaweb2/icingaweb2-2.7.3.ebuild
similarity index 100%
rename from www-apps/icingaweb2/icingaweb2-2.7.2.ebuild
rename to www-apps/icingaweb2/icingaweb2-2.7.3.ebuild



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

2019-10-18 Thread Matthew Thode
commit: 1c9c97e4aebdfbd451fd6cfb9d90b1bc75a41eba
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:30:40 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c9c97e4

net-analyzer/icinga2: 2.11.1 bump

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

 net-analyzer/icinga2/Manifest  |   1 +
 net-analyzer/icinga2/icinga2-2.11.1.ebuild | 171 +
 2 files changed, 172 insertions(+)

diff --git a/net-analyzer/icinga2/Manifest b/net-analyzer/icinga2/Manifest
index 0bcf3d6f374..792ecd588db 100644
--- a/net-analyzer/icinga2/Manifest
+++ b/net-analyzer/icinga2/Manifest
@@ -1,3 +1,4 @@
 DIST icinga2-2.10.5.tar.gz 5141193 BLAKE2B 
7262e9f0ccb2180faba51b2e04b58964fe6c72782ab61488925c0f6528a80fc1f58afab5f3858f6f696fdca7c8d5546beb8fd374f7f72e452ffd7cd1f1e3ff4a
 SHA512 
c43443d0bbb4ec997d3c5405ef3019ae3b09131bcce2e9d7c7b0e187768335a2f1347fdd382655f12a28b3a29ec8bf644c1b610ea5157f3ee40ae5e0e9253d38
 DIST icinga2-2.10.6.tar.gz 5148999 BLAKE2B 
a155ccb381947854dfd9115575680b7101dc8d01708c76c719d4e6306c5acdf0bf3394128a8937f7d8e03d97c18442ee1b576af28f98fb11e42055b8b4498cce
 SHA512 
ab1440fdbb36217c5e50d8a254d0f1294e412325038fcc02496c606558ab33f4fafda93b1f439ab6e51e956aff6daddee005282b6d529c7e9d9d781af120834d
 DIST icinga2-2.11.0.tar.gz 7472579 BLAKE2B 
36fd54e1067e6e61ab642debaa3589e6885e0be2f68d2a2bea0d03d3149ecc8bfc985ea7806b89a3b95662b03b2fc8695ae62a0036783a9f40d759e823d116fa
 SHA512 
2526c622f00c355aa255fc42d0350bd5eb3fc270e7b4e3c3dcab575b4f7b7e03580d742064c2c3e143f302757fd997078ca12cb01575c78f79ae5616251262e2
+DIST icinga2-2.11.1.tar.gz 7475972 BLAKE2B 
448c43c42c44e15f313aae61be33c6fce858bf2bcd588d83986f0b3804f89a0ab7ae4a1fdb1750558c5a649ea0a05368a2dcf20d06cfc2093fd6c05840bace23
 SHA512 
7b57b97ab2be4f70fc29aa3d40d4fac24c8a353406c44d41c45dffc6ab930184d92a4887936ee5d8b42c986188bfb371701cc1499aed747e084cefa6448a438a

diff --git a/net-analyzer/icinga2/icinga2-2.11.1.ebuild 
b/net-analyzer/icinga2/icinga2-2.11.1.ebuild
new file mode 100644
index 000..cb76f2a6cf7
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.11.1.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+if [[ ${PV} !=  ]]; then
+   inherit cmake-utils depend.apache eutils systemd toolchain-funcs user 
wxwidgets
+   SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86"
+else
+   inherit cmake-utils depend.apache eutils git-r3 systemd toolchain-funcs 
user wxwidgets
+   EGIT_REPO_URI="https://github.com/Icinga/icinga2.git;
+   EGIT_BRANCH="master"
+fi
+
+DESCRIPTION="Distributed, general purpose, network monitoring engine"
+HOMEPAGE="http://icinga.org/icinga2;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="classicui console libressl lto mail mariadb minimal +mysql nano-syntax 
+plugins postgres systemd +vim-syntax"
+WX_GTK_VER="3.0"
+
+CDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   >=dev-libs/boost-1.66.0:=[context]
+   console? ( dev-libs/libedit )
+   mariadb? ( dev-db/mariadb-connector-c:= )
+   mysql? ( dev-db/mysql-connector-c:= )
+   postgres? ( dev-db/postgresql:= )
+   dev-libs/yajl"
+
+DEPEND="
+   ${CDEPEND}
+   sys-devel/bison
+   >=sys-devel/flex-2.5.35"
+
+RDEPEND="
+   ${CDEPEND}
+   plugins? ( || (
+   net-analyzer/monitoring-plugins
+   net-analyzer/nagios-plugins
+   ) )
+   mail? ( virtual/mailx )
+   classicui? ( net-analyzer/icinga[web] )"
+
+REQUIRED_USE="!minimal? ( || ( mariadb mysql postgres ) )"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+   enewgroup icinga
+   enewgroup icingacmd
+   enewgroup nagios  # for plugins
+   enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
+}
+
+src_configure() {
+   sed -i 's/FLAGS\}\ \-g/FLAGS\}\ \-lpthread\ /g' CMakeLists.txt || die
+   local mycmakeargs=(
+   -DICINGA2_UNITY_BUILD=FALSE
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc
+   -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+   -DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
+   -DICINGA2_PLUGINDIR="/usr/$(get_libdir)/nagios/plugins"
+   -DICINGA2_USER=icinga
+   -DICINGA2_GROUP=icingacmd
+   -DICINGA2_COMMAND_GROUP=icingacmd
+   -DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=yes
+   -DUSE_SYSTEMD=$(usex systemd ON OFF)
+   -DLOGROTATE_HAS_SU=ON
+   )
+   # default to off if minimal, allow the flags to be set otherwise
+   if use minimal; 

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

2019-10-18 Thread Matthew Thode
commit: 999caa55a0d6da9766774d080b02c5c2c7c9f84a
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:58:47 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:03:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=999caa55

app-admin/puppet: 6.9.0 stable amd64/x86 with cleanup

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

 app-admin/puppet/Manifest   |   1 -
 app-admin/puppet/puppet-6.7.2.ebuild| 138 
 app-admin/puppet/puppet-6.9.0-r1.ebuild |   2 +-
 3 files changed, 1 insertion(+), 140 deletions(-)

diff --git a/app-admin/puppet/Manifest b/app-admin/puppet/Manifest
index a5f1d14813f..bc414ec999f 100644
--- a/app-admin/puppet/Manifest
+++ b/app-admin/puppet/Manifest
@@ -3,6 +3,5 @@ DIST puppet-5.5.14.tar.gz 3075736 BLAKE2B 
bfea82d40f9671cdefab0b10c9481e4fbad397
 DIST puppet-5.5.16.tar.gz 3084466 BLAKE2B 
f3e2f12331b4794b90a81a4f80e626fcd3d5252b7cbdacc1d6243faa557540d3a68e5e23b7b5c3e4f4286774e9a9198e59fb15d7d7c41d7193754ed5c80dd624
 SHA512 
7d9e533e352a22e347ac6467094c4bdbde893c2503f47b4a2d175fd6e759e6662991efdd1a0a83d9495d22f28da4ae7a30cc771c5d90b8252c4618bd8837833a
 DIST puppet-5.5.17.tar.gz 3090402 BLAKE2B 
7722ec4196ee766c29eddd7dc73539a4a5a0e4cc781a84af25210488328b5ae01178ca64e8eef14152cbeca06dc8fe145b5e39ce6a120d7689fc32cbbbe16f9f
 SHA512 
95c6cd836a9f732ccfe2d8b83096e79c32428c43390c0826663f896ca1388e1fe3b55d93a5a7548831e95de85247db717866c36786d591e207341c734d70168b
 DIST puppet-6.10.1.tar.gz 2809383 BLAKE2B 
1589dcfa7d73b81ab7fbc3fca4b2fe956f5d240d11583c484262d5243e4713bb4aa9cd5c655e9566468050ab2e5c0ec0cc720e3ff9088add0744e02147b4e3bb
 SHA512 
211c9837eb4a77a54bf09811a1a84709eef06f17e0c5c9c598d01bce2e183e69974709ad4dfb8f5fecd7433c1ff52757aa699c623155d1a0742f2e07eaf2ec56
-DIST puppet-6.7.2.tar.gz 2907345 BLAKE2B 
bbb0f789ae64b5039e5b1bd2ce985e89ba693d33352baee7a1d11df7f314663aa3606a73d42d6b20042f81ee405a72cd17b9cf8f3c3cb257869e982f84cfd552
 SHA512 
6ebcaff30bda27fc17870b991287d620d455db8cf9a41c59833efc2a7541d368a7278689eb0494d0f6328cd334764f21ffe8700a567696e05398a5c16b7d
 DIST puppet-6.8.0.tar.gz 2906582 BLAKE2B 
2dd2f9eb203aa951e0ea9639efa20aac3edb063b4bd68dd0b05a07fc2a399c4b59b3b87a1cb573096c5042920080623b9afb9c4d863b6249664edcc291cd1787
 SHA512 
c8446529e706dab7fd156b5bbca638f1722b07a638f626df2002a4ad218ec5e448f533395a6eed613b31ebbacea56539e903c040998d4110c8a362f2ead7f43b
 DIST puppet-6.9.0.tar.gz 2911311 BLAKE2B 
1d58d0e976430031732de4f63c3ec100088f1d93894cf52caff252befeabe1ea3cf51939063143bd7c9011bb56f2a6420ba38ae230edea19ac8f1f135ed6f56f
 SHA512 
4d1bc1a398c1e75bf8e832d477a0fff4fa3613510f8d59d73594e6fc2f2bbbedf050b1e7729b71bb1428c230f42fcf7b98f7a7683fc3c52cb36a596e20e6540b

diff --git a/app-admin/puppet/puppet-6.7.2.ebuild 
b/app-admin/puppet/puppet-6.7.2.ebuild
deleted file mode 100644
index eeefd4e8c63..000
--- a/app-admin/puppet/puppet-6.7.2.ebuild
+++ /dev/null
@@ -1,138 +0,0 @@
-# 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_TASK_DOC="doc:all"
-
-RUBY_FAKEGEM_EXTRAINSTALL="locales"
-
-inherit eutils user ruby-fakegem eapi7-ver
-
-DESCRIPTION="A system automation and configuration management software."
-HOMEPAGE="https://puppet.com/;
-SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz;
-
-LICENSE="Apache-2.0 GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
-IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
-RESTRICT="test"
-
-ruby_add_rdepend "
-   dev-ruby/hiera
-   dev-ruby/json:=
-   dev-ruby/semantic_puppet
-   >=dev-ruby/facter-3.0.0
-   augeas? ( dev-ruby/ruby-augeas )
-   diff? ( dev-ruby/diff-lcs )
-   doc? ( dev-ruby/rdoc )
-   ldap? ( dev-ruby/ruby-ldap )
-   shadow? ( dev-ruby/ruby-shadow )
-   sqlite? ( dev-ruby/sqlite3 )
-   virtual/ruby-ssl
-   dev-ruby/hocon"
-
-ruby_add_bdepend "
-   doc? ( dev-ruby/yard )
-   test? (
-   dev-ruby/mocha
-   dev-ruby/rack
-   dev-ruby/rspec-its
-   )"
-# this should go in the above lists, but isn't because of test deps not being 
keyworded
-#   dev-ruby/rspec-collection_matchers
-
-RDEPEND+=" ${RDEPEND}
-   rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] )
-   selinux? (
-   sys-libs/libselinux[ruby]
-   sec-policy/selinux-puppet
-   )
-   vim-syntax? ( >=app-vim/puppet-syntax-3.0.1 )
-   >=app-portage/eix-0.18.0"
-PDEPEND="emacs? ( >=app-emacs/puppet-mode-0.3-r1 )"
-
-pkg_setup() {
-   enewgroup puppet
-   enewuser puppet -1 -1 /var/lib/puppet puppet
-}
-
-all_ruby_prepare() {
-   # Avoid spec that require unpackaged json-schema.
-   rm spec/lib/matchers/json.rb $( grep -Rl matchers/json spec) || die
-
-   # 

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

2019-10-18 Thread Matthew Thode
commit: 9f18875affa6d404bf0c08da9bbde4fb9f8c5368
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:59:39 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:03:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f18875a

app-admin/puppet-agent: 6.9.0 stable amd64/x86

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

 app-admin/puppet-agent/Manifest  |  2 -
 app-admin/puppet-agent/puppet-agent-6.7.2.ebuild | 79 
 app-admin/puppet-agent/puppet-agent-6.9.0.ebuild |  2 +-
 3 files changed, 1 insertion(+), 82 deletions(-)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index 1b24e24c233..11b0c4f384c 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -1,7 +1,5 @@
 DIST puppet-agent_6.10.1-1stretch_amd64.deb 19712026 BLAKE2B 
82f5d9d18a3171b230d0e6027b9b8409b51096e12c5fd88844643320a0f5f654bc79880b35565571a6367a2d95f7a8f90ac811c2df1f1ec6c1866508c7e112e0
 SHA512 
8b289f8690fb67d353bc004a281e3e32a118048523bb6c743fa8ff46f2583c155ddffc22a7898662b598128f5ef75d77fd9a99b43c4afb72a23a2bfa3959f0c6
 DIST puppet-agent_6.10.1-1stretch_i386.deb 20055310 BLAKE2B 
31bb9bd40f5098b666d911545b565654d84a422625536eff954256851089d211ea2660dbdab7b73df370efc0bbc41875617df3012ee734ec586af87967e8bc02
 SHA512 
33348839a245bcda4c76feae214d72bb36c1959c1b6f5f9c2db084ad1bb0018393ab6bd94e16ed987a23b2f253baf31f1df0453ead1cc6860941954ff31930c2
-DIST puppet-agent_6.7.2-1stretch_amd64.deb 19184682 BLAKE2B 
6078c1b21f0e737881d949cfaf052571b40df450e53724696e2738141da30e59da7abf03ce00285ab77fd4ac52291ab6e42da373420807499f37b75c872fa83e
 SHA512 
1c464448b1478397af7b806f8bfcaee0378af9d4b6bfa5a73e8245064329b1b49136107c5fcbaea0ef6cd4e1daf840d1ba331e798b2cd255ead54969520315c9
-DIST puppet-agent_6.7.2-1stretch_i386.deb 19452604 BLAKE2B 
1915e7b7085db6cb87980a98a7cb85881331719e2af98b07f8461514a0296b3cf5181eb88f78893055a0fa09fc2ffce0e81e866db27abcecf9d8f745e329311c
 SHA512 
8d89735601c9764e207eef77f5d42e836ee9d7c0c0f2856e0f293919cce52e7a42fc28fca42bd0e0bed760063aae527007ef7ce25503ce05fcfd495a44243ee3
 DIST puppet-agent_6.8.0-1stretch_amd64.deb 19184708 BLAKE2B 
ac961857784eaaa55604285cf305dac437007628ea5baa3c3ae9a8a345fcb8cf2b20820bd80cc2c96afb77cb03c4d2779b17b1183c9bc9461b56860d2179f448
 SHA512 
707146f71b21df4b89244df7b786f481136cfe7b0cabf20aa0d4784aca547ba85c75d13309b77c853b9e034b8271f350b30bc5358010d90b7573e3fdb63c31b6
 DIST puppet-agent_6.8.0-1stretch_i386.deb 19478404 BLAKE2B 
0b9d76bb3d745ca42e489e16a133d684aa0e485941d59c6773c447f5fc79be7a964f0a2ff9e4c334a47b7d2ffc0264bd49e4f7806cbc2e72e037da1c9e385d51
 SHA512 
f8bc962b32abbaf070b81245b7488b4fc131d5a9e3ec94ac97038f5e9c942c70a493e61e13190fe2837eb898518724bb5f360b37531003dab37606436d66219b
 DIST puppet-agent_6.9.0-1stretch_amd64.deb 19846122 BLAKE2B 
7f9133d1f5cb85f45c96490c230ee0cfda707db390a3a39be218fcd730e2298099e6d70c4f44bb5c6af46736c2c8aa7906a16375088c0119045dc77b53343b91
 SHA512 
f96cb1a6108a21192493b7b9958243e537ab41ce3ab6a7dde4d12bcd5da25ec6a5b29632acb87c4e156256578e8348c6fdfe26043539292f98203cce69b04fff

diff --git a/app-admin/puppet-agent/puppet-agent-6.7.2.ebuild 
b/app-admin/puppet-agent/puppet-agent-6.7.2.ebuild
deleted file mode 100644
index c648209a4a7..000
--- a/app-admin/puppet-agent/puppet-agent-6.7.2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit eutils systemd unpacker user
-
-DESCRIPTION="general puppet client utils along with hiera and facter"
-HOMEPAGE="https://puppetlabs.com/;
-SRC_BASE="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch;
-SRC_URI="
-   amd64? ( ${SRC_BASE}_amd64.deb )
-   x86?   ( ${SRC_BASE}_i386.deb )"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="puppetdb selinux"
-RESTRICT="strip"
-
-CDEPEND="!app-admin/augeas
-   !app-admin/puppet
-   !dev-ruby/hiera
-   !dev-ruby/facter
-   !app-emulation/virt-what"
-
-DEPEND="
-   ${CDEPEND}"
-RDEPEND="${CDEPEND}
-   app-portage/eix
-   sys-apps/dmidecode
-   sys-libs/glibc
-   sys-libs/readline:0/7
-   sys-libs/ncurses:0[tinfo]
-   selinux? (
-   sys-libs/libselinux[ruby]
-   sec-policy/selinux-puppet
-   )
-   puppetdb? ( >=dev-ruby/puppetdb-termini-5.0.1 )"
-
-S=${WORKDIR}
-
-pkg_setup() {
-   enewgroup puppet
-   enewuser puppet -1 -1 /var/run/puppet puppet
-}
-
-src_install() {
-   # conf.d
-   doconfd etc/default/puppet
-   doconfd etc/default/pxp-agent
-   # logrotate.d
-   insinto /etc/logrotate.d
-   doins etc/logrotate.d/pxp-agent
-   # puppet itself
-   insinto /etc/puppetlabs
-   doins -r etc/puppetlabs/*
-   # logdir for systemd
-   dodir var/log/puppetlabs/puppet/
-   fperms 0750 

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

2019-10-18 Thread Matthew Thode
commit: b74c77bf5d128f05d224b9155b5ad02f798a964c
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:44:08 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74c77bf

net-misc/memcached: 1.5.19 stable amd64 and x86 with cleanup

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

 net-misc/memcached/Manifest|  2 -
 net-misc/memcached/memcached-1.5.17.ebuild | 95 --
 net-misc/memcached/memcached-1.5.18.ebuild | 95 --
 net-misc/memcached/memcached-1.5.19.ebuild |  2 +-
 4 files changed, 1 insertion(+), 193 deletions(-)

diff --git a/net-misc/memcached/Manifest b/net-misc/memcached/Manifest
index 7aabc1c5bd8..8737d239770 100644
--- a/net-misc/memcached/Manifest
+++ b/net-misc/memcached/Manifest
@@ -1,4 +1,2 @@
 DIST memcached-1.5.14.tar.gz 485076 BLAKE2B 
729b4b708e921184bfedadbb02b0304eb09dcebbbd1420605deb608dcd7dea25a8982ca0f387f237a1a6412b4682372018c593396ef9bff5aa0fa901c0fdafd6
 SHA512 
d06083d971d0a40195b4dfb252a3bf7c3a0d20b2dcad56726ff9e0b87ba84024309300516dad40181f1b7af4d9c4f35924383977c5e1ff9b5f13d2ef05f684ed
-DIST memcached-1.5.17.tar.gz 490891 BLAKE2B 
a971083ec29452755de953537ff9c23fc872496d4746420c9c20e91c226481bd3818c00495cb7a5d85f2bd38683061e57a9e92cbfe0e4cd28bcafde37f05cabf
 SHA512 
533c916015d738ff4c7ba8420654ae15b19370b3e959b89d43bc60cae1bda65d36906be05fad44a025ea1878570a8c1a36041c4e4c0cdf0cea84e6bb0e7ba325
-DIST memcached-1.5.18.tar.gz 502185 BLAKE2B 
a138dd2178906607fb75e76fa9806e41fe284cefd57a1be6b49f64ae4d3fd972c6996f1dedc161871e02271c9d3c42fbb4c957426f24c100f6024327fa03ba41
 SHA512 
00d12a97b6ae00814735491b31d1390a8dd15c99e971ae99547e70bf6b343023b88d6e26bb8404dea5f8636f26688e71cd39d8612d06902285b9be91786f9931
 DIST memcached-1.5.19.tar.gz 517380 BLAKE2B 
8c6e7c87e786d88c783da87396daec9deb0c9f8c4112fa7cec6d79e8e96505576c2b7f3dff91317a3f45582322cfdb435535a41bb537b0a0bfec9df6f8d5986f
 SHA512 
4445f383e18ffc53071c13b495c3864978658f4f6f439ab4579dd831fc12ad4850e04e9526954608ae627b0b23a9d6cb327560f02d15abff23e12f5d7c1723b4

diff --git a/net-misc/memcached/memcached-1.5.17.ebuild 
b/net-misc/memcached/memcached-1.5.17.ebuild
deleted file mode 100644
index c2d8ac61d12..000
--- a/net-misc/memcached/memcached-1.5.17.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools eutils flag-o-matic systemd user
-
-MY_PV="${PV/_rc/-rc}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="High-performance, distributed memory object caching system"
-HOMEPAGE="http://memcached.org/;
-SRC_URI="https://www.memcached.org/files/${MY_P}.tar.gz
-   https://www.memcached.org/files/old/${MY_P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="debug sasl seccomp selinux slabs-reassign test" # hugetlbfs later
-
-RDEPEND=">=dev-libs/libevent-1.4:=
-   dev-lang/perl
-   sasl? ( dev-libs/cyrus-sasl )
-   seccomp? ( sys-libs/libseccomp )
-   selinux? ( sec-policy/selinux-memcached )"
-DEPEND="${RDEPEND}
-   test? ( virtual/perl-Test-Harness 
>=dev-perl/Cache-Memcached-1.24 )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-1.2.2-fbsd.patch"
-   epatch "${FILESDIR}/${PN}-1.4.0-fix-as-needed-linking.patch"
-   epatch "${FILESDIR}/${PN}-1.4.4-as-needed.patch"
-   epatch "${FILESDIR}/${PN}-1.4.17-EWOULDBLOCK.patch"
-   sed -i -e 's,-Werror,,g' configure.ac || die
-   sed -i -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,' configure.ac || die
-   eautoreconf
-   use slabs-reassign && append-flags -DALLOW_SLABS_REASSIGN
-
-   # Tweak upstream systemd unit to use Gentoo variables/envfile.
-   # As noted by bug #587440
-   sed -i -e '/^ExecStart/{
-   s,{USER},{MEMCACHED_RUNAS},g;
-   s,{CACHESIZE},{MEMUSAGE},g;
-   s,OPTIONS,MISC_OPTS,g;
-   };
-   /Environment=/{s,OPTIONS,MISC_OPTS,g;};
-   /EnvironmentFile=/{s,/sysconfig/,/conf.d/,g;};
-   ' \
-   "${S}"/scripts/memcached.service
-   default
-}
-
-src_configure() {
-   econf \
-   --disable-docs \
-   $(use_enable sasl)
-   # The xml2rfc tool to build the additional docs requires TCL :-(
-   # `use_enable doc docs`
-}
-
-src_compile() {
-   # There is a heavy degree of per-object compile flags
-   # Users do NOT know better than upstream. Trying to compile the testapp 
and
-   # the -debug version with -DNDEBUG _WILL_ fail.
-   append-flags -UNDEBUG -pthread
-   emake testapp memcached-debug CFLAGS="${CFLAGS}"
-   

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

2019-10-18 Thread Matthew Thode
commit: 7b6d2e7f66ec914a7a46fe793b16ed38fba698a9
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 16:02:36 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:03:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b6d2e7f

dev-ruby/puppetdb-termini: 6.6.0 stable amd64/x86 with cleanup

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

 dev-ruby/puppetdb-termini/Manifest |  1 -
 .../puppetdb-termini/puppetdb-termini-6.4.0.ebuild | 28 --
 .../puppetdb-termini/puppetdb-termini-6.6.0.ebuild |  2 +-
 3 files changed, 1 insertion(+), 30 deletions(-)

diff --git a/dev-ruby/puppetdb-termini/Manifest 
b/dev-ruby/puppetdb-termini/Manifest
index 077838f90ec..7f937a33631 100644
--- a/dev-ruby/puppetdb-termini/Manifest
+++ b/dev-ruby/puppetdb-termini/Manifest
@@ -1,4 +1,3 @@
-DIST puppetdb-termini_6.4.0-1stretch_all.deb 20680 BLAKE2B 
ccd129eb8510794c165b6fa88ed391006e583e58fb43fe1be72e1b976d75f30aee0775552f6460840b805e1e4ceb03a6c77dba70afeed75dc2ea3ebcfd4bee77
 SHA512 
948b5ccd1ddc1f0d52174a073cd13af9e1ba0f713c5326c4d3cbfae7daeeb16cb05efdfb7ac572f9d79e34842fca0a95e054ee49239d593bf4429223c18bb58c
 DIST puppetdb-termini_6.5.0-1stretch_all.deb 20870 BLAKE2B 
41cf79f2b7ce218fdfbce2588d8e206a3751ffb07a133bc5ddef3f5662c51eb9d12cda3017921edd4aafc064ff35713daaea9542dac687b3f399f2706657131f
 SHA512 
956952bbc81cbcabd8ef3e37b9ebc7c489c90da7b75ff2c9a3e36cd312ee3f7eb3350cbf21a8b44f1d6722ddd3168f5795ba7258147f340a111b9dc29796cd84
 DIST puppetdb-termini_6.6.0-1stretch_all.deb 21210 BLAKE2B 
366c5d0d97e3e1f63e61bc6a8d7d05b621c226cff872c4f780b4b08aac8db9ebcbbe5e5c81f9a79f11e1fc9cedb8c42d86e69055fb5af2195f07c59347699eda
 SHA512 
b410322239933539b685c65c1f85ecca28269adaf94d4521b4ee6d0780701889c6aaec4c01fdcdce1338277544d249c597ac9c697bdacdeb943c53fd6538d348
 DIST puppetdb-termini_6.7.1-1stretch_all.deb 21284 BLAKE2B 
f56f9bfa97f711be08250cc525714af55b9defe2f12b17b2a5f3ec931d9f2f461f009bd0c3534eee848b45d3454752392479ae179695d27f42bc7e4747903dba
 SHA512 
b03a3ebcc068ab7274abd7096821231dcafc1ce7064b6692f5834f28f3046905c855336c5aff4db1b031a2d06c616a75fa48860f45800bfc167c9045364bbcd4

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.4.0.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-6.4.0.ebuild
deleted file mode 100644
index 5dea78fa68f..000
--- a/dev-ruby/puppetdb-termini/puppetdb-termini-6.4.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-inherit unpacker
-
-DESCRIPTION="Library needed to connect puppet to puppetdb"
-HOMEPAGE="http://docs.puppetlabs.com/puppetdb/;
-SRC_URI="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch_all.deb;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-# will need the same keywords as puppet
-KEYWORDS="amd64 ~ppc x86"
-
-RDEPEND+=""
-DEPEND+=""
-
-S=${WORKDIR}
-
-src_install() {
-   insinto opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/
-   doins -r opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/*
-}

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.6.0.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-6.6.0.ebuild
index 6d51b944dfd..5dea78fa68f 100644
--- a/dev-ruby/puppetdb-termini/puppetdb-termini-6.6.0.ebuild
+++ b/dev-ruby/puppetdb-termini/puppetdb-termini-6.6.0.ebuild
@@ -15,7 +15,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 
 RDEPEND+=""
 DEPEND+=""



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

2019-10-18 Thread Matthew Thode
commit: b1ddfd103d0d85a81fb93408fc16711d928fb73f
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:37:31 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ddfd10

dev-ruby/facter: 3.14.5 stable amd64 and x86 with cleanup

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

 dev-ruby/facter/Manifest |   1 -
 dev-ruby/facter/facter-3.14.4.ebuild | 112 ---
 dev-ruby/facter/facter-3.14.5.ebuild |   2 +-
 3 files changed, 1 insertion(+), 114 deletions(-)

diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
index de8091767e8..72b16410fb4 100644
--- a/dev-ruby/facter/Manifest
+++ b/dev-ruby/facter/Manifest
@@ -1,4 +1,3 @@
 DIST facter-3.14.3.tar.gz 395278 BLAKE2B 
bda071fb92d337e2d6e58faaa33a6b135b6dfd3b6f4077af3b872bd44191629810fe99a7a1f8d9e3b16c4ff45ba587730bccb0652dcd85f4562120def42c7f38
 SHA512 
abd7cb3e102bff7635d6b2c17e5650e0a7b7be5ed6b81003df17053f0c9c4887f7db948714daaa313c7569bcc788ab18b0361a57395cd5118a6be38d571794df
-DIST facter-3.14.4.tar.gz 395849 BLAKE2B 
e3a08f5c6e1f8d441ea50b41432f0fff3120923e7cb81e47586622e239d691c89c1e4bbf17fdbc744ae20cc44b5bf0adf4178ab7d8572dc44edef4f3b789e92b
 SHA512 
631eb10efdd51e2aab2f9d139c18bb659dffd0341141f2c094f46f27e54166527355be52e768e1f5e4f61ff3eb3bf099ec8626947d66cea71d36395d6551c7b9
 DIST facter-3.14.5.tar.gz 395892 BLAKE2B 
c8f98716f4abca8d5f32c1cbfa79437b4021b1994476a31f7c00fc092f02aa08ed01eff4357368e140763bd3d39a38915c99606914e697ff8c769c9f0dd26638
 SHA512 
387f3d4c654ce3231129dbf6c22ccb04023d73006e4709b330b11ac01ef55831c618d80171ffb8de455be2a12e339a2b52ab782b0ed97e2dbfeaca2692ed951d
 DIST facter-3.9.2.tar.gz 380883 BLAKE2B 
d2804664e0499715230e5696c5a9ebae933f5b43dfb37154251d47763c2c7f78cfa8d1413dd836e5a0c76ed67300d066fa5bb390f17f85cd4cb7a444eaf0d133
 SHA512 
bc040826311bbff40f5a151ade315d9d47ef1e0f3faa570805e48ca55405265e66308230118b9cd59f701ecd76a7b0fd4d9200dd4ace838521223a162b105374

diff --git a/dev-ruby/facter/facter-3.14.4.ebuild 
b/dev-ruby/facter/facter-3.14.4.ebuild
deleted file mode 100644
index 4c7110c0cf6..000
--- a/dev-ruby/facter/facter-3.14.4.ebuild
+++ /dev/null
@@ -1,112 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-# git-r3 goes after ruby-ng so that it overrides src_unpack properly
-inherit cmake-utils eutils multilib ruby-ng
-
-DESCRIPTION="A cross-platform ruby library for retrieving facts from operating 
systems"
-HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="debug test"
-if [[ ${PV} ==  ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/puppetlabs/facter.git;
-   EGIT_BRANCH="master"
-else
-   [[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-   SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-BDEPEND="
-   >=sys-devel/gcc-4.8:*
-   dev-cpp/cpp-hocon"
-COMMON_DEPEND="
-   >=dev-libs/leatherman-1.0.0:=
-   dev-libs/openssl:0=
-   sys-apps/util-linux
-   app-emulation/virt-what
-   net-misc/curl
-   >=dev-libs/boost-1.54:=[nls]
-   =dev-cpp/yaml-cpp-0.5.1
-   ! 10.1.0/>= 10/' \
-   -e '/rspec/ s/2.11.0/2.11/' \
-   -e '/mocha/ s/0.10.5/0.14.0/' lib/Gemfile || die
-   # patches
-   default
-   cmake-utils_src_prepare
-}
-
-each_ruby_configure() {
-   # hack for correct calculation of relative path from facter.rb to
-   # libfacter.so
-   my_ruby_sitelibdir=$(ruby_rbconfig_value 'sitelibdir')
-}
-
-src_configure() {
-   ruby-ng_src_configure
-
-   local mycmakeargs=(
-   -DCMAKE_VERBOSE_MAKEFILE=ON
-   -DRUBY_LIB_INSTALL=${my_ruby_sitelibdir}
-   -DBLKID_LIBRARYDIR="${EPREFIX}/$(get_libdir)"
-   )
-   if use debug; then
-   mycmakeargs+=(
- -DCMAKE_BUILD_TYPE=Debug
-   )
-   fi
-   cmake-utils_src_configure
-}
-
-src_compile() {
-   addpredict /proc/self/oom_score_adj
-   cmake-utils_src_compile
-}
-
-src_test() {
-   cmake-utils_src_test
-}
-
-each_ruby_install() {
-   doruby "${BUILD_DIR}"/lib/facter.rb
-}
-
-src_install() {
-   cmake-utils_src_install
-   ruby-ng_src_install
-}

diff --git a/dev-ruby/facter/facter-3.14.5.ebuild 
b/dev-ruby/facter/facter-3.14.5.ebuild
index 4c7110c0cf6..b9491751f31 100644
--- a/dev-ruby/facter/facter-3.14.5.ebuild
+++ b/dev-ruby/facter/facter-3.14.5.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_BRANCH="master"
 else
[[ "${PV}" = *_rc* ]] || \
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="amd64 ~arm ~hppa 

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

2019-10-18 Thread Matthew Thode
commit: ce2b6dcaf7fd3639732545056ec65f5e9288b839
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:35:26 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce2b6dca

app-admin/ansible: 2.7.14 and 2.8.6 bump

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

 app-admin/ansible/Manifest  |  2 +
 app-admin/ansible/ansible-2.7.14.ebuild | 67 ++
 app-admin/ansible/ansible-2.8.6.ebuild  | 72 +
 3 files changed, 141 insertions(+)

diff --git a/app-admin/ansible/Manifest b/app-admin/ansible/Manifest
index 7e1fb122f85..184713bae8d 100644
--- a/app-admin/ansible/Manifest
+++ b/app-admin/ansible/Manifest
@@ -1,2 +1,4 @@
 DIST ansible-2.7.13.tar.gz 11861862 BLAKE2B 
3123d84b9f45bb5e50a0d5db5d0b2ae10163e2818d30f29ad5a80c23979a347eb5e17806bd295df547b88a09191918443162cb25d7f339ae76df52e3960954b0
 SHA512 
8dc19e5c93a90d43ced6628699d2da42d522a020bb2cdd35ba73f6286998c605852c89250af8696e94aba0080b2fab12761a39c3e2eb86d39c212a198f970652
+DIST ansible-2.7.14.tar.gz 10203158 BLAKE2B 
b0727a4e2bd4d2126305e2a529fcb9c938f062a19d473d6ddc4463a0ed1e1c6d444592660aa8bb3f05f8885592f8ae3b021a7b1e6ab43422c35f88f999ff4de4
 SHA512 
16705c965b03daeb4e6b6a0bccf0be976de60948b88c06e65449d2662dce1fbcbf796ca2b5f6ebe9884d19d918b6ec0e5b0edcb0ef606b7bae61bfa7699c7b92
 DIST ansible-2.8.5.tar.gz 14352036 BLAKE2B 
a2d60132e3aeafd7dbdcca13daac1c657e19fc1b7822b33dde35e0fff67fa7093b54330652ba6c02bad710fd2d05fba3081cd0b609f16bccf7e2eba52f9fa45b
 SHA512 
6555b9a3d3d8298410e54f7116d92fc1978bef185a5136cfb809c1942b08b96c562af9e0d6d1a25eee5a4024d309b6713ce27836857b428a7c362e26efb53777
+DIST ansible-2.8.6.tar.gz 12689211 BLAKE2B 
9c451037f705f2e591633b59700e89c6de672c43b4b12ee36de9dd4b3ac0e6a19f7e2cd0df9a29b7973f4192d85b3c48fc8915bb36dbd36d9206ee3ca5ccbb09
 SHA512 
8e29644b4651e72bd3fbd4ca91c2a36b76e5dde9bb445d3c6e0061c315eb66e1bc507729b70d82998c1cbb25f3ef0e20d281ab8354a047193e60bf4831938418

diff --git a/app-admin/ansible/ansible-2.7.14.ebuild 
b/app-admin/ansible/ansible-2.7.14.ebuild
new file mode 100644
index 000..401feb026c7
--- /dev/null
+++ b/app-admin/ansible/ansible-2.7.14.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+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 ~arm ~arm64 ~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}]
+   dev-python/pexpect[${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
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/docsite/_build/html/. )
+   distutils-r1_python_install_all
+
+   doman docs/man/man1/*.1
+   dodoc -r examples
+}

diff --git a/app-admin/ansible/ansible-2.8.6.ebuild 
b/app-admin/ansible/ansible-2.8.6.ebuild
new file mode 100644
index 000..b078e69e7bf
--- /dev/null
+++ b/app-admin/ansible/ansible-2.8.6.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+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 

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

2019-10-18 Thread Matthew Thode
commit: 8d613ebaa25d4ee4499e5a28a3322618e1797418
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:55:46 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d613eba

app-admin/puppet: fix 6.10.1 patching

Fixes: https://bugs.gentoo.org/697982
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 .../puppet/files/puppet-fix-tests-6.10.1.patch | 88 ++
 app-admin/puppet/puppet-6.10.1.ebuild  |  2 +-
 2 files changed, 89 insertions(+), 1 deletion(-)

diff --git a/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch 
b/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
new file mode 100644
index 000..adb9e8dd7d4
--- /dev/null
+++ b/app-admin/puppet/files/puppet-fix-tests-6.10.1.patch
@@ -0,0 +1,88 @@
+* puppet-fix-tests-6.4.1.patch *
+PWD: /var/tmp/portage/app-admin/puppet-6.10.1/work/all/puppet-6.10.1
+PATCH TOOL: patch -> /usr/bin/patch
+VERSION INFO:
+GNU patch 2.7.6
+Copyright (C) 2003, 2009-2012 Free Software Foundation, Inc.
+Copyright (C) 1988 Larry Wall
+
+License GPLv3+: GNU GPL version 3 or later .
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+
+Written by Larry Wall and Paul Eggert
+
+
+
+PATCH COMMAND:  patch -p0 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
+
+
+checking file spec/unit/network/http/api/indirected_routes_spec.rb
+Hunk #1 FAILED at 144.
+1 out of 1 hunk FAILED
+
+patch program exited with status 1
+
+
+PATCH COMMAND:  patch -p1 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
+
+
+can't find file to patch at input line 3
+Perhaps you used the wrong -p or --strip option?
+The text leading up to this was:
+--
+|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
+|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
+--
+No file to patch.  Skipping patch.
+1 out of 1 hunk ignored
+
+patch program exited with status 1
+
+
+PATCH COMMAND:  patch -p2 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
+
+
+can't find file to patch at input line 3
+Perhaps you used the wrong -p or --strip option?
+The text leading up to this was:
+--
+|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
+|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
+--
+No file to patch.  Skipping patch.
+1 out of 1 hunk ignored
+
+patch program exited with status 1
+
+
+PATCH COMMAND:  patch -p3 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
+
+
+can't find file to patch at input line 3
+Perhaps you used the wrong -p or --strip option?
+The text leading up to this was:
+--
+|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
+|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
+--
+No file to patch.  Skipping patch.
+1 out of 1 hunk ignored
+
+patch program exited with status 1
+
+
+PATCH COMMAND:  patch -p4 -g0 -E --no-backup-if-mismatch  --dry-run -f < 
'/var/tmp/portage/app-admin/puppet-6.10.1/files/puppet-fix-tests-6.4.1.patch'
+
+
+can't find file to patch at input line 3
+Perhaps you used the wrong -p or --strip option?
+The text leading up to this was:
+--
+|--- spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-17 
19:36:56.0 -0500
+|+++ spec/unit/network/http/api/indirected_routes_spec.rb  2018-09-19 
10:52:35.841614932 -0500
+--
+No file to patch.  Skipping patch.
+1 out of 1 hunk ignored
+
+patch program exited with status 1

diff --git a/app-admin/puppet/puppet-6.10.1.ebuild 
b/app-admin/puppet/puppet-6.10.1.ebuild
index d633c6865a1..2fac345af4a 100644
--- a/app-admin/puppet/puppet-6.10.1.ebuild
+++ b/app-admin/puppet/puppet-6.10.1.ebuild
@@ -68,7 +68,7 @@ all_ruby_prepare() {
rm 

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

2019-10-18 Thread Matthew Thode
commit: 51abb648afe80543193bdc5fc7d2138d9ffb123d
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 15:39:04 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 16:02:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51abb648

dev-python/os-vif: 1.15.2 stable amd64 and x86 with cleanup

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

 dev-python/os-vif/Manifest |  1 -
 dev-python/os-vif/os-vif-1.15.1.ebuild | 42 --
 dev-python/os-vif/os-vif-1.15.2.ebuild |  2 +-
 3 files changed, 1 insertion(+), 44 deletions(-)

diff --git a/dev-python/os-vif/Manifest b/dev-python/os-vif/Manifest
index 03e0c53f777..b63ba599292 100644
--- a/dev-python/os-vif/Manifest
+++ b/dev-python/os-vif/Manifest
@@ -1,3 +1,2 @@
-DIST os_vif-1.15.1.tar.gz 85731 BLAKE2B 
c0855be5204513fcb18c39341cae0a51ab6ad961d6a5f6d96988b14e43beddc4fa7f8c3e8a590eb5f657af8590603cc516a194af1c73234566047b8059cacfc1
 SHA512 
5fe7ba1bccba81e8b03884e951012f181c4b0cff433ff9211ce750868811ad4a3e5b1188396c466a286df6a9db824fd07a7abc62fda2c0c302d6d07108f419a8
 DIST os_vif-1.15.2.tar.gz 88591 BLAKE2B 
0a272332b238590f9a0cb5a457babe8a26b97196370c0e0f4c1e4d89e814e424dcc5f0e2786cfed3729bb5608434507966ab22d9c68b90e7deef0767381a8cb0
 SHA512 
36d7ff16fa5b7cecf738d9e867657ce7ff416a514cde2796306d2e21a1ae1985528dfcecc95498a24fcfc16687cfdbc898550520ac6e17d202ea554e8d8c7b1c
 DIST os_vif-1.9.1.tar.gz 63535 BLAKE2B 
b4c017b129c2540794f85292341a165761d00439d24727fe2f421c96a7e5d6e79e8572a217064e01e62bb137f136fcfd1d51ff089c48026de82d91a8b9a22386
 SHA512 
d7aeec1bd277a91a1f4fbda69e5408f5648ad49ffac17d1ca54148ec30c31bd64639151988355395166747df91cd89cbed1863a2668a5bce89a10d2aea55c288

diff --git a/dev-python/os-vif/os-vif-1.15.1.ebuild 
b/dev-python/os-vif/os-vif-1.15.1.ebuild
deleted file mode 100644
index f40aad0c51c..000
--- a/dev-python/os-vif/os-vif-1.15.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Cinder brick library for managing local volume attaches"
-HOMEPAGE="https://github.com/openstack/os-vif;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/os_vif-${PV}.tar.gz"
-S="${WORKDIR}/os_vif-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   !~dev-python/pbr-2.1.0"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
-   >=dev-python/oslo-concurrency-3.20.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.30.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
-   >=dev-python/oslo-privsep-1.23.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-versionedobjects-1.28.0[${PYTHON_USEDEP}]
-   >=dev-python/ovsdbapp-0.12.1[${PYTHON_USEDEP}]
-   >=dev-python/pyroute2-0.5.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
-   >=dev-python/debtcollector-1.19.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   sed -i '/^pbr/d' requirements.txt || die  # pbr should be uncapped in 
stable/ocata
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/os-vif/os-vif-1.15.2.ebuild 
b/dev-python/os-vif/os-vif-1.15.2.ebuild
index 4a5e87d488c..f40aad0c51c 100644
--- a/dev-python/os-vif/os-vif-1.15.2.ebuild
+++ b/dev-python/os-vif/os-vif-1.15.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/os_vif-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



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

2019-10-18 Thread Bernard Cafarelli
commit: 436721498f2edcdecd3bbe1fb987188e5caa1364
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Oct 18 15:07:52 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Oct 18 15:08:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43672149

www-apps/owncloud: 10.3 supports php 7.3

Bug: https://bugs.gentoo.org/688870
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../owncloud/{owncloud-10.3.0.ebuild => owncloud-10.3.0-r1.ebuild}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/owncloud/owncloud-10.3.0.ebuild 
b/www-apps/owncloud/owncloud-10.3.0-r1.ebuild
similarity index 82%
rename from www-apps/owncloud/owncloud-10.3.0.ebuild
rename to www-apps/owncloud/owncloud-10.3.0-r1.ebuild
index a0cf0b0eccd..df2ef215759 100644
--- a/www-apps/owncloud/owncloud-10.3.0.ebuild
+++ b/www-apps/owncloud/owncloud-10.3.0-r1.ebuild
@@ -7,7 +7,7 @@ inherit eutils webapp
 
 DESCRIPTION="Web-based storage application where all your data is under your 
own control"
 HOMEPAGE="https://owncloud.org;
-SRC_URI="https://download.owncloud.org/community/${P}.tar.bz2 -> ${PF}.tar.bz2"
+SRC_URI="https://download.owncloud.org/community/${P}.tar.bz2;
 LICENSE="AGPL-3"
 
 KEYWORDS="~amd64 ~arm ~x86"
@@ -15,7 +15,7 @@ IUSE="+curl mysql postgres +sqlite"
 REQUIRED_USE="|| ( mysql postgres sqlite )"
 
 DEPEND=""
-RDEPEND="

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

2019-10-18 Thread Manuel Rüger
commit: 83809632e5f87e55cf5727decc774abfce49bc71
Author: Dan Molik  danmolik  com>
AuthorDate: Fri Oct  4 11:49:54 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Oct 18 14:23:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83809632

app-admin/terraform: bump version to 0.12.11

Fix go vendoring
Fix licensing
Test with Go 1.12 and 1.13

Closes: https://bugs.gentoo.org/693766
Closes: https://bugs.gentoo.org/694720
Closes: https://bugs.gentoo.org/696738
Closes: https://github.com/gentoo/gentoo/pull/13130

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

 app-admin/terraform/Manifest |  1 +
 app-admin/terraform/terraform-0.12.11.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/app-admin/terraform/Manifest b/app-admin/terraform/Manifest
index 8a72f8e1fb6..9d2fbb52b1a 100644
--- a/app-admin/terraform/Manifest
+++ b/app-admin/terraform/Manifest
@@ -1,3 +1,4 @@
 DIST terraform-0.11.12.tar.gz 10907800 BLAKE2B 
d6d3c0a25b994be9b61e250a35adae55ed6cea0cc2166ea62774940292d9e881f16b66b88b19d5fd2c64d19bdefb82b58c79c54d8c641e1ad2970ef9a463c4c8
 SHA512 
2163cbc13a2bd37b7dace0a4ee2b3da4ee212038f9d6e11b83e509a794cf8d854040c366a099c9560a149157c6951b1f9d1698b4c47bd11a4fa96c4521e93414
 DIST terraform-0.11.13.tar.gz 10906645 BLAKE2B 
dafdc1acddd4ea97b41cc5899a541701731fce7b13b914c0859fe148b10b5c8ac877d71b665e8d80a65f376bb09fb8ae6fd0e0263ff711a156ca48119522f89d
 SHA512 
1c16f20d1a65c763f1091ff2d20e0752e62903e07a12d41dd722e5c4c989f477da7d64901336d7536ed1693d5c82f4548ae5a643edae85b4e83325fc8c81b245
+DIST terraform-0.12.11.tar.gz 10338506 BLAKE2B 
62c33591d55345e8c3b9c61b6f9279a81f1df86f5942cee787e4b525eefdf7834f0e4a6a42835b4ae038591fd467941454be674a3c1c8b329ef52c7d5e39359b
 SHA512 
2b9fc6157aea8e7159d7089135620433d75843f2b3dd48af18ecb7837a5ca3ea72d9dfb8b36a25a65f9b9cc29b11bc7910f124a359a6589bfb941a714e0b7b23
 DIST terraform-0.12.3.tar.gz 9702723 BLAKE2B 
90a6c77d1e1d6cac761572a470e23d44705fd0326ea9e2b280f51d9c95c85a74951ed93d8d8eed56821209bbd0725ffc034cf19bbb2da2baa390eafac790ac76
 SHA512 
49e1fefbfaf0dc0b0505836133c95dd5b664babfbdec094288ac823678cfb6e1593b19c9a0dca608cb1c7063f1ad531adba470c5ec67e3d245ef1e4341fd5b4a

diff --git a/app-admin/terraform/terraform-0.12.11.ebuild 
b/app-admin/terraform/terraform-0.12.11.ebuild
new file mode 100644
index 000..effc18ec223
--- /dev/null
+++ b/app-admin/terraform/terraform-0.12.11.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit golang-base go-module
+
+DESCRIPTION="A tool for building, changing, and combining infrastructure 
safely"
+HOMEPAGE="https://www.terraform.io/;
+
+EGO_PN="github.com/hashicorp/${PN}"
+SRC_URI="https://github.com/hashicorp/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD-2 BSD-4 ECL-2.0 imagemagick ISC JSON MIT 
MIT-with-advertising MPL-2.0 unicode"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+DEPEND=""
+
+DOCS=( {README,CHANGELOG}.md )
+
+src_compile() {
+   GOCACHE="${T}/go-cache" go build \
+   -work -o "bin/${PN}" ./ || die
+}
+
+src_install() {
+   dobin bin/terraform
+
+   einstalldocs
+}
+
+pkg_postinst() {
+   elog "If you would like to install shell completions please run:"
+   elog "terraform -install-autocomplete"
+}



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

2019-10-18 Thread Agostino Sarubbo
commit: 002f44b890f7e081269ad136e88160d7dce955ec
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 14:01:43 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 14:01:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=002f44b8

package.mask: Mask app-admin/hardening-check

Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 53490d02862..ce0b99625d0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Agostino Sarubbo  (2019-10-18)
+# Superseded by app-admin/checksec
+# Removal in 30 days.
+app-admin/hardening-check
+
 # Thomas Deutschmann  (2019-10-17)
 # clamav-milter completely broken, #697688
 ~app-antivirus/clamav-0.102.0



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

2019-10-18 Thread Lars Wendler
commit: 115c2acf81ca713bfc6acbb9a28161515ece4bac
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 13:28:58 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 13:33:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115c2acf

sys-apps/lm-sensors: Bump to version 3.6.0

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

 sys-apps/lm-sensors/Manifest|   1 +
 sys-apps/lm-sensors/lm-sensors-3.6.0.ebuild | 216 
 2 files changed, 217 insertions(+)

diff --git a/sys-apps/lm-sensors/Manifest b/sys-apps/lm-sensors/Manifest
index 1e5c83b4516..029093d0d21 100644
--- a/sys-apps/lm-sensors/Manifest
+++ b/sys-apps/lm-sensors/Manifest
@@ -1,2 +1,3 @@
 DIST lm-sensors-3.5.0.tar.gz 267133 BLAKE2B 
f8fe8efe19cd17f2c828404bee7b2b285118279f06aaa2ebf831823d6767865a2b19da7bede1f3b43b2664ae3cec41b9e840be24fa673472fe577d38f602da4e
 SHA512 
bea9b2ac01bc43622cafdce0b00ac3bb8cb2d818449c8b332ab51e7ad0022b66bcbf6ca1e99c8500bdc6092c5c1ef985bfe7cff05dbcf015bd3ccf58c00a72e1
 DIST lm-sensors-3.5.0_p20190505.tar.gz 269694 BLAKE2B 
6d665b8cbf83b26786686c5000dcac139aac930f691bac9053173dfcb92b6320afeb2f9b5ba6305cba643ff8cde356ef9e6772948d0f618cb3f5a48b3b5396f2
 SHA512 
15e3c50a9f00d284995f1ae34ef38e1ce314acb0c15d4996002287fadcf89a6f066058838c74c2b2bbec2628a3e5b9e8e010b0f5139641ee5336ac061cb33353
+DIST lm-sensors-3.6.0.tar.gz 273209 BLAKE2B 
d05efa2bf5f052158a9b3f8bbe925d45a8e00fd7fb07490ddf6c87db786c803fbe8a728693f36c301269b995c72d510657d02f2e94fbbe5a7e9f50a36214635b
 SHA512 
4e80361913aff5403f1f0737fd4f42cffe43cc170ef48fff3914c9952f71990739d723f7b0b8120d9a01bcbbc829e964cfbd0a5cf18508af8f8dc825b49860bf

diff --git a/sys-apps/lm-sensors/lm-sensors-3.6.0.ebuild 
b/sys-apps/lm-sensors/lm-sensors-3.6.0.ebuild
new file mode 100644
index 000..e2d8209c6ad
--- /dev/null
+++ b/sys-apps/lm-sensors/lm-sensors-3.6.0.ebuild
@@ -0,0 +1,216 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit linux-info systemd toolchain-funcs multilib-minimal
+
+DESCRIPTION="Hardware Monitoring user-space utilities"
+HOMEPAGE="https://hwmon.wiki.kernel.org/ 
https://github.com/lm-sensors/lm-sensors;
+
+if [[ "${PV}" =~ .*_p[[:digit:]]{8}.* ]] ; then
+   COMMIT="2c8cca3d6cd60121b401734c1a24cfec7daed4fc"
+   SRC_URI="https://github.com/lm-sensors/${PN}/archive/${COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${COMMIT}"
+else
+   SRC_URI="https://github.com/lm-sensors/lm-sensors/archive/V$(ver_rs 1- 
-).tar.gz -> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-$(ver_rs 1- -)"
+fi
+
+LICENSE="GPL-2+ LGPL-2.1"
+
+# SUBSLOT based on SONAME of libsensors.so
+SLOT="0/5.0.0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="contrib sensord static-libs"
+
+COMMON_DEPS="
+   sensord? (
+   net-analyzer/rrdtool
+   virtual/logger
+   )"
+
+RDEPEND="${COMMON_DEPS}
+   dev-lang/perl
+   !\", 
\"HWMON_MODULES\" or \"BUS_MODULES\""
+   elog " variables from \"/etc/conf.d/lm_modules\" to"
+   elog " \"/etc/modules-load.d/lm_sensors.conf\" and 
adjust format."
+   elog ""
+   elog " For details see 
https://wiki.gentoo.org/wiki/Systemd#Automatic_module_loading;
+   elog ""
+   elog " Important: Don't forget to migrate your 
module's argument"
+   elog "(modules__args variable) if 
your are not already"
+   elog "using \"/etc/modprobe.d\" (which 
is recommended)."
+
+   # Show this elog only once
+   break
+   fi
+   done
+
+   if [[ -z "${REPLACING_VERSIONS}" ]]; then
+   # New installation
+
+   elog ""
+   elog "Please run \`/usr/sbin/sensors-detect' in order to setup"
+   elog "\"/etc/modules-load.d/lm_sensors.conf\"."
+   elog ""
+   elog "You might want to add lm_sensors to your default runlevel 
to make"
+   elog "sure the sensors get initialized on the next startup."
+   elog ""
+   elog "Be warned, the probing of hardware in your system 
performed by"
+   elog "sensors-detect could freeze your system. Also make sure 
you read"
+   elog "the documentation before running ${PN} on IBM ThinkPads."
+   fi
+}



[gentoo-commits] repo/proj/libressl:master commit in: net-libs/nodejs/

2019-10-18 Thread Stefan Strogin
commit: 4bbdb934392677e85bb063b308d0a708421257b9
Author: Stefan Strogin  gentoo  org>
AuthorDate: Fri Oct 18 12:38:06 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Fri Oct 18 12:44:14 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=4bbdb934

net-libs/nodejs: Call xdg_environment_reset() from xdg-utils.eclass

Thanks-to: Jeroen Roovers  gentoo.org>
[https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73ee71f5b874d8ee6ebceccfca87b4fa7b82491c]
Signed-off-by: Stefan Strogin  gentoo.org>

 net-libs/nodejs/nodejs-12.11.1.ebuild | 4 +++-
 net-libs/nodejs/nodejs-12.12.0.ebuild | 4 +++-
 net-libs/nodejs/nodejs-8.16.2.ebuild  | 4 +++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/net-libs/nodejs/nodejs-12.11.1.ebuild 
b/net-libs/nodejs/nodejs-12.11.1.ebuild
index 9c768c8..404ead5 100644
--- a/net-libs/nodejs/nodejs-12.11.1.ebuild
+++ b/net-libs/nodejs/nodejs-12.11.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="threads"
-inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs
+inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 
toolchain-funcs xdg-utils
 
 DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
 HOMEPAGE="https://nodejs.org/;
@@ -96,6 +96,8 @@ src_prepare() {
 }
 
 src_configure() {
+   xdg_environment_reset
+
local myconf=(
--shared-cares --shared-http-parser --shared-libuv 
--shared-nghttp2
--shared-zlib

diff --git a/net-libs/nodejs/nodejs-12.12.0.ebuild 
b/net-libs/nodejs/nodejs-12.12.0.ebuild
index 9c768c8..404ead5 100644
--- a/net-libs/nodejs/nodejs-12.12.0.ebuild
+++ b/net-libs/nodejs/nodejs-12.12.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="threads"
-inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs
+inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 
toolchain-funcs xdg-utils
 
 DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
 HOMEPAGE="https://nodejs.org/;
@@ -96,6 +96,8 @@ src_prepare() {
 }
 
 src_configure() {
+   xdg_environment_reset
+
local myconf=(
--shared-cares --shared-http-parser --shared-libuv 
--shared-nghttp2
--shared-zlib

diff --git a/net-libs/nodejs/nodejs-8.16.2.ebuild 
b/net-libs/nodejs/nodejs-8.16.2.ebuild
index 9bca764..52e0c7b 100644
--- a/net-libs/nodejs/nodejs-8.16.2.ebuild
+++ b/net-libs/nodejs/nodejs-8.16.2.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python2_7 )
 PYTHON_REQ_USE="threads"
 
-inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs
+inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 
toolchain-funcs xdg-utils
 
 DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
 HOMEPAGE="https://nodejs.org/;
@@ -101,6 +101,8 @@ src_prepare() {
 }
 
 src_configure() {
+   xdg_environment_reset
+
local myconf=( --shared-cares --shared-http-parser --shared-libuv 
--shared-nghttp2 --shared-zlib )
use debug && myconf+=( --debug )
use icu && myconf+=( --with-intl=system-icu ) || myconf+=( 
--with-intl=none )



[gentoo-commits] repo/proj/libressl:master commit in: dev-util/electron/, net-wireless/aircrack-ng/, net-libs/serf/, app-crypt/qca/, ...

2019-10-18 Thread Stefan Strogin
commit: d0a4790fdb7fe494c1af0fec683558414cb152be
Author: Dennis Gaebler  uni-ulm  de>
AuthorDate: Sun Oct 13 16:19:17 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Tue Oct 15 13:31:48 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=d0a4790f

remove freebsd keywords to fix CI

Signed-off-by: Anthony G. Basile  gentoo.org>

 app-crypt/qca/qca-2.2.0.ebuild |  2 +-
 app-crypt/qca/qca-2.2.1.ebuild |  2 +-
 dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild   |  2 +-
 dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild   |  2 +-
 dev-qt/qtnetwork/qtnetwork-5.12.5.ebuild   |  2 +-
 dev-util/electron/Manifest | 17 -
 net-libs/serf/serf-1.3.9.ebuild|  2 +-
 net-mail/fetchmail/fetchmail-6.3.26-r2.ebuild  |  2 +-
 net-mail/fetchmail/fetchmail-6.3.26-r3.ebuild  |  2 +-
 net-wireless/aircrack-ng/aircrack-ng-1.2_rc1-r1.ebuild |  2 +-
 net-wireless/aircrack-ng/aircrack-ng-1.2_rc4-r1.ebuild |  2 +-
 11 files changed, 10 insertions(+), 27 deletions(-)

diff --git a/app-crypt/qca/qca-2.2.0.ebuild b/app-crypt/qca/qca-2.2.0.ebuild
index bdbfdd2..5810c4b 100644
--- a/app-crypt/qca/qca-2.2.0.ebuild
+++ b/app-crypt/qca/qca-2.2.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris"
 
 IUSE="botan debug doc examples gcrypt gpg libressl logger nss pkcs11 sasl 
softstore +ssl test"
 

diff --git a/app-crypt/qca/qca-2.2.1.ebuild b/app-crypt/qca/qca-2.2.1.ebuild
index 5cfce39..dcb155a 100644
--- a/app-crypt/qca/qca-2.2.1.ebuild
+++ b/app-crypt/qca/qca-2.2.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris"
 
 IUSE="botan debug doc examples gcrypt gpg libressl logger nss pkcs11 sasl 
softstore +ssl test"
 

diff --git a/dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild
index e5d9d4f..57dc13b 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.12.3.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Network abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 IUSE="bindist connman libproxy libressl networkmanager sctp +ssl"

diff --git a/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild
index 7778da7..5deffc2 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.12.4.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Network abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 IUSE="bindist connman libproxy libressl networkmanager sctp +ssl"

diff --git a/dev-qt/qtnetwork/qtnetwork-5.12.5.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.12.5.ebuild
index b741121..0106a1e 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.12.5.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.12.5.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Network abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 IUSE="bindist connman libproxy libressl networkmanager sctp +ssl"

diff --git a/dev-util/electron/Manifest b/dev-util/electron/Manifest
index 132cfe4..f48d2c7 100644
--- a/dev-util/electron/Manifest
+++ b/dev-util/electron/Manifest
@@ -1,7 +1,3 @@
--BEGIN PGP SIGNED MESSAGE-
-Hash: SHA256
-
-AUX toolchain/BUILD.gn 799 BLAKE2B 
c1a088f005100fe77846bde9405ff8e68b65ce8798c4f746609575afdcbefe402e8d10ca55ecc195080752db9c48489ec66aaa658045e32337b9fb599b4d9b36
 SHA512 
8da134d99f050ecdecb06d4ec34287747cd9ee57ccbf6fe334b034812fb95fdee3af8421b10be3ee4f71020ca4029de626cd2770865b1e527bfac966d6d8ea2d
 DIST asar-0.13.0.tar.gz 1622264 BLAKE2B 
018bccc3d2b54040fe7c6e6c1ecfbe0ab4d52554feab78fae41a09d35b7e934720cba45f77239eda46d746390c4f072b3e0eecdf7f0953882d6f27cb940de018
 SHA512 

[gentoo-commits] repo/proj/libressl:master commit in: net-libs/nodejs/

2019-10-18 Thread Stefan Strogin
commit: 1ea79a61f31b86460fe965859eac4909bb2acdf5
Author: Dennis Gaebler  uni-ulm  de>
AuthorDate: Sun Oct 13 10:51:10 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Tue Oct 15 13:31:44 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=1ea79a61

net-libs/nodejs: drop old

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-libs/nodejs/Manifest  |   6 -
 net-libs/nodejs/nodejs-12.10.0.ebuild | 210 -
 net-libs/nodejs/nodejs-12.11.0.ebuild | 214 --
 net-libs/nodejs/nodejs-12.9.1.ebuild  | 210 -
 net-libs/nodejs/nodejs-6.11.5.ebuild  | 196 ---
 net-libs/nodejs/nodejs-8.16.1.ebuild  | 210 -
 6 files changed, 1046 deletions(-)

diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest
index 97aaf01..5321427 100644
--- a/net-libs/nodejs/Manifest
+++ b/net-libs/nodejs/Manifest
@@ -1,10 +1,4 @@
 DIST node-v10.15.3.tar.xz 20262632 BLAKE2B 
d65d4e274fa829be5cda1970b0ebe7081e8476334cb825e5727324c3202bc015f4ba39589608284d0f8c0b722079c06d1587de5299a3c81ccb7b0eacbdaccf84
 SHA512 
cf741f733af7a7e1fbd37b0f98110078494b4771dbdfccacfda95a5ea4cda6cdcea4f8d31dddcf27477213614e4ab6cf7d1a1f900cb92936333730737ac4f9e8
-DIST node-v12.10.0.tar.xz 22726116 BLAKE2B 
deb6ecaec54233050eaeb335d58020b8a82009bbab51c41c00784cab3003e57dbc96f3c25715deefbb5b3aee704b3db920cbb650af33cbcb1a62c1bb654f48f8
 SHA512 
7eb57b40effa9627b93c74ddc01ce1c044e878c669969c506ed40f72a7946c7c6951931c4fe4fbef456386ad459f7f4f1d0f04177e38343375aa463974ca1dba
-DIST node-v12.11.0.tar.xz 22817256 BLAKE2B 
4e568a50002c436bd76fc851b231ddc52ef25703f13b633eb3e6634b20d78d3462802274a9df777d93ee05b49dc4771012ef1a466012d0de90ca34327d42f4ae
 SHA512 
4d94f1c9a4fd0cc2ea21aea8ea41c595d18fa44e53d0ed35693c3d547a31bee3bcb7842dd5011cbd9c610919c1ac03d98c38ca85b608268f2b47b1f4
 DIST node-v12.11.1.tar.xz 22852156 BLAKE2B 
38205c3ad52ccac2656c72b31c5714268e4771375b13d7c113e4a5fe7e9530d2826c43aeaa3ed3e30210f504d37221f90f3fb2a15f4c5fbca8878d0f2639b9fa
 SHA512 
9567ee592ea8a05f899755d5e1c934413532676c78a663a1a861a6fa882c7eecae411c05c4b034191b7266776341609c098fbccfcd93c93eba7b84d138eeffb9
-DIST node-v12.9.1.tar.xz 22714668 BLAKE2B 
c2ab1d67d1f9cf9dee4a1fcb0f1f8f23e2536f526290baf9d5dd05867695f763d8cd8e501b044cb42b383a897f5e016c7a57aecc2d5a4ca58ab3d50020db1f07
 SHA512 
efe5fbf0545a3e9c37c7598abd89841073cfafefc04a9b5f9f95c8c51357bf3d5384701fd5524ff8fcaef833bca87c72cbf1f8755ee406e9437ad8ad875af18e
-DIST node-v6.11.5.tar.xz 15699404 BLAKE2B 
ba2df91bf5ef38cedb60b42919cf56f16807e619a81876fc92a5741e49da7ec91c4239d00f549c5e80d0bb8282bb9b396dd984507916cd18d61b403a3a7cef94
 SHA512 
62490725ef7957294c1bddf21ef0626c7472876791210168116501255ecee58457e9de9b044e10033706243299bbfd1495efeca169596fbf26f5eeba6d8fa4c9
 DIST node-v8.12.0.tar.xz 18310452 BLAKE2B 
79634fc57cd76a97e72bab4be37da91d5eff4d13cdaa2b48e83f013885fa3590ba4a28378baf036ed26b7304bf234753d1d4014f72571496f5bb6cd5b221e5f0
 SHA512 
665d2dba287d78bcd723d7b4d00a6897fb996f4aa69a541e010a3dfeb2614257892117fcce7123966b1ecaddc9269a6667e0e262df693baea1f476c96de55c42
-DIST node-v8.16.1.tar.xz 18519480 BLAKE2B 
a721ea5118e6e97ce36245367d33fb2eab8a9b4fba72f59f1a65dfc79de394a235a579fa789e8676d2897a928444db11e7792e7fe49c59bf17ac4cc1cac63941
 SHA512 
7d2d7c063934227e5204b2912de45ed1667d5c35573322192393bdac623491559ccd9fa8fbf05828bd2bb8e3aeb03d82804775cccb1139b48298758defe92be3
 DIST node-v8.16.2.tar.xz 18531368 BLAKE2B 
aec2f6257ab9237097e590b70b2e8615b664576b3af2f176260f26460f4f50bb1e00c2aff477a32cdb9ebf83f8b4eadc3ccdc2df431e359904fe4375513fb6c1
 SHA512 
8b0d4a089a5c80869971ceeffbef3ca03f4de4f53452a9fd16cbd189e5d76c7fdef475c144848c8d657256b41e342c020e11f6acd1880dde92ed0d0e8cf9e600
-DIST nodejs-12.11.0-test-torque-tq.patch.xz 5156 BLAKE2B 
3cfc6d40f996c2983862be5ee47651d0b792c107fbe396f72a47360b47f4d4da9a86f28ebb92803f0ad4026bbcd42fa1efeb3800dc4edea060ea4f5d384c8e33
 SHA512 
65a0fcc1c9ea03016698d72b5f0dc8bea5514e595b737005a2fdf43b91c61b94a4880a0078824ee46638a8cf7474ed27b6b6a8bc61a3a166e12a19a3952c3edf

diff --git a/net-libs/nodejs/nodejs-12.10.0.ebuild 
b/net-libs/nodejs/nodejs-12.10.0.ebuild
deleted file mode 100644
index f92f9d0..000
--- a/net-libs/nodejs/nodejs-12.10.0.ebuild
+++ /dev/null
@@ -1,210 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="threads"
-inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs
-
-DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine"
-HOMEPAGE="https://nodejs.org/;
-SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz;
-
-LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos"
-IUSE="bundled-ssl cpu_flags_x86_sse2 debug doc icu inspector libressl 

[gentoo-commits] repo/proj/libressl:master commit in: net-libs/nodejs/

2019-10-18 Thread Stefan Strogin
commit: 6573fa146941a141932555e2c976551ab68976bd
Author: Dennis Gaebler  uni-ulm  de>
AuthorDate: Sun Oct 13 10:51:55 2019 +
Commit: Stefan Strogin  gentoo  org>
CommitDate: Tue Oct 15 13:31:48 2019 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=6573fa14

net-libs/nodejs: add 12.12.0, update dependency

Signed-off-by: Anthony G. Basile  gentoo.org>

 net-libs/nodejs/Manifest | 1 +
 net-libs/nodejs/nodejs-12.11.1.ebuild| 2 +-
 net-libs/nodejs/{nodejs-12.11.1.ebuild => nodejs-12.12.0.ebuild} | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest
index 5321427..7380765 100644
--- a/net-libs/nodejs/Manifest
+++ b/net-libs/nodejs/Manifest
@@ -1,4 +1,5 @@
 DIST node-v10.15.3.tar.xz 20262632 BLAKE2B 
d65d4e274fa829be5cda1970b0ebe7081e8476334cb825e5727324c3202bc015f4ba39589608284d0f8c0b722079c06d1587de5299a3c81ccb7b0eacbdaccf84
 SHA512 
cf741f733af7a7e1fbd37b0f98110078494b4771dbdfccacfda95a5ea4cda6cdcea4f8d31dddcf27477213614e4ab6cf7d1a1f900cb92936333730737ac4f9e8
 DIST node-v12.11.1.tar.xz 22852156 BLAKE2B 
38205c3ad52ccac2656c72b31c5714268e4771375b13d7c113e4a5fe7e9530d2826c43aeaa3ed3e30210f504d37221f90f3fb2a15f4c5fbca8878d0f2639b9fa
 SHA512 
9567ee592ea8a05f899755d5e1c934413532676c78a663a1a861a6fa882c7eecae411c05c4b034191b7266776341609c098fbccfcd93c93eba7b84d138eeffb9
+DIST node-v12.12.0.tar.xz 22836688 BLAKE2B 
81ff202fb807c557a30eeb08a76a8e95e2faec300d360caac5ce177cdfcda3963bcea904f3e79f9ced9fe2219e7e1d4a760a9c4e69dfe5b670c737e2a598cf6a
 SHA512 
91872784a7a7e7e1e0beeb1166eb1ddd7a5432271e9f62265815d4c5b5d831f269916954bb36724e65108c57d6a7ebac3a2a5be2e49f51f7904a7d549c92176b
 DIST node-v8.12.0.tar.xz 18310452 BLAKE2B 
79634fc57cd76a97e72bab4be37da91d5eff4d13cdaa2b48e83f013885fa3590ba4a28378baf036ed26b7304bf234753d1d4014f72571496f5bb6cd5b221e5f0
 SHA512 
665d2dba287d78bcd723d7b4d00a6897fb996f4aa69a541e010a3dfeb2614257892117fcce7123966b1ecaddc9269a6667e0e262df693baea1f476c96de55c42
 DIST node-v8.16.2.tar.xz 18531368 BLAKE2B 
aec2f6257ab9237097e590b70b2e8615b664576b3af2f176260f26460f4f50bb1e00c2aff477a32cdb9ebf83f8b4eadc3ccdc2df431e359904fe4375513fb6c1
 SHA512 
8b0d4a089a5c80869971ceeffbef3ca03f4de4f53452a9fd16cbd189e5d76c7fdef475c144848c8d657256b41e342c020e11f6acd1880dde92ed0d0e8cf9e600

diff --git a/net-libs/nodejs/nodejs-12.11.1.ebuild 
b/net-libs/nodejs/nodejs-12.11.1.ebuild
index fa33e90..9c768c8 100644
--- a/net-libs/nodejs/nodejs-12.11.1.ebuild
+++ b/net-libs/nodejs/nodejs-12.11.1.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="
 RDEPEND="
>=dev-libs/libuv-1.31.0:=
>=net-dns/c-ares-1.15.0
-   >=net-libs/http-parser-2.8.0:=
+   >=net-libs/http-parser-2.9.0:=
>=net-libs/nghttp2-1.39.2
sys-libs/zlib
icu? ( >=dev-libs/icu-64.2:= )

diff --git a/net-libs/nodejs/nodejs-12.11.1.ebuild 
b/net-libs/nodejs/nodejs-12.12.0.ebuild
similarity index 99%
copy from net-libs/nodejs/nodejs-12.11.1.ebuild
copy to net-libs/nodejs/nodejs-12.12.0.ebuild
index fa33e90..9c768c8 100644
--- a/net-libs/nodejs/nodejs-12.11.1.ebuild
+++ b/net-libs/nodejs/nodejs-12.12.0.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="
 RDEPEND="
>=dev-libs/libuv-1.31.0:=
>=net-dns/c-ares-1.15.0
-   >=net-libs/http-parser-2.8.0:=
+   >=net-libs/http-parser-2.9.0:=
>=net-libs/nghttp2-1.39.2
sys-libs/zlib
icu? ( >=dev-libs/icu-64.2:= )



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

2019-10-18 Thread David Seifert
commit: bc8cb5e691425dcf8424e5a92ccb6281d71dac42
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:57:01 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:57:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8cb5e6

app-i18n/scim-tables: Port to EAPI 7

Bug: https://bugs.gentoo.org/697382
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-i18n/scim-tables/scim-tables-0.5.13.ebuild | 53 +-
 1 file changed, 19 insertions(+), 34 deletions(-)

diff --git a/app-i18n/scim-tables/scim-tables-0.5.13.ebuild 
b/app-i18n/scim-tables/scim-tables-0.5.13.ebuild
index 530fd551b64..718a68ef66c 100644
--- a/app-i18n/scim-tables/scim-tables-0.5.13.ebuild
+++ b/app-i18n/scim-tables/scim-tables-0.5.13.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=0
+EAPI=7
 
-inherit autotools base eutils
+inherit autotools
 
 DESCRIPTION="Smart Common Input Method (SCIM) Generic Table Input Method 
Server"
 HOMEPAGE="http://www.scim-im.org/;
@@ -13,51 +13,36 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm ppc x86"
 IUSE="nls"
-LANGS="am ar bn gu hi ja kn ko ml ne pa ru ta te th uk vi zh"
 
-RDEPEND=">=app-i18n/scim-1.4.7-r2
+RDEPEND="
+   >=app-i18n/scim-1.4.7-r2
nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
 PATCHES=(
-   "${FILESDIR}/${PN}-0.5.8+gcc-4.3.patch"
+   "${FILESDIR}"/${PN}-0.5.8+gcc-4.3.patch
"${FILESDIR}"/${PN}-0.5.12-automake.patch
-   )
+)
 
-pkg_setup() {
-   elog "Not all languages are going to be compiled."
-   elog "Please set LINGUAS to your preferred language(s)."
-   elog "Supported LINGUAS values are:"
-   elog "${LANGS}"
+src_prepare() {
+   default
+   eautoreconf
 }
 
-src_unpack() {
-   base_src_unpack
-
-   strip-linguas ${LANGS}
-   local use_languages="additional ${LINGUAS}"
-   elog "Languages being compiled are: ${use_languages}"
-
-   cd "${S}"
-   sed -i -e "/^SUBDIRS/s/.*/SUBDIRS = ${use_languages}/g" \
-   tables/Makefile.{am,in} || die "sed ${m} failed"
-
-   AT_NO_RECURSIVE=yes AT_M4DIR=${S}/m4 eautoreconf
-}
-
-src_compile() {
+src_configure() {
econf \
--disable-skim-support \
-   $(use_enable nls) \
--disable-static \
-   --disable-dependency-tracking \
-   --without-arts || die "econf failed"
-   emake || die "make failed"
+   --without-arts \
+   $(use_enable nls)
 }
 
 src_install() {
-   emake DESTDIR="${D}" install || die "install failed"
-   dodoc README ChangeLog AUTHORS
+   default
+
+   # no static archives
+   find "${D}" -name '*.la' -delete || die
 }



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

2019-10-18 Thread Jason Zaman
commit: 0058cac06ae7c8f08fda45673f71aaa83eca9788
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Oct 18 12:39:01 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri Oct 18 12:54:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0058cac0

net-misc/rclone: bump 1.49.1

Closes: https://bugs.gentoo.org/688328
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 net-misc/rclone/Manifest | 1 +
 net-misc/rclone/{rclone-.ebuild => rclone-1.49.1.ebuild} | 2 +-
 net-misc/rclone/rclone-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
index 732f6d5507c..c1c2696e274 100644
--- a/net-misc/rclone/Manifest
+++ b/net-misc/rclone/Manifest
@@ -1,2 +1,3 @@
 DIST rclone-1.45.tar.gz 16494131 BLAKE2B 
17ca4182af4efe23a367fc38226dc7fe146da55fea47a5f76773f1dcc3d3b629cca7964ffe41aa1e4dbd2fe36bd80545f336d2823a25ebb6b3effc768d4b46d2
 SHA512 
348dbd6a069f736219b7f925b6aa5234a4d70724ee5bfdb56067241063be36c44a091a37acb3285627803fa013329a6ef804aab4c0070ddaf322c5324b9e2a5a
 DIST rclone-1.47.0.tar.gz 17282254 BLAKE2B 
57c4f3576427778db0fdc523d8b95b33db5cebfb0081d927abc8925eeaf90c0d2079f1d9572e81faac41e98cfee3028f39c9aed89e6db17188efb3541e3daa6a
 SHA512 
90e68021f589bfad95989b45d91c47da63066e9bc60040052e866d1c7e420bc2784335cc5dbab0e4372c4f8686acb0a65853877c41081c8406eddada42550125
+DIST rclone-1.49.1.tar.gz 18196519 BLAKE2B 
22a2f5984f65a64972c40fa845f0b4e5a8d52840ee9dc35463605e3eea399ab01a3b36f1f25a07d5c583829684863b8cbeaf82282e9b59ca994a8fa1d9558ebf
 SHA512 
05b864932fdec7d1bc7185a4e2d33b7bd06b840399f100b1f58806e2ab6f752e4b7cb0f2691cfa92785f45b2f587aebaf7c9e5ab256c2d9b63c262d90ea1e3ac

diff --git a/net-misc/rclone/rclone-.ebuild 
b/net-misc/rclone/rclone-1.49.1.ebuild
similarity index 96%
copy from net-misc/rclone/rclone-.ebuild
copy to net-misc/rclone/rclone-1.49.1.ebuild
index e1f64b65bde..8c2e6519357 100644
--- a/net-misc/rclone/rclone-.ebuild
+++ b/net-misc/rclone/rclone-1.49.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 inherit golang-build bash-completion-r1
-EGO_PN="github.com/ncw/${PN}"
+EGO_PN="github.com/rclone/${PN}"
 
 if [[ ${PV} == ** ]]; then
inherit golang-vcs

diff --git a/net-misc/rclone/rclone-.ebuild 
b/net-misc/rclone/rclone-.ebuild
index e1f64b65bde..8c2e6519357 100644
--- a/net-misc/rclone/rclone-.ebuild
+++ b/net-misc/rclone/rclone-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 inherit golang-build bash-completion-r1
-EGO_PN="github.com/ncw/${PN}"
+EGO_PN="github.com/rclone/${PN}"
 
 if [[ ${PV} == ** ]]; then
inherit golang-vcs



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/togl/

2019-10-18 Thread Alfredo Tupone
commit: 3984f64515bfe2a0f838df25512e6b383e2ec1e3
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 12:42:38 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 12:42:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3984f645

dev-tcltk/togl: EAPI 7

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-tcltk/togl/togl-2.0-r3.ebuild | 46 +++
 1 file changed, 46 insertions(+)

diff --git a/dev-tcltk/togl/togl-2.0-r3.ebuild 
b/dev-tcltk/togl/togl-2.0-r3.ebuild
new file mode 100644
index 000..5791c04242e
--- /dev/null
+++ b/dev-tcltk/togl/togl-2.0-r3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P=Togl${PV}
+
+DESCRIPTION="A Tk widget for OpenGL rendering"
+HOMEPAGE="http://togl.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}-src.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="debug +threads"
+
+RDEPEND="
+   dev-lang/tk:*
+   virtual/opengl
+   x11-libs/libXmu"
+DEPEND="${RDEPEND}"
+
+# tests directory is missing
+RESTRICT="test"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+   sed \
+   -e 's:-fomit-frame-pointer::g' \
+   -e 's:-O2::g' \
+   -e 's:-pipe::g' \
+   -i configure || die
+}
+
+src_configure() {
+   econf \
+   $(use_enable debug symbols) \
+   $(use_enable threads)
+}
+
+src_install() {
+   HTML_DOCS=( doc/* )
+   default
+}



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

2019-10-18 Thread Andreas K. Hüttel
commit: 81dc31655a868377d0f9b1901a03d94a70837c10
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Oct 18 12:41:42 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Oct 18 12:41:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81dc3165

app-portage/perl-info: fix install, bug 697942

Closes: https://bugs.gentoo.org/697942
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 app-portage/perl-info/perl-info-0.16.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-portage/perl-info/perl-info-0.16.ebuild 
b/app-portage/perl-info/perl-info-0.16.ebuild
index af3c4e29767..2eae853e43a 100644
--- a/app-portage/perl-info/perl-info-0.16.ebuild
+++ b/app-portage/perl-info/perl-info-0.16.ebuild
@@ -17,6 +17,8 @@ RDEPEND="dev-lang/perl
virtual/perl-Term-ANSIColor
>=dev-perl/PortageXS-0.02.04"
 
+S=${WORKDIR}
+
 src_install() {
dobin ${PN}
 }



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

2019-10-18 Thread Alfredo Tupone
commit: a8484b5da70b40ea37def4c2858873200456e21d
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Oct 18 12:37:33 2019 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Oct 18 12:37:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8484b5d

dev-ada/xmlada: stable

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-ada/xmlada/xmlada-2019-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ada/xmlada/xmlada-2019-r1.ebuild 
b/dev-ada/xmlada/xmlada-2019-r1.ebuild
index 994bc36f6f5..794b5c7d879 100644
--- a/dev-ada/xmlada/xmlada-2019-r1.ebuild
+++ b/dev-ada/xmlada/xmlada-2019-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://mirrors.cdn.adacore.com/art/5cdf916831e87a8f1d4250b5
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+shared static-libs static-pic"
 REQUIRED_USE="|| ( shared static-libs static-pic )
${ADA_REQUIRED_USE}"



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

2019-10-18 Thread David Seifert
commit: a3b5170218b0b26bb4ec8ce83dfa926dde23ab98
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:25:45 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:25:45 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3b51702

myspell.eclass: Last rite

Signed-off-by: David Seifert  gentoo.org>

 eclass/myspell.eclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/eclass/myspell.eclass b/eclass/myspell.eclass
index 52838421299..af639b00e06 100644
--- a/eclass/myspell.eclass
+++ b/eclass/myspell.eclass
@@ -5,6 +5,9 @@
 # Packages: app-dicts/myspell-*
 # Maintainer: maintainer-nee...@gentoo.org
 
+# @DEAD
+# Replaced by myspell-r2.eclass. Removal in 14 days.
+
 inherit multilib
 
 EXPORT_FUNCTIONS src_install pkg_preinst pkg_postinst



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

2019-10-18 Thread David Seifert
commit: ef51a27547be21682b697f5ca889ea57b05dd9fb
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:24 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef51a275

app-doc/autobook: Port to EAPI 7

Closes: https://bugs.gentoo.org/697386
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-doc/autobook/autobook-1.5.ebuild | 36 +++-
 1 file changed, 15 insertions(+), 21 deletions(-)

diff --git a/app-doc/autobook/autobook-1.5.ebuild 
b/app-doc/autobook/autobook-1.5.ebuild
index 30c31ea61ea..5d6cf849475 100644
--- a/app-doc/autobook/autobook-1.5.ebuild
+++ b/app-doc/autobook/autobook-1.5.ebuild
@@ -1,33 +1,27 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
 DESCRIPTION="GNU Autoconf, Automake and Libtool"
 HOMEPAGE="https://sourceware.org/autobook/;
-SRC_URI="https://sourceware.org/autobook/${P}.tar.gz
-   examples? (
-   https://sourceware.org/autobook/foonly-2.0.tar.gz
-   https://sourceware.org/autobook/small-2.0.tar.gz
-   https://sourceware.org/autobook/hello-2.0.tar.gz
-   https://sourceware.org/autobook/convenience-2.0.tar.gz
-   )"
+SRC_URI="
+   https://sourceware.org/autobook/${P}.tar.gz
+   https://sourceware.org/autobook/foonly-2.0.tar.gz
+   https://sourceware.org/autobook/small-2.0.tar.gz
+   https://sourceware.org/autobook/hello-2.0.tar.gz
+   https://sourceware.org/autobook/convenience-2.0.tar.gz;
 
 LICENSE="OPL"
 SLOT="0"
 KEYWORDS="amd64 arm hppa ia64 m68k ppc s390 sh x86"
-IUSE="examples"
-
-DEPEND=""
-RDEPEND=""
 
 src_install() {
-   dohtml * || die
-   if use examples ; then
-   local d
-   for d in {convenience,foonly,hello,small}-2.0 ; do
-   insinto /usr/share/doc/${PF}/${d}
-   doins -r "${WORKDIR}"/${d}/* || die "doins ${d} failed"
-   done
-   fi
+   local HTML_DOCS=( . )
+   einstalldocs
+
+   local d
+   for d in {convenience,foonly,hello,small}-2.0; do
+   dodoc -r "${WORKDIR}"/${d}
+   done
 }



[gentoo-commits] repo/gentoo:master commit in: x11-themes/sawfish-themes/

2019-10-18 Thread David Seifert
commit: 8907daab698b9975f1210cfe786889e3860ba4d8
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:54 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8907daab

x11-themes/sawfish-themes: Port to EAPI 7

Closes: https://bugs.gentoo.org/697146
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 x11-themes/sawfish-themes/sawfish-themes-0.0.1-r3.ebuild | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/x11-themes/sawfish-themes/sawfish-themes-0.0.1-r3.ebuild 
b/x11-themes/sawfish-themes/sawfish-themes-0.0.1-r3.ebuild
index db63478d82b..faad1cad1ef 100644
--- a/x11-themes/sawfish-themes/sawfish-themes-0.0.1-r3.ebuild
+++ b/x11-themes/sawfish-themes/sawfish-themes-0.0.1-r3.ebuild
@@ -1,12 +1,13 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
 DESCRIPTION="Some nice themes for Sawfish"
 HOMEPAGE="http://themes.freshmeat.net/;
 THEME_URI="http://download.freshmeat.net/themes/;
-SRC_URI="${THEME_URI}/absolutedarkness/absolutedarkness-0.30.tar.gz
+SRC_URI="
+   ${THEME_URI}/absolutedarkness/absolutedarkness-0.30.tar.gz
${THEME_URI}/adaptblue/adaptblue-0.30.tar.gz
${THEME_URI}/ampullacu/ampullacu-0.30.tar.gz
${THEME_URI}/antarctic_/antarctic_-0.30.tar.gz
@@ -59,17 +60,18 @@ 
SRC_URI="${THEME_URI}/absolutedarkness/absolutedarkness-0.30.tar.gz
${THEME_URI}/whistlerk_/whistlerk_-0.30.tar.gz
${THEME_URI}/win98/win98-0.30.tar.gz"
 
-SLOT="1"
 LICENSE="GPL-2"
+SLOT="1"
 KEYWORDS="alpha ~amd64 ia64 ppc ~ppc64 sparc x86"
 IUSE=""
 
 RDEPEND="=x11-wm/sawfish-1*"
-S=${WORKDIR}
+
+S="${WORKDIR}"
 
 src_compile() { :; }
 
 src_install() {
-   dodir /usr/share/sawfish/themes
-   cp -pPR * "${D}"/usr/share/sawfish/themes
+   insinto /usr/share/sawfish/themes
+   doins -r .
 }



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

2019-10-18 Thread David Seifert
commit: a4e5a37c63cf594c0ebd554c6a07c855428fc0bc
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:18 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e5a37c

app-text/ps2eps: Port to EAPI 7

Closes: https://bugs.gentoo.org/697380
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-text/ps2eps/ps2eps-1.68.ebuild | 37 +++--
 1 file changed, 19 insertions(+), 18 deletions(-)

diff --git a/app-text/ps2eps/ps2eps-1.68.ebuild 
b/app-text/ps2eps/ps2eps-1.68.ebuild
index 9950ac235e7..67beb71c430 100644
--- a/app-text/ps2eps/ps2eps-1.68.ebuild
+++ b/app-text/ps2eps/ps2eps-1.68.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=0
+EAPI=7
 
 inherit toolchain-funcs
 
@@ -12,29 +12,30 @@ SRC_URI="http://www.tm.uka.de/~bless/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE=""
 
-DEPEND=""
-RDEPEND="app-text/ghostscript-gpl
+RDEPEND="
+   app-text/ghostscript-gpl
! Makefile
-   emake || die "making bbox failed"
+}
+
+src_compile() {
+   cd src/C || die
+   emake bbox
 }
 
 src_install() {
-   dobin "${S}/src/C/bbox"
-   dobin "${S}/bin/ps2eps"
-   doman "${S}/doc/man/man1/bbox.1"
-   doman "${S}/doc/man/man1/ps2eps.1"
-
-   dodoc Changes.txt README.txt
-   dohtml "${S}/doc/html/"*
-   docinto pdf
-   dodoc "${S}/doc/pdf/"*
+   dobin src/C/bbox
+   dobin bin/ps2eps
+
+   doman doc/man/man1/bbox.1
+   doman doc/man/man1/ps2eps.1
+
+   local DOCS=( Changes.txt README.txt doc/pdf )
+   local HTML_DOCS=( doc/html/. )
+   einstalldocs
 }



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

2019-10-18 Thread David Seifert
commit: de7ba60dcf987660a593d68e44d00fcea245fcd1
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:21 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7ba60d

app-crypt/hashalot: Port to EAPI 7

Closes: https://bugs.gentoo.org/697416
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-crypt/hashalot/hashalot-0.3-r2.ebuild | 16 ++--
 1 file changed, 2 insertions(+), 14 deletions(-)

diff --git a/app-crypt/hashalot/hashalot-0.3-r2.ebuild 
b/app-crypt/hashalot/hashalot-0.3-r2.ebuild
index eddabd64838..092b8284421 100644
--- a/app-crypt/hashalot/hashalot-0.3-r2.ebuild
+++ b/app-crypt/hashalot/hashalot-0.3-r2.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=0
+EAPI=7
 
 DESCRIPTION="CryptoAPI utils"
 HOMEPAGE="http://www.kerneli.org/;
@@ -10,15 +10,3 @@ 
SRC_URI="http://www.paranoiacs.org/~sluskyb/hacks/hashalot/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE=""
-
-DEPEND=""
-
-src_test() {
-   make check-TESTS || die
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die "install error"
-   dodoc ChangeLog NEWS README
-}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/geramik/

2019-10-18 Thread David Seifert
commit: 166b2d24dda4d520e23558a15f38be5546694aa0
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:51 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=166b2d24

x11-themes/geramik: Port to EAPI 7

Closes: https://bugs.gentoo.org/697144
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 x11-themes/geramik/geramik-0.27-r1.ebuild | 17 +
 1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/x11-themes/geramik/geramik-0.27-r1.ebuild 
b/x11-themes/geramik/geramik-0.27-r1.ebuild
index 6b294f1c2f8..501f2c627ff 100644
--- a/x11-themes/geramik/geramik-0.27-r1.ebuild
+++ b/x11-themes/geramik/geramik-0.27-r1.ebuild
@@ -1,25 +1,18 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
-MY_P="Geramik-${PV}"
 DESCRIPTION="GTK+1 and GTK+2 Geramik Themes"
 HOMEPAGE="http://www.kde-look.org/content/show.php?content=3952;
-SRC_URI="http://www.kde-look.org/content/files/3952-${MY_P}.tar.gz;
+SRC_URI="http://www.kde-look.org/content/files/3952-${P^}.tar.gz;
 
-KEYWORDS="alpha amd64 ~mips ~ppc sparc x86"
 LICENSE="GPL-2"
 SLOT="0"
+KEYWORDS="alpha amd64 ~mips ~ppc sparc x86"
 IUSE=""
 
 DEPEND=""
 RDEPEND="x11-themes/gtk-engines-qtpixmap"
 
-S=${WORKDIR}/${MY_P}
-
-src_install() {
-   make DESTDIR="${D}" install || die "Installation failed"
-
-   dodoc AUTHORS ChangeLog README TODO
-}
+S="${WORKDIR}/${P^}"



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

2019-10-18 Thread David Seifert
commit: ecab56f02e79decfd5c2d39cfaefc0bae20ffac9
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:19:01 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:19:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecab56f0

dev-libs/libbegemot: Port to EAPI 7

Closes: https://bugs.gentoo.org/697352
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 dev-libs/libbegemot/libbegemot-1.11.ebuild | 18 ++
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/dev-libs/libbegemot/libbegemot-1.11.ebuild 
b/dev-libs/libbegemot/libbegemot-1.11.ebuild
index 929296a5a71..a66e0e144ee 100644
--- a/dev-libs/libbegemot/libbegemot-1.11.ebuild
+++ b/dev-libs/libbegemot/libbegemot-1.11.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=0
+EAPI=7
 
 inherit libtool
 
@@ -12,18 +12,12 @@ SRC_URI="http://people.freebsd.org/~harti/${PN}/${P}.tar.gz;
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
-IUSE=""
 
-DEPEND=""
-
-src_compile() {
+src_prepare() {
+   default
elibtoolize
-   econf || die "econf failed"
-   emake -j1 || die "emake failed"
 }
 
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed"
-
-   dodoc README
+src_compile() {
+   emake -j1
 }



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

2019-10-18 Thread David Seifert
commit: 74b57a2f900d16fb9b4691e244f2239d3de95cff
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:28 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74b57a2f

dev-util/autoproject: Port to EAPI 7

Bug: https://bugs.gentoo.org/697326
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 dev-util/autoproject/autoproject-0.20_p5.ebuild | 28 ++---
 1 file changed, 11 insertions(+), 17 deletions(-)

diff --git a/dev-util/autoproject/autoproject-0.20_p5.ebuild 
b/dev-util/autoproject/autoproject-0.20_p5.ebuild
index 239a51de78e..9fd40511568 100644
--- a/dev-util/autoproject/autoproject-0.20_p5.ebuild
+++ b/dev-util/autoproject/autoproject-0.20_p5.ebuild
@@ -1,35 +1,29 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
-
-inherit eutils
+EAPI=7
 
 MY_PV=${PV%_p*}
 DEB_VER=${PV#*_p}
+
 DESCRIPTION="Start a programming project using autotools and a command line 
parser generator"
-HOMEPAGE="http://packages.debian.org/unstable/devel/autoproject;
-SRC_URI="mirror://debian/pool/main/a/autoproject/${PN}_${MY_PV}.orig.tar.gz
+HOMEPAGE="https://packages.debian.org/unstable/devel/autoproject;
+SRC_URI="
+   mirror://debian/pool/main/a/autoproject/${PN}_${MY_PV}.orig.tar.gz

mirror://debian/pool/main/a/autoproject/${PN}_${MY_PV}-${DEB_VER}.diff.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="test"
+RESTRICT="!test? ( test )"
 
-RDEPEND="sys-devel/automake
-   sys-devel/autoconf"
+RDEPEND="
+   sys-devel/autoconf:*
+   sys-devel/automake:*"
 DEPEND="${RDEPEND}
test? ( sys-apps/texinfo )"
 
 S=${WORKDIR}/${PN}-${MY_PV}
 
-src_unpack() {
-   unpack ${A}
-   epatch ${PN}_${MY_PV}-${DEB_VER}.diff
-}
-
-src_install() {
-   emake install DESTDIR="${D}" || die
-   dodoc AUTHORS NEWS README TODO ChangeLog
-}
+PATCHES=( "${WORKDIR}"/${PN}_${MY_PV}-${DEB_VER}.diff )



[gentoo-commits] repo/gentoo:master commit in: sys-block/mtx/files/, sys-block/mtx/

2019-10-18 Thread David Seifert
commit: 8e37dd8a1778765ac8c6a0aa996b6608a3db7166
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:38 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e37dd8a

sys-block/mtx: Port to EAPI 7

Closes: https://bugs.gentoo.org/697202
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 sys-block/mtx/files/mtx-1.3.12-fix-buildsystem.patch | 20 
 sys-block/mtx/mtx-1.3.12.ebuild  | 14 ++
 2 files changed, 26 insertions(+), 8 deletions(-)

diff --git a/sys-block/mtx/files/mtx-1.3.12-fix-buildsystem.patch 
b/sys-block/mtx/files/mtx-1.3.12-fix-buildsystem.patch
new file mode 100644
index 000..6627bfac050
--- /dev/null
+++ b/sys-block/mtx/files/mtx-1.3.12-fix-buildsystem.patch
@@ -0,0 +1,20 @@
+--- a/Makefile.in
 b/Makefile.in
+@@ -109,13 +109,13 @@
+ dbgs: $(DBGS)
+ 
+ install: $(BINS)
+-  $(INSTALL_DIR) $(sbindir)
++  $(INSTALL_DIR) $(DESTDIR)$(sbindir)
+   for file in $(BINS); do \
+-  $(INSTALL_BIN) "$$file" $(sbindir) ; \
++  $(INSTALL_BIN) "$$file" $(DESTDIR)$(sbindir) ; \
+   done
+-  $(INSTALL_DIR) $(mandir) $(mandir)/man1
++  $(INSTALL_DIR) $(mandir) $(DESTDIR)$(mandir)/man1
+   for file in mtx.1 tapeinfo.1 scsitape.1 scsieject.1 loaderinfo.1 ; do \
+-  $(INSTALL_DOC) "$$file"  $(mandir)/man1 ; \
++  $(INSTALL_DOC) "$$file"  $(DESTDIR)$(mandir)/man1 ; \
+   done
+ 
+ clean:

diff --git a/sys-block/mtx/mtx-1.3.12.ebuild b/sys-block/mtx/mtx-1.3.12.ebuild
index 0053c550bc5..593c08791e9 100644
--- a/sys-block/mtx/mtx-1.3.12.ebuild
+++ b/sys-block/mtx/mtx-1.3.12.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=0
+EAPI=7
 
 DESCRIPTION="Utilities for controlling SCSI media changers and tape drives"
 HOMEPAGE="https://sourceforge.net/projects/mtx/;
@@ -10,10 +10,8 @@ SRC_URI="mirror://sourceforge/mtx/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
-IUSE=""
 
-src_install () {
-   einstall || die
-   dodoc CHANGES COMPATABILITY FAQ README TODO
-   dohtml mtxl.README.html
-}
+PATCHES=( "${FILESDIR}"/${P}-fix-buildsystem.patch )
+
+DOCS=( CHANGES COMPATABILITY FAQ README TODO )
+HTML_DOCS=( mtxl.README.html )



[gentoo-commits] repo/gentoo:master commit in: app-dicts/myspell-tn/

2019-10-18 Thread David Seifert
commit: 447084526861b526a011ad9e9df9781fea128c3f
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:57 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44708452

app-dicts/myspell-tn: Port to EAPI 6

Closes: https://bugs.gentoo.org/697420
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-dicts/myspell-tn/myspell-tn-20060316.ebuild | 19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/app-dicts/myspell-tn/myspell-tn-20060316.ebuild 
b/app-dicts/myspell-tn/myspell-tn-20060316.ebuild
index 6811144d73a..5cb2c8ecdf9 100644
--- a/app-dicts/myspell-tn/myspell-tn-20060316.ebuild
+++ b/app-dicts/myspell-tn/myspell-tn-20060316.ebuild
@@ -1,22 +1,19 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=6
 
-MYSPELL_SPELLING_DICTIONARIES=(
-"tn,ZA,tn_ZA,Setswana (Africa),tn_ZA.zip"
+MYSPELL_DICT=(
+   "tn_ZA.aff"
+   "tn_ZA.dic"
 )
 
-MYSPELL_HYPHENATION_DICTIONARIES=(
-)
-
-MYSPELL_THESAURUS_DICTIONARIES=(
-)
-
-inherit myspell
+inherit myspell-r2
 
 DESCRIPTION="Setswana dictionaries for myspell/hunspell"
-LICENSE="GPL-2"
 HOMEPAGE="http://lingucomponent.openoffice.org/;
+SRC_URI="mirror://gentoo/myspell-tn_ZA-20060316.zip"
 
+LICENSE="GPL-2"
+SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86"



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

2019-10-18 Thread David Seifert
commit: 9b978eedab0fcb5f8ee8e4abbe1824126c9e50a1
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:34 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b978eed

net-misc/vconfig: Port to EAPI 7

Closes: https://bugs.gentoo.org/697222
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 net-misc/vconfig/vconfig-1.9.ebuild | 38 +
 1 file changed, 26 insertions(+), 12 deletions(-)

diff --git a/net-misc/vconfig/vconfig-1.9.ebuild 
b/net-misc/vconfig/vconfig-1.9.ebuild
index 4671806983b..68ad081deee 100644
--- a/net-misc/vconfig/vconfig-1.9.ebuild
+++ b/net-misc/vconfig/vconfig-1.9.ebuild
@@ -1,37 +1,51 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
-inherit eutils flag-o-matic toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 MY_PN="vlan"
-S=${WORKDIR}/${MY_PN}
 
 DESCRIPTION="802.1Q vlan control utility"
 HOMEPAGE="http://www.candelatech.com/~greear/vlan.html;
 SRC_URI="http://www.candelatech.com/~greear/vlan/${MY_PN}.${PV}.tar.gz;
+
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 ~arm hppa ~ppc ~ppc64 sparc x86"
 IUSE="static"
 
+S="${WORKDIR}/${MY_PN}"
+
+src_prepare() {
+   default
+   sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test.pl || die
+   sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test2.pl || 
die
+}
+
+src_configure() {
+   use static && append-ldflags -static
+}
+
 src_compile() {
-   use static && appened-ldflags -static
emake purge
-   emake CC="$(tc-getCC)" CCFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" 
STRIP="true" vconfig || die
+   emake \
+   CC="$(tc-getCC)" \
+   CCFLAGS="${CFLAGS}" \
+   LDFLAGS="${LDFLAGS}" \
+   STRIP="true" vconfig
 }
 
 src_install() {
into /
-   dosbin vconfig || die "dosbin error"
+   dosbin vconfig
 
-   sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test.pl
-   sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test2.pl
+   local HTML_DOCS=( {howto,vlan}.html )
+   einstalldocs
+   dodoc vlan_test*.pl
 
-   doman vconfig.8 || die "doman error"
-   dohtml howto.html vlan.html || die "dohtml error"
-   dodoc CHANGELOG README vlan_test*.pl || die "dodoc error"
+   doman vconfig.8
 }
 
 pkg_postinst() {



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

2019-10-18 Thread David Seifert
commit: 448de293d6256899abe0e67c7867bfac69821eca
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:41 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=448de293

media-sound/mpck: Port to EAPI 7

Closes: https://bugs.gentoo.org/697268
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 media-sound/mpck/mpck-0.15.ebuild | 12 
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/media-sound/mpck/mpck-0.15.ebuild 
b/media-sound/mpck/mpck-0.15.ebuild
index b2a8a3f7fa3..1df48af4666 100644
--- a/media-sound/mpck/mpck-0.15.ebuild
+++ b/media-sound/mpck/mpck-0.15.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=0
+EAPI=7
 
 MY_P=checkmate-${PV}
 
@@ -12,11 +12,7 @@ SRC_URI="http://checkmate.linuxonly.nl/${MY_P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
 
-S=${WORKDIR}/${MY_P}
+S="${WORKDIR}/${MY_P}"
 
-src_install() {
-   emake DESTDIR="${D}" install || die "emake install failed"
-   dodoc ABOUT_FIXING AUTHORS ChangeLog HISTORY README
-}
+DOCS=( ABOUT_FIXING AUTHORS ChangeLog HISTORY NEWS README TODO )



[gentoo-commits] repo/gentoo:master commit in: app-dicts/bookview/files/, app-dicts/bookview/

2019-10-18 Thread David Seifert
commit: 71c5a8300d404576679af5ed37aaf3c59ce17db8
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:44 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c5a830

app-dicts/bookview: Port to EAPI 7

Closes: https://bugs.gentoo.org/697422
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-dicts/bookview/bookview-3.2.1.ebuild   | 23 +++---
 .../bookview/files/bookview-3.2.1-gentoo.diff  |  4 ++--
 2 files changed, 9 insertions(+), 18 deletions(-)

diff --git a/app-dicts/bookview/bookview-3.2.1.ebuild 
b/app-dicts/bookview/bookview-3.2.1.ebuild
index 5093c1a5b93..9fdf455264a 100644
--- a/app-dicts/bookview/bookview-3.2.1.ebuild
+++ b/app-dicts/bookview/bookview-3.2.1.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
-
-inherit eutils
+EAPI=7
 
 DESCRIPTION="NDTP client written in Tcl/Tk"
 HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/bookview/;
@@ -12,23 +10,16 @@ 
SRC_URI="ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc x86"
-IUSE=""
 
-RDEPEND=">=dev-lang/tk-8.3"
-DEPEND="${RDEPEND}
-   >=sys-apps/sed-4"
+RDEPEND="dev-lang/tk:0"
+DEPEND="${RDEPEND}"
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}/bookview"
-   epatch "${FILESDIR}/${P}-gentoo.diff"
-}
+PATCHES=( "${FILESDIR}"/${P}-gentoo.diff )
 
 src_install() {
-   make DESTDIR="${D}" install || die
+   default
+   dodoc ChangeLog.0
 
insinto /etc/X11/app-defaults
newins "${FILESDIR}/Bookview.ad" Bookview
-
-   dodoc AUTHORS ChangeLog* INSTALL NEWS README
 }

diff --git a/app-dicts/bookview/files/bookview-3.2.1-gentoo.diff 
b/app-dicts/bookview/files/bookview-3.2.1-gentoo.diff
index 3a3064a1059..0c29aa3d734 100644
--- a/app-dicts/bookview/files/bookview-3.2.1-gentoo.diff
+++ b/app-dicts/bookview/files/bookview-3.2.1-gentoo.diff
@@ -1,5 +1,5 @@
 bookview.in.ORIG   2004-11-03 18:39:28.0 +0900
-+++ bookview.in2004-11-22 21:22:42.0 +0900
+--- a/bookview/bookview.in
 b/bookview/bookview.in
 @@ -120,6 +120,11 @@
  # Bitmap size.
  set bitmap_size 16



[gentoo-commits] repo/gentoo:master commit in: app-dicts/migemo-dict/

2019-10-18 Thread David Seifert
commit: 1eb57b9c3cdfc3de93a791e8b42becb281297fcd
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:47 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb57b9c

app-dicts/migemo-dict: Port to EAPI 7

Closes: https://bugs.gentoo.org/697406
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 app-dicts/migemo-dict/migemo-dict-200812.ebuild | 19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

diff --git a/app-dicts/migemo-dict/migemo-dict-200812.ebuild 
b/app-dicts/migemo-dict/migemo-dict-200812.ebuild
index 8245e4067d6..8a8c03b79a4 100644
--- a/app-dicts/migemo-dict/migemo-dict-200812.ebuild
+++ b/app-dicts/migemo-dict/migemo-dict-200812.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
-
-IUSE="unicode"
+EAPI=7
 
 DESCRIPTION="Dictionary files for the Migemo and C/Migemo"
 HOMEPAGE="http://openlab.ring.gr.jp/skk/dic.html;
@@ -12,18 +10,17 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2"
 LICENSE="GPL-2"
 KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos"
 SLOT="0"
+IUSE="unicode"
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   if use unicode ; then
-   iconv -f euc-jp -t utf-8 migemo-dict > "${T}/migemo-dict"
+src_configure() {
+   if use unicode; then
+   iconv -f euc-jp -t utf-8 migemo-dict > "${T}"/migemo-dict || die
else
-   cp migemo-dict "${T}/migemo-dict"
+   cp migemo-dict "${T}"/ || die
fi
 }
 
 src_install() {
insinto /usr/share/migemo
-   doins "${T}/migemo-dict"
+   doins "${T}"/migemo-dict
 }



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

2019-10-18 Thread David Seifert
commit: a956fed6fe0a62bc6e1db6d5f7a1d3c2585de499
Author: David Seifert  gentoo  org>
AuthorDate: Fri Oct 18 12:18:31 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Oct 18 12:18:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a956fed6

dev-util/autoproject: Remove old

Closes: https://bugs.gentoo.org/697326
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 dev-util/autoproject/Manifest|  1 -
 dev-util/autoproject/autoproject-0.20.ebuild | 32 
 2 files changed, 33 deletions(-)

diff --git a/dev-util/autoproject/Manifest b/dev-util/autoproject/Manifest
index 35a39c35f57..4b144d342d6 100644
--- a/dev-util/autoproject/Manifest
+++ b/dev-util/autoproject/Manifest
@@ -1,3 +1,2 @@
-DIST autoproject_0.20-3.diff.gz 4704 BLAKE2B 
f94227d5792477f7bab8d9535fcc4a927a8d779121974ca1ea0b342859ca9946693d107514c874e216bbb202c1e9c7a02ee3fedf7d0dc0508965cfe0471d4c3f
 SHA512 
8058fb2430010ddc8613c9e310c262b28379eb3d38b7e9badca7e3adb3560e5965bbe6612a0211d38920094a4851502471f9e1670e694ea3ef7d29bbfde340e9
 DIST autoproject_0.20-5.diff.gz 5287 BLAKE2B 
3bc26c42876606c8a8a879a888ec1c51fac8de2b380ef10c1c346a35dcd4747b21264cf4d2161e55ea31d49393569a897aa98ff1b0a8576465fd5e06b77fd27a
 SHA512 
156f8feff53936c3113bda9d8a3f2e19679f249656ace69aacb1f0a13ae93066eef49de3e5a268c47ed3e440144de629f6b84a477ecfc6a3f793c41412cc9b5a
 DIST autoproject_0.20.orig.tar.gz 151101 BLAKE2B 
657a4a4baae35b038392c2cc78a1ab0e657229587e64105f0a6150ce83c29cd2305b716b12e706ea31fc31f091f21fc8b00f89dbcd753453944ee26f7fbc01f1
 SHA512 
eb6ba12af96e03f4da51b6b9fc0db618180d92b8a363f30182013a003bb13f5b66ee12b28531a234f6035b64bda29bb0f838466ccbeaddbce06a437a18c05288

diff --git a/dev-util/autoproject/autoproject-0.20.ebuild 
b/dev-util/autoproject/autoproject-0.20.ebuild
deleted file mode 100644
index cce818573a5..000
--- a/dev-util/autoproject/autoproject-0.20.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DEB_VER=3
-DESCRIPTION="Start a programming project using autotools and a command line 
parser generator"
-HOMEPAGE="http://packages.debian.org/unstable/devel/autoproject;
-SRC_URI="mirror://debian/pool/main/a/autoproject/${PN}_${PV}.orig.tar.gz
-   mirror://debian/pool/main/a/autoproject/${PN}_${PV}-${DEB_VER}.diff.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
-IUSE="test"
-
-RDEPEND="sys-devel/automake
-   sys-devel/autoconf"
-DEPEND="${RDEPEND}
-   test? ( sys-apps/texinfo )"
-
-src_unpack() {
-   unpack ${A}
-   epatch ${PN}_${PV}-${DEB_VER}.diff
-}
-
-src_install() {
-   make install DESTDIR="${D}" || die
-   dodoc AUTHORS NEWS README TODO ChangeLog
-}



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

2019-10-18 Thread Jason Zaman
commit: ae1ed4820304ec0593d134cba454f2dde7f87076
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Oct 18 11:34:11 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri Oct 18 12:06:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae1ed482

dev-util/android-studio: bump 3.5.1

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 dev-util/android-studio/Manifest   |   1 +
 .../android-studio-3.5.1.0.191.5900203.ebuild  | 129 +
 2 files changed, 130 insertions(+)

diff --git a/dev-util/android-studio/Manifest b/dev-util/android-studio/Manifest
index fe8a122557c..8d58d6c20c8 100644
--- a/dev-util/android-studio/Manifest
+++ b/dev-util/android-studio/Manifest
@@ -1,2 +1,3 @@
 DIST android-studio-ide-183.5522156-linux.tar.gz 1087847976 BLAKE2B 
6bff44f3d4dd5de1ce65ebc444c5b30d717b92ee34ccdfc268706f1ea07cc6c431ca6a42d361f89fdbe852f347b63afbfb9667acfd80980b869d244e5b957249
 SHA512 
2d9f10fc53c0d8036e413897c5003b07be106c5108a494d347b8c035b0e8155e13fcd487627b2b4910e918f41b1972b96cd078d09e3469eef2e18ce04a416b05
 DIST android-studio-ide-191.5791312-linux.tar.gz 765055716 BLAKE2B 
f0259adce0d3589a1c54ad16c1f745a10f4291ceb3554c9e6bb7433e6d57cb1fe6e1647df880b381172949a95cc908010977b87e3c34a868ccd00edfb3b7ba7c
 SHA512 
39bc345e57fba7b49074f412db71bf1e62cb2b23189149b8b1a72cbc159c285969708c8859def2d4a589cf8241b9a9cef2d93d72cf410554e469e66c20a6
+DIST android-studio-ide-191.5900203-linux.tar.gz 774544330 BLAKE2B 
f1bf4e808a731336c35d2a264fb7608e2129aab31eb9afe0f6e898603dbc5aac13e3c30335ed7c4567b5d3860299ed5ed4d25ba919eebf3f847955fdd49fced4
 SHA512 
5b736002e3a5dc0c6ff8897f05d20132444304bbd96ec4f14acf93dee8389e67f2bd037ae6d3df9770254a744f364d04f6324dcc17d49bf07006049c80572afa

diff --git a/dev-util/android-studio/android-studio-3.5.1.0.191.5900203.ebuild 
b/dev-util/android-studio/android-studio-3.5.1.0.191.5900203.ebuild
new file mode 100644
index 000..98fc3046cf0
--- /dev/null
+++ b/dev-util/android-studio/android-studio-3.5.1.0.191.5900203.ebuild
@@ -0,0 +1,129 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit desktop eutils java-pkg-2
+
+RESTRICT="strip"
+QA_PREBUILT="
+   opt/${PN}/bin/fsnotifier*
+   opt/${PN}/bin/libdbm64.so
+   opt/${PN}/bin/lldb/*
+   opt/${PN}/custom-jdk/*
+   opt/${PN}/lib/pty4j-native/linux/*/libpty.so
+   opt/${PN}/plugins/android/lib/libwebp_jni*.so
+   opt/${PN}/plugins/android/resources/installer/*
+   opt/${PN}/plugins/android/resources/perfetto/*
+   opt/${PN}/plugins/android/resources/simpleperf/*
+   opt/${PN}/plugins/android/resources/transport/*
+"
+
+VER_CMP=( $(ver_rs 1- ' ') )
+if [[ ${#VER_CMP[@]} -eq 6 ]]; then
+   STUDIO_V=$(ver_cut 1-4)
+   BUILD_V=$(ver_cut 5-6)
+else
+   STUDIO_V=$(ver_cut 1-3)
+   BUILD_V=$(ver_cut 4-5)
+fi
+
+DESCRIPTION="Android development environment based on IntelliJ IDEA"
+HOMEPAGE="http://developer.android.com/sdk/installing/studio.html;
+SRC_URI="https://dl.google.com/dl/android/studio/ide-zips/${STUDIO_V}/${PN}-ide-${BUILD_V}-linux.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="custom-jdk selinux"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   dev-java/commons-logging:0
+   dev-java/log4j:0"
+
+RDEPEND="${DEPEND}
+   >=virtual/jdk-1.7
+   selinux? ( sec-policy/selinux-android )
+   >=app-arch/bzip2-1.0.6-r4
+   dev-java/commons-logging:0
+   dev-java/log4j:0
+   >=dev-libs/expat-2.1.0-r3
+   >=dev-libs/libffi-3.0.13-r1
+   >=media-libs/fontconfig-2.10.92
+   >=media-libs/freetype-2.5.5
+   >=media-libs/libpng-1.2.51
+   >=media-libs/mesa-10.2.8[X(+)]
+   || ( gnome-extra/zenity kde-apps/kdialog x11-apps/xmessage 
x11-libs/libnotify )
+   sys-libs/ncurses-compat:5[tinfo]
+   >=sys-libs/zlib-1.2.8-r1
+   >=x11-libs/libX11-1.6.2
+   >=x11-libs/libXau-1.0.7-r1
+   >=x11-libs/libXdamage-1.1.4-r1
+   >=x11-libs/libXdmcp-1.1.1-r1
+   >=x11-libs/libXext-1.3.2
+   >=x11-libs/libXfixes-5.0.1
+   >=x11-libs/libXrender-0.9.8
+   >=x11-libs/libXxf86vm-1.1.3
+   >=x11-libs/libdrm-2.4.46
+   >=x11-libs/libxcb-1.9.1
+   >=x11-libs/libxshmfence-1.1"
+BDEPEND="dev-util/patchelf"
+S=${WORKDIR}/${PN}
+PATCHES=( "${FILESDIR}/0001-use-java-home-before-bundled.patch" )
+
+src_prepare() {
+   eapply "${PATCHES[@]}"
+   eapply_user
+
+   # This is really a bundled jdk not a jre
+   # If custom-jdk is not set bundled jre is replaced with system vm/jdk
+   if use custom-jdk; then
+   mv -f "${S}/jre" "${S}/custom-jdk" || die "Could not move 
bundled jdk"
+   else
+   rm -rf "${S}/jre" || die "Could not remove bundled jdk"
+   fi
+   # Replace bundled jars with system
+   # has problems with newer jdom:0 not updated to jdom:2
+   cd "${S}/lib" || 

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

2019-10-18 Thread Jason Zaman
commit: 38742519dcc559b84673c9b362a490b8f56809b9
Author: Jason Zaman  gentoo  org>
AuthorDate: Fri Oct 18 11:32:23 2019 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Fri Oct 18 12:06:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38742519

dev-util/android-studio: stable 3.5.0

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Jason Zaman  gentoo.org>

 dev-util/android-studio/android-studio-3.5.0.21.191.5791312.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/android-studio/android-studio-3.5.0.21.191.5791312.ebuild 
b/dev-util/android-studio/android-studio-3.5.0.21.191.5791312.ebuild
index 98fc3046cf0..2f6f8b6fb82 100644
--- a/dev-util/android-studio/android-studio-3.5.0.21.191.5791312.ebuild
+++ b/dev-util/android-studio/android-studio-3.5.0.21.191.5791312.ebuild
@@ -34,7 +34,7 @@ 
SRC_URI="https://dl.google.com/dl/android/studio/ide-zips/${STUDIO_V}/${PN}-ide-
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="custom-jdk selinux"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DEPEND="
dev-java/commons-logging:0



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

2019-10-18 Thread Chí-Thanh Christopher Nguyễn
commit: 625ae773f5aca1a8a4ec3060712400bae0212f74
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Fri Oct 18 11:55:16 2019 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Fri Oct 18 11:55:16 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=625ae773

app-office/openoffice-bin: bump to 4.1.7, address security vulnerability

Bug: https://bugs.gentoo.org/show_bug.cgi?id=677248
Bug: https://bugs.gentoo.org/show_bug.cgi?id=695358
Signed-off-by: Chí-Thanh Christopher Nguyễn  gentoo.org>
Package-Manager: Portage-2.3.76, Repoman-2.3.16

 app-office/openoffice-bin/Manifest |  80 +
 .../openoffice-bin/openoffice-bin-4.1.7.ebuild | 193 +
 2 files changed, 273 insertions(+)

diff --git a/app-office/openoffice-bin/Manifest 
b/app-office/openoffice-bin/Manifest
index df649f0d25d..e1df264bf36 100644
--- a/app-office/openoffice-bin/Manifest
+++ b/app-office/openoffice-bin/Manifest
@@ -78,3 +78,83 @@ DIST 
Apache_OpenOffice_4.1.6_Linux_x86_langpack-rpm_tr.tar.gz 12196002 BLAKE2B b
 DIST Apache_OpenOffice_4.1.6_Linux_x86_langpack-rpm_vi.tar.gz 13438574 BLAKE2B 
78a946da888cdda4edfcd7398386925f1e7e27ab10dc0f9d6e43b1fa7269b5282574774185e8e964fbbbc2aaf60f960862feee2927e918e46defac5b94ea604d
 SHA512 
f406f5f4e7d21ea9031f316c73bfaa8e06f6eeb724a79db0bd38607e5dc73f043d55e37528c5d48bf7cc031bae751f792447fce70feee9ca5f2e46b738d1c7f1
 DIST Apache_OpenOffice_4.1.6_Linux_x86_langpack-rpm_zh-CN.tar.gz 13874438 
BLAKE2B 
edb1cc8b0a6b94f7fa47166ad26f45d58774bd9567cbb6e3a1643f038d335f33f92a8ff2b2d84bc59a5b4cd020e3f68826fd9b7aacc4f1534683288c58c5cacc
 SHA512 
722b8a1e8fb39a01dff92ccc5db61428348b4f033efa6e9d150241a2e34010444ae43dac54b8bb72b90d98304c62328db8e39cd2de8077dc49f2e1cb3a475c24
 DIST Apache_OpenOffice_4.1.6_Linux_x86_langpack-rpm_zh-TW.tar.gz 14085971 
BLAKE2B 
fba2234bf067ebc12e691ed32800bdbabd6cb328def31dce7fbbe589437c7490b6ef6d2bbd543240c7be7be3a4bc6ef4a1685ad0c3f1ae7ed3af7a1c2268bea8
 SHA512 
775184deade61bc8059a5adc8ad63fec4b157491edb8c4094ec8f80b3c66f2d7de574bf20817fc3077203bdaa029f6c5e4efc4ec39f15f41ff93d760be44e213
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_install-rpm_en-US.tar.gz 163657250 
BLAKE2B 
a73add3ca65461d9ad058f8a828e3c04e9826dc82a01af9174b3fa9f62211e6db2965959260928d6d40cff98fc1b6237143206a3a84e7458f784779d61999e1d
 SHA512 
9e1c692dcf19625da40de30ed16625eaa5d16c8bcd1917af3ee3010b535292f3cba832c11419a88e524d64ca2e3d21e4442e00b26028b7d024bf0498ef398b75
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_ast.tar.gz 18753908 
BLAKE2B 
cccde7d2a9706dc57ca6ee734326b2a2ec8e9c58ff123f5d80eca090ee7d9da45c36ac94bc20985aec8331139580da9b91cdebcb6f4df84a05c94fcdc73abd4f
 SHA512 
b4dd1e0db302cd4ff5c01b47f1458e2421a24b983692aa335ad76a4fc5486eae3b104b65364aa5863786e78bbdac4ab383bd401a8109cb82344daa92a79bce69
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_bg.tar.gz 13609334 
BLAKE2B 
bc90a777df390bcfc1596c47f93f8c40b5eecb5edad5c711bd944c4b6fc59a0f3ce81ed352f27e59f5fe0b85eab3b2c9c8b453ed9cfb2e32fa133d650aaad27f
 SHA512 
e5e014a6380243ea4e0e4259faab14ca9e8dc5f7e6b47f81cde8e88c4910a27c97443fa50bc661fc42e1a849505a0ce3192c4a219a82a24be472cda2476a140c
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_ca-XV.tar.gz 20189969 
BLAKE2B 
55ed4a7f1a6926c0dfbe732997762bffb93364500bf0fb53b72d54c5a70f3d71617b152527bbc40e7bfecc8f266610bebacfe3273862c2fd723e3a5ee224e993
 SHA512 
f311b8c67af8ebfa01bb79b46930692367a2b4bf70c5b6193e9e75aec85dc2f4bb565a40eb0ab585b12c63863a5ed02d2e5783fd4ff176b8bd253aeb8d3608a9
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_ca.tar.gz 20185622 
BLAKE2B 
eb58e01794c1ab0a3cee67b693eecef45d2face184e48e6cd03b0d0bb3020f8522e043604ae7832c3bc30208e1911a7d8cf71b497b279aa57374ea68bd53933e
 SHA512 
78d218703e30d3007752012d02c0e9abebddc38900a9fb12e9203282bec8a97fcb67d61bcf31c5c429a9a97835a49cfa4af01533e6b5170e4a0c1e155422b034
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_cs.tar.gz 12651417 
BLAKE2B 
794cdbf82349409d60debb0e3dc1303363976798b49f43783fda8dc437c5624d5535ea73b7840656192818fd08e00969c35db8ac6285104e1319dae7a41d6530
 SHA512 
81b18843ea52d7b23c5a0910e0b354cd73d87b60a1d0deeb9eebc4a994c83f895810508bac6824776f50d4fd973ae50bfc63c9cde635139cc9da6aebf42ab485
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_da.tar.gz 12440854 
BLAKE2B 
a80be6e25a22805dd9bb7eabfec84ffc0085cd2a02864361f2309e1b4399b5b540400a2f924e22b19fc0a421b0bf6421e4e6b1a6f637c8dcfdb7d29aec5eabc2
 SHA512 
95e7b1babd4ff98b53ad127f85e4d12b9fa7ffcaa651e2b7f4b1f3d7dc569ada54fc6adeaf096d6b5d1a91790408397b6693d2fbf20bc84ba3e0b05633d0d299
+DIST Apache_OpenOffice_4.1.7_Linux_x86-64_langpack-rpm_de.tar.gz 20371888 
BLAKE2B 
cb5bd61733f9751e46763ad86cb8afa39b0cba9c49f782e5bf19a29702fd12e4d37fb2ac40af9194919fb11ccd8ee9fc6996cc9fd779fd4a2a9e261704085938
 SHA512 
41483c36e11f63d462d660be83cdd58af1dd7f6d49bb18c957f18719303455303f48aa10cc0b733827002574330a5c82ac67946cec07e0df468c53f1181d1460
+DIST 

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

2019-10-18 Thread Ulrich Müller
commit: 540bebb447666aa1171d70b1ba7e5263cef0dedd
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Oct 18 11:10:14 2019 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Oct 18 11:12:37 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=540bebb4

app-emacs/mailcrypt: Use eclass functions to build and install.

Instead of quirky upstream build system.

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/mailcrypt/mailcrypt-3.5.9-r3.ebuild | 25 +
 1 file changed, 25 insertions(+)

diff --git a/app-emacs/mailcrypt/mailcrypt-3.5.9-r3.ebuild 
b/app-emacs/mailcrypt/mailcrypt-3.5.9-r3.ebuild
new file mode 100644
index 000..d7231e393d2
--- /dev/null
+++ b/app-emacs/mailcrypt/mailcrypt-3.5.9-r3.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit elisp readme.gentoo-r1
+
+DESCRIPTION="Provides a simple interface to public key cryptography with 
OpenPGP"
+HOMEPAGE="http://mailcrypt.sourceforge.net/;
+SRC_URI="mirror://sourceforge/mailcrypt/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+RESTRICT="test"
+
+RDEPEND="app-crypt/gnupg"
+
+ELISP_PATCHES="${P}-backquotes.patch"
+ELISP_REMOVE="FSF-timer.el"# remove bundled timer.el
+SITEFILE="50${PN}-gentoo.el"
+ELISP_TEXINFO="mailcrypt.texi"
+DOCS="ANNOUNCE ChangeLog* INSTALL NEWS ONEWS README* WARNINGS"
+DOC_CONTENTS="See the INSTALL file in /usr/share/doc/${PF} for how to
+   customize mailcrypt."



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

2019-10-18 Thread Agostino Sarubbo
commit: 4932103df6ef184998e331a9fe6752fa72b75a35
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:24:57 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:24:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4932103d

app-emacs/po-mode: amd64 stable wrt bug #697926

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-emacs/po-mode/po-mode-0.19.8.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emacs/po-mode/po-mode-0.19.8.1.ebuild 
b/app-emacs/po-mode/po-mode-0.19.8.1.ebuild
index 4a74f6455d7..344a9c39c96 100644
--- a/app-emacs/po-mode/po-mode-0.19.8.1.ebuild
+++ b/app-emacs/po-mode/po-mode-0.19.8.1.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
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gettext/gettext-${PV}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-macos"
 
 S="${WORKDIR}/gettext-${PV}/gettext-tools/misc"
 ELISP_REMOVE="start-po.el"



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

2019-10-18 Thread Agostino Sarubbo
commit: ddc6f34ec5b1da826328f9c28892f790109f71d2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:24:17 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:24:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddc6f34e

dev-perl/libintl-perl: amd64 stable wrt bug #661768

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild 
b/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild
index 15961da26ca..c13bea33e9e 100644
--- a/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild
+++ b/dev-perl/libintl-perl/libintl-perl-1.310.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://guido-flohr.net/projects/libintl-perl 
${HOMEPAGE}"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="minimal"
 
 RDEPEND="



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

2019-10-18 Thread Agostino Sarubbo
commit: cfe20cb67b6c86bef2fb4aef79698b8e0cea6740
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:25:17 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:25:17 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfe20cb6

dev-vcs/git: amd64 stable wrt bug #697962

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-vcs/git/git-2.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.23.0.ebuild b/dev-vcs/git/git-2.23.0.ebuild
index b8522337d04..9aaca331c17 100644
--- a/dev-vcs/git/git-2.23.0.ebuild
+++ b/dev-vcs/git/git-2.23.0.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2019-10-18 Thread Agostino Sarubbo
commit: 59ae8671ac3a460c9fd5f57f70acc452d3cd9a7c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:25:28 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:25:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ae8671

dev-libs/libxmlb: amd64 stable wrt bug #697966

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/libxmlb/libxmlb-0.1.12.ebuild 
b/dev-libs/libxmlb/libxmlb-0.1.12.ebuild
index 203b7a1d9e5..49851f28242 100644
--- a/dev-libs/libxmlb/libxmlb-0.1.12.ebuild
+++ b/dev-libs/libxmlb/libxmlb-0.1.12.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="LGPL-2.1+"
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 IUSE="doc introspection stemmer test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2019-10-18 Thread Agostino Sarubbo
commit: 6c7b03c6ffad6a859c4c3756e05a4be79c6ebc2e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:24:26 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:24:26 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c7b03c6

dev-java/tomcat-servlet-api: amd64 stable wrt bug #697834

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/tomcat-servlet-api/tomcat-servlet-api-5.5.36.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-5.5.36.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-5.5.36.ebuild
index c62240c7cf0..a7c8aefd34b 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-5.5.36.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-5.5.36.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://archive.apache.org/dist/tomcat/tomcat-5/v${PV}/src/${MY_P}.tar.
 
 LICENSE="Apache-2.0"
 SLOT="2.4"
-KEYWORDS="~amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 IUSE="doc source"
 
 DEPEND=">=virtual/jdk-1.8



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

2019-10-18 Thread Agostino Sarubbo
commit: f4917300f97ac0ecf189b40f33f54964fb116ded
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:24:51 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:24:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4917300

app-emacs/yatex: amd64 stable wrt bug #697922

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-emacs/yatex/yatex-1.80.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emacs/yatex/yatex-1.80.ebuild 
b/app-emacs/yatex/yatex-1.80.ebuild
index 70503b9d1df..8fbf771ca86 100644
--- a/app-emacs/yatex/yatex-1.80.ebuild
+++ b/app-emacs/yatex/yatex-1.80.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -9,7 +9,7 @@ DESCRIPTION="Yet Another TeX mode for Emacs"
 HOMEPAGE="http://www.yatex.org/;
 SRC_URI="http://www.${PN}.org/${P/-}.tar.gz;
 
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 SLOT="0"
 LICENSE="BSD-2"
 IUSE="l10n_ja"



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2019-10-18 Thread Agostino Sarubbo
commit: fc2395551bcb7d5c7821976f249d1df34eed2e05
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:24:36 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:24:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc239555

dev-java/tomcat-servlet-api: amd64 stable wrt bug #697844

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.45.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.45.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.45.ebuild
index aee7cf5f718..9b931baf0d4 100644
--- a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.45.ebuild
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.45.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://apache/tomcat/tomcat-8/v${PV}/src/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="3.1"
-KEYWORDS="~amd64 ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm64 ppc64 x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/jdk-1.7"



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

2019-10-18 Thread Agostino Sarubbo
commit: a4a684b01b3c7c809513216688c5692cbe988b31
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:24:44 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:24:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4a684b0

app-emacs/dash: amd64 stable wrt bug #697916

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-emacs/dash/dash-2.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emacs/dash/dash-2.16.0.ebuild 
b/app-emacs/dash/dash-2.16.0.ebuild
index 16a75dcd7c9..c1cc28e2aee 100644
--- a/app-emacs/dash/dash-2.16.0.ebuild
+++ b/app-emacs/dash/dash-2.16.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/magnars/dash.el/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="sys-apps/texinfo"
 



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

2019-10-18 Thread Agostino Sarubbo
commit: 1808aed42b832c67cfeded4ada28f054aa0c0341
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Oct 18 10:23:06 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Oct 18 10:23:06 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1808aed4

sys-kernel/vanilla-sources: Automated version bump to 
{4.4.197,4.9.197,4.14.150,4.19.80,5.3.7} - remove old.

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-kernel/vanilla-sources/Manifest  | 12 +---
 ...s-4.14.149.ebuild => vanilla-sources-4.14.150.ebuild} |  0
 ...ces-4.19.79.ebuild => vanilla-sources-4.19.80.ebuild} |  0
 ...ces-4.4.196.ebuild => vanilla-sources-4.4.197.ebuild} |  0
 ...ces-4.9.196.ebuild => vanilla-sources-4.9.197.ebuild} |  0
 sys-kernel/vanilla-sources/vanilla-sources-5.3.6.ebuild  | 16 
 ...ources-5.2.20.ebuild => vanilla-sources-5.3.7.ebuild} |  0
 7 files changed, 5 insertions(+), 23 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 4b2beb3fb46..f9af36851eb 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -3,12 +3,10 @@ DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97
 DIST linux-4.19.tar.xz 103117552 BLAKE2B 
1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0
 SHA512 
ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
-DIST linux-5.2.tar.xz 107029708 BLAKE2B 
f0cf6e3a15a4bd019edbfa33cb4556d0672e807f7d139eff3ab053d0ad7649198b229475955a1f51eb90d0e9f8268cafb782f6312793fdf38472f3c6d7c2d7ee
 SHA512 
5a28f8a34c4e0470617f5638b7112e6252109b78f23b1eed484a228530970c7ef5c130d6e5a09cf25ea2f6a0329602dcc1ec66ce893182e15b27d99bd228789c
 DIST linux-5.3.tar.xz 108558876 BLAKE2B 
0d08eed879d05734e4542f0c93823d43f8dc042a54ba5268064c4bbebd7a9d59c03abf3ad5dee8280e784ae148a3b0c56181eaf2d5b3c079b6fe9f5191544df6
 SHA512 
6b5edef47c319a3fa7f6c20a3e0903a5acd89ec75e32dc5f99adcb60c9fe118ea312722d9c3d27e2e3900afa2455afb86e83a8b6bb131009bc79ddbe6fb0595d
 DIST patch-3.16.75.xz 2522584 BLAKE2B 
2a4aa459ac0a95855c19f2bfdbbefed0032b481dcea94101065ce92caf799d8fff83bf4730eed87dd34ea8ea7fd3a25137e8014747310007c83db633163c7354
 SHA512 
6092f339139aa39eab8dff2e19266febd0820dde611f90536bee908618bc57c46855b471d98380082f2fcc497e573c75526a91c03280bd663a1c463299e7852d
-DIST patch-4.14.149.xz 2925528 BLAKE2B 
8429344709030a1b2d5840a727acb86b5a27c91e06962291de54032c9735547c6fe048839c8283211234e26502f9e05acf8114df818fa5f9ebb486057da620b9
 SHA512 
3935b8508de4b8e27e4cd3486cff402d4ef878b9d5871fed5d0aba260f18d0c25521cac6ded27ec785f69243f7fe2dc474a6a085202ace49b98168566e2256fa
-DIST patch-4.19.79.xz 1919600 BLAKE2B 
1875b5a9dddfc8927d91bb8c6b179e7f0e992298c72fdf98df025529a4fae00a21025a6db2b367f0cc7a319832300c797760e76c06e57296ea8fcaa175bfd283
 SHA512 
a1f75d4afef6313e1838bf0ae808e1598501b077581bd45054a52b4caaf63d36fea8dce575d4800a192433ad371d8084b385c93fd4e64d864f706af352f12cb1
-DIST patch-4.4.196.xz 2731404 BLAKE2B 
956b3936ad652f0b0cbd5073f8eef4ebedf99d3f30de433e7e7dd2608413d80707fba1c64af5530cca424b41f73c36789b248e4fedd130dc5f0d982b2c10b4d0
 SHA512 
ab75f8a831f2340958439a8ef0edbdc886b520197993cf213fb6cf7403cb22795206bd040ad4b03a591231b02f4a5f4836dc5436f056fc7457d54e869fc9d113
-DIST patch-4.9.196.xz 348 BLAKE2B 
3fb9f0e28caddc503673a6446ca20d19705d1941405d61a04d7136949896b89c03ba047815df8cb85ce913e9ef6343ccb4050719942e9c44fc1d363d3eaff318
 SHA512 
58fe22808bde31532d57ea9447fcad326ca3e9b06d4f0243d8671a431b97c3d2e56315fb10c1f9305803ef71df11e7689441e9daa9a3c0f90fdfb200e7e1d50e
-DIST patch-5.2.20.xz 688380 BLAKE2B 
bcd344b5e710ac712fa314d15a657e166413686f92ce74f0e44083eafcd92b6982410ff6942d0c590c2948964fe266c2bfc65b428cd17283059aacc4d1fb1bb0
 SHA512 
a114d3c8cc477cb6b499e1ef32f8a90a7e14b3e8fe7f82980b0c97abc280d95d9aaabdb78debadc7c9b06077787ac54927c86413fb99a339b08616101a415940
-DIST patch-5.3.6.xz 219948 BLAKE2B 
0859ba6077ff8aefbab73c7105ae42fbdf08453bc8587179b51018a4bc3662588d12a629c8b90a4a2d6e79c802c627ed48252082b24aab98ceb15f9a13be358f
 SHA512 

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

2019-10-18 Thread Jeroen Roovers
commit: 31c9b131d48324d3db7bf285a550630a2eb21dd7
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 18 09:12:16 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 18 09:13:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c9b131

www-client/vivaldi: Stable

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/vivaldi/vivaldi-2.8.1664.44_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/vivaldi/vivaldi-2.8.1664.44_p1.ebuild 
b/www-client/vivaldi/vivaldi-2.8.1664.44_p1.ebuild
index 69ed6a41d08..479dfcff484 100644
--- a/www-client/vivaldi/vivaldi-2.8.1664.44_p1.ebuild
+++ b/www-client/vivaldi/vivaldi-2.8.1664.44_p1.ebuild
@@ -26,7 +26,7 @@ SRC_URI="
 
 LICENSE="Vivaldi"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~x86"
+KEYWORDS="-* amd64 ~arm x86"
 RESTRICT="bindist mirror"
 
 DEPEND="



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

2019-10-18 Thread Jeroen Roovers
commit: 180ff9d43cf46fd75a66ddda6c6171d782da0af0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Oct 18 09:12:52 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Oct 18 09:13:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=180ff9d4

www-client/vivaldi: Old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/vivaldi/Manifest  |   3 -
 www-client/vivaldi/vivaldi-2.8.1664.40_p1.ebuild | 124 ---
 2 files changed, 127 deletions(-)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index 0a136d54bd1..59f546f129d 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-2.8.1664.40_p1-amd64.deb 62559932 BLAKE2B 
380dbc0a08fa5131ea59460c3aa736f19291ecbec730ebee6b546593c234e052391fda33494952cf778a9804816ee2223634ff6768756345c73b8b55e555e106
 SHA512 
503f16357a699d9a7c99f05b3536a432bf7fb7c74c9e32a739ba7541a33c8b15d637be7a254fcb64d294815c467ac2569cd05f17f710a145d8e5bf8b8c9ae93d
-DIST vivaldi-2.8.1664.40_p1-armhf.deb 55160132 BLAKE2B 
f4776279798f22df6dc6a2478ac7ca758f8ef78ac7260dd1f305cb290a1d22b7f3a97a634a839d3cfa40d10b58892c90d8e57c3982cceccf4877bc7e4c0fe4b6
 SHA512 
89249be5857c398c8d7f47ddebfe6e278e6f1e12c246c1e623fc16dd702257de1a3140331a8f637e5b1dd53e2ad252b0a9d8c06ade81f8c198687316e6267db0
-DIST vivaldi-2.8.1664.40_p1-i386.deb 60896168 BLAKE2B 
c70a6ca57ad1254917ea8ebdb41d0c3fceb64119c976d82a69aa02466e841dc6715c8b33cf4d1e110c6671ede6e8212dee804c8814e6dcc575e85700fa60490a
 SHA512 
24bb02fb005e7b44798d226e4edbb0e107e38a38000bd8a3144df6c4a6c86705c565994dfee8f9a27b20b1d7a4a3f96dadc93966b6b9c8da76fcafb218a3044f
 DIST vivaldi-2.8.1664.44_p1-amd64.deb 62585816 BLAKE2B 
286b732bbc340c0fcbcf98a0b182875c6bd655639adcaef64d32d382d58f920be12caddde933cdbc8246b2cd48e8b4b63e325ae668ae79a0da66d3ad9b0528ea
 SHA512 
f9f6d4042b0ffc9f02179c73488defe81a24adeab9dec210e369860ecb6b9329dc072193efefe965122e3dd7a29d6249610ece7fa5302423f7fc1761a4552243
 DIST vivaldi-2.8.1664.44_p1-armhf.deb 55289880 BLAKE2B 
803725b4c148fd1c9a15503cd2de563b835a4ba42e04b929b63bba6e96ec43727f066cec0e1a6d82abc141a4565ce4262c9a7ffdca245b74ae38d6bf36131c47
 SHA512 
0517524275fdd141f0b254ba38b1c1f0e6663e0b26f7399297c89a1ad0e4896e29981eae430828762f97a7ae88b1856ec909f8e50ecc89b93634d2f331510ffb
 DIST vivaldi-2.8.1664.44_p1-i386.deb 60903864 BLAKE2B 
9895f2e05de70b5567411190bbe52753226e7b45890069aedf832c48658205320f45482d0483188ebfd5542ba176108564aa9241a64858bad4d901c02cd5de79
 SHA512 
199dbd20a6890d6843e85be6e89b24e12fc585fa7f75111c6ffd78fb8ffb7ff0915a667d183e70dc35c231b6afc5376565f1152a6763daed3bea6a19b157c5eb

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

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

2019-10-18 Thread Lars Wendler
commit: 59ebe3e0174f4ce763d47a26acf18cf07a73b64c
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 07:54:18 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 07:56:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ebe3e0

dev-libs/libxmlb: Bump to version 0.1.13

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

 dev-libs/libxmlb/Manifest  |  1 +
 dev-libs/libxmlb/libxmlb-0.1.13.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/dev-libs/libxmlb/Manifest b/dev-libs/libxmlb/Manifest
index 1857b33ecd3..240fae72544 100644
--- a/dev-libs/libxmlb/Manifest
+++ b/dev-libs/libxmlb/Manifest
@@ -1,4 +1,5 @@
 DIST libxmlb-0.1.10.tar.gz 86237 BLAKE2B 
042898be9ff8bb6b253ce7194e774bf6a1d8f08316ba54647b3667b1969c035364c3ef25d179fab20cbf9ca83bbd7e4d6012ec1adf08849fe99e40ab9a294983
 SHA512 
81f5edf776241580c0e47f43f9b15ecbc695022007cf90070f95ca190f2a270f15a856a89246c772f52e93b8eed88d228c5f426cd4dc84e8e6fdf2556b8714b3
 DIST libxmlb-0.1.11.tar.gz 88848 BLAKE2B 
b8ae448f8ead51c884304c190c2b5535f864eb410f45adc4c1f548d6aedcba944b6e0418fbc781e2561e18b392f3a77df8512f6d3ec5e0831513a2dac520409d
 SHA512 
734082c4c15d8b02eb3e526b59fb6be8a7a61758a059792fca567c9a647df0597561fb6967903fb44d566ccd6e8e6d99286d0cae495b9d8ec12a3cd257c24a16
 DIST libxmlb-0.1.12.tar.gz 91256 BLAKE2B 
b063bed9d7794b300ec40622c7fd0caac974b7f1be57b08ccb1864587b7bf47f892a39d1f4f0df226d3fe7ca03ffcec471a4f28afb8e64ae841d6898a337b60f
 SHA512 
aebd9f41421bb0d78954038b3221bed879d296ec2d3061e7e7747980974e01081e51ea36d4e94545af5006b3dc4714d535aeea1943e42a7f1661ba1177979b31
+DIST libxmlb-0.1.13.tar.gz 91597 BLAKE2B 
f5b1cffba36f25260df44b85109df22aca9f76a47a71c82b99504ce6f072b5b01c32aa26ae36ee37ff717a25dcbf094def8c3b65c7e53883aad726d919181db1
 SHA512 
ae2c043db0c3a9719c1527933e087825068f970bde28bc7b507a6535b51133d463b1dce6c8b02148a555bb28868ab563f7bb01e6324661dac92fab556c9a39b0
 DIST libxmlb-0.1.8.tar.gz 85945 BLAKE2B 
4d17aaf4e5ed3001a4db24e7ca220cba3fc14ee446b127b65b545fab997c7c31835b57b0dd9d23da74200d774e3986558e7618789f42d1e95c0734fa5bb6e098
 SHA512 
4109f171da4622429d18afdb9ae183a64f89e0b92df285efae5736017970f877a92391876969c20894184c6d5df96390ccd46be1d1087882a5461476c39e433a

diff --git a/dev-libs/libxmlb/libxmlb-0.1.13.ebuild 
b/dev-libs/libxmlb/libxmlb-0.1.13.ebuild
new file mode 100644
index 000..203b7a1d9e5
--- /dev/null
+++ b/dev-libs/libxmlb/libxmlb-0.1.13.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+inherit meson python-any-r1
+
+DESCRIPTION="Library to help create and query binary XML blobs"
+HOMEPAGE="https://github.com/hughsie/libxmlb;
+SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="LGPL-2.1+"
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="doc introspection stemmer test"
+
+RDEPEND="
+   dev-libs/glib:2
+   sys-apps/util-linux
+   stemmer? ( dev-libs/snowball-stemmer )
+"
+
+DEPEND="
+   ${RDEPEND}
+   doc? ( dev-util/gtk-doc )
+   introspection? ( dev-libs/gobject-introspection )
+"
+
+BDEPEND="
+   >=dev-util/meson-0.47.0
+   virtual/pkgconfig
+   introspection? (
+   $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
+   ${PYTHON_DEPS}
+   )
+"
+
+python_check_deps() {
+   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use introspection && python-any-r1_pkg_setup
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dgtkdoc="$(usex doc true false)"
+   -Dintrospection="$(usex introspection true false)"
+   -Dstemmer="$(usex stemmer true false)"
+   -Dtests="$(usex test true false)"
+   )
+   meson_src_configure
+}



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

2019-10-18 Thread Lars Wendler
commit: 9eda8d1c309863fd3dc03adba66a44c1650d7912
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 07:54:48 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 07:56:03 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eda8d1c

dev-libs/libxmlb: Removed old

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

 dev-libs/libxmlb/Manifest  |  2 --
 dev-libs/libxmlb/libxmlb-0.1.10.ebuild | 42 -
 dev-libs/libxmlb/libxmlb-0.1.11.ebuild | 56 --
 3 files changed, 100 deletions(-)

diff --git a/dev-libs/libxmlb/Manifest b/dev-libs/libxmlb/Manifest
index 240fae72544..982f55021b4 100644
--- a/dev-libs/libxmlb/Manifest
+++ b/dev-libs/libxmlb/Manifest
@@ -1,5 +1,3 @@
-DIST libxmlb-0.1.10.tar.gz 86237 BLAKE2B 
042898be9ff8bb6b253ce7194e774bf6a1d8f08316ba54647b3667b1969c035364c3ef25d179fab20cbf9ca83bbd7e4d6012ec1adf08849fe99e40ab9a294983
 SHA512 
81f5edf776241580c0e47f43f9b15ecbc695022007cf90070f95ca190f2a270f15a856a89246c772f52e93b8eed88d228c5f426cd4dc84e8e6fdf2556b8714b3
-DIST libxmlb-0.1.11.tar.gz 88848 BLAKE2B 
b8ae448f8ead51c884304c190c2b5535f864eb410f45adc4c1f548d6aedcba944b6e0418fbc781e2561e18b392f3a77df8512f6d3ec5e0831513a2dac520409d
 SHA512 
734082c4c15d8b02eb3e526b59fb6be8a7a61758a059792fca567c9a647df0597561fb6967903fb44d566ccd6e8e6d99286d0cae495b9d8ec12a3cd257c24a16
 DIST libxmlb-0.1.12.tar.gz 91256 BLAKE2B 
b063bed9d7794b300ec40622c7fd0caac974b7f1be57b08ccb1864587b7bf47f892a39d1f4f0df226d3fe7ca03ffcec471a4f28afb8e64ae841d6898a337b60f
 SHA512 
aebd9f41421bb0d78954038b3221bed879d296ec2d3061e7e7747980974e01081e51ea36d4e94545af5006b3dc4714d535aeea1943e42a7f1661ba1177979b31
 DIST libxmlb-0.1.13.tar.gz 91597 BLAKE2B 
f5b1cffba36f25260df44b85109df22aca9f76a47a71c82b99504ce6f072b5b01c32aa26ae36ee37ff717a25dcbf094def8c3b65c7e53883aad726d919181db1
 SHA512 
ae2c043db0c3a9719c1527933e087825068f970bde28bc7b507a6535b51133d463b1dce6c8b02148a555bb28868ab563f7bb01e6324661dac92fab556c9a39b0
 DIST libxmlb-0.1.8.tar.gz 85945 BLAKE2B 
4d17aaf4e5ed3001a4db24e7ca220cba3fc14ee446b127b65b545fab997c7c31835b57b0dd9d23da74200d774e3986558e7618789f42d1e95c0734fa5bb6e098
 SHA512 
4109f171da4622429d18afdb9ae183a64f89e0b92df285efae5736017970f877a92391876969c20894184c6d5df96390ccd46be1d1087882a5461476c39e433a

diff --git a/dev-libs/libxmlb/libxmlb-0.1.10.ebuild 
b/dev-libs/libxmlb/libxmlb-0.1.10.ebuild
deleted file mode 100644
index 487a34f0da4..000
--- a/dev-libs/libxmlb/libxmlb-0.1.10.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="Library to help create and query binary XML blobs"
-HOMEPAGE="https://github.com/hughsie/libxmlb;
-SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="LGPL-2.1+"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="doc introspection stemmer test"
-
-RDEPEND="
-   dev-libs/glib:2
-   sys-apps/util-linux
-   stemmer? ( dev-libs/snowball-stemmer )
-"
-
-DEPEND="
-   ${RDEPEND}
-   doc? ( dev-util/gtk-doc )
-   introspection? ( dev-libs/gobject-introspection )
-"
-
-BDEPEND="
-   >=dev-util/meson-0.47.0
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local emesonargs=(
-   -Dgtkdoc="$(usex doc true false)"
-   -Dintrospection="$(usex introspection true false)"
-   -Dstemmer="$(usex stemmer true false)"
-   -Dtests="$(usex test true false)"
-   )
-   meson_src_configure
-}

diff --git a/dev-libs/libxmlb/libxmlb-0.1.11.ebuild 
b/dev-libs/libxmlb/libxmlb-0.1.11.ebuild
deleted file mode 100644
index 51a1b304f84..000
--- a/dev-libs/libxmlb/libxmlb-0.1.11.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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 meson python-any-r1
-
-DESCRIPTION="Library to help create and query binary XML blobs"
-HOMEPAGE="https://github.com/hughsie/libxmlb;
-SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-LICENSE="LGPL-2.1+"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="doc introspection stemmer test"
-
-RDEPEND="
-   dev-libs/glib:2
-   sys-apps/util-linux
-   stemmer? ( dev-libs/snowball-stemmer )
-"
-
-DEPEND="
-   ${RDEPEND}
-   doc? ( dev-util/gtk-doc )
-   introspection? ( dev-libs/gobject-introspection )
-"
-
-BDEPEND="
-   >=dev-util/meson-0.47.0
-   virtual/pkgconfig
-   introspection? (
-   $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
-   ${PYTHON_DEPS}
-   )
-"
-
-python_check_deps() {
-   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use introspection 

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

2019-10-18 Thread Lars Wendler
commit: c613f8c7a4b3c7d01065f4ebbda546ca160199e3
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 07:55:48 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 07:56:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c613f8c7

dev-libs/xmlsec: Bump to version 1.2.29

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

 dev-libs/xmlsec/Manifest |  1 +
 dev-libs/xmlsec/xmlsec-1.2.29.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-libs/xmlsec/Manifest b/dev-libs/xmlsec/Manifest
index 80e759b5df2..ae0c9a29b07 100644
--- a/dev-libs/xmlsec/Manifest
+++ b/dev-libs/xmlsec/Manifest
@@ -1 +1,2 @@
 DIST xmlsec1-1.2.28.tar.gz 1995599 BLAKE2B 
5d90646d9a72024856da2638adb6d0d00d5142f8d3eaa5b12a993e2e6ae78ad49aab69822ebe331191bf1fc5b98431b85e113545aec84e2bb7d5c5add9028df0
 SHA512 
17fa59e4ffee5e024caa4895e8ed21d1435f14e3a37d0ed781b1dd216333ae3b6099c460efd45d4a8097d0202522150b7b0ad543b47c1596d8473b6922270480
+DIST xmlsec1-1.2.29.tar.gz 1989360 BLAKE2B 
a0057ddf2d641745933f8d788c5358b4bb17892ed175ef11a9041a34ff1f91d0ffe6cb90316308805b5bc2157b9c2e211b37731ff8cfc7723a85f349543aa7a6
 SHA512 
07c3012179da4392f0a9d41a51ed51d692ca8b491310488b955d5fef0637f104d3f82374754b0ef175fadc663a8ca8c996178198c5dd77b3a8b34393d1482e4d

diff --git a/dev-libs/xmlsec/xmlsec-1.2.29.ebuild 
b/dev-libs/xmlsec/xmlsec-1.2.29.ebuild
new file mode 100644
index 000..1785b858fc6
--- /dev/null
+++ b/dev-libs/xmlsec/xmlsec-1.2.29.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Command line tool for signing, verifying, encrypting and 
decrypting XML"
+HOMEPAGE="https://www.aleksey.com/xmlsec;
+SRC_URI="https://www.aleksey.com/xmlsec/download/${PN}1-${PV}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc gcrypt gnutls libressl nss +openssl static-libs test"
+REQUIRED_USE="|| ( gcrypt gnutls nss openssl )
+   gnutls? ( gcrypt )"
+
+RDEPEND=">=dev-libs/libxml2-2.7.4:=
+   >=dev-libs/libxslt-1.0.20:=
+   gcrypt? ( >=dev-libs/libgcrypt-1.4.0:0= )
+   gnutls? ( >=net-libs/gnutls-2.8.0:= )
+   nss? (
+   >=dev-libs/nspr-4.4.1:=
+   >=dev-libs/nss-3.9:=
+   )
+   openssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
+   test? (
+   nss? (
+   >=dev-libs/nss-3.9[utils]
+   )
+   )"
+
+S="${WORKDIR}/${PN}1-${PV}"
+
+src_configure() {
+   econf \
+   $(use_enable doc docs) \
+   $(use_enable static-libs static) \
+   $(use_with gcrypt) \
+   $(use_with gnutls) \
+   $(use_with nss nspr) \
+   $(use_with nss) \
+   $(use_with openssl) \
+   --enable-mans \
+   --enable-pkgconfig
+}
+
+src_test() {
+   emake TMPFOLDER="${T}" check
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



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

2019-10-18 Thread Sergei Trofimovich
commit: b266885dd66285c1487a53ddb5b739aaae554eae
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Oct 18 06:50:03 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Oct 18 07:51:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b266885d

dev-lang/elixir: remove unused patch

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13331
Signed-off-by: Sergei Trofimovich  gentoo.org>

 .../files/elixir-1.9.0-disable-network-tests.patch | 18 --
 1 file changed, 18 deletions(-)

diff --git a/dev-lang/elixir/files/elixir-1.9.0-disable-network-tests.patch 
b/dev-lang/elixir/files/elixir-1.9.0-disable-network-tests.patch
deleted file mode 100644
index 9806b5608db..000
--- a/dev-lang/elixir/files/elixir-1.9.0-disable-network-tests.patch
+++ /dev/null
@@ -1,18 +0,0 @@
 a/lib/mix/test/mix/tasks/release_test.exs
-+++ b/lib/mix/test/mix/tasks/release_test.exs
-@@ -265,6 +265,7 @@ defmodule Mix.Tasks.ReleaseTest do
- end)
-   end
- 
-+  @tag :skip
-   test "executes rpc instructions" do
- in_fixture("release_test", fn ->
-   config = [releases: [permanent1: [include_erts: false]]]
-@@ -329,6 +330,7 @@ defmodule Mix.Tasks.ReleaseTest do
- end)
-   end
- 
-+  @tag :skip
-   @tag :unix
-   test "runs in daemon mode" do
- in_fixture("release_test", fn ->



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

2019-10-18 Thread Lars Wendler
commit: 95a2a646e0a326cc63b20e82f34311ea59860717
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 07:38:52 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 07:38:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a2a646

net-libs/gnutls: Bump to version 3.6.10

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

 net-libs/gnutls/Manifest |   1 +
 net-libs/gnutls/gnutls-3.6.10.ebuild | 127 +++
 2 files changed, 128 insertions(+)

diff --git a/net-libs/gnutls/Manifest b/net-libs/gnutls/Manifest
index 78846496cf0..ff926bdfc1c 100644
--- a/net-libs/gnutls/Manifest
+++ b/net-libs/gnutls/Manifest
@@ -1,2 +1,3 @@
+DIST gnutls-3.6.10.tar.xz 5795984 BLAKE2B 
faa4069613bacffbbc3fe00a7b8963f0aa7eacc7946ea51912e2b6366964cf7001d40aa5de3f0543405c54a3200da0c0029150ec7cce84d598bce44b461f2fab
 SHA512 
fe0481f9e4219e983b01b91e69ffd95819a4c0d0c09028509106d561967e9c5d900bc5e3a48140a34fa4467feda2a619085adf3fa8fdade96c8debf125e91ae8
 DIST gnutls-3.6.7.tar.xz 8153728 BLAKE2B 
993a45edff335e75f36de27373d5db01094c81ebc5eb13d9e04a01f7f32ce6189f71f05a18c90c2e57aec688750e917ee948261726acdd7752d9d7d42a9c7ac2
 SHA512 
ae9b8996eb9b7269d28213f0aca3a4a17890ba8d47e3dc3b8e754ab8e2b4251e9412161a8bf56167f04cc169b4cada46f55a7bde92b955eb36cd717a99f3
 DIST gnutls-3.6.9.tar.xz 5773928 BLAKE2B 
9dd7678fd7ea9f170816358a6ac385193fe4db8052e7a35d553e18e8618ea88aeed2b618b288f98f2f480cafd560d46de04234808560a8ec18028574bf26b706
 SHA512 
a9fd0f4edae4c081d5c539ba2e5574a4d7294bc00c5c73ea25ce26cb7fd126299c2842a282d45ef5cf0544108f27066e587df28776bc7915143d190d7d5b9d07

diff --git a/net-libs/gnutls/gnutls-3.6.10.ebuild 
b/net-libs/gnutls/gnutls-3.6.10.ebuild
new file mode 100644
index 000..04d15d72385
--- /dev/null
+++ b/net-libs/gnutls/gnutls-3.6.10.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit libtool multilib-minimal
+
+DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project"
+HOMEPAGE="http://www.gnutls.org/;
+SRC_URI="mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz"
+
+LICENSE="GPL-3 LGPL-2.1+"
+SLOT="0/30" # libgnutls.so number
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+cxx dane doc examples guile +idn nls +openssl pkcs11 seccomp sslv2 
sslv3 static-libs test test-full +tls-heartbeat tools valgrind"
+
+REQUIRED_USE="
+   test-full? ( cxx dane doc examples guile idn nls openssl pkcs11 seccomp 
tls-heartbeat tools )"
+
+# NOTICE: sys-devel/autogen is required at runtime as we
+# use system libopts
+RDEPEND=">=dev-libs/libtasn1-4.9:=[${MULTILIB_USEDEP}]
+   dev-libs/libunistring:=[${MULTILIB_USEDEP}]
+   >=dev-libs/nettle-3.4.1:=[gmp,${MULTILIB_USEDEP}]
+   >=dev-libs/gmp-5.1.3-r1:=[${MULTILIB_USEDEP}]
+   tools? ( sys-devel/autogen:= )
+   dane? ( >=net-dns/unbound-1.4.20:=[${MULTILIB_USEDEP}] )
+   guile? ( >=dev-scheme/guile-2:=[networking] )
+   nls? ( >=virtual/libintl-0-r1:=[${MULTILIB_USEDEP}] )
+   pkcs11? ( >=app-crypt/p11-kit-0.23.1:=[${MULTILIB_USEDEP}] )
+   idn? ( >=net-dns/libidn2-0.16-r1:=[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   test? (
+   seccomp? ( sys-libs/libseccomp )
+   )"
+BDEPEND=">=virtual/pkgconfig-0-r1
+   doc? ( dev-util/gtk-doc )
+   nls? ( sys-devel/gettext )
+   tools? ( sys-devel/autogen )
+   valgrind? ( dev-util/valgrind )
+   test-full? (
+   app-crypt/dieharder
+   >=app-misc/datefudge-1.22
+   dev-libs/softhsm:2[-bindist]
+   net-dialup/ppp
+   net-misc/socat
+   )"
+
+DOCS=(
+   README.md
+   doc/certtool.cfg
+)
+
+HTML_DOCS=()
+
+pkg_setup() {
+   # bug#520818
+   export TZ=UTC
+
+   use doc && HTML_DOCS+=(
+   doc/gnutls.html
+   )
+}
+
+src_prepare() {
+   default
+
+   # force regeneration of autogen-ed files
+   local file
+   for file in $(grep -l AutoGen-ed src/*.c) ; do
+   rm src/$(basename ${file} .c).{c,h} || die
+   done
+
+   # Use sane .so versioning on FreeBSD.
+   elibtoolize
+}
+
+multilib_src_configure() {
+   LINGUAS="${LINGUAS//en/en@boldquot en@quot}"
+
+   # TPM needs to be tested before being enabled
+   libconf+=( --without-tpm )
+
+   # hardware-accell is disabled on OSX because the asm files force
+   #   GNU-stack (as doesn't support that) and when that's removed ld
+   #   complains about duplicate symbols
+   [[ ${CHOST} == *-darwin* ]] && libconf+=( 
--disable-hardware-acceleration )
+
+   # Cygwin as does not understand these asm files at all
+   [[ 

[gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_p11/

2019-10-18 Thread Lars Wendler
commit: 2142d00f4ea6233abdb08ca02c4b861ef63d1559
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Oct 18 07:39:22 2019 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Oct 18 07:39:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2142d00f

sys-auth/pam_p11: Bump to version 0.3.1

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

 sys-auth/pam_p11/Manifest |  1 +
 sys-auth/pam_p11/pam_p11-0.3.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-auth/pam_p11/Manifest b/sys-auth/pam_p11/Manifest
index 7b93d357274..a7f1a2947fe 100644
--- a/sys-auth/pam_p11/Manifest
+++ b/sys-auth/pam_p11/Manifest
@@ -1 +1,2 @@
 DIST pam_p11-0.3.0.tar.gz 422806 BLAKE2B 
60ac1cc0b8fff536553b2502f906f7730c1be760b2948389f5a6399979f994b3fcfa04226f1605c64d02bad47f46c9bd28fa076d819814b9121241b034407d4b
 SHA512 
f89cf57f6365c25e54830d18180aad7d14b7eaef82eb0d419bcc3d8b881e1e07993a2c4e635e90b4f2fb779fec24fa0d912388f898d726e387bc0db63d772d49
+DIST pam_p11-0.3.1.tar.gz 422940 BLAKE2B 
b4c6d60a7ee31d808b9e928339f6e8aba3b56655b9f408ff7cd15ff4a397c89c00d00b0bbe70fc0b7bd6c6a246acd9c313c8f5b21a88e1474355c3407ff694f0
 SHA512 
caaa6882d4c007dfaba5974dc420bc45aa225f705679d170fdc9576aa49cbd24bba6985f14eb2bca97d4fe37aaf6088641add912dfbb93740b7d634f448addcf

diff --git a/sys-auth/pam_p11/pam_p11-0.3.1.ebuild 
b/sys-auth/pam_p11/pam_p11-0.3.1.ebuild
new file mode 100644
index 000..de59cb7f5aa
--- /dev/null
+++ b/sys-auth/pam_p11/pam_p11-0.3.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools pam
+
+DESCRIPTION="PAM module for authenticating against PKCS#11 tokens"
+HOMEPAGE="https://github.com/opensc/pam_p11/wiki;
+SRC_URI="https://github.com/OpenSC/${PN}/releases/download/${P}/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="sys-libs/pam
+   dev-libs/libp11:=
+   dev-libs/openssl:0="
+
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+   econf --with-pamdir="$(getpam_mod_dir)"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



  1   2   >