[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBI-Shell/, dev-perl/DBI-Shell/files/

2020-07-08 Thread Kent Fredric
commit: f486cdd5a57c764cefda4982fd6b5f6b062fbd62
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  9 05:43:02 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  9 05:44:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f486cdd5

dev-perl/DBI-Shell: Bump to version 11.960.0

- EAPI7
- Many patches upstreamed.

Upstream:
- Automatically save command history
- Employ IO::Interactive
- Remove warning from File::Find
- Permit empty passwords
- Fix tests without '.' in @INC

Keywords:
- Droppped ~ppc due to new dependency dev-perl/IO-Interactive

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBI-Shell/DBI-Shell-11.960.0.ebuild   | 40 ++
 dev-perl/DBI-Shell/Manifest|  1 +
 .../files/DBI-Shell-11.96-sprintf-warn.patch   | 25 ++
 dev-perl/DBI-Shell/metadata.xml|  3 +-
 4 files changed, 68 insertions(+), 1 deletion(-)

diff --git a/dev-perl/DBI-Shell/DBI-Shell-11.960.0.ebuild 
b/dev-perl/DBI-Shell/DBI-Shell-11.960.0.ebuild
new file mode 100644
index 000..780b3b80be6
--- /dev/null
+++ b/dev-perl/DBI-Shell/DBI-Shell-11.960.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DLAMBLEY
+DIST_VERSION=11.96
+inherit perl-module
+
+DESCRIPTION="Interactive command shell for the DBI"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-Carp
+   dev-perl/DBI
+   virtual/perl-Data-Dumper
+   virtual/perl-Exporter
+   >=dev-perl/File-HomeDir-0.500.0
+   virtual/perl-File-Spec
+   dev-perl/IO-Interactive
+   dev-perl/IO-Tee
+   virtual/perl-Term-ReadLine
+   dev-perl/Text-CSV_XS
+   dev-perl/Text-Reform
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Getopt-Long-2.170.0
+   virtual/perl-Test-Simple
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-11.96-sprintf-warn.patch"
+)

diff --git a/dev-perl/DBI-Shell/Manifest b/dev-perl/DBI-Shell/Manifest
index 98ac8440baa..42090e2f71b 100644
--- a/dev-perl/DBI-Shell/Manifest
+++ b/dev-perl/DBI-Shell/Manifest
@@ -1 +1,2 @@
 DIST DBI-Shell-11.95.tar.gz 51147 BLAKE2B 
299d553eccd1c295b4221997d2ee95ebb1f0b865691e78d9864ab6ad39190593e3286551f7484f8e5dd028e126c3e7a9d5c3e3e73fa52ab7cdaaea6318257365
 SHA512 
a19fa2573dc20cb6844a523653f588da1eca56b4e8138b789cd7aa5c50b255ee4b374eda9baae588b5bdcd42183c9384f1fb8234d11022e02cb7f81dc0bd6c84
+DIST DBI-Shell-11.96.tar.gz 55409 BLAKE2B 
b580694b18f0a6955eb5981bf6454b30c30e50d1583a0b524ce47e0296baa7a3256c17be30329c278e1241b67780cab22bac53c30368609ab06eb50449dfe554
 SHA512 
772ec181c0ad0b1805bae25758168c66154843e8e86c84a6cb7919ed1c5e487f6ca9d206f496f688e0ddf792814358436098190598f941056ddca53a9ec46ccf

diff --git a/dev-perl/DBI-Shell/files/DBI-Shell-11.96-sprintf-warn.patch 
b/dev-perl/DBI-Shell/files/DBI-Shell-11.96-sprintf-warn.patch
new file mode 100644
index 000..930b22026d4
--- /dev/null
+++ b/dev-perl/DBI-Shell/files/DBI-Shell-11.96-sprintf-warn.patch
@@ -0,0 +1,25 @@
+From e04b6dc11fa15b4ab6da3fb1e826def507d9f0b5 Mon Sep 17 00:00:00 2001
+From: Kent Fredric 
+Date: Sun, 8 Oct 2017 13:30:36 +1300
+Subject: Silence warnings about reduntant sprintf args
+
+Bug: https://rt.cpan.org/Ticket/Display.html?id=123216
+---
+ lib/DBI/Format/SQLMinus.pm | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/lib/DBI/Format/SQLMinus.pm b/lib/DBI/Format/SQLMinus.pm
+index ce1d096..c7948a8 100644
+--- a/lib/DBI/Format/SQLMinus.pm
 b/lib/DBI/Format/SQLMinus.pm
+@@ -151,6 +151,7 @@ sub header {
+ 
+   if ( exists $cf->{format} and defined 
$cf->{format} ) {
+   $format_names = $cf->{format};
++  no warnings 'redundant';
+   $width = length sprintf( $format_names, 
" " );
+   }
+ 
+-- 
+2.27.0
+

diff --git a/dev-perl/DBI-Shell/metadata.xml b/dev-perl/DBI-Shell/metadata.xml
index cde1179c96e..1f9c3a4a9d7 100644
--- a/dev-perl/DBI-Shell/metadata.xml
+++ b/dev-perl/DBI-Shell/metadata.xml
@@ -6,7 +6,8 @@
 Gentoo Perl Project
   
   Provides dbish, a command line tool for interacting with
-  any installed DBD module directly.
+  any installed DBD module directly, similar to a shell, or various
+  database's native shell-like client.
   
 DBI-Shell
 DBI::Format



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

2020-07-08 Thread Michał Górny
commit: 693b0e63e0c22be28864aecd57b281f90fbbc4ae
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:10:40 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=693b0e63

dev-python/flask-babelex: Stabilize 0.9.4 ALLARCHES, #731380

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

 dev-python/flask-babelex/flask-babelex-0.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild 
b/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
index b24481782f8..d0dcd208477 100644
--- a/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
+++ b/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Michał Górny
commit: 44f307abd2983494b232f66ae58679a3a62e6eb7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 04:57:50 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f307ab

dev-python/pycodestyle: Mark ALLARCHES

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

 dev-python/pycodestyle/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pycodestyle/metadata.xml 
b/dev-python/pycodestyle/metadata.xml
index 9771dbcade9..27bc28dc854 100644
--- a/dev-python/pycodestyle/metadata.xml
+++ b/dev-python/pycodestyle/metadata.xml
@@ -5,6 +5,7 @@
 klaus...@gentoo.org
 Tobias Klausmann
   
+  
   
 pycodestyle
   



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

2020-07-08 Thread Michał Górny
commit: af2a34f514d97648fedd8ebe0b8aeb8e603e1ca4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:04:37 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af2a34f5

dev-python/flask-wtf: Mark ALLARCHES

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

 dev-python/flask-wtf/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/flask-wtf/metadata.xml 
b/dev-python/flask-wtf/metadata.xml
index 5606288a262..0d1a899e6b3 100644
--- a/dev-python/flask-wtf/metadata.xml
+++ b/dev-python/flask-wtf/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
 
+
 
 Flask-WTF
 lepture/flask-wtf



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

2020-07-08 Thread Michał Górny
commit: cfdbb5fa6f846a84aedda890f6e533543040450d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:09:03 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfdbb5fa

dev-python/pyflakes: Mark ALLARCHES

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

 dev-python/pyflakes/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pyflakes/metadata.xml b/dev-python/pyflakes/metadata.xml
index e863869c3e5..3444cce75ae 100644
--- a/dev-python/pyflakes/metadata.xml
+++ b/dev-python/pyflakes/metadata.xml
@@ -13,6 +13,7 @@
to sit around for minutes waiting for the checker to run; it 
runs on
most large projects in only a few seconds.

+   

pyflakes
PyCQA/pyflakes



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

2020-07-08 Thread Michał Górny
commit: 6f189098d7cc2f9aa7e6ffbe367b0cb11a1ed561
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:02:00 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f189098

dev-python/flask-babel: Mark ALLARCHES

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

 dev-python/flask-babel/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/flask-babel/metadata.xml 
b/dev-python/flask-babel/metadata.xml
index ee71c5b56de..ae0c3e4cd57 100644
--- a/dev-python/flask-babel/metadata.xml
+++ b/dev-python/flask-babel/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

Flask-Babel
python-babel/flask-babel



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

2020-07-08 Thread Michał Górny
commit: 6717c51060eb4ee43a3fd260af4bad0b0f45504e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:10:42 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6717c510

dev-python/pycodestyle: Stabilize 2.6.0 ALLARCHES, #731494

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

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

diff --git a/dev-python/pycodestyle/pycodestyle-2.6.0.ebuild 
b/dev-python/pycodestyle/pycodestyle-2.6.0.ebuild
index 686651f93a4..6c0936b68e1 100644
--- a/dev-python/pycodestyle/pycodestyle-2.6.0.ebuild
+++ b/dev-python/pycodestyle/pycodestyle-2.6.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 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 ~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"
 
 distutils_enable_tests setup.py
 distutils_enable_sphinx docs



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

2020-07-08 Thread Michał Górny
commit: 7c978ad9c8ba876479b77b8fbfc7d5200c035863
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 04:58:04 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c978ad9

dev-python/flake8: Mark ALLARCHES

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

 dev-python/flake8/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/flake8/metadata.xml b/dev-python/flake8/metadata.xml
index ef6942e1e79..86d293288a3 100644
--- a/dev-python/flake8/metadata.xml
+++ b/dev-python/flake8/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 flake8
 pycqa/flake8



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

2020-07-08 Thread Michał Górny
commit: a1696f9c7ae2b40fdcd6665f68dab8549c27e56e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:03:47 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1696f9c

dev-python/flask-restful: Mark ALLARCHES

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

 dev-python/flask-restful/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/flask-restful/metadata.xml 
b/dev-python/flask-restful/metadata.xml
index 51b801a0063..ee91a7f4854 100644
--- a/dev-python/flask-restful/metadata.xml
+++ b/dev-python/flask-restful/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

twilio/flask-restful




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

2020-07-08 Thread Michał Górny
commit: c18d8c458d63e81ac1a168e882b9e55831e101ac
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:10:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c18d8c45

dev-python/flask-babel: Stabilize 1.0.0 ALLARCHES, #731378

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

 dev-python/flask-babel/flask-babel-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-babel/flask-babel-1.0.0.ebuild 
b/dev-python/flask-babel/flask-babel-1.0.0.ebuild
index 59c7c7d3d1a..3ad5aeec4a4 100644
--- a/dev-python/flask-babel/flask-babel-1.0.0.ebuild
+++ b/dev-python/flask-babel/flask-babel-1.0.0.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm arm64 x86"
 
 RDEPEND="
dev-python/Babel[${PYTHON_USEDEP}]



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

2020-07-08 Thread Michał Górny
commit: 51c8c4bd7d0fa4758fea7ddb07f6bd09e5754bb8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:14:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51c8c4bd

dev-python/flake8: Stabilize 3.8.1 ALLARCHES, #731376

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

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

diff --git a/dev-python/flake8/flake8-3.8.1.ebuild 
b/dev-python/flake8/flake8-3.8.1.ebuild
index 806a6b8f638..a78e1748641 100644
--- a/dev-python/flake8/flake8-3.8.1.ebuild
+++ b/dev-python/flake8/flake8-3.8.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
 
 # requires.txt inc. mccabe however that creates a circular dep
 RDEPEND="



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

2020-07-08 Thread Michał Górny
commit: 10b517d67c4cfd645fe91940c1cae31d01e3f1b8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:02:52 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10b517d6

dev-python/flask-babelex: Mark ALLARCHES

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

 dev-python/flask-babelex/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/flask-babelex/metadata.xml 
b/dev-python/flask-babelex/metadata.xml
index ad8b7279ec7..0f8e16df446 100644
--- a/dev-python/flask-babelex/metadata.xml
+++ b/dev-python/flask-babelex/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 Flask-BabelEx
 mrjoes/flask-babelex



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

2020-07-08 Thread Michał Górny
commit: b32e038db74fde59d2ab521cc7973926b34a46b6
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:13:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32e038d

dev-python/flask-wtf: Require newer flask-babel

Require newer version of dev-python/flask-babel to workaround
dev-python/werkzeug breakage from older versions.

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

 dev-python/flask-wtf/flask-wtf-0.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild 
b/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild
index 49e218201e0..8a5670f086a 100644
--- a/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild
+++ b/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild
@@ -21,7 +21,7 @@ IUSE="doc test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-   dev-python/Babel[${PYTHON_USEDEP}]
+   >=dev-python/Babel-1[${PYTHON_USEDEP}]
dev-python/flask[${PYTHON_USEDEP}]
dev-python/flask-babel[${PYTHON_USEDEP}]
dev-python/itsdangerous[${PYTHON_USEDEP}]



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

2020-07-08 Thread Michał Górny
commit: e38d794a280a45afb70a61941f097d30371d67c7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:10:43 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e38d794a

dev-python/pyflakes: Stabilize 2.2.0 ALLARCHES, #731500

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

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

diff --git a/dev-python/pyflakes/pyflakes-2.2.0.ebuild 
b/dev-python/pyflakes/pyflakes-2.2.0.ebuild
index cc7b91a291f..c9d537394f5 100644
--- a/dev-python/pyflakes/pyflakes-2.2.0.ebuild
+++ b/dev-python/pyflakes/pyflakes-2.2.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 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 ~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"
 
 RDEPEND="${BDEPEND}"
 



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

2020-07-08 Thread Michał Górny
commit: 16bd238d700d64efc2abd52a990351eb9398a2b7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:14:16 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16bd238d

dev-python/flask-wtf: Stabilize 0.14.3 ALLARCHES, #731384

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

 dev-python/flask-wtf/flask-wtf-0.14.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild 
b/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild
index 8a5670f086a..c9b1f2fa5be 100644
--- a/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild
+++ b/dev-python/flask-wtf/flask-wtf-0.14.3.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Michał Górny
commit: 2b1f327c553f45e3714978d76094d4eaa362d89c
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul  9 05:10:41 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jul  9 05:14:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b1f327c

dev-python/flask-restful: Stabilize 0.3.8 ALLARCHES, #731382

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

 dev-python/flask-restful/flask-restful-0.3.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-restful/flask-restful-0.3.8.ebuild 
b/dev-python/flask-restful/flask-restful-0.3.8.ebuild
index 6c63dc0f595..f991e3e9ba3 100644
--- a/dev-python/flask-restful/flask-restful-0.3.8.ebuild
+++ b/dev-python/flask-restful/flask-restful-0.3.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/twilio/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="examples"
 
 RDEPEND="



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

2020-07-08 Thread Kent Fredric
commit: af84e8ca90c3e93ff5a3ef7c07ea98099171b0cf
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  9 04:47:19 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  9 04:48:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af84e8ca

dev-perl/DBI: Bump to version 1.643.0

- EAPI7
- Remove unused 'eutils' inherit
- Unconditionally strip bad tests
- Ensure CFLAGS passed to make/compiler

Upstream:
- Fix UTF-8 support for warn/croak within DBI internals
- Add DBD::Mem driver for a pure perl in-memory driver based on
  DBI::DBD::SqlEngine
- Add registration of mariadb_ prefix for DBD::MariaDB driver
- Add compiler warnings in Driver.xst
- Fix '.' in @INC in proxy test under parallel load
- Fix driver-related croak() in DBI->connect to report the original DSN
- Add new method $sth->last_insert_id()
- Add new XS API function variant dbd_db_do6
- Fix memory corruption in XS functions when Perl stack is reallocated
- Fix potentially calling newSV(0) in malloc_using_sv()
- Fix order of XS prepares() ps_accept and ps_return argument names
- Fix a potential NULL profile deref in dbi_profile()
- Fix a buffer overflow on an overlong DBD class name
- Remove remaining support for perl <5.8
- Update Devel::PPPort and remove redundant compat macros
- Add new attribute RaiseWarn similar to RaiseError

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBI/DBI-1.643.0.ebuild | 47 +
 dev-perl/DBI/Manifest   |  1 +
 dev-perl/DBI/metadata.xml   |  7 ++
 3 files changed, 55 insertions(+)

diff --git a/dev-perl/DBI/DBI-1.643.0.ebuild b/dev-perl/DBI/DBI-1.643.0.ebuild
new file mode 100644
index 000..51958a4867e
--- /dev/null
+++ b/dev-perl/DBI/DBI-1.643.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TIMB
+DIST_VERSION=1.643
+DIST_EXAMPLES=("ex/*")
+inherit perl-module
+
+DESCRIPTION="Database independent interface for Perl"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-perl/PlRPC-0.200.0
+   >=virtual/perl-Sys-Syslog-0.170.0
+   virtual/perl-File-Spec
+   !<=dev-perl/SQL-Statement-1.330.0
+"
+BDEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.480.0
+   test? (
+   >=virtual/perl-Test-Simple-0.900.0
+   )
+"
+PERL_RM_FILES=(
+   t/pod-coverage.t
+   t/pod.t
+)
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+
+src_test() {
+   if [[ $(makeopts_jobs) -gt 70 ]]; then
+   einfo "Reducing jobs to 70. Bug: https://bugs.gentoo.org/675164;
+   MAKEOPTS="${MAKEOPTS} -j70";
+   fi
+   perl-module_src_test
+}

diff --git a/dev-perl/DBI/Manifest b/dev-perl/DBI/Manifest
index 40d2fb12683..d210289153a 100644
--- a/dev-perl/DBI/Manifest
+++ b/dev-perl/DBI/Manifest
@@ -1 +1,2 @@
 DIST DBI-1.637.tar.gz 596423 BLAKE2B 
fbd2100d302f5096d4c4f0808d753c0647504b6d56cae82050e02a3716969d9e5ed8c0a33c58fb860d60e65d164d58b1a81d55dc4e669d5276596b9e1480c7a4
 SHA512 
48002d77d40c40f0514d464a83f78255dc1a4c5ebb721fc18bcffa06d5f19ad7aec51084d5d8a032e37c6867b5f63176a9b11b5bdf08426f903b841139698240
+DIST DBI-1.643.tar.gz 612372 BLAKE2B 
9a4b45bbf979d25e54f1ece056c3bb1d753a016e8da41b530788e69181027a9f974dd9c0d1939adceca3877c4b46d4113a2c234960b4d4bb9c12261301b920b8
 SHA512 
03812f3eb1e43c8290dadb8cb14bbced9ec6e237228ea2a2ba91f22e52143906a91a7e82945dab30b1d1b9fc92507372adafd9a09fac070808ab88f908b8

diff --git a/dev-perl/DBI/metadata.xml b/dev-perl/DBI/metadata.xml
index 162537fa5d0..b670ec02cb8 100644
--- a/dev-perl/DBI/metadata.xml
+++ b/dev-perl/DBI/metadata.xml
@@ -40,6 +40,13 @@
 DBD::Gofer::db
 DBD::Gofer::dr
 DBD::Gofer::st
+DBD::Mem
+DBD::Mem::DataSource
+DBD::Mem::Statement
+DBD::Mem::Table
+DBD::Mem::db
+DBD::Mem::dr
+DBD::Mem::st
 DBD::NullP
 DBD::NullP::db
 DBD::NullP::dr



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

2020-07-08 Thread Zac Medico
commit: 9b8289967ddd2c9e534aefd4ffed8c4093f5a3a0
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul  9 04:20:34 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul  9 04:20:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b828996

net-libs/libslirp: Bump to version 4.3.1

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

 net-libs/libslirp/Manifest  |  1 +
 net-libs/libslirp/libslirp-4.3.1.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/net-libs/libslirp/Manifest b/net-libs/libslirp/Manifest
index a86bac9a122..fa63d2a1808 100644
--- a/net-libs/libslirp/Manifest
+++ b/net-libs/libslirp/Manifest
@@ -1 +1,2 @@
 DIST libslirp-4.3.0.tar.gz 126721 BLAKE2B 
407e9b29c107edefd9c8609a16d763e159c2e8624469e49a7408c4edb8fe07940bfce748bd8e4ac2a92ed09a0be283f75337d12475c06ad778b4bb5cc56df180
 SHA512 
24c5a6c60e0a08674353db1050a6a6b6cd7633e7cb691a3380b7acc6f0bb65d8aa52a076623d4615f63c7b5e96e600b99b56d2f14772fafe132afb1f0102a993
+DIST libslirp-4.3.1.tar.gz 127008 BLAKE2B 
de40980521a54367fda73b9a67a80159ff14e8ea073086d8df3b42028ffe778b62f0aabe2b3f0929e168c73c453a8eda3fe0bb866d22de5b0712775e9cece19f
 SHA512 
fa38a5e508b00802538f8466b8b52fc4842d6f7f74caa399db1011c15bb37198678415147327a606e3f259fd5def9390012df1d4dc76e8869e9bb77ca6514005

diff --git a/net-libs/libslirp/libslirp-4.3.1.ebuild 
b/net-libs/libslirp/libslirp-4.3.1.ebuild
new file mode 100644
index 000..011abdb103b
--- /dev/null
+++ b/net-libs/libslirp/libslirp-4.3.1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+KEYWORDS="~amd64"
+MY_P="${PN}-v${PV}"
+SRC_URI="https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v${PV}/${MY_P}.tar.gz
 -> ${P}.tar.gz"
+DESCRIPTION="A general purpose TCP-IP emulator used by virtual machine 
hypervisors to provide virtual networking services."
+HOMEPAGE="https://gitlab.freedesktop.org/slirp/libslirp;
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="dev-libs/glib:="
+
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+   echo "${PV}" > .tarball-version || die
+}



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

2020-07-08 Thread Zac Medico
commit: 9e26ffbef1c4660a34a5d9b1615721dc9dc92ba9
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jul  9 04:24:17 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jul  9 04:24:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e26ffbe

app-emulation/slirp4netns: Bump to version 1.1.3

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

 app-emulation/slirp4netns/Manifest |  1 +
 app-emulation/slirp4netns/slirp4netns-1.1.3.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/app-emulation/slirp4netns/Manifest 
b/app-emulation/slirp4netns/Manifest
index cd146ba6597..48b954d0860 100644
--- a/app-emulation/slirp4netns/Manifest
+++ b/app-emulation/slirp4netns/Manifest
@@ -1,2 +1,3 @@
 DIST slirp4netns-1.0.1.tar.gz 51911 BLAKE2B 
