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

2018-12-27 Thread Jeroen Roovers
commit: e1e2484aea288225586c5a0552a40fd35472fcca
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Dec 27 21:00:49 2018 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Dec 27 21:26:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e2484a

net-libs/http-parser: Version 2.8.1_p20181224

Upstream nodejs is now basing their expectations of non-bundled
http-parser on changes that have not been officially released yet.

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Fixes: https://bugs.gentoo.org/673830
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-libs/http-parser/Manifest  |  1 +
 .../http-parser/http-parser-2.8.1_p20181224.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/net-libs/http-parser/Manifest b/net-libs/http-parser/Manifest
index 8557aad9d1f..70587f99d5f 100644
--- a/net-libs/http-parser/Manifest
+++ b/net-libs/http-parser/Manifest
@@ -1 +1,2 @@
 DIST http-parser-2.8.1.tar.gz 50731 BLAKE2B 
1c4f3f61550f7f8e86d7b47e3986754a108dc979c6232d87ac418f9f8295b88ee43c4a5af150460f707e6ade01f5d435801f980ccbff93369ee0a9dc2eb60656
 SHA512 
6f52f543d979f39688ccefae236527a8183929b3d30f5370570107b01cf89d0338b448249a81102b78d31615d2e8f6e7c708f8961f55ece08e7d3a40e5ad0883
+DIST http-parser-2.8.1_p20181224.tar.gz 51363 BLAKE2B 
ada4bc8e4143c45fc03ae18a16426cbd7ee2c945ea01806e2e6527ee8080ae1f23c72f101e4d20d12fc5995794ab0c0beca358e42daa1c429c5db74253b0f1c3
 SHA512 
7b721bf5283510d106544a120c51779d7fc85ae9149ab0bffc07bed17b398db506ce75e994e5b11856ef1a9576979948c04400e7e9a33942a3017dcf9b21a174

diff --git a/net-libs/http-parser/http-parser-2.8.1_p20181224.ebuild 
b/net-libs/http-parser/http-parser-2.8.1_p20181224.ebuild
new file mode 100644
index 000..43deb42fdd8
--- /dev/null
+++ b/net-libs/http-parser/http-parser-2.8.1_p20181224.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit toolchain-funcs multilib-minimal
+
+HP_COMMIT="350258965909f249f9c59823aac240313e0d0120"
+DESCRIPTION="HTTP request/response parser for C"
+HOMEPAGE="https://github.com/nodejs/http-parser";
+SRC_URI="https://github.com/nodejs/http-parser/archive/${HP_COMMIT}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/2.8.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x64-macos ~x64-solaris"
+IUSE="static-libs"
+
+S=${WORKDIR}/${PN}-${HP_COMMIT}
+
+src_prepare() {
+   default
+   tc-export CC AR
+   multilib_copy_sources
+}
+
+multilib_src_compile() {
+   emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" 
CFLAGS_FAST="${CFLAGS}" library
+   use static-libs && emake CFLAGS_FAST="${CFLAGS}" package
+}
+
+multilib_src_test() {
+   emake CFLAGS_DEBUG="${CFLAGS}" CFLAGS_FAST="${CFLAGS}" test
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" 
LIBDIR="${EPREFIX}/usr/$(get_libdir)" install
+   use static-libs && dolib.a libhttp_parser.a
+}



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

2018-12-27 Thread Craig Andrews
commit: a6485336b09976be119a81315a717e3bced97378
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Dec 27 21:57:15 2018 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Dec 27 21:57:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6485336

dev-libs/rapidjson: Fix USE=examples with >=gcc-8

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

 dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild |  7 +++
 dev-libs/rapidjson/rapidjson-.ebuild | 13 -
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild 
b/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild
index 3566ee541f7..69293ade501 100644
--- a/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild
+++ b/dev-libs/rapidjson/rapidjson-1.1.0-r1.ebuild
@@ -33,6 +33,13 @@ PATCHES=(
"${FILESDIR}/${P}-gcc-7.patch"
 )
 
