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

2020-05-18 Thread Matt Turner
commit: 580a3c74ed4677d3c9754fe85087e89bb6fd279d
Author: Matt Turner  gentoo  org>
AuthorDate: Tue May 19 03:55:21 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue May 19 03:56:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=580a3c74

dev-util/catalyst: Drop PYTHON_COMPAT=python3_6

We're using python 3.7 features in git.

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

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

diff --git a/dev-util/catalyst/catalyst-.ebuild 
b/dev-util/catalyst/catalyst-.ebuild
index e50d1271d9a..2c7b1791e8c 100644
--- a/dev-util/catalyst/catalyst-.ebuild
+++ b/dev-util/catalyst/catalyst-.ebuild
@@ -12,7 +12,7 @@ else
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
 fi
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{7,8} )
 DISTUTILS_USE_SETUPTOOLS=no
 
 inherit distutils-r1 ${SRC_ECLASS}



[gentoo-commits] repo/gentoo:master commit in: app-emulation/vagrant/files/, app-emulation/vagrant/

2020-05-18 Thread Georgy Yakovlev
commit: ff3405ff6ce995c680819e26126d6718e8e1e3eb
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue May 19 03:27:46 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue May 19 03:27:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3405ff

app-emulation/vagrant: drop 2.2.6

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-emulation/vagrant/Manifest |  1 -
 app-emulation/vagrant/files/support-vbox-6.1.patch | 75 --
 app-emulation/vagrant/vagrant-2.2.6-r1.ebuild  | 92 --
 3 files changed, 168 deletions(-)

diff --git a/app-emulation/vagrant/Manifest b/app-emulation/vagrant/Manifest
index 826fa92c652..d686f4587be 100644
--- a/app-emulation/vagrant/Manifest
+++ b/app-emulation/vagrant/Manifest
@@ -1,3 +1,2 @@
-DIST vagrant-2.2.6.tar.gz 1285530 BLAKE2B 
802537b56429366ab0dab08d5490f2a5c1ec3810e9c04573ccd11f27078fc375f092ed70b27a7846813cbde5fdce0aa90399eba07e19a9d6ae7e11cb47204efe
 SHA512 
6d8b5b1d4e5cc482404cf4c59e1b7cf9502a9819569b5098e44874733cee706f26adb4ac7994abe7e3307ca69d3003e2604dc859ce460c53d766d78b8d9fe22a
 DIST vagrant-2.2.7.tar.gz 2173893 BLAKE2B 
bf905cb25a905e4fb79ce9c1fb59ad5520b5176d5681dfdc22855ca0a7520535346d2aebffe47162a1f8ca008083c94426e9de92b6d92de4373c654784605c7e
 SHA512 
3455b74c8a867ab37ca9873187a98cdb80feb22a400c4e9f2266897da815815aaefbe0c166172b1c1dbd66aa49ccb1201dcbf904fd883ad34218d694e20d7f87
 DIST vagrant-2.2.9.tar.gz 2215868 BLAKE2B 
6d40827c91c86f6b11865d9949e5313c419456c573686944ecd0d1874323aa81d6f26178d5b7a16fee701c513a98b3483dbea0531d9d77dee7b7e284004e17b3
 SHA512 
15e230bcf336615f0d49a2c40db36f7f26a9f0f6fd42d2ce801f28afc663aadded4fa373e33f9102b21ee70d98563fc68e2b24ffa6c3eec321f58b2c42b0d260

diff --git a/app-emulation/vagrant/files/support-vbox-6.1.patch 
b/app-emulation/vagrant/files/support-vbox-6.1.patch
deleted file mode 100644
index 59a54630279..000
--- a/app-emulation/vagrant/files/support-vbox-6.1.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-From fb4e6985e142da56bad143d70600cd3695c91757 Mon Sep 17 00:00:00 2001
-From: Brian Cain 
-Date: Wed, 11 Dec 2019 13:25:11 -0800
-Subject: [PATCH] Fixes #11249: Add VirtualBox provider support for version
- 6.1.x
-
-This commit adds support for VirtualBox version 6.1.x. It simply
-inherits from the base 6.0.x provider class.

- plugins/providers/virtualbox/driver/meta.rb  |  1 +
- .../providers/virtualbox/driver/version_6_1.rb   | 16 
- plugins/providers/virtualbox/plugin.rb   |  1 +
- website/source/docs/virtualbox/index.html.md |  2 +-
- 4 files changed, 19 insertions(+), 1 deletion(-)
- create mode 100644 plugins/providers/virtualbox/driver/version_6_1.rb
-
-diff --git a/plugins/providers/virtualbox/driver/meta.rb 
b/plugins/providers/virtualbox/driver/meta.rb
-index 24547b4044..ed013737b0 100644
 a/plugins/providers/virtualbox/driver/meta.rb
-+++ b/plugins/providers/virtualbox/driver/meta.rb
-@@ -64,6 +64,7 @@ def initialize(uuid=nil)
- "5.1" => Version_5_1,
- "5.2" => Version_5_2,
- "6.0" => Version_6_0,
-+"6.1" => Version_6_1,
-   }
- 
-   if @@version.start_with?("4.2.14")
-diff --git a/plugins/providers/virtualbox/driver/version_6_1.rb 
b/plugins/providers/virtualbox/driver/version_6_1.rb
-new file mode 100644
-index 00..ebe417eb91
 /dev/null
-+++ b/plugins/providers/virtualbox/driver/version_6_1.rb
-@@ -0,0 +1,16 @@
-+require File.expand_path("../version_6_0", __FILE__)
-+
-+module VagrantPlugins
-+  module ProviderVirtualBox
-+module Driver
-+  # Driver for VirtualBox 6.1.x
-+  class Version_6_1 < Version_6_0
-+def initialize(uuid)
-+  super
-+
-+  @logger = Log4r::Logger.new("vagrant::provider::virtualbox_6_1")
-+end
-+  end
-+end
-+  end
-+end
-diff --git a/plugins/providers/virtualbox/plugin.rb 
b/plugins/providers/virtualbox/plugin.rb
-index e058ec65ad..f2fbf47e55 100644
 a/plugins/providers/virtualbox/plugin.rb
-+++ b/plugins/providers/virtualbox/plugin.rb
-@@ -59,6 +59,7 @@ module Driver
-   autoload :Version_5_1, File.expand_path("../driver/version_5_1", 
__FILE__)
-   autoload :Version_5_2, File.expand_path("../driver/version_5_2", 
__FILE__)
-   autoload :Version_6_0, File.expand_path("../driver/version_6_0", 
__FILE__)
-+  autoload :Version_6_1, File.expand_path("../driver/version_6_1", 
__FILE__)
- end
- 
- module Model
-diff --git a/website/source/docs/virtualbox/index.html.md 
b/website/source/docs/virtualbox/index.html.md
-index 558ef5f5d8..e9c1e79aad 100644
 a/website/source/docs/virtualbox/index.html.md
-+++ b/website/source/docs/virtualbox/index.html.md
-@@ -13,7 +13,7 @@ Vagrant comes with support out of the box for 
[VirtualBox](https://www.virtualbo
- a free, cross-platform consumer virtualization product.
- 
- The VirtualBox provider is 

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

2020-05-18 Thread Georgy Yakovlev
commit: 2008e1f3134cba311a262a2d60e6da7e26698e06
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue May 19 03:24:55 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue May 19 03:25:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2008e1f3

app-emulation/vagrant: bump to 2.2.9

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-emulation/vagrant/Manifest |  1 +
 app-emulation/vagrant/vagrant-2.2.9.ebuild | 93 ++
 2 files changed, 94 insertions(+)

diff --git a/app-emulation/vagrant/Manifest b/app-emulation/vagrant/Manifest
index 1f6359608f6..826fa92c652 100644
--- a/app-emulation/vagrant/Manifest
+++ b/app-emulation/vagrant/Manifest
@@ -1,2 +1,3 @@
 DIST vagrant-2.2.6.tar.gz 1285530 BLAKE2B 
802537b56429366ab0dab08d5490f2a5c1ec3810e9c04573ccd11f27078fc375f092ed70b27a7846813cbde5fdce0aa90399eba07e19a9d6ae7e11cb47204efe
 SHA512 
6d8b5b1d4e5cc482404cf4c59e1b7cf9502a9819569b5098e44874733cee706f26adb4ac7994abe7e3307ca69d3003e2604dc859ce460c53d766d78b8d9fe22a
 DIST vagrant-2.2.7.tar.gz 2173893 BLAKE2B 
bf905cb25a905e4fb79ce9c1fb59ad5520b5176d5681dfdc22855ca0a7520535346d2aebffe47162a1f8ca008083c94426e9de92b6d92de4373c654784605c7e
 SHA512 
3455b74c8a867ab37ca9873187a98cdb80feb22a400c4e9f2266897da815815aaefbe0c166172b1c1dbd66aa49ccb1201dcbf904fd883ad34218d694e20d7f87
+DIST vagrant-2.2.9.tar.gz 2215868 BLAKE2B 
6d40827c91c86f6b11865d9949e5313c419456c573686944ecd0d1874323aa81d6f26178d5b7a16fee701c513a98b3483dbea0531d9d77dee7b7e284004e17b3
 SHA512 
15e230bcf336615f0d49a2c40db36f7f26a9f0f6fd42d2ce801f28afc663aadded4fa373e33f9102b21ee70d98563fc68e2b24ffa6c3eec321f58b2c42b0d260

diff --git a/app-emulation/vagrant/vagrant-2.2.9.ebuild 
b/app-emulation/vagrant/vagrant-2.2.9.ebuild
new file mode 100644
index 000..8dddc89d151
--- /dev/null
+++ b/app-emulation/vagrant/vagrant-2.2.9.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+RUBY_FAKEGEM_GEMSPEC="vagrant.gemspec"
+RUBY_FAKEGEM_EXTRAINSTALL="keys plugins templates version.txt"
+RUBY_FAKEGEM_TASK_DOC=""
+
+inherit bash-completion-r1 ruby-fakegem
+
+DESCRIPTION="A tool for building and distributing development environments"
+HOMEPAGE="https://vagrantup.com/;
+SRC_URI="https://github.com/hashicorp/vagrant/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+virtualbox"
+RESTRICT="test"
+
+RDEPEND="${RDEPEND}
+   app-arch/libarchive
+   net-misc/curl
+   virtualbox? ( || ( app-emulation/virtualbox 
app-emulation/virtualbox-bin ) )"
+
+ruby_add_rdepend "
+   >=dev-ruby/bcrypt_pbkdf-1.0.0
+   >=dev-ruby/childprocess-3.0.0
+   >=dev-ruby/ed25519-1.2.4
+   >=dev-ruby/erubis-2.7.0
+   >=dev-ruby/hashicorp-checkpoint-0.1.5
+   >=dev-ruby/i18n-1.8:1
+   >=dev-ruby/listen-3.1.5
+   =dev-ruby/net-ssh-5.2.0:*
+   >=dev-ruby/net-sftp-2.1
+   >=dev-ruby/net-scp-1.2.0
+   dev-ruby/rest-client:2
+   dev-ruby/rubyzip:2
+   >=dev-ruby/vagrant_cloud-2.0.3
+"
+
+# upstream specifies rake>=12 but it apparently doesn't need something this
+# recent. Because vagrant builds fine with rake 10 and because stabilizing rake
+# is tricky, we specify a lower dependency requirement here. This way, we'll be
+# able to stabilize vagrant sooner.
+ruby_add_bdepend "
+   >=dev-ruby/rake-10.5.0
+"
+
+all_ruby_prepare() {
+   # remove bundler support
+   sed -i '/[Bb]undler/d' Rakefile || die
+   rm Gemfile || die
+
+   # loosen dependencies
+   sed -e 
'/hashicorp-checkpoint\|i18n\|listen\|net-ssh\|net-scp\|rake\|childprocess/s/~>/>=/'
 \
+   -i ${PN}.gemspec || die
+
+   # remove windows-specific gems
+   sed -e '/wdm\|winrm/d' \
+   -i ${PN}.gemspec || die
+
+   # remove bsd-specific gems
+   sed -e '/rb-kqueue/d' \
+   -i ${PN}.gemspec || die
+
+   # remove ruby_dep, it's unused and only listed to loosen ruby 
implementation deps
+   sed -e '/ruby_dep/d' \
+   -i ${PN}.gemspec || die
+
+   sed -e "s/@VAGRANT_VERSION@/${PV}/g" "${FILESDIR}/${PN}.in" > "${PN}" 
|| die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   newbashcomp contrib/bash/completion.sh ${PN}
+
+   # provide executable similar to upstream:
+   # 
https://github.com/hashicorp/vagrant-installers/blob/master/substrate/modules/vagrant_installer/templates/vagrant.erb
+   dobin "${PN}"
+
+   # directory for plugins.json
+   keepdir /var/lib/vagrant
+
+   insinto /usr/share/vim/vimfiles/syntax/
+   doins contrib/vim/vagrantfile.vim
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-inputstream-adaptive/

2020-05-18 Thread Craig Andrews
commit: 1680cb85efc65d08db3d00c814cf603b4a24caca
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue May 19 02:55:51 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue May 19 02:56:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1680cb85

media-plugins/kodi-inputstream-adaptive: 2.4.5 version bump

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

 media-plugins/kodi-inputstream-adaptive/Manifest   |  1 +
 .../kodi-inputstream-adaptive-2.4.5.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/media-plugins/kodi-inputstream-adaptive/Manifest 
b/media-plugins/kodi-inputstream-adaptive/Manifest
index 3a678cf6dfa..bc4d4e2eed0 100644
--- a/media-plugins/kodi-inputstream-adaptive/Manifest
+++ b/media-plugins/kodi-inputstream-adaptive/Manifest
@@ -1 +1,2 @@
 DIST kodi-inputstream-adaptive-2.4.4.tar.gz 727535 BLAKE2B 
fac4034fe01951ad592e16cb4f7978cbfb96bf7b7492d8d80c663e7a95a14647a5d68bd32a97c7a4550428359561bbb4a880544f9b76ebdb17fe829d706b
 SHA512 
5ddc8ee08144f43369d807b1a8a2b1fc2fa70a3a0063be09a47d1df021442f0a7fb46acf2399e458bb807429f38abe9bdea5b4994ab58f93f07214b330e150f2
+DIST kodi-inputstream-adaptive-2.4.5.tar.gz 731621 BLAKE2B 
8f644efcce0268833fc0688ea291558e9eaf3b0732656e865299f39cfb5cf3c51cd5dc460139fd457c83bdcaa065be916794886fbc75225d2a8eef87249147b2
 SHA512 
b38e175fb21dcc155aa5b5cda4ffdbd26336a763c9ecf8857058352a3a8f6d9a617a4999f6aed1bee4edd97d18e7a1f4e4a2318cdf871982415e7dd2b519f498

diff --git 
a/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5.ebuild
 
b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5.ebuild
new file mode 100644
index 000..6187d9c2869
--- /dev/null
+++ 
b/media-plugins/kodi-inputstream-adaptive/kodi-inputstream-adaptive-2.4.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Kodi's Adaptive inputstream addon"
+HOMEPAGE="https://github.com/peak3d/inputstream.adaptive.git;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/peak3d/inputstream.adaptive.git;
+   inherit git-r3
+   ;;
+*)
+   KEYWORDS="~amd64 ~x86"
+   CODENAME="Leia"
+   
SRC_URI="https://github.com/peak3d/inputstream.adaptive/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/inputstream.adaptive-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   dev-libs/expat
+   =media-tv/kodi-18*
+   =media-libs/kodi-platform-18*
+   =dev-libs/libplatform-2*
+   "
+RDEPEND="
+   ${DEPEND}
+   "



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

2020-05-18 Thread Zac Medico
commit: 5d0f1e09f3d1299162268e298a23674fb9d88985
Author: Zac Medico  gentoo  org>
AuthorDate: Tue May 19 00:59:00 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Tue May 19 01:12:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d0f1e09

sys-cluster/kubeletctl: new package

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

 sys-cluster/kubeletctl/Manifest  | 371 +
 sys-cluster/kubeletctl/kubeletctl-1.2.ebuild | 401 +++
 sys-cluster/kubeletctl/metadata.xml  |  11 +
 3 files changed, 783 insertions(+)

diff --git a/sys-cluster/kubeletctl/Manifest b/sys-cluster/kubeletctl/Manifest
new file mode 100644
index 000..29fccf79aa5
--- /dev/null
+++ b/sys-cluster/kubeletctl/Manifest
@@ -0,0 +1,371 @@
+DIST cloud.google.com%2Fgo%2F@v%2Fv0.26.0.mod 27 BLAKE2B 
814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b
 SHA512 
5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273
+DIST cloud.google.com%2Fgo%2F@v%2Fv0.34.0.mod 27 BLAKE2B 
814b0fa8f12d5ce6171fa629b5a7eb34e0e882cc0c5430986896bb38c243e08dc83098f271227f4ba019e78f16dc97fbb381e833aff1819833d243b08add916b
 SHA512 
5132f3438533427c0ab0fbb7a12112a7830ea9122662ed46019ff89c71d9cf80c02edc32dd5c892da572031b5a2cce100f2602fa6a19bea6be7c02781f701273
+DIST cloud.google.com%2Fgo%2F@v%2Fv0.38.0.mod 1006 BLAKE2B 
9d321b9bad7e881795f0215828ca23ff5753b8ca9cbe64ca085bcd2f64d36d0d5bdd5c3e80eb64e19e067748b6b23eb7837827cede0e75a840ed1cfa2b00c1a8
 SHA512 
8aa90e6ce7d50af3db56c8a7abdd16822f6351cabb96e6b75ac0cdefa15bb4a2d402aa84e6212fec4d599ec6f13cb1891bb37f41200e6a05a27642375a89a959
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2F@v%2Fv0.9.0.mod 315 
BLAKE2B 
08bd66cb04b1bd32588ef1eb6059f3a2cd208a20a9ba12816e50fa39f6258d1e50ced24d78da3df80f9ebbf19db7a6c42d04fa1934eb66637ec612da86704c6e
 SHA512 
72bb5cdb3b87c148cf4b613f3976076ffa0f8406d0d85b92b8f0311ca260e643c7855a939292dd82c66a71d4c5a1419a90b13f886bd65c7138062c34eaeae0b8
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2F@v%2Fv0.9.6.mod 315 
BLAKE2B 
649b180d4b41279bde5a3ad4e7a8380b3e23d9428af2b2904612abfce99e5abf53ab7fa27ac7805faff0be8c2d52d685c7edc1380b909ad2c033beaae87be7f3
 SHA512 
eca3516d2491afa621522aae14e0e5c8632b984d8c6daff3a69df9b2b46416eeacdbd11de8cbc2247fb1119051466d24a4c178b065b630a684be8476be1ef15c
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fadal%2F@v%2Fv0.5.0.mod 325 
BLAKE2B 
1ff6851c8e73b2a566cfafdc2ebd259478b39258f785040407cd853433312ef10e492da8dc0dc9cbd4a2d2470e2715ef5ba4c05100c35f5b0664c9b23879e721
 SHA512 
61c06f593c1759bb078042d461319db2f91afcbddf50186d09195021eab865159ca5c017eb078d354d7db590365846e401ec3f91a2cbbf753bc32d7111683bd2
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fadal%2F@v%2Fv0.8.2.mod 371 
BLAKE2B 
778ec4567ccf1533e9815f0f855933c94c2a4aed6285f10815258c71a39fb706ed130db03c85f8b944b764978ae584f7cc675cdd3688e6a93961f4437bf3aca2
 SHA512 
02605c296a8277e72074a0b3049ef0ee87597b67ba8d1e008d17746ee2dfc2551e2517e60f972135d368b27b899452e1c768c3b13afb9315da48173733450fe7
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fdate%2F@v%2Fv0.1.0.mod 59 
BLAKE2B 
7816ef9919ec514b2eafce6a859edeae85735475da10c34c64ecaf9a53a07748b02a424bd0a16b0413c499a2eacea0fcd6ce7807b651acd9f67ecd00b5fe55ce
 SHA512 
d5eb17738399f8b8e1a1be409ba5b24520b848b3be5fced46c726499f9df5bf5a54233c6c0c9b8fe896834bcf5132f39ba0b91bac0ce6347b9aef7c8bf93f912
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fdate%2F@v%2Fv0.2.0.mod 113 
BLAKE2B 
7822bd4ddff863c4fe4e3caf59e722121828f61b08d5504216e1fea40401108199708fb07d7cef2b9dd7ddc7ed7d8feb4e0c823b8a7962217881601107404ca2
 SHA512 
08860dbcc27a83f322c07cb64b9fb1dad3810f8a7dda4ad5914b3fb8dcdc14fd20640e5aa78ad5dbd220c6dd95b8c9ab6e15c4bd75dc476db743f1c5df1fac95
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fmocks%2F@v%2Fv0.1.0.mod 60 
BLAKE2B 
b5b6b8c4b80b9fb33bdabf18d6d34357cb207329df96da5fa36f85c18a62135da9d1550acc17eda531ec3fbf225781c5f9fa8f8c4a50730a8bda95e9fd567fe9
 SHA512 
98a8b2ccac214ef2a701c0bca2bb3512acdab19294d516ae6c8fe028d87393b055aa2e589cb273704ea4f612a1c949194014394aeb7d8ecd92233401e6ca35a6
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fmocks%2F@v%2Fv0.2.0.mod 60 
BLAKE2B 
b5b6b8c4b80b9fb33bdabf18d6d34357cb207329df96da5fa36f85c18a62135da9d1550acc17eda531ec3fbf225781c5f9fa8f8c4a50730a8bda95e9fd567fe9
 SHA512 
98a8b2ccac214ef2a701c0bca2bb3512acdab19294d516ae6c8fe028d87393b055aa2e589cb273704ea4f612a1c949194014394aeb7d8ecd92233401e6ca35a6
+DIST github.com%2F!azure%2Fgo-autorest%2Fautorest%2Fmocks%2F@v%2Fv0.3.0.mod 
114 BLAKE2B 
fec15aa5a362d73dbe839818a965fbf0a0183e7de3fa5b739739e7dcac4e88ae037848ccd7e6a35a4f6c3d7bc26988e0e1219ef6a3527c2533598777a0e5fdd2
 SHA512 

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

2020-05-18 Thread Lars Wendler
commit: 9a49e70e9e707f7bc83a13d4ffba53b892b02514
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue May 19 00:55:16 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue May 19 00:55:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a49e70e

sys-libs/libsmbios: Removed old

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

 sys-libs/libsmbios/Manifest  |  1 -
 sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild | 79 
 sys-libs/libsmbios/libsmbios-2.4.2.ebuild| 79 
 3 files changed, 159 deletions(-)

diff --git a/sys-libs/libsmbios/Manifest b/sys-libs/libsmbios/Manifest
index a55b7cb2abb..073360b7c6e 100644
--- a/sys-libs/libsmbios/Manifest
+++ b/sys-libs/libsmbios/Manifest
@@ -1,2 +1 @@
-DIST libsmbios-2.4.2.tar.gz 668042 BLAKE2B 
2106206dce95e481ae36e033d2abe9f39402368a09686b92fd1de7d85e87ea494514e85bdf1267adb6b52060a4e6bb6001714c5d891a4c0342c814942c0458af
 SHA512 
51d1b11447d50b768658473d01bcb6cc7f9dd5c96c26ec343f222115ffb5047ca1f035a0bfb67f94f53165eaea7a0d9b70cf01f0a30885bbac153bf761bd
 DIST libsmbios-2.4.3.tar.gz 644140 BLAKE2B 
684bff4f6cf755796f785e9a93d4ddbe2a1af52082cdebc27d203772a6a2a0259edb4b9d19921f90fc78b48d54700223fbc2628665b963ebcb601010ff4340ab
 SHA512 
7f6fb36fa9653e123b416b275953fb5652025e76dac3b4ec5600168e193ea56f8ac3ea1a3b5db29d2770e73d88152d712a35bf77a9b3fc5596570fae885585ad

diff --git a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild 
b/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
deleted file mode 100644
index 229a12173e1..000
--- a/sys-libs/libsmbios/libsmbios-2.4.2-r1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit autotools flag-o-matic python-single-r1
-
-DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="http://linux.dell.com/files/libsmbios/;
-SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 OSL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
-IUSE="doc graphviz nls python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/libxml2
-   sys-libs/zlib
-   nls? ( virtual/libintl )
-   python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   graphviz? ( media-gfx/graphviz )
-   nls? ( sys-devel/gettext )
-   test? ( >=dev-util/cppunit-1.9.6 )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
-)
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-
-   # Don't build yum-plugin - we don't need it
-   sed '/yum-plugin/d' -i Makefile.am || die
-
-   eautoreconf
-}
-
-src_configure() {
-   #Remove -O3 for bug #290097
-   replace-flags -O3 -O2
-
-   local myeconfargs=(
-   $(use_enable doc doxygen)
-   $(use_enable graphviz)
-   $(use_enable nls)
-   $(use_enable python)
-   $(use_enable static-libs static)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   emake install DESTDIR="${D}"
-
-   if use python ; then
-   python_scriptinto /usr/sbin
-   python_doscript 
"${ED}"/usr/sbin/smbios-{{keyboard,thermal,token,wakeup,wireless}-ctl,lcd-brightness,passwd,sys-info}
-   fi
-
-   insinto /usr/include/
-   doins -r src/include/smbios_c
-
-   einstalldocs
-
-   if ! use static-libs ; then
-   find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die
-   fi
-}

diff --git a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild 
b/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
deleted file mode 100644
index 93eb8476f8c..000
--- a/sys-libs/libsmbios/libsmbios-2.4.2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_6 )
-
-inherit autotools flag-o-matic python-single-r1
-
-DESCRIPTION="Provide access to (SM)BIOS information"
-HOMEPAGE="http://linux.dell.com/files/libsmbios/;
-SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2 OSL-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
-IUSE="doc graphviz nls python static-libs test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-libs/libxml2
-   sys-libs/zlib
-   nls? ( virtual/libintl )
-   python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-   graphviz? ( media-gfx/graphviz )
-   nls? ( sys-devel/gettext )
-   test? ( >=dev-util/cppunit-1.9.6 )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-2.2.28-cppunit-tests.patch"
-)

[gentoo-commits] repo/gentoo:master commit in: mail-filter/pypolicyd-spf/

2020-05-18 Thread Michael Orlitzky
commit: 86d8d03b76dd557bcaa6395c49d54a4eafbdc24e
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue May 19 00:34:41 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue May 19 00:34:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d8d03b

mail-filter/pypolicyd-spf: remove old "unused" version.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 .../pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild   | 42 --
 1 file changed, 42 deletions(-)