d125dd2c24fd7a817d2b8f16c6bac66399a4a0f37c49d43541f336e7ff09673bca2d6ed2c62cc856034b8e2f6e11ac1ff3753d3546148e68ddf085e8b9aca354
 SHA512 
4947e32d88c3c8f1b7b2e94a1e73041a48cc8ddf75ffaf691d44cb6ebeaef5cf0b0abb7a8df8919682dfc854a76d73fc5bdebcf01b3ace97be187068d704bf63
 DIST slirp4netns-1.1.1.tar.gz 55391 BLAKE2B 
346fd9a0e52247488573182bf747d3ba249ba5cb8d991ede8d0dedb7a5b9c8c64ee56fe4a94ae6deffc98f85866aa100300b42c75f1fc4de3af2564a00082ac5
 SHA512 
365293c82f58c89b82515428f157c7e4709b8b04b6736e75cc549bddb3ec2a85b33b198ae55ee173b93472cb33dec64949e50e8473b052ce33c61ff777f1393f
+DIST slirp4netns-1.1.3.tar.gz 55231 BLAKE2B 
bbe0803ae2ad453519963865e53a3e020bebb9ee9658ae552745247be4b08397e8649bd52ed46a00062aa3ca804529daa5454fb591e2b128d3f1f31f9d4229c2
 SHA512 
6259099eb8896aef086961d1a6dbbdaffe24af255a7ed55f2243a87e9af54956041a28de3f8af9c8a17e59925822109545c53757af2ffa7ce603a3b99930

diff --git a/app-emulation/slirp4netns/slirp4netns-1.1.3.ebuild 
b/app-emulation/slirp4netns/slirp4netns-1.1.3.ebuild
new file mode 100644
index 000..2d9af4a06ab
--- /dev/null
+++ b/app-emulation/slirp4netns/slirp4netns-1.1.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="User-mode networking for unprivileged network namespaces"
+HOMEPAGE="https://github.com/rootless-containers/slirp4netns;
+SRC_URI="https://github.com/rootless-containers/slirp4netns/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+
+KEYWORDS="~amd64"
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="
+   dev-libs/glib:2=
+   dev-libs/libpcre:=
+   net-libs/libslirp:=
+   sys-libs/libseccomp:=
+   sys-libs/libcap:="
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+RESTRICT="test"
+
+src_prepare() {
+   # Respect AR variable for bug 722162.
+   sed -e 's|^AC_PROG_CC$|AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL(AR, ar, 
:)])\nAC_PROG_AR\n\0|' \
+   -i configure.ac || die
+   eautoreconf
+   default
+}
+
+pkg_postinst() {
+   if [[ -z ${REPLACING_VERSIONS} ]]; then
+   elog "You need to have the tun kernel module loaded in order to 
have"
+   elog "slirp4netns working"
+   fi
+}



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

2020-07-08 Thread Joonas Niilola
commit: 0a9c628be80edfbf165d1541c0d9b2f2ada28e8a
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Wed Jul  8 18:19:13 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jul  9 04:12:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9c628b

www-client/firefox: remove unused file

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16638
Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox/files/gentoo-default-prefs.js-1 | 17 -
 1 file changed, 17 deletions(-)

diff --git a/www-client/firefox/files/gentoo-default-prefs.js-1 
b/www-client/firefox/files/gentoo-default-prefs.js-1
deleted file mode 100644
index 22a51ff7de4..000
--- a/www-client/firefox/files/gentoo-default-prefs.js-1
+++ /dev/null
@@ -1,17 +0,0 @@
-pref("app.update.enabled", false);
-pref("app.update.autoInstallEnabled",  false);
-pref("browser.display.use_system_colors",  true);
-pref("browser.link.open_external", 3);
-pref("general.smoothScroll",   true);
-pref("general.autoScroll", false);
-pref("browser.tabs.tabMinWidth",   15);
-pref("browser.backspace_action",   0);
-pref("browser.urlbar.hideGoButton",true);
-pref("accessibility.typeaheadfind",true);
-pref("browser.shell.checkDefaultBrowser",  false); 
-pref("browser.EULA.override",  true); 
-pref("general.useragent.vendor", "Gentoo");
-pref("intl.locale.matchOS", true);
-pref("general.useragent.locale", "chrome://global/locale/intl.properties");
-pref("extensions.autoDisableScopes", 0);
-pref("layout.css.dpi", 0);



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2020-07-08 Thread Joonas Niilola
commit: 9ad6c5c3cbf665ab0b4a293297111e2245009d65
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Jul  9 04:13:49 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jul  9 04:13:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad6c5c3

mail-client/thunderbird-bin: comment typofix in 68.10.0-r1

Signed-off-by: Joonas Niilola  gentoo.org>

 mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild 
b/mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild
index 81fdc93edfe..11460e64d1a 100644
--- a/mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild
+++ b/mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild
@@ -163,7 +163,7 @@ src_install() {
insinto ${MOZILLA_FIVE_HOME}/defaults/pref/
newins "${FILESDIR}"/thunderbird-gentoo-default-prefs-r1.js 
all-gentoo.js
 
-   # Disable built-in auto-update because we update firefox-bin through 
package manager
+   # Disable built-in auto-update because we update thunderbird-bin 
through package manager
insinto ${MOZILLA_FIVE_HOME}/distribution/
newins "${FILESDIR}"/disable-auto-update.policy.json policies.json
 



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

2020-07-08 Thread Georgy Yakovlev
commit: fb70da9a40101382728f18cac468be2dfe4ece2b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jul  9 03:54:54 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jul  9 03:55:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb70da9a

dev-lang/rust: fix comment typo

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

 dev-lang/rust/rust-1.43.1.ebuild | 2 +-
 dev-lang/rust/rust-1.44.0.ebuild | 2 +-
 dev-lang/rust/rust-1.44.1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-lang/rust/rust-1.43.1.ebuild b/dev-lang/rust/rust-1.43.1.ebuild
index 9f54ed8a066..b0e600fc3a1 100644
--- a/dev-lang/rust/rust-1.43.1.ebuild
+++ b/dev-lang/rust/rust-1.43.1.ebuild
@@ -60,7 +60,7 @@ LLVM_MAX_SLOT=10
 
 BOOTSTRAP_DEPEND="|| ( >=dev-lang/rust-1.$(($(ver_cut 2) - 1)) 
>=dev-lang/rust-bin-1.$(($(ver_cut 2) - 1)) )"
 
-# libgit2 should be at least same as bungled into libgit-sys #707746
+# libgit2 should be at least same as bundled into libgit-sys #707746
 COMMON_DEPEND="
>=dev-libs/libgit2-0.99:=
net-libs/libssh2:=

diff --git a/dev-lang/rust/rust-1.44.0.ebuild b/dev-lang/rust/rust-1.44.0.ebuild
index bd67db4cdf4..0fabc3bfd23 100644
--- a/dev-lang/rust/rust-1.44.0.ebuild
+++ b/dev-lang/rust/rust-1.44.0.ebuild
@@ -60,7 +60,7 @@ LLVM_MAX_SLOT=10
 
 BOOTSTRAP_DEPEND="|| ( >=dev-lang/rust-1.$(($(ver_cut 2) - 1)) 
>=dev-lang/rust-bin-1.$(($(ver_cut 2) - 1)) )"
 
-# libgit2 should be at least same as bungled into libgit-sys #707746
+# libgit2 should be at least same as bundled into libgit-sys #707746
 COMMON_DEPEND="
>=dev-libs/libgit2-0.99:=
net-libs/libssh2:=

diff --git a/dev-lang/rust/rust-1.44.1.ebuild b/dev-lang/rust/rust-1.44.1.ebuild
index 1ba3a231d20..b22d273aed9 100644
--- a/dev-lang/rust/rust-1.44.1.ebuild
+++ b/dev-lang/rust/rust-1.44.1.ebuild
@@ -60,7 +60,7 @@ LLVM_MAX_SLOT=10
 
 BOOTSTRAP_DEPEND="|| ( >=dev-lang/rust-1.$(($(ver_cut 2) - 1)) 
>=dev-lang/rust-bin-1.$(($(ver_cut 2) - 1)) )"
 
-# libgit2 should be at least same as bungled into libgit-sys #707746
+# libgit2 should be at least same as bundled into libgit-sys #707746
 COMMON_DEPEND="
>=dev-libs/libgit2-0.99:=
net-libs/libssh2:=



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

2020-07-08 Thread Kent Fredric
commit: 9817e6a032157d70142f05e15cffacc258f6e7ce
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  9 02:44:02 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  9 02:44:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9817e6a0

dev-perl/DBD-mysql: -r bump for EAPI7 and QA fixes

- EAPI7
- Remove unused 'eutils' inherit
- Unconditionally patch out bad tests
- Ensure CFLAGS passed to make/compiler
- Improve test step documentation

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-mysql/DBD-mysql-4.50.0-r1.ebuild | 90 +++
 1 file changed, 90 insertions(+)