+src_prepare() {
+   default
+
+   sed -i -e 's|-Werror||g' CMakeLists.txt || die
+   sed -i -e 's|-Werror||g' example/CMakeLists.txt || die
+}
+
 src_configure() {
local mycmakeargs=(
-DRAPIDJSON_BUILD_DOC=$(usex doc)

diff --git a/dev-libs/rapidjson/rapidjson-.ebuild 
b/dev-libs/rapidjson/rapidjson-.ebuild
index 6d3ed3621f8..8bd5504560c 100644
--- a/dev-libs/rapidjson/rapidjson-.ebuild
+++ b/dev-libs/rapidjson/rapidjson-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -30,6 +30,17 @@ DEPEND="
)"
 RDEPEND=""
 
+PATCHES=(
+   "${FILESDIR}/${P}-gcc-7.patch"
+)
+
+src_prepare() {
+   default
+
+   sed -i -e 's|-Werror||g' CMakeLists.txt || die
+   sed -i -e 's|-Werror||g' example/CMakeLists.txt || die
+}
+
 src_configure() {
local mycmakeargs=(
-DRAPIDJSON_BUILD_DOC=$(usex doc)



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

2018-12-27 Thread Davide Pesavento
commit: c4e155526335be6661ef734aecb6ba6864d3414b
Author: Davide Pesavento  gentoo  org>
AuthorDate: Thu Dec 27 22:21:10 2018 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Thu Dec 27 22:21:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4e15552

profiles: mask dev-python/PyQt5[networkauth] on arm/arm64/ppc/ppc64

Signed-off-by: Davide Pesavento  gentoo.org>

 profiles/arch/arm/package.use.mask | 5 +
 profiles/arch/arm64/package.use.mask   | 5 +
 profiles/arch/powerpc/package.use.mask | 2 +-
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index f30414a471d..04e76200a65 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -1,6 +1,11 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Davide Pesavento  (27 Dec 2018)
+# The corresponding Qt5 modules are not keyworded on arm, and we don't want to
+# keyword them solely because of PyQt5 while there are no other in-tree users.
+dev-python/PyQt5 networkauth
+
 # Anthony G. Basile  (24 Dec 2018)
 # asm broken on arm, bug #673580
 =dev-libs/libressl-2.9.0 asm

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 55d0fb0dd99..d1eb738520f 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,11 @@
 # Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Davide Pesavento  (27 Dec 2018)
+# The corresponding Qt5 modules are not keyworded on arm64, and we don't want 
to
+# keyword them solely because of PyQt5 while there are no other in-tree users.
+dev-python/PyQt5 networkauth
+
 # Thomas Deutschmann  (12 Oct 2018)
 # Requires www-client/firefox which isn't yet keyworded on ARM64
 dev-ruby/capybara test

diff --git a/profiles/arch/powerpc/package.use.mask 
b/profiles/arch/powerpc/package.use.mask
index 88ccb08..1fc37980929 100644
--- a/profiles/arch/powerpc/package.use.mask
+++ b/profiles/arch/powerpc/package.use.mask
@@ -125,7 +125,7 @@ dev-db/percona-server -numa
 # Davide Pesavento  (28 Jul 2016)
 # The corresponding Qt5 modules are not keyworded on ppc, and we don't want to
 # keyword them solely because of PyQt5 while there are no other in-tree users.
-dev-python/PyQt5 bluetooth location webengine
+dev-python/PyQt5 bluetooth location networkauth webengine
 
 # Michael Palimaka  (07 Jul 2016)
 # Requires unkeyworded dependencies



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

2018-12-27 Thread Zac Medico
commit: 181e185466a471cbcf743835880ceb5389cf6a6d
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec 27 22:33:44 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Dec 27 22:44:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181e1854

sys-apps/portage: version bump to 2.3.53

 #585986 prepend EPREFIX PATH, omit host PATH by default
 #668538 add PORTAGE_LOGDIR alias for PORT_LOGDIR
 #669496 drop privileges for git merge
 #671472 compat_coroutine save throw return
 #671824 EBUILD_PHASES: add instprep
 #672440 portage.process.spawn default env to os.environ
 #673224 ExtractKernelVersion ParseError

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

 sys-apps/portage/Manifest  |   1 +
 sys-apps/portage/portage-2.3.53.ebuild | 264 +
 2 files changed, 265 insertions(+)

diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest
index b17057cee05..2c54cb2a4bb 100644
--- a/sys-apps/portage/Manifest
+++ b/sys-apps/portage/Manifest
@@ -4,5 +4,6 @@ DIST portage-2.3.40.tar.bz2 995122 BLAKE2B 
3bfadee6cf57dace32bb4a365850650e13664
 DIST portage-2.3.49.tar.bz2 1010414 BLAKE2B 
be8e0194855eda8e8a617ee4415d702199e10772bab9539ff27cb165b6749090be887b6f48d449f4e7650e618d43be1b0d26ba59597996a9d3d3ecd0caea166a
 SHA512 
d3daee0075eee61c354ad1d4865b1cf433d9afe5ed56101758219694325c7c5ad62a0d9ce41bf2205934b6e073d0eba3ef3f7c8b6633b5a3448e469783c5329a
 DIST portage-2.3.51.tar.bz2 1013015 BLAKE2B 
f7f5e6c9e627db5a9e4bfcc9a6cbebb40fda910d3cc928922870b295c706a9f669d3d812e726b220610efe6b182460811eb9420d6fa5b8756481df64a88fe2b9
 SHA512 
6c22b97959d4b5be263b9a1de6bb343b1f8300e989f37c7334a9d5d6fb65fe2390958e222bc5379ec95099124fc51a049ecca6e1bfc18f0a6c57e4601342bb94
 DIST portage-2.3.52.tar.bz2 1014660 BLAKE2B 
22fab75c4c9a12752bbdea960c9d4f583c3add4896ed94eea5e5e9ea03fd9838545f9c0075f279d81ac9ae0cfeca09fe44d18eac89f29c95d2be99a822da8446
 SHA512 
cd9fc6dc6f4d52886c41dd48694f290f30462111709a61a9814d5ae02519a0dd31d8fc5305c767e2a3b78d7b7d0cc8ab4c1d4273e95baec7b6d405bd9fb3f548
+DIST portage-2.3.53.tar.bz2 1015067 BLAKE2B 
28083d6a17a1dec4a978f54b71931b870b28036a2e3a2b2d87d542b9129677d956ff7da34b0d9e4e8e82414606aef60a288768363d09fda998d567cddc0634a4
 SHA512 
b0cfa5c5fe4b5cb78144137b88cd4d1d84cdbb6c976e39ed4b7cdca106806831b3526797e295666de0be5db368c553c68e49f9ec0d6cc3796e5cf7761eb6bf43
 DIST portage-2.3.8.tar.bz2 938062 BLAKE2B 
3f7bedf6268131a3b3539d53c8a7bb069b533b3a78e5eec521b6201439c8ee5e66996e798fe295561d0a94bfcd32adf414d4f8b5e7a93035cea09749406e64a3
 SHA512 
4b4b2de20323799b9b0f7a8812f939aa9a96d2744a0f65ad5287ba49744c491b55169cdb21f2885317a6a7c960d2070775ffd798f247b44eebc677c33c271eb8
 DIST portage-74d2509c99fbcb43e018ead4950b938e41e524e5-bug-671472.patch 1584 
BLAKE2B 
452cd4cb25e42dcfa05c4f9da2bd3cc279556b9cd87037d0d965d39678f347b701dac0eaa59bfdebee9e3715abb506bf3744900ebefafa8fa729a1eb442889b9
 SHA512 
5bbe163e8eec00ece831c113676e87f0cf61a40f30a75a0de548490eeb789479336feec5bf81868a284bf32bafa00209176156cfb9ce557390d0f4a2ab6d1c1a

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

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

2018-12-27 Thread Zac Medico
commit: 67b36e44818900ee8f289c342e49330fcb712e1d
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Dec 27 22:04:41 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Dec 27 22:05:09 2018 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=67b36e44

Updates for portage-2.3.53 release

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

 NEWS  |  3 ++-
 RELEASE-NOTES | 12 
 setup.py  |  2 +-
 3 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index e65205c42..ef11d6a34 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,11 @@
 News (mainly features/major bug fixes)
 
-portage-next
+portage-2.3.53
 --
 * Renamed PORT_LOGDIR and PORT_LOGDIR_CLEAN variables to
   PORTAGE_LOGDIR and PORTAGE_LOGDIR_CLEAN to match other existing
   similar variables
+* Enable FEATURES={ipc,network,pid}-sandbox by default
 
 portage-2.3.42
 

diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index 87309e3c3..a8634fe15 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -1,6 +1,18 @@
 Release Notes; upgrade information mainly.
 Features/major bugfixes are listed in NEWS
 
+portage-2.3.53
+==
+* Bug Fixes:
+- Bug 585986 prepend EPREFIX PATH, omit host PATH by default
+- Bug 668538 add PORTAGE_LOGDIR alias for PORT_LOGDIR
+- Bug 669496 drop privileges for git merge
+- Bug 671472 compat_corouting save throw return
+- Bug 671824 EBUILD_PHASES: add instprep
+- Bug 672440 portage.process.spawn default env to os.environ
+- Bug 673224 ExtractKernelVersion ParseError
+
+
 portage-2.3.52
 ==
 * Bug Fixes:

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



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

2018-12-27 Thread Zac Medico
commit: 
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Dec 27 22:50:10 2018 +

New tag: portage-2.3.53




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

2018-12-27 Thread William Hubbs
commit: 35ae67ce35bf6fc1f45badcff1a44166c84d4c61
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Dec 27 23:02:08 2018 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Dec 27 23:03:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ae67ce

www-client/pybugz: remove old

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

 www-client/pybugz/Manifest |  1 -
 www-client/pybugz/pybugz-0.12.1.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/www-client/pybugz/Manifest b/www-client/pybugz/Manifest
index d78f7a60001..ba05047de28 100644
--- a/www-client/pybugz/Manifest
+++ b/www-client/pybugz/Manifest
@@ -1,2 +1 @@
-DIST pybugz-0.12.1.tar.gz 25606 BLAKE2B 
907a87346dbe0a949c3cf2c1b8e601dfbc0a1122c0647e8fc9de25b097fb5f31f39dd99016ee2febde11ac58f5cfb527127331e53f71fef3ad64de213664afe0
 SHA512 
bb76baf8105f4b56b106c3e63f5aebb322659141edf9c5e5af747db5824abffb7b127703ecb7111f9480d05bdb2f11b3fef2cd5f99078d9dda00e841b4ce7394
 DIST pybugz-0.13.tar.gz 26876 BLAKE2B 
fbab5ff308e137bf590620362fe102408444c7c1cb375f2c2d426cf5873fba5cf8759d7083be4c6bd305191680af8d1afc3aaf0648e186a93af4dd0b60442093
 SHA512 
2cbbd32b44d0d513e91e5c35dca5c68e34a963190c31f9139922f6b8ba69c7362063155b35833a00c2bd064f94d99367e2941a573aed4488f9a71a3b163d4b54

diff --git a/www-client/pybugz/pybugz-0.12.1.ebuild 
b/www-client/pybugz/pybugz-0.12.1.ebuild
deleted file mode 100644
index 8c60c0ae338..000
--- a/www-client/pybugz/pybugz-0.12.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python3_4 python3_5 )
-PYTHON_REQ_USE="readline(+)"
-
-if [ "${PV}" = "" ]; then
-   EGIT_REPO_URI="https://github.com/williamh/pybugz.git";
-   inherit git-r3
-else
-   SRC_URI="https://github.com/williamh/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris"
-   inherit vcs-snapshot
-fi
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="Command line interface to (Gentoo) Bugzilla"
-HOMEPAGE="https://github.com/williamh/pybugz";
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="zsh-completion"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
-python_install_all() {
-   distutils-r1_python_install_all
-   newbashcomp contrib/bash-completion bugz
-
-   if use zsh-completion ; then
-   insinto /usr/share/zsh/site-functions
-   newins contrib/zsh-completion _pybugz
-   fi
-}



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

2018-12-27 Thread Bernard Cafarelli
commit: 2057d041999cfef3c3380429e965f5af8ee614d8
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Dec 28 00:39:40 2018 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Dec 28 00:39:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2057d041

media-gfx/displaycal: 3.7.1.3 bump

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

 media-gfx/displaycal/Manifest  |  1 +
 media-gfx/displaycal/displaycal-3.7.1.3.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/media-gfx/displaycal/Manifest b/media-gfx/displaycal/Manifest
index 6caad1828f6..51ac405422e 100644
--- a/media-gfx/displaycal/Manifest
+++ b/media-gfx/displaycal/Manifest
@@ -1,3 +1,4 @@
 DIST DisplayCAL-3.6.2.0.tar.gz 10437261 BLAKE2B 
c476c7834e2c723c48fb9ad9d2ea7f4919c2636814078d8f1a83a6af0e91586e0762ea3787c90f8625cba672ac72ef5e1d2dd6906fd3fd7f3b67637a180b81e3
 SHA512 
e66a20edf46d460caf5d2f7ddbc93cfe7c37937cd4933d2a2b7d141676696c6f22aadc07d229fbaefe0ced62066fc99d3290352c3e8fc9db4b95a8d0541f0be7
 DIST DisplayCAL-3.7.1.1.tar.gz 10472440 BLAKE2B 
2e53537a7570c37120a462102269b5c042299df3de0926b0221bef8b5c29d75e7983b359d9ad162e2d9df2819c624d5f0c00c65fa181cce3fa831f1791d7a1fd
 SHA512 
d5d18b25dd4ce6a2b328db6adb55c43ffcb3e3a495be38004d9e6a6e5c8d576b9477dc895668f82210ce955e7854a578218cb8c9ca2c206f58c47a011ad99c09
 DIST DisplayCAL-3.7.1.2.tar.gz 10472879 BLAKE2B 
a0722af9c8a6df8af57c0a66e792886b6aecb78bec79d0bed22567bd6ce540793ed6dd51437cbf1974b9070b9adb3708f841cf8cfae0e482056d90783be6ddbd
 SHA512 
d708110e0528ffada5fd4a0ca7da9cf02a54964bc7d5af2b98738aa3e34079c0a4890f2cf6086750045915e06d6c943fc954e0f03653d25c080522a4b24795bd
+DIST DisplayCAL-3.7.1.3.tar.gz 10474328 BLAKE2B 
9c305809a9f46f3ad76eec728026b2abbd1dec3bee46db92bfe9fe4e7c31f24d61eafaca0bda12f510002d3c5d51bfba4c6d4b1bae5e1ce105a8b75d84672ef8
 SHA512 
9718f589ee1842f6247ea110c4c6defaf767313fb2fd9ce9fb1b35775141774ce9084c2cbf00d9c432162e8b32c8d789e5a52ca385976c4772bf644738257926

diff --git a/media-gfx/displaycal/displaycal-3.7.1.3.ebuild 
b/media-gfx/displaycal/displaycal-3.7.1.3.ebuild
new file mode 100644
index 000..02f4e0b4a7e
--- /dev/null
+++ b/media-gfx/displaycal/displaycal-3.7.1.3.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 gnome2-utils xdg
+
+MY_PN="DisplayCAL"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Display calibration and characterization powered by Argyll CMS"
+HOMEPAGE="https://displaycal.net/";
+SRC_URI="mirror://sourceforge/dispcalgui/${MY_P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+   >=media-gfx/argyllcms-1.1.0
+   dev-python/wxpython:3.0
+   >=x11-libs/libX11-1.3.3
+   >=x11-apps/xrandr-1.3.2
+   >=x11-libs/libXxf86vm-1.1.0
+   >=x11-libs/libXinerama-1.1
+"
+RDEPEND="${DEPEND}
+   >=dev-python/numpy-1.2.1
+"
+
+# Just in case someone renames the ebuild
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   # Do not generate udev/hotplug files
+   sed -e '/if 
os.path.isdir/s#/etc/udev/rules.d\|/etc/hotplug#\0-non-existant#' \
+   -i DisplayCAL/setup.py || die
+   # Prohibit setup from running xdg-* programs, resulting to sandbox 
violation
+   sed -e '/if which/s#xdg-icon-resource#\0-non-existant#' \
+   -e '/if which/s#xdg-desktop-menu#\0-non-existant#' \
+   -i DisplayCAL/postinstall.py || die
+
+   # Remove deprecated Encoding key from .desktop file
+   sed -e '/Encoding=UTF-8/d' -i misc/*.desktop  || die
+
+   # Remove x-world Media Type
+   sed -e 's/x\-world\/x\-vrml\;//g' \
+   -i misc/displaycal-vrml-to-x3d-converter.desktop || die
+
+   distutils-r1_src_prepare
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: www-client/chromium/, www-client/chromium/files/

2018-12-27 Thread Jason A. Donenfeld
commit: 666ce8363b1335c0b8472d7e650e12240c52f4ea
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Thu Dec 27 21:18:03 2018 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Fri Dec 28 02:39:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=666ce836

www-client/chromium: fix widevine and cleanup unused patch

Fixes: 670928
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 .../chromium/chromium-72.0.3626.28-r1.ebuild   | 715 +
 .../chromium/files/chromium-widevine-r2.patch  |  39 --
 .../chromium/files/chromium-widevine-r4.patch  |  24 +
 3 files changed, 739 insertions(+), 39 deletions(-)

diff --git a/www-client/chromium/chromium-72.0.3626.28-r1.ebuild 
b/www-client/chromium/chromium-72.0.3626.28-r1.ebuild
new file mode 100644
index 000..814e42f8bfc
--- /dev/null
+++ b/www-client/chromium/chromium-72.0.3626.28-r1.ebuild
@@ -0,0 +1,715 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu 
he
+   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
+   sv sw ta te th tr uk vi zh-CN zh-TW"
+
+inherit check-reqs chromium-2 desktop flag-o-matic multilib ninja-utils 
pax-utils portability python-any-r1 readme.gentoo-r1 toolchain-funcs xdg-utils
+
+DESCRIPTION="Open-source version of Google Chrome web browser"
+HOMEPAGE="http://chromium.org/";
+SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz
+   https://dev.gentoo.org/~floppym/dist/chromium-webrtc-includes.patch.xz";
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="component-build cups gnome-keyring +hangouts jumbo-build kerberos neon 
pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu 
+system-libvpx +tcmalloc widevine"
+RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
+
+COMMON_DEPEND="
+   >=app-accessibility/at-spi2-atk-2.26:2
+   app-arch/bzip2:=
+   cups? ( >=net-print/cups-1.3.11:= )
+   >=dev-libs/atk-2.26
+   dev-libs/expat:=
+   dev-libs/glib:2
+   system-icu? ( >=dev-libs/icu-59:= )
+   >=dev-libs/libxml2-2.9.4-r3:=[icu]
+   dev-libs/libxslt:=
+   dev-libs/nspr:=
+   >=dev-libs/nss-3.26:=
+   >=dev-libs/re2-0.2016.11.01:=
+   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
+   >=media-libs/alsa-lib-1.0.19:=
+   media-libs/fontconfig:=
+   media-libs/freetype:=
+   >=media-libs/harfbuzz-2.0.0:0=[icu(-)]
+   media-libs/libjpeg-turbo:=
+   media-libs/libpng:=
+   system-libvpx? ( media-libs/libvpx:=[postproc,svc] )
+   >=media-libs/openh264-1.6.0:=
+   pulseaudio? ( media-sound/pulseaudio:= )
+   system-ffmpeg? (
+   >=media-video/ffmpeg-4:=
+   || (
+   media-video/ffmpeg[-samba]
+   >=net-fs/samba-4.5.10-r1[-debug(-)]
+   )
+   !=net-fs/samba-4.5.12-r0
+   media-libs/opus:=
+   )
+   sys-apps/dbus:=
+   sys-apps/pciutils:=
+   virtual/udev
+   x11-libs/cairo:=
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3[X]
+   x11-libs/libX11:=
+   x11-libs/libXcomposite:=
+   x11-libs/libXcursor:=
+   x11-libs/libXdamage:=
+   x11-libs/libXext:=
+   x11-libs/libXfixes:=
+   >=x11-libs/libXi-1.6.0:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/libXScrnSaver:=
+   x11-libs/libXtst:=
+   x11-libs/pango:=
+   app-arch/snappy:=
+   media-libs/flac:=
+   >=media-libs/libwebp-0.4.0:=
+   sys-libs/zlib:=[minizip]
+   kerberos? ( virtual/krb5 )
+"
+# For nvidia-drivers blocker, see bug #413637 .
+RDEPEND="${COMMON_DEPEND}
+   !https://bugs.gentoo.org/593476
+# sys-apps/sandbox - https://crbug.com/586444
+DEPEND="${COMMON_DEPEND}
+"
+BDEPEND="
+   >=app-arch/gzip-1.7
+   !arm? (
+   dev-lang/yasm
+   )
+   dev-lang/perl
+   dev-util/gn
+   dev-vcs/git
+   >=dev-util/gperf-3.0.3
+   >=dev-util/ninja-1.7.2
+   >=net-libs/nodejs-7.6.0[inspector]
+   sys-apps/hwids[usb(+)]
+   >=sys-devel/bison-2.4.3
+   sys-devel/flex
+   virtual/jre
+   virtual/pkgconfig
+"
+
+: ${CHROMIUM_FORCE_CLANG=no}
+
+if [[ ${CHROMIUM_FORCE_CLANG} == yes ]]; then
+   BDEPEND+=" >=sys-devel/clang-5"
+fi
+
+if ! has chromium_pkg_die ${EBUILD_DEATH_HOOKS}; then
+   EBUILD_DEATH_HOOKS+=" chromium_pkg_die";
+fi
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="
+Some web pages may require additional fonts to display properly.
+Try installing some of the following packages if some characters
+are not displayed properly:
+- media-fonts/arphicfonts
+- media-fonts/droid
+- media-fonts/ipamonafont
+

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

2018-12-27 Thread Jason A. Donenfeld
commit: ade232923e44963cc8235c5cbf4cba838cc27327
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Fri Dec 28 02:44:01 2018 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Fri Dec 28 02:44:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ade23292

net-vpn/wireguard: version bump

Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 net-vpn/wireguard/Manifest  | 2 +-
 .../{wireguard-0.0.20181119.ebuild => wireguard-0.0.20181218.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/wireguard/Manifest b/net-vpn/wireguard/Manifest
index 88ed064b98b..2ef32f718d7 100644
--- a/net-vpn/wireguard/Manifest
+++ b/net-vpn/wireguard/Manifest
@@ -1 +1 @@
-DIST WireGuard-0.0.20181119.tar.xz 319816 BLAKE2B 
dda702bb8f47f18722cd7235810fbe64f8be4e68af77c21fd4a39f85d670268314578f9827209322c9086ee6a50c54c011a265e77c58c7f8bfc4ffbdbb2f7ea2
 SHA512 
dc9286e536bb3f4a6545261b98b5bb056a085f2e95b1b571350168af23cda5231a90b915b03dd29d195412fc61efc781b7d57b2a15a42a34b97e989a5105198e
+DIST WireGuard-0.0.20181218.tar.xz 318496 BLAKE2B 
4d1e66a80e986b669ed364ae5f4efdae365ee321eb175241ce2d4e9cde3d66e601fa85b25c04047ec7b69c180afe4e0a2a80bda335544f7698956430d8c2618f
 SHA512 
73c8e9b37d857349b75df776607c15ea2082814952acdba3ad6379c4ce631601db2767603e46ecadf1bce9348a0c26d07f4f6b5857ddd72bb4f4411d1d13d88c

diff --git a/net-vpn/wireguard/wireguard-0.0.20181119.ebuild 
b/net-vpn/wireguard/wireguard-0.0.20181218.ebuild
similarity index 100%
rename from net-vpn/wireguard/wireguard-0.0.20181119.ebuild
rename to net-vpn/wireguard/wireguard-0.0.20181218.ebuild



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

2018-12-27 Thread Matt Turner
commit: 62163db516962774510ee6f26e78af7948d1fac3
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:24 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62163db5

dev-libs/vala-common-0.36.15: alpha stable, bug 670024

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

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

diff --git a/dev-libs/vala-common/vala-common-0.36.15.ebuild 
b/dev-libs/vala-common/vala-common-0.36.15.ebuild
index 832e6d559ca..e3894638638 100644
--- a/dev-libs/vala-common/vala-common-0.36.15.ebuild
+++ b/dev-libs/vala-common/vala-common-0.36.15.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 IUSE=""
 
 # Previously ${PN} was part of dev-lang/vala



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

2018-12-27 Thread Matt Turner
commit: 4d75969e2c87eea9010e1bdfda07b701b3a3e72f
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:31 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d75969e

x11-libs/gtk+-3.24.1: alpha stable, bug 670024

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

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

diff --git a/x11-libs/gtk+/gtk+-3.24.1.ebuild b/x11-libs/gtk+/gtk+-3.24.1.ebuild
index 8764d73d082..1128a17bdeb 100644
--- a/x11-libs/gtk+/gtk+-3.24.1.ebuild
+++ b/x11-libs/gtk+/gtk+-3.24.1.ebuild
@@ -18,7 +18,7 @@ REQUIRED_USE="
xinerama? ( X )
 "
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Upstream wants us to do their job:
 # https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1



[gentoo-commits] repo/gentoo:master commit in: dev-libs/gobject-introspection-common/

2018-12-27 Thread Matt Turner
commit: 87ff86b5f85483f2daab8066bcb1ca8d1e81ff7c
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:21 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87ff86b5

dev-libs/gobject-introspection-common-1.56.1: alpha stable, bug 670024

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

 .../gobject-introspection-common-1.56.1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.56.1.ebuild
 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.56.1.ebuild
index d964019bab2..53e23c2f1bc 100644
--- 
a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.56.1.ebuild
+++ 
b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.56.1.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://wiki.gnome.org/Projects/GObjectIntrospection";
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="!<${CATEGORY}/${PN/-common}-${PV}"



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

2018-12-27 Thread Matt Turner
commit: ff7e6c62c01772347f23afe5f7c2608b7ce5d527
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:20 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff7e6c62

dev-libs/gobject-introspection-1.56.1: alpha stable, bug 670024

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

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

diff --git a/dev-libs/gobject-introspection/gobject-introspection-1.56.1.ebuild 
b/dev-libs/gobject-introspection/gobject-introspection-1.56.1.ebuild
index b92cc627d85..7fb178db481 100644
--- a/dev-libs/gobject-introspection/gobject-introspection-1.56.1.ebuild
+++ b/dev-libs/gobject-introspection/gobject-introspection-1.56.1.ebuild
@@ -17,7 +17,7 @@ REQUIRED_USE="
${PYTHON_REQUIRED_USE}
test? ( cairo )
 "
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # virtual/pkgconfig needed at runtime, bug #505408
 # We force glib and g-i to be in sync by this way as explained in bug #518424



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

2018-12-27 Thread Matt Turner
commit: 2baaaba1371c8087b419ca8f92c43522d08e2d74
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:16 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2baaaba1

dev-lang/vala-0.36.15: alpha stable, bug 670024

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

 dev-lang/vala/vala-0.36.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.36.15.ebuild 
b/dev-lang/vala/vala-0.36.15.ebuild
index 60d47a29b97..89efb241fb9 100644
--- a/dev-lang/vala/vala-0.36.15.ebuild
+++ b/dev-lang/vala/vala-0.36.15.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
 
 LICENSE="LGPL-2.1"
 SLOT="0.36"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2018-12-27 Thread Matt Turner
commit: 83f390ea75c40bff56386754a974bce7862711ea
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:29 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83f390ea

media-sound/pulseaudio-12.2: alpha stable, bug 670024

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

 media-sound/pulseaudio/pulseaudio-12.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pulseaudio/pulseaudio-12.2.ebuild 
b/media-sound/pulseaudio/pulseaudio-12.2.ebuild
index f9dbd9e4b1f..9c17d6d71b0 100644
--- a/media-sound/pulseaudio/pulseaudio-12.2.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-12.2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://freedesktop.org/software/pulseaudio/releases/${P}.tar.xz";
 LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux"
 
 # +alsa-plugin as discussed in bug #519530
 IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer gconf 
+gdbm



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

2018-12-27 Thread Matt Turner
commit: e2e218b58cb06c97cae7103e24cf8e8d7f4b1011
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:18 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e218b5

dev-libs/atk-2.28.1: alpha stable, bug 670024

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

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

diff --git a/dev-libs/atk/atk-2.28.1.ebuild b/dev-libs/atk/atk-2.28.1.ebuild
index ccd48374e18..53f118970c3 100644
--- a/dev-libs/atk/atk-2.28.1.ebuild
+++ b/dev-libs/atk/atk-2.28.1.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Accessibility";
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="+introspection nls test"
 
 RDEPEND="



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

2018-12-27 Thread Matt Turner
commit: 04d4a202da1109d68e4b81ca51e5e4c81f88b2e3
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:30 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d4a202

x11-libs/gtk+-2.24.32-r1: alpha stable, bug 670024

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

 x11-libs/gtk+/gtk+-2.24.32-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild 
b/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild
index bf8acfda009..144f27e23d5 100644
--- a/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild
+++ b/x11-libs/gtk+/gtk+-2.24.32-r1.ebuild
@@ -18,7 +18,7 @@ REQUIRED_USE="
xinerama? ( !aqua )
 "
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Upstream wants us to do their job:
 # https://bugzilla.gnome.org/show_bug.cgi?id=768663#c1



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-core/

2018-12-27 Thread Matt Turner
commit: f2df7520b8d6af1fcea1bbcf82b2cd23ea61f4c5
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:33 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2df7520

app-accessibility/at-spi2-core-2.26.2: alpha stable, bug 672696

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

 app-accessibility/at-spi2-core/at-spi2-core-2.26.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.26.2.ebuild 
b/app-accessibility/at-spi2-core/at-spi2-core-2.26.2.ebuild
index aecd9033f79..3417fa211f7 100644
--- a/app-accessibility/at-spi2-core/at-spi2-core-2.26.2.ebuild
+++ b/app-accessibility/at-spi2-core/at-spi2-core-2.26.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Accessibility";
 LICENSE="LGPL-2+"
 SLOT="2"
 IUSE="X +introspection"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 
 # x11-libs/libSM is needed until upstream #719808 is solved either
 # making the dep unneeded or fixing their configure



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-atk/

2018-12-27 Thread Matt Turner
commit: 65e908b843fe8516ac8c332d295d17d654268444
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:32 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e908b8

app-accessibility/at-spi2-atk-2.26.2: alpha stable, bug 672696

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

 app-accessibility/at-spi2-atk/at-spi2-atk-2.26.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-accessibility/at-spi2-atk/at-spi2-atk-2.26.2.ebuild 
b/app-accessibility/at-spi2-atk/at-spi2-atk-2.26.2.ebuild
index 01b046169ab..1e07673989f 100644
--- a/app-accessibility/at-spi2-atk/at-spi2-atk-2.26.2.ebuild
+++ b/app-accessibility/at-spi2-atk/at-spi2-atk-2.26.2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Accessibility";
 
 LICENSE="LGPL-2+"
 SLOT="2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="test"
 
 RDEPEND="



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

2018-12-27 Thread Matt Turner
commit: 5d8506e2f3c7cdb5753fe337f0bae21aad1451b6
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:23 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d8506e2

dev-libs/libinput-1.11.3: alpha stable, bug 670024

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

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

diff --git a/dev-libs/libinput/libinput-1.11.3.ebuild 
b/dev-libs/libinput/libinput-1.11.3.ebuild
index 888c136cad4..2c9b8e6a61e 100644
--- a/dev-libs/libinput/libinput-1.11.3.ebuild
+++ b/dev-libs/libinput/libinput-1.11.3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz";
 
 LICENSE="MIT"
 SLOT="0/10"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86"
 IUSE="doc input_devices_wacom"
 # Tests require write access to udev rules directory which is a no-no for live 
system.
 # Other tests are just about logs, exported symbols and autotest of the test 
library.



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

2018-12-27 Thread Matt Turner
commit: 3c18f444db02decfc7f8b89c47eceaff49653625
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:32 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c18f444

x11-libs/libwnck-3.30.0: alpha stable, bug 670024

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

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

diff --git a/x11-libs/libwnck/libwnck-3.30.0.ebuild 
b/x11-libs/libwnck/libwnck-3.30.0.ebuild
index c47fe9fe0a6..36b74e5febe 100644
--- a/x11-libs/libwnck/libwnck-3.30.0.ebuild
+++ b/x11-libs/libwnck/libwnck-3.30.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://developer.gnome.org/libwnck/stable/";
 
 LICENSE="LGPL-2+"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
 
 IUSE="+introspection startup-notification tools"
 



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

2018-12-27 Thread Matt Turner
commit: a829b0e539f58843794b2aa17907a2b4b173a1a9
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:14 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a829b0e5

gnome-base/gnome-keyring-3.28.2: alpha stable, bug 658646

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

 gnome-base/gnome-keyring/gnome-keyring-3.28.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/gnome-keyring/gnome-keyring-3.28.2.ebuild 
b/gnome-base/gnome-keyring/gnome-keyring-3.28.2.ebuild
index dc1e963d4c0..54a10df7d59 100644
--- a/gnome-base/gnome-keyring/gnome-keyring-3.28.2.ebuild
+++ b/gnome-base/gnome-keyring/gnome-keyring-3.28.2.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeKeyring";
 LICENSE="GPL-2+ LGPL-2+"
 SLOT="0"
 IUSE="+caps pam selinux +ssh-agent test"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 
 # Replace gkd gpg-agent with pinentry[gnome-keyring] one, bug #547456
 RDEPEND="



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

2018-12-27 Thread Matt Turner
commit: bcb522d8c94fae1facc300d5e6723fde6150efa1
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:17 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcb522d8

dev-libs/appstream-glib-0.7.9: alpha stable, bug 670024

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

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

diff --git a/dev-libs/appstream-glib/appstream-glib-0.7.9.ebuild 
b/dev-libs/appstream-glib/appstream-glib-0.7.9.ebuild
index 15fc80c8523..ec60c641073 100644
--- a/dev-libs/appstream-glib/appstream-glib-0.7.9.ebuild
+++ b/dev-libs/appstream-glib/appstream-glib-0.7.9.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://people.freedesktop.org/~hughsient/${PN}/releases/${P}.tar.xz";
 
 LICENSE="LGPL-2.1+"
 SLOT="0/8" # soname version
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +introspection stemmer"
 
 RDEPEND="



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

2018-12-27 Thread Matt Turner
commit: 169a0a607219b3f23e9f0ebb8908697fd8734da6
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:18 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169a0a60

dev-libs/fribidi-1.0.5: alpha stable, bug 670024

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

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

diff --git a/dev-libs/fribidi/fribidi-1.0.5.ebuild 
b/dev-libs/fribidi/fribidi-1.0.5.ebuild
index 05a4bd290bd..39d0cfab5d3 100644
--- a/dev-libs/fribidi/fribidi-1.0.5.ebuild
+++ b/dev-libs/fribidi/fribidi-1.0.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/fribidi/fribidi/releases/download/v${PV}/${P}.tar.bz
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND=""



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

2018-12-27 Thread Matt Turner
commit: 9f4455fc65d4f345a2b27106bcab8197c1c46ebe
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:14 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f4455fc

sys-auth/pambase-20150213-r2: alpha stable, bug 658646

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

 sys-auth/pambase/pambase-20150213-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pambase/pambase-20150213-r2.ebuild 
b/sys-auth/pambase/pambase-20150213-r2.ebuild
index 6a34d48422a..db3d7bb1a97 100644
--- a/sys-auth/pambase/pambase-20150213-r2.ebuild
+++ b/sys-auth/pambase/pambase-20150213-r2.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~vapier/dist/${P}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 -x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 -x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="consolekit +cracklib debug elogind minimal mktemp +nullok pam_krb5 
pam_ssh passwdqc securetty selinux +sha512 systemd"
 
 RESTRICT="binchecks"



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

2018-12-27 Thread Matt Turner
commit: 6670af9f1b9af9eb5190a5533a782a78e7133b71
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:10 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6670af9f

app-crypt/gcr-3.28.0: alpha stable, bug 658646

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

 app-crypt/gcr/gcr-3.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/gcr/gcr-3.28.0.ebuild b/app-crypt/gcr/gcr-3.28.0.ebuild
index 91f8095ff83..8e970c5578b 100644
--- a/app-crypt/gcr/gcr-3.28.0.ebuild
+++ b/app-crypt/gcr/gcr-3.28.0.ebuild
@@ -16,7 +16,7 @@ SLOT="0/1" # subslot = suffix of libgcr-3
 IUSE="debug gtk +introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ppc64 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 
 COMMON_DEPEND="
>=app-crypt/p11-kit-0.19



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

2018-12-27 Thread Matt Turner
commit: faf40c326ccbd3337d35e5055ac7947f8f4eb90a
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:24 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf40c32

dev-python/pygobject-3.28.3: alpha stable, bug 670024

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

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

diff --git a/dev-python/pygobject/pygobject-3.28.3.ebuild 
b/dev-python/pygobject/pygobject-3.28.3.ebuild
index 0f2cc5f9469..720e7f523fd 100644
--- a/dev-python/pygobject/pygobject-3.28.3.ebuild
+++ b/dev-python/pygobject/pygobject-3.28.3.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/PyGObject";
 
 LICENSE="LGPL-2.1+"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cairo examples test"
 
 REQUIRED_USE="



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

2018-12-27 Thread Matt Turner
commit: b15861044afb3494a78cf71ff1f2cb6bcc7d4e9d
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:15 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1586104

dev-cpp/glibmm-2.56.0: alpha stable, bug 670024

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

 dev-cpp/glibmm/glibmm-2.56.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/glibmm/glibmm-2.56.0.ebuild 
b/dev-cpp/glibmm/glibmm-2.56.0.ebuild
index 3357e30425c..13e1f59bb72 100644
--- a/dev-cpp/glibmm/glibmm-2.56.0.ebuild
+++ b/dev-cpp/glibmm/glibmm-2.56.0.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://www.gtkmm.org";
 
 LICENSE="LGPL-2.1+ GPL-2+" # GPL-2+ applies only to the build system
 SLOT="2"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="doc debug test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-fonts/cantarell/

2018-12-27 Thread Matt Turner
commit: 5e27a0b900c0c80754b0b44d0eb5ed7f44198f7a
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:28 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e27a0b9

media-fonts/cantarell-0.101: alpha stable, bug 670024

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

 media-fonts/cantarell/cantarell-0.101.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-fonts/cantarell/cantarell-0.101.ebuild 
b/media-fonts/cantarell/cantarell-0.101.ebuild
index 552cf7164dc..b17446c96fd 100644
--- a/media-fonts/cantarell/cantarell-0.101.ebuild
+++ b/media-fonts/cantarell/cantarell-0.101.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/CantarellFonts";
 
 LICENSE="OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="media-libs/fontconfig"



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

2018-12-27 Thread Matt Turner
commit: e7e3677155847af09236efbe5c7828d85aa048f0
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:27 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e36771

dev-util/gtk-update-icon-cache-3.24.0: alpha stable, bug 670024

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

 dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.0.ebuild 
b/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.0.ebuild
index ba33bffbf51..864c30fd3f0 100644
--- a/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.0.ebuild
+++ b/dev-util/gtk-update-icon-cache/gtk-update-icon-cache-3.24.0.ebuild
@@ -13,7 +13,7 @@ LICENSE="LGPL-2+"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # man page was previously installed by gtk+:3 ebuild
 RDEPEND="



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

2018-12-27 Thread Matt Turner
commit: 4aaad31f6988292746bac9ae99c4f3a38f3437f9
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:46:22 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:46:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aaad31f

dev-libs/json-glib-1.4.4: alpha stable, bug 670024

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

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

diff --git a/dev-libs/json-glib/json-glib-1.4.4.ebuild 
b/dev-libs/json-glib/json-glib-1.4.4.ebuild
index c614bde7a32..c907709f750 100644
--- a/dev-libs/json-glib/json-glib-1.4.4.ebuild
+++ b/dev-libs/json-glib/json-glib-1.4.4.ebuild
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/JsonGlib";
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="gtk-doc +introspection"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-firewall/conntrack-tools/

2018-12-27 Thread Matt Turner
commit: 6575db817a7f9b471071abc6382f20ca5efe092d
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 03:48:10 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 03:48:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6575db81

net-firewall/conntrack-tools-1.4.5: alpha stable, bug 653824

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

 net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
index 859d974d002..41e0705b8a9 100644
--- a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~x86"
+KEYWORDS="alpha ~amd64 ~arm64 ~hppa ~x86"
 IUSE="doc +cthelper +cttimeout +libtirpc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-firewall/conntrack-tools/

2018-12-27 Thread Matt Turner
commit: 5b49905dda7f9240093aa3e88c2340e804e5a74d
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 04:58:30 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 04:58:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b49905d

net-firewall/conntrack-tools-1.4.4-r1: alpha stable, bug 653824

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

 net-firewall/conntrack-tools/conntrack-tools-1.4.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.4-r1.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.4-r1.ebuild
index 457aa7d5606..8ed101b088d 100644
--- a/net-firewall/conntrack-tools/conntrack-tools-1.4.4-r1.ebuild
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.4-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 hppa x86"
+KEYWORDS="alpha amd64 ~arm64 hppa x86"
 IUSE="doc +libtirpc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-firewall/conntrack-tools/

2018-12-27 Thread Matt Turner
commit: 15d8bd8e2fd3bbf9082a313e37ac171ad1a04ccc
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Dec 28 04:57:53 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Dec 28 04:57:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d8bd8e

Revert "net-firewall/conntrack-tools-1.4.5: alpha stable, bug 653824"

This reverts commit 6575db817a7f9b471071abc6382f20ca5efe092d.
Signed-off-by: Matt Turner  gentoo.org>

 net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild 
b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
index 41e0705b8a9..859d974d002 100644
--- a/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
+++ b/net-firewall/conntrack-tools/conntrack-tools-1.4.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.netfilter.org/projects/conntrack-tools/files/${P}.tar.bz2";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm64 ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~x86"
 IUSE="doc +cthelper +cttimeout +libtirpc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-wireless/blueman/

2018-12-27 Thread Michał Górny
commit: 5c36c1f952564d19b82ebe943752928ace6cf602
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 28 04:54:48 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 28 05:12:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c36c1f9

net-wireless/blueman: Permit iproute2 as a dep

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

 net-wireless/blueman/blueman-.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-wireless/blueman/blueman-.ebuild 
b/net-wireless/blueman/blueman-.ebuild
index 843e55d17ca..196054772be 100644
--- a/net-wireless/blueman/blueman-.ebuild
+++ b/net-wireless/blueman/blueman-.ebuild
@@ -44,7 +44,10 @@ RDEPEND="${COMMON_DEPEND}
appindicator? ( dev-libs/libappindicator:3[introspection] )
network? (
net-firewall/iptables
-   sys-apps/net-tools
+   || (
+   sys-apps/net-tools
+   sys-apps/iproute2
+   )
|| (
net-dns/dnsmasq
net-misc/dhcp



[gentoo-commits] repo/gentoo:master commit in: net-wireless/blueman/

2018-12-27 Thread Michał Górny
commit: 870e668928bbdd0868df69337c73e6fd0902853c
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 28 05:07:05 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 28 05:12:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870e6689

net-wireless/blueman: Bump to 2.1alpha3

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

 net-wireless/blueman/Manifest  |   1 +
 net-wireless/blueman/blueman-2.1_alpha3.ebuild | 130 +
 2 files changed, 131 insertions(+)

diff --git a/net-wireless/blueman/Manifest b/net-wireless/blueman/Manifest
index 8bfb88933d5..7f7f0743ec3 100644
--- a/net-wireless/blueman/Manifest
+++ b/net-wireless/blueman/Manifest
@@ -1 +1,2 @@
 DIST blueman-2.1.alpha2.tar.xz 977344 BLAKE2B 
c5d3d0a96c1220596647ade310263342cdaaeef511a2fb36973d182025330a29b41fb805ce54e10a2f48c1c66312006858789233f8f0a93923952bb03ac32b19
 SHA512 
bde4922a93087d07fd99b165255ded8d9465866e62662f644beaafe363d5618a107abbd9d951cfbd034b02b6ece11fb8117efdd5d453632e4a2fea13d3825643
+DIST blueman-2.1.alpha3.tar.xz 977724 BLAKE2B 
a1b02956249c65bb9dc870f9585f917b17e99d570c2a3f05f505de9ea4ec004ff9ad5d88e958ec84566fdcf0f3fe6cf1965dcdc050241feedbd08fff98d18b22
 SHA512 
e2ad9aff87148e522705872829e9c4c78a1bfbe29e102b69b1f1f56348743343cb543eaac4c21e157aa579b76f023ca9164700a4a08848f55f17d025cead23a6

diff --git a/net-wireless/blueman/blueman-2.1_alpha3.ebuild 
b/net-wireless/blueman/blueman-2.1_alpha3.ebuild
new file mode 100644
index 000..2d562123946
--- /dev/null
+++ b/net-wireless/blueman/blueman-2.1_alpha3.ebuild
@@ -0,0 +1,130 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6,3_7} )
+inherit gnome2-utils linux-info python-single-r1 systemd
+
+DESCRIPTION="Simple and intuitive GTK+ Bluetooth Manager"
+HOMEPAGE="https://github.com/blueman-project/blueman";
+
+if [[ ${PV} == "" ]] ; then
+   inherit autotools git-r3
+   EGIT_REPO_URI="https://github.com/blueman-project/blueman.git";
+   KEYWORDS=""
+else
+   
SRC_URI="https://github.com/blueman-project/${PN}/releases/download/${PV/_/.}/${P/_/.}.tar.xz";
+   KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="appindicator network nls policykit pulseaudio"
+
+COMMON_DEPEND="
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=net-wireless/bluez-5:=
+   ${PYTHON_DEPS}"
+DEPEND="${COMMON_DEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]
+   virtual/pkgconfig
+   nls? ( dev-util/intltool sys-devel/gettext )"
+RDEPEND="${COMMON_DEPEND}
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   sys-apps/dbus
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]
+   || (
+   x11-themes/adwaita-icon-theme
+   x11-themes/faenza-icon-theme
+   x11-themes/mate-icon-theme
+   )
+   appindicator? ( dev-libs/libappindicator:3[introspection] )
+   network? (
+   net-firewall/iptables
+   || (
+   sys-apps/net-tools
+   sys-apps/iproute2
+   )
+   || (
+   net-dns/dnsmasq
+   net-misc/dhcp
+   >=net-misc/networkmanager-0.8
+   )
+   )
+   policykit? ( sys-auth/polkit )
+   pulseaudio? ( media-sound/pulseaudio[bluetooth] )
+   !net-wireless/gnome-bluetooth
+"
+
+S=${WORKDIR}/${P/_/.}
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+pkg_pretend() {
+   if use network; then
+   local CONFIG_CHECK="~BRIDGE ~IP_NF_IPTABLES
+   ~IP_NF_NAT ~IP_NF_TARGET_MASQUERADE"
+   linux-info_pkg_setup
+   fi
+}
+
+pkg_setup() {
+   pkg_pretend
+   python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+   [[ ${PV} ==  ]] && eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --docdir=/usr/share/doc/${PF}
+   --disable-runtime-deps-check
+   --disable-static
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   --with-systemduserunitdir="$(systemd_get_userunitdir)"
+   $(use_enable appindicator)
+   $(use_enable policykit polkit)
+   $(use_enable nls)
+   $(use_enable pulseaudio)
+   # thunar integration is a single data file with no extra deps
+   # so install it unconditionally
+   --enable-thunar-sendto
+   # ignore pointless check
+   NETWORKTOOLS=/bin/true
+   )
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+
+   if use policykit; then
+   # Allow users in plugdev group to modify connections
+   insinto /usr/share/polkit-1/rules.d
+ 

[gentoo-commits] repo/gentoo:master commit in: net-wireless/blueman/

2018-12-27 Thread Michał Górny
commit: c4581c5f59317ac370da5a1831a2a7008e887786
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Dec 28 04:54:18 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Dec 28 05:12:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4581c5f

net-wireless/blueman: Ignore network tooling check in configure

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

 net-wireless/blueman/blueman-.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-wireless/blueman/blueman-.ebuild 
b/net-wireless/blueman/blueman-.ebuild
index 84d20f082a0..843e55d17ca 100644
--- a/net-wireless/blueman/blueman-.ebuild
+++ b/net-wireless/blueman/blueman-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -90,6 +90,8 @@ src_configure() {
# thunar integration is a single data file with no extra deps
# so install it unconditionally
--enable-thunar-sendto
+   # ignore pointless check
+   NETWORKTOOLS=/bin/true
)
econf "${myconf[@]}"
 }



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

2018-12-27 Thread Tim Harder
commit: e0fa54e46a4bc9e7dca76ee7613fdf40adbc5064
Author: Tim Harder  gentoo  org>
AuthorDate: Fri Dec 28 05:48:54 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Fri Dec 28 05:50:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0fa54e4

app-admin/lnav: version bump to 0.8.4

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

Signed-off-by: Tim Harder  gentoo.org>

 app-admin/lnav/Manifest|  1 +
 .../lnav/files/lnav-0.8.4-disable-tests.patch  | 18 ++
 app-admin/lnav/lnav-0.8.4.ebuild   | 39 ++
 3 files changed, 58 insertions(+)

diff --git a/app-admin/lnav/Manifest b/app-admin/lnav/Manifest
index 5f053d0e3af..79252ac3777 100644
--- a/app-admin/lnav/Manifest
+++ b/app-admin/lnav/Manifest
@@ -1,3 +1,4 @@
 DIST lnav-0.8.1.tar.gz 616105 BLAKE2B 
fe37599426c606ec186cd3feac5f9b1023d939a13a03f51a53f64db681c2c42a68152895d3afe17c02804d18735310d48d63338e301732fe3228465dd1d20b3b
 SHA512 
b3514834f42ed647f40c501ad22b68a52755b0c8a558d29305c357b39e598c1386ec9e37d71e8b7e2b5833df41e5f7f398b50b84611d3e6accfb2feb2cdba952
 DIST lnav-0.8.2.tar.gz 693219 BLAKE2B 
b58133cc54e8c1cdbaa461bef96a87b7d991de2c6d8b626243181d42719ed16c7c10f26a86fafa9aa30cc8b52982af233deb387a19a8442b426462189ffc95c0
 SHA512 
75c7014e013567e9a0ee78e28a6648d756de7cba3c103b10ddb974c61066db3a1c2efbd14636cb3729bd7c6a4ab534d1999d44e127b8a6728d12bd5be23f30c4
 DIST lnav-0.8.3.tar.gz 785911 BLAKE2B 
47800f27de0ad585082abaa2af3139d79506bc74d86c175040792eeaa89268711d8fd4b3737412a3dc59a566bb880f9c9fa248e48d665d25f24e1f139f9a1375
 SHA512 
21d0229abf9b572dcc426b6a5e87b8c84f4eb0a7f37ed62d0c08b7bd7c88868a13262f9c78b6af3f3a492b5853b68c8cf8f09ca8d24e77aaa2f2ad0f0f128022
+DIST lnav-0.8.4.tar.gz 840718 BLAKE2B 
3efa958bf8c8031a7c53db1a5277cf5cd17acfcc50583f0a9c5097ee7aa679bc3d9b8346e5fdecf91d053aba6ca320e5e9bcb827e0b0bf5c1a12d4d03c307b87
 SHA512 
79ef5712dbeea941f7d0a80652d25394ca4e278c983eef0b3ad9f22b90dee13dc50ae475632673575ace795f793bbb8e14b85ac4df786b94743e7a7596fb

diff --git a/app-admin/lnav/files/lnav-0.8.4-disable-tests.patch 
b/app-admin/lnav/files/lnav-0.8.4-disable-tests.patch
new file mode 100644
index 000..6b431c33b13
--- /dev/null
+++ b/app-admin/lnav/files/lnav-0.8.4-disable-tests.patch
@@ -0,0 +1,18 @@
+--- lnav-0.8.4/test/Makefile.am
 lnav-0.8.4/test/Makefile.am
+@@ -373,7 +373,6 @@
+   test_concise \
+   test_line_buffer2 \
+   test_line_buffer.sh \
+-  test_listview.sh \
+   test_meta.sh \
+   test_grep_proc.sh \
+   test_grep_proc2 \
+@@ -381,7 +380,6 @@
+   test_json_op.sh \
+   test_json_ptr_walk.sh \
+   test_log_accel \
+-  test_logfile.sh \
+   test_pcrepp \
+   test_reltime \
+   test_scripts.sh \

diff --git a/app-admin/lnav/lnav-0.8.4.ebuild b/app-admin/lnav/lnav-0.8.4.ebuild
new file mode 100644
index 000..0d788cfb299
--- /dev/null
+++ b/app-admin/lnav/lnav-0.8.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs autotools
+
+DESCRIPTION="A curses-based tool for viewing and analyzing log files"
+HOMEPAGE="http://lnav.org";
+SRC_URI="https://github.com/tstack/lnav/releases/download/v${PV}/${P}.tar.gz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="unicode"
+
+RDEPEND="
+   app-arch/bzip2:0=
+   dev-db/sqlite:3
+   dev-libs/libpcre[cxx]
+   >=net-misc/curl-7.23.0
+   sys-libs/ncurses:0=[unicode?]
+   sys-libs/readline:0=
+   sys-libs/zlib:0="
+DEPEND="${RDEPEND}"
+
+DOCS=( AUTHORS NEWS README )
+PATCHES=( "${FILESDIR}"/${P}-disable-tests.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-static \
+   $(use_with unicode ncursesw)
+}



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

2018-12-27 Thread Tim Harder
commit: f934d5d9fab01769c3074cba5bfd3540b33fa27d
Author: Tim Harder  gentoo  org>
AuthorDate: Fri Dec 28 05:49:20 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Fri Dec 28 05:50:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f934d5d9

app-admin/lnav: remove old

Signed-off-by: Tim Harder  gentoo.org>

 app-admin/lnav/Manifest  |  2 --
 app-admin/lnav/lnav-0.8.1.ebuild | 37 -
 app-admin/lnav/lnav-0.8.2.ebuild | 33 -
 3 files changed, 72 deletions(-)

diff --git a/app-admin/lnav/Manifest b/app-admin/lnav/Manifest
index 79252ac3777..8a0d591c48e 100644
--- a/app-admin/lnav/Manifest
+++ b/app-admin/lnav/Manifest
@@ -1,4 +1,2 @@
-DIST lnav-0.8.1.tar.gz 616105 BLAKE2B 
fe37599426c606ec186cd3feac5f9b1023d939a13a03f51a53f64db681c2c42a68152895d3afe17c02804d18735310d48d63338e301732fe3228465dd1d20b3b
 SHA512 
b3514834f42ed647f40c501ad22b68a52755b0c8a558d29305c357b39e598c1386ec9e37d71e8b7e2b5833df41e5f7f398b50b84611d3e6accfb2feb2cdba952
-DIST lnav-0.8.2.tar.gz 693219 BLAKE2B 
b58133cc54e8c1cdbaa461bef96a87b7d991de2c6d8b626243181d42719ed16c7c10f26a86fafa9aa30cc8b52982af233deb387a19a8442b426462189ffc95c0
 SHA512 
75c7014e013567e9a0ee78e28a6648d756de7cba3c103b10ddb974c61066db3a1c2efbd14636cb3729bd7c6a4ab534d1999d44e127b8a6728d12bd5be23f30c4
 DIST lnav-0.8.3.tar.gz 785911 BLAKE2B 
47800f27de0ad585082abaa2af3139d79506bc74d86c175040792eeaa89268711d8fd4b3737412a3dc59a566bb880f9c9fa248e48d665d25f24e1f139f9a1375
 SHA512 
21d0229abf9b572dcc426b6a5e87b8c84f4eb0a7f37ed62d0c08b7bd7c88868a13262f9c78b6af3f3a492b5853b68c8cf8f09ca8d24e77aaa2f2ad0f0f128022
 DIST lnav-0.8.4.tar.gz 840718 BLAKE2B 
3efa958bf8c8031a7c53db1a5277cf5cd17acfcc50583f0a9c5097ee7aa679bc3d9b8346e5fdecf91d053aba6ca320e5e9bcb827e0b0bf5c1a12d4d03c307b87
 SHA512 
79ef5712dbeea941f7d0a80652d25394ca4e278c983eef0b3ad9f22b90dee13dc50ae475632673575ace795f793bbb8e14b85ac4df786b94743e7a7596fb

diff --git a/app-admin/lnav/lnav-0.8.1.ebuild b/app-admin/lnav/lnav-0.8.1.ebuild
deleted file mode 100644
index c11649613fe..000
--- a/app-admin/lnav/lnav-0.8.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="A curses-based tool for viewing and analyzing log files"
-HOMEPAGE="http://lnav.org";
-SRC_URI="https://github.com/tstack/lnav/releases/download/v${PV}/${P}.tar.gz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="unicode"
-
-RDEPEND="
-   app-arch/bzip2
-   dev-db/sqlite:3
-   dev-libs/libpcre[cxx]
-   >=net-misc/curl-7.23.0
-   sys-libs/ncurses:0=[unicode?]
-   sys-libs/readline:0=
-   sys-libs/zlib"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS NEWS README )
-
-src_configure() {
-   econf \
-   --disable-static \
-   $(use_with unicode ncursesw)
-}
-
-src_compile() {
-   emake AR="$(tc-getAR)"
-}

diff --git a/app-admin/lnav/lnav-0.8.2.ebuild b/app-admin/lnav/lnav-0.8.2.ebuild
deleted file mode 100644
index c7ce22bb4de..000
--- a/app-admin/lnav/lnav-0.8.2.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="A curses-based tool for viewing and analyzing log files"
-HOMEPAGE="http://lnav.org";
-SRC_URI="https://github.com/tstack/lnav/releases/download/v${PV}/${P}.tar.gz";
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="unicode"
-
-RDEPEND="
-   app-arch/bzip2
-   dev-db/sqlite:3
-   dev-libs/libpcre[cxx]
-   >=net-misc/curl-7.23.0
-   sys-libs/ncurses:0=[unicode?]
-   sys-libs/readline:0=
-   sys-libs/zlib"
-DEPEND="${RDEPEND}"
-
-DOCS=( AUTHORS NEWS README )
-
-src_configure() {
-   econf \
-   --disable-static \
-   $(use_with unicode ncursesw)
-}



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

2018-12-27 Thread Mikle Kolyada
commit: 45d6f1b6e9a2aa0b3b231f10a8b22548ad1c17e9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 06:27:25 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 06:27:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45d6f1b6

net-fs/minio: Version bump

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

 net-fs/minio/Manifest |  1 +
 net-fs/minio/minio-2018.12.27.18.33.08.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
index 77cbc790101..53dcfbc0bdf 100644
--- a/net-fs/minio/Manifest
+++ b/net-fs/minio/Manifest
@@ -8,3 +8,4 @@ DIST minio-2018.11.30.03.56.59.tar.gz 9085930 BLAKE2B 
445ad82c4c3829fa62554d5ee1
 DIST minio-2018.12.06.01.27.43.tar.gz 9087439 BLAKE2B 
fbbde99442ce0b1573251ca93a5ad4323c1ce68263d2f5c3c0fd6631868dc5110b7179aabdb5ded260def669fdddbd0f9eae6a543ecf1a74d9fb9825ebdd8bd2
 SHA512 
1ac070f9358acee7d51895965aedeb85b79080842d7dc4012c48ad5cdb6d73bb4cd53d60edcac0fe7d0571ef7a2276d055a5505c73fd3ffa82cac4508df999c9
 DIST minio-2018.12.13.02.04.19.tar.gz 9091219 BLAKE2B 
7d4619cb3d88c4c115e0361edecf73df7d7d6b5ed86487653aa8ee30c75bf1fbb026011b25d8a5270616b89d1c3a9df3ca1aedb6d4339914e48744982c79991a
 SHA512 
4d4542644738ffd8541ad118f74957aee272afa47c82469cda85994aa4c228dcf08126606c4cf3684c5a2a0ca9a55c1841230dfd0983dc17c4873e8ecceb7176
 DIST minio-2018.12.19.23.46.24.tar.gz 9096254 BLAKE2B 
252c8e84e9df0f5e2f85f5f5a0930a53f960b25c03a381961adeb338f70d7ec3e172c369fb52c4aa14c039e48c0611f90f627ede797b3469ed08d2a4ffd0653c
 SHA512 
c1acfca6fdba3490fcd89e0c910b0b9da0c2ca04fe8e5d17acf6001f313fa7ba64a548921a35c531e9998f7bef1535fc239e95382f78e2ee0a9fd40bc87bb2bc
+DIST minio-2018.12.27.18.33.08.tar.gz 9102593 BLAKE2B 
40e1a014edcfe84f9310bd09b0d4e5853b3ef8e1cc7e1a0805aaf83f55320a516df0c930c78d5b7726625d9f2d521dbee534b949f31b63438ac19971f75e493c
 SHA512 
92ec8b8d1094d3b125f3522063895274e9aa0144063c4ac64a3919dfc65a6ee26e7a1bc03063f61acdb6b5b14681448f3451598939a8f17d107205091049279c

diff --git a/net-fs/minio/minio-2018.12.27.18.33.08.ebuild 
b/net-fs/minio/minio-2018.12.27.18.33.08.ebuild
new file mode 100644
index 000..9adcc45356d
--- /dev/null
+++ b/net-fs/minio/minio-2018.12.27.18.33.08.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit user golang-build golang-vcs-snapshot eapi7-ver
+
+EGO_PN="github.com/minio/minio"
+MY_PV="$(ver_cut 1-3)T$(ver_cut 4-7)Z"
+MY_PV=${MY_PV//./-}
+EGIT_COMMIT="ce419c98352324caa4c79b159a9f840ca714c3d5"
+ARCHIVE_URI="https://${EGO_PN}/archive/RELEASE.${MY_PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="An Amazon S3 compatible object storage server"
+HOMEPAGE="https://github.com/minio/minio";
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${MY_PV}\"/"\
+   -e "s/-s //"\
+   -e "/time/d"\
+   -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
+   src/${EGO_PN}/buildscripts/gen-ldflags.go || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   MINIO_RELEASE="${MY_PV}"
+   go run buildscripts/gen-ldflags.go
+   GOPATH="${S}" go build --ldflags "$(go run 
buildscripts/gen-ldflags.go)" -o ${PN} || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs
+   dobin minio
+   popd  || die
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   keepdir /var/{lib,log}/${PN}
+   fowners ${PN}:${PN} /var/{lib,log}/${PN}
+}



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

2018-12-27 Thread Hans de Graaff
commit: e5a87bfd26d4b8167dc2032469169faa8d007d57
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 06:57:17 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 06:57:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a87bfd

dev-lang/ruby: remove broken version

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

 dev-lang/ruby/ruby-2.6.0.ebuild | 230 
 1 file changed, 230 deletions(-)

diff --git a/dev-lang/ruby/ruby-2.6.0.ebuild b/dev-lang/ruby/ruby-2.6.0.ebuild
deleted file mode 100644
index 25722b6085b..000
--- a/dev-lang/ruby/ruby-2.6.0.ebuild
+++ /dev/null
@@ -1,230 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic multilib
-
-MY_P="${PN}-$(ver_cut 1-3)"
-S=${WORKDIR}/${MY_P}
-
-SLOT=$(ver_cut 1-2)
-MY_SUFFIX=$(ver_rs 1 '' ${SLOT})
-RUBYVERSION=${SLOT}.0
-
-DESCRIPTION="An object-oriented scripting language"
-HOMEPAGE="https://www.ruby-lang.org/";
-SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.xz"
-
-LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 +ssl static-libs tk xemacs"
-
-RDEPEND="
-   berkdb? ( sys-libs/db:= )
-   gdbm? ( sys-libs/gdbm:= )
-   jemalloc? ( dev-libs/jemalloc )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
-   )
-   socks5? ( >=net-proxy/dante-1.1.13 )
-   tk? (
-   dev-lang/tcl:0=[threads]
-   dev-lang/tk:0=[threads]
-   )
-   dev-libs/libyaml
-   virtual/libffi:=
-   sys-libs/zlib
-   >=app-eselect/eselect-ruby-20171225
-"
-
-DEPEND="${RDEPEND}"
-
-BUNDLED_GEMS="
-   >=dev-ruby/did_you_mean-1.2.1[ruby_targets_ruby26]
-   >=dev-ruby/minitest-5.11.3[ruby_targets_ruby26]
-   >=dev-ruby/net-telnet-0.2.0[ruby_targets_ruby26]
-   >=dev-ruby/power_assert-1.1.3[ruby_targets_ruby26]
-   >=dev-ruby/rake-12.3.2[ruby_targets_ruby26]
-   >=dev-ruby/test-unit-3.2.9[ruby_targets_ruby26]
-   >=dev-ruby/xmlrpc-0.3.0[ruby_targets_ruby26]
-"
-
-PDEPEND="
-   ${BUNDLED_GEMS}
-   virtual/rubygems[ruby_targets_ruby26]
-   >=dev-ruby/json-2.0.2[ruby_targets_ruby26]
-   rdoc? ( >=dev-ruby/rdoc-5.1.0[ruby_targets_ruby26] )
-   xemacs? ( app-xemacs/ruby-modes )"
-
-src_prepare() {
-   # 005 does not compile bigdecimal and is questionable, may be dropped
-   # 009 to be done before release
-   # 010 rejects, not checked out yet
-   #eapply "${FILESDIR}"/2.6/010*.patch
-
-   einfo "Unbundling gems..."
-   cd "$S"
-   # Remove bundled gems that we will install via PDEPEND, bug
-   # 539700. Use explicit version numbers to ensure rm fails when they
-   # change so we can update dependencies accordingly.
-   rm -f 
gems/{did_you_mean-1.2.1,minitest-5.11.3,net-telnet-0.2.0,power_assert-1.1.3,rake-12.3.2,test-unit-3.2.9,xmlrpc-0.3.0}.gem
 || die
-
-   einfo "Removing bundled libraries..."
-   rm -fr ext/fiddle/libffi-3.2.1 || die
-
-   eapply_user
-
-   eautoreconf
-}
-
-src_configure() {
-   local modules= myconf=
-
-   # -fomit-frame-pointer makes ruby segfault, see bug #150413.
-   filter-flags -fomit-frame-pointer
-   # In many places aliasing rules are broken; play it safe
-   # as it's risky with newer compilers to leave it as it is.
-   append-flags -fno-strict-aliasing
-   # SuperH needs this
-   use sh && append-flags -mieee
-
-   # Socks support via dante
-   if use socks5 ; then
-   # Socks support can't be disabled as long as SOCKS_SERVER is
-   # set and socks library is present, so need to unset
-   # SOCKS_SERVER in that case.
-   unset SOCKS_SERVER
-   fi
-
-   # Increase GC_MALLOC_LIMIT if set (default is 800)
-   if [ -n "${RUBY_GC_MALLOC_LIMIT}" ] ; then
-   append-flags "-DGC_MALLOC_LIMIT=${RUBY_GC_MALLOC_LIMIT}"
-   fi
-
-   # ipv6 hack, bug 168939. Needs --enable-ipv6.
-   use ipv6 || myconf="${myconf} --with-lookup-order-hack=INET"
-
-   # Determine which modules *not* to build depending in the USE flags.
-   if ! use berkdb ; then
-   modules="${modules},dbm"
-   fi
-   if ! use gdbm ; then
-   modules="${modules},gdbm"
-   fi
-   if ! use ssl ; then
-   modules="${modules},openssl"
-   fi
-   if ! use tk ; then
-   modules="${modules},tk"
-   fi
-
-   # Provide an empty LIBPATHENV because we disable rpath but we do not
-   # need LD_LIBRARY_PATH by default since that breaks USE=multitarget
-  

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

2018-12-27 Thread Hans de Graaff
commit: 0db62bcbc28f9b88e90ba44b521aebcfcb2755e6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 06:56:24 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 06:56:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db62bcb

dev-lang/ruby: cleanup

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

 dev-lang/ruby/Manifest  |   1 -
 dev-lang/ruby/ruby-2.3.8.ebuild | 242 
 2 files changed, 243 deletions(-)

diff --git a/dev-lang/ruby/Manifest b/dev-lang/ruby/Manifest
index afe6eb063a5..e904f07e0af 100644
--- a/dev-lang/ruby/Manifest
+++ b/dev-lang/ruby/Manifest
@@ -3,4 +3,3 @@ DIST ruby-2.4.5.tar.xz 10064712 BLAKE2B 
0846125e617b43ea302b4c5309b2050357793786
 DIST ruby-2.5.3.tar.xz 11453336 BLAKE2B 
66c59448a23c22796b43f04a1f84359386b7bee7163da4255426ea75b1c7af0a7a7142991b870a75a72ded56ac49f47c51bc162ebf2be2af0d1b1608b60c02df
 SHA512 
6dcae0e8d0bacdb2cbde636e2030596308b5af53f2eb85d3adccb67b02e6f8f9751e8117d12f8484829fdd9d995f6e327f701d9b433bcf94f1f59d13a1fd7518
 DIST ruby-2.6.0.tar.xz 11918536 BLAKE2B 
f51fe57c1ff83d99c834f29d1bcc8e847f7a4cd3a10e202391327373d9d803fcc356d210cc07b9038915039a7462c0263fa7567b63366d1ab6273b9a82e651d1
 SHA512 
c56eaf85ef7b79deb34ee4590b143c07f4fc83eb79775290761aee5a7c63374659613538a41f25706ed6e19e49d5c67a1014c24d17f29948294c7abd0b0fcea8
 DIST ruby-patches-2.3.8-r1.tar.bz2 3030 BLAKE2B 
7c1e80ff0569a03672f53820c665933056b46bcf791c9132cb9f358f72df693749f02da65ca7469c3dd0f652d7dc7bfaa03dccd4eb900562361876023fb65b42
 SHA512 
54cc3f2bfd1967b8558736e5a5240b886a56b22defca5813f45b1f4dca9af169b4d59d60b327ec8411e824970ac6da1cec53cfc31833403742e9d6941e5a78f1
-DIST ruby-patches-2.3.8.tar.bz2 3030 BLAKE2B 
7c1e80ff0569a03672f53820c665933056b46bcf791c9132cb9f358f72df693749f02da65ca7469c3dd0f652d7dc7bfaa03dccd4eb900562361876023fb65b42
 SHA512 
54cc3f2bfd1967b8558736e5a5240b886a56b22defca5813f45b1f4dca9af169b4d59d60b327ec8411e824970ac6da1cec53cfc31833403742e9d6941e5a78f1

diff --git a/dev-lang/ruby/ruby-2.3.8.ebuild b/dev-lang/ruby/ruby-2.3.8.ebuild
deleted file mode 100644
index a15c71349c7..000
--- a/dev-lang/ruby/ruby-2.3.8.ebuild
+++ /dev/null
@@ -1,242 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-#PATCHSET=1
-
-inherit autotools eutils flag-o-matic multilib versionator
-
-MY_P="${PN}-$(get_version_component_range 1-3)"
-S=${WORKDIR}/${MY_P}
-
-SLOT=$(get_version_component_range 1-2)
-MY_SUFFIX=$(delete_version_separator 1 ${SLOT})
-RUBYVERSION=2.3.0
-
-if [[ -n ${PATCHSET} ]]; then
-   if [[ ${PVR} == ${PV} ]]; then
-   PATCHSET="${PV}-r0.${PATCHSET}"
-   else
-   PATCHSET="${PVR}.${PATCHSET}"
-   fi
-else
-   PATCHSET="${PVR}"
-fi
-
-DESCRIPTION="An object-oriented scripting language"
-HOMEPAGE="https://www.ruby-lang.org/";
-SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.xz
-
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2";
-
-LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
-IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 ssl tk xemacs ncurses +readline"
-
-RDEPEND="
-   berkdb? ( sys-libs/db:= )
-   gdbm? ( sys-libs/gdbm:= )
-   jemalloc? ( dev-libs/jemalloc )
-   ssl? (
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl )
-   )
-   socks5? ( >=net-proxy/dante-1.1.13 )
-   tk? (
-   dev-lang/tcl:0=[threads]
-   dev-lang/tk:0=[threads]
-   )
-   ncurses? ( sys-libs/ncurses:0= )
-   readline?  ( sys-libs/readline:0= )
-   dev-libs/libyaml
-   virtual/libffi:=
-   sys-libs/zlib
-   >=app-eselect/eselect-ruby-20151229
-   !

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

2018-12-27 Thread Mikle Kolyada
commit: 5ca189751fee05d80492b45df3a1e965a4aeb1ae
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 07:03:34 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 07:03:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ca18975

dev-perl/Capture-Tiny: s390 stable wrt bug #671730

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

 dev-perl/Capture-Tiny/Capture-Tiny-0.480.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Capture-Tiny/Capture-Tiny-0.480.0.ebuild 
b/dev-perl/Capture-Tiny/Capture-Tiny-0.480.0.ebuild
index abc0b686427..1b0cfab9436 100644
--- a/dev-perl/Capture-Tiny/Capture-Tiny-0.480.0.ebuild
+++ b/dev-perl/Capture-Tiny/Capture-Tiny-0.480.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Capture STDOUT and STDERR from Perl, XS or 
external programs"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2018-12-27 Thread Mikle Kolyada
commit: 4c455d79f3bb550f8f679f79115ce2dcd3dbfecc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 07:04:47 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 07:04:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c455d79

dev-perl/XML-SAX: s390 stable wrt bug #671730

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

 dev-perl/XML-SAX/XML-SAX-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/XML-SAX/XML-SAX-1.0.0.ebuild 
b/dev-perl/XML-SAX/XML-SAX-1.0.0.ebuild
index b75766f5bd6..5dfdffcdcc1 100644
--- a/dev-perl/XML-SAX/XML-SAX-1.0.0.ebuild
+++ b/dev-perl/XML-SAX/XML-SAX-1.0.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module eutils
 DESCRIPTION="Perl module for using and building Perl SAX2 XML parsers, 
filters, and drivers"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-devel/gcc-config/

2018-12-27 Thread Mikle Kolyada
commit: 729e1925ffad90fcdcd1d623d5525b05f385f90a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 07:07:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 07:07:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729e1925

sys-devel/gcc-config: s390/sh/m68k stable wrt bug #673088

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

 sys-devel/gcc-config/gcc-config-2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc-config/gcc-config-2.0.ebuild 
b/sys-devel/gcc-config/gcc-config-2.0.ebuild
index 6bb3512ec39..46440d36bc6 100644
--- a/sys-devel/gcc-config/gcc-config-2.0.ebuild
+++ b/sys-devel/gcc-config/gcc-config-2.0.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="mirror://gentoo/${P}.tar.xz
https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz";
-   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 
sh sparc x86 ~amd64-fbsd ~x86-fbsd"
 fi
 
 DESCRIPTION="Utility to manage compilers"



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

2018-12-27 Thread Mikle Kolyada
commit: 578a61529ec19712f596e53933e432ff5816166f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 07:10:07 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 07:10:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578a6152

sys-apps/sysvinit: s390/sh/m68k stable wrt bug #671752

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

 sys-apps/sysvinit/sysvinit-2.91-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild 
b/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild
index 8da8b37332c..61dc9a5a4cc 100644
--- a/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild
+++ b/sys-apps/sysvinit/sysvinit-2.91-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ~ppc ~ppc64 s390 sh 
sparc x86"
 IUSE="selinux ibm static kernel_FreeBSD"
 
 CDEPEND="



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

2018-12-27 Thread Hans de Graaff
commit: 3a616eb65f3b812f7b1a7520c358ea723bdff7f1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:19:01 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a616eb6

dev-ruby/rex-arch: add ruby26

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

 dev-ruby/rex-arch/rex-arch-0.1.13.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rex-arch/rex-arch-0.1.13.ebuild 
b/dev-ruby/rex-arch/rex-arch-0.1.13.ebuild
index 995ebdde402..17c9a180946 100644
--- a/dev-ruby/rex-arch/rex-arch-0.1.13.ebuild
+++ b/dev-ruby/rex-arch/rex-arch-0.1.13.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_TEST="none"
 RUBY_FAKEGEM_TASK_DOC=""



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

2018-12-27 Thread Hans de Graaff
commit: 45a77361af6b3338b6c62eb18470c55680cc4b21
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:23:57 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45a77361

dev-ruby/rjb: add 1.5.7

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

 dev-ruby/rjb/Manifest |  1 +
 dev-ruby/rjb/rjb-1.5.7.ebuild | 81 +++
 2 files changed, 82 insertions(+)

diff --git a/dev-ruby/rjb/Manifest b/dev-ruby/rjb/Manifest
index 78c966c1be5..9f89d8afbb0 100644
--- a/dev-ruby/rjb/Manifest
+++ b/dev-ruby/rjb/Manifest
@@ -1 +1,2 @@
 DIST rjb-1.5.5.gem 73216 BLAKE2B 
3bee34d033e5d85150740df1e30d93d54a3078824c76535e1300d2be0a2ecfc6aac2b30762a6b85fd1449df45b49550c0627f6cd588af712d0dfdaab2ca4e68c
 SHA512 
a1a8f6e6b7ce228fe8d58b467f783e55ddb12371485d45ad32597ea7ec60d30e3870671455e4e22fd680b5aa21bd952b8abfa36531c030747573e5d43cea
+DIST rjb-1.5.7.gem 72704 BLAKE2B 
9a4f2b304c05f65c0d78ca4909814da366de717f518017c73d23cfcf188d653141d6c4549200c4bd3e55421f59cf8442cf2d01c1c5c1be813964ee7fb4a7b501
 SHA512 
0ccdbb5bc6f9f5d914d5b117c96310d709965b81a4bd2d0d7c428aabf4e32672572d4187660bc1b509fa3c92ac4cbe97cbd98412253d4ec9a7e4981f3b7a3131

diff --git a/dev-ruby/rjb/rjb-1.5.7.ebuild b/dev-ruby/rjb/rjb-1.5.7.ebuild
new file mode 100644
index 000..c2f79b950d9
--- /dev/null
+++ b/dev-ruby/rjb/rjb-1.5.7.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="readme.txt ChangeLog"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_EXTRAINSTALL="data"
+
+inherit java-pkg-2 ruby-ng ruby-fakegem
+
+DESCRIPTION="Rjb is a Ruby-Java software bridge"
+HOMEPAGE="https://github.com/arton/rjb";
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples hardened"
+
+DEPEND=">=virtual/jdk-1.5
+   hardened? ( sys-apps/paxctl )"
+RDEPEND="virtual/jre"
+
+pkg_setup() {
+   ruby-ng_pkg_setup
+   java-pkg-2_pkg_setup
+}
+
+all_ruby_prepare() {
+   # The console is not available for testing.
+   sed -i -e '/test_noarg_sinvoke/,/end/ s:^:#:' test/test.rb || die
+
+   # Avoid encoding tests since not all locales may be available.
+   sed -i -e '/test_kjconv/,/^  end/ s:^:#:' test/test.rb || die
+}
+
+each_ruby_prepare() {
+   #dev-lang/ruby might need the "hardened" flag to enforce the following:
+   if use hardened; then
+   paxctl -v /usr/bin/ruby 2>/dev/null | grep MPROTECT | grep 
disabled || ewarn '!!! rjb will only work if ruby is MPROTECT disabled\n  
please disable it if required using paxctl -m /usr/bin/ruby'
+   fi
+   # force compilation of class file for our JVM
+   rm -rf data
+}
+
+each_ruby_configure() {
+   ${RUBY} -C ext extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflags="${LDFLAGS}"
+}
+
+each_ruby_install() {
+   each_fakegem_install
+
+   # currently no elegant way to do this (bug #352765)
+   ruby_fakegem_newins ext/rjbcore.so lib/rjbcore.so
+
+   if use examples; then
+   insinto /usr/share/doc/${PF}
+   doins -r samples
+   fi
+}
+
+each_ruby_test() {
+   if use hardened; then
+   paxctl -v ${RUBY} 2>/dev/null | grep MPROTECT | grep -q disabled
+   if [ $? = 0 ]; then
+   ${RUBY} -C test -I../lib:.:../ext test.rb || die
+   else
+   ewarn "${RUBY} has MPROTECT enabled, rjb will not work 
until it is disabled, skipping tests."
+   fi
+   else
+   ${RUBY} -C test -I../lib:.:../ext test.rb || die
+   fi
+}



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

2018-12-27 Thread Hans de Graaff
commit: 9ab05627333656aeaac6a442644505c8354c857b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:02:04 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ab05627

dev-ruby/bundler: add 1.17.3

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

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

diff --git a/dev-ruby/bundler/Manifest b/dev-ruby/bundler/Manifest
index 07d66832f44..482723d0489 100644
--- a/dev-ruby/bundler/Manifest
+++ b/dev-ruby/bundler/Manifest
@@ -3,3 +3,4 @@ DIST bundler-1.16.5.gem 355328 BLAKE2B 
684c499abf149fcff4f48881704d96c363f63f004
 DIST bundler-1.16.6.gem 356352 BLAKE2B 
da6d1d5e7edb5a2a4066cecd7caf33c06d15df2e71966d9ec9e7ce712eb28612224139f86df016bee28f5f00b767ed683de61dd820c7b40e211e3015a3d2
 SHA512 
4492786ffd22b86e056dc66c605a943140a1513dbada2334fd3340877f72a3f2138d1bca8f36be3d671f2f9497a69f3a95505db42e938bc30719d15f3896e155
 DIST bundler-1.17.1.gem 363520 BLAKE2B 
2edee7490192ee18b23b87892fb2fdf112849276dee40788ec76fde752d6d27c339ee07ba6202dce8a91d418ae21452c0f742f7c1c111a358260a1d7f1a7b1c6
 SHA512 
6adf044096b7716c8b0dae5f559506c65dcb8fd8a8a57428ac25331ca3a85b7cb399fb40b79aeccb0908d172686df9213b86f69286c3e383373ff5ee6f3b414d
 DIST bundler-1.17.2.gem 364032 BLAKE2B 
132a08e43851b16810419b8ec89ead3c8403c0f793a0d585b24fb50d13910bf85d002148c303f7dfa09762c4fa2af14ff829421cca303edacbae6f2a55f12de5
 SHA512 
8595fb39cf5c4905537bcf5f3ad1120b48c1f86dee592ae977b033cce431eb5a959946510c6f858a4ae3121bfcb0204a699f565bf9ace040547aefa4e07a
+DIST bundler-1.17.3.gem 364032 BLAKE2B 
81e097156a593e4ec85a2353aa6c62143d9aad120c22c5f76423c6c5f4e4d33206c8ef41c64e54ea53eb610a0d865beba19d3c033e8f65913564963319bb523f
 SHA512 
658de4228bc12fa5ca6ce335f76fff773f64da9f3d12f5097b4fd28d4c4f4d2a5bf12dce761b3d95432c5ea6a5aafae895df87c26660a4567db8b682aff48c02

diff --git a/dev-ruby/bundler/bundler-1.17.3.ebuild 
b/dev-ruby/bundler/bundler-1.17.3.ebuild
new file mode 100644
index 000..4053b30a5d1
--- /dev/null
+++ b/dev-ruby/bundler/bundler-1.17.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+# The specs require a number of gems to be installed in a temporary
+# directory, but this requires network access. They also don't work
+# when run with a path that contains "-".
+RUBY_FAKEGEM_RECIPE_TEST="none"
+
+# No documentation task
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
+
+RUBY_FAKEGEM_BINDIR="exe"
+
+RUBY_FAKEGEM_EXTRAINSTALL="man"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An easy way to vendor gem dependencies"
+HOMEPAGE="https://github.com/carlhuda/bundler";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+doc test"
+
+ruby_add_rdepend virtual/rubygems
+
+RDEPEND+=" dev-vcs/git"



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

2018-12-27 Thread Hans de Graaff
commit: 625c93e980fcb021ced195c6a43cbb8c72771c9e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:12:56 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=625c93e9

dev-ruby/rdoc: add 6.1.1

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

 dev-ruby/rdoc/Manifest  |  1 +
 dev-ruby/rdoc/rdoc-6.1.1.ebuild | 93 +
 2 files changed, 94 insertions(+)

diff --git a/dev-ruby/rdoc/Manifest b/dev-ruby/rdoc/Manifest
index 649904b2c74..4496c70911f 100644
--- a/dev-ruby/rdoc/Manifest
+++ b/dev-ruby/rdoc/Manifest
@@ -2,3 +2,4 @@ DIST rdoc-4.3.0.gem 738816 BLAKE2B 
f705b4fed5a9a7e3a850cacc17b7df3f8fdeb163938ed
 DIST rdoc-5.1.0.tar.gz 702376 BLAKE2B 
733d77a341ddad10f5b648b6bb492e0f79daa392e2ca371d38236e4c85a1c409699e35dd3f5bc8bc48551b399603bb0a747cb3c5f7f1fbf4765aabffaad575aa
 SHA512 
cd2ed37e8502a3e9093c88c258ac5e39542a23c3dcaedb9b5eb48ce391a694e5b35fbcfd62f01ec6353ac9c40a4b7043b2ff11bbc403d2e03de9a84c52bcefe7
 DIST rdoc-6.0.4.tar.gz 699314 BLAKE2B 
37b9c65a55357b9edbf85889c086948a6e80094846434d46e6ffbf17e16eba9e964dc09721f921d5042d6e0c72619fc59d87c8d969490e6af50fddaf49d36556
 SHA512 
8bf61bda88ea1a85178f5fdd62e87c79c5efd6d6f64d9d8651bbbc37e02da02b7189c7e60e4853a962507cc2ee4c703b6532f28db763202fa24c4b364cee8e28
 DIST rdoc-6.1.0.tar.gz 701204 BLAKE2B 
5228f7af6b890aa09ddeee899955dada94768a4a4fe6c30ccfabb810dc90420f5a83e1a485b80ddfa81c6eeca9440109a82a3287eb445c28e1c4f30b3cea76bf
 SHA512 
084c6bf8819664ab5f80d3678dbc8936da30f19f8603767d3678b7d504069395c8e074d09b4a188231784fb99213ee0cb2e289632de4126276ddb0233fbcd600
+DIST rdoc-6.1.1.tar.gz 701297 BLAKE2B 
cd1494303d5bf4f81804e40a43252a589a6fa141316a573c1e321bf2dbd71330fabd547e09f5c84937cc45b3f79e2936d90813c29fc11b4a514a9cb498b9c98d
 SHA512 
01e32d6e7ffcb5c0e138068867e6d995210d0123cb87c2754994be1a5e0aede0e05114746e6bd788fd0b4299e9a005dcfc863ef07000f1f9fcbf6ed11e44947b

diff --git a/dev-ruby/rdoc/rdoc-6.1.1.ebuild b/dev-ruby/rdoc/rdoc-6.1.1.ebuild
new file mode 100644
index 000..e779126f7a9
--- /dev/null
+++ b/dev-ruby/rdoc/rdoc-6.1.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc RI.rdoc TODO.rdoc"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_BINDIR="exe"
+
+inherit ruby-fakegem eutils
+
+DESCRIPTION="An extended version of the RDoc library from Ruby 1.8"
+HOMEPAGE="https://github.com/ruby/rdoc/";
+SRC_URI="https://github.com/ruby/rdoc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Ruby MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+RDEPEND+=">=app-eselect/eselect-ruby-20181225"
+
+ruby_add_bdepend "
+   >=dev-ruby/kpeg-1.1.0-r1
+   >dev-ruby/racc-1.4.10
+   test? (
+   dev-ruby/bundler
+   >=dev-ruby/minitest-5.8:5
+   )"
+
+all_ruby_prepare() {
+   # Other packages also have use for a nonexistent directory, bug 321059
+   sed -i -e 's#/nonexistent#/nonexistent_rdoc_tests#g' test/test_rdoc*.rb 
|| die
+
+   # Avoid unneeded dependency on bundler, bug 603696
+   sed -i -e '/bundler/ s:^:#:' \
+   -e 's/Bundler::GemHelper.gemspec.full_name/"rdoc"/' \
+   -e '/rubocop\/rake/ s:^:#:' \
+   -e '/RuboCop/,/end/ s:^:#:' Rakefile || die
+
+   # Remove test that is depending on the locale, which we can't garantuee.
+   sed -i -e '/def test_encode_with/,/^  end/ s:^:#:' 
test/test_rdoc_options.rb || die
+
+   # Remove test depending on FEATURES=userpriv, bug 361959
+   sed -i -e '/def test_check_files/,/^  end/ s:^:#:' 
test/test_rdoc_options.rb || die
+
+   # Remove tests for code that is not included and not listed in 
Manifest.txt
+   rm -f test/test_rdoc_i18n_{locale,text}.rb \
+  test/test_rdoc_generator_pot* || die
+}
+
+all_ruby_compile() {
+   all_fakegem_compile
+
+   if use doc ; then
+   ruby -Ilib -S exe/rdoc || die
+   fi
+}
+
+each_ruby_compile() {
+   ${RUBY} -S rake generate || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib:test:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || 
die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   for bin in rdoc ri; do
+   ruby_fakegem_binwrapper $bin /usr/bin/$bin-2
+
+   for version in ${USE_RUBY}; do
+   version=`echo ${version} | cut -c 5-`
+   if use ruby_targets_ruby${version}; then
+   ruby_fakegem_binwrapper $bin 
/usr/bin/${b

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

2018-12-27 Thread Hans de Graaff
commit: 872b6f77fd9fec6a3c6d574e675befc00e7159b8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:04:25 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=872b6f77

dev-ruby/bunny: add 2.13.0

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

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

diff --git a/dev-ruby/bunny/Manifest b/dev-ruby/bunny/Manifest
index b001bbced13..b6735a05014 100644
--- a/dev-ruby/bunny/Manifest
+++ b/dev-ruby/bunny/Manifest
@@ -2,4 +2,5 @@ DIST bunny-2.10.0.gem 202240 BLAKE2B 
7651c904b851930d044c240d83942aa1afd20c5a1e4
 DIST bunny-2.11.0.gem 202240 BLAKE2B 
29cfa68c4aeb04e3b826f02afb083dc479f851ae24c285963f56aa81e64b532577d20f10649fdc339d4b3ede6fc2619a03f35a3cc8a8bb75e3d57a1a6ebcbeb4
 SHA512 
540636337b5af36cee691e61677fc381be26d57b1e5dd175fa0dcb7f1fe8f531412ad1b1c5812d5ca9af1b2f83b09f37c2cfb1456643fb7872d4e6cf9de6b011
 DIST bunny-2.12.0.gem 204288 BLAKE2B 
d944e8d32ad5f61b891e62062f3e164b4eeb4edb969eccb429f4aaad80d6b4ad1b1f1b618f6e2a3675e218f514933de8a1776bf6f8a5d68b12abfdc40e7a0fea
 SHA512 
1cb848b7e141b2299716e01dbb64bb4072a6eee1f51a0e14b1073318dc3864579f052b938fb766be29b92cc65b4a508c80d75d20c06dfbdb2adac8dfa1f5d406
 DIST bunny-2.12.1.gem 204800 BLAKE2B 
6b199da621cd047993ccec5d9efb579c6495a2332ea75bd70cbc6bf7cb4055b70c1ec12437552e953a5066ee8a09c612dce594f0b7cc926f8fbee8d2288cefcf
 SHA512 
448b1a78db6b6204bc385f3aa6e8aa1c0cdbc440b0fd924863927b77e69ae1f7cef9b78e15c7ff3159bd46fec44b6ada943184ed45181e86e6148e3a84a5faca
+DIST bunny-2.13.0.gem 204800 BLAKE2B 
d79c52efee5853f9f5c851144d3ec329c681840d030c140109ebde5b1a400526dd5624700d289158349e655b0d4308c9732696d12fcc01cad98fa729af6cac6d
 SHA512 
38291751c6a064179f4c07e36aed751f2656ae110c89de6e006c015aea0b62ac8b7533a7b86e9933ccb779a32381e3bca6b8e21a08bc5494610ef1d58d327d2a
 DIST bunny-2.9.2.gem 201216 BLAKE2B 
c885364558c7833f77f3154765468f1c4d2f3f75c34a14f9c3dc64aacb1f8f048ff1f688914de5831f0f924975facd259e2f55667d58e468aae410f3db9da61c
 SHA512 
24e329fe2cb84a0789ac53d5cd406a999f0b415439dfbce75dc36646e53c5a138d20980489fc1dcc6741026082fc268f9adb00370478d99accf0f42a4e05ad12

diff --git a/dev-ruby/bunny/bunny-2.13.0.ebuild 
b/dev-ruby/bunny/bunny-2.13.0.ebuild
new file mode 100644
index 000..442737d09b5
--- /dev/null
+++ b/dev-ruby/bunny/bunny-2.13.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+
+# Tests require a live AMQP server.
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_EXTRADOC="ChangeLog.md README.md"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Another synchronous Ruby AMQP client"
+HOMEPAGE="https://github.com/celldee/bunny";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/amq-protocol-2.3.0:2"
+
+all_ruby_install() {
+   all_fakegem_install
+
+   insinto /usr/share/doc/${PF}
+   doins -r examples || die
+}



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

2018-12-27 Thread Hans de Graaff
commit: 806379734bbf3264dd9ac1754a2763d0d3a2ee32
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:17:40 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80637973

dev-ruby/rex-text: add ruby26

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

 dev-ruby/rex-text/rex-text-0.2.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rex-text/rex-text-0.2.21.ebuild 
b/dev-ruby/rex-text/rex-text-0.2.21.ebuild
index bb5e58149f4..c5432e9cea9 100644
--- a/dev-ruby/rex-text/rex-text-0.2.21.ebuild
+++ b/dev-ruby/rex-text/rex-text-0.2.21.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 # Specs are not bundled in the gem and upstream source is not tagged
 RUBY_FAKEGEM_RECIPE_TEST="none"



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

2018-12-27 Thread Hans de Graaff
commit: 5c91e6ea25435b4539b705d8fc7ea994e046e5ac
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:18:26 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c91e6ea

dev-ruby/rex-exploitation: add 0.1.20

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

 dev-ruby/rex-exploitation/Manifest |  1 +
 .../rex-exploitation-0.1.20.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/dev-ruby/rex-exploitation/Manifest 
b/dev-ruby/rex-exploitation/Manifest
index fdf95d75ea3..5b5098026d1 100644
--- a/dev-ruby/rex-exploitation/Manifest
+++ b/dev-ruby/rex-exploitation/Manifest
@@ -1 +1,2 @@
 DIST rex-exploitation-0.1.19.gem 79360 BLAKE2B 
47043054ee9d08775c67d54b31861ad3a454a487bdc47beb135942e267040de7611308c62a23cbf853d190fb8f88c52998dfe3b24f66a698e76e273b6a69d822
 SHA512 
244de5259e3f4f645df09d1843c34d9ea4f9ea56ba22498495792f192b79a0451810f5c7e73516da5a455c27e61b66f8ccfbc485372946fcedd179b75ff9b31e
+DIST rex-exploitation-0.1.20.gem 79360 BLAKE2B 
59dea65582647444e21cc1b0ae744c857b3007b8215c81244d37c6f3d8abcb1ef1b1d01428f306b4c5f6fdd1b3db0326de3c50fa38fa50505b4de9c05ba518e1
 SHA512 
e1df4ffde57ab40bf4b2492370d44bf064f39f657c7a8140416f51560a0be9b31ef95b1bdadaae6f6ec75c86e0978b41112a18caa1f69262c67945d3529f9990

diff --git a/dev-ruby/rex-exploitation/rex-exploitation-0.1.20.ebuild 
b/dev-ruby/rex-exploitation/rex-exploitation-0.1.20.ebuild
new file mode 100644
index 000..e00da417393
--- /dev/null
+++ b/dev-ruby/rex-exploitation/rex-exploitation-0.1.20.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_TEST="none"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="various helper mechanisms for creating exploits"
+HOMEPAGE="https://rubygems.org/gems/rex-exploitation";
+
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/jsobfu:*
+   dev-ruby/metasm:*
+   dev-ruby/rex-arch
+   dev-ruby/rex-encoder
+   dev-ruby/rex-text"
+
+all_ruby_prepare() {
+   sed -i '/bundler/d' Rakefile
+}



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

2018-12-27 Thread Hans de Graaff
commit: d2b4839ad786551f55b045cc0d375105399c41d4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:22:56 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:24:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b4839a

dev-ruby/paramesan: add ruby26

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

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

diff --git a/dev-ruby/paramesan/paramesan-0.1.1.ebuild 
b/dev-ruby/paramesan/paramesan-0.1.1.ebuild
index 44a1bac8740..19eca9715a3 100644
--- a/dev-ruby/paramesan/paramesan-0.1.1.ebuild
+++ b/dev-ruby/paramesan/paramesan-0.1.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="README.md"



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

2018-12-27 Thread Hans de Graaff
commit: 305d551729bfea3bd20e64e5e16a92406da5919b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Dec 28 07:31:24 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Dec 28 07:31:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=305d5517

dev-ruby/metaclass: add ruby26

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

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

diff --git a/dev-ruby/metaclass/metaclass-0.0.4.ebuild 
b/dev-ruby/metaclass/metaclass-0.0.4.ebuild
index 290a080c22b..2cd7524330d 100644
--- a/dev-ruby/metaclass/metaclass-0.0.4.ebuild
+++ b/dev-ruby/metaclass/metaclass-0.0.4.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-compose/

2018-12-27 Thread Mikle Kolyada
commit: 049ed1ed122a43abd4f0c22747691bb4e857f827
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 07:43:41 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 07:43:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=049ed1ed

app-emulation/docker-compose: Drop old

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

 .../docker-compose/docker-compose-1.22.0.ebuild| 78 --
 .../docker-compose/docker-compose-1.23.1.ebuild| 73 
 2 files changed, 151 deletions(-)

diff --git a/app-emulation/docker-compose/docker-compose-1.22.0.ebuild 
b/app-emulation/docker-compose/docker-compose-1.22.0.ebuild
deleted file mode 100644
index 762d474a043..000
--- a/app-emulation/docker-compose/docker-compose-1.22.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit bash-completion-r1 distutils-r1 vcs-snapshot
-
-MY_PV=${PV/_/}
-
-DESCRIPTION="Multi-container orchestration for Docker"
-HOMEPAGE="https://github.com/docker/compose";
-SRC_URI="https://github.com/docker/compose/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-CDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}]
-   =dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}]
-   =dev-python/docker-py-3.4.1[${PYTHON_USEDEP}]
-   =dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
-   =dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}]
-   =dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
-   !~dev-python/PySocks-1.5.7[${PYTHON_USEDEP}]
-   =dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
-   =dev-python/requests-2.6.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
-   =dev-python/texttable-0.9[${PYTHON_USEDEP}]
-   =dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-   =dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' 
'python2_7' )
-   $(python_gen_cond_dep '=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 
'python2_7' )
-   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' )
-"
-DEPEND="
-   ${CDEPEND}
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' 'python2_7' )
-   )
-"
-RDEPEND="${CDEPEND}"
-
-src_prepare() {
-   # Address QA issue "docker-compose.exe: missing alias (symlink) for 
completed command."
-   sed 's,^\(complete.*\) docker-compose\.exe\(.*\),\1\2,' -i 
contrib/completion/bash/docker-compose || die
-
-   eapply_user
-}
-
-python_test() {
-   ${PYTHON} -m pytest tests/unit || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   newbashcomp contrib/completion/bash/docker-compose ${PN}
-
-   insinto /usr/share/zsh/site-functions
-   doins contrib/completion/zsh/*
-
-   distutils-r1_python_install_all
-}

diff --git a/app-emulation/docker-compose/docker-compose-1.23.1.ebuild 
b/app-emulation/docker-compose/docker-compose-1.23.1.ebuild
deleted file mode 100644
index 02d47b99134..000
--- a/app-emulation/docker-compose/docker-compose-1.23.1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2018 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
-
-inherit bash-completion-r1 distutils-r1 vcs-snapshot
-
-MY_PV=${PV/_/}
-
-DESCRIPTION="Multi-container orchestration for Docker"
-HOMEPAGE="https://github.com/docker/compose";
-SRC_URI="https://github.com/docker/compose/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-CDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/cached-property-1.2.0[${PYTHON_USEDEP}]
-   >=dev-python/colorama-0.4[${PYTHON_USEDEP}]
-   >=dev-python/dockerpty-0.4.1[${PYTHON_USEDEP}]
-   >=dev-python/docker-py-3.5.0[${PYTHON_USEDEP}]
-   >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
-   >=dev-python/jsonschema-2.5.1[${PYTHON_USEDEP}]
-   >=dev-python/PySocks-1.5.6[${PYTHON_USEDEP}]
-   !~dev-python/PySocks-1.5.7[${PYTHON_USEDEP}]
-   >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.6.1[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.11.0[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.12.2[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
-   >=dev-python/texttable-0.9[${PYTHON_USEDEP}]
-   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '>=dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' 
'python2_7' )
-   $(python_gen_cond_dep

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

2018-12-27 Thread Mart Raudsepp
commit: db7d44622a25a1d4f9de50e6eda594f5f286f625
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Dec 28 07:43:52 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Dec 28 07:48:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db7d4462

media-sound/paprefs: remove old

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

 media-sound/paprefs/Manifest  |  1 -
 media-sound/paprefs/paprefs-0.9.10.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/media-sound/paprefs/Manifest b/media-sound/paprefs/Manifest
index 0f2b48ffa4d..09c30341a13 100644
--- a/media-sound/paprefs/Manifest
+++ b/media-sound/paprefs/Manifest
@@ -1,2 +1 @@
-DIST paprefs-0.9.10.tar.xz 163444 BLAKE2B 
c3e8d2ab6fef51313c188282f41e1a7dc556e792e78687da7300ff29133768cfaee8c53bb72da3822cdf0cd7e845dd6fae6c4a3651523f8a4a60e1d51c0a1e53
 SHA512 
51823fc28b82559f948361c62e3c9a0b6ca9f4c3b483d4a63258d9e061d0b4fb01d7282f6cb5bfe2679a676d63737c0282fe183cf4de9a0d5afd2c9a901e20cc
 DIST paprefs-0.9.11_pre20180621.tar.xz 221100 BLAKE2B 
d8f79865a0ce6d4491ea252fdef65e700d1ad4cfc253d8b0415a6cd454fe60685a3d647c8720cb50f85033a7bb0d411c404b4d50c43b320bd728390a8056c1de
 SHA512 
650e365b77d9d9beee4dc62b7ba5d367b55a9f0e95f39ca1e75d210dab05820b4d3485a34366e6e341fafe55b5c6ee458088666937e0220c3d91bd68aa327c53

diff --git a/media-sound/paprefs/paprefs-0.9.10.ebuild 
b/media-sound/paprefs/paprefs-0.9.10.ebuild
deleted file mode 100644
index fb32deaf509..000
--- a/media-sound/paprefs/paprefs-0.9.10.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit flag-o-matic
-
-DESCRIPTION="PulseAudio Preferences, configuration dialog for PulseAudio"
-HOMEPAGE="https://freedesktop.org/software/pulseaudio/paprefs";
-SRC_URI="https://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE="nls"
-
-RDEPEND="dev-cpp/gtkmm:2.4
-   dev-cpp/libglademm:2.4
-   >=dev-cpp/gconfmm-2.6
-   >=dev-libs/libsigc++-2.2:2
-   media-sound/pulseaudio[glib,gnome]
-   || ( x11-themes/tango-icon-theme x11-themes/adwaita-icon-theme )"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext
-   dev-util/intltool )
-   virtual/pkgconfig"
-
-src_configure() {
-   append-cxxflags -std=c++11 #568590
-   econf \
-   --disable-dependency-tracking \
-   --disable-lynx \
-   $(use_enable nls)
-}
-
-src_install() {
-   default
-   dohtml -r doc
-}



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

2018-12-27 Thread Mart Raudsepp
commit: 7a7e01e76fea243d5bba40077686b45e96cfbd1a
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Dec 28 07:37:16 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Dec 28 07:48:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7e01e7

dev-libs/vala-common: remove old

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

 dev-libs/vala-common/Manifest   |  1 -
 dev-libs/vala-common/vala-common-0.36.14.ebuild | 76 -
 2 files changed, 77 deletions(-)

diff --git a/dev-libs/vala-common/Manifest b/dev-libs/vala-common/Manifest
index d39408941c6..6ff836f3843 100644
--- a/dev-libs/vala-common/Manifest
+++ b/dev-libs/vala-common/Manifest
@@ -1,3 +1,2 @@
 DIST vala-0.36.13.tar.xz 2869616 BLAKE2B 
adb22fa45e34c2be2accde2bc928148d3115dc0757338d66feb111b4225879f21f2af5f49511eff53697127d3431d22736be827d3663ed8a5de6d8ac718b0cee
 SHA512 
7c9bb2e50f660ec28d55f755019ba81eb0358327967d8046a14691b5fe9c805f731c6277cbb732fc19af60322e2293bb25176387944ca2de709cde0c22b44d1f
-DIST vala-0.36.14.tar.xz 2874504 BLAKE2B 
217178c9018e8d6623e5997f36210ecccfa0176ae06a52bed6b54b5d6af3504c7157b9bfb162d44ef96e0b95fa2ebfff4171b935f911491f62f88c69f6087d57
 SHA512 
123c54a3ba2198b6cc7d40bfce20dee687a369e26346fb6675ce07692755ceb91bea7137f707b9f5a7972c99b12a77e9d4cc65ae055053f48909c80377661fbe
 DIST vala-0.36.15.tar.xz 2880300 BLAKE2B 
ea83bde6396f3be1c96038d63ae30b18fa070a6f7a06b75569bfed9d7792c898201a1f24d000f5b6415bb890cf975758341a97f22db74da02fcbeb3f283e546f
 SHA512 
1c8f32b2dd4248737a5a27f00f42d8bab2fe0a0790a7df5c426f4e3e1d0919ed0f6f6fd905be758ed477ba840e18f608e67811389c811ba65710094abe61

diff --git a/dev-libs/vala-common/vala-common-0.36.14.ebuild 
b/dev-libs/vala-common/vala-common-0.36.14.ebuild
deleted file mode 100644
index 7be7c4446fe..000
--- a/dev-libs/vala-common/vala-common-0.36.14.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME_ORG_MODULE="vala"
-
-inherit gnome.org
-
-DESCRIPTION="Build infrastructure for packages that use Vala"
-HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos 
~x64-solaris"
-IUSE=""
-
-# Previously ${PN} was part of dev-lang/vala
-RDEPEND="
-   ! /dev/null
-   eend $?
-   fi
-   if has_version ' /dev/null
-   eend $?
-   fi
-   if has_version ' /dev/null
-   eend $?
-   fi
-   if has_version ' /dev/null
-   eend $?
-   if [[ -f "${EROOT}usr/share/vala-0.16/Makefile.vapigen" ]]; then
-   ebegin "Removing old vala-0.16 makefile template"
-   rm "${EROOT}usr/share/vala-0.16/Makefile.vapigen" &> 
/dev/null
-   eend $?
-   fi
-   fi
-   if has_version ' /dev/null
-   eend $?
-   if [[ -f "${EROOT}usr/share/vala-0.18/Makefile.vapigen" ]]; then
-   ebegin "Removing old vala-0.18 makefile template"
-   rm "${EROOT}usr/share/vala-0.18/Makefile.vapigen" &> 
/dev/null
-   eend $?
-   fi
-   fi
-}



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

2018-12-27 Thread Mart Raudsepp
commit: d137297568ef80b4b69fc1081403bb719b4dc08f
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Dec 28 07:41:26 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Dec 28 07:48:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1372975

x11-libs/libwnck: remove old

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

 x11-libs/libwnck/Manifest  |  1 -
 x11-libs/libwnck/libwnck-3.24.1.ebuild | 44 --
 2 files changed, 45 deletions(-)

diff --git a/x11-libs/libwnck/Manifest b/x11-libs/libwnck/Manifest
index 417a185c59c..326088e4426 100644
--- a/x11-libs/libwnck/Manifest
+++ b/x11-libs/libwnck/Manifest
@@ -1,3 +1,2 @@
 DIST libwnck-2.31.0.tar.xz 630792 BLAKE2B 
8201537d3c9a8a0a8668fc16d33a8eaa05c14312401f1c763c922402df04ef03260dd259f5c46508f85390f7aefd551e83143e654b24b412272dddb7c7c4bd62
 SHA512 
54262a08882021f08f3ba7f2ddfa33fc1f02e391a0f61cf999a50a089e0d277dfe13ab133c1a46e9abf0599bd24c21dacff80b51013cbb1375d2cd71ac9abbe9
-DIST libwnck-3.24.1.tar.xz 821508 BLAKE2B 
18bc01a08107e0b2b040cb6036a80cb289955aa9365b7568292aa1c29dc77758bc9b11caa57b8cff6bebb75dd1d0bf7135b0cebed1e42c6ccc1c1372c6a224b5
 SHA512 
e8a31ab2dc0c282f1e0994ce6a2ccd18678dc5c140943399262e795052b7f5da2d6a5d388a74f4b10f8fac66ab138983a9caaee4e72c92a17c01ca5c39b731e1
 DIST libwnck-3.30.0.tar.xz 800296 BLAKE2B 
5917ac8a69f6f1e0d639f301a77349015226ca6d0fc12e8b23c00a81e18f6e9dbb7716b01e50aceb15bdbd64b5b1a8295be5b931d513e120508cdf14d2d15a23
 SHA512 
79842e4645de828941ac030eeff9d232b18a51fe0d18baf5ceb2beaf897d328ee5bf3b297501e2b27e66c63d42f6546a7605a37c6d7d52ff76e9b2bc5c328128

diff --git a/x11-libs/libwnck/libwnck-3.24.1.ebuild 
b/x11-libs/libwnck/libwnck-3.24.1.ebuild
deleted file mode 100644
index eb8b6e20f37..000
--- a/x11-libs/libwnck/libwnck-3.24.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-
-inherit flag-o-matic gnome2
-
-DESCRIPTION="A window navigation construction kit"
-HOMEPAGE="https://developer.gnome.org/libwnck/stable/";
-
-LICENSE="LGPL-2+"
-SLOT="3"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
-
-IUSE="+introspection startup-notification tools"
-
-RDEPEND="
-   x11-libs/cairo[X]
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   >=dev-libs/glib-2.32:2
-   x11-libs/libX11
-   x11-libs/libXres
-   x11-libs/libXext
-   introspection? ( >=dev-libs/gobject-introspection-0.6.14:= )
-   startup-notification? ( >=x11-libs/startup-notification-0.4 )
-"
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-am-1.9
-   >=sys-devel/gettext-0.19.4
-   virtual/pkgconfig
-"
-# eautoreconf needs
-#  sys-devel/autoconf-archive
-
-src_configure() {
-   # Don't collide with SLOT=1
-   gnome2_src_configure \
-   --disable-static \
-   $(use_enable introspection) \
-   $(use_enable startup-notification) \
-   $(use_enable tools) \
-   --program-suffix=-${SLOT}
-}



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

2018-12-27 Thread Mart Raudsepp
commit: 0aa00263009d81725871355536f077de9f34cde5
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Dec 28 07:35:49 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Dec 28 07:48:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aa00263

dev-lang/vala: remove old

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

 dev-lang/vala/Manifest|  1 -
 dev-lang/vala/vala-0.36.14.ebuild | 40 ---
 2 files changed, 41 deletions(-)

diff --git a/dev-lang/vala/Manifest b/dev-lang/vala/Manifest
index 35ca7d7ce13..f9ff1a25bfa 100644
--- a/dev-lang/vala/Manifest
+++ b/dev-lang/vala/Manifest
@@ -2,5 +2,4 @@ DIST vala-0.32.1.tar.xz 2759528 BLAKE2B 
cce23844ee5769216ef5cccb20476f4bdd2cb809
 DIST vala-0.34.16.tar.xz 2795676 BLAKE2B 
64428099c209e13a6aad09233af650f412efa191ff4873fae1dbfb9bcc252e13d4e152733c9f199cd23323872fd912807a685980f651c1f784bfaffae7bf4162
 SHA512 
6411d55524a6c717c2eaf5cc1231ac931400e3f66d151a8b8856910258eb5bd7affe3a90946de34feb51aabfafce721b8d57f61e0475095b275d20b73cc4bbec
 DIST vala-0.34.9.tar.xz 2783952 BLAKE2B 
e90728075ac546e8abc125886182abd5fc357be5138bfea1ed058f41bf07968e55e032469cc068cefdb6a4d53f1c029ca7e728c57b00f6b9845e32c4410e8258
 SHA512 
8128dfbb50d0db2317feb4a358310de972ecb6f4dccaceb4d55cf3a024f4d83422e3137c92238e1a0a0b4766367ad307909a1310445017c71944ac30fc68d01f
 DIST vala-0.36.13.tar.xz 2869616 BLAKE2B 
adb22fa45e34c2be2accde2bc928148d3115dc0757338d66feb111b4225879f21f2af5f49511eff53697127d3431d22736be827d3663ed8a5de6d8ac718b0cee
 SHA512 
7c9bb2e50f660ec28d55f755019ba81eb0358327967d8046a14691b5fe9c805f731c6277cbb732fc19af60322e2293bb25176387944ca2de709cde0c22b44d1f
-DIST vala-0.36.14.tar.xz 2874504 BLAKE2B 
217178c9018e8d6623e5997f36210ecccfa0176ae06a52bed6b54b5d6af3504c7157b9bfb162d44ef96e0b95fa2ebfff4171b935f911491f62f88c69f6087d57
 SHA512 
123c54a3ba2198b6cc7d40bfce20dee687a369e26346fb6675ce07692755ceb91bea7137f707b9f5a7972c99b12a77e9d4cc65ae055053f48909c80377661fbe
 DIST vala-0.36.15.tar.xz 2880300 BLAKE2B 
ea83bde6396f3be1c96038d63ae30b18fa070a6f7a06b75569bfed9d7792c898201a1f24d000f5b6415bb890cf975758341a97f22db74da02fcbeb3f283e546f
 SHA512 
1c8f32b2dd4248737a5a27f00f42d8bab2fe0a0790a7df5c426f4e3e1d0919ed0f6f6fd905be758ed477ba840e18f608e67811389c811ba65710094abe61

diff --git a/dev-lang/vala/vala-0.36.14.ebuild 
b/dev-lang/vala/vala-0.36.14.ebuild
deleted file mode 100644
index 357b5f50d91..000
--- a/dev-lang/vala/vala-0.36.14.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit gnome2
-
-DESCRIPTION="Compiler for the GObject type system"
-HOMEPAGE="https://wiki.gnome.org/Projects/Vala";
-
-LICENSE="LGPL-2.1"
-SLOT="0.36"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/vala-common-${PV}
-"
-DEPEND="${RDEPEND}
-   !${CATEGORY}/${PN}:0
-   dev-libs/libxslt
-   sys-devel/flex
-   virtual/pkgconfig
-   virtual/yacc
-   test? (
-   dev-libs/dbus-glib
-   >=dev-libs/glib-2.26:2
-   dev-libs/gobject-introspection )
-"
-
-src_configure() {
-   # bug 483134
-   export GIT_CEILING_DIRECTORIES="${WORKDIR}"
-
-   # weasyprint enables generation of PDF from HTML
-   gnome2_src_configure \
-   --disable-unversioned \
-   VALAC=: \
-   WEASYPRINT=:
-}



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

2018-12-27 Thread Mart Raudsepp
commit: 0dbf02ad82b088f6f71bb8d3dfbeedbf9d0ab85c
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Dec 28 07:47:23 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Dec 28 07:48:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dbf02ad

media-sound/pulseaudio: remove old

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

 media-sound/pulseaudio/Manifest|   1 -
 .../files/pulseaudio-11.1-glibc-2.27.patch |  59 
 .../files/pulseaudio-11.1-qpaeq-pyqt5-1.patch  | 198 ---
 .../files/pulseaudio-11.1-qpaeq-pyqt5-2.patch  |  31 --
 media-sound/pulseaudio/metadata.xml|  14 +-
 media-sound/pulseaudio/pulseaudio-11.1-r1.ebuild   | 363 -
 6 files changed, 2 insertions(+), 664 deletions(-)

diff --git a/media-sound/pulseaudio/Manifest b/media-sound/pulseaudio/Manifest
index 2dcd18e020a..51ef3ffb093 100644
--- a/media-sound/pulseaudio/Manifest
+++ b/media-sound/pulseaudio/Manifest
@@ -1,2 +1 @@
-DIST pulseaudio-11.1.tar.xz 1648924 BLAKE2B 
eea767efb6529436a6c2aa7d5ccaccdbda2338ad8db639ad333598b1589d259acf71ef34e904a240710f5343864fa868789eaa7f7cae1b07902ebd989fe83e12
 SHA512 
8863d8d7aede0d9a4d158e84e7bece91747c335f9ac98c7b21fafe76b762f8817e1125307aa46e561e540d2c40525e91f51a55ec34ac55d58fd5980199856a7a
 DIST pulseaudio-12.2.tar.xz 1665092 BLAKE2B 
2e36efc5142c1e379cc2b135f4126f03a31831b26efe60f7cdf128af6e23fab25706a5609644d0b387530021055f87525fe60d527cd3a087f51bfd58e810644f
 SHA512 
877754c1838b3cb042dbc18a5f1cc3cf313ffcaee7a64703330406d1f86279c34f1107634ac3083b158365e6757fbacf5ec406bc3c5788d291de67b77a561a4e

diff --git a/media-sound/pulseaudio/files/pulseaudio-11.1-glibc-2.27.patch 
b/media-sound/pulseaudio/files/pulseaudio-11.1-glibc-2.27.patch
deleted file mode 100644
index a89167b603d..000
--- a/media-sound/pulseaudio/files/pulseaudio-11.1-glibc-2.27.patch
+++ /dev/null
@@ -1,59 +0,0 @@
-From: Tanu Kaskinen 
-Date: Wed, 24 Jan 2018 03:51:49 +0200
-Subject: memfd-wrappers: only define memfd_create() if not already defined
-
-glibc 2.27 is to be released soon, and it will provide memfd_create().
-If glibc provides the function, we must not define it ourselves,
-otherwise building fails due to conflict between the two implementations
-of the same function.
-
-BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=104733
-(cherry picked from commit dfb0460fb4743aec047cdf755a660a9ac2d0f3fb)

- configure.ac   | 3 +++
- src/pulsecore/memfd-wrappers.h | 7 ---
- 2 files changed, 7 insertions(+), 3 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 77b5ff5..3a71fd8 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -607,6 +607,9 @@ AS_IF([test "x$enable_memfd" = "xyes" && test 
"x$HAVE_MEMFD" = "x0"],
- [AC_MSG_ERROR([*** Your Linux kernel does not support memfd shared memory.
-   *** Use linux v3.17 or higher for such a feature.])])
- 
-+AS_IF([test "x$HAVE_MEMFD" = "x1"],
-+AC_CHECK_FUNCS([memfd_create]))
-+
- AC_SUBST(HAVE_MEMFD)
- AM_CONDITIONAL([HAVE_MEMFD], [test "x$HAVE_MEMFD" = x1])
- AS_IF([test "x$HAVE_MEMFD" = "x1"], AC_DEFINE([HAVE_MEMFD], 1, [Have memfd 
shared memory.]))
-diff --git a/src/pulsecore/memfd-wrappers.h b/src/pulsecore/memfd-wrappers.h
-index 3bed9b2..c7aadfd 100644
 a/src/pulsecore/memfd-wrappers.h
-+++ b/src/pulsecore/memfd-wrappers.h
-@@ -20,13 +20,14 @@
-   License along with PulseAudio; if not, see .
- ***/
- 
--#ifdef HAVE_MEMFD
-+#if defined(HAVE_MEMFD) && !defined(HAVE_MEMFD_CREATE)
- 
- #include 
- #include 
- 
- /*
-- * No glibc wrappers exist for memfd_create(2), so provide our own.
-+ * Before glibc version 2.27 there was no wrapper for memfd_create(2),
-+ * so we have to provide our own.
-  *
-  * Also define memfd fcntl sealing macros. While they are already
-  * defined in the kernel header file , that file as
-@@ -63,6 +64,6 @@ static inline int memfd_create(const char *name, unsigned 
int flags) {
- #define F_SEAL_WRITE0x0008  /* prevent writes */
- #endif
- 
--#endif /* HAVE_MEMFD */
-+#endif /* HAVE_MEMFD && !HAVE_MEMFD_CREATE */
- 
- #endif

diff --git a/media-sound/pulseaudio/files/pulseaudio-11.1-qpaeq-pyqt5-1.patch 
b/media-sound/pulseaudio/files/pulseaudio-11.1-qpaeq-pyqt5-1.patch
deleted file mode 100644
index 62012c12147..000
--- a/media-sound/pulseaudio/files/pulseaudio-11.1-qpaeq-pyqt5-1.patch
+++ /dev/null
@@ -1,198 +0,0 @@
-From: =?utf-8?q?Andrius_=C5=A0tikonas?= 
-Date: Mon, 20 Nov 2017 19:56:53 +
-Subject: qpaeq: port to PyQt5
-
-(cherry picked from commit 480e0e74f43565d7ece72141666961ae8cc2ed75)

- src/utils/qpaeq | 68 -
- 1 file changed, 34 insertions(+), 34 deletions(-)
-
-diff --git a/src/utils/qpaeq b/src/utils/qpaeq
-index ac4b9e4..508b233 100755
 a/src/utils/qpaeq
-+++ b/src/utils/qpaeq
-@@ -18,13 +18,13

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

2018-12-27 Thread Mikle Kolyada
commit: 01723a71748721ed41fbb88de9d8abba4591d478
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Dec 28 07:56:24 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Dec 28 07:56:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01723a71

dev-libs/libressl: restore s390 keywords

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

 dev-libs/libressl/libressl-2.6.5.ebuild | 2 +-
 dev-libs/libressl/libressl-2.7.4.ebuild | 4 ++--
 dev-libs/libressl/libressl-2.7.5.ebuild | 2 +-
 dev-libs/libressl/libressl-2.8.0.ebuild | 4 ++--
 dev-libs/libressl/libressl-2.8.1.ebuild | 4 ++--
 dev-libs/libressl/libressl-2.8.2.ebuild | 2 +-
 dev-libs/libressl/libressl-2.8.3.ebuild | 2 +-
 dev-libs/libressl/libressl-2.9.0.ebuild | 2 +-
 8 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev-libs/libressl/libressl-2.6.5.ebuild 
b/dev-libs/libressl/libressl-2.6.5.ebuild
index 89d0ddacb56..d85d0de9b3c 100644
--- a/dev-libs/libressl/libressl-2.6.5.ebuild
+++ b/dev-libs/libressl/libressl-2.6.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6

diff --git a/dev-libs/libressl/libressl-2.7.4.ebuild 
b/dev-libs/libressl/libressl-2.7.4.ebuild
index 1c15a09a5fa..288540105ec 100644
--- a/dev-libs/libressl/libressl-2.7.4.ebuild
+++ b/dev-libs/libressl/libressl-2.7.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/45"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 

diff --git a/dev-libs/libressl/libressl-2.7.5.ebuild 
b/dev-libs/libressl/libressl-2.7.5.ebuild
index ca91bdfc137..288540105ec 100644
--- a/dev-libs/libressl/libressl-2.7.5.ebuild
+++ b/dev-libs/libressl/libressl-2.7.5.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/45"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 

diff --git a/dev-libs/libressl/libressl-2.8.0.ebuild 
b/dev-libs/libressl/libressl-2.8.0.ebuild
index 1c15a09a5fa..288540105ec 100644
--- a/dev-libs/libressl/libressl-2.8.0.ebuild
+++ b/dev-libs/libressl/libressl-2.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/45"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 

diff --git a/dev-libs/libressl/libressl-2.8.1.ebuild 
b/dev-libs/libressl/libressl-2.8.1.ebuild
index 45e86959cf5..18d0296fcb2 100644
--- a/dev-libs/libressl/libressl-2.8.1.ebuild
+++ b/dev-libs/libressl/libressl-2.8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/46"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86"
 IUSE="+asm static-libs test"
 REQUIRED_USE="test? ( static-libs )"
 

diff --git a/dev-libs/libressl/libressl-2.8.2.ebuild 
b/dev-libs/libressl/libressl-2.8.2.ebuild
index 4ca27fb26c1..18d0296fcb2 100644
--- a/dev-libs/libressl/libressl-2.8.2.ebuild
+++ b/dev-libs/libressl/libressl-2.8.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="ISC openssl"
 # we'll try to use the max of either.  However, if either change between
 # versions, we have to change the subslot to trigger rebuild of consumers.
 SLOT="0/46"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ar

<    1   2