diff --git a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild 
b/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild
deleted file mode 100644
index 19a17d76236..000
--- a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-
-# The built-in ipaddress module handles the parsing of IP addresses. If
-# python is built without ipv6 support, then ipaddress can't parse ipv6
-# addresses, and the daemon will crash if it sees an ipv6 SPF record. In
-# other words, it's completely broken.
-PYTHON_REQ_USE="ipv6"
-
-inherit distutils-r1
-
-DESCRIPTION="Python-based policy daemon for Postfix SPF verification"
-HOMEPAGE="https://launchpad.net/pypolicyd-spf;
-SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="dev-python/pyspf[${PYTHON_USEDEP}]"
-
-RDEPEND="${DEPEND}
-   dev-python/authres[${PYTHON_USEDEP}]"
-
-DOCS=( CHANGES policyd-spf.conf.commented README README.per_user_whitelisting )
-
-python_prepare_all() {
-   # The "real" config file mentions the commented one, so we point
-   # users in the right direction.
-   local oldconf="policyd-spf.conf.commented"
-   local newconf="/usr/share/doc/${PF}/${oldconf}"
-
-   sed -i "1 s~ ${oldconf}~,\n#  ${newconf}~" policyd-spf.conf \
-   || die 'failed to update commented config file path'
-
-   distutils-r1_python_prepare_all
-}



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

2020-05-18 Thread Patrick McLean
commit: 2f08bc8d4147c9b8e2655ffd9766b516a971860e
Author: Patrick McLean  sony  com>
AuthorDate: Mon May 18 23:19:18 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon May 18 23:19:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f08bc8d

sys-cluster/ceph-15.2.2: Version bump

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

 sys-cluster/ceph/Manifest |  2 +-
 .../ceph/{ceph-15.2.1-r1.ebuild => ceph-15.2.2.ebuild}| 11 +++
 2 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index 4e3cf108066..93bc8f40307 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,4 +1,4 @@
 DIST ceph-12.2.12.tar.gz 77467762 BLAKE2B 
a5224432121db9ef49c1e22771d847399df2f7881cd9c2e185eca12096efb79d21578659d248eb5bae678924983d57452d370e23ab7e78663764d7bea834a461
 SHA512 
e694c9a8c1f9836c08fb74b54423bdc16d4900252e34643c56cf1a615d4dacddfb13df06a6a9f68bb9d438f5f07069ed358f9fa4b5a362640a3046f9c7722dcc
 DIST ceph-14.2.7.tar.gz 116647114 BLAKE2B 
f6971324b0467cfdb863db553b6feacaf3607b14fb9adae2808bd6e5514fc5ce218482c412b80902c22a74b883ed697f2c126bc687c8733a83de5b970593efa2
 SHA512 
59f475e56053ba5e7e3a482a3a91b4d44272e6ec8051b92783de76c09c0d967a7ef76676db998968a709e48f08e90828dd8f86bd96a7c3fd111d48bfb7fd93b1
 DIST ceph-14.2.9.tar.gz 128419205 BLAKE2B 
bace7469d9066a3da7320a0eb894013fae5b7139c15679dddae7df28c593a1029956234a1ba0d3bbdf1639e3a975aa776c695efefb915113a16099c80d563675
 SHA512 
0a26372d0037c32fe1d24be880e272fcce5089b02adfb0e791e0406155f6e66c913fa43762028f49c1fa3f30c6c8d819c521dd11702a37cc7040dfd3097c068e
-DIST ceph-15.2.1.tar.gz 147551715 BLAKE2B 
fcb5683493431ffc75aced3be7faf5a0486052df695d3133572bb9728fd4863fb88117bd9b13e4bf89c7e4afeea2888bbb252df48b0f52c33ce6202a6f4f7f87
 SHA512 
01589875078466321aaaeead8d7e21baf670e68c3d1f3168de188f3ad93eada745affb9da30217c8cb4938cbfdbe6bdf6bfd074fe8eb01863e1e8448f06a2304
+DIST ceph-15.2.2.tar.gz 147809547 BLAKE2B 
4d142fbcc4a729199c77bbff5a1cbf8c4caea8c8b9e7def6a6a6b60f492564634c5ae52e35d2b950c44e7fd17f7a8f05a308517e35800aa6535cb31178a3e7bb
 SHA512 
694993b45136669c4b493abab53a33bf41a6bea544f21f847a10b084b030cfe8450944490a9030e72042e85ef82bab11edf6929cc5c00340d6aecbb4d9d3f406

diff --git a/sys-cluster/ceph/ceph-15.2.1-r1.ebuild 
b/sys-cluster/ceph/ceph-15.2.2.ebuild
similarity index 98%
rename from sys-cluster/ceph/ceph-15.2.1-r1.ebuild
rename to sys-cluster/ceph/ceph-15.2.2.ebuild
index 68a4aafed5c..2d9f2924eca 100644
--- a/sys-cluster/ceph/ceph-15.2.1-r1.ebuild
+++ b/sys-cluster/ceph/ceph-15.2.2.ebuild
@@ -192,13 +192,8 @@ PATCHES=(
 )
 
 check-reqs_export_vars() {
-   if use amd64; then
-   CHECKREQS_DISK_BUILD="12G"
-   CHECKREQS_DISK_USR="460M"
-   else
-   CHECKREQS_DISK_BUILD="1400M"
-   CHECKREQS_DISK_USR="450M"
-   fi
+   CHECKREQS_DISK_BUILD="5.2G"
+   CHECKREQS_DISK_USR="510M"
 
export CHECKREQS_DISK_BUILD CHECKREQS_DISK_USR
 }
@@ -209,7 +204,7 @@ pkg_pretend() {
 }
 
 pkg_setup() {
-   python_setup 'python3*'
+   python_setup
check-reqs_export_vars
check-reqs_pkg_setup
 }



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

2020-05-18 Thread Georgy Yakovlev
commit: 812b0ff45ed8dba4dd2821ab41fff9eec4a68895
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon May 18 22:57:02 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon May 18 22:57:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812b0ff4

profiles/arch/powerpc/ppc64: remove powerdevil[bightness-control] mask

Signed-off-by: Georgy Yakovlev  gentoo.org>

 profiles/arch/powerpc/ppc64/package.use.mask | 1 -
 1 file changed, 1 deletion(-)

diff --git a/profiles/arch/powerpc/ppc64/package.use.mask 
b/profiles/arch/powerpc/ppc64/package.use.mask
index 116857295c3..76149240ff8 100644
--- a/profiles/arch/powerpc/ppc64/package.use.mask
+++ b/profiles/arch/powerpc/ppc64/package.use.mask
@@ -8,7 +8,6 @@ net-analyzer/pnp4nagios icinga
 # Georgy Yakovlev  (2020-01-25)
 # bolt not keyworded on ~ppc64
 kde-plasma/plasma-meta crypt thunderbolt
-kde-plasma/powerdevil brightness-control
 
 # Georgy Yakovlev  (2019-12-28)
 # not keyworded or irrelevant on ~ppc64, bug 679888



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

2020-05-18 Thread Georgy Yakovlev
commit: 37c76253c646acf74a1457e5548c6790a6db4ffa
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon May 18 22:24:56 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon May 18 22:33:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c76253

app-misc/ddcutil: add ~ppc64 keyword

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-misc/ddcutil/ddcutil-0.9.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/ddcutil/ddcutil-0.9.5.ebuild 
b/app-misc/ddcutil/ddcutil-0.9.5.ebuild
index 0e1d5aff693..06560df4d33 100644
--- a/app-misc/ddcutil/ddcutil-0.9.5.ebuild
+++ b/app-misc/ddcutil/ddcutil-0.9.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rockowitz/ddcutil/archive/v${PV}.tar.gz -> ${P}.tar.
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 IUSE="drm usb-monitor user-permissions video_cards_nvidia X"
 REQUIRED_USE="drm? ( X )"
 



[gentoo-commits] repo/gentoo:master commit in: acct-user/apache/

2020-05-18 Thread Andreas K. Hüttel
commit: 7f5d121b079b0b82fd7b90be4903f3741ee61a7e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May 18 22:07:46 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon May 18 22:14:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5d121b

acct-user/apache: Add user

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 acct-user/apache/apache-0.ebuild | 12 
 acct-user/apache/metadata.xml| 12 
 2 files changed, 24 insertions(+)

diff --git a/acct-user/apache/apache-0.ebuild b/acct-user/apache/apache-0.ebuild
new file mode 100644
index 000..00dcfb1ba52
--- /dev/null
+++ b/acct-user/apache/apache-0.ebuild
@@ -0,0 +1,12 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+ACCT_USER_ID=81
+ACCT_USER_GROUPS=( apache )
+ACCT_USER_HOME=/var/www
+
+acct-user_add_deps

diff --git a/acct-user/apache/metadata.xml b/acct-user/apache/metadata.xml
new file mode 100644
index 000..f93dbc1e625
--- /dev/null
+++ b/acct-user/apache/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   polynomia...@gentoo.org
+   Lars Wendler
+   
+   
+   apache-b...@gentoo.org
+   Apache project
+   
+



[gentoo-commits] repo/gentoo:master commit in: acct-user/svn/

2020-05-18 Thread Andreas K. Hüttel
commit: 7ba67bfc1b1c5e9dc9e72733c0764dec858b80f3
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri May 15 21:57:27 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon May 18 22:14:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ba67bfc

acct-user/svn: Add svn user for dev-vcs/subversion

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 acct-user/svn/metadata.xml | 12 
 acct-user/svn/svn-0.ebuild | 11 +++
 2 files changed, 23 insertions(+)

diff --git a/acct-user/svn/metadata.xml b/acct-user/svn/metadata.xml
new file mode 100644
index 000..31fa45c1822
--- /dev/null
+++ b/acct-user/svn/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   dilfri...@gentoo.org
+   Andreas K. Hüttel
+   
+   
+   zlog...@gentoo.org
+   Mikle Kolyada
+   
+

diff --git a/acct-user/svn/svn-0.ebuild b/acct-user/svn/svn-0.ebuild
new file mode 100644
index 000..6f7d567a7ed
--- /dev/null
+++ b/acct-user/svn/svn-0.ebuild
@@ -0,0 +1,11 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-user
+
+ACCT_USER_ID=399
+ACCT_USER_GROUPS=( svnusers )
+
+acct-user_add_deps



[gentoo-commits] repo/gentoo:master commit in: acct-group/svnusers/

2020-05-18 Thread Andreas K. Hüttel
commit: 818b21ac751c8b0f051011d1f0e7659aa8db5400
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri May 15 21:56:40 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon May 18 22:14:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=818b21ac

acct-group/svnusers: Add svnusers group for dev-vcs/subversion

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 acct-group/svnusers/metadata.xml  | 12 
 acct-group/svnusers/svnusers-0.ebuild |  8 
 2 files changed, 20 insertions(+)

diff --git a/acct-group/svnusers/metadata.xml b/acct-group/svnusers/metadata.xml
new file mode 100644
index 000..31fa45c1822
--- /dev/null
+++ b/acct-group/svnusers/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   dilfri...@gentoo.org
+   Andreas K. Hüttel
+   
+   
+   zlog...@gentoo.org
+   Mikle Kolyada
+   
+

diff --git a/acct-group/svnusers/svnusers-0.ebuild 
b/acct-group/svnusers/svnusers-0.ebuild
new file mode 100644
index 000..0a1c980c650
--- /dev/null
+++ b/acct-group/svnusers/svnusers-0.ebuild
@@ -0,0 +1,8 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+ACCT_GROUP_ID=399



[gentoo-commits] repo/gentoo:master commit in: acct-group/apache/

2020-05-18 Thread Andreas K. Hüttel
commit: a051f029599da186d1de13334247304c73193a30
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May 18 22:01:59 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon May 18 22:14:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a051f029

acct-group/apache: Add apache group

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 acct-group/apache/apache-0.ebuild |  8 
 acct-group/apache/metadata.xml| 12 
 2 files changed, 20 insertions(+)

diff --git a/acct-group/apache/apache-0.ebuild 
b/acct-group/apache/apache-0.ebuild
new file mode 100644
index 000..2c809ec7b00
--- /dev/null
+++ b/acct-group/apache/apache-0.ebuild
@@ -0,0 +1,8 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit acct-group
+
+ACCT_GROUP_ID=81

diff --git a/acct-group/apache/metadata.xml b/acct-group/apache/metadata.xml
new file mode 100644
index 000..f93dbc1e625
--- /dev/null
+++ b/acct-group/apache/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   polynomia...@gentoo.org
+   Lars Wendler
+   
+   
+   apache-b...@gentoo.org
+   Apache project
+   
+



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

2020-05-18 Thread Andreas K. Hüttel
commit: 65603892d09269e6d48435269f26aeb3868083c0
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon May 18 22:11:01 2020 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon May 18 22:14:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65603892

dev-vcs/subversion: Add prerelease for testing (no keywords)

Bug: https://bugs.gentoo.org/686148
Bug: https://bugs.gentoo.org/706136
Bug: https://bugs.gentoo.org/223747
Bug: https://bugs.gentoo.org/712042
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-vcs/subversion/Manifest |   1 +
 dev-vcs/subversion/subversion-1.14.0_rc2.ebuild | 537 
 2 files changed, 538 insertions(+)

diff --git a/dev-vcs/subversion/Manifest b/dev-vcs/subversion/Manifest
index 76a467c4d73..c5087c325c8 100644
--- a/dev-vcs/subversion/Manifest
+++ b/dev-vcs/subversion/Manifest
@@ -1,3 +1,4 @@
 DIST subversion-1.10.0_rc1-patches-1.tar.xz 2984 BLAKE2B 
7c9619b95ca6b433a58dc5baf3a1e1b14ef0017f714af81762b975d50a37b743788a4da65cf7f9eb8e633cbc813ad8dd974b530a19ec2d3fc74b75921f8f0c17
 SHA512 
aa7a25a253ea2da99520399d292d3e1602985392bae6dc5582003fdb9719d654638754b6e370b68b184ee6729ba3833bd511c09b2cb36f8f476b42063f55fbb2
 DIST subversion-1.12.2.tar.bz2 8506584 BLAKE2B 
535e4c6c369537baa7f9fc9123d0314de1bb8d4b3c51e0216662047fd1084ceb6a1f349de54bf575f0eb8e1041fcd6525e6cf27dbd908e2148578cb9fb807bb3
 SHA512 
b1f859b460afa54598778d8633f648acb4fa46138f7d6f0c1451e3c6a1de71df859233cd9ac7f19f0f20d7237ed3988f0a38da7552ffa58391e19d957bc7c136
 DIST subversion-1.13.0.tar.bz2 8508122 BLAKE2B 
761def1bb3a1fe5333534ebda0940b618c343f919688055cdef69552bc515ad6cd9db3ac67c8c73075487d4f45d93bb57fa467288756dfa163fc72c8e8c7b548
 SHA512 
36f390b412bf772bf894efc2aadc247f12ca30ac407e04f664c14411c3519e1bb242d1239f2f44cbcb86eafc7c413efc8eadbfe1d1e75118235a7b7adc6c85b2
+DIST subversion-1.14.0-rc2.tar.bz2 8497728 BLAKE2B 
471e9fe35f9e88d6bd2e3811789937bb609da4735cc836d58fc64e8e384666167d1b4be683f420a7db7be555c94c49cecb115ff25649acd74acd79514f11efe7
 SHA512 
149e961939bf12aafa8b545b3bd1713dfee95d05134b500a8e4279cd1719528f13ff4fdda7ed77ce74630dbd2390f9c7cfcd0a0595f92d95c4ba914f8bd3a76c

diff --git a/dev-vcs/subversion/subversion-1.14.0_rc2.ebuild 
b/dev-vcs/subversion/subversion-1.14.0_rc2.ebuild
new file mode 100644
index 000..5eb5d763687
--- /dev/null
+++ b/dev-vcs/subversion/subversion-1.14.0_rc2.ebuild
@@ -0,0 +1,537 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+USE_RUBY="ruby26 ruby25 ruby24"
+DISTUTILS_OPTIONAL=1
+WANT_AUTOMAKE="none"
+GENTOO_DEPEND_ON_PERL="no"
+
+inherit autotools bash-completion-r1 db-use depend.apache distutils-r1 
flag-o-matic java-pkg-opt-2 libtool multilib perl-module ruby-single 
toolchain-funcs xdg-utils
+
+MY_P="${P/_/-}"
+DESCRIPTION="Advanced version control system"
+HOMEPAGE="https://subversion.apache.org/;
+SRC_URI="mirror://apache/${PN}/${MY_P}.tar.bz2
+   https://dev.gentoo.org/~polynomial-c/${PN}-1.10.0_rc1-patches-1.tar.xz;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Subversion GPL-2"
+SLOT="0"
+[[ "${PV}" = *_rc* ]] || \
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="apache2 berkdb ctypes-python debug doc extras gnome-keyring java kwallet 
nls perl python ruby sasl test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   app-arch/bzip2
+   app-arch/lz4
+   >=dev-db/sqlite-3.7.12
+   >=dev-libs/apr-1.3:1
+   >=dev-libs/apr-util-1.3:1
+   dev-libs/expat
+   dev-libs/libutf8proc:=
+   >=net-libs/serf-1.3.4
+   sys-apps/file
+   sys-libs/zlib
+   berkdb? ( >=sys-libs/db-4.0.14:= )
+   ctypes-python? ( ${PYTHON_DEPS} )
+   gnome-keyring? (
+   dev-libs/glib:2
+   app-crypt/libsecret
+   sys-apps/dbus
+   )
+   kwallet? (
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   kde-frameworks/kcoreaddons:5
+   kde-frameworks/ki18n:5
+   kde-frameworks/kwallet:5
+   sys-apps/dbus
+   )
+   perl? ( dev-lang/perl:= )
+   python? ( ${PYTHON_DEPS} )
+   ruby? ( ${RUBY_DEPS} )
+   sasl? ( dev-libs/cyrus-sasl )
+"
+RDEPEND="${COMMON_DEPEND}
+   apache2? (
+   acct-group/apache
+   acct-user/apache
+   www-servers/apache[apache2_modules_dav]
+   )
+   !apache2? (
+   acct-group/svnusers
+   acct-user/svn
+   )
+   java? ( >=virtual/jre-1.8 )
+   nls? ( virtual/libintl )
+   perl? ( dev-perl/URI )
+"
+# Note: ctypesgen doesn't need PYTHON_USEDEP, it's used once
+DEPEND="${COMMON_DEPEND}
+   virtual/pkgconfig
+   !!=virtual/jdk-1.8 )
+   kwallet? (
+   

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

2020-05-18 Thread Ben Kohler
commit: a7695019baf86e99348585807f914aee21a420cb
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon May 18 22:01:27 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon May 18 22:01:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7695019

net-misc/remmina: rename ayatana flag to appindicator

Closes: https://bugs.gentoo.org/720314
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Ben Kohler  gentoo.org>

 net-misc/remmina/remmina-1.4.3-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-misc/remmina/remmina-1.4.3-r1.ebuild 
b/net-misc/remmina/remmina-1.4.3-r1.ebuild
index 3e908915151..7489ced509f 100644
--- a/net-misc/remmina/remmina-1.4.3-r1.ebuild
+++ b/net-misc/remmina/remmina-1.4.3-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="ayatana crypt cups examples gnome-keyring kwallet libressl nls spice ssh 
rdp telepathy vnc webkit zeroconf"
+IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telepathy vnc webkit zeroconf"
 
 CDEPEND="
dev-libs/glib:2
@@ -25,7 +25,7 @@ CDEPEND="
x11-libs/gtk+:3
x11-libs/libX11
x11-libs/libxkbfile
-   ayatana? ( dev-libs/libappindicator:3 )
+   appindicator? ( dev-libs/libappindicator:3 )
crypt? ( dev-libs/libgcrypt:0= )
rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129


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

2020-05-18 Thread Ben Kohler
commit: cceb1c5dd9c7210de1c66ec98cc3bcea85a6f78e
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon May 18 21:52:54 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon May 18 21:52:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cceb1c5d

net-misc/remmina: revbump for minor QA fix, and drop old

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Ben Kohler  gentoo.org>

 net-misc/remmina/Manifest|  1 -
 .../{remmina-1.3.6-r1.ebuild => remmina-1.4.3-r1.ebuild} | 16 
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index a4492ddc4fc..3c6bb22a996 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,2 +1 @@
-DIST Remmina-v1.3.6.tar.gz 1538166 BLAKE2B 
f3fc60df2a1a31bd5aae7d8de2d85cd579fa4cc35a0351fbce80433e21583b67cfc81665307d02fbd4863f6a55695be81f9c4d07423d6c8122d84dd625b69c3b
 SHA512 
ce16379aa163467d05018c900d0dc7c2a7d73c1c22dd06a9a3092efa7675fda505bfa31b20131b9a3a10c74788377db17961c0bc9e59c47b1c7a15bf347f3bab
 DIST Remmina-v1.4.3.tar.gz 1705751 BLAKE2B 
4d49b5d5da4017cc1870a5e37a73db767862997cffdd58b080ab5707eeb293eed7e756ca974a4f4922bb9417e94610fe07b1e774f5ad7e269e797362ff264e83
 SHA512 
9f555f9ff60e2a136f6379a0f2828d091aa972dcff7ebd09eaf1834dc10f506d218e5cb6856c17f625c1040a11240da2ed5ebe9f4fe32a083494cfcbbdef1a41

diff --git a/net-misc/remmina/remmina-1.3.6-r1.ebuild 
b/net-misc/remmina/remmina-1.4.3-r1.ebuild
similarity index 84%
rename from net-misc/remmina/remmina-1.3.6-r1.ebuild
rename to net-misc/remmina/remmina-1.4.3-r1.ebuild
index f91b6a6d0e7..3e908915151 100644
--- a/net-misc/remmina/remmina-1.3.6-r1.ebuild
+++ b/net-misc/remmina/remmina-1.4.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -13,8 +13,8 @@ 
SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="ayatana crypt examples gnome-keyring kwallet libressl nls spice ssh rdp 
telepathy vnc webkit zeroconf"
+KEYWORDS="~amd64 ~x86"
+IUSE="ayatana crypt cups examples gnome-keyring kwallet libressl nls spice ssh 
rdp telepathy vnc webkit zeroconf"
 
 CDEPEND="
dev-libs/glib:2
@@ -27,7 +27,9 @@ CDEPEND="
x11-libs/libxkbfile
ayatana? ( dev-libs/libappindicator:3 )
crypt? ( dev-libs/libgcrypt:0= )
-   rdp? ( >=net-misc/freerdp-2.0.0_rc4 )
+   rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129
+   

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

2020-05-18 Thread Georgy Yakovlev
commit: a80c36a0842224f29a28cb4c772da490996f5523
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sun May 17 17:48:33 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon May 18 21:41:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a80c36a0

dev-libs/json-c: fix objects field limitation

Bug: https://bugs.gentoo.org/723480
Closes: https://github.com/gentoo/gentoo/pull/15852

Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 .../files/json-c-0.14-object-limitation.patch  | 93 ++
 dev-libs/json-c/json-c-0.14-r3.ebuild  | 54 +
 2 files changed, 147 insertions(+)

diff --git a/dev-libs/json-c/files/json-c-0.14-object-limitation.patch 
b/dev-libs/json-c/files/json-c-0.14-object-limitation.patch
new file mode 100644
index 000..ebd7ca80506
--- /dev/null
+++ b/dev-libs/json-c/files/json-c-0.14-object-limitation.patch
@@ -0,0 +1,93 @@
+From 519dfe1591d85432986f9762d41d1a883198c157 Mon Sep 17 00:00:00 2001
+From: Eric Haszlakiewicz 
+Date: Sun, 10 May 2020 03:32:19 +
+Subject: [PATCH 01/13] Issue #599: Fix the backwards check in
+ lh_table_insert_w_hash() that was preventing adding more than 11 objects. Add
+ a test to check for this too.
+
+---
+ linkhash.c   |  2 +-
+ tests/test4.c| 29 +
+ tests/test4.expected |  1 +
+ 3 files changed, 31 insertions(+), 1 deletion(-)
+
+diff --git a/linkhash.c b/linkhash.c
+index 51e90b1..f930efd 100644
+--- a/linkhash.c
 b/linkhash.c
+@@ -582,7 +582,7 @@ int lh_table_insert_w_hash(struct lh_table *t, const void 
*k, const void *v, con
+ 
+   if (t->count >= t->size * LH_LOAD_FACTOR) {
+   /* Avoid signed integer overflow with large tables. */
+-  int new_size = INT_MAX / 2 < t->size ? t->size * 2 : INT_MAX;
++  int new_size = (t->size > INT_MAX / 2) ? INT_MAX : (t->size * 
2);
+   if (t->size == INT_MAX || lh_table_resize(t, new_size) != 0)
+   return -1;
+   }
+diff --git a/tests/test4.c b/tests/test4.c
+index bd964ec..fd2f3be 100644
+--- a/tests/test4.c
 b/tests/test4.c
+@@ -3,8 +3,10 @@
+  */
+ 
+ #include "config.h"
++#include 
+ #include 
+ #include 
++#include 
+ 
+ #include "json_inttypes.h"
+ #include "json_object.h"
+@@ -24,6 +26,30 @@ void print_hex(const char *s)
+   putchar('\n');
+ }
+ 
++static void test_lot_of_adds(void);
++static void test_lot_of_adds()
++{
++  int ii;
++  char key[50];
++  json_object *jobj = json_object_new_object();
++  assert(jobj != NULL);
++  for (ii = 0; ii < 500; ii++)
++  {
++  snprintf(key, sizeof(key), "k%d", ii);
++  json_object *iobj = json_object_new_int(ii);
++  assert(iobj != NULL);
++  if (json_object_object_add(jobj, key, iobj))
++  {
++  fprintf(stderr, "FAILED to add object #%d\n", ii);
++  abort();
++  }
++  }
++  printf("%s\n", json_object_to_json_string(jobj));
++  assert(json_object_object_length(jobj) == 500);
++  json_object_put(jobj);
++}
++
++
+ int main(void)
+ {
+   const char *input = 
"\"\\ud840\\udd26,\\ud840\\udd27,\\ud800\\udd26,\\ud800\\udd27\"";
+@@ -52,5 +78,8 @@ int main(void)
+   retval = 1;
+   }
+   json_object_put(parse_result);
++
++  test_lot_of_adds();
++
+   return retval;
+ }
+diff --git a/tests/test4.expected b/tests/test4.expected
+index 68d4336..cb27440 100644
+--- a/tests/test4.expected
 b/tests/test4.expected