diff --git a/dev-perl/DBD-mysql/DBD-mysql-4.50.0-r1.ebuild 
b/dev-perl/DBD-mysql/DBD-mysql-4.50.0-r1.ebuild
new file mode 100644
index 000..267364b75c2
--- /dev/null
+++ b/dev-perl/DBD-mysql/DBD-mysql-4.50.0-r1.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DVEEDEN
+DIST_VERSION=4.050
+inherit perl-module
+
+DESCRIPTION="MySQL driver for the Perl5 Database Interface (DBI)"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+
+IUSE="mariadb +mysql test +ssl"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="^^ ( mysql mariadb )"
+
+DB_DEPENDS="
+   mysql? ( dev-db/mysql-connector-c:= )
+   mariadb? ( dev-db/mariadb-connector-c:=[ssl(+)?] )
+"
+RDEPEND="
+   >=dev-perl/DBI-1.609.0
+   >=dev-perl/Devel-CheckLib-1.109.0
+   ${DB_DEPENDS}
+"
+DEPEND="
+   ${DB_DEPENDS}
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   virtual/perl-Data-Dumper
+   test? (
+   dev-perl/Test-Deep
+   >=virtual/perl-Test-Simple-0.900.0
+   virtual/perl-Time-HiRes
+   )
+"
+PATCHES=(
+   "${FILESDIR}/${PN}-4.050-no-dot-inc.patch"
+   "${FILESDIR}/${PN}-4.050-fix-float-type-conversion.patch"
+   "${FILESDIR}/${PN}-4.050-fix-for-MariaDB-10.3.13-with-zerofil.patch"
+)
+
+PERL_RM_FILES=(
+   t/pod.t
+   t/manifest.t
+)
+src_configure() {
+   local impl
+   impl=$(usex mariadb mariadb mysql)
+   if use test; then
+   myconf="${myconf} --testdb=test \
+   --testhost=localhost \
+   --testuser=test \
+   --testpassword=test"
+   fi
+   myconf="${myconf} --$(usex ssl ssl nossl) 
--mysql_config=${EPREFIX}/usr/bin/${impl}_config"
+   perl-module_src_configure
+}
+
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+src_test() {
+   ewarn "Comprehensive testing requires additional manual steps. For 
details"
+   ewarn "see:"
+   ewarn " 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/${CATEGORY}/${PN}#Testing;
+
+   einfo
+   einfo "If tests fail, you have to configure your MySQL instance to 
create"
+   einfo "and grant some privileges to the test user."
+   einfo "You can run the following commands at the MySQL prompt: "
+   einfo "> CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';"
+   einfo "> CREATE DATABASE test;"
+   einfo "> GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
+   einfo
+   sleep 5
+   # Don't be a hero and try to do EXTENDED_TESTING=1 unless you can figure
+   # out why 60leaks.t fails
+
+   # Parallel testing is broken as 2 tests create the same table
+   # and mysql isn't acid compliant and can't limit visibility of tables
+   # to a transaction...
+   DIST_TEST="do" perl-module_src_test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBD-SQLite/files/, dev-perl/DBD-SQLite/

2020-07-08 Thread Kent Fredric
commit: 5aa87584945e5ae652c70e9504273ed6de9baa2f
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  9 01:59:37 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  9 02:01:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa87584

dev-perl/DBD-SQLite: Bump to version 1.640.0

- EAPI7
- Increase Min SQLITE for system-sqlite to 3.29
- Simplify system-sqlite patching/pruning
- Isolate config-only stuff to src_configure
- Ensure CFLAGS passed to make/compiler

Upstream:
- Upgrade bundled SQLite to 3.29.0 for
  * security fixes
  * ALTER TABLE ... RENAME COLUMN
  * UPSERT
- Add ::GetInfo
- Fix to use a PV value as a virtual table column value where
  appropriate
- Add deferability to foreign_key_info
- Added ability to configure SQLITE_MAX_LENGTH via ENV
- Add $dbh->sqlite_limit to change runtime limits
- Update constants
- Add sqlite_backup_{from_dbh,to_dbh} methods
- Add $dbh->sqlite_prefer_numeric_type to prefer arrays of ints instead
  of arrays of strings in TYPE statemetns
- Add sqlite_db_config method and related constants
- Add sqlite_defensive option to prohibit dangerous SQLite features
- Expose some hidden extended result codes
- Ensure an internal HV is initialized
- Handle 'unknown' op in DBD::SQLite::VirtualTable::PerlData
- Avoid segmentation fault on big-endian 32bit
  https://github.com/DBD-SQLite/DBD-SQLite/issues/45
- Fix ->quote($blob, SQL_BLOB) to quote correctly (injection risk)
  https://github.com/DBD-SQLite/DBD-SQLite/issues/51
- Add sqlite_get_autocommit private query method

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-SQLite/DBD-SQLite-1.640.0.ebuild  | 58 ++
 dev-perl/DBD-SQLite/Manifest   |  1 +
 .../files/DBD-SQLite-1.64-no-bundle.patch  | 25 ++
 3 files changed, 84 insertions(+)

diff --git a/dev-perl/DBD-SQLite/DBD-SQLite-1.640.0.ebuild 
b/dev-perl/DBD-SQLite/DBD-SQLite-1.640.0.ebuild
new file mode 100644
index 000..c0067291509
--- /dev/null
+++ b/dev-perl/DBD-SQLite/DBD-SQLite-1.640.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=ISHIGAKI
+DIST_VERSION=1.64
+inherit perl-module
+
+DESCRIPTION="Self Contained RDBMS in a DBI Driver"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+IUSE="test system-sqlite"
+RESTRICT="!test? ( test )"
+
+# Please read 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/DBD-SQLite
+# when bumping versions re: system-sqlite interop
+SYSTEM_SQLITE_DEP="
+   >=dev-db/sqlite-3.29.0[extensions(+)]
+"
+RDEPEND="
+   system-sqlite? ( ${SYSTEM_SQLITE_DEP} )
+   >=dev-perl/DBI-1.570.0
+   !
+Date: Thu, 9 Jul 2020 12:44:07 +1200
+Subject: Disable using bundled SQLite
+
+---
+ Makefile.PL | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile.PL b/Makefile.PL
+index 5c832af..5f308ab 100644
+--- a/Makefile.PL
 b/Makefile.PL
+@@ -129,7 +129,7 @@ SCOPE: {
+ # a system sqlite is also sophisticated enough to have a patching system
+ # that can change the if ( 0 ) to if ( 1 )
+ my ($sqlite_local, $sqlite_base, $sqlite_lib, $sqlite_inc);
+-if ( 0 ) {
++if ( 1 ) {
+   require File::Spec;
+   if ( $sqlite_base = (grep(/SQLITE_LOCATION=.*/, @ARGV))[0] ) {
+   $sqlite_base =~ /=(.*)/;
+-- 
+2.27.0
+



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

2020-07-08 Thread Aaron W. Swenson
commit: 855990ab005418102e3f8329b0808483805dd820
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Jul  9 01:44:01 2020 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Thu Jul  9 01:44:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=855990ab

dev-vcs/fossil: Bump to 2.11.1

Security fix: Make the "fossil git export" command more restrictive about
characters that it allows in tag names.

Bug: https://bugs.gentoo.org/727664
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-vcs/fossil/Manifest |  1 +
 dev-vcs/fossil/fossil-2.11.1.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/dev-vcs/fossil/Manifest b/dev-vcs/fossil/Manifest
index 362f2d703a6..4ab40a1963c 100644
--- a/dev-vcs/fossil/Manifest
+++ b/dev-vcs/fossil/Manifest
@@ -1,4 +1,5 @@
 DIST fossil-src-2.10.tar.gz 5634327 BLAKE2B 
1a02ef0d32b06dd09760d6a62450ad7bc15de97b5263d50ec776dbf0e2fff6b6fba4ec944eecffdaf31737f4a45e30aa898a728590a0c6e2ae171937a349e92b
 SHA512 
aad54e3eaa2d647257c5c723fca4e55981aac0432d3d0b4deaa9651c7db7d27cb9f26f7ff40c31c452cb8dd54b0f0663c632183dc11982bc9cc24adf78b952e5
+DIST fossil-src-2.11.1.tar.gz 5850806 BLAKE2B 
640807055100888d6bfea13539efb02190f07db5edcec58025952e464d50d4bd13992e5e8f5e515b01f52eaa3409d7a536bd4b48aecb5fdcf6214e47dc4963ed
 SHA512 
055306c0d5c2f9b536ace6385ed79b5ced56d77dfc8e08b38f51075e97dfebfffca10aa7e17d2b22b9945c71b12eb131d49f3651e2890820dc9cb04719cd0265
 DIST fossil-src-2.11.tar.gz 5850256 BLAKE2B 
af825ca9b79360149d53001b2952259bbad50fe05e77e84e54d58b11a66e612fd8c5f7bb3a8c36dd6f1b267ede3a1ed4c6b8229d10c6f25ff4de858842e100ce
 SHA512 
0489b5b8595a0c50c8a7d787ff2d4a30980dce83b33052f7bf8f4630320fe8a0276bc73a00f3ced2962a474df1fddb2dd2e0d70f8854e1fc83e3746ea63b6ba1
 DIST fossil-src-2.8.tar.gz 5359975 BLAKE2B 
6b63eadc8cd563d646698edc9972a52ec1feb868cb362449c232c99dcb81fea2fa227d631ebf8b695417c571933784dfffd5ecbec2a5027ac9901578a054c559
 SHA512 
5c6a8dc1545c43b3c95fbbec343db023e27a9db58f282a881bb7e488e3e26a0f7913a41f505dedf618b884507e48956780bd0e12482e184345d68edd1e79ff8e
 DIST fossil-src-2.9.tar.gz 5440118 BLAKE2B 
2817e3c88073a26ef384d45271511eaacf5394a67ba6041ba0b37f321303abcba28655daf7963b8e51a8bc9bfeee681cea1f318f5ba66e93a5317b98771ad059
 SHA512 
c3786d4ae5517c88917819448863e9e1e37704a7073a1c87c042660313b77ce3a63f32e35e6a56af1c681e7b8a5acc652b4447d0387b8a8a5b3b5aa04dd9a9b5

diff --git a/dev-vcs/fossil/fossil-2.11.1.ebuild 
b/dev-vcs/fossil/fossil-2.11.1.ebuild
new file mode 100644
index 000..e75b8051847
--- /dev/null
+++ b/dev-vcs/fossil/fossil-2.11.1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Simple, high-reliability, source control management, and more"
+HOMEPAGE="https://www.fossil-scm.org/;
+SRC_URI="https://fossil-scm.org/home/uv/fossil-src-${PV}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="debug fusefs json -legacy-mv-rm -miniz system-sqlite +ssl static
+ tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks"
+
+REQUIRED_USE="ssl? ( !miniz )"
+
+RDEPEND="
+   sys-libs/zlib
+   || (
+   sys-libs/readline:0
+   dev-libs/libedit
+   )
+   system-sqlite? ( >=dev-db/sqlite-3.28.0:3 )
+   ssl? ( dev-libs/openssl:0 )
+   tcl? ( dev-lang/tcl:0= )
+"
+
+# Either tcl or jimtcl need to be present to build Fossil (Bug #675778)
+DEPEND="${RDEPEND}
+   !tcl? (
+   || (
+   dev-lang/tcl:*
+   dev-lang/jimtcl:*
+   )
+   )
+"
+
+# Tests can't be run from the build directory
+RESTRICT="test"
+
+# fossil-2.10-check-lib64-for-tcl.patch: Bug 690828
+PATCHES=( "${FILESDIR}"/fossil-2.10-check-lib64-for-tcl.patch )
+
+src_configure() {
+   # this is not an autotools situation so don't make it seem like one
+   # --with-tcl: works
+   # --without-tcl: dies
+   local myconf="--with-openssl=$(usex ssl auto none)"
+   use debug && myconf+=' --fossil-debug'
+   use json  && myconf+=' --json'
+   use system-sqlite && myconf+=' --disable-internal-sqlite'
+   use static&& myconf+=' --static'
+   use tcl   && myconf+=' --with-tcl=1'
+   use fusefs|| myconf+=' --disable-fusefs'
+
+   local u useflags
+   useflags=( legacy-mv-rm miniz tcl-stubs tcl-private-stubs
+  th1-docs th1-hooks )
+   for u in ${useflags[@]} ; do
+   use ${u} &&  myconf+=" --with-${u}"
+   done
+
+   tc-export CC CXX
+   CC_FOR_BUILD=${CC} ./configure ${myconf} || die
+}
+
+src_install() {
+   dobin fossil
+}



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

2020-07-08 Thread Sam James
commit: 198e64720d5a8ac6d75d67c19bfdb9dc4e44856c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul  9 01:18:13 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul  9 01:18:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=198e6472

media-sound/mpg123: arm64 stable (bug #730980)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-sound/mpg123/mpg123-1.25.13.ebuild 
b/media-sound/mpg123/mpg123-1.25.13.ebuild
index 47d7339f986..7b9e0c7d984 100644
--- a/media-sound/mpg123/mpg123-1.25.13.ebuild
+++ b/media-sound/mpg123/mpg123-1.25.13.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.mpg123.org/download/${P}.tar.bz2;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="cpu_flags_x86_3dnow cpu_flags_x86_3dnowext cpu_flags_ppc_altivec alsa 
coreaudio int-quality ipv6 jack cpu_flags_x86_mmx nas oss portaudio pulseaudio 
sdl cpu_flags_x86_sse"
 
 # No MULTILIB_USEDEP here since we only build libmpg123 for non native ABIs.



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

2020-07-08 Thread Matthew Thode
commit: 96eec51b4e112585b17f6501458377dd45736bee
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Jul  9 01:14:18 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Jul  9 01:14:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96eec51b

sys-cluster/heat: fix S-dir again

Closes: https://bugs.gentoo.org/730992
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Matthew Thode  gentoo.org>

 sys-cluster/heat/heat-14.0.0.ebuild  | 1 +
 sys-cluster/heat/heat-2020.1..ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/sys-cluster/heat/heat-14.0.0.ebuild 
b/sys-cluster/heat/heat-14.0.0.ebuild
index d5378e3e674..3503f3b00f4 100644
--- a/sys-cluster/heat/heat-14.0.0.ebuild
+++ b/sys-cluster/heat/heat-14.0.0.ebuild
@@ -18,6 +18,7 @@ else

SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/heat/heat.conf.sample.ussuri
 -> heat.conf.sample-${PV}
https://tarballs.openstack.org/${PN}/openstack-${P}.tar.gz;
KEYWORDS="amd64 ~arm64 x86"
+   S="${WORKDIR}/openstack-${P}"
 fi
 
 LICENSE="Apache-2.0"

diff --git a/sys-cluster/heat/heat-2020.1..ebuild 
b/sys-cluster/heat/heat-2020.1..ebuild
index c779dc23fa9..16a42a5729f 100644
--- a/sys-cluster/heat/heat-2020.1..ebuild
+++ b/sys-cluster/heat/heat-2020.1..ebuild
@@ -18,6 +18,7 @@ else

SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/heat/heat.conf.sample.ussuri
 -> heat.conf.sample-${PV}
https://tarballs.openstack.org/${PN}/openstack-${P}.tar.gz;
KEYWORDS="~amd64 ~arm64 ~x86"
+   S="${WORKDIR}/openstack-${P}"
 fi
 
 LICENSE="Apache-2.0"



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

2020-07-08 Thread Sam James
commit: af1938e29f015fb30b0681aafeeeaebdc6a65f90
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul  9 00:54:48 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul  9 00:54:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1938e2

dev-libs/freexl: arm64 stable (bug #648700)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/freexl/freexl-1.0.5.ebuild 
b/dev-libs/freexl/freexl-1.0.5.ebuild
index 3e38d538907..329b874db4e 100644
--- a/dev-libs/freexl/freexl-1.0.5.ebuild
+++ b/dev-libs/freexl/freexl-1.0.5.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://www.gaia-gis.it/gaia-sins/${PN}-sources/${P}.tar.gz;
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ia64 ppc ppc64 ~x86"
 
 DEPEND="virtual/libiconv"
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/mapserver/

2020-07-08 Thread Sam James
commit: 18c6a60dd2029db1fde5b5078d2647dc4daf1d55
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  6 11:25:39 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul  9 00:32:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c6a60d

sci-geosciences/mapserver: security bump to 7.6.0

Changes:
* Bump to 7.6.0
* Add PHP 7.x support, new module w/ multiple builds
* Add Python 3.x, multiple builds
* Drop old Proj compatibility workaround
* Tidy up plenty of dependencies
* Use sub-slot operator where appropriate
* Use php-ext-source-r3's functions to simplify ebuild
* Modernise as much as possible, bar EAPI 7 because
  of depend.apache.

Bug: https://bugs.gentoo.org/688290
Closes: https://bugs.gentoo.org/649772
Closes: https://bugs.gentoo.org/659260
Closes: https://bugs.gentoo.org/666054
Closes: https://bugs.gentoo.org/729100
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 sci-geosciences/mapserver/Manifest   |   1 +
 sci-geosciences/mapserver/mapserver-7.6.0.ebuild | 289 +++
 sci-geosciences/mapserver/metadata.xml   |   6 +-
 3 files changed, 293 insertions(+), 3 deletions(-)

diff --git a/sci-geosciences/mapserver/Manifest 
b/sci-geosciences/mapserver/Manifest
index 15ab00e5aff..a8b03ed7f07 100644
--- a/sci-geosciences/mapserver/Manifest
+++ b/sci-geosciences/mapserver/Manifest
@@ -1 +1,2 @@
 DIST mapserver-7.2.2.tar.gz 2677800 BLAKE2B 
3f26517f634098fd7f005aa5a1f71fc8ba9b831b9bd0385a64272db6705ad3bd7563848bea1532c08f28177c51b104b1185fe6aa319de8c4ed95ec649a1bf7f4
 SHA512 
8c66a52ec04741495e0cf2bf5ec28f8e3cafac9834ab314ef998d6cf8d50b893dcc66a05d4b30f29694c357cd175a1cb28712c94bf15da4c8bcb9bfd98f0d2af
+DIST mapserver-7.6.0.tar.gz 2713965 BLAKE2B 
35e81b470afba58b1cf8cc63f70e6cc230a338c4066d38e8aa57d34a55e7414e9e3eeb6cc9c6d54ac8f60d076b90d25e23354f33f35c235d3d1d85d4f19979e7
 SHA512 
6e8a4639a025d3bdeaa74599ea10b58fbd20fc87367d39ccc9c29586a599d47ee4c45f6fe16dc76d593b3d7c51e26f8ca9d8656c5c3a3636181824d3aa26db36

diff --git a/sci-geosciences/mapserver/mapserver-7.6.0.ebuild 
b/sci-geosciences/mapserver/mapserver-7.6.0.ebuild
new file mode 100644
index 000..7e15a26e21b
--- /dev/null
+++ b/sci-geosciences/mapserver/mapserver-7.6.0.ebuild
@@ -0,0 +1,289 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# NOTE: We have to stick with EAPI 6 for now because of the
+# depend.apache eclass.
+EAPI=6
+
+# Variables for the miscellaneous bindings we provide
+PHP_EXT_OPTIONAL_USE="php"
+PHP_EXT_NAME="php_mapscriptng"
+PHP_EXT_SKIP_PHPIZE="yes"
+
+USE_PHP="php7-2 php7-3 php7-4"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+WEBAPP_MANUAL_SLOT=yes
+WEBAPP_OPTIONAL=yes
+
+# NOTE: Similarly, we cannot go cmake-utils -> cmake until we're on EAPI 7
+inherit cmake-utils depend.apache eapi7-ver perl-functions php-ext-source-r3 
python-r1 webapp
+
+DESCRIPTION="Development environment for building spatially enabled webapps"
+HOMEPAGE="https://mapserver.org/;
+SRC_URI="https://download.osgeo.org/mapserver/${P}.tar.gz;
+
+LICENSE="Boost-1.0 BSD BSD-2 ISC MIT tcltk"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+
+# NOTE: opengl removed for now as no support for it in upstream CMake
+IUSE="apache bidi cairo geos mysql oracle perl php postgis python"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+# Tests:
+# Included tests (tests/*) are seriously outdated
+# Upstream's main test suite (msautotest/*) is not in the release tarball,
+# and upstream sets 'export-ignore' for that directory.
+#
+# The eclasses used normally try to run test suites themselves,
+# or skip if nothing was found.
+# However, because of the php-ext-* eclass usage, this fails and would
+# cause errors running non-existent tests, so we have to restrict here.
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-libs/expat-2.2.8
+   dev-libs/libxml2:2=
+   dev-libs/libxslt[crypt]
+   >=dev-libs/protobuf-c-1.3.2:=
+   >=media-libs/freetype-2.9.1-r3
+   >=media-libs/gd-2.0.12:=[truetype,jpeg,png,zlib]
+   >=media-libs/giflib-5.2.1:=
+   >=media-libs/libpng-1.6.37:=
+   >=net-misc/curl-7.69.1
+   >=sci-libs/gdal-3.0.4:=[oracle?]
+   >=sci-libs/proj-6.2.1:=
+   virtual/jpeg
+   virtual/libiconv
+   >=x11-libs/agg-2.5-r3
+   apache? (
+   app-admin/webapp-config
+   dev-libs/fcgi
+   )
+   bidi? (
+   dev-libs/fribidi
+   media-libs/harfbuzz:=
+   )
+   cairo? ( x11-libs/cairo )
+   geos? ( sci-libs/geos )
+   mysql? ( dev-db/mysql-connector-c:= )
+   oracle? ( dev-db/oracle-instantclient:= )
+   perl? ( dev-lang/perl:= )
+   postgis? (
+   dev-db/postgis
+   dev-db/postgresql:=
+   )
+   python? ( ${PYTHON_DEPS} )
+"
+
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+   perl? ( >=dev-lang/swig-4.0 )
+   php? ( 

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

2020-07-08 Thread Sam James
commit: ef90c0f7003884d74ae0141682258f73331e1307
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  6 11:26:58 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul  9 00:32:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef90c0f7

profiles/base/package.use.mask: unmask >=sci-geosciences/mapserver-7.6.0[php]

Newer versions (>= 7.6.0) of mapserver support PHP 7.x.

Bug: https://bugs.gentoo.org/649772
Closes: https://github.com/gentoo/gentoo/pull/16617
Signed-off-by: Sam James  gentoo.org>

 profiles/base/package.use.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index d2d9a3336f3..19fa7077958 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -216,7 +216,7 @@ sys-block/open-isns slp
 # Mask USE until they are fixed
 =dev-libs/xapian-bindings-1.2.25 php
 media-gfx/exact-image php
-sci-geosciences/mapserver php
+ (2019-09-28)
 # media-fonts/hkscs-ming is slated for removal.



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

2020-07-08 Thread Sam James
commit: 128dca301e287ed3496a0568668afd7e743b8f39
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 21:50:01 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul  9 00:24:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=128dca30

app-text/hunspell: arm64 stable (bug #717968)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 app-text/hunspell/hunspell-1.7.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/hunspell/hunspell-1.7.0-r2.ebuild 
b/app-text/hunspell/hunspell-1.7.0-r2.ebuild
index e7400fe3c6b..f6a51eacd8e 100644
--- a/app-text/hunspell/hunspell-1.7.0-r2.ebuild
+++ b/app-text/hunspell/hunspell-1.7.0-r2.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/hunspell;
 SLOT="0/$(ver_cut 1-2)"
 LICENSE="MPL-1.1 GPL-2 LGPL-2.1"
 IUSE="ncurses nls readline static-libs"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
ncurses? ( sys-libs/ncurses:0= )



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

2020-07-08 Thread Kent Fredric
commit: e087fd0c10780edb2c9abc15bd1a2b11b60bdd7d
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  9 00:18:21 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  9 00:19:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e087fd0c

dev-perl/DBD-Pg: Bump to version 3.13.0

- EAPI7
- Unconditionally remove t/00_signature.t
- Ensure CFLAGS passed to make/compiler
- Resurrect compie-testing for Bundle::DBD::Pg
- Disable t/03*.t and t/04*.t due to
   https://rt.cpan.org/Ticket/Display.html?id=132965

Upstream:
- Prevent double-free memory errors
  https://rt.cpan.org/Ticket/Display.html?id=130681
- Fix crash when pg_error_field is called
  https://rt.cpan.org/Ticket/Display.html?id=130721
- Update list of Postgres reserved words in quote.c
- Fix tests for 32-bit machines
- Eagerly NULL-ify PQclear-ed things to remove race conditions
  https://rt.cpan.org/Ticket/Display.html?id=131522
- Allow localtime from Time::Piece, and other magical arrays, to be
  used directly as a bind value again.
- Fix tests for EnterpriseDB server
- Add small warning regarding ShowErrorStatement
- Indicate non-key index columns in statistics_info
- Return empty result set instead of undef from statistics_info
  when table NOTEXIST and not $unique_only
- Fix Segfault during st destroy
  https://github.com/bucardo/dbdpg/issues/57
  https://github.com/bucardo/dbdpg/pull/66
- Improve testing for table_info()
- Fix failing 'fulltest' target on BSD
- Return table info row last in statistics_info for compat with
  pre-8.3 servers
- Fix ASC_OR_DESC field in statistics_info
- Indicate NULL ordering in statistics_info
- Remove test that assumed '(12,34)' to be invalid for type 'circle'
  as Postgres now handles it better.
- Prevent DBI turning AutoCommit 'on' after a failed commit
- Fix memory leak in dbdimp.c by redoing the "last_result" internals
  https://rt.cpan.org/Ticket/Display.html?id=132812
- Fix regression in Perl length() for returned query results
- Make $sth->finish() do less, so that among other things,
  pg_error_field still works on the last action performed.

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild | 114 +++
 dev-perl/DBD-Pg/Manifest |   1 +
 2 files changed, 115 insertions(+)

diff --git a/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild 
b/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild
new file mode 100644
index 000..252be08d102
--- /dev/null
+++ b/dev-perl/DBD-Pg/DBD-Pg-3.13.0.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=TURNSTEP
+inherit perl-module
+
+DESCRIPTION="PostgreSQL database driver for the DBI module"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   virtual/perl-version
+   >=dev-perl/DBI-1.614.0
+   dev-db/postgresql:*
+"
+DEPEND="
+   dev-db/postgresql:*
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.880.0
+   virtual/perl-Time-HiRes
+   )
+"
+PERL_RM_FILES=(
+   "t/00_signature.t"
+)
+src_prepare() {
+   postgres_include="$(readlink -f "${EPREFIX}"/usr/include/postgresql)"
+   postgres_lib="${postgres_include//include/lib}"
+   # Fall-through case is the non-split postgresql
+   # The active cases instead get us the matching libdir for the 
includedir.
+   for i in lib lib64 ; do
+   if [ -d "${postgres_lib}/${i}" ]; then
+   postgres_lib="${postgres_lib}/${i}"
+   break
+   fi
+   done
+
+   # env variables for compilation:
+   export POSTGRES_INCLUDE="${postgres_include}"
+   export POSTGRES_LIB="${postgres_lib}"
+   perl-module_src_prepare
+}
+
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}
+
+src_test() {
+   local MODULES=(
+   "Bundle::DBD::Pg v${PV}"
+   "DBD::Pg v${PV}"
+   )
+   local failed=()
+   for dep in "${MODULES[@]}"; do
+   ebegin "Compile testing ${dep}"
+   perl -Mblib="${S}" -M"${dep} ()" -e1 #||
+   #die "Could not load ${dep}"
+   eend $? || failed+=( "$dep" )
+   done
+   if [[ ${failed[@]} ]]; then
+   echo
+   eerror "One or more modules failed compile:";
+   for dep in "${failed[@]}"; do
+   eerror "  ${dep}"
+   done
+   die "Failing due to module compilation errors";
+   fi
+
+   local 

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

2020-07-08 Thread Jeroen Roovers
commit: cecd125c8161df66c72b7ffc2c04191480ec0380
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul  9 00:08:34 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul  9 00:08:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cecd125c

www-client/opera: Old

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

 www-client/opera/Manifest  |   2 -
 www-client/opera/opera-69.0.3686.36.ebuild | 110 -
 www-client/opera/opera-69.0.3686.49.ebuild | 110 -
 3 files changed, 222 deletions(-)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index d160841552b..fb7a80a70f9 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -1,3 +1 @@
-DIST opera-stable_69.0.3686.36_amd64.deb 66189672 BLAKE2B 
d92b9aaeabcbe52b2d3f2adde7764d3a94dea78c003a5fe6748afbc2f9692ad8138b99637761f99379cb14f955df4012471f4457b1876028639bc314b4142ef0
 SHA512 
3a1aa77bccef2dcb21d6a81ddb4af534edb27f1a0002e523de1d44db810634b3b26cd8f3d9eb538ec81566c57afb5c9dd83d837c8c2da8801360c8ebfa1f015d
-DIST opera-stable_69.0.3686.49_amd64.deb 66230436 BLAKE2B 
6b464b38753c59e86b0adde1df1566ab89ad9ebf89f0f0b9b11a390ff7942e408a369839d0334e88c52e0a41c0d676793e150a1060d4c876acedf9d8f8672769
 SHA512 
90b391cc032241135cbb2a7a29acaad2613ac5de0cd45fbb4b264c4161ae39f15dd6f589c32a0c2db6bdd3f09dbcb5c42c21f33851a8589e63b35baa67aafbcf
 DIST opera-stable_69.0.3686.57_amd64.deb 66217132 BLAKE2B 
64c82e51d1ac980f790bdbff7af893434570ccc804296cb5257280ae30a47a9731246e93fb84739017baafed4c6c6b746653617e2df7251e169d93ef57379d65
 SHA512 
c797de3e22cecc294d368cfda1c15a21f4331980c449614f795f5d551e62c4a3be32736598107ef0be0c9954e6146dfad42d814d82e9358c4c06dc5ec47d3b08

diff --git a/www-client/opera/opera-69.0.3686.36.ebuild 
b/www-client/opera/opera-69.0.3686.36.ebuild
deleted file mode 100644
index fb69b98489d..000
--- a/www-client/opera/opera-69.0.3686.36.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB en-US es-419 es fil fi fr-CA fr hi hr hu 
id
-   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-
-"
-inherit chromium-2 multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
-"
-done
-KEYWORDS="amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   default
-
-   OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}-stable/copyright || die
-   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   pushd "${OPERA_HOME}"/localization > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   rm "${OPERA_HOME}"/${PN}_autoupdate || die
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /"${OPERA_HOME}"/opera_sandbox
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}

diff --git a/www-client/opera/opera-69.0.3686.49.ebuild 
b/www-client/opera/opera-69.0.3686.49.ebuild
deleted file 

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

2020-07-08 Thread Jeroen Roovers
commit: 44f235badbe97b91552187aa6ec42fb3093ccaf4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul  9 00:07:55 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul  9 00:08:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f235ba

www-client/opera: Stable

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

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

diff --git a/www-client/opera/opera-69.0.3686.57.ebuild 
b/www-client/opera/opera-69.0.3686.57.ebuild
index 58c0be89c0a..fb69b98489d 100644
--- a/www-client/opera/opera-69.0.3686.57.ebuild
+++ b/www-client/opera/opera-69.0.3686.57.ebuild
@@ -25,7 +25,7 @@ SRC_URI+="
"${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
 "
 done
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
dev-libs/expat



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

2020-07-08 Thread Jeroen Roovers
commit: 55da60108a72fdb43210f18e8e63a0dfb685897f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Jul  9 00:03:05 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Jul  9 00:08:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55da6010

www-client/opera: Version 69.0.3686.57

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

 www-client/opera/Manifest  |   1 +
 www-client/opera/opera-69.0.3686.57.ebuild | 110 +
 2 files changed, 111 insertions(+)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index 85b75971f31..d160841552b 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -1,2 +1,3 @@
 DIST opera-stable_69.0.3686.36_amd64.deb 66189672 BLAKE2B 
d92b9aaeabcbe52b2d3f2adde7764d3a94dea78c003a5fe6748afbc2f9692ad8138b99637761f99379cb14f955df4012471f4457b1876028639bc314b4142ef0
 SHA512 
3a1aa77bccef2dcb21d6a81ddb4af534edb27f1a0002e523de1d44db810634b3b26cd8f3d9eb538ec81566c57afb5c9dd83d837c8c2da8801360c8ebfa1f015d
 DIST opera-stable_69.0.3686.49_amd64.deb 66230436 BLAKE2B 
6b464b38753c59e86b0adde1df1566ab89ad9ebf89f0f0b9b11a390ff7942e408a369839d0334e88c52e0a41c0d676793e150a1060d4c876acedf9d8f8672769
 SHA512 
90b391cc032241135cbb2a7a29acaad2613ac5de0cd45fbb4b264c4161ae39f15dd6f589c32a0c2db6bdd3f09dbcb5c42c21f33851a8589e63b35baa67aafbcf
+DIST opera-stable_69.0.3686.57_amd64.deb 66217132 BLAKE2B 
64c82e51d1ac980f790bdbff7af893434570ccc804296cb5257280ae30a47a9731246e93fb84739017baafed4c6c6b746653617e2df7251e169d93ef57379d65
 SHA512 
c797de3e22cecc294d368cfda1c15a21f4331980c449614f795f5d551e62c4a3be32736598107ef0be0c9954e6146dfad42d814d82e9358c4c06dc5ec47d3b08

diff --git a/www-client/opera/opera-69.0.3686.57.ebuild 
b/www-client/opera/opera-69.0.3686.57.ebuild
new file mode 100644
index 000..58c0be89c0a
--- /dev/null
+++ b/www-client/opera/opera-69.0.3686.57.ebuild
@@ -0,0 +1,110 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB en-US es-419 es fil fi fr-CA fr hi hr hu 
id
+   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
+   zh-CN zh-TW
+
+"
+inherit chromium-2 multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
+"
+done
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   default
+
+   OPERA_HOME="usr/$(get_libdir)/${PN}"
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   esac
+
+   rm usr/bin/${PN} || die
+
+   rm usr/share/doc/${PN}-stable/copyright || die
+   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
+   gunzip usr/share/doc/${PF}/changelog.gz || die
+
+   pushd "${OPERA_HOME}"/localization > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   rm "${OPERA_HOME}"/${PN}_autoupdate || die
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /"${OPERA_HOME}"/opera_sandbox
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}



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

2020-07-08 Thread Lars Wendler
commit: 2af1863e600fb3cd9f413150eb6b6c13efafef43
Author: Dennis Eisele  online  de>
AuthorDate: Tue Jul  7 13:11:21 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jul  8 23:36:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2af1863e

app-editors/notepadqq: update homepage

This changes the outdated homepage
to the current homepage: https://notepadqq.com/s/

Closes: https://bugs.gentoo.org/722498
Reported-By: needle  protonmail.com>
Signed-off-by: Dennis Eisele  online.de>
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Closes: https://github.com/gentoo/gentoo/pull/16624
Signed-off-by: Lars Wendler  gentoo.org>

 app-editors/notepadqq/notepadqq-2.0.0_beta.ebuild | 2 +-
 app-editors/notepadqq/notepadqq-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/notepadqq/notepadqq-2.0.0_beta.ebuild 
b/app-editors/notepadqq/notepadqq-2.0.0_beta.ebuild
index 2da7d1d0936..55064b0e256 100644
--- a/app-editors/notepadqq/notepadqq-2.0.0_beta.ebuild
+++ b/app-editors/notepadqq/notepadqq-2.0.0_beta.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit qmake-utils xdg
 
 DESCRIPTION="Notepad++-like editor for Linux"
-HOMEPAGE="http://notepadqq.altervista.org;
+HOMEPAGE="https://notepadqq.com/s/;
 if [[ "${PV}" ==  ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/notepadqq/notepadqq.git;

diff --git a/app-editors/notepadqq/notepadqq-.ebuild 
b/app-editors/notepadqq/notepadqq-.ebuild
index 2da7d1d0936..55064b0e256 100644
--- a/app-editors/notepadqq/notepadqq-.ebuild
+++ b/app-editors/notepadqq/notepadqq-.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 inherit qmake-utils xdg
 
 DESCRIPTION="Notepad++-like editor for Linux"
-HOMEPAGE="http://notepadqq.altervista.org;
+HOMEPAGE="https://notepadqq.com/s/;
 if [[ "${PV}" ==  ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/notepadqq/notepadqq.git;



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

2020-07-08 Thread Lars Wendler
commit: 6c31357f5293f1f89b51ea0de263f1bff655d597
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jul  8 23:04:05 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jul  8 23:15:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c31357f

games-strategy/wesnoth: Removed old

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

 games-strategy/wesnoth/Manifest  |   1 -
 games-strategy/wesnoth/wesnoth-1.14.9.ebuild | 114 ---
 2 files changed, 115 deletions(-)

diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest
index cf8fbffebd1..e04201a27c9 100644
--- a/games-strategy/wesnoth/Manifest
+++ b/games-strategy/wesnoth/Manifest
@@ -1,4 +1,3 @@
 DIST wesnoth-1.14.11.tar.gz 500178610 BLAKE2B 
27af594bc86845eedb8cd8e45c814c3583e35bd94942947f91b6fa888018ae203dbd100e01ab26b5cd59712895151049105ff446d8ad3a8b2d86133d913a92cc
 SHA512 
3c878f679e51d3657dd4d76205bdeadd6a1a95d0771cd7ab0e29f33f36e32f1963e4a96f4529dbc4b860183b3cb5a4219e86108e0e26194b8a32d3d08a5fd469
 DIST wesnoth-1.14.13.tar.gz 502959933 BLAKE2B 
48f2e4340e9ae015c2e45f75f419ddfbb95a436a4ffbebbe417fdcf322e162ed0ad799680757adb88e19cba717cc48ec0e3d83c4c170e3502fea7be73a39a0c7
 SHA512 
ee1b7a93e2ae49698ec185cf6385cd93a49116315ebdec474bd5d5b73ab6af59db92ee5621fab68581edd81c74d8584237d5068fd30362054377d84a3dcb5ea0
-DIST wesnoth-1.14.9.tar.gz 497393449 BLAKE2B 
b5235de6ce84164ef97a105339549a8a1009d7b7ed243ae355994610e56afc584b8a37b1275e0b929729a24cd2eb94d4c208e7bd22e79b76113a1e1b91c8f92d
 SHA512 
b3e93956a40ffc48dd02e118be1d46854a2eed34ad0dca3fb34a28d0b58b4b563cb5cca588208f3525300bf075786bebe95a25c045c8098a0bdfe531a2d81e4f
 DIST wesnoth-1.15.3.tar.gz 495645949 BLAKE2B 
aa6b8636ff1b134af5e6e9cfbefefee3189a46ccd20c2a3a3f361d77d3de48d1ae38bf8376087b6292bcacc465ad72bd60ab7aa16b3ca536ce963b6f644b8ff1
 SHA512 
2a5993c2c2f41939346f88104722e31a1bd0f68b39c84bdf657a7156c1348e6c65089e2766c088a2b5a2c2df8c3cd8c5cf736d66538c87cf175585634e31adbb

diff --git a/games-strategy/wesnoth/wesnoth-1.14.9.ebuild 
b/games-strategy/wesnoth/wesnoth-1.14.9.ebuild
deleted file mode 100644
index dd0a982c833..000
--- a/games-strategy/wesnoth/wesnoth-1.14.9.ebuild
+++ /dev/null
@@ -1,114 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic toolchain-funcs user xdg
-
-DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
-HOMEPAGE="http://www.wesnoth.org
-   https://github.com/wesnoth/wesnoth;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-# uneven minor versions are development versions
-if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then
-   KEYWORDS="~amd64 ~x86"
-fi
-IUSE="dbus dedicated doc fribidi libressl nls server"
-
-RDEPEND="
-   >=dev-libs/boost-1.50:=[nls,threads,icu]
-   >=media-libs/libsdl2-2.0.4:0[joystick,video,X]
-   !dedicated? (
-   dev-libs/glib:2
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   >=media-libs/fontconfig-2.4.1
-   >=media-libs/sdl2-image-2.0.0[jpeg,png]
-   >=media-libs/sdl2-mixer-2.0.0[vorbis]
-   >=media-libs/sdl2-ttf-2.0.12
-   media-libs/libvorbis
-   >=x11-libs/pango-1.22.0
-   >=x11-libs/cairo-1.10.0
-   sys-libs/readline:0=
-   dbus? ( sys-apps/dbus )
-   fribidi? ( dev-libs/fribidi )
-   )"
-DEPEND="${RDEPEND}
-   x11-libs/libX11
-"
-BDEPEND="
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 /bin/bash -1 ${PN}
-}
-
-src_prepare() {
-   cmake_src_prepare
-
-   if ! use doc ; then
-   sed -i \
-   -e '/manual/d' \
-   doc/CMakeLists.txt || die
-   fi
-
-   # respect LINGUAS (bug #483316)
-   if [[ ${LINGUAS+set} ]] ; then
-   local lang langs=()
-   for lang in $(cat po/LINGUAS) ; do
-   has ${lang} ${LINGUAS} && langs+=( ${lang} )
-   done
-   echo "${langs[@]}" > po/LINGUAS || die
-   fi
-}
-
-src_configure() {
-   filter-flags -ftracer -fomit-frame-pointer
-   if [[ $(gcc-major-version) -eq 3 ]] ; then
-   filter-flags -fstack-protector
-   append-flags -fno-stack-protector
-   fi
-
-   # Work around eclass
-   append-flags -UNDEBUG
-
-   if use dedicated || use server ; then
-   mycmakeargs=(
-   -DENABLE_CAMPAIGN_SERVER="ON"
-   -DENABLE_SERVER="ON"
-   -DSERVER_UID="${PN}"
-   -DSERVER_GID="${PN}"
-   -DFIFO_DIR="/run/wesnothd"
-  

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

2020-07-08 Thread Lars Wendler
commit: f234e45140b05a2af796d5e7d1ae240cde35bfd9
Author: Jack Todaro  posteo  org>
AuthorDate: Tue Jul  7 22:08:09 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jul  8 23:15:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f234e451

games-strategy/wesnoth: bump up to 1.14.13

Closes: https://bugs.gentoo.org/731794
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Jack Todaro  posteo.org>
Closes: https://github.com/gentoo/gentoo/pull/16631
Signed-off-by: Lars Wendler  gentoo.org>

 games-strategy/wesnoth/Manifest   |   1 +
 games-strategy/wesnoth/wesnoth-1.14.13.ebuild | 111 ++
 2 files changed, 112 insertions(+)

diff --git a/games-strategy/wesnoth/Manifest b/games-strategy/wesnoth/Manifest
index 3ccf218ae76..cf8fbffebd1 100644
--- a/games-strategy/wesnoth/Manifest
+++ b/games-strategy/wesnoth/Manifest
@@ -1,3 +1,4 @@
 DIST wesnoth-1.14.11.tar.gz 500178610 BLAKE2B 
27af594bc86845eedb8cd8e45c814c3583e35bd94942947f91b6fa888018ae203dbd100e01ab26b5cd59712895151049105ff446d8ad3a8b2d86133d913a92cc
 SHA512 
3c878f679e51d3657dd4d76205bdeadd6a1a95d0771cd7ab0e29f33f36e32f1963e4a96f4529dbc4b860183b3cb5a4219e86108e0e26194b8a32d3d08a5fd469
+DIST wesnoth-1.14.13.tar.gz 502959933 BLAKE2B 
48f2e4340e9ae015c2e45f75f419ddfbb95a436a4ffbebbe417fdcf322e162ed0ad799680757adb88e19cba717cc48ec0e3d83c4c170e3502fea7be73a39a0c7
 SHA512 
ee1b7a93e2ae49698ec185cf6385cd93a49116315ebdec474bd5d5b73ab6af59db92ee5621fab68581edd81c74d8584237d5068fd30362054377d84a3dcb5ea0
 DIST wesnoth-1.14.9.tar.gz 497393449 BLAKE2B 
b5235de6ce84164ef97a105339549a8a1009d7b7ed243ae355994610e56afc584b8a37b1275e0b929729a24cd2eb94d4c208e7bd22e79b76113a1e1b91c8f92d
 SHA512 
b3e93956a40ffc48dd02e118be1d46854a2eed34ad0dca3fb34a28d0b58b4b563cb5cca588208f3525300bf075786bebe95a25c045c8098a0bdfe531a2d81e4f
 DIST wesnoth-1.15.3.tar.gz 495645949 BLAKE2B 
aa6b8636ff1b134af5e6e9cfbefefee3189a46ccd20c2a3a3f361d77d3de48d1ae38bf8376087b6292bcacc465ad72bd60ab7aa16b3ca536ce963b6f644b8ff1
 SHA512 
2a5993c2c2f41939346f88104722e31a1bd0f68b39c84bdf657a7156c1348e6c65089e2766c088a2b5a2c2df8c3cd8c5cf736d66538c87cf175585634e31adbb

diff --git a/games-strategy/wesnoth/wesnoth-1.14.13.ebuild 
b/games-strategy/wesnoth/wesnoth-1.14.13.ebuild
new file mode 100644
index 000..407e3840468
--- /dev/null
+++ b/games-strategy/wesnoth/wesnoth-1.14.13.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake flag-o-matic toolchain-funcs xdg
+
+DESCRIPTION="Battle for Wesnoth - A fantasy turn-based strategy game"
+HOMEPAGE="http://www.wesnoth.org
+   https://github.com/wesnoth/wesnoth;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+# uneven minor versions are development versions
+if [[ $(( $(ver_cut 2) % 2 )) == 0 ]] ; then
+   KEYWORDS="~amd64 ~x86"
+fi
+IUSE="dbus dedicated doc fribidi libressl nls server"
+
+RDEPEND="
+   acct-group/wesnoth
+   acct-user/wesnoth
+   >=dev-libs/boost-1.50:=[nls,threads,icu]
+   >=media-libs/libsdl2-2.0.4:0[joystick,video,X]
+   !dedicated? (
+   dev-libs/glib:2
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   >=media-libs/fontconfig-2.4.1
+   >=media-libs/sdl2-image-2.0.0[jpeg,png]
+   >=media-libs/sdl2-mixer-2.0.0[vorbis]
+   >=media-libs/sdl2-ttf-2.0.12
+   media-libs/libvorbis
+   >=x11-libs/pango-1.22.0
+   >=x11-libs/cairo-1.10.0
+   sys-libs/readline:0=
+   dbus? ( sys-apps/dbus )
+   fribidi? ( dev-libs/fribidi )
+   )"
+DEPEND="${RDEPEND}
+   x11-libs/libX11
+"
+BDEPEND="
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   cmake_src_prepare
+
+   if ! use doc ; then
+   sed -i \
+   -e '/manual/d' \
+   doc/CMakeLists.txt || die
+   fi
+
+   # respect LINGUAS (bug #483316)
+   if [[ ${LINGUAS+set} ]] ; then
+   local lang langs=()
+   for lang in $(cat po/LINGUAS) ; do
+   has ${lang} ${LINGUAS} && langs+=( ${lang} )
+   done
+   echo "${langs[@]}" > po/LINGUAS || die
+   fi
+}
+
+src_configure() {
+   filter-flags -ftracer -fomit-frame-pointer
+   if [[ $(gcc-major-version) -eq 3 ]] ; then
+   filter-flags -fstack-protector
+   append-flags -fno-stack-protector
+   fi
+
+   # Work around eclass
+   append-flags -UNDEBUG
+
+   if use dedicated || use server ; then
+   mycmakeargs=(
+   -DENABLE_CAMPAIGN_SERVER="ON"
+   -DENABLE_SERVER="ON"
+   -DSERVER_UID="${PN}"
+ 

[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/, mail-client/thunderbird-bin/files/

2020-07-08 Thread Thomas Deutschmann
commit: 259b8651938ef9ee467ad306557577e01251a85f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Jul  8 22:58:43 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Jul  8 22:59:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=259b8651

mail-client/thunderbird-bin: disable update check

Closes: https://bugs.gentoo.org/717734
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Thomas Deutschmann  gentoo.org>

 mail-client/thunderbird-bin/files/disable-auto-update.policy.json| 5 +
 ...nderbird-bin-68.10.0.ebuild => thunderbird-bin-68.10.0-r1.ebuild} | 4 
 2 files changed, 9 insertions(+)

diff --git a/mail-client/thunderbird-bin/files/disable-auto-update.policy.json 
b/mail-client/thunderbird-bin/files/disable-auto-update.policy.json
new file mode 100644
index 000..f36622021fc
--- /dev/null
+++ b/mail-client/thunderbird-bin/files/disable-auto-update.policy.json
@@ -0,0 +1,5 @@
+{
+  "policies": {
+"DisableAppUpdate": true
+  }
+}

diff --git a/mail-client/thunderbird-bin/thunderbird-bin-68.10.0.ebuild 
b/mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild
similarity index 96%
rename from mail-client/thunderbird-bin/thunderbird-bin-68.10.0.ebuild
rename to mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild
index 4fdf8bc9f31..81fdc93edfe 100644
--- a/mail-client/thunderbird-bin/thunderbird-bin-68.10.0.ebuild
+++ b/mail-client/thunderbird-bin/thunderbird-bin-68.10.0-r1.ebuild
@@ -163,6 +163,10 @@ src_install() {
insinto ${MOZILLA_FIVE_HOME}/defaults/pref/
newins "${FILESDIR}"/thunderbird-gentoo-default-prefs-r1.js 
all-gentoo.js
 
+   # Disable built-in auto-update because we update firefox-bin through 
package manager
+   insinto ${MOZILLA_FIVE_HOME}/distribution/
+   newins "${FILESDIR}"/disable-auto-update.policy.json policies.json
+
# Plugins dir
share_plugins_dir
 



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

2020-07-08 Thread Lars Wendler
commit: faeedcca92f509bacb89bc79a093a9c67e8700f3
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jul  8 22:33:56 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jul  8 22:34:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faeedcca

net-libs/libnsl: Prefer release tarball over GitHub tarball.

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

 net-libs/libnsl/Manifest| 2 +-
 net-libs/libnsl/libnsl-1.3.0.ebuild | 9 ++---
 2 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/net-libs/libnsl/Manifest b/net-libs/libnsl/Manifest
index 0adf5f26e28..9a18d705cfb 100644
--- a/net-libs/libnsl/Manifest
+++ b/net-libs/libnsl/Manifest
@@ -1,2 +1,2 @@
 DIST libnsl-1.2.0.tar.gz 209188 BLAKE2B 
4249cfbf0b5391790f5e5f81e4eb0be963e5fdc0c32a9400d4128e717d93da49f8751caf8de3bb4ba1a23b8670a0e4f8e750f38f4612dd0cc97db4c157421a06
 SHA512 
30115aa679a04ad01f55cff9dd1890b4c41c730a9bac2adab5add9ae03a0b4687c5f4b6e3b8652ecbb074eefac8faee3f1f13ea60d42cf4432db8a575ca72cd8
-DIST libnsl-1.3.0.tar.gz 95645 BLAKE2B 
d5116c2837a7ed5d5916d571d2e5deaf733b2e3e4401c2ebb0ec253d2755c2dc169139ea64756bd4ab28e3107f9ff1dcdd5ef6657828862a95ca18f2f145e3b3
 SHA512 
ce75ee9e54f1bdd2b31886e8157ff5f654511c3da017e0d9f8d0da6a2a9f9a78ff2e5f72cfb7ce3a23065f57337db51e3c8842a7e990350a62612018f4960342
+DIST libnsl-1.3.0.tar.xz 321488 BLAKE2B 
25cb4fa2b3f161ce4cd06ca5cc0a716bf981620de4eb102f464bc1919b8f6d82f7b02a6108260122000bbac0307d9db05d406183dc533dd1b97683d08a7fc5f5
 SHA512 
a5a6c3ccb2d1e724c8c1f65e55dcd09383eb1ae019c55f4c09441eadf23ffbc2196cfad259805b0ac40ddf3a10af0da453e4d739d67d46829c64d0995dab4e55

diff --git a/net-libs/libnsl/libnsl-1.3.0.ebuild 
b/net-libs/libnsl/libnsl-1.3.0.ebuild
index 1c8cb717c76..aa264df3234 100644
--- a/net-libs/libnsl/libnsl-1.3.0.ebuild
+++ b/net-libs/libnsl/libnsl-1.3.0.ebuild
@@ -3,11 +3,11 @@
 
 EAPI=7
 
-inherit autotools multilib-minimal
+inherit multilib-minimal
 
 DESCRIPTION="Public client interface for NIS(YP) and NIS+ in a IPv6 ready 
version"
 HOMEPAGE="https://github.com/thkukuk/libnsl;
-SRC_URI="https://github.com/thkukuk/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/thkukuk/${PN}/releases/download/v${PV}/${P}.tar.xz;
 
 SLOT="0/2"
 LICENSE="LGPL-2.1+"
@@ -24,11 +24,6 @@ RDEPEND="${DEPEND}
!

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

2020-07-08 Thread Matthew Thode
commit: ba28aec661049833452dfac9c6650b3b22082ed7
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul  8 22:10:31 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul  8 22:10:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba28aec6

sys-boot/plymouth: 0.9.5 bump

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

 sys-boot/plymouth/Manifest  |  1 +
 .../{plymouth-.ebuild => plymouth-0.9.5.ebuild} | 17 +
 sys-boot/plymouth/plymouth-.ebuild  | 17 +
 3 files changed, 19 insertions(+), 16 deletions(-)

diff --git a/sys-boot/plymouth/Manifest b/sys-boot/plymouth/Manifest
index 9e889ee2efe..881eb629c18 100644
--- a/sys-boot/plymouth/Manifest
+++ b/sys-boot/plymouth/Manifest
@@ -1,3 +1,4 @@
 DIST gentoo-logo.png 14501 BLAKE2B 
e7236c16b96a2d35a6f062b89bc0a6c6fc696a803b7da734ff9ae255fcd65e549d9bc3d510c283e235a770f42edcbdffc1d5cc4c2fcdec9cc931eb0acf504859
 SHA512 
059a555931b6d2a910bcd887f5ea0cc17c6edf2d2d45c03a1fec1bdda0138ba6bca6bdf90a65c6520a3f8f1b51ecf6f7956098f45ed6c1276f29c835e729163c
 DIST plymouth-0.9.3.tar.xz 1102724 BLAKE2B 
7ee17cc785e6197cc9488afe6ceae27541992872813a9f937211930f653207d77c1a331cb093156af5ec9502a04cf1f9e4123c42e07931eaf270fefedcc03700
 SHA512 
d7b9ba97485cdac7ad6bcaf5a7f1a9c84ece54b8d46d5efce4170294c0aa6571656d7d9957b53aed9c1e51d4d525714f54b7dbb08d8ec0b196a1a4419fd186ed
 DIST plymouth-0.9.4.tar.xz 1103496 BLAKE2B 
abad2cefb89e9d17b77113396d7203090544759b3dd7f73f67153d9f126db28e5366d36aa11e2335566bf4046bebd50d8d9dd47c75634446fb3a0314cd458925
 SHA512 
83eb2de7e6d0980e9f7fa4e0b0f20c46a8238051d84bc38dbbb5dfa438e41c1a39846dcd652374256d9f1fe79967b154a3576cd9c433ef816b6c962be2d31e93
+DIST plymouth-0.9.5.tar.xz 1186200 BLAKE2B 
8fd073703773fcf7f3e26454c860f094fb4b3d712c56c9df6716ef11815a79f7d5b078ab6c6567b76421026d84a086f95865bf9f3e4ae6363cb1ffc2caa68537
 SHA512 
686220e8d5b1a8be298156786d979d0e3fb9e010b930d0e8082a2bb152cf07c1bf493d820c243838a1771ee859dc0b4723bd9f10ee434a94a096ce9236c36ce9

diff --git a/sys-boot/plymouth/plymouth-.ebuild 
b/sys-boot/plymouth/plymouth-0.9.5.ebuild
similarity index 83%
copy from sys-boot/plymouth/plymouth-.ebuild
copy to sys-boot/plymouth/plymouth-0.9.5.ebuild
index f833e4ef1b5..19a9265e3f9 100644
--- a/sys-boot/plymouth/plymouth-.ebuild
+++ b/sys-boot/plymouth/plymouth-0.9.5.ebuild
@@ -8,10 +8,10 @@ 
SRC_URI="https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://anongit.freedesktop.org/git/plymouth;
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/plymouth/plymouth;
 else
SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 inherit autotools readme.gentoo-r1 systemd toolchain-funcs
@@ -21,7 +21,7 @@ HOMEPAGE="https://cgit.freedesktop.org/plymouth/;
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="debug gdm +gtk +libkms +pango static-libs +udev"
+IUSE="debug +gtk +libkms +pango static-libs +udev"
 
 CDEPEND="
>=media-libs/libpng-1.2.16:=
@@ -74,7 +74,6 @@ src_configure() {
$(use_enable gtk gtk)
$(use_enable libkms drm)
$(use_enable pango)
-   $(use_enable gdm gdm-transition)
$(use_with udev)
)
econf "${myconf[@]}"
@@ -86,10 +85,12 @@ src_install() {
insinto /usr/share/plymouth
newins "${DISTDIR}"/gentoo-logo.png bizcom.png
 
-   # Install compatibility symlinks as some rdeps hardcode the paths
-   dosym ../usr/bin/plymouth /bin/plymouth
-   dosym /usr/sbin/plymouth-set-default-theme 
/sbin/plymouth-set-default-theme
-   dosym ../usr/sbin/plymouthd /sbin/plymouthd
+   if use split-usr ; then
+   # Install compatibility symlinks as some rdeps hardcode the 
paths
+   dosym ../usr/bin/plymouth /bin/plymouth
+   dosym ../usr/sbin/plymouth-set-default-theme 
/sbin/plymouth-set-default-theme
+   dosym ../usr/sbin/plymouthd /sbin/plymouthd
+   fi
 
readme.gentoo_create_doc
 

diff --git a/sys-boot/plymouth/plymouth-.ebuild 
b/sys-boot/plymouth/plymouth-.ebuild
index f833e4ef1b5..19a9265e3f9 100644
--- a/sys-boot/plymouth/plymouth-.ebuild
+++ b/sys-boot/plymouth/plymouth-.ebuild
@@ -8,10 +8,10 @@ 
SRC_URI="https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://anongit.freedesktop.org/git/plymouth;
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/plymouth/plymouth;
 else
SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
-   

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

2020-07-08 Thread Matthew Thode
commit: f56c76eec0aa73aa420c456d4c18b4e3a24368e7
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul  8 21:59:47 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul  8 21:59:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56c76ee

app-crypt/certbot-nginx: 1.6.0 bump

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

 app-crypt/certbot-nginx/Manifest| 1 +
 .../{certbot-nginx-.ebuild => certbot-nginx-1.6.0.ebuild}   | 2 +-
 app-crypt/certbot-nginx/certbot-nginx-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index 1382bac8a18..e5c6fa641b4 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -1 +1,2 @@
 DIST certbot-1.5.0.tar.gz 1387959 BLAKE2B 
ad395e3bd9f7012b39692be48c28bef8a0648e17e42b7b4ada8024c7eb231f418f68b6388c6c3154232d38f82ba348bf056ddf8cdf349f4a83ad148bbc20243b
 SHA512 
ea4f9fb06ed54e2bbc30a8a0aea436e1f35772d348de483cae5e696ee1176c9663739201569102ded385074ef7aa5833c43e543c0dbc1e8f6729167350bca6a3
+DIST certbot-1.6.0.tar.gz 3797817 BLAKE2B 
fe01c450e89f490c1b8d32401fe72d8eeedd2bf80ad29b59c9836eb44550b4753e0ec4da6f378aba12383fa7e2a38e5b7405634e695c8f9b150ab4899afc57d6
 SHA512 
490b9155e90f02aaf987840c7dd041c81913daa88df4a96528e3fe1c5342b64fcc19c02a76c0e94e705f7c68d0d63c25582fa474a270d2f98d454e036fcaa320

diff --git a/app-crypt/certbot-nginx/certbot-nginx-.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-1.6.0.ebuild
similarity index 95%
copy from app-crypt/certbot-nginx/certbot-nginx-.ebuild
copy to app-crypt/certbot-nginx/certbot-nginx-1.6.0.ebuild
index b6f70f8607b..cf2c81af951 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-1.6.0.ebuild
@@ -26,7 +26,7 @@ IUSE=""
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${CDEPEND}
>=app-crypt/acme-1.4.0[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-1.4.0[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-1.6.0[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]"

diff --git a/app-crypt/certbot-nginx/certbot-nginx-.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-.ebuild
index b6f70f8607b..cf2c81af951 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-.ebuild
@@ -26,7 +26,7 @@ IUSE=""
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${CDEPEND}
>=app-crypt/acme-1.4.0[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-1.4.0[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-1.6.0[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]"



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

2020-07-08 Thread Matthew Thode
commit: 9f891c2c4c881a863fe2ab94d8bcdb541951fd03
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul  8 21:58:12 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul  8 21:58:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f891c2c

app-crypt/certbot: 1.6.0 bump

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

 app-crypt/certbot/Manifest  | 1 +
 app-crypt/certbot/{certbot-.ebuild => certbot-1.6.0.ebuild} | 2 +-
 app-crypt/certbot/certbot-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index 1382bac8a18..e5c6fa641b4 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1 +1,2 @@
 DIST certbot-1.5.0.tar.gz 1387959 BLAKE2B 
ad395e3bd9f7012b39692be48c28bef8a0648e17e42b7b4ada8024c7eb231f418f68b6388c6c3154232d38f82ba348bf056ddf8cdf349f4a83ad148bbc20243b
 SHA512 
ea4f9fb06ed54e2bbc30a8a0aea436e1f35772d348de483cae5e696ee1176c9663739201569102ded385074ef7aa5833c43e543c0dbc1e8f6729167350bca6a3
+DIST certbot-1.6.0.tar.gz 3797817 BLAKE2B 
fe01c450e89f490c1b8d32401fe72d8eeedd2bf80ad29b59c9836eb44550b4753e0ec4da6f378aba12383fa7e2a38e5b7405634e695c8f9b150ab4899afc57d6
 SHA512 
490b9155e90f02aaf987840c7dd041c81913daa88df4a96528e3fe1c5342b64fcc19c02a76c0e94e705f7c68d0d63c25582fa474a270d2f98d454e036fcaa320

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-1.6.0.ebuild
similarity index 97%
copy from app-crypt/certbot/certbot-.ebuild
copy to app-crypt/certbot/certbot-1.6.0.ebuild
index fb33b72fd17..f5147fca793 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-1.6.0.ebuild
@@ -26,7 +26,7 @@ RESTRICT="!test? ( test )"
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
${CDEPEND}
-   >=app-crypt/acme-1.4.0[${PYTHON_USEDEP}]
+   >=app-crypt/acme-1.6.0[${PYTHON_USEDEP}]
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-2.8[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-.ebuild
index fb33b72fd17..f5147fca793 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-.ebuild
@@ -26,7 +26,7 @@ RESTRICT="!test? ( test )"
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
${CDEPEND}
-   >=app-crypt/acme-1.4.0[${PYTHON_USEDEP}]
+   >=app-crypt/acme-1.6.0[${PYTHON_USEDEP}]
>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
dev-python/configobj[${PYTHON_USEDEP}]
>=dev-python/cryptography-2.8[${PYTHON_USEDEP}]



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

2020-07-08 Thread Matthew Thode
commit: a503772e38fe273414dc52c38d26646711a63aec
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul  8 22:00:57 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul  8 22:00:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a503772e

app-crypt/certbot-apache: 1.6.0 bump

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

 app-crypt/certbot-apache/Manifest   | 1 +
 .../{certbot-apache-.ebuild => certbot-apache-1.6.0.ebuild} | 2 +-
 app-crypt/certbot-apache/certbot-apache-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index 1382bac8a18..e5c6fa641b4 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -1 +1,2 @@
 DIST certbot-1.5.0.tar.gz 1387959 BLAKE2B 
ad395e3bd9f7012b39692be48c28bef8a0648e17e42b7b4ada8024c7eb231f418f68b6388c6c3154232d38f82ba348bf056ddf8cdf349f4a83ad148bbc20243b
 SHA512 
ea4f9fb06ed54e2bbc30a8a0aea436e1f35772d348de483cae5e696ee1176c9663739201569102ded385074ef7aa5833c43e543c0dbc1e8f6729167350bca6a3
+DIST certbot-1.6.0.tar.gz 3797817 BLAKE2B 
fe01c450e89f490c1b8d32401fe72d8eeedd2bf80ad29b59c9836eb44550b4753e0ec4da6f378aba12383fa7e2a38e5b7405634e695c8f9b150ab4899afc57d6
 SHA512 
490b9155e90f02aaf987840c7dd041c81913daa88df4a96528e3fe1c5342b64fcc19c02a76c0e94e705f7c68d0d63c25582fa474a270d2f98d454e036fcaa320

diff --git a/app-crypt/certbot-apache/certbot-apache-.ebuild 
b/app-crypt/certbot-apache/certbot-apache-1.6.0.ebuild
similarity index 95%
copy from app-crypt/certbot-apache/certbot-apache-.ebuild
copy to app-crypt/certbot-apache/certbot-apache-1.6.0.ebuild
index 6a66d185839..76ac8396ce1 100644
--- a/app-crypt/certbot-apache/certbot-apache-.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-1.6.0.ebuild
@@ -25,7 +25,7 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND=">=app-crypt/acme-0.29.0[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-1.1.0[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-1.6.0[${PYTHON_USEDEP}]
dev-python/python-augeas[${PYTHON_USEDEP}]
dev-python/zope-component[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]"

diff --git a/app-crypt/certbot-apache/certbot-apache-.ebuild 
b/app-crypt/certbot-apache/certbot-apache-.ebuild
index 6a66d185839..76ac8396ce1 100644
--- a/app-crypt/certbot-apache/certbot-apache-.ebuild
+++ b/app-crypt/certbot-apache/certbot-apache-.ebuild
@@ -25,7 +25,7 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND=">=app-crypt/acme-0.29.0[${PYTHON_USEDEP}]
-   >=app-crypt/certbot-1.1.0[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-1.6.0[${PYTHON_USEDEP}]
dev-python/python-augeas[${PYTHON_USEDEP}]
dev-python/zope-component[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]"



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

2020-07-08 Thread Matthew Thode
commit: 97c0ffe46d3efdda7668da6a04be0852b562e4d3
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Jul  8 21:56:32 2020 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Wed Jul  8 21:56:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c0ffe4

app-crypt/acme: 1.6.0 bump

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

 app-crypt/acme/Manifest| 1 +
 app-crypt/acme/{acme-.ebuild => acme-1.6.0.ebuild} | 2 +-
 app-crypt/acme/acme-.ebuild| 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index 1382bac8a18..e5c6fa641b4 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1 +1,2 @@
 DIST certbot-1.5.0.tar.gz 1387959 BLAKE2B 
ad395e3bd9f7012b39692be48c28bef8a0648e17e42b7b4ada8024c7eb231f418f68b6388c6c3154232d38f82ba348bf056ddf8cdf349f4a83ad148bbc20243b
 SHA512 
ea4f9fb06ed54e2bbc30a8a0aea436e1f35772d348de483cae5e696ee1176c9663739201569102ded385074ef7aa5833c43e543c0dbc1e8f6729167350bca6a3
+DIST certbot-1.6.0.tar.gz 3797817 BLAKE2B 
fe01c450e89f490c1b8d32401fe72d8eeedd2bf80ad29b59c9836eb44550b4753e0ec4da6f378aba12383fa7e2a38e5b7405634e695c8f9b150ab4899afc57d6
 SHA512 
490b9155e90f02aaf987840c7dd041c81913daa88df4a96528e3fe1c5342b64fcc19c02a76c0e94e705f7c68d0d63c25582fa474a270d2f98d454e036fcaa320

diff --git a/app-crypt/acme/acme-.ebuild b/app-crypt/acme/acme-1.6.0.ebuild
similarity index 97%
copy from app-crypt/acme/acme-.ebuild
copy to app-crypt/acme/acme-1.6.0.ebuild
index 1d83c8b8d40..a3d394a31a6 100644
--- a/app-crypt/acme/acme-.ebuild
+++ b/app-crypt/acme/acme-1.6.0.ebuild
@@ -28,7 +28,7 @@ RDEPEND="
>=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
>=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
>=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.15.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
>=dev-python/requests-2.10[${PYTHON_USEDEP}]

diff --git a/app-crypt/acme/acme-.ebuild b/app-crypt/acme/acme-.ebuild
index 1d83c8b8d40..a3d394a31a6 100644
--- a/app-crypt/acme/acme-.ebuild
+++ b/app-crypt/acme/acme-.ebuild
@@ -28,7 +28,7 @@ RDEPEND="
>=dev-python/cryptography-1.3.4[${PYTHON_USEDEP}]
>=dev-python/idna-2.0.0[${PYTHON_USEDEP}]
>=dev-python/josepy-1.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-0.13.1[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.15.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
>=dev-python/requests-2.10[${PYTHON_USEDEP}]



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

2020-07-08 Thread Georgy Yakovlev
commit: 16abe90d5fb1748455d364e900e019dfaa99349d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jul  8 21:32:43 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jul  8 21:47:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16abe90d

net-im/telegram-desktop: bump to 2.1.18, native window frame is back

Can be enabled in options
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev  gentoo.org>

 net-im/telegram-desktop/Manifest   |   1 +
 .../telegram-desktop-2.1.18.ebuild | 153 +
 2 files changed, 154 insertions(+)

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index 347044a454f..aa6d216a144 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -3,3 +3,4 @@ DIST tdesktop-2.1.11-full.tar.gz 36548657 BLAKE2B 
969ee0b680cb225c86bbab25e792b9
 DIST tdesktop-2.1.12-full.tar.gz 36549678 BLAKE2B 
0a973f8f560ccd30a35f172d4a63af9b4d16601af47f2ed71f37f6c3845e328501a79062f2917f37842248646b60ff3d88f8444d75df8bbae967969907cd3a83
 SHA512 
961f7e4900f782d58d5d1b1045590a7029777c3daa8d26f47a61663de9ab0c3c3cdfa7507c0710af2fb231e480ffe67de0bcbd61b72acb751ae8133b73d86cff
 DIST tdesktop-2.1.13-full.tar.gz 36549505 BLAKE2B 
48514be8add4ad4491c8e81a868f140228787ee489de7cd90faf31dbee959b0fb87cf2c844bf98c5b62fd6de8e32f504a6d19b071c56e6a4c0cd489d7b283818
 SHA512 
f28ae7c8c9a9eb8094fc52784742b470235234a3df7487902152858bc7c297b2dcfe5c8b939cdb9653a356b3835609e7289f53cdf7d5fb3f009823d3dbeb1bd8
 DIST tdesktop-2.1.17-full.tar.gz 36583423 BLAKE2B 
d86490b13a43033e383426f4e47baeaa04f3c26823b206fbc9ddb53245d77d50aaf2b93c6d401c603a628655789048da604afa7000c593703ab223cabd2985ef
 SHA512 
8bea14ff32e74c21c6c080b5acf9e3fe11cee51c1e42c196ceb44222c85f39824049a6fc4386798f4b1770693e3f40fe4f56a4ea11d385fd337c99be5f1746cb
+DIST tdesktop-2.1.18-full.tar.gz 36579968 BLAKE2B 
49b0d8e6fd1233588601fdd39ba22f1686ad2d9900e71ebdadc3f0c8870bb2c752e60f437795ab484d87899aad7edcc7e530ae3c640d9a875f889d004c83e525
 SHA512 
e7c1df200ac5ca8f0d3cb244e9a5daf49996046176488046d8d503ecfbf67d91bec9504fb712cfd649ae5cc0bed1cbbfc78e3a9fd6bed95c558cf51cb014dd66

diff --git a/net-im/telegram-desktop/telegram-desktop-2.1.18.ebuild 
b/net-im/telegram-desktop/telegram-desktop-2.1.18.ebuild
new file mode 100644
index 000..0ef79f82b7c
--- /dev/null
+++ b/net-im/telegram-desktop/telegram-desktop-2.1.18.ebuild
@@ -0,0 +1,153 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit cmake desktop flag-o-matic python-any-r1 xdg-utils
+
+MY_P="tdesktop-${PV}-full"
+
+DESCRIPTION="Official desktop client for Telegram"
+HOMEPAGE="https://desktop.telegram.org;
+SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz;
+
+LICENSE="GPL-3-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="+alsa +dbus enchant +gtk +hunspell libressl pulseaudio +spell wayland +X"
+
+RDEPEND="
+   !net-im/telegram-desktop-bin
+   app-arch/lz4:=
+   app-arch/xz-utils
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   dev-libs/xxhash
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5[dbus?,jpeg,png,wayland?,X(-)?]
+   dev-qt/qtimageformats:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5[png,X(-)?]
+   media-fonts/open-sans
+   media-libs/fontconfig:=
+   ~media-libs/libtgvoip-2.4.4_p20200704[alsa?,pulseaudio?]
+   media-libs/openal[alsa?,pulseaudio?]
+   media-libs/opus:=
+   media-video/ffmpeg:=[alsa?,opus,pulseaudio?]
+   sys-libs/zlib[minizip]
+   virtual/libiconv
+   dbus? (
+   dev-qt/qtdbus:5
+   dev-libs/libdbusmenu-qt[qt5(+)]
+   )
+   enchant? ( app-text/enchant:= )
+   gtk? (
+   dev-libs/glib:2
+   x11-libs/gdk-pixbuf:2[jpeg,X?]
+   x11-libs/gtk+:3[X?,wayland?]
+   x11-libs/libX11
+   )
+   hunspell? ( >=app-text/hunspell-1.7:= )
+   pulseaudio? ( media-sound/pulseaudio )
+"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   ${RDEPEND}
+   dev-cpp/range-v3
+   =dev-cpp/ms-gsl-3*
+"
+
+BDEPEND="
+   >=dev-util/cmake-3.16
+   virtual/pkgconfig
+"
+
+REQUIRED_USE="
+   || ( alsa pulseaudio )
+   || ( X wayland )
+   spell? (
+   ^^ ( enchant hunspell )
+   )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_pretend() {
+   if has ccache ${FEATURES}; then
+   ewarn
+   ewarn "ccache does not work with ${PN} out of the box"
+   ewarn "due to usage of precompiled headers"
+   ewarn "check bug https://bugs.gentoo.org/715114 for more info"
+   ewarn
+   fi
+}
+
+src_configure() {
+   local mycxxflags=(
+   

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

2020-07-08 Thread Georgy Yakovlev
commit: b332cd33213aaf7e4aaf2dd9c37b445e2f60fe6a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jul  8 21:34:57 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jul  8 21:48:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b332cd33

media-libs/libtgvoip: drop old

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

 media-libs/libtgvoip/Manifest  |  1 -
 .../libtgvoip/files/configure-bashisms.patch   | 83 --
 .../libtgvoip/libtgvoip-2.4.4_p20200701-r1.ebuild  | 55 --
 3 files changed, 139 deletions(-)

diff --git a/media-libs/libtgvoip/Manifest b/media-libs/libtgvoip/Manifest
index 96b844c88af..bcce992d606 100644
--- a/media-libs/libtgvoip/Manifest
+++ b/media-libs/libtgvoip/Manifest
@@ -1,4 +1,3 @@
 DIST libtgvoip-2.4.4_p20200430.tar.gz 1481816 BLAKE2B 
82bf6b880f28c9b63f547e473547298e25ea3b7e35b3a832a7375b0ae3a745ea3b5d55f5e635ec678e388a608532a14de85f50828da1dbc9ed77dc23be64b9e0
 SHA512 
f3130c50dfa7d3f710809bb72fb71d1b246bc91e9f8f413e704499011c8ff01f87a7226315f7cfd6edf2d2b8b6c875508185f516792ff5db74556aface33cdb4
 DIST libtgvoip-2.4.4_p20200525.tar.gz 1482357 BLAKE2B 
9324165a2818f3d6907fb80403c8df83e196e7566161d781f5608c2bc4fc0f34a4b69883202ac1a9d20d783d363534c11436cedcd24fa93c092eaca97369734e
 SHA512 
5c9fbbccde8fb7dbe8076cda53a3ec80f633493c9b3016627307463dca3426623703cd28ea7ad360bd9ff7c062edecd04787b9f8a32c439cc6622d8680d624c0
-DIST libtgvoip-2.4.4_p20200701.tar.gz 1090571 BLAKE2B 
e1e3bf129e124aa907e15afaefb1ea2ae44fcb7ab6670e7727ac388ef498c21978f668760022ec002fafecdf51b85d872364025f2282acc88532ef3b994c4e14
 SHA512 
44f650509d0c6d15adcb5bb5a4af66432c808fece5169844f37d4eb3fb25f729a1caa1c2cf68a6764d134e187b156a86e93b383984f2d4dd86a69cb3e9b2b888
 DIST libtgvoip-2.4.4_p20200704.tar.gz 1090620 BLAKE2B 
27880d296eef108613cb9330344bfc133efcd7b3fc82b7e793cf623187ff491f44021d1a47703949a0b830ae50106ed2d5b41e26cb6f5849b69b836a592112ff
 SHA512 
8ce9b991e03a2b0fb9b71e04311151081b7c682f728ae7d50a88a87470249d9f6841b24df3264245c5027a06da004d9022bf3652c4f11d03b2058e00d895

diff --git a/media-libs/libtgvoip/files/configure-bashisms.patch 
b/media-libs/libtgvoip/files/configure-bashisms.patch
deleted file mode 100644
index 2ebdf8a2799..000
--- a/media-libs/libtgvoip/files/configure-bashisms.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-From 601c2b7e4336357f49ad2dcf93bc59e5944975a4 Mon Sep 17 00:00:00 2001
-From: Georgy Yakovlev 
-Date: Sat, 4 Jul 2020 17:11:24 -0700
-Subject: [PATCH] configure.ac: use POSIX test syntax
-
-with == syntax configure fails on some shells (dash fish)
-
-./configure: 17913: test: xyes: unexpected operator
-./configure: 17921: test: x: unexpected operator
-./configure: 17929: test: x: unexpected operator
-Detected OS: linux-gnu
-./configure: 17946: test: x: unexpected operator
-./configure: 17962: test: xno: unexpected operator
-checking for dlopen in -ldl... yes
-./configure: 18036: test: xyes: unexpected operator
-checking for libpulse... yes
-checking for alsa... yes
-./configure: 18251: test: xyes: unexpected operator
-./configure: 18259: test: xyes: unexpected operator
-./configure: 18275: test: xyes: unexpected operator
-checking for size_t... yes
-
-Downstream-bug: https://bugs.gentoo.org/729034
-Signed-off-by: Georgy Yakovlev 

- configure.ac | 18 +-
- 1 file changed, 9 insertions(+), 9 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 37ee7a1..17789c2 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -46,18 +46,18 @@ AS_CASE([$host_cpu],
-   [armv7*], [cpu_armv7=yes]
- )
- AS_ECHO("Detected CPU: $host_cpu")
--AM_CONDITIONAL(TARGET_CPU_X86, test "x$cpu_x86" == xyes)
--AM_CONDITIONAL(TARGET_CPU_ARM, test "x$cpu_arm" == xyes)
--AM_CONDITIONAL(TARGET_CPU_ARMV7, test "x$cpu_armv7" == xyes)
-+AM_CONDITIONAL(TARGET_CPU_X86, test "x$cpu_x86" = xyes)
-+AM_CONDITIONAL(TARGET_CPU_ARM, test "x$cpu_arm" = xyes)
-+AM_CONDITIONAL(TARGET_CPU_ARMV7, test "x$cpu_armv7" = xyes)
- AS_ECHO("Detected OS: $host_os")
- 
- AS_CASE([$host_os],
-   [darwin*], [os_osx=yes]
- )
--AM_CONDITIONAL(TARGET_OS_OSX, test "x$os_osx" == xyes)
-+AM_CONDITIONAL(TARGET_OS_OSX, test "x$os_osx" = xyes)
- 
- AC_ARG_ENABLE([audio-callback], [AS_HELP_STRING([--enable-audio-callback], 
[enable callback-based audio I/O])], [], [enable_audio_callback=no])
--AM_CONDITIONAL(ENABLE_AUDIO_CALLBACK, test "x$enable_audio_callback" == xyes)
-+AM_CONDITIONAL(ENABLE_AUDIO_CALLBACK, test "x$enable_audio_callback" = xyes)
- 
- AS_IF([test "x$os_osx" != xyes && test "x$enable_audio_callback" != xyes], [ 
# Linux
-   AC_CHECK_LIB([dl], [dlopen])
-@@ -65,7 +65,7 @@ AS_IF([test "x$os_osx" != xyes && test 
"x$enable_audio_callback" != xyes], [ # L
-   AC_ARG_WITH([pulse], [AS_HELP_STRING([--without-pulse], [disable 
PulseAudio support])], [], [with_pulse=yes])
-   AC_ARG_WITH([alsa], [AS_HELP_STRING([--without-alsa], [disable 

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

2020-07-08 Thread Georgy Yakovlev
commit: 3f9a41de3c288c9efcc49df2a0a3a1626fe2de6f
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jul  8 21:31:46 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jul  8 21:47:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f9a41de

media-libs/libtgvoip: bump to 20200704 snapshot

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

 media-libs/libtgvoip/Manifest  |  1 +
 .../libtgvoip/libtgvoip-2.4.4_p20200704.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/media-libs/libtgvoip/Manifest b/media-libs/libtgvoip/Manifest
index 586cc1cf33f..96b844c88af 100644
--- a/media-libs/libtgvoip/Manifest
+++ b/media-libs/libtgvoip/Manifest
@@ -1,3 +1,4 @@
 DIST libtgvoip-2.4.4_p20200430.tar.gz 1481816 BLAKE2B 
82bf6b880f28c9b63f547e473547298e25ea3b7e35b3a832a7375b0ae3a745ea3b5d55f5e635ec678e388a608532a14de85f50828da1dbc9ed77dc23be64b9e0
 SHA512 
f3130c50dfa7d3f710809bb72fb71d1b246bc91e9f8f413e704499011c8ff01f87a7226315f7cfd6edf2d2b8b6c875508185f516792ff5db74556aface33cdb4
 DIST libtgvoip-2.4.4_p20200525.tar.gz 1482357 BLAKE2B 
9324165a2818f3d6907fb80403c8df83e196e7566161d781f5608c2bc4fc0f34a4b69883202ac1a9d20d783d363534c11436cedcd24fa93c092eaca97369734e
 SHA512 
5c9fbbccde8fb7dbe8076cda53a3ec80f633493c9b3016627307463dca3426623703cd28ea7ad360bd9ff7c062edecd04787b9f8a32c439cc6622d8680d624c0
 DIST libtgvoip-2.4.4_p20200701.tar.gz 1090571 BLAKE2B 
e1e3bf129e124aa907e15afaefb1ea2ae44fcb7ab6670e7727ac388ef498c21978f668760022ec002fafecdf51b85d872364025f2282acc88532ef3b994c4e14
 SHA512 
44f650509d0c6d15adcb5bb5a4af66432c808fece5169844f37d4eb3fb25f729a1caa1c2cf68a6764d134e187b156a86e93b383984f2d4dd86a69cb3e9b2b888
+DIST libtgvoip-2.4.4_p20200704.tar.gz 1090620 BLAKE2B 
27880d296eef108613cb9330344bfc133efcd7b3fc82b7e793cf623187ff491f44021d1a47703949a0b830ae50106ed2d5b41e26cb6f5849b69b836a592112ff
 SHA512 
8ce9b991e03a2b0fb9b71e04311151081b7c682f728ae7d50a88a87470249d9f6841b24df3264245c5027a06da004d9022bf3652c4f11d03b2058e00d895

diff --git a/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild 
b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild
new file mode 100644
index 000..23d709725b3
--- /dev/null
+++ b/media-libs/libtgvoip/libtgvoip-2.4.4_p20200704.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+EGIT_COMMIT="b98a01ea44916444cb1b9192f80b46f974d296a6"
+
+DESCRIPTION="VoIP library for Telegram clients"
+HOMEPAGE="https://github.com/telegramdesktop/libtgvoip;
+SRC_URI="https://github.com/telegramdesktop/libtgvoip/archive/${EGIT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64"
+IUSE="+alsa +dsp libressl pulseaudio"
+
+DEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   media-libs/opus:=
+   alsa? ( media-libs/alsa-lib )
+   pulseaudio? ( media-sound/pulseaudio )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+REQUIRED_USE="|| ( alsa pulseaudio )"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+src_prepare() {
+   default
+   sed -i 's/-std=gnu++0x/-std=gnu++17/' Makefile.am || die
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+   --disable-static
+   $(use_enable dsp)
+   $(use_with alsa)
+   $(use_with pulseaudio pulse)
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}



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

2020-07-08 Thread Georgy Yakovlev
commit: 321f02e4b969e04ce0c9058badc48632f82048d5
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jul  8 21:34:03 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jul  8 21:48:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=321f02e4

net-im/telegram-desktop: drop old beta

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

 net-im/telegram-desktop/Manifest   |   1 -
 .../telegram-desktop-2.1.17.ebuild | 153 -
 2 files changed, 154 deletions(-)

diff --git a/net-im/telegram-desktop/Manifest b/net-im/telegram-desktop/Manifest
index aa6d216a144..bb07ebfca98 100644
--- a/net-im/telegram-desktop/Manifest
+++ b/net-im/telegram-desktop/Manifest
@@ -2,5 +2,4 @@ DIST tdesktop-2.1.0-full.tar.gz 26133964 BLAKE2B 
c5eb476ea3ed02c2618e5b770bdce36
 DIST tdesktop-2.1.11-full.tar.gz 36548657 BLAKE2B 
969ee0b680cb225c86bbab25e792b9fa21182227d73f062700ac56f08de83b249cca41d661c711e1a7dbcbeeeda70ddb13535403bee6f001ea10c4864b995c67
 SHA512 
9f2fba2814a5ab64f946913e32fce66dbc842d9607cbaee00994689ef6a661a04c2a8de5e075fc532e7d8926b51432c06c2b1510b019d729eef40da373d91d42
 DIST tdesktop-2.1.12-full.tar.gz 36549678 BLAKE2B 
0a973f8f560ccd30a35f172d4a63af9b4d16601af47f2ed71f37f6c3845e328501a79062f2917f37842248646b60ff3d88f8444d75df8bbae967969907cd3a83
 SHA512 
961f7e4900f782d58d5d1b1045590a7029777c3daa8d26f47a61663de9ab0c3c3cdfa7507c0710af2fb231e480ffe67de0bcbd61b72acb751ae8133b73d86cff
 DIST tdesktop-2.1.13-full.tar.gz 36549505 BLAKE2B 
48514be8add4ad4491c8e81a868f140228787ee489de7cd90faf31dbee959b0fb87cf2c844bf98c5b62fd6de8e32f504a6d19b071c56e6a4c0cd489d7b283818
 SHA512 
f28ae7c8c9a9eb8094fc52784742b470235234a3df7487902152858bc7c297b2dcfe5c8b939cdb9653a356b3835609e7289f53cdf7d5fb3f009823d3dbeb1bd8
-DIST tdesktop-2.1.17-full.tar.gz 36583423 BLAKE2B 
d86490b13a43033e383426f4e47baeaa04f3c26823b206fbc9ddb53245d77d50aaf2b93c6d401c603a628655789048da604afa7000c593703ab223cabd2985ef
 SHA512 
8bea14ff32e74c21c6c080b5acf9e3fe11cee51c1e42c196ceb44222c85f39824049a6fc4386798f4b1770693e3f40fe4f56a4ea11d385fd337c99be5f1746cb
 DIST tdesktop-2.1.18-full.tar.gz 36579968 BLAKE2B 
49b0d8e6fd1233588601fdd39ba22f1686ad2d9900e71ebdadc3f0c8870bb2c752e60f437795ab484d87899aad7edcc7e530ae3c640d9a875f889d004c83e525
 SHA512 
e7c1df200ac5ca8f0d3cb244e9a5daf49996046176488046d8d503ecfbf67d91bec9504fb712cfd649ae5cc0bed1cbbfc78e3a9fd6bed95c558cf51cb014dd66

diff --git a/net-im/telegram-desktop/telegram-desktop-2.1.17.ebuild 
b/net-im/telegram-desktop/telegram-desktop-2.1.17.ebuild
deleted file mode 100644
index 6ddaac56772..000
--- a/net-im/telegram-desktop/telegram-desktop-2.1.17.ebuild
+++ /dev/null
@@ -1,153 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit cmake desktop flag-o-matic python-any-r1 xdg-utils
-
-MY_P="tdesktop-${PV}-full"
-
-DESCRIPTION="Official desktop client for Telegram"
-HOMEPAGE="https://desktop.telegram.org;
-SRC_URI="https://github.com/telegramdesktop/tdesktop/releases/download/v${PV}/${MY_P}.tar.gz;
-
-LICENSE="GPL-3-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
-IUSE="+alsa +dbus enchant +gtk +hunspell libressl pulseaudio +spell wayland +X"
-
-RDEPEND="
-   !net-im/telegram-desktop-bin
-   app-arch/lz4:=
-   app-arch/xz-utils
-   !libressl? ( dev-libs/openssl:0= )
-   libressl? ( dev-libs/libressl:0= )
-   dev-libs/xxhash
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5[dbus?,jpeg,png,wayland?,X(-)?]
-   dev-qt/qtimageformats:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5[png,X(-)?]
-   media-fonts/open-sans
-   media-libs/fontconfig:=
-   ~media-libs/libtgvoip-2.4.4_p20200701[alsa?,pulseaudio?]
-   media-libs/openal[alsa?,pulseaudio?]
-   media-libs/opus:=
-   media-video/ffmpeg:=[alsa?,opus,pulseaudio?]
-   sys-libs/zlib[minizip]
-   virtual/libiconv
-   dbus? (
-   dev-qt/qtdbus:5
-   dev-libs/libdbusmenu-qt[qt5(+)]
-   )
-   enchant? ( app-text/enchant:= )
-   gtk? (
-   dev-libs/glib:2
-   x11-libs/gdk-pixbuf:2[jpeg,X?]
-   x11-libs/gtk+:3[X?,wayland?]
-   x11-libs/libX11
-   )
-   hunspell? ( >=app-text/hunspell-1.7:= )
-   pulseaudio? ( media-sound/pulseaudio )
-"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   ${RDEPEND}
-   dev-cpp/range-v3
-   =dev-cpp/ms-gsl-3*
-"
-
-BDEPEND="
-   >=dev-util/cmake-3.16
-   virtual/pkgconfig
-"
-
-REQUIRED_USE="
-   || ( alsa pulseaudio )
-   || ( X wayland )
-   spell? (
-   ^^ ( enchant hunspell )
-   )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_pretend() {
-   if has ccache ${FEATURES}; then
-   ewarn
-   ewarn "ccache does not work with ${PN} out of 

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

2020-07-08 Thread David Seifert
commit: 344452492d87670c92a7bd90189bcef6240b712a
Author: David Seifert  gentoo  org>
AuthorDate: Wed Jul  8 21:27:03 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Jul  8 21:27:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34445249

net-im/skypeforlinux: Bump to 8.62.0.83

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: David Seifert  gentoo.org>

 net-im/skypeforlinux/Manifest  |  1 +
 .../skypeforlinux/skypeforlinux-8.62.0.83.ebuild   | 98 ++
 2 files changed, 99 insertions(+)

diff --git a/net-im/skypeforlinux/Manifest b/net-im/skypeforlinux/Manifest
index 27da505f8a2..a7ff5ca5794 100644
--- a/net-im/skypeforlinux/Manifest
+++ b/net-im/skypeforlinux/Manifest
@@ -2,3 +2,4 @@ DIST skypeforlinux_8.59.0.77-1.x86_64.rpm 108914465 BLAKE2B 
9d8300b9d315b95528e7
 DIST skypeforlinux_8.60.0.76-1.x86_64.rpm 108325497 BLAKE2B 
84304111a215d0e0ddb7cdad218913feb961b490ab5bdee3ca506c1666b1a37dfdb8360fa84fb36c56cd47458012c92d6eea2f437e2b9787b7b232dc797adf76
 SHA512 
a7a1e3ae3c13d235c951c5aad006df668287e82914aa333ad5429ba1a2ac0ebb84cd703f4c5e620385469c91db437105dafac93dcde7af7bb774f48dbe2370d4
 DIST skypeforlinux_8.61.0.77-1.x86_64.rpm 113617464 BLAKE2B 
4e3b16cd0119e6bf1900aaa8b9a81bfc87d6ae20a109656001fd63220064c9418dac1ce8114db385ba08f7c7d915f94b9bc368a51f1c2b91d778942d1519abf0
 SHA512 
81b7797f2e77382358033db80b11870202aeeec4dac771161ec18c2f589b7110b6813bf5a0432e4db0926854da181641fbbeffda8ab644656af45afafa49b3a5
 DIST skypeforlinux_8.61.0.95-1.x86_64.rpm 113617440 BLAKE2B 
d09468c0bcca8551f8381f1af2d8b609bab40917582d184921ba054e60ab30cc58626fd3e0ccff8a93c5fbf6132091a461fa846bfedecda724b38dab47c9babd
 SHA512 
f9b844675fc30208be04d317aaad4c82543789806766045e564cf9d71105c1c5122507b6719cdf4879d656e2423dbc43b98cc2aad8a242d9def95a5f797b46de
+DIST skypeforlinux_8.62.0.83-1.x86_64.rpm 112166207 BLAKE2B 
1f582874279ce2699f2acd6809829b78cc9d0ad588dfecdffa8dec6f335f86f50c02881ed315e6add905c403e3437ff115eea9d6a8bd84c3593b63a4042dc961
 SHA512 
04a0f6bdb042190be6503077ed63ef908dd4532c440bde4891a91b121e79cb1438f6c556dbe1a1cdcaeccc2a2dad64d83f8a9be3dd4a4cc1c3024851afed6d84

diff --git a/net-im/skypeforlinux/skypeforlinux-8.62.0.83.ebuild 
b/net-im/skypeforlinux/skypeforlinux-8.62.0.83.ebuild
new file mode 100644
index 000..c2755ee5b06
--- /dev/null
+++ b/net-im/skypeforlinux/skypeforlinux-8.62.0.83.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MULTILIB_COMPAT=( abi_x86_64 )
+
+inherit chromium-2 desktop pax-utils rpm multilib-build xdg
+
+DESCRIPTION="Instant messaging client, with support for audio and video"
+HOMEPAGE="https://www.skype.com/;
+SRC_URI="https://repo.skype.com/rpm/stable/${PN}_${PV}-1.x86_64.rpm;
+
+LICENSE="Skype-TOS MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 
Boost-1.0 ISC CC-BY-SA-3.0 CC0-1.0 openssl ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+S="${WORKDIR}"
+QA_PREBUILT="*"
+RESTRICT="mirror bindist strip" #299368
+
+RDEPEND="
+   app-crypt/libsecret[${MULTILIB_USEDEP}]
+   dev-libs/atk[${MULTILIB_USEDEP}]
+   dev-libs/expat[${MULTILIB_USEDEP}]
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   dev-libs/nspr[${MULTILIB_USEDEP}]
+   dev-libs/nss[${MULTILIB_USEDEP}]
+   media-libs/alsa-lib[${MULTILIB_USEDEP}]
+   media-libs/fontconfig:1.0[${MULTILIB_USEDEP}]
+   media-libs/freetype:2[${MULTILIB_USEDEP}]
+   media-libs/libv4l[${MULTILIB_USEDEP}]
+   net-print/cups[${MULTILIB_USEDEP}]
+   sys-apps/dbus[${MULTILIB_USEDEP}]
+   sys-devel/gcc[cxx]
+   virtual/ttf-fonts
+   x11-libs/cairo[${MULTILIB_USEDEP}]
+   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
+   x11-libs/gtk+:3[${MULTILIB_USEDEP}]
+   x11-libs/libX11[${MULTILIB_USEDEP}]
+   x11-libs/libXScrnSaver[${MULTILIB_USEDEP}]
+   x11-libs/libXcomposite[${MULTILIB_USEDEP}]
+   x11-libs/libXcursor[${MULTILIB_USEDEP}]
+   x11-libs/libXdamage[${MULTILIB_USEDEP}]
+   x11-libs/libXext[${MULTILIB_USEDEP}]
+   x11-libs/libXfixes[${MULTILIB_USEDEP}]
+   x11-libs/libXi[${MULTILIB_USEDEP}]
+   x11-libs/libXrandr[${MULTILIB_USEDEP}]
+   x11-libs/libXrender[${MULTILIB_USEDEP}]
+   x11-libs/libXtst[${MULTILIB_USEDEP}]
+   x11-libs/libxcb[${MULTILIB_USEDEP}]
+   x11-libs/libxkbfile[${MULTILIB_USEDEP}]
+   x11-libs/pango[${MULTILIB_USEDEP}]"
+
+pkg_setup() {
+   chromium_suid_sandbox_check_kernel_config
+}
+
+src_unpack() {
+   rpm_src_unpack ${A}
+}
+
+src_prepare() {
+   default
+   sed -e 
"s!^SKYPE_PATH=.*!SKYPE_PATH=${EPREFIX}/opt/skypeforlinux/skypeforlinux!" \
+   -i usr/bin/skypeforlinux || die
+   sed -e 
"s!^Categories=.*!Categories=Network;InstantMessaging;Telephony;!" \
+   -e "/^OnlyShowIn=/d" \
+   -i 

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

2020-07-08 Thread Sam James
commit: a9559320b0e00dae66353dd4753f82ff4ca4949d
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:51:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:51:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9559320

dev-perl/Convert-ASN1: arm64 stable (bug #716680)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild 
b/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild
index 004519a30ac..d432cd11a43 100644
--- a/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild
+++ b/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Standard en/decode of ASN.1 structures"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Sam James
commit: c99ee3a86c14a81f7b4bf141319f85b97e04dd74
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:38:51 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:49:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c99ee3a8

acct-user/anope: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 acct-user/anope/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/acct-user/anope/metadata.xml b/acct-user/anope/metadata.xml
index 591b1da5e31..6356cbc03fb 100644
--- a/acct-user/anope/metadata.xml
+++ b/acct-user/anope/metadata.xml
@@ -2,11 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



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

2020-07-08 Thread Sam James
commit: 9232ebc215edc910a87e05a30f4c885f459bb7b1
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:41:54 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9232ebc2

acct-user/dnscrypt-proxy: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 acct-user/dnscrypt-proxy/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/acct-user/dnscrypt-proxy/metadata.xml 
b/acct-user/dnscrypt-proxy/metadata.xml
index 33af2c3f821..fd9e2163ba5 100644
--- a/acct-user/dnscrypt-proxy/metadata.xml
+++ b/acct-user/dnscrypt-proxy/metadata.xml
@@ -2,15 +2,11 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James


gyakov...@gentoo.org
Georgy Yakovlev

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



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

2020-07-08 Thread Sam James
commit: a2f710e664a161ebe12528dad18f5856d86eeacd
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:46:40 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2f710e6

sys-process/parallel: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 sys-process/parallel/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/sys-process/parallel/metadata.xml 
b/sys-process/parallel/metadata.xml
index 9c6c64a4e72..c841467f29c 100644
--- a/sys-process/parallel/metadata.xml
+++ b/sys-process/parallel/metadata.xml
@@ -2,13 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

GNU parallel is a shell tool for executing jobs in parallel locally or
using remote machines. A job is typically a single command or a small



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

2020-07-08 Thread Sam James
commit: 22a3a8b2f035ec889811527eb1edebf3434cae5c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:47:59 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22a3a8b2

media-video/subliminal: fix indentation

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-video/subliminal/subliminal-2.1.0.ebuild 
b/media-video/subliminal/subliminal-2.1.0.ebuild
index 48473f15489..d1f30d1e2f6 100644
--- a/media-video/subliminal/subliminal-2.1.0.ebuild
+++ b/media-video/subliminal/subliminal-2.1.0.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/Diaoul/${PN}.git;
EGIT_BRANCH="develop"
 else
-SRC_URI="https://github.com/Diaoul/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://github.com/Diaoul/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 fi
 
 DESCRIPTION="Python library to search and download subtitles"



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

2020-07-08 Thread Sam James
commit: a6bd36053fbe513aa65f83c782b84bfe757ff769
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:42:19 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bd3605

acct-group/dnscrypt-proxy: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 acct-group/dnscrypt-proxy/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/acct-group/dnscrypt-proxy/metadata.xml 
b/acct-group/dnscrypt-proxy/metadata.xml
index 33af2c3f821..fd9e2163ba5 100644
--- a/acct-group/dnscrypt-proxy/metadata.xml
+++ b/acct-group/dnscrypt-proxy/metadata.xml
@@ -2,15 +2,11 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James


gyakov...@gentoo.org
Georgy Yakovlev

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



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

2020-07-08 Thread Sam James
commit: 93130f1f1956da9f13760321b9b1804aa1648cc6
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:47:15 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93130f1f

media-video/subliminal: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 media-video/subliminal/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/media-video/subliminal/metadata.xml 
b/media-video/subliminal/metadata.xml
index 996822fb8bf..b79d34d9c55 100644
--- a/media-video/subliminal/metadata.xml
+++ b/media-video/subliminal/metadata.xml
@@ -2,13 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

Diaoul/subliminal
subliminal



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

2020-07-08 Thread Sam James
commit: 2d9a13315cdbc55eac6e936749c02e400821b74a
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:41:19 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:49:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d9a1331

acct-group/ngircd: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 acct-group/ngircd/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/acct-group/ngircd/metadata.xml b/acct-group/ngircd/metadata.xml
index 591b1da5e31..6356cbc03fb 100644
--- a/acct-group/ngircd/metadata.xml
+++ b/acct-group/ngircd/metadata.xml
@@ -2,11 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/

2020-07-08 Thread Sam James
commit: 6cf4994d25fde9f356ff2efc777c37e4839974ec
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:42:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf4994d

net-dns/dnscrypt-proxy: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 net-dns/dnscrypt-proxy/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/net-dns/dnscrypt-proxy/metadata.xml 
b/net-dns/dnscrypt-proxy/metadata.xml
index 4319f7f3675..b05e6420ff3 100644
--- a/net-dns/dnscrypt-proxy/metadata.xml
+++ b/net-dns/dnscrypt-proxy/metadata.xml
@@ -2,17 +2,13 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James


gyakov...@gentoo.org
Georgy Yakovlev

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

dnscrypt-proxy provides local service which can be used 
directly as your
local resolver or as a DNS forwarder, encrypting and 
authenticating



[gentoo-commits] repo/gentoo:master commit in: net-irc/anope/

2020-07-08 Thread Sam James
commit: 057d1f2758a1fca4b6ba54e16c8ed20c530e5626
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:40:00 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:49:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=057d1f27

net-irc/anope: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 net-irc/anope/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/net-irc/anope/metadata.xml b/net-irc/anope/metadata.xml
index 0ca16f3bed0..9826ad83c45 100644
--- a/net-irc/anope/metadata.xml
+++ b/net-irc/anope/metadata.xml
@@ -2,13 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

Anope IRC Services provide user and channel management services 
for an
IRC server. It is a well-known package which continues to be 
actively



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

2020-07-08 Thread Sam James
commit: f2dae18e93e0b4d13588d1094bc7ad69b52999d9
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:43:12 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2dae18e

net-misc/endlessh: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 net-misc/endlessh/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/endlessh/metadata.xml b/net-misc/endlessh/metadata.xml
index 98e3367dc98..cb1cd21f7d6 100644
--- a/net-misc/endlessh/metadata.xml
+++ b/net-misc/endlessh/metadata.xml
@@ -2,7 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James





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

2020-07-08 Thread Sam James
commit: 8a0ef15b73e1fb431d1ebda4f319e5ecf72e0db6
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:44:35 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a0ef15b

sys-apps/moreutils: fix indentation in metadata.xml

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 sys-apps/moreutils/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/moreutils/metadata.xml b/sys-apps/moreutils/metadata.xml
index 91b03e46276..a547cb41ebd 100644
--- a/sys-apps/moreutils/metadata.xml
+++ b/sys-apps/moreutils/metadata.xml
@@ -5,7 +5,7 @@
s...@gentoo.org
Sam James

-
-   Install scripts written in Perl
-
+   
+   Install scripts written in Perl
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-irc/ngircd/

2020-07-08 Thread Sam James
commit: 9fb1e81004ab84ddc6766d7502ed4054f89aed3f
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:45:49 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb1e810

net-irc/ngircd: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 net-irc/ngircd/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/net-irc/ngircd/metadata.xml b/net-irc/ngircd/metadata.xml
index fe32ef1d9ca..c67531d126a 100644
--- a/net-irc/ngircd/metadata.xml
+++ b/net-irc/ngircd/metadata.xml
@@ -2,13 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

Enables support for 
net-libs/libident
Enables support for the IRC+ protocol 
(needs virtual/libiconv)



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

2020-07-08 Thread Sam James
commit: 049e7911663c50b4c4b806f5260d18d46f1862fb
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:44:09 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=049e7911

sys-apps/moreutils: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 sys-apps/moreutils/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/sys-apps/moreutils/metadata.xml b/sys-apps/moreutils/metadata.xml
index 7780744d4f5..91b03e46276 100644
--- a/sys-apps/moreutils/metadata.xml
+++ b/sys-apps/moreutils/metadata.xml
@@ -2,13 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 
Install scripts written in Perl
 



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

2020-07-08 Thread Sam James
commit: 2fd96304cd99fe550f31e954187ba926cd89869c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:40:34 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:49:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fd96304

acct-user/ngircd: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 acct-user/ngircd/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/acct-user/ngircd/metadata.xml b/acct-user/ngircd/metadata.xml
index 591b1da5e31..6356cbc03fb 100644
--- a/acct-user/ngircd/metadata.xml
+++ b/acct-user/ngircd/metadata.xml
@@ -2,11 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



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

2020-07-08 Thread Sam James
commit: d4cfbf1e6d198f9abb19d858a22f668dc823fe61
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:39:19 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:49:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4cfbf1e

acct-group/anope: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 acct-group/anope/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/acct-group/anope/metadata.xml b/acct-group/anope/metadata.xml
index 591b1da5e31..6356cbc03fb 100644
--- a/acct-group/anope/metadata.xml
+++ b/acct-group/anope/metadata.xml
@@ -2,11 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

-   s...@cmpct.info
+   s...@gentoo.org
Sam James

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
 



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

2020-07-08 Thread Sam James
commit: 39ca9b0ed76decfb1672dbbffba9261d4be814e1
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 20:48:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:50:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ca9b0e

dev-libs/tomsfastmath: update sam's email

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 dev-libs/tomsfastmath/metadata.xml | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/dev-libs/tomsfastmath/metadata.xml 
b/dev-libs/tomsfastmath/metadata.xml
index dfaf4142e2c..15dd85b520a 100644
--- a/dev-libs/tomsfastmath/metadata.xml
+++ b/dev-libs/tomsfastmath/metadata.xml
@@ -2,13 +2,9 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-s...@cmpct.info
+s...@gentoo.org
 Sam James
   
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
   
 m...@gentoo.org
 Michael Orlitzky



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/FORT-validator/

2020-07-08 Thread Alarig Le Lay
commit: a663545a71de92ba73ac404e5dc26b2207deb94b
Author: Alarig Le Lay  swordarmor  fr>
AuthorDate: Wed Jul  8 20:46:28 2020 +
Commit: Alarig Le Lay  swordarmor  fr>
CommitDate: Wed Jul  8 20:46:28 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a663545a

net-misc/FORT-validator: Version bump to 1.3.0

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Alarig Le Lay  swordarmor.fr>

 .../FORT-validator/FORT-validator-1.3.0.ebuild | 77 ++
 net-misc/FORT-validator/Manifest   |  1 +
 2 files changed, 78 insertions(+)

diff --git a/net-misc/FORT-validator/FORT-validator-1.3.0.ebuild 
b/net-misc/FORT-validator/FORT-validator-1.3.0.ebuild
new file mode 100644
index 000..ce424e3
--- /dev/null
+++ b/net-misc/FORT-validator/FORT-validator-1.3.0.ebuild
@@ -0,0 +1,77 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools fcaps systemd
+
+DESCRIPTION="FORT validator is an open source RPKI validator"
+HOMEPAGE="https://fortproject.net/validator?2;
+SRC_URI="https://github.com/NICMx/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+MY_PN="fort"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="caps libressl"
+
+DEPEND="
+   acct-group/fort
+   acct-user/fort
+   caps? ( sys-libs/libcap )
+   dev-libs/jansson
+   libressl?   ( dev-libs/libressl:0= )
+   !libressl?  ( dev-libs/openssl:0= )
+"
+RDEPEND="
+   ${DEPEND}
+   net-misc/rsync
+"
+BDEPEND="
+   sys-devel/autoconf
+   sys-devel/automake
+"
+
+PATCHES="${FILESDIR}/${PN}-skip-online-test.patch"
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_install() {
+   newinitd "${FILESDIR}/${MY_PN}-initd" ${MY_PN}
+   newconfd "${FILESDIR}/${MY_PN}-confd" ${MY_PN}
+
+   emake DESTDIR="${D}" install
+   insinto /usr/share/${MY_PN}/
+   insopts -m0644 -o "${MY_PN}"
+   diropts -m0755 -o "${MY_PN}"
+   doins -r examples/tal/
+
+   dodoc -r examples/
+
+   insinto /etc/fort
+   newins "${FILESDIR}/fort-config.json" config.json
+
+   exeinto "/usr/libexec/${MY_PN}"
+   doexe fort_setup.sh
+
+   systemd_dounit "${FILESDIR}/${MY_PN}.service"
+}
+
+pkg_postinst() {
+   fcaps cap_net_bind_service usr/bin/fort
+
+   einfo ""
+   einfo "ARIN TAL is disabled by default because the ARIN Relying Party"
+   einfo "Agreement must be accepted beforehead. Start fort, run"
+   einfo ""
+   einfo "  su -s /bin/sh -c '${EROOT}/usr/libexec/${MY_PN}/fort_setup.sh 
/usr/share/${MY_PN}/tal/' fort"
+   einfo ""
+   einfo "as root and restart fort to enable it."
+   einfo "The configuration file generation will provide a config file, 
but a"
+   einfo "simpler one is shiped with the ebuid. Use the one you prefer."
+}

diff --git a/net-misc/FORT-validator/Manifest b/net-misc/FORT-validator/Manifest
index abb8724..2ed1991 100644
--- a/net-misc/FORT-validator/Manifest
+++ b/net-misc/FORT-validator/Manifest
@@ -1,2 +1,3 @@
 DIST FORT-validator-1.2.0.tar.gz 427483 BLAKE2B 
05fbec44fb17fa188b6196a2b166f2e112224dcf4071cc875ed1f3a147b28acff94c89b0c0a658aaee197e1820d9f53803e73add81e355f7df07713fcdb0df00
 SHA512 
e89b1aa7c0cd4036d04a017898e1a6017450f5dab96e57c35b0aa532b212b23f7fab17ca117a9461c9bdacca511ea70341e692a4d5e8f277ae8e277c1d48706e
 DIST FORT-validator-1.2.1.tar.gz 431832 BLAKE2B 
25459e591a531dcf3326baec06c9e462611f1fd727bd79623d0f5eae0f02b2398e698ea6f0cf7608061f5e125afb056c7dff9b1dcc6fbe01332e573e8c4b1f15
 SHA512 
87d256a02ca6d3c00bb2245476c126b076f6c57e9eeaefb2dcb0dfed5763b5769731de08e4168c9ce701a2820eeda69c3bf054c8445b910948504fdb7b0b6b50
+DIST FORT-validator-1.3.0.tar.gz 444918 BLAKE2B 
3a8fb8cce5c71d22ab402d6b6a1478f173641a3876bad04e9fde4373d2a6b49395ff692aa048579886a82a799ed7849fc51d86c798b0b0ea9c594b4eb532b367
 SHA512 
0aed86979e6b9c3142cc9a53d13a619dbe22a3e05bcc26f30fda5048ac3e9d31b83307fbd4a68543eaf948954dbaba54edbce9b90ab0189d15c3629b220d094c



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

2020-07-08 Thread Sam James
commit: 1c5c5a1f1f19fa36b5106c4383a0a41782a5b82d
Author: Sam James (sam_c)  gentoo  org>
AuthorDate: Wed Jul  8 20:33:39 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 20:33:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5c5a1f

sys-apps/logwatch: arm64 stable (bug #730492)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 sys-apps/logwatch/logwatch-7.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/logwatch/logwatch-7.5.3.ebuild 
b/sys-apps/logwatch/logwatch-7.5.3.ebuild
index 9cf8854bc03..e950c9a1556 100644
--- a/sys-apps/logwatch/logwatch-7.5.3.ebuild
+++ b/sys-apps/logwatch/logwatch-7.5.3.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ppc ppc64 sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ppc ppc64 sparc ~x86"
 fi
 
 DESCRIPTION="Analyzes and Reports on system logs"



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

2020-07-08 Thread Michał Górny
commit: f2d85d37011f5f7ab87afd6f1f67f6bc90200252
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:15:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2d85d37

dev-python/dogpile-cache: Stabilize 0.9.1 ALLARCHES, #731366

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

 dev-python/dogpile-cache/dogpile-cache-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dogpile-cache/dogpile-cache-0.9.1.ebuild 
b/dev-python/dogpile-cache/dogpile-cache-0.9.1.ebuild
index 2f4d32066ff..2acea6ee6fa 100644
--- a/dev-python/dogpile-cache/dogpile-cache-0.9.1.ebuild
+++ b/dev-python/dogpile-cache/dogpile-cache-0.9.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/dogpile.cache-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Michał Górny
commit: 20b9e42d515d64077bad434cc21a81a30b973a13
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:15:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b9e42d

dev-python/fasteners: Stabilize 0.15 ALLARCHES, #731372

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

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

diff --git a/dev-python/fasteners/fasteners-0.15.ebuild 
b/dev-python/fasteners/fasteners-0.15.ebuild
index b66f8cbdd58..3237207f37f 100644
--- a/dev-python/fasteners/fasteners-0.15.ebuild
+++ b/dev-python/fasteners/fasteners-0.15.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-python/monotonic-0.1[${PYTHON_USEDEP}]



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

2020-07-08 Thread Michał Górny
commit: 7f98e586481a60a824dedcc76533f31572d0d00e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:04:57 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f98e586

dev-python/django: Mark ALLARCHES

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

 dev-python/django/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/django/metadata.xml b/dev-python/django/metadata.xml
index ca9edb307f4..11e4ec4f152 100644
--- a/dev-python/django/metadata.xml
+++ b/dev-python/django/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 Django
 django/django



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

2020-07-08 Thread Michał Górny
commit: 2d911a8686c6524bd05cbc11cdd589fbddfccf5a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:07:00 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d911a86

dev-python/dogpile-cache: Mark ALLARCHES

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

 dev-python/dogpile-cache/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/dogpile-cache/metadata.xml 
b/dev-python/dogpile-cache/metadata.xml
index 823622b3f9e..d7821ac6f81 100644
--- a/dev-python/dogpile-cache/metadata.xml
+++ b/dev-python/dogpile-cache/metadata.xml
@@ -14,6 +14,7 @@
continued access to an expiring data value while
a single thread generates a new value.

+   

dogpile.cache
zzzeek/dogpile.cache



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

2020-07-08 Thread Michał Górny
commit: 5a832bc167e0f0823e8d5650fa1877e5533664da
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:15:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a832bc1

dev-python/django: Stabilize 3.0.7 ALLARCHES, #731364

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

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

diff --git a/dev-python/django/django-3.0.7.ebuild 
b/dev-python/django/django-3.0.7.ebuild
index fbc688b75cb..7f323539c12 100644
--- a/dev-python/django/django-3.0.7.ebuild
+++ b/dev-python/django/django-3.0.7.ebuild
@@ -23,7 +23,7 @@ LICENSE+=" Apache-2.0"
 # admin icons, jquery, xregexp.js
 LICENSE+=" MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
 IUSE="doc sqlite test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Michał Górny
commit: 93061d7af7ead16da9996a11ffd28b47d56f8c89
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:10:52 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93061d7a

dev-python/fasteners: Mark ALLARCHES

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

 dev-python/fasteners/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/fasteners/metadata.xml 
b/dev-python/fasteners/metadata.xml
index 80ab359f0e1..3e8fe2e7a5f 100644
--- a/dev-python/fasteners/metadata.xml
+++ b/dev-python/fasteners/metadata.xml
@@ -9,6 +9,7 @@
pyt...@gentoo.org
Python

+   

fasteners
harlowja/fasteners



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

2020-07-08 Thread Michał Górny
commit: b5790976649a50d77026226ee0fc64344b8df81e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:07:35 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5790976

dev-python/dominate: Mark ALLARCHES

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

 dev-python/dominate/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/dominate/metadata.xml b/dev-python/dominate/metadata.xml
index 3df54468a06..1ab70aebdbb 100644
--- a/dev-python/dominate/metadata.xml
+++ b/dev-python/dominate/metadata.xml
@@ -13,4 +13,5 @@

Dominate is a Python library for creating and manipulating HTML 
documents using an elegant DOM API. It allows you to write HTML pages in pure 
Python very concisely, which eliminate the need to learn another template 
language, and to take advantage of the more powerful features of Python. 

+   
 



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

2020-07-08 Thread Michał Górny
commit: e33dd4a2f8a947ec8ab46f168568d7cf2ccbcf1f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:14:49 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e33dd4a2

dev-python/fido2: Mark ALLARCHES

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

 dev-python/fido2/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/fido2/metadata.xml b/dev-python/fido2/metadata.xml
index b0754694d80..c9ccdc3b158 100644
--- a/dev-python/fido2/metadata.xml
+++ b/dev-python/fido2/metadata.xml
@@ -10,6 +10,7 @@
   device over USB as well as verifying attestation and assertion
   signatures.
 
+
 
   Yubico/python-fido2
 



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

2020-07-08 Thread Michał Górny
commit: 9d294afdadceef707c19f38193abca7a76e3a94e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:15:19 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d294afd

dev-python/dominate: Stabilize 2.5.1 ALLARCHES, #731368

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

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

diff --git a/dev-python/dominate/dominate-2.5.1.ebuild 
b/dev-python/dominate/dominate-2.5.1.ebuild
index 5ad077b8e22..d848b192595 100644
--- a/dev-python/dominate/dominate-2.5.1.ebuild
+++ b/dev-python/dominate/dominate-2.5.1.ebuild
@@ -12,6 +12,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 distutils_enable_tests pytest



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

2020-07-08 Thread Michał Górny
commit: d93529bb33b78fddf23f213987cf7a8056cbdfbd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:15:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93529bb

dev-python/ecdsa: Stabilize 0.15 ALLARCHES, #731370

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

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

diff --git a/dev-python/ecdsa/ecdsa-0.15.ebuild 
b/dev-python/ecdsa/ecdsa-0.15.ebuild
index b52fc50c087..3e72b35df6a 100644
--- a/dev-python/ecdsa/ecdsa-0.15.ebuild
+++ b/dev-python/ecdsa/ecdsa-0.15.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint"
 
 RDEPEND="
$(python_gen_cond_dep '



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

2020-07-08 Thread Michał Górny
commit: 1fb30dca4c00b32a432d71b3e2980ffca69382a4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 20:15:22 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 20:16:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb30dca

dev-python/fido2: Stabilize 0.8.1 ALLARCHES, #731374

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

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

diff --git a/dev-python/fido2/fido2-0.8.1.ebuild 
b/dev-python/fido2/fido2-0.8.1.ebuild
index 84a0ac3d31f..d59bb437ce4 100644
--- a/dev-python/fido2/fido2-0.8.1.ebuild
+++ b/dev-python/fido2/fido2-0.8.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar
 
 LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Lars Wendler
commit: 2c4b01da87314e9691b90ad508cda414e29d11ed
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jul  8 20:02:49 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jul  8 20:03:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4b01da

media-libs/lcms: Fixed installation with USE="doc"

Closes: https://bugs.gentoo.org/731788
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Lars Wendler  gentoo.org>

 media-libs/lcms/lcms-2.11.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/media-libs/lcms/lcms-2.11.ebuild b/media-libs/lcms/lcms-2.11.ebuild
index f414c375f3d..b9d453d9a49 100644
--- a/media-libs/lcms/lcms-2.11.ebuild
+++ b/media-libs/lcms/lcms-2.11.ebuild
@@ -42,8 +42,5 @@ multilib_src_configure() {
 multilib_src_install_all() {
find "${ED}" -type f -name "*.la" -delete || die
 
-   if use doc; then
-   docinto pdf
-   dodoc doc/*.pdf
-   fi
+   use doc && dodoc doc/*.odt
 }



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/wdisplays/, gui-apps/wdisplays/files/

2020-07-08 Thread Matthias Coppens
commit: 153064863b4cee79391fef5bf4c192b449a33cc6
Author: Matthias Coppens  gmail  com>
AuthorDate: Wed Jul  8 19:54:09 2020 +
Commit: Matthias Coppens  gmail  com>
CommitDate: Wed Jul  8 19:55:06 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=15306486

gui-apps/wdisplays: Fix wdisplays not starting

This fixes upstream bug
https://github.com/cyclopsian/wdisplays/issues/18

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Matthias Coppens  gmail.com>

 .../wdisplays/files/wdisplays-1.0-pull20.patch | 49 ++
 ...displays-1.0.ebuild => wdisplays-1.0-r1.ebuild} |  2 +
 2 files changed, 51 insertions(+)

diff --git a/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch 
b/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch
new file mode 100644
index 000..607c69b
--- /dev/null
+++ b/gui-apps/wdisplays/files/wdisplays-1.0-pull20.patch
@@ -0,0 +1,49 @@
+From 657e2966e556c78f121075c69fe1ba8d2b4dcb73 Mon Sep 17 00:00:00 2001
+From: Simon Ser 
+Date: Wed, 8 Jul 2020 11:57:35 +0200
+Subject: [PATCH] Use correct versions when binding globals
+
+Changes to protocols aren't forward-compatible. It's not possible to use
+version n+1 when a client has been designed to work with version n. For
+instance in wlr-screencopy v5 a new event has been added. Binding to
+version 5 without upgrading the client leads to libwayland errors
+because libwayland doesn't know how to handle the event.
+
+The client needs to maintain its own version requirements.
+
+Closes: https://github.com/cyclopsian/wdisplays/issues/18
+---
+ src/outputs.c | 10 +-
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/src/outputs.c b/src/outputs.c
+index 9ebf7e5..40410ec 100644
+--- a/src/outputs.c
 b/src/outputs.c
+@@ -534,20 +534,20 @@ static void registry_handle_global(void *data, struct 
wl_registry *registry,
+ 
+   if (strcmp(interface, zwlr_output_manager_v1_interface.name) == 0) {
+ state->output_manager = wl_registry_bind(registry, name,
+-_output_manager_v1_interface, version);
++_output_manager_v1_interface, 1);
+ zwlr_output_manager_v1_add_listener(state->output_manager,
+ _manager_listener, state);
+   } else if (strcmp(interface, zxdg_output_manager_v1_interface.name) == 0) {
+ state->xdg_output_manager = wl_registry_bind(registry, name,
+-_output_manager_v1_interface, version);
++_output_manager_v1_interface, 3);
+   } else if(strcmp(interface, zwlr_screencopy_manager_v1_interface.name) == 
0) {
+ state->copy_manager = wl_registry_bind(registry, name,
+-_screencopy_manager_v1_interface, version);
++_screencopy_manager_v1_interface, 1);
+   } else if(strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) {
+ state->layer_shell = wl_registry_bind(registry, name,
+-_layer_shell_v1_interface, version);
++_layer_shell_v1_interface, 1);
+   } else if(strcmp(interface, wl_shm_interface.name) == 0) {
+-state->shm = wl_registry_bind(registry, name, _shm_interface, version);
++state->shm = wl_registry_bind(registry, name, _shm_interface, 1);
+   }
+ }
+ 
+

diff --git a/gui-apps/wdisplays/wdisplays-1.0.ebuild 
b/gui-apps/wdisplays/wdisplays-1.0-r1.ebuild
similarity index 92%
rename from gui-apps/wdisplays/wdisplays-1.0.ebuild
rename to gui-apps/wdisplays/wdisplays-1.0-r1.ebuild
index 39f2b9d..88076f1 100644
--- a/gui-apps/wdisplays/wdisplays-1.0.ebuild
+++ b/gui-apps/wdisplays/wdisplays-1.0-r1.ebuild
@@ -25,3 +25,5 @@ LICENSE="GPL-3+"
 SLOT="0"
 
 KEYWORDS="~amd64"
+
+PATCHES=("${FILESDIR}/${P}-pull20.patch")



[gentoo-commits] repo/gentoo:master commit in: net-ftp/proftpd/

2020-07-08 Thread Sam James
commit: 6c40023fa8ab67c4e8dbf977f52c9de33fb726f2
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:18 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c40023f

net-ftp/proftpd: arm stable (bug #730898)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 net-ftp/proftpd/proftpd-1.3.7_rc4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/proftpd/proftpd-1.3.7_rc4-r1.ebuild 
b/net-ftp/proftpd/proftpd-1.3.7_rc4-r1.ebuild
index a10e5b78210..9ba7f45fe51 100644
--- a/net-ftp/proftpd/proftpd-1.3.7_rc4-r1.ebuild
+++ b/net-ftp/proftpd/proftpd-1.3.7_rc4-r1.ebuild
@@ -26,7 +26,7 @@ SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86"
 IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse dso 
dynmasq exec ifsession ifversion ident ipv6
kerberos ldap libressl log-forensic memcache msg mysql ncurses nls pam 
+pcre postgres qos radius
ratio readme rewrite selinux sftp shaper sitemisc snmp sodium softquota 
sqlite ssl tcpd test unique-id vroot"



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

2020-07-08 Thread Sam James
commit: 51d683186a26d5eb7ea84dd9ea7e811eacc4876c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d68318

dev-perl/Convert-ASN1: arm stable (bug #716680)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild 
b/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild
index 71e9c2a3dc2..004519a30ac 100644
--- a/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild
+++ b/dev-perl/Convert-ASN1/Convert-ASN1-0.270.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Standard en/decode of ASN.1 structures"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Sam James
commit: 3db6f665c2d92a506a19368429f86075450ef5fc
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:39 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3db6f665

dev-libs/nettle: arm64 stable (bug #730736)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 dev-libs/nettle/nettle-3.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/nettle/nettle-3.6-r2.ebuild 
b/dev-libs/nettle/nettle-3.6-r2.ebuild
index 1395b5de8f4..bc9dee89d8a 100644
--- a/dev-libs/nettle/nettle-3.6-r2.ebuild
+++ b/dev-libs/nettle/nettle-3.6-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/8-6" # subslot = libnettle - libhogweed soname version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+asm doc +gmp static-libs test cpu_flags_x86_aes cpu_flags_arm_neon 
cpu_flags_x86_sha"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Sam James
commit: 2e24c5f123ae3b857ae82ae8e9b2a071625fb82a
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e24c5f1

dev-libs/univalue: arm stable (bug #714016)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-libs/univalue/univalue-1.0.5.ebuild 
b/dev-libs/univalue/univalue-1.0.5.ebuild
index f9272c67e29..5b2a7443679 100644
--- a/dev-libs/univalue/univalue-1.0.5.ebuild
+++ b/dev-libs/univalue/univalue-1.0.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://codeload.github.com/jgarzik/${PN}/tar.gz/v${PV} -> ${P}.tgz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 src_prepare() {



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

2020-07-08 Thread Sam James
commit: 55dc4b4a883b8f18307134aa7f51df8565fa376a
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:45 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55dc4b4a

dev-python/setuptools: arm stable (bug #730656)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 dev-python/setuptools/setuptools-46.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/setuptools/setuptools-46.4.0-r1.ebuild 
b/dev-python/setuptools/setuptools-46.4.0-r1.ebuild
index 7a1e7a2fec0..1c74879b7e1 100644
--- a/dev-python/setuptools/setuptools-46.4.0-r1.ebuild
+++ b/dev-python/setuptools/setuptools-46.4.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~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 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Sam James
commit: 1cfd534422591038b3ff23d3ca4e801b4b4d969c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cfd5344

dev-python/zope-interface: arm stable (bug #730952)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 dev-python/zope-interface/zope-interface-5.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-interface/zope-interface-5.1.0.ebuild 
b/dev-python/zope-interface/zope-interface-5.1.0.ebuild
index 17773b4666b..debe43f3082 100644
--- a/dev-python/zope-interface/zope-interface-5.1.0.ebuild
+++ b/dev-python/zope-interface/zope-interface-5.1.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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 ~m68k ~mips ppc ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
 BDEPEND="



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

2020-07-08 Thread Sam James
commit: e3ae5da928485a258c6ba3d8c90defc519942537
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:40 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3ae5da9

sys-apps/help2man: arm64 stable (bug #730538)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 sys-apps/help2man/help2man-1.47.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/help2man/help2man-1.47.15.ebuild 
b/sys-apps/help2man/help2man-1.47.15.ebuild
index 22d1b622e3d..0600e090e0c 100644
--- a/sys-apps/help2man/help2man-1.47.15.ebuild
+++ b/sys-apps/help2man/help2man-1.47.15.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="nls"
 
 RDEPEND="dev-lang/perl



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

2020-07-08 Thread Sam James
commit: e0bab95efadfccc731dfd5e2207ad13cb822f04c
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul  8 19:46:43 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul  8 19:46:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0bab95e

net-fs/nfs-utils: arm stable (bug #723950)

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Sam James  gentoo.org>

 net-fs/nfs-utils/nfs-utils-2.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild
index 0d002ca4c23..d9ecb1a4b1d 100644
--- a/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild
+++ b/net-fs/nfs-utils/nfs-utils-2.4.3.ebuild
@@ -14,7 +14,7 @@ if [[ "${PV}" = *_rc* ]] ; then
S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
 else
SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
-   KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: dev-python/dj-database-url/

2020-07-08 Thread Michał Górny
commit: ba75a52291f82878f8d7ad0d8b24d63a55ec2047
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:27:38 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:27:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba75a522

dev-python/dj-database-url: Mark ALLARCHES

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

 dev-python/dj-database-url/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/dj-database-url/metadata.xml 
b/dev-python/dj-database-url/metadata.xml
index 8dd62fb8e9c..85f9085eb45 100644
--- a/dev-python/dj-database-url/metadata.xml
+++ b/dev-python/dj-database-url/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 kennethreitz/dj-database-url
 dj-database-url



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

2020-07-08 Thread Michał Górny
commit: f776584d6e40f74af62d692ebde42ad324166679
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:26:41 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:26:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f776584d

dev-python/botocore: Mark ALLARCHES

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

 dev-python/botocore/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/botocore/metadata.xml b/dev-python/botocore/metadata.xml
index 544a8e107e4..e73c2fcf118 100644
--- a/dev-python/botocore/metadata.xml
+++ b/dev-python/botocore/metadata.xml
@@ -17,6 +17,7 @@
pyt...@gentoo.org
Python

+   

boto/botocore
botocore



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

2020-07-08 Thread Michał Górny
commit: 3446f57fc5c869dbd219a4c761bf7421f713d8af
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:37:44 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:37:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3446f57f

dev-python/botocore: Stabilize 1.16.26 ALLARCHES, #731334

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

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

diff --git a/dev-python/botocore/botocore-1.16.26.ebuild 
b/dev-python/botocore/botocore-1.16.26.ebuild
index c08c6f6ff89..5c5377a0cea 100644
--- a/dev-python/botocore/botocore-1.16.26.ebuild
+++ b/dev-python/botocore/botocore-1.16.26.ebuild
@@ -16,7 +16,7 @@ if [[ "${PV}" == "" ]]; then
inherit git-r3
 else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 fi
 
 RDEPEND="



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

2020-07-08 Thread Michał Górny
commit: 7a451b4bf3539609449938d1473d28f0b80124fa
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:37:45 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:37:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a451b4b

dev-python/boto3: Stabilize 1.13.26 ALLARCHES, #731334

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

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

diff --git a/dev-python/boto3/boto3-1.13.26.ebuild 
b/dev-python/boto3/boto3-1.13.26.ebuild
index f45344d9732..388f7161365 100644
--- a/dev-python/boto3/boto3-1.13.26.ebuild
+++ b/dev-python/boto3/boto3-1.13.26.ebuild
@@ -16,7 +16,7 @@ if [[ "${PV}" == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 fi
 
 RDEPEND="



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

2020-07-08 Thread Michał Górny
commit: d0b5763cdddce2e1056d576f0bbee00184de753d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:37:42 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:37:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0b5763c

sys-devel/gettext: Stabilize 0.20.2 amd64, #730638

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

 sys-devel/gettext/gettext-0.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gettext/gettext-0.20.2.ebuild 
b/sys-devel/gettext/gettext-0.20.2.ebuild
index a3e22852d4e..f7bd17c7861 100644
--- a/sys-devel/gettext/gettext-0.20.2.ebuild
+++ b/sys-devel/gettext/gettext-0.20.2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 # so put that license behind USE=cxx.
 LICENSE="GPL-3+ cxx? ( LGPL-2.1+ )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86"
 IUSE="acl -cvs +cxx doc emacs git java ncurses nls openmp static-libs"
 
 # only runtime goes multilib



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

2020-07-08 Thread Michał Górny
commit: a84d1439f6c87530849b891bfb506a95f1cf27fc
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:37:43 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:37:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84d1439

dev-python/aiohttp: Stabilize 3.6.2 amd64, #731312

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

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

diff --git a/dev-python/aiohttp/aiohttp-3.6.2.ebuild 
b/dev-python/aiohttp/aiohttp-3.6.2.ebuild
index cd2cfb9da4f..a780dad283a 100644
--- a/dev-python/aiohttp/aiohttp-3.6.2.ebuild
+++ b/dev-python/aiohttp/aiohttp-3.6.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2020-07-08 Thread Michał Górny
commit: 725b2eb11cde76f3feef94ec6dcac96296d621f3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:26:49 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:26:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725b2eb1

dev-python/boto3: Mark ALLARCHES

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

 dev-python/boto3/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/boto3/metadata.xml b/dev-python/boto3/metadata.xml
index 245721430de..54ceb365c5f 100644
--- a/dev-python/boto3/metadata.xml
+++ b/dev-python/boto3/metadata.xml
@@ -17,6 +17,7 @@
pyt...@gentoo.org
Python

+   

boto/boto3




[gentoo-commits] repo/gentoo:master commit in: dev-python/dj-database-url/

2020-07-08 Thread Michał Górny
commit: 8d21edbf566394a7a4b97f017d407b30d8f8d3c3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  8 19:37:46 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jul  8 19:37:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d21edbf

dev-python/dj-database-url: Stabilize 0.5.0 ALLARCHES, #731362

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

 dev-python/dj-database-url/dj-database-url-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild 
b/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild
index 7242cf18e32..87cf652019e 100644
--- a/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild
+++ b/dev-python/dj-database-url/dj-database-url-0.5.0.ebuild
@@ -17,6 +17,6 @@ SRC_URI="
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 
 distutils_enable_tests unittest



[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-roc/

2020-07-08 Thread Craig Andrews
commit: f1554666b19dfff3e73dbab90c6220e518fb4df9
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed Jul  8 16:30:19 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Jul  8 18:34:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1554666

sys-devel/llvm-roc: 3.6.0 version bump

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

 sys-devel/llvm-roc/Manifest  |  1 +
 sys-devel/llvm-roc/llvm-roc-3.6.0.ebuild | 57 
 2 files changed, 58 insertions(+)

diff --git a/sys-devel/llvm-roc/Manifest b/sys-devel/llvm-roc/Manifest
index 518fa846802..ba85c10f7bb 100644
--- a/sys-devel/llvm-roc/Manifest
+++ b/sys-devel/llvm-roc/Manifest
@@ -18,3 +18,4 @@ DIST llvm-roc-ocl-3.1.0.tar.gz 120981974 BLAKE2B 
cbefc7b087c8df81ee093aeebff292c
 DIST llvm-rocm-ocl-3.3.0.tar.gz 115703174 BLAKE2B 
4695f07317d625bb285470cc906489f22a5eb023b4337945c1d7b4237509d3481b9f9369611dc57f4e8daa8a70c7cdd8a9b0df4842cc1424e301a5366f458727
 SHA512 
896afa458c7527de469e6ee891b22be6ef351858c5d0c3da57bcd6d1d85667256b3ab3fe64167cc26536dbcfd95e1146edff9c24daf5e1c96619748d9278
 DIST llvm-rocm-ocl-3.5.0.tar.gz 116948115 BLAKE2B 
067ce3cef03b714059e6720269c864d8cffa8687040ae9a8607c6207d00a6a4d8e31099aba7ff09144bf1ded809b842fe856103346b9b06eb9bcd393397fe63f
 SHA512 
04808724c7ede3e21485153d3ccf8050b4f2ceae356c4c6451e36da714ed57ac3578f1485d922b747e3c1f654cc9f27544800f869bef24efa80f4e1b98afbbaf
 DIST llvm-rocm-ocl-3.5.1.tar.gz 116945831 BLAKE2B 
cab1023077a9425d158a4974b8b7baa12e15dd69ced4ea58a4f388c8057e9f6d57020e236c8f0903d5633fa73c799646f70493193cf36a760e8b658f9745ffb3
 SHA512 
cabc507d560c980e38214441f628e773d6621f72001fbc7d37516d1fa3d361f11919a8bf7903df60914e6f4ad6cf4993e44d121c5b6711b6ac69052d75974ab1
+DIST llvm-rocm-ocl-3.6.0.tar.gz 116957974 BLAKE2B 
b078af4a924525ff5654753a26f67168ff291cdcc3291b97a86a99975cb8ceaea44e1f25db917fc6e082337b16acd961818d59a3079dcb7353abed5f2ef17d1b
 SHA512 
769f96869cd05f0b146422fc9b200cec08898a08d0d6032c1347720bb7dcee94600b1f8131b9e0e7e58943d0adfa6c02d214e100f2bc1f1937273c6861e43e92

diff --git a/sys-devel/llvm-roc/llvm-roc-3.6.0.ebuild 
b/sys-devel/llvm-roc/llvm-roc-3.6.0.ebuild
new file mode 100644
index 000..616e05f5cb9
--- /dev/null
+++ b/sys-devel/llvm-roc/llvm-roc-3.6.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Radeon Open Compute llvm,lld,clang"
+HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm/;
+SRC_URI="https://github.com/RadeonOpenCompute/llvm-project/archive/rocm-${PV}.tar.gz
 -> llvm-rocm-ocl-${PV}.tar.gz"
+
+LICENSE="UoI-NCSA rc BSD public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="debug"
+
+RDEPEND="virtual/cblas
+   dev-libs/rocr-runtime"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/llvm-project-rocm-${PV}/llvm"
+
+CMAKE_BUILD_TYPE=RelWithDebInfo
+
+src_prepare() {
+   cd "${WORKDIR}/llvm-project-rocm-${PV}" || die
+   eapply "${FILESDIR}/${PN}-3.0.0-add_libraries.patch"
+   eapply_user
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/roc"
+   -DLLVM_ENABLE_PROJECTS="clang;lld"
+   -DLLVM_TARGETS_TO_BUILD="AMDGPU;X86"
+   -DLLVM_BUILD_DOCS=NO
+   -DLLVM_ENABLE_OCAMLDOC=OFF
+   -DLLVM_ENABLE_SPHINX=NO
+   -DLLVM_ENABLE_DOXYGEN=OFF
+   -DLLVM_INSTALL_UTILS=ON
+   -DLLVM_VERSION_SUFFIX=roc
+   -DOCAMLFIND=NO
+   )
+
+   use debug || local -x CPPFLAGS="${CPPFLAGS} -DNDEBUG"
+
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+   cat > "99${PN}" <<-EOF
+   LDPATH="${EROOT}/usr/lib/llvm/roc/lib"
+   EOF
+   doenvd "99${PN}"
+}



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

2020-07-08 Thread Craig Andrews
commit: f602daf244d01c47e2aeb0e5392aa368751e9d2a
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed Jul  8 18:33:37 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Jul  8 18:34:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f602daf2

www-apache/mod_h2: 1.15.12 version bump

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

 www-apache/mod_h2/Manifest  |  1 +
 www-apache/mod_h2/mod_h2-1.15.12.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/www-apache/mod_h2/Manifest b/www-apache/mod_h2/Manifest
index a204e0187c9..6f619aaa490 100644
--- a/www-apache/mod_h2/Manifest
+++ b/www-apache/mod_h2/Manifest
@@ -1,5 +1,6 @@
 DIST mod_h2-1.15.10.tar.gz 699783 BLAKE2B 
f4457128fc77048cc3f4c394892499e555f5335ab3165ee6426cc882694e250e2eace47e38c96d12673ceba8507ad699d4c2937e50ced33aab18f81861c0bf0e
 SHA512 
7050c216ebab05f240495dbeac86915cabee49f62a51b19d87b078469ab3733ca266cd16bd0a009e782c37d8090ccfefbb8043e1e75660f8adc7d4ecf72818e6
 DIST mod_h2-1.15.11.tar.gz 701334 BLAKE2B 
f6ae8a71be849af53fd6931fc66f801892f055d217fd280ac42ed157e4002c6d7c9f3c5bb849d6561bc84d235d844fd0af49a39deb003dc530e477e2d13ac8cf
 SHA512 
3fde7c2e4af25ae4e1ec3d0f9e824a68c6077953c4349b55f05712a53fff07cc615a7348b323264da75b791a18eb59cc32ca919d02b26a711b45d8cd97f92d6b
+DIST mod_h2-1.15.12.tar.gz 703071 BLAKE2B 
7b692614bf1d39b8941380c0be30247ed0df7eca7b974dd18b05a20c93a59863ea64edc4ec6c29d3e9b27f1e02ce2378a062898ccd366029825ff59715744e04
 SHA512 
a69ddc7427057cfb90863d536846c88f0a17140b3d8555c0d5cbd6a5790c5545bbc83e8a0fed5fd4968e36dd4a22a48be5c3783b83d5be50bdd5093650d89302
 DIST mod_h2-1.15.9.tar.gz 699712 BLAKE2B 
035cc7ec8df4727abdd2cb90dfd4c0e6c94dac8a3872122bd3160a594207b7b948278662e8bbe538f736d4981cf6dde3207951f10b0525281f4547603323b604
 SHA512 
3743d530d2c70577142745046ddcee227b0a8c5e6d42c96d26df71c8c6234ffa20d36fd176c4e8e81a26835669409afb17df018139a7cfebb04748a84a467191
 DIST mod_http2-1.15.7.tar.gz 1042030 BLAKE2B 
5252e15fbc71845db557d567daba63452df0693baad18f8b83f937adbd760f1fa931fbf663f1f5ec475760e75fc132fb0de63784e046092669b1d8fb44d96e9a
 SHA512 
effe0a8f41603865a9dceea6fa109a924e6f2f904a2a02ebf10a20e0315f248cfaf91d4b2a0d6168ee94fb0f4af2680a6992c43cc91b0bf47a13d739b4cf9228
 DIST mod_http2-1.15.8.tar.gz 1029471 BLAKE2B 
10dcbafeee8be71858f1eace6c65b31d4a06b9598ba0ed8dd0d191c6fa8eb0475e0b9bd9f52a09fdf3430b18c770f0cd41057e9661f252d11df0edab8189cb26
 SHA512 
47ee0ef6d5e6cdce8b5d35cdca107331378c3d3ccb6d7b6c36eea8e04dda3d5665233aa7834f122d2069d7c81a833bff08e3f0a279d4a5a0bd1ec6b366696fd3

diff --git a/www-apache/mod_h2/mod_h2-1.15.12.ebuild 
b/www-apache/mod_h2/mod_h2-1.15.12.ebuild
new file mode 100644
index 000..b158648fdb5
--- /dev/null
+++ b/www-apache/mod_h2/mod_h2-1.15.12.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit apache-module autotools
+
+MY_P="${PN/h2/http2}-${PV}"
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://github.com/icing/mod_h2.git;
+   inherit git-r3
+else
+   S="${WORKDIR}/${MY_P}"
+   SRC_URI="https://github.com/icing/mod_h2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="HTTP/2 module for Apache"
+HOMEPAGE="https://github.com/icing/mod_h2;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="ssl"
+
+RDEPEND=">=net-libs/nghttp2-1.0
+   >=www-servers/apache-2.4.20[-apache2_modules_http2,ssl?]"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${P}"
+
+need_apache2_4
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_compile() {
+   default
+}
+
+src_install() {
+   default
+
+   APACHE2_MOD_DEFINE="HTTP2"
+   insinto "${APACHE_MODULES_CONFDIR}"
+   newins "${FILESDIR}/mod_http2.conf" "41_mod_http2.conf"
+}



  1   2   3   4   >