+@@ -1,3 +1,4 @@
+ input: "\ud840\udd26,\ud840\udd27,\ud800\udd26,\ud800\udd27"
+ JSON parse result is correct: Ħ,ħ,Ħ,ħ
+ PASS
++{ "k0": 0, "k1": 1, "k2": 2, "k3": 3, "k4": 4, "k5": 5, "k6": 6, "k7": 7, 
"k8": 8, "k9": 9, "k10": 10, "k11": 11, "k12": 12, "k13": 13, "k14": 14, "k15": 
15, "k16": 16, "k17": 17, "k18": 18, "k19": 19, "k20": 20, "k21": 21, "k22": 
22, "k23": 23, "k24": 24, "k25": 25, "k26": 26, "k27": 27, "k28": 28, "k29": 
29, "k30": 30, "k31": 31, "k32": 32, "k33": 33, "k34": 34, "k35": 35, "k36": 
36, "k37": 37, "k38": 38, "k39": 39, "k40": 40, "k41": 41, "k42": 42, "k43": 
43, "k44": 44, "k45": 45, "k46": 46, "k47": 47, "k48": 48, "k49": 49, "k50": 
50, "k51": 51, "k52": 52, "k53": 53, "k54": 54, "k55": 55, "k56": 56, "k57": 
57, "k58": 58, "k59": 59, "k60": 60, "k61": 61, "k62": 62, "k63": 63, "k64": 
64, "k65": 65, "k66": 66, "k67": 67, "k68": 68, "k69": 69, "k70": 70, "k71": 
71, "k72": 72, "k73": 73, "k74": 74, "k75": 75, "k76": 76, "k77": 77, "k78": 
78, "k79": 79, "k80": 80, "k81": 81, "k82": 82, "k83": 83, "k84": 84, "k85": 
85, "k86": 86, "k87": 87, "k88": 88, "k89": 89, "k90": 90, "k91": 91, "k
 92": 92, "k93": 93, "k94": 94, "k95": 95, "k96": 96, "k97": 97, "k98": 98, 
"k99": 99, "k100": 100, "k101": 101, "k102": 102, "k103": 103, "k104": 104, 
"k105": 105, "k106": 106, "k107": 107, "k108": 108, 

[gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/

2020-05-18 Thread Aaron Bauman
commit: ccc81c68a4aedf46895f7693c81ac2cc28fd8f33
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon May 18 21:37:04 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon May 18 21:37:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccc81c68

gui-apps/kanshi: update metadata

Signed-off-by: Aaron Bauman  gentoo.org>

 gui-apps/kanshi/metadata.xml | 27 ++-
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
index 21d7750ccd0..170a33a029b 100644
--- a/gui-apps/kanshi/metadata.xml
+++ b/gui-apps/kanshi/metadata.xml
@@ -1,13 +1,22 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-kanshi allows you to define output profiles that
-are automatically enabled and disabled on hotplug.
-For instance, this can be used to turn a laptop's
-internal screen off when docked.
-
-
-build and install man pages
-
+   
+   b...@gentoo.org
+   Aaron Bauman
+   
+   
+   gen...@aisha.cc
+   Aisha Tammy
+   Proxy-maintainer, assign bugs
+   
+   
+   kanshi allows you to define output profiles that are
+   automatically enabled and disabled on hotplug.
+   For instance, this can be used to turn a laptop's
+   internal screen off when docked.
+   
+   
+   build and install man pages
+   
 



[gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/

2020-05-18 Thread Aaron Bauman
commit: c6bbd5cfd19942ce6027b04ed10d9345ddfbc432
Author: Aisha Tammy  aisha  cc>
AuthorDate: Mon May 18 11:51:29 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon May 18 21:37:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6bbd5cf

gui-apps/kanshi: autorandr for wayland clients

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

kanshi allows you to define output profiles that
are automatically enabled and disabled on hotplug.
For instance, this can be used to turn a laptop's
internal screen off when docked.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy  aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/15865
Signed-off-by: Aaron Bauman  gentoo.org>

 gui-apps/kanshi/Manifest|  1 +
 gui-apps/kanshi/kanshi-1.1.0.ebuild | 43 +
 gui-apps/kanshi/kanshi-.ebuild  | 43 +
 gui-apps/kanshi/metadata.xml| 13 +++
 4 files changed, 100 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
new file mode 100644
index 000..8c019657616
--- /dev/null
+++ b/gui-apps/kanshi/Manifest
@@ -0,0 +1 @@
+DIST kanshi-1.1.0.tar.gz 15884 BLAKE2B 
1085e9d8f3ff53f78cb248941269713fd7ea38c60ad0e9816acb902f171b6f945af521a3835fc9db479620e6031483f6dbab5cfc507872dcabdfbcf9d6711269
 SHA512 
6582bae7b73ad13cad83e4d537c7c870699a72bf6993becaafa47a3dd70439a3c6264874c8f737b32b62ad7512772c2c3bf54ac2cb74879213bd40b8d7a1

diff --git a/gui-apps/kanshi/kanshi-1.1.0.ebuild 
b/gui-apps/kanshi/kanshi-1.1.0.ebuild
new file mode 100644
index 000..221a5f5f59e
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://github.com/emersion/kanshi;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/emersion/kanshi;
+else
+   
SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+RDEPEND="
+   dev-libs/wayland
+"
+BDEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+   dev-libs/wayland-protocols
+"
+
+if [[ ${PV} ==  ]]; then
+   BDEPEND+="man? ( ~app-text/scdoc- )"
+else
+   BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+fi
+
+src_configure() {
+   local emesonargs=(
+   $(meson_feature man man-pages)
+   )
+   meson_src_configure
+}

diff --git a/gui-apps/kanshi/kanshi-.ebuild 
b/gui-apps/kanshi/kanshi-.ebuild
new file mode 100644
index 000..221a5f5f59e
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://github.com/emersion/kanshi;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/emersion/kanshi;
+else
+   
SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+RDEPEND="
+   dev-libs/wayland
+"
+BDEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+   dev-libs/wayland-protocols
+"
+
+if [[ ${PV} ==  ]]; then
+   BDEPEND+="man? ( ~app-text/scdoc- )"
+else
+   BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+fi
+
+src_configure() {
+   local emesonargs=(
+   $(meson_feature man man-pages)
+   )
+   meson_src_configure
+}

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
new file mode 100644
index 000..21d7750ccd0
--- /dev/null
+++ b/gui-apps/kanshi/metadata.xml
@@ -0,0 +1,13 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+kanshi allows you to define output profiles that
+are automatically enabled and disabled on hotplug.
+For instance, this can be used to turn a laptop's
+internal screen off when docked.
+
+
+build and install man pages
+
+



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2020-05-18 Thread Mike Gilbert
commit: ebaa094e13dfad591e5abc950f59bebbbc404eb2
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon May 18 21:36:46 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon May 18 21:36:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebaa094e

www-plugins/chrome-binary-plugins: automated update (83.0.4103.61)

Package-Manager: Portage-2.3.99_p8, Repoman-2.3.22_p37
Signed-off-by: Mike Gilbert  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...03.56_beta.ebuild => chrome-binary-plugins-83.0.4103.61_beta.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 011ad75479e..4ab8d9cd182 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_83.0.4103.56-1_amd64.deb 68652876 BLAKE2B 
e072049d6e0ff33ec4662723baf85229e445fbfd34d1d3f161e378ef6766ec69ce7e02f2600b19d8341baab260645269be300ee894044cc162efd145668711d8
 SHA512 
af1a408eb72c7a05a34fa8b3eb897b010136df9208f658621d0ff42c79d046afd0ee9f6c3574b9c3d8143cfebe903c91b34907ca3f5400f92a248bd40c22e5ce
+DIST google-chrome-beta_83.0.4103.61-1_amd64.deb 68649044 BLAKE2B 
44a4edde30ee7e1422c1f359059f9c7c459b1128629b0279ecffa5714d583211c01a578b87f15612d89cc5bd9942d1b2f401fd98bf57eef5ada4a36e378a5e2e
 SHA512 
e3315cbb83e9d8daa4ed5f0f4e0353af645b3793b5ab465ed7945adc4775d21fd88eaa8dec246985e22c84c35c7cec0fee180227766188ca5fea26b41618cad2
 DIST google-chrome-stable_81.0.4044.138-1_amd64.deb 66985784 BLAKE2B 
b61a18d3823852a019733a1e240ebbcf7e1c93ac965e213ad032f3378a72d0d0194d05636ca7b8e2ff1a0ec8d60c43819d2931aac05b29cb5c89b5491eb6dc09
 SHA512 
64f0a8167e0b49b7614ddc44cb35b28dc4699cde7e14f3868fd27c1ec7848a727a356bd0a9914e8ba42a8c47e3d6fc0901abc495b000d30aa0e73034129b06af
 DIST google-chrome-unstable_84.0.4143.2-1_amd64.deb 69455432 BLAKE2B 
cca39281b3f22e16f26ac666f70a10c52de9f7d35523d1957c63727956ad77050b24d6fe60fac3712cf682d661eb94d158e92dada310d56bc61ecd7834c5c559
 SHA512 
e76f6aea0cd190affa78ad00b6c1b38544f59d2e9d03b73fc6b29be0fbd81f5debf023b584ab5b2857f36bc4dfd4a38048e67f98ac8f3989a15b1174dbb8fe35

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-83.0.4103.56_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-83.0.4103.61_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-83.0.4103.56_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-83.0.4103.61_beta.ebuild



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

2020-05-18 Thread Mike Gilbert
commit: 7956fe95c5e9f12f9e27619636e37f8beb8f8968
Author: Stephan Hartmann  googlemail  com>
AuthorDate: Mon May 18 20:58:56 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon May 18 21:36:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7956fe95

www-client/chromium: beta channel bump to 83.0.4103.61

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Stephan Hartmann  googlemail.com>
Signed-off-by: Mike Gilbert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/15871

 www-client/chromium/Manifest| 2 +-
 .../{chromium-83.0.4103.56.ebuild => chromium-83.0.4103.61.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 0c71d971b9c..a68fc1ceda6 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,5 +1,5 @@
 DIST chromium-81.0.4044.138.tar.xz 785960928 BLAKE2B 
fb8ea6aae55450e820f91fc8be7948ac0155beb0fc6a05988506a78b3306ffc52e69b10d3c91e4a29fe2171f339d5331e9524d3e4cd08de57e090ce16412a673
 SHA512 
9f686b27b2f8ea5c15f50b0ddcd24745aec41e28af8c38618e18771401bd5cfb26939b9ac49973ea804cda458a939c1a6ad59cb24fb1937b7687c3d908183437
-DIST chromium-83.0.4103.56.tar.xz 802581124 BLAKE2B 
f6356a5cc26f345ea00abb92cd5f199a963816c0b222b812f31f0d7ac3abca69103e05f179b7885c84e5e650f79860a88a1b98d4d1e80dc4886de82cff98dd68
 SHA512 
69097257c783886f02e1f12bfe9e1050f2c6608d967370b1d34b21bea8e86ebdf6041666f9fd9500fdd092a5aa697ca627d63120a8499803ace2bb5c2f3a5046
+DIST chromium-83.0.4103.61.tar.xz 802558244 BLAKE2B 
d71ec15bea46438dccda49bb5d8ca0013e89e6876470aba077fbad70578a6f4d9ffb71150a9f0c676740be1cf3a7c681077e39ee9cf961b508b8a59167b4b949
 SHA512 
0fa179bdc61399c3e15e03ce1e720ca6487df603712689ffd4161ef1103c131b0baaedca3c7d706dfdcd2fa3328337cc4a807c0478a429f88358e512cfacbcba
 DIST chromium-84.0.4136.5.tar.xz 840308252 BLAKE2B 
3f10ea5dbb48dd2a39cfb8d39289ad439d0257bea6e40ff130d427f96252890a6164a8dae3b5d30b7e74bcb87815055a6f27826add3ef5e9849e72c6a7dcc3b1
 SHA512 
9b6285ec2bb9790b8e1593473f8e1f2642a6fa851fb5645c282c48911dffabc2107aa99c90b6d6450eb8c0dc38daa089c514801921bc1ac782b25e34d9b8fd84
 DIST setuptools-44.1.0.zip 858569 BLAKE2B 
f59f154e121502a731e51294ccd293d60ffccadacf51e23b53bf7ceba38858948b86783238061136c827ac3373ea7ea8e6253d4bb53f3f1dd69284568ec65a68
 SHA512 
4dfb0f42d334b835758e865a26ecd1e725711fa2b9c38ddc273b8b3849fba04527bc97436d11ba1e98f1a42922aa0f0b9032e32998273c705fac6e10735eacbf
 DIST xcb-proto-1.14.tar.xz 143384 BLAKE2B 
60212b0f0ce039a64a2e6cbbc78564eeffc57cff20987b37dc780d8d97ae888a7dbfbbaadc6e0e4bedfc5d1e360f16318e3825ad8406de668d9c7c66cf7f4b5d
 SHA512 
de66d568163b6da2be9d6c59984f3afa3acd119a781378638045fd68018665ef5c9af98f024e9962ba3eb7c7a4d85c27ba70ffafceb2324ccc6940f34de16690

diff --git a/www-client/chromium/chromium-83.0.4103.56.ebuild 
b/www-client/chromium/chromium-83.0.4103.61.ebuild
similarity index 100%
rename from www-client/chromium/chromium-83.0.4103.56.ebuild
rename to www-client/chromium/chromium-83.0.4103.61.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-beta/

2020-05-18 Thread Mike Gilbert
commit: 5d42e96ce828d2e37b243f7e54051274596e0826
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon May 18 21:36:38 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon May 18 21:36:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d42e96c

www-client/google-chrome-beta: automated update (83.0.4103.61)

Package-Manager: Portage-2.3.99_p8, Repoman-2.3.22_p37
Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-83.0.4103.56.ebuild => google-chrome-beta-83.0.4103.61.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index cf981044431..d5f7332ab5d 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_83.0.4103.56-1_amd64.deb 68652876 BLAKE2B 
e072049d6e0ff33ec4662723baf85229e445fbfd34d1d3f161e378ef6766ec69ce7e02f2600b19d8341baab260645269be300ee894044cc162efd145668711d8
 SHA512 
af1a408eb72c7a05a34fa8b3eb897b010136df9208f658621d0ff42c79d046afd0ee9f6c3574b9c3d8143cfebe903c91b34907ca3f5400f92a248bd40c22e5ce
+DIST google-chrome-beta_83.0.4103.61-1_amd64.deb 68649044 BLAKE2B 
44a4edde30ee7e1422c1f359059f9c7c459b1128629b0279ecffa5714d583211c01a578b87f15612d89cc5bd9942d1b2f401fd98bf57eef5ada4a36e378a5e2e
 SHA512 
e3315cbb83e9d8daa4ed5f0f4e0353af645b3793b5ab465ed7945adc4775d21fd88eaa8dec246985e22c84c35c7cec0fee180227766188ca5fea26b41618cad2

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-83.0.4103.56.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-83.0.4103.61.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-83.0.4103.56.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-83.0.4103.61.ebuild



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

2020-05-18 Thread Patrick McLean
commit: 66d1505dcce53a754303ad22bd5bcc78bf383201
Author: Patrick McLean  sony  com>
AuthorDate: Mon May 18 21:25:36 2020 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Mon May 18 21:26:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d1505d

net-misc/exabgp-4.2.7: Version bump

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

 net-misc/exabgp/Manifest| 2 +-
 net-misc/exabgp/{exabgp-4.2.6.ebuild => exabgp-4.2.7.ebuild}| 2 +-
 .../files/{exabgp-4.2.6-paths.patch => exabgp-4.2.7-paths.patch}| 6 +++---
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/exabgp/Manifest b/net-misc/exabgp/Manifest
index 99bf1efea03..fe699328122 100644
--- a/net-misc/exabgp/Manifest
+++ b/net-misc/exabgp/Manifest
@@ -2,4 +2,4 @@ DIST exabgp-3.2.17.tar.gz 596373 BLAKE2B 
410b77af542160334d32e3e3ea54b25f45c990c
 DIST exabgp-3.4.26.tar.gz 544456 BLAKE2B 
75f62ce8a68588f711e86208f00cc6de9ae51a5c82f833b91459bc05974c8eff06fec080823adfecea7b75a43caa3310f6395bd22ab4e6a696f230787bbaae23
 SHA512 
6cfcc8a40e1e05dfa76df46d8b5e13ce85e73f078d6ab4d2e23dd85035c1ed52bbbde81602ea7572841e6e20d7d7183a7e968599f9e8314e1b89e3a6341f
 DIST exabgp-3.4.28.tar.gz 546611 BLAKE2B 
c4916fd903fe8853e99ba872d87dc97908546c53d34936019c809ffa18761c3044dd7a21aace9bf6e5bb6a2823d2178422b4cdc2e8f65d7be1fda6de2755ae4d
 SHA512 
40edde5262e3033b5fcccf1e6020cce1fe856b6e31420e14166d5e0d636e5f616283827af2cd82946d94a196ef76ed7c5330ac4bebc564329852869f13018403
 DIST exabgp-4.0.10.tar.gz 2907852 BLAKE2B 
2fad6c853aa7a6f136da3334df4b3bdcaaacd03d3fbf849510bcd40b0639bbcc521726797a196418f0ecd47047c65356ee047d30b009ee01b9d498e354ea3bfd
 SHA512 
a21f49e5e99e28cc848cddfd3992dc18ba57d879d0964da0b906d16dca37aa05a00892d643d6cdeea80d4e629fc55a014d9bc50764d520fda77e94145297832e
-DIST exabgp-4.2.6.tar.gz 2922492 BLAKE2B 
de28d6e37dd46e240a224fb327ca85d9917d1447d43317fe93bd7d69a7963ee2ae6ecca613c91ade8d55f0d820c54e0ca88ebe18225f2dcee14c434e64bc1a76
 SHA512 
ad29195a46d1abbf0422ed8fe8013bb9ba3690d3e3876ea09f62bdc44581fda17f0499f45172b7ccac64f6d658770d9cdb7d00df4a12c211bc24310feb5cbbc6
+DIST exabgp-4.2.7.tar.gz 2931058 BLAKE2B 
2c7bf175322a36c800a8a5874b699b01f4c3d4a8712b1f8decb73665cd214c25ccf657909cfef74610e6a5fd1903245bc4da638ac9245b04c6e63d8247d72d50
 SHA512 
9c53b78e3fc5ff9cef4d267e2cb3509dbcfdd4a3b21d2c7e40a8d873a9ac586b8d5bf860699b6f878cc221af341df140acdf88aaa26a79b0e7865ce7cc607e01

diff --git a/net-misc/exabgp/exabgp-4.2.6.ebuild 
b/net-misc/exabgp/exabgp-4.2.7.ebuild
similarity index 95%
rename from net-misc/exabgp/exabgp-4.2.6.ebuild
rename to net-misc/exabgp/exabgp-4.2.7.ebuild
index 5cb7947911a..a5eec248b4f 100644
--- a/net-misc/exabgp/exabgp-4.2.6.ebuild
+++ b/net-misc/exabgp/exabgp-4.2.7.ebuild
@@ -28,7 +28,7 @@ BDEPEND="
 "
 
 PATCHES=(
-   "${FILESDIR}/exabgp-4.2.6-paths.patch"
+   "${FILESDIR}/exabgp-4.2.7-paths.patch"
 )
 
 python_test() {

diff --git a/net-misc/exabgp/files/exabgp-4.2.6-paths.patch 
b/net-misc/exabgp/files/exabgp-4.2.7-paths.patch
similarity index 54%
rename from net-misc/exabgp/files/exabgp-4.2.6-paths.patch
rename to net-misc/exabgp/files/exabgp-4.2.7-paths.patch
index 035ba12bd68..57f3a50748d 100644
--- a/net-misc/exabgp/files/exabgp-4.2.6-paths.patch
+++ b/net-misc/exabgp/files/exabgp-4.2.7-paths.patch
@@ -1,13 +1,13 @@
 diff --git a/setup.py b/setup.py
-index 34c28e4d..e41069bc 100644
+index 58d47087..a4266d05 100644
 --- a/setup.py
 +++ b/setup.py
 @@ -31,7 +31,7 @@ def filesOf(directory):
  
  
  data_files = [
--  ('etc/exabgp/examples', filesOf('etc/exabgp')),
-+  ('/etc/exabgp/examples', filesOf('etc/exabgp')),
+-('etc/exabgp/examples', filesOf('etc/exabgp')),
++('/etc/exabgp/examples', filesOf('etc/exabgp')),
  ]
  
  if platform.system() != 'NetBSD':



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

2020-05-18 Thread Agostino Sarubbo
commit: a540dae7d7e95dda0c234efda5492df6bc9b0621
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:11:54 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:11:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a540dae7

media-libs/tremor: x86 stable wrt bug #650656

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/tremor/tremor-0_pre20130223-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild 
b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
index 0cf9f96294a..1d96e6e8fde 100644
--- a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
+++ b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://dev.gentoo.org/~ssuominen/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="low-accuracy static-libs"
 
 RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]"



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

2020-05-18 Thread Agostino Sarubbo
commit: 126374a292837a1c8dc750ad9d5bc95e2786ca49
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:13:00 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:13:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=126374a2

app-i18n/ibus-libpinyin: x86 stable wrt bug #721744

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild 
b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild
index effba198b83..6975e7f0c49 100644
--- a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild
+++ b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/libpinyin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="boost lua opencc"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2020-05-18 Thread Agostino Sarubbo
commit: 413328ec6cb2a31b046353a526149f4f5238ce31
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:29 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413328ec

net-misc/remmina: x86 stable wrt bug #716720

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/remmina/remmina-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/remmina/remmina-1.4.3.ebuild 
b/net-misc/remmina/remmina-1.4.3.ebuild
index f932fb517fd..2daffd64236 100644
--- a/net-misc/remmina/remmina-1.4.3.ebuild
+++ b/net-misc/remmina/remmina-1.4.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="ayatana crypt cups examples gnome-keyring kwallet libressl nls spice ssh 
rdp telepathy vnc webkit zeroconf"
 
 CDEPEND="



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

2020-05-18 Thread Agostino Sarubbo
commit: 41e43bc24ee874ec007526df026cba0a9d07762c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:55 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e43bc2

sys-libs/libsmbios: x86 stable wrt bug #721610

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild 
b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 19c9392b972..f19e11df65a 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2 OSL-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 x86"
 IUSE="doc graphviz nls +python static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



[gentoo-commits] repo/gentoo:master commit in: mail-filter/pypolicyd-spf/

2020-05-18 Thread Agostino Sarubbo
commit: 82674ebdb1ca9c1953a51d76474ccaaf6cd011cb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:03 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82674ebd

mail-filter/pypolicyd-spf: x86 stable wrt bug #722246

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2-r1.ebuild 
b/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2-r1.ebuild
index bbb5b872560..aa46887f9be 100644
--- a/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2-r1.ebuild
+++ b/mail-filter/pypolicyd-spf/pypolicyd-spf-2.0.2-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 DEPEND="dev-python/pyspf[${PYTHON_USEDEP}]"



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

2020-05-18 Thread Agostino Sarubbo
commit: 437966dea48f1a34a866510882da335c444695c9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:08 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437966de

dev-python/arrow: x86 stable wrt bug #722496

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/arrow/arrow-0.15.5.ebuild 
b/dev-python/arrow/arrow-0.15.5.ebuild
index d7562431797..4c301a3683a 100644
--- a/dev-python/arrow/arrow-0.15.5.ebuild
+++ b/dev-python/arrow/arrow-0.15.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="
dev-python/python-dateutil[${PYTHON_USEDEP}]"



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

2020-05-18 Thread Agostino Sarubbo
commit: a62e3939afce72d8b460f81ef0c66ea9446e7b41
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:45 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a62e3939

media-sound/quodlibet: x86 stable wrt bug #721406

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-sound/quodlibet/quodlibet-4.3.0.ebuild 
b/media-sound/quodlibet/quodlibet-4.3.0.ebuild
index c66d1e2170a..c36d97d4c6e 100644
--- a/media-sound/quodlibet/quodlibet-4.3.0.ebuild
+++ b/media-sound/quodlibet/quodlibet-4.3.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="+dbus gstreamer +udev"
 
 RDEPEND="dev-libs/keybinder:3[introspection]



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

2020-05-18 Thread Agostino Sarubbo
commit: a566b65724130ec76d6c783793c361931c0a824e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:39 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a566b657

app-doc/doxygen: x86 stable wrt bug #721400

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-doc/doxygen/doxygen-1.8.17.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-doc/doxygen/doxygen-1.8.17.ebuild 
b/app-doc/doxygen/doxygen-1.8.17.ebuild
index cd227afb9ae..2a08c1487c4 100644
--- a/app-doc/doxygen/doxygen-1.8.17.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.17.ebuild
@@ -11,10 +11,10 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/doxygen/doxygen.git;
SRC_URI=""
-   KEYWORDS="amd64 arm hppa ppc ppc64 sparc"
+   KEYWORDS="amd64 arm hppa ppc ppc64 sparc x86"
 else
SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips 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 ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Documentation system for most programming languages"



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/clamav/

2020-05-18 Thread Agostino Sarubbo
commit: 641e078243e660a891a3ea0ee1d3777979448f22
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:20 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=641e0782

app-antivirus/clamav: x86 stable wrt bug #722726

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-antivirus/clamav/clamav-0.102.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-antivirus/clamav/clamav-0.102.3.ebuild 
b/app-antivirus/clamav/clamav-0.102.3.ebuild
index f39586cd4ed..23d5142b79e 100644
--- a/app-antivirus/clamav/clamav-0.102.3.ebuild
+++ b/app-antivirus/clamav/clamav-0.102.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.clamav.net/downloads/production/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="bzip2 doc clamdtop clamsubmit iconv ipv6 libclamav-only libressl milter 
metadata-analysis-api selinux test uclibc xml"
 
 REQUIRED_USE="libclamav-only? ( !clamdtop !clamsubmit !milter 
!metadata-analysis-api )"



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

2020-05-18 Thread Agostino Sarubbo
commit: 694d0e179ef61330503443975f14ba415dbacc1d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=694d0e17

dev-libs/spdlog: x86 stable wrt bug #713522

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/spdlog/spdlog-1.5.0.ebuild 
b/dev-libs/spdlog/spdlog-1.5.0.ebuild
index ad9da48dcf3..36f41ea7c10 100644
--- a/dev-libs/spdlog/spdlog-1.5.0.ebuild
+++ b/dev-libs/spdlog/spdlog-1.5.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/gabime/${PN};
 else
SRC_URI="https://github.com/gabime/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 fi
 
 LICENSE="MIT"



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

2020-05-18 Thread Agostino Sarubbo
commit: 3a3e905065430ab33199c816a803f05d4ff08175
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:34 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a3e9050

app-crypt/gnupg: x86 stable wrt bug #717934

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-crypt/gnupg/gnupg-2.2.20.ebuild 
b/app-crypt/gnupg/gnupg-2.2.20.ebuild
index 8d8be02bbcc..1f48dc2 100644
--- a/app-crypt/gnupg/gnupg-2.2.20.ebuild
+++ b/app-crypt/gnupg/gnupg-2.2.20.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/gnupg/${MY_P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc ldap nls readline selinux +smartcard ssl tofu tools usb 
user-socket wks-server"
 
 # Existence of executables is checked during configuration.



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

2020-05-18 Thread Agostino Sarubbo
commit: f599aaa0130bb59a11522c031c5b36d57980f503
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:11:59 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:11:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f599aaa0

dev-python/logbook: x86 stable wrt bug #721764

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/logbook/logbook-1.5.3.ebuild 
b/dev-python/logbook/logbook-1.5.3.ebuild
index 4f67f38f5b4..6c33aa07cf4 100644
--- a/dev-python/logbook/logbook-1.5.3.ebuild
+++ b/dev-python/logbook/logbook-1.5.3.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/getlogbook/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 BDEPEND="



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

2020-05-18 Thread Agostino Sarubbo
commit: e41547134f7106f52fe28df6e3cd6e22466bc16d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:14 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4154713

net-vpn/libreswan: x86 stable wrt bug #722696

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-vpn/libreswan/libreswan-3.32.ebuild 
b/net-vpn/libreswan/libreswan-3.32.ebuild
index 31e9535e62e..88f6f4c6f12 100644
--- a/net-vpn/libreswan/libreswan-3.32.ebuild
+++ b/net-vpn/libreswan/libreswan-3.32.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit systemd toolchain-funcs
 
 SRC_URI="https://download.libreswan.org/${P}.tar.gz;
-KEYWORDS="amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc x86"
 
 DESCRIPTION="IPsec implementation for Linux, fork of Openswan"
 HOMEPAGE="https://libreswan.org/;



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/fangfrisch/

2020-05-18 Thread Agostino Sarubbo
commit: 16befb8bef3276440a66f490f1b4e644806cbaa2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:12:50 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:12:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16befb8b

app-antivirus/fangfrisch: x86 stable wrt bug #721530

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild 
b/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild
index 61e13e45a8f..08c54e83ab3 100644
--- a/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild
+++ b/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild
@@ -37,7 +37,7 @@ database tables, then run the initdb command as shown above."
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-1.3.11[${PYTHON_USEDEP}]"



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

2020-05-18 Thread Agostino Sarubbo
commit: 33ed497457e9f9fb413de2472f7a6ee2a6f65bb2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:11:22 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:11:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33ed4974

media-libs/tremor: arm stable wrt bug #650656

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-libs/tremor/tremor-0_pre20130223-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild 
b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
index 6b079917421..0cf9f96294a 100644
--- a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
+++ b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://dev.gentoo.org/~ssuominen/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
 IUSE="low-accuracy static-libs"
 
 RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]"



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

2020-05-18 Thread Agostino Sarubbo
commit: 4723fabd2530dac3d0a1b8027833b8e445fc6080
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:53 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4723fabd

sys-libs/libsmbios: amd64 stable wrt bug #721610

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

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

diff --git a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild 
b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
index 4e9e41d7a52..19c9392b972 100644
--- a/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
+++ b/sys-libs/libsmbios/libsmbios-2.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2 OSL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 ~x86"
 IUSE="doc graphviz nls +python static-libs test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2020-05-18 Thread Agostino Sarubbo
commit: 96955cc5831c88b8530544c6cfb194dd889e8d5b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:16 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96955cc5

app-doc/doxygen: amd64 stable wrt bug #721400

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

 app-doc/doxygen/doxygen-1.8.17.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-doc/doxygen/doxygen-1.8.17.ebuild 
b/app-doc/doxygen/doxygen-1.8.17.ebuild
index 83df33fba48..cd227afb9ae 100644
--- a/app-doc/doxygen/doxygen-1.8.17.ebuild
+++ b/app-doc/doxygen/doxygen-1.8.17.ebuild
@@ -11,10 +11,10 @@ if [[ ${PV} = ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/doxygen/doxygen.git;
SRC_URI=""
-   KEYWORDS="arm hppa ppc ppc64 sparc"
+   KEYWORDS="amd64 arm hppa ppc ppc64 sparc"
 else
SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz;
-   KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~mips 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 ~mips ppc ppc64 ~s390 
sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 DESCRIPTION="Documentation system for most programming languages"



[gentoo-commits] repo/gentoo:master commit in: app-antivirus/fangfrisch/

2020-05-18 Thread Agostino Sarubbo
commit: 0f4eb06f9b17601e41a016f1bc8bb7e3e9221dc8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:39 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4eb06f

app-antivirus/fangfrisch: amd64 stable wrt bug #721530

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

 app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild 
b/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild
index 8aca5a69d47..61e13e45a8f 100644
--- a/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild
+++ b/app-antivirus/fangfrisch/fangfrisch-1.2.0-r1.ebuild
@@ -37,7 +37,7 @@ database tables, then run the initdb command as shown above."
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DEPEND=">=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
>=dev-python/sqlalchemy-1.3.11[${PYTHON_USEDEP}]"



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

2020-05-18 Thread Agostino Sarubbo
commit: 664fa96fa565cce8f5950f49971f13ffc22477ad
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:08 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=664fa96f

net-misc/remmina: amd64 stable wrt bug #716720

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

 net-misc/remmina/remmina-1.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/remmina/remmina-1.4.3.ebuild 
b/net-misc/remmina/remmina-1.4.3.ebuild
index 8eab2f13662..f932fb517fd 100644
--- a/net-misc/remmina/remmina-1.4.3.ebuild
+++ b/net-misc/remmina/remmina-1.4.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
 
 LICENSE="GPL-2+-with-openssl-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="ayatana crypt cups examples gnome-keyring kwallet libressl nls spice ssh 
rdp telepathy vnc webkit zeroconf"
 
 CDEPEND="



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

2020-05-18 Thread Agostino Sarubbo
commit: 58d84ca1ac36cb01ce613620781e3cc06a30d766
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:46 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58d84ca1

dev-python/json-rpc: amd64 stable wrt bug #721572

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

 dev-python/json-rpc/json-rpc-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/json-rpc/json-rpc-1.13.0.ebuild 
b/dev-python/json-rpc/json-rpc-1.13.0.ebuild
index 8c3617e4701..d36454c2f52 100644
--- a/dev-python/json-rpc/json-rpc-1.13.0.ebuild
+++ b/dev-python/json-rpc/json-rpc-1.13.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-05-18 Thread Agostino Sarubbo
commit: ccfb8900176ed71dfc7c385e37176289bb4e88d9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:24 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccfb8900

media-sound/quodlibet: amd64 stable wrt bug #721406

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

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

diff --git a/media-sound/quodlibet/quodlibet-4.3.0.ebuild 
b/media-sound/quodlibet/quodlibet-4.3.0.ebuild
index b2e281ea673..c66d1e2170a 100644
--- a/media-sound/quodlibet/quodlibet-4.3.0.ebuild
+++ b/media-sound/quodlibet/quodlibet-4.3.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 ~x86"
 IUSE="+dbus gstreamer +udev"
 
 RDEPEND="dev-libs/keybinder:3[introspection]



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

2020-05-18 Thread Agostino Sarubbo
commit: 91e21caa42acb4bfbda40c52a44328c50095bbc6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:09:32 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:09:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e21caa

net-misc/ntpsec: amd64 stable wrt bug #721526

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

 net-misc/ntpsec/ntpsec-1.1.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/ntpsec/ntpsec-1.1.8.ebuild 
b/net-misc/ntpsec/ntpsec-1.1.8.ebuild
index aa3bf4b1544..9da748d1003 100644
--- a/net-misc/ntpsec/ntpsec-1.1.8.ebuild
+++ b/net-misc/ntpsec/ntpsec-1.1.8.ebuild
@@ -12,12 +12,12 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/NTPsec/ntpsec.git;
BDEPEND=""
-   KEYWORDS="arm"
+   KEYWORDS="amd64 arm"
 else
SRC_URI="ftp://ftp.ntpsec.org/pub/releases/${PN}-${PV}.tar.gz;
RESTRICT="mirror"
BDEPEND=""
-   KEYWORDS="~amd64 arm ~arm64 ~x86"
+   KEYWORDS="amd64 arm ~arm64 ~x86"
 fi
 
 DESCRIPTION="The NTP reference implementation, refactored"



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

2020-05-18 Thread Agostino Sarubbo
commit: 3748d907de3e14775ec0e1980137e21e278a5033
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:10:01 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:10:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3748d907

app-i18n/ibus-libpinyin: amd64 stable wrt bug #721744

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

 app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild 
b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild
index 280d6386f77..effba198b83 100644
--- a/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild
+++ b/app-i18n/ibus-libpinyin/ibus-libpinyin-1.11.1-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/libpinyin/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="boost lua opencc"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2020-05-18 Thread Agostino Sarubbo
commit: bf62da68735dc1b52fec0d16b910330353e4a332
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon May 18 21:08:59 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon May 18 21:08:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf62da68

media-libs/tremor: amd64 stable wrt bug #650656

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

 media-libs/tremor/tremor-0_pre20130223-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild 
b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
index 492b5adb3cb..6b079917421 100644
--- a/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
+++ b/media-libs/tremor/tremor-0_pre20130223-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://dev.gentoo.org/~ssuominen/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
 IUSE="low-accuracy static-libs"
 
 RDEPEND=">=media-libs/libogg-1.3.0:=[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/gcs-oauth2-boto-plugin/

2020-05-18 Thread Zac Medico
commit: 9f15dcd7ad75385e053ff940c10a6f0389db42d3
Author: Zac Medico  gentoo  org>
AuthorDate: Mon May 18 20:46:30 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon May 18 20:47:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f15dcd7

dev-python/gcs-oauth2-boto-plugin: new maintainers

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

 dev-python/gcs-oauth2-boto-plugin/metadata.xml | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-python/gcs-oauth2-boto-plugin/metadata.xml 
b/dev-python/gcs-oauth2-boto-plugin/metadata.xml
index fa87f777eb4..cbbec30086d 100644
--- a/dev-python/gcs-oauth2-boto-plugin/metadata.xml
+++ b/dev-python/gcs-oauth2-boto-plugin/metadata.xml
@@ -1,9 +1,13 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-pyt...@gentoo.org
-Python
+  
+chutz...@gentoo.org
+Patrick McLean
+  
+  
+zmed...@gentoo.org
+Zac Medico
   
   
 gcs-oauth2-boto-plugin



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

2020-05-18 Thread Brian Dolbec
commit: 73faf1f8b6d8abe39b59677d1528a19346eea97c
Author: Brian Dolbec  gentoo  org>
AuthorDate: Mon May 18 20:43:10 2020 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon May 18 20:46:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73faf1f8

dev-python/cbor2: sed out pytest-cov dep

Move pytest dep to BDEPEND

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Brian Dolbec  gentoo.org>

 dev-python/cbor2/cbor2-5.1.0.ebuild | 13 -
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/dev-python/cbor2/cbor2-5.1.0.ebuild 
b/dev-python/cbor2/cbor2-5.1.0.ebuild
index b1d49e53fa9..0ab2f141e00 100644
--- a/dev-python/cbor2/cbor2-5.1.0.ebuild
+++ b/dev-python/cbor2/cbor2-5.1.0.ebuild
@@ -19,12 +19,23 @@ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 
 DEPEND="
dev-python/setuptools_scm[${PYTHON_USEDEP}]
+"
+BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
)
 "
 
 RDEPEND="${DEPEND}"
 
+python_prepare_all() {
+
+   # remove pytest-cov dep
+   sed -e "s/pytest-cov//" \
+   -e "s/--cov //" \
+   -i setup.cfg || die
+
+   distutils-r1_python_prepare_all
+}
+
 distutils_enable_tests pytest



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

2020-05-18 Thread Rick Farina
commit: 3b2b21e4afe894378ee04b5c90926f75ee4f610c
Author: Rick Farina  gentoo  org>
AuthorDate: Mon May 18 20:41:26 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon May 18 20:41:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b2b21e4

net-wireless/kismet: minor bugfix from upstream

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/kismet/Manifest| 2 +-
 .../kismet/{kismet-2020.04.2.ebuild => kismet-2020.04.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/kismet/Manifest b/net-wireless/kismet/Manifest
index 083f7e855e5..e567b17fec6 100644
--- a/net-wireless/kismet/Manifest
+++ b/net-wireless/kismet/Manifest
@@ -1,4 +1,4 @@
 DIST kismet-2016-07-R1.tar.xz 709364 BLAKE2B 
5b667a02b517bd413d569f40df1f2a2e1158357c602fa807d712870543a7fade25077f449c07c023ad1d2150870352aa754484846d8c2a0d9f027113bb57c1fc
 SHA512 
88891a0cd5ef94a4815d259e433f946f52552c125e05a5d8ac447d04e6090f2bd92f8bd8573440f0dfe446b29233bef81d9889e53170757ad0116ddfc2cb8416
 DIST kismet-2019-09-R1.tar.xz 3034832 BLAKE2B 
9f7818549e5260dc081ac39ea8323c70f2e4d0b959bc42dacc253c9d72bf72c2547f7c6d65d84ee7d0ca4a41068f5973028e48f6f9f3c5a7cd50c35246570814
 SHA512 
eeaf069718206f2b6d292c41792217afc9c72c10ffa014c8c670de64195bd28d44f33364dba7d338610f17a5af2be3c125ccd1297cce362159a4968c9ddabb88
 DIST kismet-2019-12-R2.tar.xz 3127064 BLAKE2B 
b7ffac6a6a4d7d7893d3564f9471080e055798c325b102f98fa0e86db37bcbab33422afae9c2694b747ae0c369259b62c218a77c673d0e0c05969a56e42311c2
 SHA512 
b1e3de74a6d314150d849ac3d95c8b99324bba14522dc4f00244d1c09acb690cce40d35dbe33845ffb1060a69cd38f036d59a0283ed9b1a70b022e3d57cde5a0
-DIST kismet-2020-04-R2.tar.xz 3159264 BLAKE2B 
1a61ce51f3ddfca750d6404b4b71bd8f5bb3cc23a14ca9140a3730086479bcbe3d9a083eb22b9e279824a03f961fc5699240e8e7a1148fa5070dacc232aa5bb7
 SHA512 
4eaa01f848eb51bafbd11d9ae47d7878a3891b99dd858f12f357f34b375b214b0fc37b916d040092091f19da4cb702bf22b2482bdb54600f43b6e6cfb3dfa462
+DIST kismet-2020-04-R3.tar.xz 3159552 BLAKE2B 
458c40dea530008295d46aadaf15699a0fd9025bb572cb23e94f059f31bba2835dedd9c39725d0183e84d31c326c2769450ce0b8bee7e7ca3bb7ac9dd82f4cc6
 SHA512 
585def7f19f479c6049cbc24e3886276d816f584fcb2070009cd90e35b33630d3e544145abf5f8b1eae87ec571a213ed9cb9f6b81345257c9bf1332d5bb319c2

diff --git a/net-wireless/kismet/kismet-2020.04.2.ebuild 
b/net-wireless/kismet/kismet-2020.04.3.ebuild
similarity index 100%
rename from net-wireless/kismet/kismet-2020.04.2.ebuild
rename to net-wireless/kismet/kismet-2020.04.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-proto/

2020-05-18 Thread Matt Turner
commit: d8db714e9f8af3536133183514c8f6ed918b89eb
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:35:23 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:39:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8db714e

x11-base/xorg-proto: Drop outdated blockers

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

 x11-base/xorg-proto/xorg-proto-2020.1.ebuild | 34 
 x11-base/xorg-proto/xorg-proto-.ebuild   | 34 
 2 files changed, 68 deletions(-)

diff --git a/x11-base/xorg-proto/xorg-proto-2020.1.ebuild 
b/x11-base/xorg-proto/xorg-proto-2020.1.ebuild
index 1f96a954d93..37121da2fcc 100644
--- a/x11-base/xorg-proto/xorg-proto-2020.1.ebuild
+++ b/x11-base/xorg-proto/xorg-proto-2020.1.ebuild
@@ -28,40 +28,6 @@ LICENSE="MIT"
 SLOT="0"
 IUSE=""
 
-DEPEND=""
-RDEPEND="
-   !

[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-drivers/

2020-05-18 Thread Matt Turner
commit: 3236175e721a5c63d562ef838633ccb258b3faae
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:34:20 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:39:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3236175e

x11-base/xorg-drivers: Mark as a live ebuild

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

 x11-base/xorg-drivers/xorg-drivers-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/x11-base/xorg-drivers/xorg-drivers-.ebuild 
b/x11-base/xorg-drivers/xorg-drivers-.ebuild
index 180e8a18642..99c7a47b95a 100644
--- a/x11-base/xorg-drivers/xorg-drivers-.ebuild
+++ b/x11-base/xorg-drivers/xorg-drivers-.ebuild
@@ -11,6 +11,8 @@ LICENSE="metapackage"
 SLOT="0"
 if [[ ${PV} !=  ]]; then
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
+else
+   PROPERTIES+=" live"
 fi
 
 IUSE_INPUT_DEVICES="



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-proto/

2020-05-18 Thread Matt Turner
commit: db1e4f0bc17ee884d31c6d78e88c54df5ec6ee68
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:37:12 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:39:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db1e4f0b

x11-base/xorg-proto: Drop unnecessary src_unpack()

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

 x11-base/xorg-proto/xorg-proto-2020.1.ebuild | 5 -
 x11-base/xorg-proto/xorg-proto-.ebuild   | 5 -
 2 files changed, 10 deletions(-)

diff --git a/x11-base/xorg-proto/xorg-proto-2020.1.ebuild 
b/x11-base/xorg-proto/xorg-proto-2020.1.ebuild
index 37121da2fcc..cb69f9bbf9b 100644
--- a/x11-base/xorg-proto/xorg-proto-2020.1.ebuild
+++ b/x11-base/xorg-proto/xorg-proto-2020.1.ebuild
@@ -27,8 +27,3 @@ fi
 LICENSE="MIT"
 SLOT="0"
 IUSE=""
-
-src_unpack() {
-   default
-   [[ $PV = * ]] && git-r3_src_unpack
-}

diff --git a/x11-base/xorg-proto/xorg-proto-.ebuild 
b/x11-base/xorg-proto/xorg-proto-.ebuild
index 37121da2fcc..cb69f9bbf9b 100644
--- a/x11-base/xorg-proto/xorg-proto-.ebuild
+++ b/x11-base/xorg-proto/xorg-proto-.ebuild
@@ -27,8 +27,3 @@ fi
 LICENSE="MIT"
 SLOT="0"
 IUSE=""
-
-src_unpack() {
-   default
-   [[ $PV = * ]] && git-r3_src_unpack
-}



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

2020-05-18 Thread Matt Turner
commit: 1c6238f5ab23ecfa8a63f3a535234f6254c01fc3
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:35:59 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:39:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6238f5

dev-libs/libclc: Drop old clang slot

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

 dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild 
b/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild
index 76895636d57..cf5cf7c3624 100644
--- a/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild
+++ b/dev-libs/libclc/libclc-0.2.0_pre20191024.ebuild
@@ -23,7 +23,6 @@ BDEPEND="
sys-devel/clang:10
sys-devel/clang:9
sys-devel/clang:8
-   sys-devel/clang:7
)
${PYTHON_DEPS}"
 



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

2020-05-18 Thread Matt Turner
commit: 10ca775b163b3f36d14b7c0b43040fb1dae4a30e
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:33:27 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:39:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ca775b

virtual/opencl: Drop old versions

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

 virtual/opencl/opencl-2.ebuild | 35 ---
 1 file changed, 35 deletions(-)

diff --git a/virtual/opencl/opencl-2.ebuild b/virtual/opencl/opencl-2.ebuild
deleted file mode 100644
index 51ea03746de..000
--- a/virtual/opencl/opencl-2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit multilib-build
-
-DESCRIPTION="Virtual for OpenCL implementations"
-SLOT="0"
-KEYWORDS="amd64 x86"
-CARDS=( amdgpu i965 nvidia r600 radeonsi )
-IUSE="${CARDS[@]/#/video_cards_}"
-
-# intel-neo, intel-ocl-sdk and rocm-opencl-runtime are abi_x86_64-only
-# ocl-icd is essentially a dummy/you-are-on-your-own provider - it installs
-# header files to include in the source code and a library to link against
-# but does not support any actual devices
-RDEPEND="app-eselect/eselect-opencl
-   || (
-   video_cards_i965? (
-   abi_x86_64? ( !abi_x86_32? ( dev-libs/intel-neo ) )
-   )
-   video_cards_amdgpu? ( || (
-   abi_x86_64? ( !abi_x86_32? ( 
dev-libs/rocm-opencl-runtime ) )
-   dev-libs/amdgpu-pro-opencl[${MULTILIB_USEDEP}] ) )
-   video_cards_nvidia? ( || (
-   >=x11-drivers/nvidia-drivers-290.10-r2[uvm(-)]
-   >=media-libs/mesa-9.1.6[opencl,X(+),${MULTILIB_USEDEP}] 
) )
-   video_cards_r600? (
-   >=media-libs/mesa-9.1.6[opencl,X(+),${MULTILIB_USEDEP}] 
)
-   video_cards_radeonsi? (
-   >=media-libs/mesa-9.1.6[opencl,X(+),${MULTILIB_USEDEP}] 
)
-   abi_x86_64? ( !abi_x86_32? ( dev-util/intel-ocl-sdk ) )
-   dev-libs/ocl-icd[khronos-headers,${MULTILIB_USEDEP}]
-   )"



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

2020-05-18 Thread Michał Górny
commit: 7282a582905ee9c745415b38b3395961ee34749e
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 18 20:24:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 18 20:24:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7282a582

dev-python/virtualenv: Add dep on setuptools_scm

Closes: https://bugs.gentoo.org/723658
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenv/virtualenv-20.0.18.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/virtualenv/virtualenv-20.0.18.ebuild 
b/dev-python/virtualenv/virtualenv-20.0.18.ebuild
index 3bc6dde6c8b..85130547d14 100644
--- a/dev-python/virtualenv/virtualenv-20.0.18.ebuild
+++ b/dev-python/virtualenv/virtualenv-20.0.18.ebuild
@@ -41,6 +41,7 @@ RDEPEND="
 # coverage is used somehow magically in virtualenv, maybe it actually
 # tests something useful
 BDEPEND="${RDEPEND}
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
test? (
dev-python/coverage[${PYTHON_USEDEP}]
>=dev-python/pip-20.0.2[${PYTHON_USEDEP}]



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

2020-05-18 Thread Michał Górny
commit: 1d05ed01d4f307a077a099a0503bf7c1b7cd9eb7
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 18 20:14:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 18 20:14:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d05ed01

dev-python/ioflo: Run tests via pytest

Closes: https://bugs.gentoo.org/723654
Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/ioflo/ioflo-2.0.0.ebuild 
b/dev-python/ioflo/ioflo-2.0.0.ebuild
index bb4cb697843..72f4c33e57a 100644
--- a/dev-python/ioflo/ioflo-2.0.0.ebuild
+++ b/dev-python/ioflo/ioflo-2.0.0.ebuild
@@ -23,7 +23,7 @@ PATCHES=(
"${FILESDIR}/ioflo-1.7.8-network-test.patch"
 )
 
-distutils_enable_tests unittest
+distutils_enable_tests pytest
 
 python_prepare_all() {
sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die



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

2020-05-18 Thread Michał Górny
commit: 6cd3601a8139bf406fc554f655e6bdd870d16968
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 18 20:21:31 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 18 20:21:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cd3601a

dev-python/github3: Add missing dep on mock

Closes: https://bugs.gentoo.org/723678
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/github3/github3-1.3.0.ebuild | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dev-python/github3/github3-1.3.0.ebuild 
b/dev-python/github3/github3-1.3.0.ebuild
index 7f4dc2c3055..8147e45ba6f 100644
--- a/dev-python/github3/github3-1.3.0.ebuild
+++ b/dev-python/github3/github3-1.3.0.ebuild
@@ -10,12 +10,11 @@ inherit distutils-r1
 DESCRIPTION="A wrapper for the GitHub API written in python"
 HOMEPAGE="https://github3py.readthedocs.io/en/master/;
 SRC_URI="https://github.com/sigmavirus24/${PN}.py/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}.py-${PV}"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
dev-vcs/git
@@ -24,14 +23,12 @@ RDEPEND="
>=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}]
>=dev-python/jwcrypto-0.5.0[${PYTHON_USEDEP}]
${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
+BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
-   >dev-python/pytest-2.3.5[${PYTHON_USEDEP}]
>=dev-python/betamax-0.8.0[${PYTHON_USEDEP}]
>=dev-python/betamax-matchers-0.1.0[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
)"
 
-S="${WORKDIR}/${PN}.py-${PV}"
-
 distutils_enable_tests pytest



[gentoo-commits] repo/proj/guru:dev commit in: app-shells/antibody/, app-shells/antibody/files/

2020-05-18 Thread Ronny Gutbrod
commit: fb1ade9e0c1f130e16ad8d4d840b280e258229a3
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Mon May 18 20:14:30 2020 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Mon May 18 20:19:29 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb1ade9e

app-shells/antibody: 
app-shells/antibody: New package.

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 app-shells/antibody/Manifest   |  36 ++
 app-shells/antibody/antibody-6.0.1.ebuild  |  77 
 .../files/6.0.1-remove-failing-tests.patch | 419 +
 app-shells/antibody/metadata.xml   |  16 +
 4 files changed, 548 insertions(+)

diff --git a/app-shells/antibody/Manifest b/app-shells/antibody/Manifest
new file mode 100644
index 000..8d15a2c
--- /dev/null
+++ b/app-shells/antibody/Manifest
@@ -0,0 +1,36 @@
+DIST antibody-6.0.1.tar.gz 53133 BLAKE2B 
d79128266834f9672ed5324de3a0edbaa509bc821564ac1825b282338ec844fb035c06f475702fdc7c67dc3be2f108e95adc3b37767283dbd9ccdbe9b2885d60
 SHA512 
c370019238afbad550e2d99cb3487c3245f76fa897feb98a627f02cf0ef0bbfe1277d732b032e8ce7d338e3a3a5de39a5cbb2edf39e02363502b9b909098bfe3
+DIST 
github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.mod
 38 BLAKE2B 
2e1a897393e3527f0f82e6ab9baf62558d9cf54b56ada5d79aa1b206128de30395d9082bc600c4aa2a17e81095e429cc5874de950478545319ea0b867de7
 SHA512 
072ca7ba3d5ca815f58848db201002cc572d95334aeacfe44cb226505ad20d82ce06eb2ee059650912ae499db6291822c583296cb65a66e54adce62d6d850929
+DIST 
github.com%2Falecthomas%2Ftemplate%2F@v%2Fv0.0.0-20190718012654-fb15b899a751.zip
 66303 BLAKE2B 
4b02e631a3537d577b78b1372f8496113c582bfaafc48f5ce6981ed72da6a611d6c692a85c6e7cc8aeb47c89d0fec9f491d59607ead55d5e4be256525d3173bb
 SHA512 
d29dc8a3c82c34af07b0c393349eda79b30c988d439771e02106bf2f386ef5fc3feaebf00da3953a40bff2c5ed93880ecbf45e1607303c11a417bfffb96e2e65
+DIST 
github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.mod 
79 BLAKE2B 
51cb1c2c33300626f74f843ce56c333b194b9a46230d3befe94343fe9daa62314a59b74a6d78c97415f839997fb42700c762fe02ef76240924ba52d18f723ad6
 SHA512 
df2dd357e057bb1fc65ef4869f64149f6446257406886e89a39f7dbc7e6c9da25a8c17567b14c8d3adefaf21fba98e0f2663924c7d32a4f82d30377ab4032162
+DIST 
github.com%2Falecthomas%2Funits%2F@v%2Fv0.0.0-20190924025748-f65c72e2690d.zip 
7096 BLAKE2B 
dd3436eacdcf42567210b68830f6a9663ed91531d73aa6c2548f50e387d7081a0908478135816a599014a82e23fd6ca9c2685ce8518c6ca73bce24a9f0ff5f6d
 SHA512 
6111f8ea08657e90dce1ae450736cbc3a6e10cd61ee5211ef4cbb1abe1862d0fa658ef2922b6778084d10af3f3c55744962162bf9fbdf48d2c42f6a15b297ea2
+DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod 34 BLAKE2B 
7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267
 SHA512 
5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e
+DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.mod 34 BLAKE2B 
7e09c2779bf7a84a9271e31522ebbe600a1c11b107d651d91f58c8373e4336332a3a881f3e12b382543d75f20398af66085fcb3e780eed341e870e9c30f29267
 SHA512 
5e079462f7e0dff0efda71f580aa185700cfa936b718a19d0e2a8c63212e47a07022dca0c282832d48e5165aae8e82aeeeb2ac3664268f1148fc772010fb860e
+DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.1.zip 60320 BLAKE2B 
86bdbc333e5c23ccf4f805945ca9f2aecc5c242d2ae824d20127eceaa2bf7bbab239ff2799572a2c8fa206166a36e97d5eccc8fc5021743d8ad32f39cd53b9eb
 SHA512 
7b4e4df2fea731e23e05437f26f24e32b2e99028d685b72e3a726c1cb616ada4a77ca4fb9db4a6fae48178cc5172e724b74499bc776d63a9110cb97377d5edeb
+DIST github.com%2Fgetantibody%2Ffolder%2F@v%2Fv1.0.0.mod 37 BLAKE2B 
49ba5a24d557eaea97dbcab5215c9397751d67803ade4e0cf7944c4df9fa901237d0b2dcda6e84ac2107709029ced4a923dac5d0cf0956d3a9f0a9a434707804
 SHA512 
6e3974583d84e44e60071ef1b448ec76b04d70b5499d409289cbfc443d64573562931d92603f31c7bbea527e74b7b2812c4612b9c0b41800f29443529329c837
+DIST github.com%2Fgetantibody%2Ffolder%2F@v%2Fv1.0.0.zip 2547 BLAKE2B 
971f3ed0e75d5526ae1aa5814291e02f9f2b6b22d901c0236f10f56451e5b79cf44aeca06d7cbf2604801672ecfdbbc790d4651c8dc0b3c7a865f0d08a0f54c6
 SHA512 
b94675f7d794357b6dc9cb346985bf5a09e8a772453a0fbb9bcb2338ff2d21eba0d549b7ec94405b828039d7d36858a9b29daa2447e549d67c33bcff04f07757
+DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.mod 37 BLAKE2B 
94636062c94f8ff68cdcab7593a3acae7b9616cad7b1d5c9cd147a4a1042d33666cbeed6fd816d6793113abfb595183097dcc46de7a3dfadc1423ed43e79
 SHA512 
c3d5c48cdb8ba6af7071a07cfede06e0ab67e3726d9de592a952fad40167dcbdd9621dc2c4df1bd3c28eb99d70b1b6d8d812441237c35bf492e5b7f07bd33902
+DIST github.com%2Fpmezard%2Fgo-difflib%2F@v%2Fv1.0.0.zip 12433 BLAKE2B 
0c911c9d173080abd8edbbab1f47222343801d8eeae36b4add24773e3282fc2a39283fdf519a3d4483e39cdb7d9509b8570d151f46841ac1a616f312dc4cb0ba
 SHA512 

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

2020-05-18 Thread Matt Turner
commit: fb09b7959f13d6b4463c6219aaf5514ec33f55ba
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:04:01 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:04:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb09b795

dev-util/catalyst: Version bump to 3.0.11

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

 dev-util/catalyst/Manifest   | 2 +-
 dev-util/catalyst/{catalyst-3.0.10.ebuild => catalyst-3.0.11.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/catalyst/Manifest b/dev-util/catalyst/Manifest
index 5d0be8ceac2..658cafd144e 100644
--- a/dev-util/catalyst/Manifest
+++ b/dev-util/catalyst/Manifest
@@ -1,2 +1,2 @@
-DIST catalyst-3.0.10.tar.bz2 621118 BLAKE2B 
07c7d79400aad81db60034685bed31c4e3d13bb45cd89689e4e3328c14573a1b824fd13310a14bdef8e638df2374c967520ae919d347e8a8a89059038436e28a
 SHA512 
480377ff8e774484bfbcc223b2bcf3b80641772363c08f80431db9840129a83abb2a69228d681c71dad7395462733ab3c15542bc456d7b92bbf68bb3c97f999a
+DIST catalyst-3.0.11.tar.bz2 62 BLAKE2B 
0104e989e70f8629c43eac0b5b850efe8ed153b3423f24d0dd62ca1f52e1e9a6b1c652f89acfe35f63e80775958c93d7ddb93b9a1a43f7a7bdfbf8fb13a3c93f
 SHA512 
f9a5cbd44d380b1725a771c8f9e88e9123f2fcf10339f66ea653737ab93ceed15870efe1a1c175b5fe7e43c36196afda69ae98ee02df345f7b00da92fd91130d
 DIST catalyst-3.0.9.tar.bz2 873866 BLAKE2B 
293a4d52c57e73269f1f82fed8ea72934a0f939b3b9d4fb9943f4971fd4155edecc6cf0170b917eba16f0125aac9861041b7e10f85f6110a35659a2f85fd3665
 SHA512 
c8c25ad1c76b0040bd84b491909d364306746c660afbbb8c6a074911779aabe89b60a12cc3ac5b9cd3398bdf8986b50d24d9979c3d12d2fa9de66ebf62ded309

diff --git a/dev-util/catalyst/catalyst-3.0.10.ebuild 
b/dev-util/catalyst/catalyst-3.0.11.ebuild
similarity index 100%
rename from dev-util/catalyst/catalyst-3.0.10.ebuild
rename to dev-util/catalyst/catalyst-3.0.11.ebuild



[gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: targets/support/

2020-05-18 Thread Matt Turner
commit: bfca870ed50208dd42bb181390c384f96624d12d
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Mar 27 23:33:31 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:01:00 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=bfca870e

targets: Build with FEATURES=binpkg-multi-instance

Allows stage3+ builds (e.g., netboot, ISOs, stage4) to share binpkg
directories easily.

Signed-off-by: Matt Turner  gentoo.org>
(cherry picked from commit b08a8fabf0c8e6c279848286f74a0c223c82947b)

 targets/support/chroot-functions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/targets/support/chroot-functions.sh 
b/targets/support/chroot-functions.sh
index c08dbaa0..1dfd3277 100755
--- a/targets/support/chroot-functions.sh
+++ b/targets/support/chroot-functions.sh
@@ -78,7 +78,7 @@ get_libdir() {
 
 setup_myfeatures(){
setup_myemergeopts
-   export FEATURES="-news clean-logs"
+   export FEATURES="-news binpkg-multi-instance clean-logs"
if [ -n "${clst_CCACHE}" ]
then
export clst_myfeatures="${clst_myfeatures} ccache"



[gentoo-commits] proj/catalyst: New tag: 3.0.11

2020-05-18 Thread Matt Turner
commit: 
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:02:47 2020 +

New tag: 3.0.11




[gentoo-commits] proj/catalyst:catalyst-3.0-stable commit in: catalyst/

2020-05-18 Thread Matt Turner
commit: 40d17ba8c9e6e32a95d9f75cefe1485fba4ad6f4
Author: Matt Turner  gentoo  org>
AuthorDate: Mon May 18 20:01:32 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon May 18 20:01:32 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=40d17ba8

catalyst 3.0.11

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

 catalyst/version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catalyst/version.py b/catalyst/version.py
index ecbc8654..d9c6bb3a 100644
--- a/catalyst/version.py
+++ b/catalyst/version.py
@@ -12,7 +12,7 @@ import os
 
 from snakeoil.version import get_git_version as get_ver
 
-__version__= "3.0.10"
+__version__= "3.0.11"
 _ver = None
 
 



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libva-intel-media-driver/

2020-05-18 Thread Thomas Deutschmann
commit: 0a6a04e8e08fd688c4305a924fbc0dcc72e1bf98
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon May 18 19:32:42 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon May 18 19:34:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6a04e8

x11-libs/libva-intel-media-driver: bump to v20.1.1

Closes: https://bugs.gentoo.org/717296
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-libs/libva-intel-media-driver/Manifest  |  1 +
 ...99.ebuild => libva-intel-media-driver-20.1.1.ebuild} | 17 +++--
 .../libva-intel-media-driver-.ebuild| 17 +++--
 3 files changed, 15 insertions(+), 20 deletions(-)

diff --git a/x11-libs/libva-intel-media-driver/Manifest 
b/x11-libs/libva-intel-media-driver/Manifest
index 49c558db715..fd0a6a7f392 100644
--- a/x11-libs/libva-intel-media-driver/Manifest
+++ b/x11-libs/libva-intel-media-driver/Manifest
@@ -1,2 +1,3 @@
 DIST intel-media-18.3.0.tar.gz 14422845 BLAKE2B 
07da8e78d069de091bd4f29beb0699c97f007ff0f6543baa40d35923488d6152cb0a921cbe16006b045be973d5651ee01dc98ead0b79d4c779ed39e7a8fb38d9
 SHA512 
96ee85c087994d1e4b6bbd5fca8e558d9169f8b7c130fdb4571ecd4dcbb31fe4a73607cc1b055918f27e90dbb25843d851bb8a1e2557733b4795e937479d
 DIST intel-media-18.4.1.tar.gz 14657816 BLAKE2B 
eb0be7c756e290bf5318987e375e9ad531fb4e318e4bf83f6c5d68106112a06d505ed7f8abc5ecb277b4430883d2153fe6c68ba683241253cb0d32853bb8dab2
 SHA512 
ed5d4116ab4af36761a0a819105f4ff5551d437e3f1ab8c1b2ea20a89a1792b7558bacd1ea8f082f595fce21d72810f806820b8543e1cbfcd2de7e28e649a536
+DIST intel-media-20.1.1.tar.gz 21788401 BLAKE2B 
53f2ebf5941c487253d02d0e23229cd408eb3b53ef37cfdefb1a874e5a6c9b051b69ccda513c2d1d9bb9cc03814bc3db40a40241eb3c7a0a78edba3ba7e9bf01
 SHA512 
696f3b82d155e472285150b476daf9195ec6cbad0526f017fd0c57c1fb02618210b3e96eb13351ee286f3502df4970a22a940c3476877fa1f5c23dc85a646c25

diff --git 
a/x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild 
b/x11-libs/libva-intel-media-driver/libva-intel-media-driver-20.1.1.ebuild
similarity index 85%
copy from x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
copy to x11-libs/libva-intel-media-driver/libva-intel-media-driver-20.1.1.ebuild
index 14fd59d2767..3c1a6331fa3 100644
--- a/x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
+++ b/x11-libs/libva-intel-media-driver/libva-intel-media-driver-20.1.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-utils
 
@@ -11,31 +11,28 @@ if [[ ${PV} == * ]] ; then
: ${EGIT_BRANCH:="release/${PV%.}"}
fi
inherit git-r3
-fi
-
-DESCRIPTION="Intel Media Driver for VAAPI (iHD)"
-HOMEPAGE="https://github.com/intel/media-driver;
-if [[ ${PV} == * ]] ; then
-   SRC_URI=""
-   KEYWORDS=""
 else

SRC_URI="https://github.com/intel/media-driver/archive/intel-media-${PV}.tar.gz;
S="${WORKDIR}/media-driver-intel-media-${PV}"
KEYWORDS="~amd64"
 fi
 
+DESCRIPTION="Intel Media Driver for VAAPI (iHD)"
+HOMEPAGE="https://github.com/intel/media-driver;
+
 LICENSE="MIT BSD"
 SLOT="0"
 IUSE=""
 
 DEPEND=">=media-libs/gmmlib-${PV}
-   >=x11-libs/libva-2.3.0
+   >=x11-libs/libva-2.7.1
>=x11-libs/libpciaccess-0.13.1-r1:=
 "
 RDEPEND="${DEPEND}"
 
 src_configure() {
local mycmakeargs=(
+   -DMEDIA_BUILD_FATAL_WARNINGS=OFF
-DMEDIA_RUN_TEST_SUITE=OFF
)
 

diff --git 
a/x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild 
b/x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
index 14fd59d2767..3c1a6331fa3 100644
--- a/x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
+++ b/x11-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-utils
 
@@ -11,31 +11,28 @@ if [[ ${PV} == * ]] ; then
: ${EGIT_BRANCH:="release/${PV%.}"}
fi
inherit git-r3
-fi
-
-DESCRIPTION="Intel Media Driver for VAAPI (iHD)"
-HOMEPAGE="https://github.com/intel/media-driver;
-if [[ ${PV} == * ]] ; then
-   SRC_URI=""
-   KEYWORDS=""
 else

SRC_URI="https://github.com/intel/media-driver/archive/intel-media-${PV}.tar.gz;
S="${WORKDIR}/media-driver-intel-media-${PV}"
KEYWORDS="~amd64"
 fi
 
+DESCRIPTION="Intel Media Driver for VAAPI (iHD)"
+HOMEPAGE="https://github.com/intel/media-driver;
+
 LICENSE="MIT BSD"
 SLOT="0"
 IUSE=""
 
 DEPEND=">=media-libs/gmmlib-${PV}
-   >=x11-libs/libva-2.3.0
+   >=x11-libs/libva-2.7.1

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

2020-05-18 Thread Ulrich Müller
commit: d2552fadec313a6ec08717cc371c527a39a29401
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon May 18 19:32:34 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon May 18 19:33:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2552fad

net-im/zoom: Remove old.

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

 net-im/zoom/Manifest|   4 --
 net-im/zoom/zoom-3.5.392530.0421.ebuild | 108 
 net-im/zoom/zoom-5.0.399860.0429.ebuild |  99 -
 3 files changed, 211 deletions(-)

diff --git a/net-im/zoom/Manifest b/net-im/zoom/Manifest
index fe0d40fbb20..dab6701228d 100644
--- a/net-im/zoom/Manifest
+++ b/net-im/zoom/Manifest
@@ -1,7 +1,3 @@
-DIST zoom-3.5.392530.0421_i686.tar.xz 48727688 BLAKE2B 
bbbc589ed1ad0fa5b38dbfab03e68c9d102cb7ac8220287a477261def77dd349e12ff351e7581aa59dc184813b923b1026a57ca1d4111ba42171b36cfb4f09c1
 SHA512 
e7501f02a31cd0a58df362cb3c3f43bbcb58ce15d0a55b440747b0e096d367cbb877aab9b4b21579016307376c0ca3831a09d1639bd67321fa3c6ceec3daf414
-DIST zoom-3.5.392530.0421_x86_64.tar.xz 72984788 BLAKE2B 
90823dc29bb679b9d75e80764bae8b13da77fb7fce2c5f873118037e420ff67f9c1f8de63b90ae84a8de56feb571033d3803fb9cf6676f3f5380012a71b708e0
 SHA512 
1af24a10eff6d70c00d72fe5432340ada3b486778e9c06d2d11cf802ea0bc02792469db7f172fafd9329bddba9face6b0d28e3892c3657959500c1be34dc31af
-DIST zoom-5.0.399860.0429_i686.tar.xz 38589772 BLAKE2B 
900702db7dd5bd7aea4aae60e0fa5925afa1df081cb9004dae3e86d3bdbcaec151f03325d7de0cce5e7f11d745bc70d73dde2a93c0918da6ea5a1911cf416143
 SHA512 
42792ba934418fdc0def31bb16071bcfefd7a5a10075e0de220b9b107a3a5d7ca5f3d4fc71b2e9ab8702acec6b7532da75d6ccfa55a40280d59518644de1c9a1
-DIST zoom-5.0.399860.0429_x86_64.tar.xz 41470716 BLAKE2B 
f3d26a2d2ec95209ed0126be29ba5658c68a2769dab58457da021e2d8b555a8475d18e168236b52559582ac088f0163b2ed32d803e08e3f0c6249fe7df5c7b41
 SHA512 
1a9c9cbcfcd0e58c330780f78779ecb08265fdb87813f54be89d20f26aeaf4c89176055cc8210559eaa24f995e544198b7099cc328388794cbb6f6b0a9dac2d9
 DIST zoom-5.0.403652.0509_i686.tar.xz 38658880 BLAKE2B 
60d93987f627ecaeb149570e225d9c0e74ddb3e21a9565e7465ff2aab0dee3ff3d304ec58f35a9ed783e4fbb8ca7d4c24706a7aa76c194f94e40ab77f75073f9
 SHA512 
3f49c76b28dc0c14272df6632cb0cdafcd67500bf14a5a7e4e0a7f6e685a0d7e3adef522a1c5ba3f8a31ef8c5d880ed686dcf1dae1934b1f86dc8e3871894b64
 DIST zoom-5.0.403652.0509_x86_64.tar.xz 41506968 BLAKE2B 
51fff1a2915fad97c4f5cfde370c1dd1c4849d01b9ea7eaa77580d31d46acbdcc4a19bed7e105e8323f02c7bc344d4ff42ed2a434729b880eedb66f1a3f1f0b4
 SHA512 
5a6c2070b71324ef89040377b759c5ba0f4ab21662c9cf714e57af5bc0a3f28d029f03fd80883479f7a62561b2f136ad480d2efd3dce83398aab814e2a21f8fe
 DIST zoom-5.0.408598.0517_i686.tar.xz 38668604 BLAKE2B 
a503019946689f796a96a29d930ba4a997d233d6f0ff7ad6c100ab25b581b58fd09e811ae444ee0dd94e60c3ddc8b52bcdbd45f2c1daaa201fc71406bf11b764
 SHA512 
3f38df83c26d2a2be6af7cd8f2e4043edbdaf4262becd8ac0eea07e4822743fdb348bc9fbdda9d378aed7c0ab540755fb0218abd0c1eef32a72bb57eed27

diff --git a/net-im/zoom/zoom-3.5.392530.0421.ebuild 
b/net-im/zoom/zoom-3.5.392530.0421.ebuild
deleted file mode 100644
index 3dccb750177..000
--- a/net-im/zoom/zoom-3.5.392530.0421.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop eutils xdg-utils
-
-DESCRIPTION="Video conferencing and web conferencing service"
-HOMEPAGE="https://zoom.us/;
-SRC_URI="amd64? ( https://zoom.us/client/${PV}/${PN}_x86_64.tar.xz -> 
${P}_x86_64.tar.xz )
-   x86? ( https://zoom.us/client/${PV}/${PN}_i686.tar.xz -> 
${P}_i686.tar.xz )"
-S="${WORKDIR}/${PN}"
-
-LICENSE="all-rights-reserved Apache-2.0" # Apache-2.0 for icon
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE="bundled-libjpeg-turbo pulseaudio"
-RESTRICT="mirror bindist strip"
-
-RDEPEND="!games-engines/zoom
-   dev-libs/glib:2
-   dev-libs/icu
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdiag:5
-   dev-qt/qtgraphicaleffects:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtquickcontrols:5[widgets]
-   dev-qt/qtscript:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5
-   media-sound/mpg123
-   sys-apps/dbus
-   sys-apps/util-linux
-   virtual/opengl
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXtst
-   x11-libs/xcb-util-image
-   x11-libs/xcb-util-keysyms
-   amd64? (
-   dev-qt/qtdeclarative:5[widgets]
-   dev-qt/qtpositioning:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwebchannel:5
-   dev-qt/qtwebengine:5[widgets]
-   )
-   x86? (
-   dev-qt/qtdeclarative:5
-   dev-qt/qtwebkit:5
-   )
-   !bundled-libjpeg-turbo? ( media-libs/libjpeg-turbo )
-   

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

2020-05-18 Thread Ulrich Müller
commit: 325021d5bf729759199494cc4905fe531a31c6d5
Author: Ulrich Müller  gentoo  org>
AuthorDate: Mon May 18 19:31:50 2020 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Mon May 18 19:33:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=325021d5

net-im/zoom: Version bump to 5.0.408598.0517.

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

 net-im/zoom/Manifest|   2 +
 net-im/zoom/zoom-5.0.408598.0517.ebuild | 106 
 2 files changed, 108 insertions(+)

diff --git a/net-im/zoom/Manifest b/net-im/zoom/Manifest
index bef3b186f08..fe0d40fbb20 100644
--- a/net-im/zoom/Manifest
+++ b/net-im/zoom/Manifest
@@ -4,3 +4,5 @@ DIST zoom-5.0.399860.0429_i686.tar.xz 38589772 BLAKE2B 
900702db7dd5bd7aea4aae60e
 DIST zoom-5.0.399860.0429_x86_64.tar.xz 41470716 BLAKE2B 
f3d26a2d2ec95209ed0126be29ba5658c68a2769dab58457da021e2d8b555a8475d18e168236b52559582ac088f0163b2ed32d803e08e3f0c6249fe7df5c7b41
 SHA512 
1a9c9cbcfcd0e58c330780f78779ecb08265fdb87813f54be89d20f26aeaf4c89176055cc8210559eaa24f995e544198b7099cc328388794cbb6f6b0a9dac2d9
 DIST zoom-5.0.403652.0509_i686.tar.xz 38658880 BLAKE2B 
60d93987f627ecaeb149570e225d9c0e74ddb3e21a9565e7465ff2aab0dee3ff3d304ec58f35a9ed783e4fbb8ca7d4c24706a7aa76c194f94e40ab77f75073f9
 SHA512 
3f49c76b28dc0c14272df6632cb0cdafcd67500bf14a5a7e4e0a7f6e685a0d7e3adef522a1c5ba3f8a31ef8c5d880ed686dcf1dae1934b1f86dc8e3871894b64
 DIST zoom-5.0.403652.0509_x86_64.tar.xz 41506968 BLAKE2B 
51fff1a2915fad97c4f5cfde370c1dd1c4849d01b9ea7eaa77580d31d46acbdcc4a19bed7e105e8323f02c7bc344d4ff42ed2a434729b880eedb66f1a3f1f0b4
 SHA512 
5a6c2070b71324ef89040377b759c5ba0f4ab21662c9cf714e57af5bc0a3f28d029f03fd80883479f7a62561b2f136ad480d2efd3dce83398aab814e2a21f8fe
+DIST zoom-5.0.408598.0517_i686.tar.xz 38668604 BLAKE2B 
a503019946689f796a96a29d930ba4a997d233d6f0ff7ad6c100ab25b581b58fd09e811ae444ee0dd94e60c3ddc8b52bcdbd45f2c1daaa201fc71406bf11b764
 SHA512 
3f38df83c26d2a2be6af7cd8f2e4043edbdaf4262becd8ac0eea07e4822743fdb348bc9fbdda9d378aed7c0ab540755fb0218abd0c1eef32a72bb57eed27
+DIST zoom-5.0.408598.0517_x86_64.tar.xz 41559224 BLAKE2B 
56ef7e0b9f7277a7391d92bb8b0259ea98b2931b216bcace8dff43981f0b148846c5bfe0b1c476692712fd342e6652f4cae8d536e7f645168a84fb113e3c97ee
 SHA512 
46762cf46974e4239bc716d1ccba8ec74ba1040bb7f917625535edc2422dcd07df22a448360d35a3e82ef1ab905d7f280401005e9398b5229e515d120d848222

diff --git a/net-im/zoom/zoom-5.0.408598.0517.ebuild 
b/net-im/zoom/zoom-5.0.408598.0517.ebuild
new file mode 100644
index 000..314ddbedc6b
--- /dev/null
+++ b/net-im/zoom/zoom-5.0.408598.0517.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop eutils readme.gentoo-r1 xdg-utils
+
+DESCRIPTION="Video conferencing and web conferencing service"
+HOMEPAGE="https://zoom.us/;
+SRC_URI="amd64? ( https://zoom.us/client/${PV}/${PN}_x86_64.tar.xz -> 
${P}_x86_64.tar.xz )
+   x86? ( https://zoom.us/client/${PV}/${PN}_i686.tar.xz -> 
${P}_i686.tar.xz )"
+S="${WORKDIR}/${PN}"
+
+LICENSE="all-rights-reserved Apache-2.0" # Apache-2.0 for icon
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+IUSE="bundled-libjpeg-turbo pulseaudio"
+RESTRICT="mirror bindist strip"
+
+RDEPEND="!games-engines/zoom
+   dev-libs/glib:2
+   dev-libs/icu
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   amd64? ( dev-qt/qtdeclarative:5[widgets] )
+   x86? ( dev-qt/qtdeclarative:5 )
+   dev-qt/qtdiag:5
+   dev-qt/qtgraphicaleffects:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5[widgets]
+   dev-qt/qtscript:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   media-sound/mpg123
+   sys-apps/dbus
+   sys-apps/util-linux
+   virtual/opengl
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXtst
+   x11-libs/xcb-util-image
+   x11-libs/xcb-util-keysyms
+   !bundled-libjpeg-turbo? ( media-libs/libjpeg-turbo )
+   pulseaudio? ( media-sound/pulseaudio )
+   !pulseaudio? ( media-libs/alsa-lib )"
+
+BDEPEND="!pulseaudio? ( dev-util/bbe )"
+
+QA_PREBUILT="opt/zoom/*"
+
+src_prepare() {
+   default
+   if ! use pulseaudio; then
+   # For some strange reason, zoom cannot use any ALSA sound 
devices if
+   # it finds libpulse. This causes breakage if 
media-sound/apulse[sdk]
+   # is installed. So, force zoom to ignore libpulse.
+   bbe -e 's/libpulse.so/IgNoRePuLsE/' zoom >zoom.tmp || die
+   mv zoom.tmp zoom || die
+   fi
+}
+
+src_install() {
+   insinto /opt/zoom
+   exeinto /opt/zoom
+   doins -r json sip timezones translations
+   doins *.pcm *.pem *.sh Embedded.properties version.txt
+   use amd64 && doins icudtl.dat
+   doexe zoom{,.sh,linux} zopen 

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

2020-05-18 Thread Michał Górny
commit: 878eddfea083eda5aea60510aa1c4e9145f26b99
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 18 19:22:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 18 19:22:17 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=878eddfe

Revert "doebuild: Use ccache/distcc/icecream only in src_* phases"

This breaks ccache/etc. entirely as they are no longer present in PATH
in later phases.

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

 lib/portage/package/ebuild/doebuild.py | 9 +
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/lib/portage/package/ebuild/doebuild.py 
b/lib/portage/package/ebuild/doebuild.py
index 1343eca6d..2bff94cb1 100644
--- a/lib/portage/package/ebuild/doebuild.py
+++ b/lib/portage/package/ebuild/doebuild.py
@@ -486,14 +486,7 @@ def doebuild_environment(myebuild, mydo, myroot=None, 
settings=None,
distcc = "distcc" in mysettings.features
icecream = "icecream" in mysettings.features
 
-   # run cc thingies only in src_* phases as otherwise they might
-   # create files with incorrect ownership and trip over
-   # (NB: install has a similar issue but 1) some badly written
-   # packages rebuild stuff there, so ccache is very helpful
-   # and 2) almost always some compilation will happen earlier,
-   # so permissions will be already set correctly)
-   if (ccache or distcc or icecream) and mydo in ('unpack',
-   'prepare', 'configure', 'test', 'install'):
+   if ccache or distcc or icecream:
libdir = None
default_abi = mysettings.get("DEFAULT_ABI")
if default_abi:



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

2020-05-18 Thread Lars Wendler
commit: 467e91fc7176ec0662bd6ed4d490c455cf76f3f2
Author: Lars Wendler  gentoo  org>
AuthorDate: Mon May 18 18:59:26 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Mon May 18 18:59:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=467e91fc

sys-apps/fwupd: Bump to version 1.4.2

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

 sys-apps/fwupd/Manifest   |   1 +
 sys-apps/fwupd/fwupd-1.4.2.ebuild | 158 ++
 2 files changed, 159 insertions(+)

diff --git a/sys-apps/fwupd/Manifest b/sys-apps/fwupd/Manifest
index 16de0d90cbf..e86c181f155 100644
--- a/sys-apps/fwupd/Manifest
+++ b/sys-apps/fwupd/Manifest
@@ -2,3 +2,4 @@ DIST fwupd-1.2.11.tar.gz 1945646 BLAKE2B 
4eb6d5008d0e515880147a94b2632ed70b5f7ab
 DIST fwupd-1.3.8.tar.gz 2246170 BLAKE2B 
b55df322c64947b7bf05daaec2c5b2f646a4e53d757482dcd4d33e94d725315e6456bf69d5dbca3ef870437e1cc2a861537fc7af9b059497f119f08477de
 SHA512 
0f0aa380adc5e167e49db4261b50bee9c905786afcd44b5fe221f42a77306219d40888989e0b16448535eaf077baed12de56b6cca42f91fca09c4a8384f243e4
 DIST fwupd-1.3.9.tar.gz 2254260 BLAKE2B 
ead64be3eca00fd2d045fb6c5ccd42d8913fa056736e6ae039feef70b6edababe50fb0552db39bf057750d3f0d2224b18b7ecf5a5a408a1f1ac3023d89687f68
 SHA512 
b81ef1f683082e4c49ab8acd8848118fed1383d4e3e73967daaa68927e553a5bc4973004d3dd26b268b901c5deb1f9238a98537d24cfd957162f508c9622e1e4
 DIST fwupd-1.4.1.tar.gz 2301866 BLAKE2B 
057c7cdc4449aa67540719e6b7b1f073e8b247aa80dd99cb4b1c4ebf7c368c5089ddc25200bb0a42706196e3025c21a5d09f5f507d52e5c0fc5fc6d5c1eacd46
 SHA512 
abec0c2d66bd7e256cefa5e0ce59bbf339ea2ffb6173671c7f6cf8893b0931c16c48c47153507bc1af3f31157dba8bddf566bba1b62b8a722fa1f50780a1f921
+DIST fwupd-1.4.2.tar.gz 2304086 BLAKE2B 
9a725cc49479984c3a98b75e9c52211a26f81d4a7ecec3b261ff4486201a967a6c82df9a1dbd591b91d9cd6eb9d1a8cd8cccfd2c8dd98d5bb3f82cb03bbd0a52
 SHA512 
b092eedf3e5e84874de1fddb7f14ca87975d5895721ac4f87b6c88ec7c7b2367e573b30906588f9adad4cea52da5ebbaaa4a9c38a2273e8f31d26399e719166e

diff --git a/sys-apps/fwupd/fwupd-1.4.2.ebuild 
b/sys-apps/fwupd/fwupd-1.4.2.ebuild
new file mode 100644
index 000..fc4bbdbfe90
--- /dev/null
+++ b/sys-apps/fwupd/fwupd-1.4.2.ebuild
@@ -0,0 +1,158 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit linux-info meson python-single-r1 vala xdg toolchain-funcs
+
+DESCRIPTION="Aims to make updating firmware on Linux automatic, safe and 
reliable"
+HOMEPAGE="https://fwupd.org;
+SRC_URI="https://github.com/hughsie/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="agent amt consolekit dell gtk-doc elogind minimal introspection +man 
nvme redfish synaptics systemd test thunderbolt tpm uefi"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   ^^ ( consolekit elogind minimal systemd )
+   dell? ( uefi )
+   minimal? ( !introspection )
+"
+RESTRICT="!test? ( test )"
+
+BDEPEND="$(vala_depend)
+   virtual/pkgconfig
+   gtk-doc? ( dev-util/gtk-doc )
+   introspection? ( dev-libs/gobject-introspection )
+   man? (
+   app-text/docbook-sgml-utils
+   sys-apps/help2man
+   )
+   test? (
+   thunderbolt? ( dev-util/umockdev )
+   net-libs/gnutls[tools]
+   )
+"
+DEPEND="${PYTHON_DEPS}
+   >=app-arch/gcab-1.0
+   app-arch/libarchive:=
+   dev-db/sqlite
+   >=dev-libs/glib-2.45.8:2
+   dev-libs/json-glib
+   dev-libs/libgpg-error
+   dev-libs/libgudev:=
+   >=dev-libs/libgusb-0.2.9[introspection?]
+   >=dev-libs/libjcat-0.1.0[gpg,pkcs7]
+   >=dev-libs/libxmlb-0.1.13
+   $(python_gen_cond_dep '
+   dev-python/pillow[${PYTHON_MULTI_USEDEP}]
+   dev-python/pycairo[${PYTHON_MULTI_USEDEP}]
+   dev-python/pygobject:3[cairo,${PYTHON_MULTI_USEDEP}]
+   ')
+   >=net-libs/libsoup-2.51.92:2.4[introspection?]
+   virtual/libelf:0=
+   virtual/udev
+   consolekit? ( >=sys-auth/consolekit-1.0.0 )
+   dell? (
+   sys-libs/efivar
+   >=sys-libs/libsmbios-2.4.0
+   )
+   elogind? ( sys-auth/elogind )
+   !minimal? (
+   >=sys-auth/polkit-0.103
+   )
+   nvme? ( sys-libs/efivar )
+   redfish? ( sys-libs/efivar )
+   systemd? ( >=sys-apps/systemd-211 )
+   tpm? ( app-crypt/tpm2-tss )
+   uefi? (
+   app-crypt/tpm2-tss
+   media-libs/fontconfig
+   media-libs/freetype
+   sys-boot/gnu-efi
+   sys-boot/efibootmgr
+   >=sys-libs/efivar-33
+   x11-libs/cairo
+   )
+"
+# Block sci-chemistry/chemical-mime-data for bug #701900
+RDEPEND="
+   != 4.4"
+   fi
+}
+
+src_prepare() {
+   default
+   # c.f. 

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

2020-05-18 Thread Hans de Graaff
commit: 5ec39c38a5525e6f79a6985c7ae206b2f3d47728
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:38:43 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ec39c38

dev-ruby/activemodel: add 6.0.3.1

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

 dev-ruby/activemodel/Manifest   |  1 +
 dev-ruby/activemodel/activemodel-6.0.3.1.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-ruby/activemodel/Manifest b/dev-ruby/activemodel/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/activemodel/Manifest
+++ b/dev-ruby/activemodel/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activemodel/activemodel-6.0.3.1.ebuild 
b/dev-ruby/activemodel/activemodel-6.0.3.1.ebuild
new file mode 100644
index 000..1494c493a78
--- /dev/null
+++ b/dev-ruby/activemodel/activemodel-6.0.3.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Toolkit for building modeling frameworks like Active Record and 
Active Resource"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}:*
+"
+
+ruby_add_bdepend "
+   test? (
+   ~dev-ruby/railties-${PV}
+   dev-ruby/test-unit:2
+   dev-ruby/mocha
+   >=dev-ruby/bcrypt-ruby-3.1.7
+   )"
+
+all_ruby_prepare() {
+   # Set test environment to our hand.
+   sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove 
load paths"
+}



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

2020-05-18 Thread Hans de Graaff
commit: 87b696ea38b73b1f9dad1360fec1cdf57ff3fc43
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:40:03 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87b696ea

dev-ruby/actionview: add 6.0.3.1

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

 dev-ruby/actionview/Manifest  |  1 +
 dev-ruby/actionview/actionview-6.0.3.1.ebuild | 63 +++
 2 files changed, 64 insertions(+)

diff --git a/dev-ruby/actionview/Manifest b/dev-ruby/actionview/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/actionview/Manifest
+++ b/dev-ruby/actionview/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actionview/actionview-6.0.3.1.ebuild 
b/dev-ruby/actionview/actionview-6.0.3.1.ebuild
new file mode 100644
index 000..0b4fd032262
--- /dev/null
+++ b/dev-ruby/actionview/actionview-6.0.3.1.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Simple, battle-tested conventions and helpers for building web 
pages"
+HOMEPAGE="https://github.com/rails/rails/;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/builder-3.1:* =dev-ruby/builder-3*:*
+   >=dev-ruby/erubi-1.4:0
+   >=dev-ruby/rails-html-sanitizer-1.2.0:1
+   dev-ruby/rails-dom-testing:2
+"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/mocha
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/activemodel-${PV}
+   ~dev-ruby/activerecord-${PV}
+   )"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|rack-cache\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\|bcrypt\|uglifier\|mime-types\|minitest\|sprockets\|stackprof\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+
+   # Avoid tests failing due to missing logger setup in activerecord,
+   # most likely related to test environment setup.
+   #rm -f 
test/activerecord/render_partial_with_record_identification_test.rb || die
+
+   # Fix loading of activerecord integration tests. This avoids loading
+   # activerecord twice and thus redefining constants leading to
+   # failures. Bug #719342
+   sed -e '/abstract_unit/arequire "active_record/fixtures"' \
+   -e '/defined/ s/FixtureSet/ActiveRecord::FixtureSet/' \
+   -i test/active_record_unit.rb || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: 3697198823da596c66fcbac194e208e5c0dd513f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:38:12 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36971988

dev-ruby/activesupport: add 6.0.3.1

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

 dev-ruby/activesupport/Manifest|  1 +
 .../activesupport/activesupport-6.0.3.1.ebuild | 73 ++
 2 files changed, 74 insertions(+)

diff --git a/dev-ruby/activesupport/Manifest b/dev-ruby/activesupport/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/activesupport/Manifest
+++ b/dev-ruby/activesupport/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activesupport/activesupport-6.0.3.1.ebuild 
b/dev-ruby/activesupport/activesupport-6.0.3.1.ebuild
new file mode 100644
index 000..bf4536107f9
--- /dev/null
+++ b/dev-ruby/activesupport/activesupport-6.0.3.1.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Utility Classes and Extension to the Standard Library"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   >=dev-ruby/concurrent-ruby-1.0.2:1
+   dev-ruby/i18n:1
+   >=dev-ruby/tzinfo-1.1:1
+   >=dev-ruby/minitest-5.1:5
+   >=dev-ruby/zeitwerk-2.1.8:2
+"
+
+# memcache-client, nokogiri, builder, and redis are not strictly needed,
+# but there are tests using this code.
+ruby_add_bdepend "test? (
+   >=dev-ruby/dalli-2.2.1
+   >=dev-ruby/nokogiri-1.4.5
+   >=dev-ruby/builder-3.1.0
+   >=dev-ruby/listen-3.0.5:3
+   dev-ruby/rack
+   dev-ruby/mocha
+   )"
+
+all_ruby_prepare() {
+   # Set the secure permissions that tests expect.
+   chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
+
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|mysql\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|minitest\|sprockets\|stackprof\|rack-cache\|redis\|sqlite\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' \
+   -e 's/gemspec/gemspec path: "activesupport"/' \
+   -e '5igem "builder"; gem "rack"' ../Gemfile || die
+   rm ../Gemfile.lock || die
+   sed -i -e '1igem "tzinfo", "~> 1.1"' test/abstract_unit.rb || die
+
+   # Avoid test that depends on timezone
+   sed -i -e '/test_implicit_coercion/,/^  end/ s:^:#:' 
test/core_ext/duration_test.rb || die
+
+   # Avoid tests that seem to trigger race conditions.
+   rm -f test/evented_file_update_checker_test.rb || die
+
+   # Avoid test that 

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

2020-05-18 Thread Hans de Graaff
commit: 345bf0ce5e63a200da3e7d5554a4a9c79bbc7f40
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:39:31 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=345bf0ce

dev-ruby/activejob: add 6.0.3.1

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

 dev-ruby/activejob/Manifest |  1 +
 dev-ruby/activejob/activejob-6.0.3.1.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/activejob/Manifest b/dev-ruby/activejob/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/activejob/Manifest
+++ b/dev-ruby/activejob/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activejob/activejob-6.0.3.1.ebuild 
b/dev-ruby/activejob/activejob-6.0.3.1.ebuild
new file mode 100644
index 000..b6081286eb1
--- /dev/null
+++ b/dev-ruby/activejob/activejob-6.0.3.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Job framework with pluggable queues"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/globalid-0.3.6
+"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/mocha
+   )"
+
+all_ruby_prepare() {
+   # Set test environment to our hand.
+   sed -i -e '/load_paths/d' test/helper.rb || die "Unable to remove load 
paths"
+
+   # Remove all currently unpackaged queues.
+   sed -i -e 's/que queue_classic resque sidekiq sneakers sucker_punch 
backburner//' \
+   -e 's/delayed_job//' Rakefile || die
+   sed -i -e '/SneakersAdapter/ s:^:#:' test/cases/exceptions_test.rb || 
die
+}



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

2020-05-18 Thread Hans de Graaff
commit: 5e4d000e3846ffcd06deee56bdfc9c5ed63f2fd6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:42:05 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e4d000e

dev-ruby/activerecord: add 6.0.3.1

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

 dev-ruby/activerecord/Manifest|  1 +
 dev-ruby/activerecord/activerecord-6.0.3.1.ebuild | 86 +++
 2 files changed, 87 insertions(+)

diff --git a/dev-ruby/activerecord/Manifest b/dev-ruby/activerecord/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/activerecord/Manifest
+++ b/dev-ruby/activerecord/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activerecord/activerecord-6.0.3.1.ebuild 
b/dev-ruby/activerecord/activerecord-6.0.3.1.ebuild
new file mode 100644
index 000..952512d4e31
--- /dev/null
+++ b/dev-ruby/activerecord/activerecord-6.0.3.1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+# this is not null so that the dependencies will actually be filled
+RUBY_FAKEGEM_TASK_TEST="test"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM"
+HOMEPAGE="https://github.com/rails/rails/;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86"
+IUSE="mysql postgres sqlite"
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "~dev-ruby/activesupport-${PV}
+   ~dev-ruby/activemodel-${PV}
+   sqlite? ( >=dev-ruby/sqlite3-1.4 )
+   mysql? ( || ( dev-ruby/mysql2:0.5 >=dev-ruby/mysql2-0.4.4:0.4 ) )
+   postgres? ( || ( dev-ruby/pg:1 >=dev-ruby/pg-0.18.0:0 ) )"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/bundler
+   ~dev-ruby/actionpack-${PV}
+   >=dev-ruby/sqlite3-1.3.6
+   dev-ruby/mocha
+   dev-ruby/minitest:5
+   )"
+
+DEPEND+=" test? ( >=dev-db/sqlite-3.12.1 )"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   rm ../Gemfile.lock || die
+   sed -i -e 
"/\(uglifier\|system_timer\|sdoc\|w3c_validators\|pg\|jquery-rails\|execjs\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\|minitest\|sprockets\|stackprof\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   sed -i -e '/rack-ssl/d' -e 's/~> 3.4/>= 3.4/' 
../railties/railties.gemspec || die
+   sed -e '/bcrypt/ s/3.0.0/3.0/' \
+   -i ../Gemfile || die
+
+   # Add back json in the Gemfile because we dropped some dependencies
+   # earlier that implicitly required it.
+   sed -i -e '$agem "json"' ../Gemfile || die
+
+   # Avoid test depending on mysql adapter which we don't support for
+   # this Rails version to simplify our dependencies.
+   rm 

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

2020-05-18 Thread Hans de Graaff
commit: db0cd7876d72abb0083565551d51ee4f62039c75
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:41:30 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0cd787

dev-ruby/actionmailer: add 6.0.3.1

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

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

diff --git a/dev-ruby/actionmailer/Manifest b/dev-ruby/actionmailer/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/actionmailer/Manifest
+++ b/dev-ruby/actionmailer/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actionmailer/actionmailer-6.0.3.1.ebuild 
b/dev-ruby/actionmailer/actionmailer-6.0.3.1.ebuild
new file mode 100644
index 000..9de7bbb7b27
--- /dev/null
+++ b/dev-ruby/actionmailer/actionmailer-6.0.3.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Framework for designing email-service layers"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/actionview-${PV}
+   ~dev-ruby/activejob-${PV}
+   >=dev-ruby/mail-2.5.4:* =dev-ruby/mail-2*:*
+   dev-ruby/rails-dom-testing:2"
+
+ruby_add_bdepend "test? (
+   dev-ruby/mocha
+)"
+
+all_ruby_prepare() {
+   # Set test environment to our hand.
+   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
+   sed -i -e '/\/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"
+
+   # Avoid a test failing only on attachment ordering, since this is a
+   # security release.
+   sed -i -e '/adding inline attachments while rendering mail works/askip 
"gentoo: fails on ordering"' test/base_test.rb || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: d086ebe2a12916f03c27d9e1810c90ff36ec3a7c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:39:06 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d086ebe2

dev-ruby/actioncable: add 6.0.3.1

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

 dev-ruby/actioncable/Manifest   |  1 +
 dev-ruby/actioncable/actioncable-6.0.3.1.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/actioncable/Manifest b/dev-ruby/actioncable/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/actioncable/Manifest
+++ b/dev-ruby/actioncable/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actioncable/actioncable-6.0.3.1.ebuild 
b/dev-ruby/actioncable/actioncable-6.0.3.1.ebuild
new file mode 100644
index 000..e52e0ab9a50
--- /dev/null
+++ b/dev-ruby/actioncable/actioncable-6.0.3.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_EXTRAINSTALL="app"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Integrated WebSockets for Rails"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+# Tests require many new dependencies, skipping for now
+RESTRICT="test"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}:*
+   dev-ruby/nio4r:2
+   >=dev-ruby/websocket-driver-0.6.1:*
+"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/railties-4.2.0
+   dev-ruby/test-unit:2
+   >=dev-ruby/mocha-0.14.0:0.14
+   )"



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

2020-05-18 Thread Hans de Graaff
commit: ce0787b9462c381ec4c18ce9cb0b35606d6db52a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:41:02 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce0787b9

dev-ruby/activestorage: add 6.0.3.1

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

 dev-ruby/activestorage/Manifest|  1 +
 .../activestorage/activestorage-6.0.3.1.ebuild | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/activestorage/Manifest b/dev-ruby/activestorage/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/activestorage/Manifest
+++ b/dev-ruby/activestorage/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activestorage/activestorage-6.0.3.1.ebuild 
b/dev-ruby/activestorage/activestorage-6.0.3.1.ebuild
new file mode 100644
index 000..a866c2b3677
--- /dev/null
+++ b/dev-ruby/activestorage/activestorage-6.0.3.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="activestorage.gemspec"
+
+RUBY_FAKEGEM_EXTRAINSTALL="app config db"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Attach cloud and local files in Rails applications"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+DEPEND+=" test? ( app-text/mupdf ) "
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}:*
+   ~dev-ruby/activerecord-${PV}:*
+   >=dev-ruby/marcel-0.3.1 =dev-ruby/marcel-0.3*
+"
+
+ruby_add_bdepend "
+   test? (
+   ~dev-ruby/railties-${PV}
+   >=dev-ruby/image_processing-1.2:0
+   dev-ruby/test-unit:2
+   dev-ruby/mini_magick
+   dev-ruby/mocha
+   dev-ruby/rake
+   dev-ruby/sqlite3
+   )"
+
+all_ruby_prepare() {
+  # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|aws-sdk-s3\|aws-sdk-sns\|google-cloud-storage\|azure-storage\|blade\|bootsnap\|hiredis\|qunit-selenium\|chromedriver-helper\|redis\|rb-inotify\|sprockets\|stackprof\|websocket-client-simple\|libxml-ruby\|sass-rails\|rubocop\|capybara\|rack-cache\|selenium\|json\|dalli\|listen\|connection_pool\|puma\|mysql2\|webdrivers\)/
 s:^:#:" \
+   -e '/dalli/ s/2.7.7/2.7.9/' \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/:test/,/^end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: 7a6d2693f0ee4e1b6925a5e0dc96e0483c30055c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:42:22 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a6d2693

dev-ruby/actiontext: add 6.0.3.1

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

 dev-ruby/actiontext/Manifest  |  1 +
 dev-ruby/actiontext/actiontext-6.0.3.1.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/dev-ruby/actiontext/Manifest b/dev-ruby/actiontext/Manifest
index a3c05dd3c74..e2433ae67e4 100644
--- a/dev-ruby/actiontext/Manifest
+++ b/dev-ruby/actiontext/Manifest
@@ -1,2 +1,3 @@
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actiontext/actiontext-6.0.3.1.ebuild 
b/dev-ruby/actiontext/actiontext-6.0.3.1.ebuild
new file mode 100644
index 000..81ba03261fc
--- /dev/null
+++ b/dev-ruby/actiontext/actiontext-6.0.3.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="actiontext.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRAINSTALL="app db package.json"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Edit and display rich text in Rails applications"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/activerecord-${PV}
+   ~dev-ruby/activestorage-${PV}
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/nokogiri-1.8.5
+"
+
+ruby_add_bdepend "test? (
+   dev-ruby/mocha
+)"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|sprockets\|stackprof\|websocket-client-simple\|libxml-ruby\|redis\|blade\|aws-sdk\|google-cloud\|azure-storage\|selenium\|webdrivers\|minitest-bisect\|minitest-retry\|minitest-reporters\|listen\|rack-cache\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+}
+
+each_ruby_prepare() {
+   sed -i -e 's:ruby:'${RUBY}':' test/dummy/bin/* || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: 41222ae8a0a8ffbbe28f218c5bd734f1f428afa7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:43:40 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41222ae8

dev-ruby/rails: add 6.0.3.1

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

 dev-ruby/rails/Manifest |  1 +
 dev-ruby/rails/rails-6.0.3.1.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/rails/Manifest b/dev-ruby/rails/Manifest
index f22cf8656c3..879845f6d51 100644
--- a/dev-ruby/rails/Manifest
+++ b/dev-ruby/rails/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.gem 6656 BLAKE2B 
ff439904b04a0e3d90e8d6c684d7ec758d40942c87aebaa3bd67da2a8a770125f25705f64eab6734c1745844b0b7f4ad5e425ccf4509bc62a1ef86ca3361620e
 SHA512 
6960d9441d372bcfe55a18de2aeec6f7246af2a259a14b72f475771d02e44ae5a178fe14a7c05e05c9083c4d5277a5a834a2a46ddbdad1b0261dc9df1148ddc6
 DIST rails-5.2.4.3.gem 6656 BLAKE2B 
36519aed8bc34ed303125857ebcc4cbc860b530f6de1a7e311c878533b69a2c7026ca39c7979e45411bd3e68256835abead35e4336a0130894c88115e030fcba
 SHA512 
856b7a73bccba7ddc5f10d5acba025da0c7546a70f484d685f009adcda79f0f40c5cc21d1a99edfcb6114cc7643e806240d545fe6fcc6e8d97abf4d79644a695
 DIST rails-6.0.2.2.gem 6656 BLAKE2B 
631342c885e93ee6ac69615051a6b244de0911669a479732897fe73a77b182a93ced8b00c18b53b6ceca14549d32468cee7170c6504bb61de2b6b9734cec8909
 SHA512 
af258bdd3c6aa8a5f511ed98dae5c97169a895aba32ee8db5fd36f4be506a3eab6595acab13cb5a6eda1e721f83881c372b25a4fdb20774fd7e247286744b502
+DIST rails-6.0.3.1.gem 6656 BLAKE2B 
2b0d9aca0a05984688a66cc14065fe99987eeaf2ca79867f075e39ace35cc4eb909b3b42430de9289b7ba5b26c96506c9a9eddb570a8c8b57c52f1a9e7867d9b
 SHA512 
f8d40fb0225e689b2c3ecf948d20e9c44db3d399a2bcd779397a3fcfa862c7735399a0d96fb5c19bf5654a56116941017abe3c5aacff99e403a785d9c44309e8
 DIST rails-6.0.3.gem 6656 BLAKE2B 
dc5349ca3969ddcb5322bade4b55e814e2204d7203203251e7dac6aa4dc3a051a005ae7d572ddb8d8710bfe60fa33c8b0a64aa6c2d66b9b7840a8ffc67f9f965
 SHA512 
668686b520dd7bc1808237553162b9a6e39607a08264afa58d6ffc67ed6f03047d067ec134d77be6bb35059eab34c5d712b8ad94a023d9df48024a6fd22366fb

diff --git a/dev-ruby/rails/rails-6.0.3.1.ebuild 
b/dev-ruby/rails/rails-6.0.3.1.ebuild
new file mode 100644
index 000..3be9b73306e
--- /dev/null
+++ b/dev-ruby/rails/rails-6.0.3.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="ruby on rails is a web-application and persistance framework"
+HOMEPAGE="https://rubyonrails.org;
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64"
+
+IUSE=""
+
+ruby_add_rdepend "
+   ~dev-ruby/actioncable-${PV}
+   ~dev-ruby/actionmailbox-${PV}
+   ~dev-ruby/actionmailer-${PV}
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/actiontext-${PV}
+   ~dev-ruby/actionview-${PV}
+   ~dev-ruby/activejob-${PV}
+   ~dev-ruby/activemodel-${PV}
+   ~dev-ruby/activerecord-${PV}
+   ~dev-ruby/activestorage-${PV}
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/railties-${PV}
+   >=dev-ruby/bundler-1.3:*
+   >=dev-ruby/sprockets-rails-2.0.0:*
+"



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

2020-05-18 Thread Hans de Graaff
commit: a7b42689ec25e76ec6eec18439dfdba5d679ae8b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:43:09 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7b42689

dev-ruby/railties: add 6.0.3.1

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

 dev-ruby/railties/Manifest|  1 +
 dev-ruby/railties/railties-6.0.3.1.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/dev-ruby/railties/Manifest b/dev-ruby/railties/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/railties/Manifest
+++ b/dev-ruby/railties/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/railties/railties-6.0.3.1.ebuild 
b/dev-ruby/railties/railties-6.0.3.1.ebuild
new file mode 100644
index 000..828467ed528
--- /dev/null
+++ b/dev-ruby/railties/railties-6.0.3.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_TASK_TEST="test:regular"
+RUBY_FAKEGEM_RECIPE_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="railties.gemspec"
+
+RUBY_FAKEGEM_BINDIR="exe"
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Tools for creating, working with, and running Rails applications"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+# The test suite has many failures, most likely due to a mismatch in
+# exact dependencies or environment specifics. Needs further
+# investigation.
+RESTRICT="test"
+
+RDEPEND+=">=app-eselect/eselect-rails-0.24"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/actionpack-${PV}
+   >=dev-ruby/thor-0.20.3
+   >=dev-ruby/rake-0.8.7
+   dev-ruby/method_source
+"
+
+ruby_add_bdepend "
+   test? (
+   ~dev-ruby/actionview-${PV}
+   dev-ruby/mocha:0.14
+   )"
+
+all_ruby_prepare() {
+   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
+   sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"
+   sed -i -e '1igem "minitest", "~>4.0"' test/abstract_unit.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   ruby_fakegem_binwrapper rails rails-${PV}
+}
+
+pkg_postinst() {
+   elog "To select between slots of rails, use:"
+   elog "\teselect rails"
+
+   eselect rails update
+}
+
+pkg_postrm() {
+   eselect rails update
+}



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

2020-05-18 Thread Hans de Graaff
commit: 97bd903348ddc4bea4104f05a26c85e0d98a35a5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:40:37 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97bd9033

dev-ruby/actionpack: add 6.0.3.1

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

 dev-ruby/actionpack/Manifest  |  1 +
 dev-ruby/actionpack/actionpack-6.0.3.1.ebuild | 59 +++
 2 files changed, 60 insertions(+)

diff --git a/dev-ruby/actionpack/Manifest b/dev-ruby/actionpack/Manifest
index 7cf3db0c180..1cac45230a6 100644
--- a/dev-ruby/actionpack/Manifest
+++ b/dev-ruby/actionpack/Manifest
@@ -1,4 +1,5 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
 DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actionpack/actionpack-6.0.3.1.ebuild 
b/dev-ruby/actionpack/actionpack-6.0.3.1.ebuild
new file mode 100644
index 000..3ae431f685a
--- /dev/null
+++ b/dev-ruby/actionpack/actionpack-6.0.3.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Eases web-request routing, handling, and response"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/actionview-${PV}
+   dev-ruby/rack:2.0
+   >=dev-ruby/rack-test-0.6.3:*
+   >=dev-ruby/rails-html-sanitizer-1.2.0:1
+   dev-ruby/rails-dom-testing:2
+"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/mocha:0.14
+   dev-ruby/bundler
+   >=dev-ruby/capybara-2.15
+   ~dev-ruby/activemodel-${PV}
+   ~dev-ruby/railties-${PV}
+   >=dev-ruby/rack-cache-1.2:1.2
+   www-servers/puma
+   )"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|sprockets\|stackprof\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+
+   # Use different timezone notation, this changed at some point due to an 
external dependency changing.
+   sed -i -e 's/-/GMT/' test/dispatch/response_test.rb 
test/dispatch/cookies_test.rb test/dispatch/session/cookie_store_test.rb || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: 71c1dc6bc51cfbf85bbff09aaf3d90c7495b743e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:42:39 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:45:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c1dc6b

dev-ruby/actionmailbox: add 6.0.3.1

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

 dev-ruby/actionmailbox/Manifest|  1 +
 .../actionmailbox/actionmailbox-6.0.3.1.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-ruby/actionmailbox/Manifest b/dev-ruby/actionmailbox/Manifest
index a3c05dd3c74..e2433ae67e4 100644
--- a/dev-ruby/actionmailbox/Manifest
+++ b/dev-ruby/actionmailbox/Manifest
@@ -1,2 +1,3 @@
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
+DIST rails-6.0.3.1.tgz 18567937 BLAKE2B 
fe6b58c2cb389f766d356f983787ddd602ee835e90cdbe26c25586c1304aa8c80d4ace2e0956326c0dd428dcd51a624d68d64667c2294c326779498a809ea6c9
 SHA512 
fcdaff0b0e4877a53f89b2b69c9271213297db8df8abccd071da5f2b2d3e3e6855914e1059596903f761b9a3891b31c2fdf10e887183f4433b260f84c4ebccdf
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actionmailbox/actionmailbox-6.0.3.1.ebuild 
b/dev-ruby/actionmailbox/actionmailbox-6.0.3.1.ebuild
new file mode 100644
index 000..bbdab69175c
--- /dev/null
+++ b/dev-ruby/actionmailbox/actionmailbox-6.0.3.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26"
+
+RUBY_FAKEGEM_RECIPE_DOC="none"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="actionmailbox.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRAINSTALL="app config db"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Framework for designing email-service layers"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/activejob-${PV}
+   ~dev-ruby/activerecord-${PV}
+   ~dev-ruby/activestorage-${PV}
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/mail-2.7.1:*
+"
+
+ruby_add_bdepend "test? (
+   dev-ruby/mocha
+)"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|sprockets\|stackprof\|websocket-client-simple\|libxml-ruby\|redis\|blade\|aws-sdk\|google-cloud\|azure-storage\|selenium\|webdrivers\|minitest-bisect\|minitest-retry\|minitest-reporters\|listen\|rack-cache\|capybara\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+}
+
+each_ruby_prepare() {
+   sed -i -e 's:ruby:'${RUBY}':' test/dummy/bin/* || die
+}



[gentoo-commits] repo/proj/guru:dev commit in: dev-R/ellipsis/

2020-05-18 Thread Alessandro Barbieri
commit: 69c92dd4a1d52e46ccda4586ca8719d4fc52b991
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 17:57:26 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 17:57:26 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69c92dd4

dev-R/ellipsis: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/ellipsis/ellipsis-0.3.1.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/dev-R/ellipsis/ellipsis-0.3.1.ebuild 
b/dev-R/ellipsis/ellipsis-0.3.1.ebuild
new file mode 100644
index 000..16fe602
--- /dev/null
+++ b/dev-R/ellipsis/ellipsis-0.3.1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit R-packages-guru
+
+DESCRIPTION='Tools for Working with ...'
+HOMEPAGE="
+   https://ellipsis.r-lib.org
+   https://github.com/r-lib/ellipsis
+   https://cran.r-project.org/package=ellipsis
+"
+SRC_URI="http://cran.r-project.org/src/contrib/ellipsis_0.3.0.tar.gz;
+LICENSE='GPL-3'
+KEYWORDS="~amd64"
+IUSE="${IUSE-}"
+DEPEND="
+   >=dev-lang/R-3.2
+   >=dev-R/rlang-0.3.0
+"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-R/vctrs/

2020-05-18 Thread Alessandro Barbieri
commit: 317ad9c5698802d212c0e9f7eaa144332a3ac484
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 18:05:01 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 18:05:01 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=317ad9c5

dev-R/vctrs: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/vctrs/Manifest   |  1 +
 dev-R/vctrs/vctrs-0.3.0.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-R/vctrs/Manifest b/dev-R/vctrs/Manifest
index 6ecf329..caee17b 100644
--- a/dev-R/vctrs/Manifest
+++ b/dev-R/vctrs/Manifest
@@ -1 +1,2 @@
 DIST vctrs_0.2.4.tar.gz 787455 BLAKE2B 
bcf86164566c4d70ec9d64e670eaf12dc80c5b115fa0320b79ee13b79113ef1b372dd728af6d3610680f124ff87f2c83268baed234a75ba6277e69a313dc2512
 SHA512 
2d23a58d407b1eff2162883d6906684ab0f3ec8a4ca2be7274bc82f29b2a846bce7d288d20b47ceb912846f4ee743556955b569b655efbd1d7d3d0da897e76ac
+DIST vctrs_0.3.0.tar.gz 883312 BLAKE2B 
6d1952dfda016de0864c0ea24d242ab7c39f65a4e03ca203b0f25b9d083fd391481d4306e164fcf24598421adc50d6bf6ef45e5af17b89a4df95dd0d83ca870b
 SHA512 
eb6ec919a4a690f5b4b36f2640957aea8a4ca4de4549783ea949cb2c2c2fc9d3770e885cbf7c01172d2ee22e944e18c8787c4c27242fe9292a2a52a1a7eacd5d

diff --git a/dev-R/vctrs/vctrs-0.3.0.ebuild b/dev-R/vctrs/vctrs-0.3.0.ebuild
new file mode 100644
index 000..1e7a00b
--- /dev/null
+++ b/dev-R/vctrs/vctrs-0.3.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit R-packages-guru
+
+DESCRIPTION='Vector Helpers'
+HOMEPAGE="
+   https://github.com/r-lib/vctrs
+   https://cran.r-project.org/package=vctrs
+"
+SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz;
+LICENSE='GPL-3'
+
+IUSE="${IUSE-}"
+KEYWORDS="~amd64"
+DEPEND="
+   >=dev-lang/R-3.2
+   dev-R/digest
+   >=dev-R/ellipsis-0.2.0
+   dev-R/glue
+   >=dev-R/rlang-0.4.5
+"
+RDEPEND="${DEPEND-}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/pytest-randomly/

2020-05-18 Thread Alessandro Barbieri
commit: e02da715d0ec8864974a94e61f0f21e3a6b9d08c
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 17:11:59 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 17:11:59 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e02da715

dev-python/pytest-randomly: install before testing

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 .../pytest-randomly-3.3.1-r1.ebuild|  8 +++-
 .../pytest-randomly/pytest-randomly-3.3.1.ebuild   | 47 --
 2 files changed, 6 insertions(+), 49 deletions(-)

diff --git a/dev-python/pytest-randomly/pytest-randomly-3.3.1-r1.ebuild 
b/dev-python/pytest-randomly/pytest-randomly-3.3.1-r1.ebuild
index be8f908..7aa75e0 100644
--- a/dev-python/pytest-randomly/pytest-randomly-3.3.1-r1.ebuild
+++ b/dev-python/pytest-randomly/pytest-randomly-3.3.1-r1.ebuild
@@ -18,7 +18,8 @@ 
SRC_URI="https://github.com/pytest-dev/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-
+IUSE="test"
+RESTRICT="!test? ( test )"
 RDEPEND="
dev-python/docutils[${PYTHON_USEDEP}]
dev-python/factory_boy[${PYTHON_USEDEP}]
@@ -43,4 +44,7 @@ DEPEND="
 #  $(python_gen_cond_dep 
'dev-python/check-manifest[${PYTHON_USEDEP}]' python3_8)
 #  dev-python/multilint[${PYTHON_USEDEP}]
 
-distutils_enable_tests pytest
+python_test() {
+distutils_install_for_testing
+pytest -vv || die "Testsuite failed under ${EPYTHON}"
+}

diff --git a/dev-python/pytest-randomly/pytest-randomly-3.3.1.ebuild 
b/dev-python/pytest-randomly/pytest-randomly-3.3.1.ebuild
deleted file mode 100644
index b28fd46..000
--- a/dev-python/pytest-randomly/pytest-randomly-3.3.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Pytest plugin to randomly order tests and control random.seed"
-HOMEPAGE="
-   https://pypi.python.org/pypi/pytest-randomly
-   https://github.com/pytest-dev/pytest-randomly
-"
-SRC_URI="https://github.com/pytest-dev/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="test"
-
-RDEPEND="
-   dev-python/docutils[${PYTHON_USEDEP}]
-   dev-python/factory_boy[${PYTHON_USEDEP}]
-   dev-python/faker[${PYTHON_USEDEP}]
-   dev-python/isort[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   dev-python/secretstorage[${PYTHON_USEDEP}]
-   dev-python/twine[${PYTHON_USEDEP}]
-
-   $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' 
python3_6 python3_7)
-"
-#  $(python_gen_cond_dep 'dev-python/black[${PYTHON_USEDEP}]' python3_8)
-
-#DEPEND="
-#  test? (
-#  $(python_gen_cond_dep 
'dev-python/check-manifest[${PYTHON_USEDEP}]' python3_8)
-#  dev-python/multilint[${PYTHON_USEDEP}]
-#  dev-python/pytest-xdist[${PYTHON_USEDEP}]
-#  )
-#"
-
-#no multilint for now
-#distutils_enable_tests pytest



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/validators/

2020-05-18 Thread Alessandro Barbieri
commit: 06ca4e6da3ac4119a9e00502a1e79a47e14b7c61
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 16:58:53 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 16:58:53 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=06ca4e6d

dev-python/validators: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/validators/Manifest |  1 +
 dev-python/validators/validators-0.15.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/validators/Manifest b/dev-python/validators/Manifest
index d3a654c..604b1fa 100644
--- a/dev-python/validators/Manifest
+++ b/dev-python/validators/Manifest
@@ -1,2 +1,3 @@
 DIST validators-0.14.0.tar.gz 25442 BLAKE2B 
e4c159afd24b33bd91ea59ca00254712cf69f9a4d180dd794f9b142a372bfd1695cebe7b49585a6b7eb8ea8290499e0138151a3e7a5693db187d8ad2bb520c9e
 SHA512 
ec9153cb817f25e40221502484cdbdb9cf1566fe8445f7b822d4a80325154aca5a665be452f6251351682d36167c5a6bb02c3259d6067f4f51fa1d01aaa44a4e
 DIST validators-0.14.3.tar.gz 25893 BLAKE2B 
2114d74912457032506eb850e5da856044439f5e02ac707cddcca23b6a59b7725d4253cbb7ce815f6944076a54f686edcbf52d387d2f27b53ca6bccbbdaa4140
 SHA512 
ea2fc81a63f24d64d2933220ed7674ae9733673c208906d3090bc10bf2119965834759015deedfea218306b1b29e8ff6937698e3b5de73494236516656a16096
+DIST validators-0.15.0.tar.gz 27333 BLAKE2B 
d8c683bf8a79e1e0c5a9d59b0a23f9f1aaae3a90f358f9810a8aae2a98a144e8c1f6a2c16df5c1fe0d354c779869ae118269b11df6bfcaac5e19c5689d4e9e1b
 SHA512 
333b88621133416acf7e9c9746a92f1ae795b579ccc57fd514414ba87eb51ce8eaf496955b91c7d0c2046a52a05afb05c5452f7c1e5f035ea747c28b7d1aea73

diff --git a/dev-python/validators/validators-0.15.0.ebuild 
b/dev-python/validators/validators-0.15.0.ebuild
new file mode 100644
index 000..d377570
--- /dev/null
+++ b/dev-python/validators/validators-0.15.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python Data Validation for Humans"
+HOMEPAGE="
+   https://github.com/kvesteri/validators
+   https://pypi.org/project/validators
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+
+RDEPEND="
+   >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+"
+#not really required
+#  test? (
+#  >=dev-python/isort-4.2.2[${PYTHON_USEDEP}]
+#  )
+
+distutils_enable_tests pytest
+
+#issues with sphinx.ext.pngmath 
https://github.com/kvesteri/validators/issues/156
+distutils_enable_sphinx docs "

[gentoo-commits] repo/proj/guru:dev commit in: dev-R/glue/

2020-05-18 Thread Alessandro Barbieri
commit: ff58caf0d1a935401609560bf25e1fcd28693a54
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 18:00:29 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 18:00:29 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ff58caf0

dev-R/glue: version fixed

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/glue/Manifest  | 1 +
 dev-R/glue/glue-1.4.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-R/glue/Manifest b/dev-R/glue/Manifest
index f29033a..38241d3 100644
--- a/dev-R/glue/Manifest
+++ b/dev-R/glue/Manifest
@@ -1 +1,2 @@
 DIST glue_1.4.0.tar.gz 98619 BLAKE2B 
3c79c8b0f7f47c38c7216d0f9c4136acaf701e2424e9cf4d5be64595a9c6912292270efe00b9806a12c3357c974f6714c8dac155b67b9e425de534d13bcca0f3
 SHA512 
f06fd0953644e6ac33cf86dbc40e45c7bd94df1b69f797cf0d71d2c8e2eb89ae75e7642a754d33c7d45669a8f1b34b19b5527b4fbb8542a518d9b6d25aafb4f0
+DIST glue_1.4.1.tar.gz 98581 BLAKE2B 
1166630999a1e47a0de2899756ffd0eb37f2cab1fc99a1be5795c74e65d9ab5b15eb447ff97edeed0aceb0146feaf95cfc3a70b82d0f4542b2ce4e8e0dc2742c
 SHA512 
b57153757814b47ca85b2f20ec8c64f2dd6647a3b463b4d31b371e78654c0a20f5fb5551c5918d10bc801e588e8c01c38662286922a9f053cf5c5b18982eea37

diff --git a/dev-R/glue/glue-1.4.1.ebuild b/dev-R/glue/glue-1.4.1.ebuild
index ba97a9c..17d9afb 100644
--- a/dev-R/glue/glue-1.4.1.ebuild
+++ b/dev-R/glue/glue-1.4.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="
https://github.com/tidyverse/glue
https://cran.r-project.org/package=glue
 "
-SRC_URI="http://cran.r-project.org/src/contrib/glue_1.4.0.tar.gz;
+SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz;
 LICENSE='MIT'
 KEYWORDS="~amd64"
 IUSE="${IUSE-}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-R/glue/

2020-05-18 Thread Alessandro Barbieri
commit: f5e5bcda0ae60141da66e2a8121414b358ab2da5
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 17:58:16 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 17:58:16 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5e5bcda

dev-R/glue: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/glue/glue-1.4.1.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/dev-R/glue/glue-1.4.1.ebuild b/dev-R/glue/glue-1.4.1.ebuild
new file mode 100644
index 000..ba97a9c
--- /dev/null
+++ b/dev-R/glue/glue-1.4.1.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit R-packages-guru
+
+DESCRIPTION='Interpreted String Literals'
+HOMEPAGE="
+   https://glue.tidyverse.org
+   https://github.com/tidyverse/glue
+   https://cran.r-project.org/package=glue
+"
+SRC_URI="http://cran.r-project.org/src/contrib/glue_1.4.0.tar.gz;
+LICENSE='MIT'
+KEYWORDS="~amd64"
+IUSE="${IUSE-}"
+DEPEND=">=dev-lang/R-3.1"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/geopy/

2020-05-18 Thread Alessandro Barbieri
commit: d9b9bda935f2e058f02c43088b27212c8cc2b2e0
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 17:50:16 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 17:50:16 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d9b9bda9

dev-python/geopy: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/geopy/Manifest|  1 +
 dev-python/geopy/geopy-1.22.0.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/dev-python/geopy/Manifest b/dev-python/geopy/Manifest
index d4f7b1c..b7ba57e 100644
--- a/dev-python/geopy/Manifest
+++ b/dev-python/geopy/Manifest
@@ -1 +1,2 @@
 DIST geopy-1.21.0.tar.gz 254831 BLAKE2B 
2b8aa46277ea65cde2e037ee71d42ef42451d1ee3bc38b7a6f89e15293074f80cf52b53bad6a483769fe8ce6d267db27bd1878e6248c0c4b18a92a86df4a2ae9
 SHA512 
8dc148795251e5bf74948859430856569e7aef38ac09432f86498ec3f5939277d2d548f3c35c6f14e6ef1645fdfa48bf70ab99ba395f199c08aa8dbe6ed2
+DIST geopy-1.22.0.tar.gz 276268 BLAKE2B 
96f366d832e6b949fb5bfb64781243f41b94369c846d6669165752b04ac4a7cfc206a668bba469fef078d4d07b550265506e78be4ed028266578928dbdc34db2
 SHA512 
696729f41b403ce99afecdbb474774d4cf3cea8dda35ac1feab915a566b59b393db5bd803afb97a855603b8a4398725c40289a29f41546c57ecaff670c69e20a

diff --git a/dev-python/geopy/geopy-1.22.0.ebuild 
b/dev-python/geopy/geopy-1.22.0.ebuild
new file mode 100644
index 000..d479418
--- /dev/null
+++ b/dev-python/geopy/geopy-1.22.0.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="A Geocoding Toolbox for Python"
+HOMEPAGE="
+   https://geopy.readthedocs.io
+   https://github.com/geopy/geopy
+   https://pypi.org/project/geopy
+"
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   =sci-geosciences/geographiclib-1.49[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+   ">=dev-python/sphinx_rtd_theme-0.4.0" \
+   dev-python/readme_renderer
+
+python_prepare_all() {
+   # [Errno -3] Temporary failure in name resolution
+   rm test/geocoders/algolia.py || die
+   rm test/geocoders/arcgis.py || die
+   rm test/geocoders/banfrance.py || die
+   rm test/geocoders/databc.py || die
+   rm test/geocoders/geocodefarm.py || die
+   rm test/geocoders/geonames.py || die
+   rm test/geocoders/nominatim.py || die
+   rm test/geocoders/photon.py || die
+   rm test/test_proxy.py || die
+
+   # depend on the above and now fail to import
+   rm test/geocoders/openmapquest.py || die
+   rm test/geocoders/pickpoint.py || die
+
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/faker/

2020-05-18 Thread Alessandro Barbieri
commit: 66a270db1435ebc7105c6af9530a0bb31801394d
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 18:39:15 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 18:39:15 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=66a270db

dev-python/faker: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/faker/Manifest   |  1 +
 dev-python/faker/faker-4.1.0.ebuild | 57 +
 dev-python/faker/metadata.xml   | 17 +++
 3 files changed, 75 insertions(+)

diff --git a/dev-python/faker/Manifest b/dev-python/faker/Manifest
index b9e0bd2..c3f1157 100644
--- a/dev-python/faker/Manifest
+++ b/dev-python/faker/Manifest
@@ -1 +1,2 @@
 DIST faker-4.0.3.tar.gz 996987 BLAKE2B 
cc8fa1ae039d1a753efde2a43404681fe53124fb2a92724a81384cd10dd8008833c6c4468012f3cfaef83ca6e6a50813ef00036b180df2f1752a79064507c770
 SHA512 
08d7a4fc3a65f4f31467e0aa91525ce92042ef7e471992a63c3fef2efa14ab894bda1f0fa1e6b651f78ceadee7c3683079001db904147739628457a44adef615
+DIST faker-4.1.0.tar.gz 1005246 BLAKE2B 
07a4d93875ed67f6e8e34fec7d4015eddc47cdb80e4e5b60f33e5ab93105f14b95f1ff9073debd530e04d71c4c5d22e1db805753151842a6b896095376eb1304
 SHA512 
da8e6df52c53788af323d92a0feaafcc215bd00ae5a95bb2d829852bbf04f89f9216c7e226b3b89966c053dd891db33acf2e2ee2ac5a981745976325c0cf2d2e

diff --git a/dev-python/faker/faker-4.1.0.ebuild 
b/dev-python/faker/faker-4.1.0.ebuild
new file mode 100644
index 000..2fb03ec
--- /dev/null
+++ b/dev-python/faker/faker-4.1.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python package that generates fake data"
+HOMEPAGE="
+   https://github.com/joke2k/faker
+   https://pypi.org/project/Faker
+"
+SRC_URI="https://github.com/joke2k/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+RDEPEND="
+   >=dev-python/python-dateutil-2.4[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   >=dev-python/text-unidecode-1.3[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${RDEPEND}
+   >=dev-python/sphinx-2.4[${PYTHON_USEDEP}]
+   =dev-python/pytest-5.4.0[${PYTHON_USEDEP}]
+   =dev-python/ukpostcodeparser-1.1.1[${PYTHON_USEDEP}]
+   >=dev-python/validators-0.13.0[${PYTHON_USEDEP}]
+   )
+"
+#BDEPEND="
+#  doc? ( dev-python/faker )
+#"
+
+src_prepare() {
+   export READTHEDOCS=True || die
+   default
+}
+
+python_test() {
+   distutils_install_for_testing
+   pytest -vv || die "Testsuite failed under ${EPYTHON}"
+}
+
+#TODO: make docs working
+#FileNotFoundError: [Errno 2] No such file or directory: 
'/var/tmp/portage/dev-python/faker-4.1.0/work/docs/providers.rst'
+#distutils_enable_sphinx docs --no-autodoc

diff --git a/dev-python/faker/metadata.xml b/dev-python/faker/metadata.xml
index 81bcab6..df80548 100644
--- a/dev-python/faker/metadata.xml
+++ b/dev-python/faker/metadata.xml
@@ -12,6 +12,23 @@
or anonymize data taken from a production service, Faker is for you.


+   
+   
+   Daniele Faraglia
+   
+   
+   jok...@gmail.com
+   
+   
+   
+   https://faker.readthedocs.io/en/stable
+   
+   
+   https://github.com/joke2k/faker/issues
+   
+   
+   
https://raw.githubusercontent.com/joke2k/faker/master/CHANGELOG.rst
+   
joke2k/faker
Faker




[gentoo-commits] repo/proj/guru:dev commit in: dev-R/ellipsis/

2020-05-18 Thread Alessandro Barbieri
commit: 8855c3399470a009ae79f53113b63d4f0fdfd8a2
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 18:01:47 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 18:01:47 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8855c339

dev-R/ellipsis: fixed version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/ellipsis/Manifest  | 1 +
 dev-R/ellipsis/ellipsis-0.3.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-R/ellipsis/Manifest b/dev-R/ellipsis/Manifest
index 99cb46e..1392c63 100644
--- a/dev-R/ellipsis/Manifest
+++ b/dev-R/ellipsis/Manifest
@@ -1 +1,2 @@
 DIST ellipsis_0.3.0.tar.gz 7371 BLAKE2B 
c7fe0e88a16bbf0a80f1c859804d781d8ae411856882d8629b5dbff4fa1d3c78e81759dd474f909e6c2c91e532086b705135561ee571edf1f095ff980aaf75a3
 SHA512 
85c92a10635bc8b71df2f44d83a8f9b915cb1e1de7969191e1b6fce216cdbb1d29e1abf1ce11c83455e0b177c74a7271d25646f53d7f4f39391e6f055958d3ea
+DIST ellipsis_0.3.1.tar.gz 7582 BLAKE2B 
aff80d5858fc6857a391e8fe8e324ab5995b366b7419d8d931d28ed6a176eb0105d8a61d368dde42a3244825eeabab8a0cbcce5c9f6ede7b0536b080300fe4a0
 SHA512 
a8752e3cc52e13ec9503eeb19956ab604a6d1588b892501a14493697dc829507b5cdd64a361de4469c37420c0ba85cde44ca7a24c5e016b9dfc817d5666fe328

diff --git a/dev-R/ellipsis/ellipsis-0.3.1.ebuild 
b/dev-R/ellipsis/ellipsis-0.3.1.ebuild
index 16fe602..18a001e 100644
--- a/dev-R/ellipsis/ellipsis-0.3.1.ebuild
+++ b/dev-R/ellipsis/ellipsis-0.3.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="
https://github.com/r-lib/ellipsis
https://cran.r-project.org/package=ellipsis
 "
-SRC_URI="http://cran.r-project.org/src/contrib/ellipsis_0.3.0.tar.gz;
+SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz;
 LICENSE='GPL-3'
 KEYWORDS="~amd64"
 IUSE="${IUSE-}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-R/tidyselect/

2020-05-18 Thread Alessandro Barbieri
commit: d38cd58f96088096cb7fcf40fd03ee914bd2028f
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon May 18 18:03:36 2020 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon May 18 18:03:36 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d38cd58f

dev-R/tidyselect: new version

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-R/tidyselect/Manifest|  1 +
 dev-R/tidyselect/tidyselect-1.1.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-R/tidyselect/Manifest b/dev-R/tidyselect/Manifest
index e19452a..b0b9a6b 100644
--- a/dev-R/tidyselect/Manifest
+++ b/dev-R/tidyselect/Manifest
@@ -1 +1,2 @@
 DIST tidyselect_1.0.0.tar.gz 151161 BLAKE2B 
8ce7203ae34fcc71905f785038469f8659ade390c858a039e036f5905e8f32c6b3b8165869be7573b46917293acb0f2a3aa800d78283165955cf8d27bec0eed1
 SHA512 
53775f43d896f271c9d988e84ca4a744dfb591d1ac42e811cffd1691a4a85000481102b61636831650bcddb9a07d7202341cb367cf587c3291e255ecf6ad64ff
+DIST tidyselect_1.1.0.tar.gz 90842 BLAKE2B 
459409194e73797f69bbcc43658ccf5ebf519fabfecfb732efaa896684c179e49473c1719e80b04547149eb818fb620c71e8a7bb7f62906cf6404bb5efef903c
 SHA512 
827bd7f3d3dd4a1397323bec2fa26b871afb9cbf082a9281c01d4f06f6020afc46ca0bc4968b7dd5d82033c8c53fc43866b1bc31b6084fd6715d0eab093480e8

diff --git a/dev-R/tidyselect/tidyselect-1.1.0.ebuild 
b/dev-R/tidyselect/tidyselect-1.1.0.ebuild
new file mode 100644
index 000..e40e12b
--- /dev/null
+++ b/dev-R/tidyselect/tidyselect-1.1.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit R-packages-guru
+
+DESCRIPTION='Select from a Set of Strings'
+SRC_URI="http://cran.r-project.org/src/contrib/${PN}_${PV}.tar.gz;
+LICENSE='GPL-3'
+HOMEPAGE="
+   https://tidyselect.r-lib.org
+   https://github.com/r-lib/tidyselect
+   https://cran.r-project.org/package=tidyselect
+"
+IUSE="${IUSE-}"
+KEYWORDS="~amd64"
+DEPEND="
+   >=dev-lang/R-3.2
+   dev-R/ellipsis
+   >=dev-R/glue-1.3.0
+   >=dev-R/purrr-0.3.2
+   >=dev-R/rlang-0.4.6
+   >=dev-R/vctrs-0.2.2
+"
+RDEPEND="${DEPEND-}"



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

2020-05-18 Thread Michał Górny
commit: 321f653f8d264e6ca9203887f56740f281860088
Author: Viktar Patotski  gmail  com>
AuthorDate: Thu May 14 12:55:54 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 18 18:21:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=321f653f

dev-python/sqlalchemy: bump to 1.3.17

This PR updates dev-python/sqlalchemy to latest version: 1.3.17,
also changes homepage link to HTTPS on stable version 1.3.11.

Signed-off-by: Viktar Patotski  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/15864
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sqlalchemy/Manifest|  1 +
 dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild|  2 +-
 ...{sqlalchemy-1.3.11.ebuild => sqlalchemy-1.3.17.ebuild} | 15 +--
 3 files changed, 7 insertions(+), 11 deletions(-)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index 7eef4a2e377..556c40c1eaa 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -1 +1,2 @@
 DIST SQLAlchemy-1.3.11.tar.gz 6007784 BLAKE2B 
c889ea28ae08fcb83d338ab01a64533142428ee91a6c11b9a7f2116f99161c066e66f49d76bdd2c7600f1a7f86a2add217f49dda4cf97566a875f28d3d4b24be
 SHA512 
c691539db4edd62af749087728dfd424010bfb3ca2cc8503a4b96c1625d059d4c2a748b9a35cc870cc99ca9df61966cce406f9b570b25e55c3632a99b8621e74
+DIST SQLAlchemy-1.3.17.tar.gz 5979141 BLAKE2B 
f0fa46493461f532ebca9420fc9f49a2c04af888aa99653946a5bb563d40b8bb714a03301300ebb80cca76a99f8226ddfcde4216e8fc2593d3a161b5072276ab
 SHA512 
6f6d54b9018ece6c289f28a3a41ffb1b2216206edee08c49f387e9f30740969dfe0f8272654ce4efca159a2a6619e76c41b2ad2b10c391cdd64681ac17d0bc79

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
index 51afd67393d..d2b10bbb28f 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
@@ -12,7 +12,7 @@ MY_PN="SQLAlchemy"
 MY_P="${MY_PN}-${PV/_beta/b}"
 
 DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
-HOMEPAGE="http://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/;
+HOMEPAGE="https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/;
 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.3.17.ebuild
similarity index 74%
copy from dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
copy to dev-python/sqlalchemy/sqlalchemy-1.3.17.ebuild
index 51afd67393d..9f7ad07d19f 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.3.11.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.3.17.ebuild
@@ -12,31 +12,27 @@ MY_PN="SQLAlchemy"
 MY_P="${MY_PN}-${PV/_beta/b}"
 
 DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
-HOMEPAGE="http://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/;
+HOMEPAGE="https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/;
 SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
-IUSE="doc examples +sqlite test"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
+IUSE="examples +sqlite test"
 
 REQUIRED_USE="test? ( sqlite )"
 
 BDEPEND="
test? (
dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
)
 "
 
-S="${WORKDIR}/${MY_P}"
-
 distutils_enable_tests pytest
+distutils_enable_sphinx doc
 
 python_prepare_all() {
-   local PATCHES=(
-   "${FILESDIR}"/sqlalchemy-pytest-deprecation.patch
-   )
# Disable tests hardcoding function call counts specific to Python 
versions.
rm -r test/aaa_profiling || die
distutils-r1_python_prepare_all
@@ -51,7 +47,6 @@ python_compile() {
 }
 
 python_install_all() {
-   use doc && HTML_DOCS=( doc/. )
use examples && dodoc -r examples
 
distutils-r1_python_install_all



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

2020-05-18 Thread Hans de Graaff
commit: c7f551f796e8196080c8ea84c6c1c1a6c31c93e7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:09:52 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f551f7

dev-ruby/activesupport: add 5.2.4.3

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

 dev-ruby/activesupport/Manifest|  1 +
 .../activesupport/activesupport-5.2.4.3.ebuild | 72 ++
 2 files changed, 73 insertions(+)

diff --git a/dev-ruby/activesupport/Manifest b/dev-ruby/activesupport/Manifest
index 2671a927c04..7cf3db0c180 100644
--- a/dev-ruby/activesupport/Manifest
+++ b/dev-ruby/activesupport/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
+DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activesupport/activesupport-5.2.4.3.ebuild 
b/dev-ruby/activesupport/activesupport-5.2.4.3.ebuild
new file mode 100644
index 000..d7716eddc9c
--- /dev/null
+++ b/dev-ruby/activesupport/activesupport-5.2.4.3.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2020 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_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Utility Classes and Extension to the Standard Library"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   >=dev-ruby/concurrent-ruby-1.0.2:1
+   dev-ruby/i18n:1
+   >=dev-ruby/tzinfo-1.1:1
+   >=dev-ruby/minitest-5.1:5"
+
+# memcache-client, nokogiri, and builder are not strictly
+# needed, but there are tests using this code.
+ruby_add_bdepend "test? (
+   >=dev-ruby/dalli-2.2.1
+   >=dev-ruby/nokogiri-1.4.5
+   >=dev-ruby/builder-3.1.0
+   >=dev-ruby/listen-3.0.5:3
+   dev-ruby/rack
+   dev-ruby/mocha
+   )"
+
+all_ruby_prepare() {
+   # Set the secure permissions that tests expect.
+   chmod 0755 "${HOME}" || die "Failed to fix permissions on home"
+
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|mysql\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|minitest\|sprockets\|stackprof\|rack-cache\|redis\|sqlite\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' \
+   -e 's/gemspec/gemspec path: "activesupport"/' \
+   -e '5igem "builder"; gem "rack"' ../Gemfile || die
+   rm ../Gemfile.lock || die
+   sed -i -e '1igem "tzinfo", "~> 1.1"' test/abstract_unit.rb || die
+
+   # Avoid test that depends on timezone
+   sed -i -e '/test_implicit_coercion/,/^  end/ s:^:#:' 
test/core_ext/duration_test.rb || die
+
+   # Avoid tests that seem to trigger race conditions.
+   rm -f test/evented_file_update_checker_test.rb || die
+
+   # Avoid test that generates filename that is too long
+   sed -i -e '/test_filename_max_size/askip "gentoo"' 
test/cache/stores/file_store_test.rb || die
+
+   # Avoid tests requiring a live redis running
+   rm 

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

2020-05-18 Thread Hans de Graaff
commit: b223fd34e72aaf2fbc51663a23288eb93de13f0f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:12:26 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b223fd34

dev-ruby/actionpack: add 5.2.4.3

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

 dev-ruby/actionpack/Manifest  |  1 +
 dev-ruby/actionpack/actionpack-5.2.4.3.ebuild | 67 +++
 2 files changed, 68 insertions(+)

diff --git a/dev-ruby/actionpack/Manifest b/dev-ruby/actionpack/Manifest
index 2671a927c04..7cf3db0c180 100644
--- a/dev-ruby/actionpack/Manifest
+++ b/dev-ruby/actionpack/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
+DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actionpack/actionpack-5.2.4.3.ebuild 
b/dev-ruby/actionpack/actionpack-5.2.4.3.ebuild
new file mode 100644
index 000..8f4e2160dd0
--- /dev/null
+++ b/dev-ruby/actionpack/actionpack-5.2.4.3.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="actionpack.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Eases web-request routing, handling, and response"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/actionview-${PV}
+   >=dev-ruby/rack-2.0.8:2.0
+   >=dev-ruby/rack-test-0.6.3:*
+   >=dev-ruby/rails-html-sanitizer-1.0.2:1
+   dev-ruby/rails-dom-testing:2
+"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/mocha:0.14
+   dev-ruby/bundler
+   >=dev-ruby/capybara-2.15
+   ~dev-ruby/activemodel-${PV}
+   >=dev-ruby/rack-cache-1.2:1.2
+   www-servers/puma
+   )"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|sprockets\|stackprof\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+
+   sed -e '1i gem "activemodel", "~> 5.2.0"' \
+   -e '1i gem "actionview", "~> 5.2.0"' \
+   -e '1i gem "railties", "~> 5.2.0"' \
+   -i test/abstract_unit.rb || die
+
+   # Use different timezone notation, this changed at some point due to an 
external dependency changing.
+   sed -i -e 's/-/GMT/' test/dispatch/response_test.rb 
test/dispatch/cookies_test.rb test/dispatch/session/cookie_store_test.rb || die
+
+   # Avoid broken tests already fixed upstream
+   sed -i -e '/cookie syntax resilience/askip "broken test"' 
test/dispatch/request_test.rb || die
+   sed -i -e '/test_keeps_original_headers_behavior/askip "broken test"' 
test/dispatch/ssl_test.rb || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: ab478df5c38d52698c7c83c2506c79ad7e0be461
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:12:51 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab478df5

dev-ruby/activestorage: add 5.2.4.3

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

 dev-ruby/activestorage/Manifest|  1 +
 .../activestorage/activestorage-5.2.4.3.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/activestorage/Manifest b/dev-ruby/activestorage/Manifest
index 2671a927c04..7cf3db0c180 100644
--- a/dev-ruby/activestorage/Manifest
+++ b/dev-ruby/activestorage/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
+DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/activestorage/activestorage-5.2.4.3.ebuild 
b/dev-ruby/activestorage/activestorage-5.2.4.3.ebuild
new file mode 100644
index 000..9ee08a50fdf
--- /dev/null
+++ b/dev-ruby/activestorage/activestorage-5.2.4.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="activestorage.gemspec"
+
+RUBY_FAKEGEM_EXTRAINSTALL="app config db"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Attach cloud and local files in Rails applications"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+DEPEND+=" test? ( app-text/mupdf ) "
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}:*
+   ~dev-ruby/activerecord-${PV}:*
+   >=dev-ruby/marcel-0.3.1 =dev-ruby/marcel-0.3*
+"
+
+ruby_add_bdepend "
+   test? (
+   ~dev-ruby/railties-${PV}
+   dev-ruby/test-unit:2
+   dev-ruby/mini_magick
+   dev-ruby/mocha
+   dev-ruby/rake
+   dev-ruby/sqlite3
+   )"
+
+all_ruby_prepare() {
+  # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|aws-sdk-s3\|google-cloud-storage\|azure-storage\|blade\|bootsnap\|hiredis\|qunit-selenium\|chromedriver-helper\|redis\|rb-inotify\|sprockets\|stackprof\|websocket-client-simple\|libxml-ruby\|sass-rails\|rubocop\|capybara\|rack-cache\|json\|dalli\|listen\|connection_pool\|puma\|mysql2\)/
 s:^:#:" \
+   -e '/dalli/ s/2.7.7/2.7.9/' \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/:test/,/^end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+
+   # Fix spec broken with ruby24
+   sed -i -e '35ibegin' -e '55iend' 
test/service/s3_service_test.rb || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: a50351c6996ecd51c475d2ef469bf87caa9071c3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:14:21 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a50351c6

dev-ruby/railties: add 5.2.4.3

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

 dev-ruby/railties/Manifest|  1 +
 dev-ruby/railties/railties-5.2.4.3.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/dev-ruby/railties/Manifest b/dev-ruby/railties/Manifest
index 2671a927c04..7cf3db0c180 100644
--- a/dev-ruby/railties/Manifest
+++ b/dev-ruby/railties/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
+DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/railties/railties-5.2.4.3.ebuild 
b/dev-ruby/railties/railties-5.2.4.3.ebuild
new file mode 100644
index 000..c2b5b1022e8
--- /dev/null
+++ b/dev-ruby/railties/railties-5.2.4.3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_TEST="test:regular"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="railties.gemspec"
+
+RUBY_FAKEGEM_BINDIR="exe"
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Tools for creating, working with, and running Rails applications"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+# The test suite has many failures, most likely due to a mismatch in
+# exact dependencies or environment specifics. Needs further
+# investigation.
+RESTRICT="test"
+
+RDEPEND+=">=app-eselect/eselect-rails-0.24"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/actionpack-${PV}
+   >=dev-ruby/thor-0.18.1
+   >=dev-ruby/rake-0.8.7
+   dev-ruby/method_source
+"
+
+ruby_add_bdepend "
+   test? (
+   ~dev-ruby/actionview-${PV}
+   dev-ruby/mocha:0.14
+   )"
+
+all_ruby_prepare() {
+   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
+   sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"
+   sed -i -e '1igem "minitest", "~>4.0"' test/abstract_unit.rb || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   ruby_fakegem_binwrapper rails rails-${PV}
+}
+
+pkg_postinst() {
+   elog "To select between slots of rails, use:"
+   elog "\teselect rails"
+
+   eselect rails update
+}
+
+pkg_postrm() {
+   eselect rails update
+}



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

2020-05-18 Thread Hans de Graaff
commit: b339b61b0aa464eda228b5d9de8e9c96b3d5903e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:10:57 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b339b61b

dev-ruby/actioncable: add 5.2.4.3

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

 dev-ruby/actioncable/Manifest   |  1 +
 dev-ruby/actioncable/actioncable-5.2.4.3.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/actioncable/Manifest b/dev-ruby/actioncable/Manifest
index 2671a927c04..7cf3db0c180 100644
--- a/dev-ruby/actioncable/Manifest
+++ b/dev-ruby/actioncable/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
+DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actioncable/actioncable-5.2.4.3.ebuild 
b/dev-ruby/actioncable/actioncable-5.2.4.3.ebuild
new file mode 100644
index 000..a6339fadbd1
--- /dev/null
+++ b/dev-ruby/actioncable/actioncable-5.2.4.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 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=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_EXTRAINSTALL="app"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Integrated WebSockets for Rails"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+# Tests require many new dependencies, skipping for now
+RESTRICT="test"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}:*
+   dev-ruby/nio4r:2
+   >=dev-ruby/websocket-driver-0.6.1:0
+"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/railties-4.2.0
+   dev-ruby/test-unit:2
+   >=dev-ruby/mocha-0.14.0:0.14
+   )"



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

2020-05-18 Thread Hans de Graaff
commit: 48515df67799460c273d97e92b3a48d785db44d1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:11:54 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48515df6

dev-ruby/actionview: add 5.2.4.3

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

 dev-ruby/actionview/Manifest  |  1 +
 dev-ruby/actionview/actionview-5.2.4.3.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/actionview/Manifest b/dev-ruby/actionview/Manifest
index 2671a927c04..7cf3db0c180 100644
--- a/dev-ruby/actionview/Manifest
+++ b/dev-ruby/actionview/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.tgz 8823143 BLAKE2B 
273bee6ccc2354bcfd8d24b320fe69c24f643c196eba053c727d30b13d4178069068c430a0a4112ae28c3e4b5a5dde0b66a7c46c7c28054f2b7a678427f478af
 SHA512 
21561407a0b606dbd2fb6ad12ef910c0bdf3d5162db7e55f4f41f698280ba73664b0b5594930d4cebcb42a66e2e5e22de3523789818eb424443e8c5b2316b8fc
+DIST rails-5.2.4.3.tgz 8824955 BLAKE2B 
7db1bdda581e345713b796152c68e13911076c0af752aa91016a559fb380ee33b5f1822576120940995968efa6351165af0e21f97ff2e201bc8250f7e3178089
 SHA512 
b01b454f38593b50788cecef4f2b25938b0e176d24476bf0a8145b581c7327e0d8572a62fab4256372b51d75a9463431bbd98470a31298a6ff4d5f81f7ff92ce
 DIST rails-6.0.2.2.tgz 18556125 BLAKE2B 
f4ed5cc6cbbfa84fb687aba5a6c8f2f6ab68febb41147c40ed8dbc6253c128adbac6503e65e89fe672f50270716d197d8c05b4e1e286aafd76581fc167e6c5da
 SHA512 
c1aab2d6c72948c75a047aec9d9f651f0c1bae78bb17e2fa0cb393113ee1e59980dc093e6f3fd3b2f3839c9b3bb4afcd0b0badfd9574b35b932275a9d9800689
 DIST rails-6.0.3.tgz 18565682 BLAKE2B 
fe8601aec070535f487801eec16d944809be824e4833b7a906b47b4099dd5e72515ac3e492e4301dd651657fc2c4547ecbdd2c12265e04aad2758e9e284ad385
 SHA512 
f4572b4ebba9a79a6910c554f06e71efab5ccc0090e1a620e80b9d3b479cdd21d5a041437d90313e045e47ccc6e44eb21d4e56cc9fe1fb791cf5593427d0501b

diff --git a/dev-ruby/actionview/actionview-5.2.4.3.ebuild 
b/dev-ruby/actionview/actionview-5.2.4.3.ebuild
new file mode 100644
index 000..26bfedbb630
--- /dev/null
+++ b/dev-ruby/actionview/actionview-5.2.4.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="Simple, battle-tested conventions and helpers for building web 
pages"
+HOMEPAGE="https://github.com/rails/rails/;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/builder-3.1:* =dev-ruby/builder-3*:*
+   >=dev-ruby/erubi-1.4:0
+   >=dev-ruby/rails-html-sanitizer-1.0.3:1
+   dev-ruby/rails-dom-testing:2
+"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/mocha
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/activemodel-${PV}
+   )"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|rack-cache\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\|bcrypt\|uglifier\|mime-types\|minitest\|sprockets\|stackprof\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+
+   # Avoid activerecord integration tests because they are very sensitive 
to the specifics
+   # of the environment.
+   sed -i -e 's/, "test:integration:active_record"//' Rakefile || die
+
+   sed -e '2igem "actionpack", "~> 5.2.0"' \
+   -e '2igem "activemodel", "~> 5.2.0"' \
+   -e '2igem "railties", "~> 5.2.0"' \
+   -e '/active_record/ s:^:#:' \
+   -i test/abstract_unit.rb || die
+}



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

2020-05-18 Thread Hans de Graaff
commit: 9305d32bbe88017c3100e389c01c316bab2f50fe
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon May 18 18:14:49 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon May 18 18:15:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9305d32b

dev-ruby/rails: add 5.2.4.3

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

 dev-ruby/rails/Manifest |  1 +
 dev-ruby/rails/rails-5.2.4.3.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/rails/Manifest b/dev-ruby/rails/Manifest
index f67a2b9e429..f22cf8656c3 100644
--- a/dev-ruby/rails/Manifest
+++ b/dev-ruby/rails/Manifest
@@ -1,3 +1,4 @@
 DIST rails-5.2.4.2.gem 6656 BLAKE2B 
ff439904b04a0e3d90e8d6c684d7ec758d40942c87aebaa3bd67da2a8a770125f25705f64eab6734c1745844b0b7f4ad5e425ccf4509bc62a1ef86ca3361620e
 SHA512 
6960d9441d372bcfe55a18de2aeec6f7246af2a259a14b72f475771d02e44ae5a178fe14a7c05e05c9083c4d5277a5a834a2a46ddbdad1b0261dc9df1148ddc6
+DIST rails-5.2.4.3.gem 6656 BLAKE2B 
36519aed8bc34ed303125857ebcc4cbc860b530f6de1a7e311c878533b69a2c7026ca39c7979e45411bd3e68256835abead35e4336a0130894c88115e030fcba
 SHA512 
856b7a73bccba7ddc5f10d5acba025da0c7546a70f484d685f009adcda79f0f40c5cc21d1a99edfcb6114cc7643e806240d545fe6fcc6e8d97abf4d79644a695
 DIST rails-6.0.2.2.gem 6656 BLAKE2B 
631342c885e93ee6ac69615051a6b244de0911669a479732897fe73a77b182a93ced8b00c18b53b6ceca14549d32468cee7170c6504bb61de2b6b9734cec8909
 SHA512 
af258bdd3c6aa8a5f511ed98dae5c97169a895aba32ee8db5fd36f4be506a3eab6595acab13cb5a6eda1e721f83881c372b25a4fdb20774fd7e247286744b502
 DIST rails-6.0.3.gem 6656 BLAKE2B 
dc5349ca3969ddcb5322bade4b55e814e2204d7203203251e7dac6aa4dc3a051a005ae7d572ddb8d8710bfe60fa33c8b0a64aa6c2d66b9b7840a8ffc67f9f965
 SHA512 
668686b520dd7bc1808237553162b9a6e39607a08264afa58d6ffc67ed6f03047d067ec134d77be6bb35059eab34c5d712b8ad94a023d9df48024a6fd22366fb

diff --git a/dev-ruby/rails/rails-5.2.4.3.ebuild 
b/dev-ruby/rails/rails-5.2.4.3.ebuild
new file mode 100644
index 000..218aaa26b3b
--- /dev/null
+++ b/dev-ruby/rails/rails-5.2.4.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem eapi7-ver
+
+DESCRIPTION="ruby on rails is a web-application and persistance framework"
+HOMEPAGE="https://rubyonrails.org;
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1-2)"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+IUSE="+asset-pipeline"
+
+ruby_add_rdepend "
+   ~dev-ruby/actioncable-${PV}
+   ~dev-ruby/actionmailer-${PV}
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/actionview-${PV}
+   ~dev-ruby/activejob-${PV}
+   ~dev-ruby/activemodel-${PV}
+   ~dev-ruby/activerecord-${PV}
+   ~dev-ruby/activestorage-${PV}
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/railties-${PV}
+   >=dev-ruby/bundler-1.3:*
+   >=dev-ruby/sprockets-rails-2.0.0:*
+   asset-pipeline? (
+   dev-ruby/jquery-rails:*
+   >=dev-ruby/sass-rails-5.0:5.0
+   >=dev-ruby/uglifier-1.3.0:*
+   >=dev-ruby/coffee-rails-4.1.0:*
+   )"
+
+# also: turbolinks, >=jbuilder-1.2:1



  1   2   3   4   5   >