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

2020-06-10 Thread Michał Górny
commit: 305926501c7f339724294b88060e8dee973a340d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 06:01:04 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 06:01:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30592650

dev-python/backcall: Bump to 0.2.0

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

 dev-python/backcall/Manifest  |  1 +
 dev-python/backcall/backcall-0.2.0.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/dev-python/backcall/Manifest b/dev-python/backcall/Manifest
index 5c4ad01d476..6df98ce51cb 100644
--- a/dev-python/backcall/Manifest
+++ b/dev-python/backcall/Manifest
@@ -1 +1,2 @@
 DIST backcall-0.1.0.tar.gz 9690 BLAKE2B 
975944b508a4488cd78620b2f6efa8b0ebd7404966db5a53e409000c11641c979abb269289d3e570d01dc50961c881fe80ebbc2c6b79a01ce563d4e3f855af63
 SHA512 
359c483fbc8998fc2420daee2a6af7566c47fb03f64e465aa226589a2f98a4b219ab5e5b90e5f677087827a1ac658c02ec3062e9ffe9ac1ebfd9db3bb40339cd
+DIST backcall-0.2.0.tar.gz 18041 BLAKE2B 
67f9ac96d26b368972a5749775a70c497b5705b37d45ba7f64c1259be776cc7f4c9d78ae51da9c1e9e46521d33bf511790675688feef88a68d25ae30cd79612d
 SHA512 
7f086121c485c0ea4bc6935e7d116c8b14ff44ff6001a49665d0a698b6cf9a809823b9bca634a78d92cf40656f953dbac0132241327a5fa6be0ea685ff63636e

diff --git a/dev-python/backcall/backcall-0.2.0.ebuild 
b/dev-python/backcall/backcall-0.2.0.ebuild
new file mode 100644
index 000..75f09c04626
--- /dev/null
+++ b/dev-python/backcall/backcall-0.2.0.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=no
+inherit distutils-r1
+
+DESCRIPTION="Specifications for callback functions passed in to an API"
+HOMEPAGE="https://pypi.org/project/backcall/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+
+distutils_enable_tests pytest



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

2020-06-10 Thread Michał Górny
commit: f98144fc46bc93d25acb728dfc2c91fad61b7382
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 05:57:50 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 05:57:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f98144fc

dev-python/nbconvert: Backport inkscape-1+ fix

Thanks to sam_c for finding out.

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

 .../files/nbconvert-5.6.1-inkscape-1.patch | 40 ++
 dev-python/nbconvert/nbconvert-5.6.1.ebuild|  4 +++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch 
b/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch
new file mode 100644
index 000..06e8d06c935
--- /dev/null
+++ b/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch
@@ -0,0 +1,40 @@
+From 61757ce936ab37855a5289d31ef59ef898061bcf Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= 
+Date: Sun, 3 May 2020 15:41:07 +0200
+Subject: [PATCH] Fix CLI options given to Inkscape 1.0rc1+
+
+Fixes https://github.com/jupyter/nbconvert/issues/1246
+---
+ nbconvert/preprocessors/svg2pdf.py| 7 ---
+ nbconvert/preprocessors/tests/test_svg2pdf.py | 2 +-
+ 2 files changed, 5 insertions(+), 4 deletions(-)
+
+diff --git a/nbconvert/preprocessors/svg2pdf.py 
b/nbconvert/preprocessors/svg2pdf.py
+index d4c48af6..af6a7dea 100644
+--- a/nbconvert/preprocessors/svg2pdf.py
 b/nbconvert/preprocessors/svg2pdf.py
+@@ -76,10 +76,11 @@ def _inkscape_version_default(self):
+ @default('command')
+ def _command_default(self):
+ major_verison = self.inkscape_version.split('.')[0]
+-export_option = '--export-file' if int(major_verison) > 0 else 
'--export-pdf'
++export_option = ' --export-filename' if int(major_verison) > 0 else ' 
--export-pdf'
++gui_option = '' if int(major_verison) > 0 else ' --without-gui'
+ 
+-return '{inkscape} --without-gui {export_option}='.format(
+-inkscape=self.inkscape, export_option=export_option
++return '{inkscape}{gui_option}{export_option}='.format(
++inkscape=self.inkscape, export_option=export_option, 
gui_option=gui_option
+ ) + '"{to_filename}" "{from_filename}"'
+ 
+ inkscape = Unicode(help="The path to Inkscape, if 
necessary").tag(config=True)
+diff --git a/nbconvert/preprocessors/tests/test_svg2pdf.py 
b/nbconvert/preprocessors/tests/test_svg2pdf.py
+index 5e13b282..d9ccec8c 100644
+--- a/nbconvert/preprocessors/tests/test_svg2pdf.py
 b/nbconvert/preprocessors/tests/test_svg2pdf.py
+@@ -91,4 +91,4 @@ def test_inkscape_pre_v1_command(self):
+ 
+ def test_inkscape_v1_command(self):
+ preprocessor = self.build_preprocessor(inkscape='fake-inkscape', 
inkscape_version='1.0beta2')
+-self.assertEquals(preprocessor.command, 'fake-inkscape --without-gui 
--export-file="{to_filename}" "{from_filename}"')
++self.assertEquals(preprocessor.command, 'fake-inkscape 
--export-filename="{to_filename}" "{from_filename}"')

diff --git a/dev-python/nbconvert/nbconvert-5.6.1.ebuild 
b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
index 64b91a7af87..c2041fa935c 100644
--- a/dev-python/nbconvert/nbconvert-5.6.1.ebuild
+++ b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
@@ -44,6 +44,10 @@ distutils_enable_sphinx docs \
dev-python/{ipython,jupyter_client,nbsphinx,sphinx_rtd_theme}
 distutils_enable_tests pytest
 
+PATCHES=(
+   "${FILESDIR}"/${P}-inkscape-1.patch
+)
+
 python_test() {
distutils_install_for_testing bdist_egg
cd "${TEST_DIR}"/lib || die



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

2020-06-10 Thread Michał Górny
commit: 0df2a7212f237067ba7cb8dd8df8489fe51060ba
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 06:35:06 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 06:42:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df2a721

dev-python/nbconvert: Fix inkscape patch

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

 .../files/nbconvert-5.6.1-inkscape-1.patch | 169 ++---
 1 file changed, 144 insertions(+), 25 deletions(-)

diff --git a/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch 
b/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch
index 06e8d06c935..1f997a3c3a3 100644
--- a/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch
+++ b/dev-python/nbconvert/files/nbconvert-5.6.1-inkscape-1.patch
@@ -1,40 +1,159 @@
-From 61757ce936ab37855a5289d31ef59ef898061bcf Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= 
-Date: Sun, 3 May 2020 15:41:07 +0200
-Subject: [PATCH] Fix CLI options given to Inkscape 1.0rc1+
-
-Fixes https://github.com/jupyter/nbconvert/issues/1246

- nbconvert/preprocessors/svg2pdf.py| 7 ---
- nbconvert/preprocessors/tests/test_svg2pdf.py | 2 +-
- 2 files changed, 5 insertions(+), 4 deletions(-)
-
 diff --git a/nbconvert/preprocessors/svg2pdf.py 
b/nbconvert/preprocessors/svg2pdf.py
-index d4c48af6..af6a7dea 100644
+index aff14d9f..de51f3b8 100644
 --- a/nbconvert/preprocessors/svg2pdf.py
 +++ b/nbconvert/preprocessors/svg2pdf.py
-@@ -76,10 +76,11 @@ def _inkscape_version_default(self):
+@@ -1,4 +1,4 @@
+-"""Module containing a preprocessor that converts outputs in the notebook 
from 
++"""Module containing a preprocessor that converts outputs in the notebook from
+ one format to another.
+ """
+ 
+@@ -17,11 +17,7 @@ from traitlets import Unicode, default
+ 
+ from .convertfigures import ConvertFiguresPreprocessor
+ 
+-if sys.version_info >= (3,3):
+-from shutil import which
+-get_inkscape_path = which('inkscape')
+-else:
+-get_inkscape_path = None
++from shutil import which
+ 
+ 
+ INKSCAPE_APP = '/Applications/Inkscape.app/Contents/Resources/bin/inkscape'
+@@ -46,26 +42,49 @@ class SVG2PDFPreprocessor(ConvertFiguresPreprocessor):
+ def _to_format_default(self):
+ return 'application/pdf'
+ 
++inkscape_version = Unicode(
++help="""The version of inkscpae being used.
++
++This affects how the conversion command is run.
++"""
++).tag(config=True)
++
++@default('inkscape_version')
++def _inkscape_version_default(self):
++p = subprocess.Popen([self.inkscape, '--version'],
++stdout=subprocess.PIPE,
++stderr=subprocess.PIPE)
++output, _ = p.communicate()
++if p.returncode != 0:
++raise RuntimeError("Unable to find inkscape executable --version")
++return output.decode('utf-8').split(' ')[1]
++
+ command = Unicode(
+ help="""The command to use for converting SVG to PDF
+-
++
+ This string is a template, which will be formatted with the keys
+ to_filename and from_filename.
+-
++
+ The conversion call must read the SVG from {from_filename},
+ and write a PDF to {to_filename}.
+ """).tag(config=True)
+ 
  @default('command')
  def _command_default(self):
- major_verison = self.inkscape_version.split('.')[0]
--export_option = '--export-file' if int(major_verison) > 0 else 
'--export-pdf'
+-return self.inkscape + \
+-   ' --without-gui --export-pdf="{to_filename}" "{from_filename}"'
+-
++major_verison = self.inkscape_version.split('.')[0]
 +export_option = ' --export-filename' if int(major_verison) > 0 else ' 
--export-pdf'
 +gui_option = '' if int(major_verison) > 0 else ' --without-gui'
- 
--return '{inkscape} --without-gui {export_option}='.format(
--inkscape=self.inkscape, export_option=export_option
++
 +return '{inkscape}{gui_option}{export_option}='.format(
 +inkscape=self.inkscape, export_option=export_option, 
gui_option=gui_option
- ) + '"{to_filename}" "{from_filename}"'
- 
++) + '"{to_filename}" "{from_filename}"'
++
  inkscape = Unicode(help="The path to Inkscape, if 
necessary").tag(config=True)
+ @default('inkscape')
+ def _inkscape_default(self):
+-if get_inkscape_path is not None:
+-return get_inkscape_path 
++inkscape_path = which('inkscape')
++if inkscape_path is not None:
++return inkscape_path
+ if sys.platform == "darwin":
+ if os.path.isfile(INKSCAPE_APP):
+ return INKSCAPE_APP
+@@ -85,22 +104,22 @@ class SVG2PDFPreprocessor(ConvertFiguresPreprocessor):
+ Convert a single SVG figure to PDF.  Returns converted data.
+ """
+ 
+-#Work in a temporary directory
++# Work in a temporary 

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

2020-06-10 Thread Michał Górny
commit: e7a07cfd1bf2159af755e03cdd33d3e9f702aac7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 06:15:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 06:42:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a07cfd

dev-python/nbconvert: Remove doc

Doc building tries to write outside sandbox, not worth fixing.

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

 dev-python/nbconvert/nbconvert-5.6.1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/nbconvert/nbconvert-5.6.1.ebuild 
b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
index c2041fa935c..05780038add 100644
--- a/dev-python/nbconvert/nbconvert-5.6.1.ebuild
+++ b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
+IUSE="test"
 
 RDEPEND="
dev-python/bleach[${PYTHON_USEDEP}]
@@ -40,8 +40,6 @@ BDEPEND="
)
 "
 
-distutils_enable_sphinx docs \
-   dev-python/{ipython,jupyter_client,nbsphinx,sphinx_rtd_theme}
 distutils_enable_tests pytest
 
 PATCHES=(



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

2020-06-10 Thread Michał Górny
commit: cb688f0bcfa3ed22278e4e87403f1d01eec8fa92
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 06:38:58 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 06:42:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb688f0b

dev-python/nbconvert: Skip failing test

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

 dev-python/nbconvert/nbconvert-5.6.1.ebuild | 8 
 1 file changed, 8 insertions(+)

diff --git a/dev-python/nbconvert/nbconvert-5.6.1.ebuild 
b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
index 05780038add..31a5f90ec64 100644
--- a/dev-python/nbconvert/nbconvert-5.6.1.ebuild
+++ b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
@@ -46,6 +46,14 @@ PATCHES=(
"${FILESDIR}"/${P}-inkscape-1.patch
 )
 
+src_prepare() {
+   # assumes old inkscape output?
+   sed -i -e '/SVG\.ipynb/d' \
+   nbconvert/preprocessors/tests/test_execute.py || die
+
+   distutils-r1_src_prepare
+}
+
 python_test() {
distutils_install_for_testing bdist_egg
cd "${TEST_DIR}"/lib || die



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

2020-06-10 Thread Michał Górny
commit: e27b863638042ff30f21e4b87c12b64d4d0d992a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 06:07:54 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 06:42:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e27b8636

dev-python/nbsphinx: Bump to 0.7.0

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

 dev-python/nbsphinx/Manifest  |  1 +
 dev-python/nbsphinx/nbsphinx-0.7.0.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/nbsphinx/Manifest b/dev-python/nbsphinx/Manifest
index 527aa821ba6..6288fcad711 100644
--- a/dev-python/nbsphinx/Manifest
+++ b/dev-python/nbsphinx/Manifest
@@ -1,2 +1,3 @@
 DIST nbsphinx-0.2.14.tar.gz 98368 BLAKE2B 
2ce32043fd3371d54b1922f973b9f8b4fc1bd1ace05fb2ee4136ed759454ebc5b3ac34030156d15a72d8e58bd739e7a4bc458e2cb26b8f80e9498df47c857a7a
 SHA512 
263aaf8b466d83215251f6115fa6210bca69537d041336ec23d9caaad06653fe848914c2e01981461fbabb8f5e4881ca11a4a01aaccb07909de6b79e695602d6
 DIST nbsphinx-0.4.1.tar.gz 108928 BLAKE2B 
449ba009003c1de52057d558039255f80efc2d6979926bbe8757faf21139bdf6f0e7e96280f63ffcc0436f45d83efeb525bca0139018f345025b8dd25202bc12
 SHA512 
5c37d8cb48c82aa9ae865a27650aaa037cde2c06140672ae1245fd3ceafa3d40b0ccbc37ac67bd1688b228107b97d84fb8eced783d71f79f8da7505883cf2617
+DIST nbsphinx-0.7.0.tar.gz 129485 BLAKE2B 
0a11934cb53c5c20498abd1d189f26351ef088f7fd7972f7e1a4bd98e21ced330a600a2beb1a4976798e1ead1170f6322ff8b5f393c30cd85d33593720dcb57d
 SHA512 
2c8db730102e483b76bf899bb5fc1e34bb4ed817a65fad221ccc5ea7dc74c2a4f4b69398d01209a904f503acc7fae2c29ad701e6cc11ac30bae3a7e9bdd89357

diff --git a/dev-python/nbsphinx/nbsphinx-0.7.0.ebuild 
b/dev-python/nbsphinx/nbsphinx-0.7.0.ebuild
new file mode 100644
index 000..45662ca939f
--- /dev/null
+++ b/dev-python/nbsphinx/nbsphinx-0.7.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Jupyter Notebook Tools for Sphinx"
+HOMEPAGE="https://github.com/spatialaudio/nbsphinx/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/nbconvert[${PYTHON_USEDEP}]
+   dev-python/nbformat[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.8[${PYTHON_USEDEP}]
+   dev-python/traitlets[${PYTHON_USEDEP}]
+   "



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

2020-06-10 Thread Michał Górny
commit: 3039ee6b02de7b12e3ea4d9adb0af15c9baac337
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 06:04:46 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 06:42:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3039ee6b

dev-lang/python: Bump to 3.9.0b3

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

 dev-lang/python/Manifest  |   2 +
 dev-lang/python/python-3.9.0_beta3.ebuild | 323 ++
 2 files changed, 325 insertions(+)

diff --git a/dev-lang/python/Manifest b/dev-lang/python/Manifest
index ce7d88bd343..3d3748eeb84 100644
--- a/dev-lang/python/Manifest
+++ b/dev-lang/python/Manifest
@@ -7,6 +7,7 @@ DIST Python-3.8.3.tar.xz 17912964 BLAKE2B 
9c415823f70bad97936e0472fc53a1b7650cbf
 DIST Python-3.9.0a6.tar.xz 18202376 BLAKE2B 
32f04613a3b11341759eb98fd4b16edcb890a9ce19a4d5031aecdccd985a5462248fcd0e7bf478e2f23490ad85b36c760c14398f2b238e26038a476831f004d2
 SHA512 
edb71840347ab2b5e18b3a2b831a3d9a26e1af52de9b1c6c088ce2d20f8e96a22c87fc3677b62e49c91a00d8b531028bdc739f00fe220dbdeb343daf17829be4
 DIST Python-3.9.0b1.tar.xz 18443584 BLAKE2B 
156f128fccb045f7d367f3f7c4c8ba3dc5b0e232c551bc24ed3a8be8b2199a66cde3671d6b1c4b75286618ed7af81ae60bf7db4a05c6de7c799a5f5c48b2f2ac
 SHA512 
ed82ed2ef58940129d940b613c6495517741ebf3d6834b1e2498b294f1c4485d1cb180455d345937fe5a1da529a9df6278a17e7fe6aa5a4c6151745119b866bb
 DIST Python-3.9.0b2.tar.xz 18489152 BLAKE2B 
e72afe6bd3a338d313a226f9c4055973cb7fb5de5581df48cb48e62bd0762edc712c94eee01465eaf522b5926a0546383bba797f7a7d2dbe09ea01ada843b7f4
 SHA512 
adf444c2884eab3df3682a0af4f852c375868b6a9718c9fb87fe7419ec46371b1cbd499abae3f04f72d42b864b7ad86f7ae9890658b8ee75987f4cc675d97ab9
+DIST Python-3.9.0b3.tar.xz 18518204 BLAKE2B 
fa1707f0d55a83e739e9ad51979f8aff9720588a8a77b7ce8beb9ecf599955677758dec1551a0549b010f86c1f8fbc5915cef34d63097534d1c512c92fad5bd1
 SHA512 
c06a6b874fbce93ec37402034158a7bab44cab775d6da467eaddc1eb402663415f9d788e657a204f17dffe5fa6f379379f9215b5198ec5071565486b6f0e4a2a
 DIST python-gentoo-patches-2.7.17-r1.tar.xz 14708 BLAKE2B 
f6e25236a471649de122d0f29506f7a4f34044a568ead47a68980411d9722b761fe1f9d653d5edccb6978b65c8c1eecbef55f403b94f32b37c0ad68e061505a8
 SHA512 
ecdde5e38c6fe5e69691fb3a68c8f4f43da7857d4abaff763d3cf6ad864ba43c769c03b186b60f2736a1ffb1e3e4c9982715d1b8a99ff3f5740096153bb8a90f
 DIST python-gentoo-patches-2.7.18.tar.xz 15012 BLAKE2B 
f691e231c793bb8f11fb64c89b90e022af8e0fe0e28839822c2ae6214fdab6c6fd9c07466c4b5797d3964b7db09fd979597774fb7872dc674e8df59321b6bf95
 SHA512 
a2952b27bfc0a52f322b2f3e177cbe09fa288c9ca5967c13fb9c2d45d3e81033407e30e86bd258f0b3cfa2cef6eda5502bddb6390f9512a493d145d34e03
 DIST python-gentoo-patches-3.6.10-r1.tar.xz 15556 BLAKE2B 
3d4755a083172fc878d3454797a4a7fa809c7767b7f2ba0919b95076b8ecba62ac604a7db349d8dd71f83aa44d4580d0c433ae6cd2027078e7779cec79185ba2
 SHA512 
b361ff3fe9545bb59a7e85f179a094d58219be35d20cef83db02672d0a9a58fccfda62fbe8c2bf64250c4043b8517cbc2091380611c5f1e63bfac9ca7c4e47b0
@@ -17,3 +18,4 @@ DIST python-gentoo-patches-3.8.1-r2.tar.xz 10108 BLAKE2B 
02d3e2ae95b5cfa67c0ba4f
 DIST python-gentoo-patches-3.8.2-r1.tar.xz 16112 BLAKE2B 
9ae197a56bbd96afa11c4312c68ac030138773df22dedc3a3e6fb9e81b366d6522fb2c147946eb604a87d749cbea7e5e5eed8ae0e737294c0949a8c2791dd327
 SHA512 
00f31c3b7227dd443f05234fbb7744338ce687e1ea4d236a6b1d386d76082acb34259f59442018c9ace54e0004dea9ac822ae2a4470159b83d00112e258baff0
 DIST python-gentoo-patches-3.8.3.tar.xz 10704 BLAKE2B 
6fdd13139b1132313153af2de774abeca7c1fe9acb34a87e5d96875a4cbe8c22c201acbb11c15eeaf828493c32f6acd89e3b5d4012fa2c9d216da556aadb9f01
 SHA512 
6f67d77e8240983c0dd749620e5df81df5816b831032e190c82c8d73ea8a995daf2631640234a1350e483bd13276466457d110176612bfde3281d1b6a8bf97bb
 DIST python-gentoo-patches-3.9.0_alpha6.tar.xz 8916 BLAKE2B 
ca611dd96e6fca625def6affeb35daa1c869ffa3b84bd13d5cc2dff7ffe4e0aaf4a76b3ed35d4520fe64f1905a644ecc2dcd80259f88264adeff926d728df76e
 SHA512 
b3cd6619d998db8c828fc05eeba74d644ead60d34c279943725ea94ee9e5d45a07d481af62b8589336c55bb8baa23d6559aa57a73d11bf2364b6e9b839e0a4be
+DIST python-gentoo-patches-3.9.0b3.tar.xz 8592 BLAKE2B 
261dc9a5c7b370eb3f693f5bfb15562a5ee8b24b038db1b16571f096ff0d451ef8830c7f51db53366ebcf6e378dfab57e186f1789dc3ecc95e65595708f4428e
 SHA512 
4c630b1b15e752ae154bfc9d0f5c8a17ac02127f96ccf114469bb92d02fe7d2ac13acd2415bfe6af0169c823b4aec09e2d6886c031df8e8c809ccb94efa60b62

diff --git a/dev-lang/python/python-3.9.0_beta3.ebuild 
b/dev-lang/python/python-3.9.0_beta3.ebuild
new file mode 100644
index 000..8a98fd0b0c7
--- /dev/null
+++ b/dev-lang/python/python-3.9.0_beta3.ebuild
@@ -0,0 +1,323 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+WANT_LIBTOOL="none"
+
+inherit autotools check-reqs flag-o-matic pax-utils python-utils-r1 \
+   toolchain-funcs
+
+MY_P="Python-${PV/_beta/b}"
+PYVER=$(ver_cut 1-2)
+PATCHSET="python-gentoo-patches-3.9.0b3"
+

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

2020-06-10 Thread Michał Górny
commit: 89195cb4fc879e70215a7e7e41de89245e9920bb
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 07:01:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:01:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89195cb4

dev-python/widgetsnbextension: Keyword 3.5.1 arm64, #727622

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

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

diff --git a/dev-python/widgetsnbextension/widgetsnbextension-3.5.1.ebuild 
b/dev-python/widgetsnbextension/widgetsnbextension-3.5.1.ebuild
index 69de3c1..30a48ac6182 100644
--- a/dev-python/widgetsnbextension/widgetsnbextension-3.5.1.ebuild
+++ b/dev-python/widgetsnbextension/widgetsnbextension-3.5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="dev-python/notebook[${PYTHON_USEDEP}]"



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

2020-06-10 Thread Michał Górny
commit: 821571a2c4b182c446d9e0df2331447264a4fde8
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 07:01:28 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:01:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821571a2

dev-python/nbconvert: Keyword 5.6.1 arm64, #727622

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

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

diff --git a/dev-python/nbconvert/nbconvert-5.6.1.ebuild 
b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
index 31a5f90ec64..0a81b48e8e2 100644
--- a/dev-python/nbconvert/nbconvert-5.6.1.ebuild
+++ b/dev-python/nbconvert/nbconvert-5.6.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2020-06-10 Thread Miroslav Šulc
commit: d6c27bde2d48a768284adf8b53d39fe43bcb720d
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 07:18:59 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 07:18:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6c27bde

media-libs/lv2: removed obsolete 1.14.0-r2

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/lv2/Manifest |  1 -
 media-libs/lv2/lv2-1.14.0-r2.ebuild | 57 -
 2 files changed, 58 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 3f3b100127d..034ed6c8906 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,2 +1 @@
-DIST lv2-1.14.0.tar.bz2 386438 BLAKE2B 
e09e6c2b1bbf24d5896e7803b970fd8877a5b6a9ded0fcf294561c365d5f0b2e89503c0306b02dd956f7ac6ebd9df4ca0c0a17564ef3851443d81847dd41b261
 SHA512 
6991d848ed9f04a48ca3070efc15af83431f680aa8a8559a02b1666f7b8d43af8e089f78c3b14ad3345dac32fd1c8ad0faf3a3f56dddc07c6f0e0aeef4077498
 DIST lv2-1.16.0.tar.bz2 502116 BLAKE2B 
00b364311f61b1a9f251d8eb3e27b66d4a59e313006df549dbb80fc6a1106b588bc59c7766910037ee093254d96e508f8538615666833b0c00c8282301bfe0e4
 SHA512 
ead6d590cded5dd7a548d6ffe0f2f9f8efadfa7bb9e8b4fa0aea6664ccdfbb3ca697514bddebe695a9442fba5b62714b5cd45c1bf7d0aaef12ffe50972c2d88c

diff --git a/media-libs/lv2/lv2-1.14.0-r2.ebuild 
b/media-libs/lv2/lv2-1.14.0-r2.ebuild
deleted file mode 100644
index 766c421292c..000
--- a/media-libs/lv2/lv2-1.14.0-r2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/;
-SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )"
-RDEPEND="${DEPEND}
-   $(python_gen_cond_dep '
-   dev-python/lxml[${PYTHON_MULTI_USEDEP}]
-   dev-python/pygments[${PYTHON_MULTI_USEDEP}]
-   dev-python/rdflib[${PYTHON_MULTI_USEDEP}]
-   ')
-   !

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

2020-06-10 Thread Miroslav Šulc
commit: 0bd96a16daa54a4cada963e0d1787bd721bf36d9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 06:57:13 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 06:57:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bd96a16

dev-libs/sord: removed obsolete 0.16.0-r1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-libs/sord/Manifest  |  1 -
 dev-libs/sord/sord-0.16.0-r1.ebuild | 54 -
 2 files changed, 55 deletions(-)

diff --git a/dev-libs/sord/Manifest b/dev-libs/sord/Manifest
index 1c3b93a6d65..ca0d396d228 100644
--- a/dev-libs/sord/Manifest
+++ b/dev-libs/sord/Manifest
@@ -1,2 +1 @@
-DIST sord-0.16.0.tar.bz2 316331 BLAKE2B 
27702600e48e14c75be18cc2b83705cdea1eed7158223ee685821ae80b18b61f5db82f804ee6a32236143cf8287ee875c3b3354edc6ccd1d4f25eaa3a04c785b
 SHA512 
e18c6de62f2cbffedd4c200f6452f4fd37f719aed764ccc1b77c8da04a0f3394d47e8b57e19eefd6d600770926f505fdfa5da91564bbff5f4ead49f1adaba249
 DIST sord-0.16.4.tar.bz2 510920 BLAKE2B 
e52b659e8070dc63188225741d1bfa31480214e47b53b4834dd0bccc5dcd688b93fc65c894b25540d89dbb20b04d8fd1952dcc65999c2ae7b650065c80b387dc
 SHA512 
98bb102cff5ab38d999c2f966597508076ccce54583a739810b0c28b4f3d570b2ef414605fc08361ecb11ac3184d3176f2f50c7c59c06cc50c3d522e26ed5576

diff --git a/dev-libs/sord/sord-0.16.0-r1.ebuild 
b/dev-libs/sord/sord-0.16.0-r1.ebuild
deleted file mode 100644
index e92452ab9cf..000
--- a/dev-libs/sord/sord-0.16.0-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE='threads(+)'
-inherit python-any-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="Library for storing RDF data in memory"
-HOMEPAGE="http://drobilla.net/software/sord/;
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
-IUSE="doc static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=dev-libs/serd-0.28.0-r1"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   doc? ( app-doc/doxygen )
-   virtual/pkgconfig"
-
-DOCS=( "AUTHORS" "NEWS" "README" )
-
-src_prepare() {
-   sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
-   default
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   waf-utils_src_configure \
-   --docdir=/usr/share/doc/${PF} \
-   $(multilib_native_usex doc --docs "") \
-   $(usex test --test "") \
-   $(usex static-libs --static "")
-}
-
-multilib_src_test() {
-   ./waf test || die
-}
-
-multilib_src_compile() {
-   waf-utils_src_compile
-   default
-}
-
-multilib_src_install() {
-   waf-utils_src_install
-   default
-}



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

2020-06-10 Thread Miroslav Šulc
commit: 1120910f52183d7afa8e8a5f096ba02ff75926eb
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 06:54:34 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 06:54:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1120910f

dev-libs/serd: removed obsolete 0.28.0-r1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-libs/serd/Manifest  |  1 -
 dev-libs/serd/serd-0.28.0-r1.ebuild | 53 -
 2 files changed, 54 deletions(-)

diff --git a/dev-libs/serd/Manifest b/dev-libs/serd/Manifest
index 18759f2d7bb..944242e8e45 100644
--- a/dev-libs/serd/Manifest
+++ b/dev-libs/serd/Manifest
@@ -1,2 +1 @@
-DIST serd-0.28.0.tar.bz2 371592 BLAKE2B 
143e858b5947cd52d01341ec7ff5fb36f98aefceda4e748b2a999c2e6d2c972b2f5d30053d8538f04f236597da93a595d0fabbfa4c667397e27d4c897458d1ee
 SHA512 
b25cc70af17ff821812ab2a70c2812c1713ff811a0f18fb5d5c54f3b67e0c68293aabedfacd687afe6b7acdfd81602ef81764d7e11bc0d933de738bc6d4fce3e
 DIST serd-0.30.2.tar.bz2 590337 BLAKE2B 
7b47f4f9940d9d2d37772c034c3f15801fff2bc8a058d30b40891ae900bdee3a631803e25505230a853e4beb083be4c854c627074eb89c0b23781da42fbde2d5
 SHA512 
b1e18ac883aac2a8146ee0e1de553ac2b512deba5307e5c9fa2733d9011ed0777d67790aa6527e73b3f11c9da0d8c9a98227457bb412897296f4464228cac0f7

diff --git a/dev-libs/serd/serd-0.28.0-r1.ebuild 
b/dev-libs/serd/serd-0.28.0-r1.ebuild
deleted file mode 100644
index f230bc9025c..000
--- a/dev-libs/serd/serd-0.28.0-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE='threads(+)'
-inherit python-any-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="Library for RDF syntax which supports reading and writing Turtle 
and NTriples"
-HOMEPAGE="http://drobilla.net/software/serd/;
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
-IUSE="doc static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   doc? ( app-doc/doxygen )"
-
-DOCS=( "AUTHORS" "NEWS" "README.md" )
-
-src_prepare() {
-   sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
-   default
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   waf-utils_src_configure \
-   --docdir=/usr/share/doc/${PF} \
-   $(multilib_native_usex doc --docs "") \
-   $(usex test --test "") \
-   $(usex static-libs --static "")
-}
-
-multilib_src_test() {
-   ./waf test || die
-}
-
-multilib_src_compile() {
-   waf-utils_src_compile
-   default
-}
-
-multilib_src_install() {
-   waf-utils_src_install
-   default
-}



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

2020-06-10 Thread Zac Medico
commit: 1c44915514fc5b80618b0b048979d230a4668e7d
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Jun 10 06:11:38 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Jun 10 06:31:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c449155

app-text/podofo: Bump to version 0.9.6_p20200526 (bug 717792)

Bug: https://bugs.gentoo.org/717792
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Zac Medico  gentoo.org>

 app-text/podofo/Manifest  |   1 +
 app-text/podofo/podofo-0.9.6_p20200526.ebuild | 141 ++
 2 files changed, 142 insertions(+)

diff --git a/app-text/podofo/Manifest b/app-text/podofo/Manifest
index 6f857daccf1..cf512cb436c 100644
--- a/app-text/podofo/Manifest
+++ b/app-text/podofo/Manifest
@@ -1 +1,2 @@
 DIST podofo-0.9.6_p20180715.tar.xz 747444 BLAKE2B 
96d90add6d290d6722cd7412fd75433f87303bac385964f0967b4f119db4962f6ddbd93b49af8454051f421d77de70ad7ea0f5b01a66eeb690a75dbeec256eff
 SHA512 
4c9b09c716128110b47d6a02f118eb80b6009e9e79dbc83ff804a57f0abc011b789de9287b68a6c1d6704ef386f8062a3a495408af8a832782f0bf0128190a1f
+DIST podofo-0.9.6_p20200526.tar.xz 752264 BLAKE2B 
52eb40a63e8462b6d1f975c76c2112b93ae98c19ad6cb65906bef018e99a3d92e26781cee9d4ef1c4de74779db7eca6589c320849be84b70c20d5c7d988c0a49
 SHA512 
7baa58c9a524ccc5aa954bd5fe891b9add8b8f4ec29e3ebbc1c8a467d2787e6c3f9e4652db08e50cb4c28a73691215947940634975e292ec01fb57e2e45efbe4

diff --git a/app-text/podofo/podofo-0.9.6_p20200526.ebuild 
b/app-text/podofo/podofo-0.9.6_p20200526.ebuild
new file mode 100644
index 000..058f8499ab0
--- /dev/null
+++ b/app-text/podofo/podofo-0.9.6_p20200526.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake-utils flag-o-matic multilib toolchain-funcs
+
+DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format"
+HOMEPAGE="https://sourceforge.net/projects/podofo/;
+SRC_URI="https://dev.gentoo.org/~zmedico/dist/podofo-0.9.6_p20200526.tar.xz;
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0/${PV%_*}"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="+boost idn libressl debug test +tools"
+RESTRICT="test"
+REQUIRED_USE="test? ( tools )"
+
+RDEPEND="dev-lang/lua:=
+   idn? ( net-dns/libidn:= )
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   media-libs/fontconfig:=
+   media-libs/freetype:2=
+   virtual/jpeg:0=
+   media-libs/libpng:0=
+   media-libs/tiff:0=
+   sys-libs/zlib:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   boost? ( dev-util/boost-build )
+   test? ( dev-util/cppunit )"
+
+DOCS="AUTHORS ChangeLog TODO"
+
+src_prepare() {
+   cmake-utils_src_prepare
+   local x sed_args
+
+   if use libressl; then
+   sed -e 's:^#ifdef PODOFO_HAVE_OPENSSL_1_1$:#ifndef 
PODOFO_HAVE_OPENSSL_1_1:' \
+-i tools/podofosign/podofosign.cpp || die #663602
+   fi
+
+   # bug 620934 - Disable linking with cppunit when possible, since it
+   # triggers errors with some older compilers.
+   use test || sed -e 's:^FIND_PACKAGE(CppUnit):#\0:' -i CMakeLists.txt || 
die
+
+   # bug 556962
+   sed -i -e 's|Decrypt( pEncryptedBuffer, nOutputLen, pDecryptedBuffer, 
m_lLen );|Decrypt( pEncryptedBuffer, (pdf_long)nOutputLen, pDecryptedBuffer, 
(pdf_long\&)m_lLen );|' \
+   test/unit/EncryptTest.cpp || die
+
+   sed -i \
+   -e "s:LIBDIRNAME \"lib\":LIBDIRNAME \"$(get_libdir)\":" \
+   -e "s:LIBIDN_FOUND:HAVE_LIBIDN:g" \
+   CMakeLists.txt || die
+
+   # Use pkg-config to find headers for bug #459404.
+   sed_args=
+   for x in $($(tc-getPKG_CONFIG) --cflags freetype2) ; do
+   [[ ${x} == -I* ]] || continue
+   x=${x#-I}
+   if [[ -f ${x}/ft2build.h ]] ; then
+   sed_args+=" -e s:/usr/include/\\r\$:${x}:"
+   elif [[ -f ${x}/freetype/config/ftheader.h ]] ; then
+   sed_args+=" -e s:/usr/include/freetype2\\r\$:${x}:"
+   fi
+   done
+   [[ -n ${sed_args} ]] && \
+   { sed -i ${sed_args} cmake/modules/FindFREETYPE.cmake || die; }
+
+   # Bug #439784: Add missing unistd include for close() and unlink().
+   sed -i 's:^#include $:#include \n\0:' -i \
+   test/unit/TestUtils.cpp || die
+
+   # TODO: fix these test cases
+   # ColorTest.cpp:62:Assertion
+   # Test name: ColorTest::testDefaultConstructor
+   # expected exception not thrown
+   # - Expected: PdfError
+   sed -e 's:CPPUNIT_TEST( testDefaultConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( testGreyConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( testRGBConstructor ://\0:' \
+   -e 's:CPPUNIT_TEST( testCMYKConstructor ://\0:' \
+   -e 

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

2020-06-10 Thread Miroslav Šulc
commit: e5b5476878671c51ef4f47fe2dfac926224e47b7
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 06:44:44 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 06:45:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5b54768

media-sound/lilypond: removed obsolete 2.19.83

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/lilypond/Manifest  |   1 -
 .../files/lilypond-2.19.80-fontforge-version.patch |  16 ---
 .../files/lilypond-2.19.80-remove-ly-protect.patch |  39 --
 media-sound/lilypond/lilypond-2.19.83.ebuild   | 148 -
 4 files changed, 204 deletions(-)

diff --git a/media-sound/lilypond/Manifest b/media-sound/lilypond/Manifest
index c08f1a07927..40fc65bffd7 100644
--- a/media-sound/lilypond/Manifest
+++ b/media-sound/lilypond/Manifest
@@ -1,2 +1 @@
-DIST lilypond-2.19.83.tar.gz 17996428 BLAKE2B 
d6048bfa0dbfbb08c25c5c11287f971936e82d30d88d80deb7fca8fe8d7c8d3d517c37a24b1d52e592c15e166e04eb79d99b4c64ddd4b7f392ec69bff0259d89
 SHA512 
c8a6acbff055196aba015ecd4786bed25934f04f3718ae9dd9a0dc49d2954f348806874cfe350903cd8bb2b25a0d05700ef5947cac180b20a8a355033ff98604
 DIST lilypond-2.21.1.tar.gz 18135688 BLAKE2B 
4a797c325e254b59cb314b28a801198f398efd7a37cac448b79d8161ab7248b0c9ca45ce742b82d0aebb784a98637209c84df74304a9e8c8f744b9f5033e18d2
 SHA512 
596f6a09d0f9a0c39ca717a9e4e246e03679a6cf40a78491eac9bc3eccf173799c75a0baef491cae8385bf1abda53244fd731695762b6fd841396edb92d0ab75

diff --git 
a/media-sound/lilypond/files/lilypond-2.19.80-fontforge-version.patch 
b/media-sound/lilypond/files/lilypond-2.19.80-fontforge-version.patch
deleted file mode 100644
index 4e2c2ce77c1..000
--- a/media-sound/lilypond/files/lilypond-2.19.80-fontforge-version.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-The version test fails for two reasons:
-* fontforge --version does not print anything that resembles what the configure
-  script expects a version to look like
-* fontforge fails to print a version if it cannot connect to an X display
-
 a/configure.ac
-+++ b/configure.ac
-@@ -236,7 +236,7 @@
- 
- STEPMAKE_PYTHON_DEVEL(REQUIRED, 2.4, 3.0)
- 
--STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED, 20110222)
-+STEPMAKE_PATH_PROG(FONTFORGE, fontforge, REQUIRED,)
- 
- STEPMAKE_PATH_PROG(T1ASM, t1asm, REQUIRED)
- 

diff --git 
a/media-sound/lilypond/files/lilypond-2.19.80-remove-ly-protect.patch 
b/media-sound/lilypond/files/lilypond-2.19.80-remove-ly-protect.patch
deleted file mode 100644
index d21b0a413a1..000
--- a/media-sound/lilypond/files/lilypond-2.19.80-remove-ly-protect.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -purN a/lily/general-scheme.cc b/lily/general-scheme.cc
 a/lily/general-scheme.cc   2017-10-15 17:42:11.0 +0100
-+++ b/lily/general-scheme.cc   2018-01-10 16:20:08.129066507 +
-@@ -267,6 +267,8 @@ LY_DEFINE (ly_dimension_p, "ly:dimension
- /*
-   Debugging mem leaks:
- */
-+
-+/*
- LY_DEFINE (ly_protects, "ly:protects",
-0, 0, 0, (),
-"Return hash of protected objects.")
-@@ -278,6 +280,7 @@ LY_DEFINE (ly_protects, "ly:protects",
-   return programming_error ("ly:protects is not supported in Guile 2.1");
- #endif
- }
-+*/
- 
- LY_DEFINE (ly_gettext, "ly:gettext",
-1, 0, 0, (SCM original),
-diff -purN a/scm/lily.scm b/scm/lily.scm
 a/scm/lily.scm 2017-10-15 17:42:11.0 +0100
-+++ b/scm/lily.scm 2018-01-10 16:22:54.914457450 +
-@@ -836,10 +836,11 @@ messages into errors.")
- 
- (define-public (dump-gc-protects)
-   (set! gc-protect-stat-count (1+ gc-protect-stat-count))
--  (let* ((protects (sort (hash-table->alist (ly:protects))
-- (lambda (a b)
--   (< (object-address (car a))
--  (object-address (car b))
-+  (let* (;(protects (sort (hash-table->alist (ly:protects))
-+ ;(lambda (a b)
-+ ;  (< (object-address (car a))
-+ ; (object-address (car b))
-+ (protects '())
-  (out-file-name (string-append
-  "gcstat-" (number->string gc-protect-stat-count)
-  ".scm"))

diff --git a/media-sound/lilypond/lilypond-2.19.83.ebuild 
b/media-sound/lilypond/lilypond-2.19.83.ebuild
deleted file mode 100644
index 8b1f709e600..000
--- a/media-sound/lilypond/lilypond-2.19.83.ebuild
+++ /dev/null
@@ -1,148 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-[[ "${PV}" = "" ]] && inherit git-r3
-inherit elisp-common autotools python-single-r1 toolchain-funcs xdg-utils
-
-if [[ "${PV}" = "" ]]; then
-   EGIT_REPO_URI="git://git.sv.gnu.org/lilypond.git"
-else
-   MAIN_VER=$(ver_cut 1-2)
-   

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

2020-06-10 Thread Miroslav Šulc
commit: 4182510444f2cf4c8e4db4d38ef58a46924750f0
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 07:06:08 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 07:06:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41825104

media-libs/lilv: removed obsolote 0.24.4-r1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/lilv/Manifest  |  1 -
 media-libs/lilv/lilv-0.24.4-r1.ebuild | 64 ---
 2 files changed, 65 deletions(-)

diff --git a/media-libs/lilv/Manifest b/media-libs/lilv/Manifest
index b106b3bee50..a619e3ae887 100644
--- a/media-libs/lilv/Manifest
+++ b/media-libs/lilv/Manifest
@@ -1,2 +1 @@
-DIST lilv-0.24.4.tar.bz2 252209 BLAKE2B 
71142f6a458a0edbb2087ac6eb6323b6ae4c53e45db22a616f00b22f818f507aa724ebf576f09654a98812b8b9a73689720677e64c715fbf7cd49ba26c7ddb11
 SHA512 
cb909c83dbac36b51a206fe508aec51e52ddf068f9a159d053888594402def8d140aae0d9e1e1866e722396f7ec8dea4b86d4c1b958f56eb3193b78307918a89
 DIST lilv-0.24.6.tar.bz2 541765 BLAKE2B 
fb3532b1a19c790207b894f88ea7d4f714bef8e9f743ca27f6eca36fe44da6e92bce47931791dfb0096e03f9efdf569b1f3f514debb1538c2727c65f61697627
 SHA512 
0cf89d7dac97727e744579d3f4f4b330f56cf72f1a30bd03abfd645233aaf04e9bbf2abf460a0e4b963ed40e1ae78ed5f36127553bdab16e3e7dd3e93b70cdad

diff --git a/media-libs/lilv/lilv-0.24.4-r1.ebuild 
b/media-libs/lilv/lilv-0.24.4-r1.ebuild
deleted file mode 100644
index 25e49d8494c..000
--- a/media-libs/lilv/lilv-0.24.4-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{3_6,3_7} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-any-r1 waf-utils bash-completion-r1 multilib-build 
multilib-minimal
-
-DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for 
applications"
-HOMEPAGE="http://drobilla.net/software/lilv/;
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
-IUSE="doc +dyn-manifest static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-libs/serd-0.28.0-r1[${MULTILIB_USEDEP}]
-   >=dev-libs/sord-0.16.0-r1[${MULTILIB_USEDEP}]
-   media-libs/libsndfile
-   >=media-libs/lv2-1.14.0-r1[${MULTILIB_USEDEP}]
-   >=media-libs/sratom-0.6.0-r1[${MULTILIB_USEDEP}]
-"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   doc? ( app-doc/doxygen )
-   virtual/pkgconfig[${MULTILIB_USEDEP}]
-"
-
-PATCHES=( "${FILESDIR}/includedir.patch" )
-
-src_prepare() {
-   default
-   sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   waf-utils_src_configure \
-   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
-   --no-bash-completion \
-   $(multilib_native_usex doc --docs "") \
-   $(usex test --test "") \
-   $(usex static-libs --static "") \
-   $(usex dyn-manifest --dyn-manifest "")
-}
-
-multilib_src_test() {
-   ./waf test || die
-}
-
-multilib_src_install() {
-   waf-utils_src_install
-}
-
-multilib_src_install_all() {
-   newbashcomp utils/lilv.bash_completion ${PN}
-   dodir /etc/env.d
-   echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > 
"${ED}/etc/env.d/60lv2"
-}



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

2020-06-10 Thread Miroslav Šulc
commit: a082d725dfc5bf26fa94a0513efcdfd7cab0c324
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 07:02:39 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 07:02:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a082d725

media-libs/sratom: removed obsolete 0.6.0-r1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/sratom/Manifest   |  1 -
 media-libs/sratom/sratom-0.6.0-r1.ebuild | 56 
 2 files changed, 57 deletions(-)

diff --git a/media-libs/sratom/Manifest b/media-libs/sratom/Manifest
index 071ebd28db8..f6cfcb04b06 100644
--- a/media-libs/sratom/Manifest
+++ b/media-libs/sratom/Manifest
@@ -1,2 +1 @@
-DIST sratom-0.6.0.tar.bz2 149340 BLAKE2B 
c661e0c4fba0cdf6cfb8a7dba90ff92135422557a0721bc394c7500853aeb9370554df8a02b7faea2fa222b96db36b20b265cc1fa50e6e06655946dbe992f815
 SHA512 
899bb01896e2b65b69482041c7e06edc9e45e9a3466392c82a58f16dfc71462a6c3e3e16a5aa50a6347c8366ea72898468910a59a084762f75eb8c7031ceacf8
 DIST sratom-0.6.4.tar.bz2 339707 BLAKE2B 
acf29c7dd3c4e23bf20ef2811706abdd3543d0fc380183f7f419932c3178ff5e2f6d95c57bad2ef991dbc1e32c6e8a3645238c7b42dfd204942dbc4c05270652
 SHA512 
6462d8d33ed7ddaa2aea267fab14c9a15bfc077a4f8d26eb493be4c48c95d8dcec614f540bd82fe22aecca641771326a44d175c3991cd473ae371062c78aaac3

diff --git a/media-libs/sratom/sratom-0.6.0-r1.ebuild 
b/media-libs/sratom/sratom-0.6.0-r1.ebuild
deleted file mode 100644
index 44cd492d309..000
--- a/media-libs/sratom/sratom-0.6.0-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE='threads(+)'
-inherit python-any-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="Library for serialising LV2 atoms to/from RDF, particularly the 
Turtle syntax"
-HOMEPAGE="http://drobilla.net/software/sratom/;
-SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
-IUSE="doc static-libs test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=media-libs/lv2-1.14.0-r1
-   >=dev-libs/serd-0.28.0-r1
-   >=dev-libs/sord-0.16.0-r1"
-DEPEND="${RDEPEND}
-   ${PYTHON_DEPS}
-   doc? ( app-doc/doxygen )
-   virtual/pkgconfig"
-
-DOCS=( "NEWS" "README" )
-
-src_prepare() {
-   sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
-   default
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   waf-utils_src_configure \
-   --docdir=/usr/share/doc/${PF} \
-   $(multilib_native_usex doc --docs "") \
-   $(usex test --test "") \
-   $(usex static-libs --static "")
-}
-
-multilib_src_test() {
-   ./waf test || die
-}
-
-multilib_src_compile() {
-   waf-utils_src_compile
-   default
-}
-
-multilib_src_install() {
-   waf-utils_src_install
-   default
-}



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

2020-06-10 Thread Michał Górny
commit: c8317c98f0a916d08c67ea4b02a3b88310cbc0c1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 07:01:27 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:01:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8317c98

dev-python/ipywidgets: Keyword 7.5.1 arm64, #727622

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

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

diff --git a/dev-python/ipywidgets/ipywidgets-7.5.1.ebuild 
b/dev-python/ipywidgets/ipywidgets-7.5.1.ebuild
index 1570b735647..018feabc8c5 100644
--- a/dev-python/ipywidgets/ipywidgets-7.5.1.ebuild
+++ b/dev-python/ipywidgets/ipywidgets-7.5.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-python/ipykernel-4.5.1[${PYTHON_USEDEP}]



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

2020-06-10 Thread Miroslav Šulc
commit: 46f52034bad88ca6a60e3fe69466e91189172faa
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 07:12:35 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 07:12:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f52034

media-sound/linuxsampler: fixed yyterror not declared in 2.1.1

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 .../linuxsampler-2.1.1-fix-yyterror-not-declared.patch   | 16 
 media-sound/linuxsampler/linuxsampler-2.1.1.ebuild   |  3 ++-
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git 
a/media-sound/linuxsampler/files/linuxsampler-2.1.1-fix-yyterror-not-declared.patch
 
b/media-sound/linuxsampler/files/linuxsampler-2.1.1-fix-yyterror-not-declared.patch
new file mode 100644
index 000..4eb56fddef1
--- /dev/null
+++ 
b/media-sound/linuxsampler/files/linuxsampler-2.1.1-fix-yyterror-not-declared.patch
@@ -0,0 +1,16 @@
+--- linuxsampler-2.1.1/src/network/lscp.y  2020/06/07 15:39:31 3786
 linuxsampler-2.1.1/src/network/lscp.y  2020/06/08 11:55:18 3787
+@@ -1479,6 +1479,13 @@
+  */
+ typedef std::set< std::vector > YYStackHistory;
+ 
++/*
++ * YYTERROR macro was removed in Bison 3.6.0, we need it in function below.
++ */
++#ifndef YYTERROR
++# define YYTERROR YYSYMBOL_YYerror
++#endif
++
+ #define DEBUG_BISON_SYNTAX_ERROR_WALKER 0
+ 
+ /**

diff --git a/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild 
b/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild
index 3361f366169..d12a254629b 100644
--- a/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild
+++ b/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -35,6 +35,7 @@ BDEPEND="
 PATCHES=(
"${FILESDIR}/${PN}-2.0.0-nptl-hardened.patch"
"${FILESDIR}/${PN}-2.0.0-lv2-automagic.patch"
+   "${FILESDIR}/${P}-fix-yyterror-not-declared.patch"
 )
 
 DOCS=( AUTHORS ChangeLog NEWS README )



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

2020-06-10 Thread Michał Górny
commit: a1b906efdfeddc9952dcbb6689cf51b26919a6df
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b906ef

dev-python/voluptuous: Add python@ as (co-)maint

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

 dev-python/voluptuous/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/voluptuous/metadata.xml 
b/dev-python/voluptuous/metadata.xml
index b46a8cbabba..89d22de2794 100644
--- a/dev-python/voluptuous/metadata.xml
+++ b/dev-python/voluptuous/metadata.xml
@@ -5,6 +5,10 @@
prometheanf...@gentoo.org
Matthew Thode

+   
+   pyt...@gentoo.org
+   Python
+   

Voluptuous, despite the name, is a Python data validation 
library. It is primarily intended for validating data coming into Python as 
JSON, YAML, etc.




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

2020-06-10 Thread Michał Górny
commit: 649717c69cfe95b37cec54d1bb08c64680050bae
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=649717c6

dev-python/python-bugzilla: Add python@ as (co-)maint

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

 dev-python/python-bugzilla/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/python-bugzilla/metadata.xml 
b/dev-python/python-bugzilla/metadata.xml
index eea547b9ad6..bb0a65a76a7 100644
--- a/dev-python/python-bugzilla/metadata.xml
+++ b/dev-python/python-bugzilla/metadata.xml
@@ -9,6 +9,10 @@
 mgo...@gentoo.org
 Michał Górny
   
+  
+pyt...@gentoo.org
+Python
+  
   
   
 python-bugzilla/python-bugzilla



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

2020-06-10 Thread Michał Górny
commit: e4c22b4a82733c922afb15d1ebf50b85637b1b22
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:34 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c22b4a

dev-python/widgetsnbextension: Add python@ as (co-)maint

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

 dev-python/widgetsnbextension/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/widgetsnbextension/metadata.xml 
b/dev-python/widgetsnbextension/metadata.xml
index e0cfa74ee51..1877c69f73c 100644
--- a/dev-python/widgetsnbextension/metadata.xml
+++ b/dev-python/widgetsnbextension/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 widgetsnbextension
 jupyter-widgets/ipywidgets



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

2020-06-10 Thread Michał Górny
commit: 633c3ad515198a32213f499aa6a266b7d244b2d4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:25 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=633c3ad5

dev-python/pytest-expect: Add python@ as (co-)maint

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

 dev-python/pytest-expect/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pytest-expect/metadata.xml 
b/dev-python/pytest-expect/metadata.xml
index b6e0ef32153..97346aec507 100644
--- a/dev-python/pytest-expect/metadata.xml
+++ b/dev-python/pytest-expect/metadata.xml
@@ -8,4 +8,8 @@

zmed...@gentoo.org

+   
+   pyt...@gentoo.org
+   Python
+   
 



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

2020-06-10 Thread Michał Górny
commit: dc68cd804ceefa50f9819db3e5eff5369107e135
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc68cd80

dev-python/linecache2: Add python@ as (co-)maint

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

 dev-python/linecache2/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/linecache2/metadata.xml 
b/dev-python/linecache2/metadata.xml
index c5a2319ffea..dfdeb6abf1b 100644
--- a/dev-python/linecache2/metadata.xml
+++ b/dev-python/linecache2/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   pyt...@gentoo.org
+   Python
+   

linecache2
testing-cabal/linecache2



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

2020-06-10 Thread Michał Górny
commit: ed9dd5fa6693aa295fab82e4b6582a6e73274628
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed9dd5fa

dev-python/traitlets: Add python@ as (co-)maint

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

 dev-python/traitlets/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/traitlets/metadata.xml 
b/dev-python/traitlets/metadata.xml
index fa50e618491..9c39adc4acf 100644
--- a/dev-python/traitlets/metadata.xml
+++ b/dev-python/traitlets/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 A lightweight pure-Python derivative of Enthought Traits,
 used for configuring Python objects. This package powers



[gentoo-commits] repo/gentoo:master commit in: sci-libs/scipy/

2020-06-10 Thread Michał Górny
commit: 2933bd1ef1ce72243f8987d09bb46d6262c030bd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:35 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2933bd1e

sci-libs/scipy: Add python@ as (co-)maint

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

 sci-libs/scipy/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/sci-libs/scipy/metadata.xml b/sci-libs/scipy/metadata.xml
index a4d8cf78982..f1d093c366a 100644
--- a/sci-libs/scipy/metadata.xml
+++ b/sci-libs/scipy/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
   SciPy is an open source library of scientific tools for Python. SciPy
   supplements the popular numpy module, gathering a variety of high level



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

2020-06-10 Thread Michał Górny
commit: c7d597c7be50c4a3c9949d2b3f186b37480a2867
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:19 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7d597c7

dev-python/nbformat: Add python@ as (co-)maint

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

 dev-python/nbformat/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/nbformat/metadata.xml b/dev-python/nbformat/metadata.xml
index 81964b34d3a..c43b5e4489c 100644
--- a/dev-python/nbformat/metadata.xml
+++ b/dev-python/nbformat/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 Jupyther nbformat contains the reference implementation of the
 Jupyter Notebook format, and Python APIs for working with



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

2020-06-10 Thread Michał Górny
commit: 5b36c47528832c4b00156358ca4fb361394126c4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:16 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b36c475

dev-python/m2r: Add python@ as (co-)maint

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

 dev-python/m2r/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/m2r/metadata.xml b/dev-python/m2r/metadata.xml
index fa17bcbedde..36d6bbad5e8 100644
--- a/dev-python/m2r/metadata.xml
+++ b/dev-python/m2r/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   pyt...@gentoo.org
+   Python
+   


miyako@gmail.com



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

2020-06-10 Thread Michał Górny
commit: 981e06f5afe8ab102163f3474e117cd48e14c069
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:22 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981e06f5

dev-python/pickleshare: Add python@ as (co-)maint

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

 dev-python/pickleshare/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pickleshare/metadata.xml 
b/dev-python/pickleshare/metadata.xml
index 5d8abb4a353..f433b9658f4 100644
--- a/dev-python/pickleshare/metadata.xml
+++ b/dev-python/pickleshare/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 Like shelve, a PickleShareDB object acts like a normal dictionary.
 Unlike shelve, many processes can access the database



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

2020-06-10 Thread Michał Górny
commit: 0ba994976182eb35eb0523e34e7e69e19d780101
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba99497

dev-python/tempora: Add python@ as (co-)maint

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

 dev-python/tempora/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/tempora/metadata.xml b/dev-python/tempora/metadata.xml
index 9b6de18095e..3ae289f9d10 100644
--- a/dev-python/tempora/metadata.xml
+++ b/dev-python/tempora/metadata.xml
@@ -5,6 +5,10 @@
sb...@gentoo.org
Louis Sautier

+   
+   pyt...@gentoo.org
+   Python
+   

tempora
jaraco/tempora



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

2020-06-10 Thread Michał Górny
commit: c23ee0e248ceb2a265df94d844b7ef11198b5936
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c23ee0e2

dev-python/munch: Add python@ as (co-)maint

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

 dev-python/munch/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/munch/metadata.xml b/dev-python/munch/metadata.xml
index 259ce1e4778..bac372eafcc 100644
--- a/dev-python/munch/metadata.xml
+++ b/dev-python/munch/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
+  
+pyt...@gentoo.org
+Python
+  
   
 munch
 Infinidat/munch



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

2020-06-10 Thread Michał Górny
commit: ef8321bea89dc54eacaed339f9a65d99df52d22d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:28 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef8321be

dev-python/requests-toolbelt: Add python@ as (co-)maint

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

 dev-python/requests-toolbelt/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/requests-toolbelt/metadata.xml 
b/dev-python/requests-toolbelt/metadata.xml
index 33dacd3a88b..77f35fd2daf 100644
--- a/dev-python/requests-toolbelt/metadata.xml
+++ b/dev-python/requests-toolbelt/metadata.xml
@@ -4,6 +4,10 @@

amy...@gentoo.org

+   
+   pyt...@gentoo.org
+   Python
+   

requests-toolbelt




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

2020-06-10 Thread Michał Górny
commit: fe14b7d39416a729ab5943e9622c8647cf86a04f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:24 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe14b7d3

dev-python/prettytable: Add python@ as (co-)maint

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

 dev-python/prettytable/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/prettytable/metadata.xml 
b/dev-python/prettytable/metadata.xml
index 4a76f215cc7..567af78 100644
--- a/dev-python/prettytable/metadata.xml
+++ b/dev-python/prettytable/metadata.xml
@@ -5,6 +5,10 @@
 openst...@gentoo.org
 Openstack
   
+  
+pyt...@gentoo.org
+Python
+  
   
 prettytable
 PrettyTable



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

2020-06-10 Thread Michał Górny
commit: 19ea23718882afaa767dd529b30d0215debc85fe
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:13 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:10:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19ea2371

dev-python/jupyter_core: Add python@ as (co-)maint

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

 dev-python/jupyter_core/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/jupyter_core/metadata.xml 
b/dev-python/jupyter_core/metadata.xml
index dd311505a57..663e35ebd3a 100644
--- a/dev-python/jupyter_core/metadata.xml
+++ b/dev-python/jupyter_core/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 Core common functionality of Jupyter projects.
 This package contains base application classes and configuration



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

2020-06-10 Thread Michał Górny
commit: 5488f1825677036e0bd13a1690b2a30407df76d8
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5488f182

dev-python/kiwisolver: Add python@ as (co-)maint

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

 dev-python/kiwisolver/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/kiwisolver/metadata.xml 
b/dev-python/kiwisolver/metadata.xml
index 4b4e945d159..edc9848e496 100644
--- a/dev-python/kiwisolver/metadata.xml
+++ b/dev-python/kiwisolver/metadata.xml
@@ -9,6 +9,10 @@
gyakov...@gentoo.org
Georgy Yakovlev

+   
+   pyt...@gentoo.org
+   Python
+   

kiwisolver
nucleic/kiwi



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

2020-06-10 Thread Michał Górny
commit: 193b3c0616224438d7ac23c3dde29b85cf34062f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=193b3c06

dev-python/nbconvert: Add python@ as (co-)maint

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

 dev-python/nbconvert/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/nbconvert/metadata.xml 
b/dev-python/nbconvert/metadata.xml
index 85c611d7ca5..d47832d4ed8 100644
--- a/dev-python/nbconvert/metadata.xml
+++ b/dev-python/nbconvert/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 nbconvert
 jupyter/nbconvert



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

2020-06-10 Thread Michał Górny
commit: 4128da33ecdcf245adc0a2f1ee594e6d43e434ab
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4128da33

dev-python/pandocfilters: Add python@ as (co-)maint

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

 dev-python/pandocfilters/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pandocfilters/metadata.xml 
b/dev-python/pandocfilters/metadata.xml
index 18d97df8a65..504d616d1f0 100644
--- a/dev-python/pandocfilters/metadata.xml
+++ b/dev-python/pandocfilters/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 pandocfilters
 jgm/pandocfilters



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

2020-06-10 Thread Michał Górny
commit: 0bcee16a133c357ed8f9a3570e9a93b4e5fb7d7a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:30 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcee16a

dev-python/tqdm: Add python@ as (co-)maint

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

 dev-python/tqdm/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/tqdm/metadata.xml b/dev-python/tqdm/metadata.xml
index 774ecb60a21..d109a0ebe95 100644
--- a/dev-python/tqdm/metadata.xml
+++ b/dev-python/tqdm/metadata.xml
@@ -9,6 +9,10 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   pyt...@gentoo.org
+   Python
+   

Instantly make your loops show a progress meter - just wrap 
any iterator with "tqdm(iterator)", and you're done!



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

2020-06-10 Thread Michał Górny
commit: 525419812cd0c037f3fcca0284ba4f2ea417dbb1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:27 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52541981

dev-python/qtconsole: Add python@ as (co-)maint

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

 dev-python/qtconsole/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/qtconsole/metadata.xml 
b/dev-python/qtconsole/metadata.xml
index 1c4f5a32251..b4be59fbf85 100644
--- a/dev-python/qtconsole/metadata.xml
+++ b/dev-python/qtconsole/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 A rich Qt-based console for working with Jupyter kernels,
 supporting rich media output, session export, and more.



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

2020-06-10 Thread Michał Górny
commit: b1c447f1e66dac3b250919a25c5efacce5d27ef6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:31 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1c447f1

dev-python/traceback2: Add python@ as (co-)maint

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

 dev-python/traceback2/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/traceback2/metadata.xml 
b/dev-python/traceback2/metadata.xml
index d819a58d5a7..34b72c8f590 100644
--- a/dev-python/traceback2/metadata.xml
+++ b/dev-python/traceback2/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   pyt...@gentoo.org
+   Python
+   

traceback2
testing-cabal/traceback2



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

2020-06-10 Thread Michał Górny
commit: c01422903526f5974655014c1c5986af01d7c365
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0142290

dev-python/monotonic: Add python@ as (co-)maint

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

 dev-python/monotonic/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/monotonic/metadata.xml 
b/dev-python/monotonic/metadata.xml
index f5098fadc75..14de77d4f1d 100644
--- a/dev-python/monotonic/metadata.xml
+++ b/dev-python/monotonic/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   pyt...@gentoo.org
+   Python
+   

monotonic
atdt/monotonic



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

2020-06-10 Thread Michał Górny
commit: 892de70f4aeccfd5fab2eff7e3a0baeb92ab207b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=892de70f

dev-python/portend: Add python@ as (co-)maint

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

 dev-python/portend/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/portend/metadata.xml b/dev-python/portend/metadata.xml
index 530cb9c31df..ea8f0ccb5cc 100644
--- a/dev-python/portend/metadata.xml
+++ b/dev-python/portend/metadata.xml
@@ -5,6 +5,10 @@
zmed...@gentoo.org
Zac Medico

+   
+   pyt...@gentoo.org
+   Python
+   

portend
jaraco/portend



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

2020-06-10 Thread Michał Górny
commit: b7dc2b9a0a2ea022e5625d6ef24cd180e5ce330a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7dc2b9a

dev-python/testpath: Add python@ as (co-)maint

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

 dev-python/testpath/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/testpath/metadata.xml b/dev-python/testpath/metadata.xml
index cba9cbf64b0..b65b36caa56 100644
--- a/dev-python/testpath/metadata.xml
+++ b/dev-python/testpath/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 Testpath is a collection of utilities for Python code working with
 files and commands. It contains functions to check things on the



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

2020-06-10 Thread Jeroen Roovers
commit: d394f2f58fb8a7b96b24c5efc82366906f5814e4
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 10 08:42:23 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 10 08:46:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d394f2f5

www-client/vivaldi-snapshot: Version 3.1.1929.28_p1

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

 www-client/vivaldi-snapshot/Manifest   |   4 +
 .../vivaldi-snapshot-3.1.1929.28_p1.ebuild | 116 +
 2 files changed, 120 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 64bbb2221d6..9a31c8dfa72 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -6,3 +6,7 @@ DIST vivaldi-snapshot-3.1.1929.23_p1-amd64.deb 70987724 BLAKE2B 
258c517728f77958
 DIST vivaldi-snapshot-3.1.1929.23_p1-arm64.deb 63461624 BLAKE2B 
ab79cf3180a185c0340503468af31af54db7d4250456a7bf9f6863a2316c0a6cc88af903bfc549e8887059fa1727f039c1251bc964a39ede65c4f58527bbc1c2
 SHA512 
459fa9f6b3c5103d16225db3c5f01baebfdb8faca7871912f4ee674150bc01c2303c887fba3c393a45b7f333cea41ad657501cbe8fa546e5cf4b4743b50585fd
 DIST vivaldi-snapshot-3.1.1929.23_p1-armhf.deb 62920616 BLAKE2B 
70a4207a669d427d3878b421240744d7c962f576a85387cb9319eb1477de1913e21814903fcefb64c34d937d4506444c8bb43a03c253a7828b160910f1bee1aa
 SHA512 
889cce83e932ff0dba6ccc19583a5070d84742cbd2d3c500c4f74aaf9445b530f466357e726ebce271002897735838b5077ee474fb2f6c9f5645f76918e7b865
 DIST vivaldi-snapshot-3.1.1929.23_p1-i386.deb 69395664 BLAKE2B 
d382e0b17821b466b52ce019f4d3bf39b04f1c8a5377b36e45bf2b5c0b644e5b327494d29636101dd0f7a08f6e954b81ec21dcff8e12fc0009500891285eea31
 SHA512 
5abd7840d54f70b1582873c8ce632943b59025aaad423c2d83789343c1fee278c8467c69f2ca1d363c2eff6e1c05a05a9670aa283cf23e005d6445be8263cc46
+DIST vivaldi-snapshot-3.1.1929.28_p1-amd64.deb 71007352 BLAKE2B 
bb9be0f5e33ed6c8448cc1bd862da190846d5b272189cb3453d644d08755e99569702bd331e552c53a3a4abe680445888c47f6819f52a465277e94bed2e34a17
 SHA512 
b9933a2f9bc0d1a5e32affe1be38be608afe452da5fee044ecc813c7d39eda1958a6839500c579aa16e3cacd4c23a80425f4daf1e730b8a5b627e82e7545a4c0
+DIST vivaldi-snapshot-3.1.1929.28_p1-arm64.deb 63480852 BLAKE2B 
8b7152bade8a1d573cdad256b1d8b0a829c0580aaea035a5ecd3b71ab52a32ed1a2f00da1416bf1cf0f43568c282066a4f7c55265a6f8f37a12d82cc0866ce47
 SHA512 
9174d28e41fe029bdcbe587327d4add2425d5341759750e49059c36bb8dd8af4c49de05b5487c629073a3dfc5984279872b86cf0a077a89bea1307613ffabcd3
+DIST vivaldi-snapshot-3.1.1929.28_p1-armhf.deb 62914704 BLAKE2B 
e9a06d3e527a46fa9945302a23bc03f4644fb97a241ad55f91c19aa532c4e8823af8cba2f427acfe4fabef11950502f230e8c18b3347c75145fbf396a0cbbb6c
 SHA512 
3500c8450a3d64336d103ce2b2c82c6769508e8e304ff880b69d7af538e17e09e02d21e76a52f47f13c779abedb7693aef5a36bd9e65b61334a3234fb35f800d
+DIST vivaldi-snapshot-3.1.1929.28_p1-i386.deb 69398944 BLAKE2B 
de22baaf2f62a7af9a444f435d6c124f8348b6958e66f42557cee728aa8f245dac949ed893c76cc0913098bed4caf40119ba1e6fc4e497982c6d2fcc04221a58
 SHA512 
287fce3cd196c96a160976efa9354403f2dbf395d99051890f1a346f2406fac97f812f59951b2c6643cd71076dc596b99d56972cebd61e4081e7549afcb64281

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

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

2020-06-10 Thread Jeroen Roovers
commit: 9cdc24583285f8b33f941e08964b41a93213707f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 10 08:46:08 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 10 08:46:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cdc2458

www-client/vivaldi: Version 3.1.1929.29_p1

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

 www-client/vivaldi/Manifest  |   4 +
 www-client/vivaldi/vivaldi-3.1.1929.29_p1.ebuild | 125 +++
 2 files changed, 129 insertions(+)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index 56c48f7beef..f77857af35c 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -6,3 +6,7 @@ DIST vivaldi-3.1.1929.25_p1-amd64.deb 71016460 BLAKE2B 
c4d35cefd2b5da142eca25ff0
 DIST vivaldi-3.1.1929.25_p1-arm64.deb 63488420 BLAKE2B 
a8d6191b6fff8aa4a3e16eb7dad3cd514ce22139061407894b07413bbc2cb757b945203681c930e2917746f2f005514da1807b0582a66df2906739d2794851c4
 SHA512 
762984a6a8c9a3a449d9934da59dd17790aa04dba4aa51df69b6c8dc2c38a17fd77201b3c7450152b47eba7b8d61b15fa21c4b788f6923d4da394e276e04f003
 DIST vivaldi-3.1.1929.25_p1-armhf.deb 62921072 BLAKE2B 
1957de8090683d15b4abc83580f3ae65cc18ffc00fc5523d1143647e9b2460adc359384649dc23831a4b5e265a04a197278dcf5899e1b68802eff81fcd2e23d9
 SHA512 
f7ac233057a863868d0a49264824d19f45ea4b90e31b69c376b2cc5b8b6aa11339beb87d70a59084a79600bea5bb5ada7dfe440a208f13a5f62789a8809362bd
 DIST vivaldi-3.1.1929.25_p1-i386.deb 69403692 BLAKE2B 
7caa5f9970bfca82c4bff3e0b5598ff0f6db43c63a83e77f7b1f9e6222480aa915209928bde6d4907fcd1e528262452765cc18e868df2ba61e5c10cda27f2f89
 SHA512 
9a49c8aad430c4043e32b4dc2d1f2e47064d205ea09b19be694e6a535b06a06b27cc5610fe0f6a744dfe2ac55c4871b213ca5042b31869523b6a993df4e096ef
+DIST vivaldi-3.1.1929.29_p1-amd64.deb 71000744 BLAKE2B 
76b9c62a66f327506e2503f9153850904f98a81660b80249b3b1e75cbcd539b5b5ca67430e921c37430459064386d267d8809cc156214850ee5dc009fe933a37
 SHA512 
aa1e16d887fc3b88aa6d91f9b0b9ca6bcc33b1f1cfc50ff3eb7a1ae20fbaa59aa6a14b3cf6e4624f9c00f090083123fbbe4b508c3dd1f4ef802b5eb9afd5976c
+DIST vivaldi-3.1.1929.29_p1-arm64.deb 63494200 BLAKE2B 
60ba0dfef503e0021536f81478cb6101ca917b6bd3071f11e826bcd9161fa966c6cc6ded8107825a23e46d9e61d3548e106ffd824321f2a31d841fa99cc0973f
 SHA512 
5598d7b4bd275fe2065438c93aef4df5f78fe7911e401cbde78b3fbab98ec48e7661fc5170dacc5e786cccd81f0956f80de6c54356638fb13f9e3d68a91f06a5
+DIST vivaldi-3.1.1929.29_p1-armhf.deb 62939860 BLAKE2B 
883453821fa34884cad9873614d3978cfccc44e3eec3782084f2b624b72bb9df11e363546af379dc1b96326a9abff48f6d74cd5b0a1d671224b5565b1a324b07
 SHA512 
ef5bf3d5c04e39c2d8169a0fb106dfe22558e04c370d817bd5c29fc036ffc22f77cef1b5d05d28d4ee42b930a1c70581fcacd7b897653a399ffed61f89eb9f3d
+DIST vivaldi-3.1.1929.29_p1-i386.deb 69409064 BLAKE2B 
aa56a323a37d25f1ce0b381eae08c4f1f4c281d952e5820e6cfb7c488d26adad2653e3610588342e6182b899be34fc9dd5ce133a5319b54204b1c5d70f48cf06
 SHA512 
4e33abc01163e07c11127644efd4f6f328729d89588ce3827974680dacd80ffbed2a5bb3fa15847ce7549e459bd11bfc794f1afe11371725295a81b659d74553

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

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

2020-06-10 Thread Michał Górny
commit: 2dd9d0a3daa9805a08bc7d92e45db53d33b49a48
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 10:21:54 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 10:27:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd9d0a3

dev-libs/c-blosc: Bump to 1.19.0

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

 dev-libs/c-blosc/Manifest  |  1 +
 dev-libs/c-blosc/c-blosc-1.19.0.ebuild | 50 ++
 dev-libs/c-blosc/files/c-blosc-1.19.0-xgetbv.patch | 33 ++
 3 files changed, 84 insertions(+)

diff --git a/dev-libs/c-blosc/Manifest b/dev-libs/c-blosc/Manifest
index 711561b638c..6894b7f68ab 100644
--- a/dev-libs/c-blosc/Manifest
+++ b/dev-libs/c-blosc/Manifest
@@ -1 +1,2 @@
 DIST c-blosc-1.11.2.tar.gz 633280 BLAKE2B 
426de12ffa0db784fc26316e5758836517f3b3498111cfea64ebd2bc4582ebc6236f64845d41e75db272d3741ab8a7f22a12e0847fb7c98ba10a3ae2c2906e22
 SHA512 
c1282f60f4ef9d24844be225587e7f46c43ba8a5071f5ee49a7326bce9e84b65312c4f9606e78fd3d1209a4ca50f1c31312a7c377caf9522c9915177c92a4d7b
+DIST c-blosc-1.19.0.tar.gz 875356 BLAKE2B 
046134e10fec639f1271d9c7cc15dcd239f9f0875f7ad324144338072e6fa006612f7d154ccde11a5dd7ee60471380aab4a60ae332cf1de4a7b773ae354c494a
 SHA512 
15bc009f8880630c531ccd36544869d59b69d21f10c08eebf3c2983d203697429649a1b56b044e28342ec620c6f5850ee9da783005ce83f23e783f091289498c

diff --git a/dev-libs/c-blosc/c-blosc-1.19.0.ebuild 
b/dev-libs/c-blosc/c-blosc-1.19.0.ebuild
new file mode 100644
index 000..71488e42738
--- /dev/null
+++ b/dev-libs/c-blosc/c-blosc-1.19.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Blocking, shuffling and lossless compression library"
+HOMEPAGE="https://www.blosc.org/;
+SRC_URI="https://github.com/Blosc/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+lz4 +snappy test zlib zstd"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   lz4? ( >=app-arch/lz4-1.7.5:= )
+   snappy? ( app-arch/snappy )
+   zlib? ( sys-libs/zlib )
+   zstd? ( app-arch/zstd )"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-xgetbv.patch
+)
+
+src_prepare() {
+   cmake_src_prepare
+   # remove bundled libs
+   rm -rf internal-complibs || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_STATIC=OFF
+   -DBUILD_TESTS=$(usex test)
+   -DBUILD_BENCHMARKS=OFF
+   -DDEACTIVATE_LZ4=$(usex !lz4)
+   -DDEACTIVATE_SNAPPY=$(usex !snappy)
+   -DDEACTIVATE_ZLIB=$(usex !zlib)
+   -DDEACTIVATE_ZSTD=$(usex !zstd)
+   -DPREFER_EXTERNAL_LZ4=ON
+   # snappy is always external
+   -DPREFER_EXTERNAL_ZLIB=ON
+   -DPREFER_EXTERNAL_ZSTD=ON
+   )
+   cmake_src_configure
+}

diff --git a/dev-libs/c-blosc/files/c-blosc-1.19.0-xgetbv.patch 
b/dev-libs/c-blosc/files/c-blosc-1.19.0-xgetbv.patch
new file mode 100644
index 000..045a234028b
--- /dev/null
+++ b/dev-libs/c-blosc/files/c-blosc-1.19.0-xgetbv.patch
@@ -0,0 +1,33 @@
+From 14d2d561795c276fc33c8cb54781dff76b398906 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Wed, 10 Jun 2020 12:13:39 +0200
+Subject: [PATCH] Redefine blosc_internal_xgetbv for platforms with immintrin.h
+
+Commit 2f2d876 renamed _xgetbv to blosc_internal_xgetbv.  Commit 0b8608b
+made it conditional to immintrin.h not being included, apparently
+in order to prevent _xgetbv collision.  However, since the block
+no longer defined _xgetbv but blosc_internal_xgetbv, it means that
+the latter is not defined if the condition is false.  #define it to
+_xgetbv to fix missing symbol.
+---
+ blosc/shuffle.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/blosc/shuffle.c b/blosc/shuffle.c
+index fc2ca64..7a03bf1 100644
+--- a/blosc/shuffle.c
 b/blosc/shuffle.c
+@@ -195,6 +195,10 @@ blosc_internal_xgetbv(uint32_t xcr) {
+   return ((uint64_t)edx << 32) | eax;
+ }
+ 
++#else
++
++#define blosc_internal_xgetbv _xgetbv
++
+ #endif  // !(defined(_IMMINTRIN_H_INCLUDED) && (BLOSC_GCC_VERSION >= 900))
+ #endif  /* defined(_MSC_FULL_VER) */
+ 
+-- 
+2.27.0
+



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

2020-06-10 Thread Michał Górny
commit: 0843e5fe167de86901619c3182d36166dfd33b1f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 09:24:34 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 10:27:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0843e5fe

dev-python/blosc: Port to py3.9

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

 dev-python/blosc/blosc-1.9.1.ebuild | 14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/dev-python/blosc/blosc-1.9.1.ebuild 
b/dev-python/blosc/blosc-1.9.1.ebuild
index 50df9cddf59..2cda56af6d4 100644
--- a/dev-python/blosc/blosc-1.9.1.ebuild
+++ b/dev-python/blosc/blosc-1.9.1.ebuild
@@ -2,7 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6..8} )
+
+DISTUTILS_USE_SETUPTOOLS=no
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 
@@ -17,9 +19,9 @@ IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="dev-libs/c-blosc:="
-DEPEND="${RDEPEND}
+DEPEND="${RDEPEND}"
+BDEPEND="
dev-python/scikit-build[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
@@ -32,12 +34,6 @@ python_prepare_all() {
DOCS=( ANNOUNCE.rst  README.rst  RELEASE_NOTES.rst )
 }
 
-python_compile_all() {
-   esetup.py build_clib
-   esetup.py build_ext --inplace
-   esetup.py build
-}
-
 python_test() {
cd "${BUILD_DIR}"/lib || die
PYTHONPATH=. nosetests -v || die



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

2020-06-10 Thread Michał Górny
commit: a3a55665264413bc5dcafbebb9cddd701227c440
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 10:03:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 10:27:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3a55665

dev-python/ipyparallel: Fix doc path

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

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

diff --git a/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild 
b/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild
index 548fa420135..e567a97df1c 100644
--- a/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild
+++ b/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild
@@ -45,7 +45,7 @@ BDEPEND="${RDEPEND}
)
"
 
-distutils_enable_sphinx docs
+distutils_enable_sphinx docs/source
 distutils_enable_tests pytest
 
 src_prepare() {



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

2020-06-10 Thread Michał Górny
commit: 5cf4455ae7c157ff511f1831a7573e9ef78fb7a4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 10:23:38 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 10:27:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf4455a

dev-python/blosc: Unbundle c-blosc

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

 .../{blosc-1.9.1.ebuild => blosc-1.9.1-r1.ebuild}  |  6 +-
 dev-python/blosc/files/blosc-1.9.1-unbundle.patch  | 23 ++
 2 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/dev-python/blosc/blosc-1.9.1.ebuild 
b/dev-python/blosc/blosc-1.9.1-r1.ebuild
similarity index 91%
rename from dev-python/blosc/blosc-1.9.1.ebuild
rename to dev-python/blosc/blosc-1.9.1-r1.ebuild
index 2cda56af6d4..11fa0fc160a 100644
--- a/dev-python/blosc/blosc-1.9.1.ebuild
+++ b/dev-python/blosc/blosc-1.9.1-r1.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
-RDEPEND="dev-libs/c-blosc:="
+RDEPEND=">=dev-libs/c-blosc-1.19.0:="
 DEPEND="${RDEPEND}"
 BDEPEND="
dev-python/scikit-build[${PYTHON_USEDEP}]
@@ -28,6 +28,10 @@ BDEPEND="
)
 "
 
+PATCHES=(
+   "${FILESDIR}"/${P}-unbundle.patch
+)
+
 python_prepare_all() {
export BLOSC_DIR="${EPREFIX}/usr"
distutils-r1_python_prepare_all

diff --git a/dev-python/blosc/files/blosc-1.9.1-unbundle.patch 
b/dev-python/blosc/files/blosc-1.9.1-unbundle.patch
new file mode 100644
index 000..55af5f0c621
--- /dev/null
+++ b/dev-python/blosc/files/blosc-1.9.1-unbundle.patch
@@ -0,0 +1,23 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 2711877..a4c949c 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -4,16 +4,9 @@ find_package(PythonExtensions REQUIRED)
+ 
+ # Todo: c-blosc provides a CMake package configuration file that we can build
+ # against if blosc is available on the system, etc.
+-# find_package(blosc)
+-# if(NOT blosc_FOUND)
+-set(BUILD_STATIC ON CACHE BOOL "Build a static version of the blosc library.")
+-set(BUILD_SHARED OFF CACHE BOOL "Build a shared library version of the blosc 
library.")
+-set(BUILD_TESTS OFF CACHE BOOL "Build test programs form the blosc 
compression library")
+-set(BUILD_BENCHMARKS OFF CACHE BOOL "Build benchmark programs form the blosc 
compression library")
+-set(CMAKE_POSITION_INDEPENDENT_CODE ON)
+-add_subdirectory(c-blosc)
++find_package(blosc)
+ 
+ add_library(blosc_extension MODULE blosc/blosc_extension.c)
+-target_link_libraries(blosc_extension blosc_static)
++target_link_libraries(blosc_extension blosc)
+ python_extension_module(blosc_extension)
+ install(TARGETS blosc_extension LIBRARY DESTINATION blosc)



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

2020-06-10 Thread Michał Górny
commit: 156a8e2ef5c7f7ec52250c763e83fa854584b1b2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 10:22:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 10:27:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=156a8e2e

dev-libs/c-blosc: Add myself as co-maint

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

 dev-libs/c-blosc/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-libs/c-blosc/metadata.xml b/dev-libs/c-blosc/metadata.xml
index 24926d99226..03a65e7d61a 100644
--- a/dev-libs/c-blosc/metadata.xml
+++ b/dev-libs/c-blosc/metadata.xml
@@ -5,6 +5,10 @@
s...@gentoo.org
Gentoo Science Project

+   
+   mgo...@gentoo.org
+   Michał Górny
+   

Blosc is a compression library designed to transmit data to the
processor cache faster than the traditional non-compressed memory 
fetch. 



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

2020-06-10 Thread Michał Górny
commit: 8b4fb70607656e9140beded15b6f21f2d4d4d2b2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 09:24:53 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 10:27:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b4fb706

dev-python/blosc: Take for python@

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

 dev-python/blosc/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/blosc/metadata.xml b/dev-python/blosc/metadata.xml
index 05e88ce58aa..b264b7dd62c 100644
--- a/dev-python/blosc/metadata.xml
+++ b/dev-python/blosc/metadata.xml
@@ -5,6 +5,10 @@
 s...@gentoo.org
 Gentoo Science Project
   
+  
+pyt...@gentoo.org
+Python
+  
   
 blosc is a high performance compressor optimized for binary
 data. It has been designed to transmit data to the processor cache



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

2020-06-10 Thread Michael Orlitzky
commit: b30bb859bc507d6baef0d93e1a739c1664ce26a4
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Jun 10 13:36:09 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Jun 10 13:45:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30bb859

dev-php/PHPMailer: remove old "unused" versions.

This leaves PHPMailer-5.2.28, which was released on 2020-03-09 and is
the latest release from the 5.x series. No one has said whether or not
CVE-2020-13625 affects v5.2.28 as well, but the description "insufficient
output escaping" sounds scarier than it is. This bug isn't known to be
exploitable; a priori it just gives the attachment the wrong name.

Bug: https://bugs.gentoo.org/727584
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/PHPMailer/Manifest|  6 ---
 dev-php/PHPMailer/PHPMailer-5.2.27.ebuild | 64 ---
 dev-php/PHPMailer/PHPMailer-6.0.7.ebuild  | 73 ---
 dev-php/PHPMailer/PHPMailer-6.1.2.ebuild  | 73 ---
 dev-php/PHPMailer/PHPMailer-6.1.3.ebuild  | 73 ---
 dev-php/PHPMailer/PHPMailer-6.1.4.ebuild  | 73 ---
 dev-php/PHPMailer/PHPMailer-6.1.5.ebuild  | 73 ---
 7 files changed, 435 deletions(-)

diff --git a/dev-php/PHPMailer/Manifest b/dev-php/PHPMailer/Manifest
index 6e985eedf79..156f23296ca 100644
--- a/dev-php/PHPMailer/Manifest
+++ b/dev-php/PHPMailer/Manifest
@@ -1,8 +1,2 @@
-DIST PHPMailer-5.2.27.tar.gz 159227 BLAKE2B 
e5ff2dd62cb12396bee58f0dce2fec3148dcf425cd91d69b76659ded7c38d8d5dea4830649dbeaa4732e098deecfe7ee77e338497b080997a44fbcf28d0833c7
 SHA512 
5a466133feec323d3739b9a1bde36731f5e65ecf61aa3f2fa6cc4ed0bd6f9280f8e2a17b6b7ac481846509ba3e8b0b97062f0dbbd644ccec3884b7a03f489a1b
 DIST PHPMailer-5.2.28.tar.gz 159284 BLAKE2B 
866a38c60ac55cbd8aefec5ad82211575e672578ddff1af435e676c7058b0a090884f3e5f2c1e6f30c94b01e393f982f644e578ea22c931ffb8a93be717e379b
 SHA512 
c2dd762b8958d1dc68fec52d7daae7337e05cadcbcf9e67c27247c808877cf3132e80cf6d4c9c577f8ad9203e433282e45f2166bccce025bcc4477724eb7036f
-DIST PHPMailer-6.0.7.tar.gz 91706 BLAKE2B 
1d3d22dea463040840c1259cfbdbcf2da59cd31e915ea8a73bb9981844e9ae6e32ca1e9a40a576fedcd8c0a049f92f9b5422040e12dcc66b2c555dbd36126c67
 SHA512 
0d00ff177fc82c3cc54ed04cfd333739c9346f89dba1ccb8bd01abd3de4c55c96dbd51cc0f4cc76d6690acd22c6bb4f632dcfb785ec1d0a32a8751ddf6e9
-DIST PHPMailer-6.1.2.tar.gz 93635 BLAKE2B 
f8a12415a0e24697c84de06782f78a1cc37785ad0a1764dfd53470ca1ac5a8d4dffc418794b7627d2702b16f68ea83a93b362b7659a95e0c0a84e1a9b66b7b9b
 SHA512 
3192f77f7d0158f30c7ea4484c86c279e0563e629702901f66901003c384101c57f7482feb14fc61927afaae8adea5d8fc34bd07c7058f68f6144303ce235fd5
-DIST PHPMailer-6.1.3.tar.gz 93690 BLAKE2B 
08f653520a2b7819470cbb5cf1f43480cdcab51fe452f4831df47269f4223cfeb7016e41e8de75c11b15a04fa278fe08439f3c022af9088a5c8f5e4259ae7ebb
 SHA512 
195155e49b29740422e75d7dbcf082cf8b26c87dad7b5473b9d55267e31af3847cb65a1c79f73225fa79080428d8c7516f5cd4d083824fa42f3b22a3bec8c34e
-DIST PHPMailer-6.1.4.tar.gz 93915 BLAKE2B 
9f4ec584c57d70c4cbbc33c4ba85469579a00ebbf4aa4680b6f965ad37339b923386e371c01b673bca8c0de6f6ed123b6a1456541b1c472c6f0c93592c7c9e96
 SHA512 
f13cb959d89c64392ecff4cceaa650c80310f854aaff1c09144727aeb7f50c7ebeaaf7a2be488fa796b5acd1c42c4d13204b0410bc579d2e6aec98feee3b21ef
-DIST PHPMailer-6.1.5.tar.gz 94435 BLAKE2B 
8c4f515af8260d20524636be6c89a3d6a8824691037d956141a2822163d1e59676c0dcf96683b0e4434e94ffb3f57235afc758840920156a7aa664290ad04b65
 SHA512 
a741dd4fa585619892cc1d8b4ce35fee7c1f5f44d946b368e1a363eff77e5afe1553ac295db49c6110131561c1124b1dc184c9a405fb1652e7aeab9d7b0323a8
 DIST PHPMailer-6.1.6.tar.gz 94769 BLAKE2B 
6689f4429c0847de41016325553d58d544f78d5f8a94d9014841435a3cf161e4e10b14fe2cbb61c737bf75d87f2dc4cde66885c06a0b6992a472f0f46fe5dd6b
 SHA512 
25530e6c5513e89729a5b253565143a5a9a35ee5f7813637eee18ca1d604cb83625f7beb106e56536f681d7ec4332fcd3cddcac5da7c73f730db1b056ba5b2e4

diff --git a/dev-php/PHPMailer/PHPMailer-5.2.27.ebuild 
b/dev-php/PHPMailer/PHPMailer-5.2.27.ebuild
deleted file mode 100644
index 160382537ad..000
--- a/dev-php/PHPMailer/PHPMailer-5.2.27.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-DESCRIPTION="Full-featured email creation and transfer class for PHP"
-HOMEPAGE="https://github.com/PHPMailer/PHPMailer;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc examples idn ssl"
-
-# The ctype and filter extensions get used unconditionally, with no
-# fallback and no "extension missing" exception. All of the other
-# extensions are technically optional, depending on how you use
-# PHPMailer and whether or not you're willing to settle for fallback
-# 

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

2020-06-10 Thread Michael Orlitzky
commit: 02e9960b449b8af4440ffa2bb40030962d9dc5a1
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Jun 10 13:30:43 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Jun 10 13:45:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02e9960b

dev-php/PHPMailer: new version 6.1.6 to fix CVE-2020-13625.

Bug: https://bugs.gentoo.org/727584
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/PHPMailer/Manifest   |  1 +
 dev-php/PHPMailer/PHPMailer-6.1.6.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/dev-php/PHPMailer/Manifest b/dev-php/PHPMailer/Manifest
index d6699fcd8b8..6e985eedf79 100644
--- a/dev-php/PHPMailer/Manifest
+++ b/dev-php/PHPMailer/Manifest
@@ -5,3 +5,4 @@ DIST PHPMailer-6.1.2.tar.gz 93635 BLAKE2B 
f8a12415a0e24697c84de06782f78a1cc37785
 DIST PHPMailer-6.1.3.tar.gz 93690 BLAKE2B 
08f653520a2b7819470cbb5cf1f43480cdcab51fe452f4831df47269f4223cfeb7016e41e8de75c11b15a04fa278fe08439f3c022af9088a5c8f5e4259ae7ebb
 SHA512 
195155e49b29740422e75d7dbcf082cf8b26c87dad7b5473b9d55267e31af3847cb65a1c79f73225fa79080428d8c7516f5cd4d083824fa42f3b22a3bec8c34e
 DIST PHPMailer-6.1.4.tar.gz 93915 BLAKE2B 
9f4ec584c57d70c4cbbc33c4ba85469579a00ebbf4aa4680b6f965ad37339b923386e371c01b673bca8c0de6f6ed123b6a1456541b1c472c6f0c93592c7c9e96
 SHA512 
f13cb959d89c64392ecff4cceaa650c80310f854aaff1c09144727aeb7f50c7ebeaaf7a2be488fa796b5acd1c42c4d13204b0410bc579d2e6aec98feee3b21ef
 DIST PHPMailer-6.1.5.tar.gz 94435 BLAKE2B 
8c4f515af8260d20524636be6c89a3d6a8824691037d956141a2822163d1e59676c0dcf96683b0e4434e94ffb3f57235afc758840920156a7aa664290ad04b65
 SHA512 
a741dd4fa585619892cc1d8b4ce35fee7c1f5f44d946b368e1a363eff77e5afe1553ac295db49c6110131561c1124b1dc184c9a405fb1652e7aeab9d7b0323a8
+DIST PHPMailer-6.1.6.tar.gz 94769 BLAKE2B 
6689f4429c0847de41016325553d58d544f78d5f8a94d9014841435a3cf161e4e10b14fe2cbb61c737bf75d87f2dc4cde66885c06a0b6992a472f0f46fe5dd6b
 SHA512 
25530e6c5513e89729a5b253565143a5a9a35ee5f7813637eee18ca1d604cb83625f7beb106e56536f681d7ec4332fcd3cddcac5da7c73f730db1b056ba5b2e4

diff --git a/dev-php/PHPMailer/PHPMailer-6.1.6.ebuild 
b/dev-php/PHPMailer/PHPMailer-6.1.6.ebuild
new file mode 100644
index 000..e27c5fd9332
--- /dev/null
+++ b/dev-php/PHPMailer/PHPMailer-6.1.6.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Full-featured email creation and transfer class for PHP"
+HOMEPAGE="https://github.com/PHPMailer/PHPMailer;
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# To help out the Composer children, the tests and examples are missing
+# from the release tarballs.
+IUSE="doc idn ssl"
+
+# The ctype and filter extensions get used unconditionally, with no
+# fallback and no "extension missing" exception. All of the other
+# extensions are technically optional, depending on how you use
+# PHPMailer and whether or not you're willing to settle for fallback
+# implementations.
+#
+# The insane dependency string is to prevent the ctype and filter
+# extensions from being provided by one version (i.e. slot) of PHP,
+# while intl and unicode are provided by another.
+RDEPEND="
+   ssl? (
+   idn?  ( dev-lang/php:*[ctype,filter,intl,ssl,unicode] )
+   !idn? ( dev-lang/php:*[ctype,filter,ssl] )
+   )
+   !ssl? (
+   idn?  ( dev-lang/php:*[ctype,filter,intl,unicode] )
+   !idn? ( dev-lang/php:*[ctype,filter] )
+   )"
+BDEPEND="doc? ( dev-php/phpDocumentor )"
+
+src_prepare() {
+   # OAuth.php relies on a (now non-nonexistent) autoloader. We remove
+   # it early so that we don't generate documentation for it later on.
+   rm src/OAuth.php || die 'failed to remove src/OAuth.php'
+   eapply_user
+}
+
+src_compile() {
+   if use doc; then
+   phpdoc --filename="src/*.php" \
+  --target="./html" \
+  --cache-folder="${T}" \
+  --title="${PN}" \
+  --sourcecode \
+  --force \
+  --progressbar \
+  || die "failed to generate API documentation"
+   fi
+}
+
+src_install() {
+   # The PHPMailer class loads its language files
+   # using a relative path, so we need to keep the "src" here.
+   insinto "/usr/share/php/${PN}"
+   doins -r language src
+
+   dodoc README.md SECURITY.md
+   use doc && dodoc -r html/*
+}
+
+pkg_postinst() {
+   elog "${PN} has been installed in /usr/share/php/${PN}/."
+   elog "Upstream no longer provides an autoloader, so you will need"
+   elog "to include each source file (for example: PHPMailer.php,"
+   elog "Exception.php,...) 

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

2020-06-10 Thread Miroslav Šulc
commit: d253e061f9490bbc628804b6f47d91bf8b479bee
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 13:41:44 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 13:41:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d253e061

media-sound/lilypond: fixed fontforge dependency use flag

Closes: https://bugs.gentoo.org/727712
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/lilypond/lilypond-2.21.1.ebuild | 2 +-
 media-sound/lilypond/lilypond-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/lilypond/lilypond-2.21.1.ebuild 
b/media-sound/lilypond/lilypond-2.21.1.ebuild
index cd59095a7dd..ffc80213cf1 100644
--- a/media-sound/lilypond/lilypond-2.21.1.ebuild
+++ b/media-sound/lilypond/lilypond-2.21.1.ebuild
@@ -51,7 +51,7 @@ DEPEND="${RDEPEND}
app-text/t1utils
dev-lang/perl
dev-libs/kpathsea
-   media-gfx/fontforge[png]
+   media-gfx/fontforge[png,python]
sys-devel/gettext"
 
 # Correct output data for tests isn't bundled with releases

diff --git a/media-sound/lilypond/lilypond-.ebuild 
b/media-sound/lilypond/lilypond-.ebuild
index bfc43d04764..eb38a121f49 100644
--- a/media-sound/lilypond/lilypond-.ebuild
+++ b/media-sound/lilypond/lilypond-.ebuild
@@ -51,7 +51,7 @@ DEPEND="${RDEPEND}
app-text/t1utils
dev-lang/perl
dev-libs/kpathsea
-   media-gfx/fontforge[png]
+   media-gfx/fontforge[png,python]
sys-devel/gettext"
 
 # Correct output data for tests isn't bundled with releases



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

2020-06-10 Thread Michał Górny
commit: b1b497ca0019e504e4d179a6a32339e4b36d78c2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:11:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 14:11:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b497ca

dev-python/boto3: Bump to 1.13.26

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.13.26.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 40b6f828997..d5d86e43922 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,3 +1,4 @@
 DIST boto3-1.10.2.tar.gz 272071 BLAKE2B 
9c3b90ae751784946a84d0cf31ed0111526ed97b5be1fe5f256f725889f9819db632c6e6f217e3f01ebb0aa5594257a5bdaabd8dcc5f14ccb5bdd333b1c416c7
 SHA512 
37ea11f5ae9263aa5e97ce94f2834c987190ba2eac4a60bf9312bb643f1d204e48db7bef6ddc0d46ae124109ec6807589108b58f3024485de163fd8f83688b42
 DIST boto3-1.12.48.tar.gz 292124 BLAKE2B 
0baf8fb4cfa040ba05b296d15a523a5de32677684143145b12dd54182d4fedbffa5656d36ab854006c0cc6009a1bca351bb5ac2ea757cb70b446924bcae625a8
 SHA512 
3cf5533dd5d9aa51cf46ef81ba25bb7afbc73b1e745ea5ae47935b22da290c7d2101e377b3225f970168201dde0bf2ee967e24eed86548f9045eb72840afea6b
+DIST boto3-1.13.26.tar.gz 296782 BLAKE2B 
117bb18679fe3ae8c4feee1a5fb2d1df1923764bba3dce72040ccc802d10bb88263744a0491195f414761b6755353775a8a413a121a5a0fc42373a4e9b8aac1a
 SHA512 
513ea4b39a5af4ae8e45f6b8b315a19d5184998fa881782bf2e6074aee36a709b51813fc9fe403bb8dbfb9b51ead50367af18f0918a1c88a37eab263ccddd11a
 DIST boto3-1.9.122.tar.gz 258061 BLAKE2B 
68903edd97e10693675e4c2fa77c2c54f2d3aab79307ee0a856f43aabe256f7782d027b0a23f433c593962c90f7364c26a87c27fe8770e67b5052e4ced73a9bc
 SHA512 
31b8d8c2369b9076d825196d400c8a8b5579c38f87c7f41634eedbdaf6c2be01072018312e90e25d81b850c51f7c22a13fa565cd4e8b7672c238bad61e6a0810

diff --git a/dev-python/boto3/boto3-1.13.26.ebuild 
b/dev-python/boto3/boto3-1.13.26.ebuild
new file mode 100644
index 000..f45344d9732
--- /dev/null
+++ b/dev-python/boto3/boto3-1.13.26.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+inherit distutils-r1
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   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"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-1.16.26[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # prevent an infinite loop
+   rm tests/functional/docs/test_smoke.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests -v tests/unit tests/functional ||
+   die "test failed under ${EPYTHON}"
+}



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

2020-06-10 Thread Michał Górny
commit: 2bb7f9ab85d9703ffb8c14db43466d049cc31ccf
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:11:49 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 14:11:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb7f9ab

dev-python/boto3: Add python@ as co-maint

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

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

diff --git a/dev-python/boto3/metadata.xml b/dev-python/boto3/metadata.xml
index 1e1436030f1..245721430de 100644
--- a/dev-python/boto3/metadata.xml
+++ b/dev-python/boto3/metadata.xml
@@ -13,6 +13,10 @@
slashbe...@gentoo.org
Piotr Karbowski

+   
+   pyt...@gentoo.org
+   Python
+   

boto/boto3




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

2020-06-10 Thread Michał Górny
commit: 1347806da39e457f2de379c5492070c09127309b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:06:44 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 14:06:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1347806d

dev-python/boto3: Port to py3.9

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

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

diff --git a/dev-python/boto3/boto3-1.12.48.ebuild 
b/dev-python/boto3/boto3-1.12.48.ebuild
index 9f253f8f393..f95d5850440 100644
--- a/dev-python/boto3/boto3-1.12.48.ebuild
+++ b/dev-python/boto3/boto3-1.12.48.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 inherit distutils-r1
 



[gentoo-commits] proj/musl:master commit in: app-office/libreoffice/

2020-06-10 Thread Anthony G. Basile
commit: 9d676cc662b408dc9648edd60e35e80546910402
Author: Louis Leseur  gmail  com>
AuthorDate: Mon Jun  8 01:15:15 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 10 15:10:36 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9d676cc6

app-office/libreoffice: mark amd64 and x86 stable

>From ::gentoo

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Louis Leseur  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

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

diff --git a/app-office/libreoffice/libreoffice-6.4.3.2.ebuild 
b/app-office/libreoffice/libreoffice-6.4.3.2.ebuild
index a68ee13..253edee 100644
--- a/app-office/libreoffice/libreoffice-6.4.3.2.ebuild
+++ b/app-office/libreoffice/libreoffice-6.4.3.2.ebuild
@@ -82,7 +82,7 @@ LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 
 [[ ${MY_PV} == ** ]] || \
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
 
 BDEPEND="
dev-util/intltool



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

2020-06-10 Thread Anthony G. Basile
commit: 75205af3b1534dd771c7c4c1d1b54dcbd6802c8a
Author: Louis Leseur  gmail  com>
AuthorDate: Sun Jun  7 20:08:52 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 10 15:10:36 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=75205af3

app-office/libreoffice: bump to 6.4.4.2

Synced with ::gentoo, using Alpine patches.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Louis Leseur  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

 app-office/libreoffice/Manifest|   5 +-
 .../files/libreoffice-6.4.2.2-poppler-0.86.patch   |  15 +++
 .../files/libreoffice-6.4.3.2-boost-1.73.patch | 118 +
 .../files/libreoffice-6.4.4.2-linux-musl.patch |  60 +++
 ...e-6.3.4.2.ebuild => libreoffice-6.4.4.2.ebuild} |  56 +-
 app-office/libreoffice/metadata.xml|   1 -
 6 files changed, 220 insertions(+), 35 deletions(-)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index 1083824..3d478bb 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -2,7 +2,8 @@ DIST 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip 3519470 
BLAKE2B ccfdf6b7f
 DIST 185d60944ea767075d27247c3162b3bc-unowinreg.dll 12288 BLAKE2B 
c067f60d0ee325feae4f168ad0f84602708fe724a1d9a9a054ed4991992c1d4637b31083cf569326b8aac1ec598e71ec65fb31ee16233b9c736e97ef062b47d7
 SHA512 
854b8ae29b57b40ba6bb6ff66e723a0e8dad053fcc2849f0ad763cd8a31352f4aeba9636fd4e3f0f2a0cd985a6f49b4261b9ace68d6be821ed42cfa7a73eb13c
 DIST 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip 9796 BLAKE2B 
a30b0225313b23092bc57ccd989f26ea04a323dcb17a0ea8baaa6a21b5d5e2b6e29fcae9d18ecd043073030e104ad56c86a115760590f57eda86c22c9fe478b0
 SHA512 
4a48f1e32907fb2dee601cda3cd7a0d7198b2d51f2a572b647f1e93f901fd511eef3567676e52dfb1723a2cdfbc01f2015ca0bb22903b0bc1476dd618cc9aa8a
 DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 BLAKE2B 
d2769842c180997055648a8b1a33cc89988b74628bad8aa012242e0c1afa5b5b8568323c107187072207ee69bd841ba4ca3bbfe27ef65223ddc729d1a1aa6590
 SHA512 
ec5ae23c8fe2f5efc377f7a9665039afadf28b4d8f2791379296766a5fbc9a3bf7548f9b0e3b3b07762229ec733a92ccbb69791ee0318c9c6f78f8e847253d3f
+DIST QR-Code-generator-1.4.0.tar.gz 146339 BLAKE2B 
b2cb329877426861e0245747ac1e8f1275ca7428b3c6768af60dec5c9bb46e93a3fee81fc77257e151604b5f6748c9f29582e9fccc2a4088747c95fe5f673124
 SHA512 
314a757bfdf9a38bcf07fd7a0103d28a2d1dd7311b8234761304efeef7bfdb740db78ab01e6b67e99a28d523cc2be9c1073b2de9d65e853d191c3dad19af56d0
 DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 
51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3
 SHA512 
2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a
-DIST libreoffice-6.3.4.2.tar.xz 225632492 BLAKE2B 
587fe7e6298ded60fa08963f572733eb8e387c00b428201bb6f1de7eddcf9d9ee97438231ed3f961bd22628bde0fd9dfeacb63febdc566cde781bcebb9c9a71d
 SHA512 
2ed687ae805da36635419729066a2924f1e38a6b0f8d2692c42b366450a261012adfcd8a5d7915d9cfd292d07519fc32c596cdb56d7be6b12a49618b18d6f3d2
+DIST libreoffice-6.4.4.2.tar.xz 231325236 BLAKE2B 
25e1c765cb0ff9c195ca46a9fe857eef22ab6319da6b069e2c5c093a8f13eac2e1c5efa31fbacd4e3acbdc07e75745ff5c62c180cb61141319422720405a4638
 SHA512 
8e2b6a2d34fbc182ce4ec0b6d6bfb30665ff5cee0a27a22551c71d4eddf63b812d676ea8dea9a2e4bb028a2365b5e23908679efbe4696032e1abeedecb85b8d3
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
-DIST libreoffice-help-6.3.4.2.tar.xz 13191636 BLAKE2B 
c1696efa0ec9fef9dbcc0c0388de8a384484af1453d200e08820ba910cdcb65638b189566a19868281fd1777213812fde06adb07c1a662302eea1d0a791ff5a0
 SHA512 
8c74c82c7d73adb1523300d1f7500769f5a623fdba60b440a63c122cbfeb631a6a34ecbcb115b0154a6957be1918306f7d0c1f465030f8e8cfd5c9a1acad17c9
+DIST libreoffice-help-6.4.4.2.tar.xz 88296340 BLAKE2B 
73ef558b830e0e2899eb72727e0eb81327807ff2d474c8d956700a09bcadc73cbff26688063f91d3a496afa55ab9a7d4847d84334b89fe4fafe17fb445fbb33d
 SHA512 
7084428e63a458c4e35c135b16dd980fa98695be0ba974cac656a7ef6cb15b059a082891c3f74b72a62f92549afefe46c14ab30b5491fd9e3fea6d5923720b3d

diff --git 
a/app-office/libreoffice/files/libreoffice-6.4.2.2-poppler-0.86.patch 
b/app-office/libreoffice/files/libreoffice-6.4.2.2-poppler-0.86.patch
new file mode 100644
index 000..c56ba89
--- /dev/null
+++ b/app-office/libreoffice/files/libreoffice-6.4.2.2-poppler-0.86.patch
@@ -0,0 +1,15 @@
+diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 
b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx
+index e9c2a407c279..16ad04bf660a 

[gentoo-commits] proj/musl:master commit in: app-office/libreoffice/

2020-06-10 Thread Anthony G. Basile
commit: ecddfaea0e9b0d3c4853861c4baff991cef55812
Author: Louis Leseur  gmail  com>
AuthorDate: Mon Jun  8 01:09:37 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 10 15:10:36 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=ecddfaea

app-office/libreoffice: add version 6.4.3.2

Synced with ::gentoo, using Alpine patches.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Louis Leseur  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

 app-office/libreoffice/Manifest   |  23 +
 app-office/libreoffice/libreoffice-6.4.3.2.ebuild | 558 ++
 2 files changed, 581 insertions(+)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index 3d478bb..6baabfc 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -1,9 +1,32 @@
+-BEGIN PGP SIGNED MESSAGE-
+Hash: SHA256
+
 DIST 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip 3519470 BLAKE2B 
ccfdf6b7f88f22d3ec7898c529c374f13059979450aabdccc9781ca91dd27d0119dfec3d33dda073c2973fa4a8aacae13924c9a67e38a1422c48bfee41b6f3e8
 SHA512 
a231eba4a1baca11766ef292ab45e302081115477fe23018652882923308856835cf8c9ecba61a5cf22543474ccef3136965d794a90c9e4e9e6dcc21f9af6e1a
 DIST 185d60944ea767075d27247c3162b3bc-unowinreg.dll 12288 BLAKE2B 
c067f60d0ee325feae4f168ad0f84602708fe724a1d9a9a054ed4991992c1d4637b31083cf569326b8aac1ec598e71ec65fb31ee16233b9c736e97ef062b47d7
 SHA512 
854b8ae29b57b40ba6bb6ff66e723a0e8dad053fcc2849f0ad763cd8a31352f4aeba9636fd4e3f0f2a0cd985a6f49b4261b9ace68d6be821ed42cfa7a73eb13c
 DIST 35c94d2df8893241173de1d16b6034c0-swingExSrc.zip 9796 BLAKE2B 
a30b0225313b23092bc57ccd989f26ea04a323dcb17a0ea8baaa6a21b5d5e2b6e29fcae9d18ecd043073030e104ad56c86a115760590f57eda86c22c9fe478b0
 SHA512 
4a48f1e32907fb2dee601cda3cd7a0d7198b2d51f2a572b647f1e93f901fd511eef3567676e52dfb1723a2cdfbc01f2015ca0bb22903b0bc1476dd618cc9aa8a
 DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 BLAKE2B 
d2769842c180997055648a8b1a33cc89988b74628bad8aa012242e0c1afa5b5b8568323c107187072207ee69bd841ba4ca3bbfe27ef65223ddc729d1a1aa6590
 SHA512 
ec5ae23c8fe2f5efc377f7a9665039afadf28b4d8f2791379296766a5fbc9a3bf7548f9b0e3b3b07762229ec733a92ccbb69791ee0318c9c6f78f8e847253d3f
 DIST QR-Code-generator-1.4.0.tar.gz 146339 BLAKE2B 
b2cb329877426861e0245747ac1e8f1275ca7428b3c6768af60dec5c9bb46e93a3fee81fc77257e151604b5f6748c9f29582e9fccc2a4088747c95fe5f673124
 SHA512 
314a757bfdf9a38bcf07fd7a0103d28a2d1dd7311b8234761304efeef7bfdb740db78ab01e6b67e99a28d523cc2be9c1073b2de9d65e853d191c3dad19af56d0
 DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 
51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3
 SHA512 
2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a
+DIST libreoffice-6.4.3.2.tar.xz 230409812 BLAKE2B 
f9cdad1540c45525bd70596dc3033e3466fcdf3d96547222b936141e49ff6d45581ca59d0e42c4bb79fcb63586d748ccafae712369e024105235e2a9b69be7ce
 SHA512 
ee11c704fa7184ffe371aa36c835c4c7fb06ef03d08fa0a5a9e647e80610db275e091d1ac79c1fe11af0c7f14dd72c821da9e7e6ba59573fc88cec79f84c873a
 DIST libreoffice-6.4.4.2.tar.xz 231325236 BLAKE2B 
25e1c765cb0ff9c195ca46a9fe857eef22ab6319da6b069e2c5c093a8f13eac2e1c5efa31fbacd4e3acbdc07e75745ff5c62c180cb61141319422720405a4638
 SHA512 
8e2b6a2d34fbc182ce4ec0b6d6bfb30665ff5cee0a27a22551c71d4eddf63b812d676ea8dea9a2e4bb028a2365b5e23908679efbe4696032e1abeedecb85b8d3
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
+DIST libreoffice-help-6.4.3.2.tar.xz 88297704 BLAKE2B 
bbd1af159c8b8db1909335f37095812ec3ce81d73644a30a85f3e37daeabeb9a158451b8e586f24d4b7544c8cd0948eeb20ede464384c3277d196f33322e63fb
 SHA512 
9f8c1bcde27d153389d124af1393d0939262c85a1624f0b475a5515b5737612cb607d04742a069534771eee51ba98896926804ec7001d6bc2110dccdd6e7615a
 DIST libreoffice-help-6.4.4.2.tar.xz 88296340 BLAKE2B 
73ef558b830e0e2899eb72727e0eb81327807ff2d474c8d956700a09bcadc73cbff26688063f91d3a496afa55ab9a7d4847d84334b89fe4fafe17fb445fbb33d
 SHA512 
7084428e63a458c4e35c135b16dd980fa98695be0ba974cac656a7ef6cb15b059a082891c3f74b72a62f92549afefe46c14ab30b5491fd9e3fea6d5923720b3d
+-BEGIN PGP SIGNATURE-
+
+iQKTBAEBCAB9FiEEOA+uIz0+s3MTYJHqpFO6gRhEr2EFAl7dj8tfFIAALgAo
+aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDM4
+MEZBRTIzM0QzRUIzNzMxMzYwOTFFQUE0NTNCQTgxMTg0NEFGNjEACgkQpFO6gRhE
+r2FYDRAArw21pneygDuYtMCWSmhOntW8gK0/E+9om+MhMkRJHMErAQQvUGp3h5mc
+bNeJZXr24KsVsueCgd4mxH6IuLpU/e5SpiGqzCxDLOjs9OTZuS54bcX6LFzf7Bs/
+zr//blyvR7n3y5o8WNNjM4iwkytx9ZC4JrXj9F19EYKChXBSBs16o5z/bsxTIcLP

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

2020-06-10 Thread Michał Górny
commit: c08bbde4317d186ce911dd00a5c13b03544e0a6d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 15:01:55 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c08bbde4

dev-python/docker-py: Port to py3.9

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

 dev-python/docker-py/docker-py-4.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/docker-py/docker-py-4.2.0-r1.ebuild 
b/dev-python/docker-py/docker-py-4.2.0-r1.ebuild
index bbd3efde173..b730b40c98f 100644
--- a/dev-python/docker-py/docker-py-4.2.0-r1.ebuild
+++ b/dev-python/docker-py/docker-py-4.2.0-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 



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

2020-06-10 Thread Michał Górny
commit: 35aaeba6340b8c52ecb8234909b0392ae36e8a46
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 15:00:04 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35aaeba6

dev-python/paramiko: Port to py3.9

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

 dev-python/paramiko/paramiko-2.7.1.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-python/paramiko/paramiko-2.7.1.ebuild 
b/dev-python/paramiko/paramiko-2.7.1.ebuild
index 114317d3687..c2d84991da2 100644
--- a/dev-python/paramiko/paramiko-2.7.1.ebuild
+++ b/dev-python/paramiko/paramiko-2.7.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+PYTHON_COMPAT=( python2_7 python3_{6..9} )
 PYTHON_REQ_USE="threads(+)"
 
 inherit distutils-r1
@@ -17,8 +17,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 LICENSE="LGPL-2.1"
 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 ~m68k-mint 
~sparc-solaris"
-IUSE="examples server test"
-RESTRICT="!test? ( test )"
+IUSE="examples server"
 
 RDEPEND="
>=dev-python/bcrypt-3.1.3[${PYTHON_USEDEP}]
@@ -27,7 +26,6 @@ RDEPEND="
>=dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
 "
 BDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/mock[${PYTHON_USEDEP}]
)



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

2020-06-10 Thread Michał Górny
commit: 91408de7f199a81a14701d272fe6f863d9e59b8e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 15:06:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91408de7

dev-python/docker-py: Bump to 4.2.1

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

 dev-python/docker-py/Manifest   |  1 +
 dev-python/docker-py/docker-py-4.2.1.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index 4c8d9e63810..e02b6371f7e 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -1 +1,2 @@
 DIST docker-py-4.2.0.tar.gz 234304 BLAKE2B 
385f7fbfaabd4732a2f3bb074094b9f286ee9c6a543432f9a15fc6a78a595f44e4ddebcb3037ff1df54cb4b8d6aec40d8961fb4f62710a0a3245eb886d830c80
 SHA512 
df5a450355f11d580568ebb0e80abc967df35f2ae10ce83c4ece85e4cf3e97d9cd15e5f14a2d9a43650a844d9402a8d97370f6e5f615c186b12968379e52fa38
+DIST docker-py-4.2.1.tar.gz 234562 BLAKE2B 
4b554199f3675340602be27395e0194e827ad81dab48500bca0d4858c699e79ac5108f46eae09c3ac6ae1b580498fd5c78f026ecfd8549b938bb5c6e6cccbd94
 SHA512 
46ab02d4c247d41efa0ca75d3e13f8aef2d3fe4e6d8624c5a98a728f16c58d0dd8de742be710dc2b2f616dc2cc14a7a8796899e94a4b71a00554baeab105330f

diff --git a/dev-python/docker-py/docker-py-4.2.1.ebuild 
b/dev-python/docker-py/docker-py-4.2.1.ebuild
new file mode 100644
index 000..a515db65a0c
--- /dev/null
+++ b/dev-python/docker-py/docker-py-4.2.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for Docker"
+HOMEPAGE="https://github.com/docker/docker-py;
+SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
+"
+DEPEND="
+   test? (
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   >=dev-python/paramiko-2.4.2[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs \
+   'dev-python/recommonmark' \
+   '>=dev-python/sphinx-1.4.6'
+distutils_enable_tests pytest
+
+src_prepare() {
+   # localhost has a better chance of being in /etc/hosts
+   sed -e 's:socket[.]gethostname():"localhost":' \
+   -i tests/unit/api_test.py || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   pytest -vv tests/unit/ || die "tests failed under ${EPYTHON}"
+}



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

2020-06-10 Thread Michał Górny
commit: 2a7f2951e43726f67980f55329f0b787bd910b3a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 15:08:43 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a7f2951

dev-python/jsondiff: Port to py3.9

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

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

diff --git a/dev-python/jsondiff/jsondiff-1.2.0.ebuild 
b/dev-python/jsondiff/jsondiff-1.2.0.ebuild
index 29227333f39..83f6954f2d8 100644
--- a/dev-python/jsondiff/jsondiff-1.2.0.ebuild
+++ b/dev-python/jsondiff/jsondiff-1.2.0.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 



[gentoo-commits] proj/musl:master commit in: app-office/libreoffice/files/

2020-06-10 Thread Anthony G. Basile
commit: a586b4c9b3381d8bd041fb61877d35a8b2ba4130
Author: Louis Leseur  gmail  com>
AuthorDate: Sun Jun  7 20:34:55 2020 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Jun 10 15:10:36 2020 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=a586b4c9

app-office/libreoffice: Remove unused patches

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Louis Leseur  gmail.com>
Signed-off-by: Anthony G. Basile  gentoo.org>

 .../files/libreoffice-6.1.4.2-linux-musl.patch | 60 --
 .../libreoffice-6.1.4.2-musl-fix-includes.patch| 13 
 .../libreoffice-6.3.3.2-mysql-connector-c-8.patch  | 45 --
 .../files/libreoffice-6.3.4.2-poppler-0.83.patch   | 72 --
 4 files changed, 190 deletions(-)

diff --git a/app-office/libreoffice/files/libreoffice-6.1.4.2-linux-musl.patch 
b/app-office/libreoffice/files/libreoffice-6.1.4.2-linux-musl.patch
deleted file mode 100644
index 5fbf6b3..000
--- a/app-office/libreoffice/files/libreoffice-6.1.4.2-linux-musl.patch
+++ /dev/null
@@ -1,60 +0,0 @@
 libreoffice-5.3.0.3/configure.ac.orig  2017-01-26 22:22:46.0 
+
-+++ libreoffice-5.3.0.3/configure.ac   2017-02-08 13:14:16.777547599 +
-@@ -652,7 +652,7 @@
- fi
- ;;
- 
--linux-gnu*|k*bsd*-gnu*)
-+linux-gnu*|linux-musl*|k*bsd*-gnu*)
- test_gtk=yes
- build_gstreamer_1_0=yes
- build_gstreamer_0_10=yes
-@@ -4170,7 +4170,7 @@
- esac
- ;;
- 
--linux-gnu*)
-+linux-gnu*|linux-musl*)
- COM=GCC
- USING_X11=TRUE
- OS=LINUX
-@@ -7197,7 +7197,7 @@
- test -d "$JAVA_HOME/include/native_thread" && JAVAINC="$JAVAINC 
-I$JAVA_HOME/include/native_thread"
- ;;
- 
--linux-gnu*)
-+linux-gnu*|linux-musl*)
- JAVAINC="-I$JAVA_HOME/include"
- JAVAINC="$JAVAINC -I$JAVA_HOME/include/linux"
- test -d "$JAVA_HOME/include/native_thread" && JAVAINC="$JAVAINC 
-I$JAVA_HOME/include/native_thread"
-@@ -9748,21 +9748,6 @@
- fi
- AC_SUBST(SYSTEM_LIBEXTTEXTCAT_DATA)
- 
--dnl ***
--dnl testing libc version for Linux...
--dnl ***
--if test "$_os" = "Linux"; then
--AC_MSG_CHECKING([whether libc is >= 2.1.1])
--exec 6>/dev/null # no output
--AC_CHECK_LIB(c, gnu_get_libc_version, HAVE_LIBC=yes; export HAVE_LIBC)
--exec 6>&1 # output on again
--if test "$HAVE_LIBC"; then
--AC_MSG_RESULT([yes])
--else
--AC_MSG_ERROR([no, upgrade libc])
--fi
--fi
--
- dnl =
- dnl Check for the Windows  SDK.
- dnl =
-@@ -12775,7 +12760,7 @@
- 
- case "$host_os" in
- 
--aix*|dragonfly*|freebsd*|linux-gnu*|*netbsd*|openbsd*)
-+aix*|dragonfly*|freebsd*|linux-gnu*|linux-musl*|*netbsd*|openbsd*)
- if test "$ENABLE_JAVA" != ""; then
- pathmunge "$JAVA_HOME/bin" "after"
- fi

diff --git 
a/app-office/libreoffice/files/libreoffice-6.1.4.2-musl-fix-includes.patch 
b/app-office/libreoffice/files/libreoffice-6.1.4.2-musl-fix-includes.patch
deleted file mode 100644
index d2048e2..000
--- a/app-office/libreoffice/files/libreoffice-6.1.4.2-musl-fix-includes.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/sd/source/ui/remotecontrol/BluetoothServer.cxx 
b/sd/source/ui/remotecontrol/BluetoothServer.cxx
-index f177d86..99bb408 100644
 a/sd/source/ui/remotecontrol/BluetoothServer.cxx
-+++ b/sd/source/ui/remotecontrol/BluetoothServer.cxx
-@@ -21,7 +21,7 @@
-   #include 
-   #include 
-   #include 
--  #include 
-+  #include 
-   #include 
-   #include 
-   #include 

diff --git 
a/app-office/libreoffice/files/libreoffice-6.3.3.2-mysql-connector-c-8.patch 
b/app-office/libreoffice/files/libreoffice-6.3.3.2-mysql-connector-c-8.patch
deleted file mode 100644
index 5fa7b34..000
--- a/app-office/libreoffice/files/libreoffice-6.3.3.2-mysql-connector-c-8.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 5917ba8bc645a2b105ec089101b8a664481b5b61 Mon Sep 17 00:00:00 2001
-From: Peter Levine 
-Date: Thu, 17 Oct 2019 23:08:57 -0400
-Subject: Fix building against MySQL Connector/C 8
-
-In MySQL Connector/C 8, my_bool is replaced by bool. It was
-previously defined as char. When building against
-MySQL Connector/C 8, this leads to type punning build errors.
-Redefine affected members of struct BindMetaData as bool if using
-version 8 of greater. Otherwise, default to char.
-
-Change-Id: If12b975d95afae86502867cb334cb4195802f91d
-Reviewed-on: https://gerrit.libreoffice.org/81002
-Reviewed-by: Samuel Mehrbrodt 
-Tested-by: Samuel Mehrbrodt 

- .../source/drivers/mysqlc/mysqlc_preparedstatement.hxx | 10 --
- 1 file changed, 8 insertions(+), 2 deletions(-)
-
-diff --git a/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx 
b/connectivity/source/drivers/mysqlc/mysqlc_preparedstatement.hxx
-index 1df2c70..3450473 100644
 

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

2020-06-10 Thread Michał Górny
commit: 9d89f7fcb84c89b49af4aa5d0ef6ca3c54112148
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:26:34 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:54 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d89f7fc

dev-python/websocket-client: Port to py3.9

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

 dev-python/websocket-client/websocket-client-0.57.0.ebuild | 9 ++---
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/dev-python/websocket-client/websocket-client-0.57.0.ebuild 
b/dev-python/websocket-client/websocket-client-0.57.0.ebuild
index cddf08f9b26..490708f1f97 100644
--- a/dev-python/websocket-client/websocket-client-0.57.0.ebuild
+++ b/dev-python/websocket-client/websocket-client-0.57.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
 
 inherit distutils-r1
 
@@ -16,16 +16,11 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 x86 ~x64-macos"
-IUSE="examples test"
-
-RESTRICT="!test? ( test )"
+IUSE="examples"
 
 RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
 "
-DEPEND="
-   test? ( ${RDEPEND} )
-"
 
 S="${WORKDIR}/${MY_PN}-${PV}"
 



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

2020-06-10 Thread Michał Górny
commit: a95f99f97ce879428c39f15bf26c92e3e19d612f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 15:08:40 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a95f99f9

dev-python/nose-random: Port to py3.9

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

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

diff --git a/dev-python/nose-random/nose-random-1.0.0.ebuild 
b/dev-python/nose-random/nose-random-1.0.0.ebuild
index c4a593c9580..973cf59a42b 100644
--- a/dev-python/nose-random/nose-random-1.0.0.ebuild
+++ b/dev-python/nose-random/nose-random-1.0.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 inherit distutils-r1
 



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

2020-06-10 Thread Michał Górny
commit: 2382ec76c99fa72c05732821624cbd86f9d8483e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:23:30 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 15:10:53 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2382ec76

dev-python/cookies: Port to py3.9

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

 dev-python/cookies/cookies-2.2.1-r1.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-python/cookies/cookies-2.2.1-r1.ebuild 
b/dev-python/cookies/cookies-2.2.1-r1.ebuild
index 71d88d21349..e8c760bf849 100644
--- a/dev-python/cookies/cookies-2.2.1-r1.ebuild
+++ b/dev-python/cookies/cookies-2.2.1-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=(python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=(python3_{6..9} pypy3 )
 
 inherit distutils-r1
 
@@ -14,8 +14,6 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 
-BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-
 PATCHES=(
# https://gitlab.com/sashahart/cookies/merge_requests/2
"${FILESDIR}/cookies-2.2.1-fix-warnings.patch"



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

2020-06-10 Thread Michael Orlitzky
commit: 58775a9495ead4d91391bea6edae236068f21721
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Jun 10 13:52:37 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Jun 10 13:52:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58775a94

dev-lang/php: remove old versions vulnerable to CVE-2019-11048.

Bug: https://bugs.gentoo.org/722980
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-lang/php/Manifest  |   3 -
 dev-lang/php/php-7.2.30.ebuild | 755 
 dev-lang/php/php-7.3.17.ebuild | 756 -
 dev-lang/php/php-7.4.5.ebuild  | 746 
 4 files changed, 2260 deletions(-)

diff --git a/dev-lang/php/Manifest b/dev-lang/php/Manifest
index 0c1e577073b..31cf33a3557 100644
--- a/dev-lang/php/Manifest
+++ b/dev-lang/php/Manifest
@@ -1,6 +1,3 @@
-DIST php-7.2.30.tar.xz 12283804 BLAKE2B 
f5d5c9bc56e3c3f32ebc0d830b826d98cd06992573c9cffa2c9bff35c161273079d0d08c1b289129cd8bd5d1f1da106bfee2d0e1c40c3d64b0e12b2452d3512a
 SHA512 
92e79cdd0e8b925012235375ebece19038b42f3751e9623beda5807e3a07484d0faaabb58227c67abb515c188c09c215c9b00cc8dadffc90f0dd09f8f5dd126f
 DIST php-7.2.31.tar.xz 12309936 BLAKE2B 
fc81f41dd4ec8695029bfe1993d76b1fdfe7f16d926f57302b9e85f3acd250967db9b9f0597c47589ae553d5faaaf0266e24b5b64247e017361d991bf96cd4de
 SHA512 
b21c504d0af2c095e4ae5a62c810af96171b927a27ea4694f59555c0d47798d61c3491a92941099cd9c978b3b0f41852ca2cf745e42ee3d9a6d107a5a884c9ee
-DIST php-7.3.17.tar.xz 12116072 BLAKE2B 
5f8a0b1a3de9b7e750d249593be0a3eb9e62040691ebe4549da74d8c321dcd88e970d92285f49a924ef0f38118779d540a94810c08ece2df7dbd8584a8f83c56
 SHA512 
ac99a645a7442c322b8334cb4d091474bb0486b5efe11f8ffc16e4a2c0ecf8dbb5d958206372617350ec70b579dd4756f4d166c2863f3892db480e9bfbd14837
 DIST php-7.3.18.tar.xz 12116280 BLAKE2B 
73d82e4a22f29dbeec221ef3109592a40e559238a0093e80e8e10bcd7de64f3bd58dd6f0835ddf3d9c2323fc37d738301b07291ca11a84c70ddced172676bc20
 SHA512 
e626091c835f6d165ff48ae3be8ddf7a66b0a320c6d77dc98fb73235d560814c180112a9e5478a5b3b6bb01ed99a50f8025fdc3d1ef80cca59e04ac248f9b0bf
-DIST php-7.4.5.tar.xz 10271296 BLAKE2B 
396044265c810732fe7012375602faeb3477b8405d2264a17b29ac0783c0734c2fc1070b1532ea75a716a62c0dfcb01b861a22ebc6fb2e13efef20c40b62530d
 SHA512 
c40070a91d5cab44df9b33d7259dcfb9824efb305a659d075b68695b3c5cebb915f43ce3edc45c9ee8b17a5c558e154842a1a63ac594438ce7adce48c58430fe
 DIST php-7.4.6.tar.xz 10284824 BLAKE2B 
83536e48c6ab6ef357283d2f99a0f1825fdbb1867598514dc87cb8a7181298aa1e6d45659b7a4343fdacdacbbfec9e4cca89f85fe53c9e48696e534da710
 SHA512 
786634d53ed100cc7638e64ca340efdd42405c258638f3f97fcd1816d4f0c643dc8d8b2b0f60d36904343dc8c2af7f9b8e4a652ea66ec2fe324290c72bc09c13

diff --git a/dev-lang/php/php-7.2.30.ebuild b/dev-lang/php/php-7.2.30.ebuild
deleted file mode 100644
index 51d7692ef88..000
--- a/dev-lang/php/php-7.2.30.ebuild
+++ /dev/null
@@ -1,755 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit flag-o-matic systemd autotools
-
-DESCRIPTION="The PHP language runtime engine"
-HOMEPAGE="https://www.php.net/;
-SRC_URI="https://www.php.net/distributions/${P}.tar.xz;
-
-LICENSE="PHP-3.01
-   BSD
-   Zend-2.0
-   bcmath? ( LGPL-2.1+ )
-   fpm? ( BSD-2 )
-   gd? ( gd )
-   unicode? ( BSD-2 LGPL-2.1 )"
-
-SLOT="$(ver_cut 1-2)"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-
-# We can build the following SAPIs in the given order
-SAPIS="embed cli cgi fpm apache2 phpdbg"
-
-# SAPIs and SAPI-specific USE flags (cli SAPI is default on):
-IUSE="${IUSE}
-   ${SAPIS/cli/+cli}
-   threads"
-
-IUSE="${IUSE} acl argon2 bcmath berkdb bzip2 calendar cdb cjk
-   coverage +ctype curl debug
-   enchant exif +fileinfo +filter firebird
-   +flatfile ftp gd gdbm gmp +hash +iconv imap inifile
-   intl iodbc ipv6 +json kerberos ldap ldap-sasl libedit libressl lmdb
-   mhash mssql mysql mysqli nls
-   oci8-instant-client odbc +opcache pcntl pdo +phar +posix postgres qdbm
-   readline recode selinux +session session-mm sharedmem
-   +simplexml snmp soap sockets sodium spell sqlite ssl
-   sysvipc systemd test tidy +tokenizer tokyocabinet truetype unicode wddx 
webp
-   +xml xmlreader xmlwriter xmlrpc xpm xslt zip zip-encryption zlib"
-
-# The supported (that is, autodetected) versions of BDB are listed in
-# the ./configure script. Other versions *work*, but we need to stick to
-# the ones that can be detected to avoid a repeat of bug #564824.
-COMMON_DEPEND="
-   >=app-eselect/eselect-php-0.9.1[apache2?,fpm?]
-   >=dev-libs/libpcre-8.32[unicode]
-   fpm? ( acl? ( sys-apps/acl ) )
-   apache2? ( www-servers/apache[apache2_modules_unixd(+),threads=] )

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

2020-06-10 Thread Michał Górny
commit: ff0c1394a38854414a2d349c0124df598875f9fd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:01:37 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 14:02:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff0c1394

dev-python/s3transfer: Add python@

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

 dev-python/s3transfer/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/s3transfer/metadata.xml 
b/dev-python/s3transfer/metadata.xml
index 2feb8f78c53..c2621bab9ac 100644
--- a/dev-python/s3transfer/metadata.xml
+++ b/dev-python/s3transfer/metadata.xml
@@ -5,6 +5,10 @@
chutz...@gentoo.org
Patrick McLean

+   
+   pyt...@gentoo.org
+   Python
+   

boto/s3transfer
s3transfer



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

2020-06-10 Thread Michał Górny
commit: b929540acb2a7c73096a03f264f4f5b1e732f8e2
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 14:00:45 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 14:02:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b929540a

dev-python/s3transfer: Bump to 0.3.3

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

 dev-python/s3transfer/Manifest |  1 +
 .../s3transfer/files/s3transfer-0.3.3-py38.patch   | 32 +++
 dev-python/s3transfer/s3transfer-0.3.3.ebuild  | 36 ++
 3 files changed, 69 insertions(+)

diff --git a/dev-python/s3transfer/Manifest b/dev-python/s3transfer/Manifest
index 2e29d9a6e97..d3695c154ca 100644
--- a/dev-python/s3transfer/Manifest
+++ b/dev-python/s3transfer/Manifest
@@ -1,2 +1,3 @@
 DIST s3transfer-0.2.0.tar.gz 118361 BLAKE2B 
0cb0a29e6dfa82762084396db1950a9e1baf4de1d9c8b9f0db3dbf1e274636f60a89ceb959d55cc22fe41c4ce175ab53f414c5c44f08624cc43f0d289f768863
 SHA512 
2e37a13da67cdabb49deeb177fd9f8d6393128e757e6c9bd93c99eb95a3edbd14736025e284f3173e8247d23239abae3700d894ba0d138f970ceaff748aa6e9e
 DIST s3transfer-0.3.1.tar.gz 118716 BLAKE2B 
26c25c0eb50b423c08e7ac64e902ab7cbb9e3dcb9cdc7386e6ead17f42ef18bcbb0d60f8334653220f797a03b8a877ae2487de25d8c95344f852d71bb0716408
 SHA512 
75df6f66d4b0d4a87a88a160cc1c962348331596ae346ebd198fbfb1e1c4d2c216b19627a0600d5a7966d0e683e0a46f6dbae47c9b44bdd65340400f93ed9b3c
+DIST s3transfer-0.3.3.tar.gz 118872 BLAKE2B 
a8e10a135052a29cbc5949bd8dc82d0b7f76840e6dbc6ba5ccdfe23757d363476f1dc330cee36ceb88e5c5287f644a27ed50b518a346f1b6b8ae38a9ca5576c9
 SHA512 
e258958b47812d8620ea6ef604dadb2a13beef9bbed005e8d38153039a291099786a3cec68511f2ff4372ff57f60440ca700b6783967484d8284b4ad0c1ae754

diff --git a/dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch 
b/dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch
new file mode 100644
index 000..89f3d4b5ab3
--- /dev/null
+++ b/dev-python/s3transfer/files/s3transfer-0.3.3-py38.patch
@@ -0,0 +1,32 @@
+From f211b9851698d07cf218e78ebb39a337c8751df8 Mon Sep 17 00:00:00 2001
+From: Christopher Baines 
+Date: Sat, 2 May 2020 15:19:58 +0100
+Subject: [PATCH] Fix test_download_futures_fail_triggers_shutdown with Python
+ 3.8
+
+The behaviour of set_exception for futures changed in Python 3.8, it'll now
+raise concurrent.futures.InvalidStateError if the future is already done [1],
+which is the case in this test because set_result has already been called on
+the future.
+
+1: https://bugs.python.org/issue33238
+
+Fix the test by not using the future from SequentialExecutor, and instead
+creating a future which doesn't have a result.
+---
+ tests/unit/test_s3transfer.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/unit/test_s3transfer.py b/tests/unit/test_s3transfer.py
+index a87b4dd..4715be2 100644
+--- a/tests/unit/test_s3transfer.py
 b/tests/unit/test_s3transfer.py
+@@ -465,7 +465,7 @@ def __init__(self, max_workers):
+ self.is_first = True
+ 
+ def submit(self, function):
+-future = super(FailedDownloadParts, self).submit(function)
++future = futures.Future()
+ if self.is_first:
+ # This is the download_parts_thread.
+ future.set_exception(

diff --git a/dev-python/s3transfer/s3transfer-0.3.3.ebuild 
b/dev-python/s3transfer/s3transfer-0.3.3.ebuild
new file mode 100644
index 000..843a42f09de
--- /dev/null
+++ b/dev-python/s3transfer/s3transfer-0.3.3.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="An Amazon S3 Transfer Manager"
+HOMEPAGE="https://github.com/boto/s3transfer;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   dev-python/botocore[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests nose
+
+PATCHES=(
+   "${FILESDIR}"/${P}-py38.patch
+)
+
+python_test() {
+   nosetests -v tests/unit/ tests/functional/ || die "tests failed under 
${EPYTHON}"
+}



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

2020-06-10 Thread Michał Górny
commit: 0a215b2d3a4e73cafe6407f06a6d3cb2501910e4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 13:37:06 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 14:02:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a215b2d

dev-python/s3transfer: Port to py3.9

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

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

diff --git a/dev-python/s3transfer/s3transfer-0.3.1.ebuild 
b/dev-python/s3transfer/s3transfer-0.3.1.ebuild
index 396d7d98091..18df49217ff 100644
--- a/dev-python/s3transfer/s3transfer-0.3.1.ebuild
+++ b/dev-python/s3transfer/s3transfer-0.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
+PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1



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

2020-06-10 Thread Ben Kohler
commit: 5de485b4892d10a2f00a03216b62ffdbbcf5c7e1
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jun 10 14:30:01 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jun 10 14:30:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de485b4

net-misc/dropbox: bump to 99.4.501

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

 net-misc/dropbox/Manifest|   2 +
 net-misc/dropbox/dropbox-99.4.501.ebuild | 102 +++
 2 files changed, 104 insertions(+)

diff --git a/net-misc/dropbox/Manifest b/net-misc/dropbox/Manifest
index 9948de027b0..998bf7c9680 100644
--- a/net-misc/dropbox/Manifest
+++ b/net-misc/dropbox/Manifest
@@ -1,2 +1,4 @@
 DIST dropbox-lnx.x86-98.4.158.tar.gz 96568004 BLAKE2B 
fc9ae4cf5d9ad1798dd5d55bf90cd5e77e7cd7405626fb55d4693e26d028d97a81d2843eb03d60de94f552cc446fffa4caa679ba3a750098a58549fc78ff4c67
 SHA512 
ce6432bbec1ec024e6753a93f2d0eed3af60de521f411f52efb63767eb500a85da80102a011e077fd9953d4827403d02143b186f30137ef7a338cb01664911a2
+DIST dropbox-lnx.x86-99.4.501.tar.gz 97126978 BLAKE2B 
38476b8c0b36c385c69c44588c5b3ea227a8f7db2b1bc08c75558dfae6e962c5f9df4ce82ddb8afaa53b4b6522ec37f2cc5cfffce6d5b293a64b98333c33641b
 SHA512 
01d91cb5be1439fd1d2e47b93da570650cbc21aa4ba0bff05f066ed5c5a60d162a7a5e3eb343e6a2ca48709964b29570b94cc8702a1064a8fce0779acb6ea14e
 DIST dropbox-lnx.x86_64-98.4.158.tar.gz 100751556 BLAKE2B 
8ebbfa7101852e531edf9c6b3318c14418c95a0e618ce3725411e6fb1dbae70860de9b0daeba4c824fff0b3bd5f9a9347a4fe09c1433f76be3b3cc86184d769e
 SHA512 
00db27742f8dff9d3fb96f06fcefdb30450b675b3c3cd35df717908455a8b1ca0419efff8932022d82c89dd3fccca183bc1bb16a1fb25c0505c49dfd03b06a19
+DIST dropbox-lnx.x86_64-99.4.501.tar.gz 101375862 BLAKE2B 
46c03250bd2c2d480b67a645c03fc8fc0343aeb5906afd1807b49bfb44d07606b59a61fa79fcad48cb4029969f457ef347d5f1394dbf53b10586bc05b068295e
 SHA512 
4d8b350aa8cbc9cc5491c8978cbe56eb8e08110f48dd4187d7287a46847d8a4316158ea39e09e707a135a10424e8c6bc2a66b3cf4f9b8529fc0cbf755744a118

diff --git a/net-misc/dropbox/dropbox-99.4.501.ebuild 
b/net-misc/dropbox/dropbox-99.4.501.ebuild
new file mode 100644
index 000..38f892d3ba4
--- /dev/null
+++ b/net-misc/dropbox/dropbox-99.4.501.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop pax-utils systemd xdg
+
+DESCRIPTION="Dropbox daemon (pretends to be GUI-less)"
+HOMEPAGE="https://www.dropbox.com/;
+SRC_URI="
+   amd64? ( 
https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.x86_64-${PV}.tar.gz
 )
+   x86? ( 
https://clientupdates.dropboxstatic.com/dbx-releng/client/dropbox-lnx.x86-${PV}.tar.gz
 )"
+
+LICENSE="BSD-2 CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-linux"
+IUSE="+librsync-bundled selinux X"
+
+RESTRICT="mirror strip"
+
+QA_PREBUILT="opt/.*"
+QA_EXECSTACK="opt/dropbox/dropbox"
+
+BDEPEND="dev-util/patchelf"
+
+# Be sure to have GLIBCXX_3.4.9, #393125
+RDEPEND="
+   X? (
+   dev-libs/glib:2
+   media-libs/fontconfig
+   media-libs/freetype
+   virtual/jpeg
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXinerama
+   x11-libs/libXxf86vm
+   x11-libs/pango[X]
+   x11-misc/wmctrl
+   x11-themes/hicolor-icon-theme
+   )
+   !librsync-bundled? ( =sys-devel/gcc-4.2.0
+   sys-libs/zlib
+   sys-libs/ncurses-compat:5"
+
+src_unpack() {
+   unpack ${A}
+   mkdir -p "${S}" || die
+   mv "${WORKDIR}"/.dropbox-dist/* "${S}" || die
+   mv "${S}"/dropbox-lnx.*-${PV}/* "${S}" || die
+   rmdir "${S}"/dropbox-lnx.*-${PV}/ || die
+   rmdir .dropbox-dist || die
+}
+
+src_prepare() {
+   default
+
+   rm -vf libGL.so.1 libX11* libdrm.so.2 libffi.so.6 libpopt.so.0 wmctrl 
|| die
+   # tray icon doesnt load when removing libQt5* (bug 641416)
+   #rm -vrf libQt5* libicu* qt.conf plugins/ || die
+   if use X ; then
+   mv images/hicolor/16x16/status "${T}" || die
+   else
+   rm -vrf images || die
+   fi
+   if use librsync-bundled ; then
+   patchelf --set-rpath '$ORIGIN' librsyncffi_native.*.so || die
+   else
+   rm -vf librsync.so.1 || die
+   fi
+   patchelf --set-rpath '$ORIGIN' \
+   apex._apex.*.so \
+   nucleus_python.*.so \
+   tprt.*.so \
+   || die
+   pax-mark cm dropbox
+   mv README ACKNOWLEDGEMENTS "${T}" || die
+}
+
+src_install() {
+   local targetdir="/opt/dropbox"
+
+   insinto "${targetdir}"
+   doins -r *
+   fperms a+x "${targetdir}"/{dropbox,dropboxd}
+   dosym "${targetdir}/dropboxd" "/opt/bin/dropbox"
+
+   use X && doicon -s 16 -c status "${T}"/status
+
+   make_desktop_entry 

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

2020-06-10 Thread Ben Kohler
commit: 8ead286634467de5081b8f22f3f7d3757f9651a5
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jun 10 14:22:14 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jun 10 14:30:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ead2866

net-misc/remmina: bump to 1.4.6

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

 net-misc/remmina/Manifest |  1 +
 net-misc/remmina/remmina-1.4.6.ebuild | 98 +++
 2 files changed, 99 insertions(+)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index 6658e4d4814..e4c2364fc20 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,3 +1,4 @@
 DIST Remmina-v1.4.3.tar.gz 1705751 BLAKE2B 
4d49b5d5da4017cc1870a5e37a73db767862997cffdd58b080ab5707eeb293eed7e756ca974a4f4922bb9417e94610fe07b1e774f5ad7e269e797362ff264e83
 SHA512 
9f555f9ff60e2a136f6379a0f2828d091aa972dcff7ebd09eaf1834dc10f506d218e5cb6856c17f625c1040a11240da2ed5ebe9f4fe32a083494cfcbbdef1a41
 DIST Remmina-v1.4.4.tar.gz 1786300 BLAKE2B 
b4e13a34319c74f1fc935b1b72307e1dbc74d868e23f6b626e4477ca1253e52c0ba70270862c8e6e8fbfc8f7591a27b9319c41b398d4e1cf01339eb778a677b3
 SHA512 
2264a2d0f6ba65fbb46a2a8cc0a5c2ccd2f562e737b03cc393e7bed811d6437e76792ce3ec5013b48c9b068a58cf92081a49d05bd9be6781960e8db7e4569e35
 DIST Remmina-v1.4.5.tar.gz 1787506 BLAKE2B 
095a01cca168daaef9ef59ff5adb9bb475467e8e8c42cac74a1a605627b09aa7246aa941b514b0de29739516aa988148f377040ed8629df3d5b17f0b1158cf76
 SHA512 
fec07b488db8d438aa6a0263e13557c10f1401a81b3371a2da03a1037d51f8e58e88652a15c6d6ce9e02535ef93ed0f9c5b674ab5efab430380f4b7dd57c4d9d
+DIST Remmina-v1.4.6.tar.gz 1895441 BLAKE2B 
38dbda1976f3af3ad89c84eaecf50c42a2a22186dd013d30ae0cea83f5ee54af1443c196b79c1b4684e6afbc6f3d8fc8461fae18806476b8ae1a79148a2ccb12
 SHA512 
8b918502622957f6a1637d5d79ec605f7bf1c164f902c76a3a65dc316a8ccd11de63066182ffad4783bcb7f86d5e04ca6462f6a5d2e4256c4ae14c6f483419ea

diff --git a/net-misc/remmina/remmina-1.4.6.ebuild 
b/net-misc/remmina/remmina-1.4.6.ebuild
new file mode 100644
index 000..f429622f2dc
--- /dev/null
+++ b/net-misc/remmina/remmina-1.4.6.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake eutils xdg
+
+MY_P="${PN^}-v${PV}"
+
+DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client"
+HOMEPAGE="https://remmina.org/;
+SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telemetry telepathy vnc webkit zeroconf"
+
+DEPEND="
+   dev-libs/glib:2
+   dev-libs/json-glib
+   dev-libs/libsodium:=
+   net-libs/libsoup
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libxkbfile
+   appindicator? ( dev-libs/libappindicator:3 )
+   crypt? ( dev-libs/libgcrypt:0= )
+   rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129
+   =net-dns/avahi-0.8-r2[dbus,gtk] 


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

2020-06-10 Thread Ben Kohler
commit: cbfba4921a6ecef92e449176b6887744b7299dfa
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jun 10 14:23:20 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jun 10 14:30:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbfba492

net-misc/remmina: drop old

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

 net-misc/remmina/Manifest|   1 -
 net-misc/remmina/remmina-1.4.4-r1.ebuild |  98 -
 net-misc/remmina/remmina-1.4.4-r2.ebuild |  97 -
 net-misc/remmina/remmina-1.4.4.ebuild| 103 ---
 4 files changed, 299 deletions(-)

diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest
index e4c2364fc20..585685b76eb 100644
--- a/net-misc/remmina/Manifest
+++ b/net-misc/remmina/Manifest
@@ -1,4 +1,3 @@
 DIST Remmina-v1.4.3.tar.gz 1705751 BLAKE2B 
4d49b5d5da4017cc1870a5e37a73db767862997cffdd58b080ab5707eeb293eed7e756ca974a4f4922bb9417e94610fe07b1e774f5ad7e269e797362ff264e83
 SHA512 
9f555f9ff60e2a136f6379a0f2828d091aa972dcff7ebd09eaf1834dc10f506d218e5cb6856c17f625c1040a11240da2ed5ebe9f4fe32a083494cfcbbdef1a41
-DIST Remmina-v1.4.4.tar.gz 1786300 BLAKE2B 
b4e13a34319c74f1fc935b1b72307e1dbc74d868e23f6b626e4477ca1253e52c0ba70270862c8e6e8fbfc8f7591a27b9319c41b398d4e1cf01339eb778a677b3
 SHA512 
2264a2d0f6ba65fbb46a2a8cc0a5c2ccd2f562e737b03cc393e7bed811d6437e76792ce3ec5013b48c9b068a58cf92081a49d05bd9be6781960e8db7e4569e35
 DIST Remmina-v1.4.5.tar.gz 1787506 BLAKE2B 
095a01cca168daaef9ef59ff5adb9bb475467e8e8c42cac74a1a605627b09aa7246aa941b514b0de29739516aa988148f377040ed8629df3d5b17f0b1158cf76
 SHA512 
fec07b488db8d438aa6a0263e13557c10f1401a81b3371a2da03a1037d51f8e58e88652a15c6d6ce9e02535ef93ed0f9c5b674ab5efab430380f4b7dd57c4d9d
 DIST Remmina-v1.4.6.tar.gz 1895441 BLAKE2B 
38dbda1976f3af3ad89c84eaecf50c42a2a22186dd013d30ae0cea83f5ee54af1443c196b79c1b4684e6afbc6f3d8fc8461fae18806476b8ae1a79148a2ccb12
 SHA512 
8b918502622957f6a1637d5d79ec605f7bf1c164f902c76a3a65dc316a8ccd11de63066182ffad4783bcb7f86d5e04ca6462f6a5d2e4256c4ae14c6f483419ea

diff --git a/net-misc/remmina/remmina-1.4.4-r1.ebuild 
b/net-misc/remmina/remmina-1.4.4-r1.ebuild
deleted file mode 100644
index 1d0d44c06ec..000
--- a/net-misc/remmina/remmina-1.4.4-r1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils gnome2-utils xdg-utils
-
-MY_P="${PN^}-v${PV}"
-
-DESCRIPTION="A GTK+ RDP, SPICE, VNC, XDMCP and SSH client"
-HOMEPAGE="https://remmina.org/;
-SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telepathy vnc webkit zeroconf"
-
-CDEPEND="
-   dev-libs/glib:2
-   dev-libs/json-glib
-   dev-libs/libsodium:=
-   net-libs/libsoup
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libxkbfile
-   appindicator? ( dev-libs/libappindicator:3 )
-   crypt? ( dev-libs/libgcrypt:0= )
-   rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129
-   =net-dns/avahi-0.8-r2[dbus,gtk] 
https://remmina.org/;
-SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telepathy vnc webkit zeroconf"
-
-DEPEND="
-   dev-libs/glib:2
-   dev-libs/json-glib
-   dev-libs/libsodium:=
-   net-libs/libsoup
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libxkbfile
-   appindicator? ( dev-libs/libappindicator:3 )
-   crypt? ( dev-libs/libgcrypt:0= )
-   rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129
-   =net-dns/avahi-0.8-r2[dbus,gtk] 
https://remmina.org/;
-SRC_URI="https://gitlab.com/Remmina/Remmina/-/archive/v${PV}/${MY_P}.tar.gz;
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="appindicator crypt cups examples gnome-keyring kwallet libressl nls 
spice ssh rdp telepathy vnc webkit zeroconf"
-
-CDEPEND="
-   dev-libs/glib:2
-   dev-libs/json-glib
-   dev-libs/libsodium:=
-   net-libs/libsoup
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libxkbfile
-   appindicator? ( dev-libs/libappindicator:3 )
-   crypt? ( dev-libs/libgcrypt:0= )
-   rdp? ( >=net-misc/freerdp-2.0.0_rc4_p1129
-   =net-dns/avahi-0.8-r2[dbus,gtk] 


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

2020-06-10 Thread Joonas Niilola
commit: 1193057673aeefb3eb9880e053ebfba6d0a734b5
Author: Philippe Chaintreuil  parallaxshift  com>
AuthorDate: Sun May 17 19:22:43 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 10 14:24:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11930576

mail-filter/spamassassin: Add GeoIP2 support

Also remove geoip test removal, upstream has fixed bug #7622.

Closes: https://bugs.gentoo.org/675494
Closes: https://github.com/gentoo/gentoo/pull/15867
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Philippe Chaintreuil  parallaxshift.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 .../spamassassin/spamassassin-3.4.4-r3.ebuild  | 310 +
 1 file changed, 310 insertions(+)

diff --git a/mail-filter/spamassassin/spamassassin-3.4.4-r3.ebuild 
b/mail-filter/spamassassin/spamassassin-3.4.4-r3.ebuild
new file mode 100644
index 000..1e1e0be66e4
--- /dev/null
+++ b/mail-filter/spamassassin/spamassassin-3.4.4-r3.ebuild
@@ -0,0 +1,310 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit perl-functions systemd toolchain-funcs
+
+MY_P="Mail-SpamAssassin-${PV//_/-}"
+S="${WORKDIR}/${MY_P}"
+DESCRIPTION="An extensible mail filter which can identify and tag spam"
+HOMEPAGE="https://spamassassin.apache.org/;
+SRC_URI="mirror://apache/spamassassin/source/${MY_P}.tar.bz2"
+
+LICENSE="Apache-2.0 GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-macos"
+IUSE="berkdb cron ipv6 ldap libressl mysql postgres qmail sqlite ssl test"
+RESTRICT="!test? ( test )"
+
+# The Makefile.PL script checks for dependencies, but only fails if a
+# required (i.e. not optional) dependency is missing. We therefore
+# require most of the optional modules only at runtime.
+REQDEPEND="acct-user/spamd
+   acct-group/spamd
+   dev-lang/perl:=
+   dev-perl/HTML-Parser
+   dev-perl/Net-DNS
+   dev-perl/NetAddr-IP
+   virtual/perl-Archive-Tar
+   virtual/perl-Digest-SHA
+   virtual/perl-IO-Zlib
+   virtual/perl-Time-HiRes
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl )
+   )"
+
+# SpamAssassin doesn't use libwww-perl except as a fallback for when
+# curl/wget are missing, so we depend on one of those instead. Some
+# mirrors use https, so we need those utilities to support SSL.
+#
+# re2c is needed to compile the rules (sa-compile).
+#
+# We still need the old Digest-SHA1 because razor2 has not been ported
+# to Digest-SHA.
+OPTDEPEND="app-crypt/gnupg
+   dev-perl/BSD-Resource
+   dev-perl/Digest-SHA1
+   dev-perl/Encode-Detect
+   || ( dev-perl/GeoIP2 dev-perl/Geo-IP )
+   dev-perl/HTTP-Date
+   dev-perl/Mail-DKIM
+   dev-perl/Mail-SPF
+   dev-perl/Net-Patricia
+   dev-perl/Net-CIDR-Lite
+   dev-util/re2c
+   || ( net-misc/wget[ssl] net-misc/curl[ssl] )
+   virtual/perl-MIME-Base64
+   virtual/perl-Pod-Parser
+   berkdb? ( virtual/perl-DB_File )
+   ipv6? ( dev-perl/IO-Socket-INET6 )
+   ldap? ( dev-perl/perl-ldap )
+   mysql? (
+   dev-perl/DBI
+   dev-perl/DBD-mysql
+   )
+   postgres? (
+   dev-perl/DBI
+   dev-perl/DBD-Pg
+   )
+   sqlite? (
+   dev-perl/DBI
+   dev-perl/DBD-SQLite
+   )
+   ssl? ( dev-perl/IO-Socket-SSL )"
+
+DEPEND="${REQDEPEND}
+   test? (
+   ${OPTDEPEND}
+   virtual/perl-Test-Harness
+   )"
+RDEPEND="${REQDEPEND} ${OPTDEPEND}"
+
+# There are a few renames and use-dependent ones in src_istall as well.
+DOCS=(
+   NOTICE TRADEMARK CREDITS UPGRADE USAGE sql/README.bayes
+   sql/README.awl procmailrc.example sample-nonspam.txt
+   sample-spam.txt spamd/PROTOCOL spamd/README.vpopmail
+   spamd-apache2/README.apache
+)
+
+src_prepare() {
+   default
+
+   # The sa_compile test does some weird stuff like hopping around in
+   # the directory tree and calling "make" to create a dist tarball
+   # from ${S}. It fails, and is more trouble than it's worth...
+   perl_rm_files t/sa_compile.t
+
+   # The spamc tests (which need the networked spamd daemon) fail for
+   # irrelevant reasons. It's too hard to disable them (unlike the
+   # spamd tests themselves -- see src_test), so use a crude
+   # workaround.
+   perl_rm_files t/spamc_*.t
+
+   # Disable plugin by default
+   sed -i -e 's/^loadplugin/\#loadplugin/g' \
+   "rules/init.pre" \
+   || die "failed to disable plugins by default"
+}
+
+src_configure() {
+   # This is how and where the perl-module eclass disables the
+   # MakeMaker interactive prompt.
+   export PERL_MM_USE_DEFAULT=1
+
+   # Set SYSCONFDIR explicitly so we can't get 

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

2020-06-10 Thread Joonas Niilola
commit: 9a92f89023d4d4a6b6687f9196062bab87c52e07
Author: Petr Vaněk  atlas  cz>
AuthorDate: Thu May  7 14:40:56 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 10 14:24:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a92f890

dev-libs/hyperscan: bug fixes: #674218, #707486, #722802

* support non-English locales; The patch is taken from
  https://github.com/intel/hyperscan/issues/217#issuecomment-583932263
* respect cpu_flags_x86 USE flags
* respect -O flags
* set release build type; CMAKE_BUILD_TYPE=Release disables -Werror flag
  which used to trigger false positive error in GCC-10.
  https://github.com/intel/hyperscan/issues/239

Closes: https://bugs.gentoo.org/674218
Closes: https://bugs.gentoo.org/707486
Closes: https://bugs.gentoo.org/722802
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Petr Vaněk  atlas.cz>
Signed-off-by: Joonas Niilola  gentoo.org>

 .../hyperscan/files/hyperscan-5.2.1-locales.patch| 20 
 dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild | 15 ++-
 2 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/dev-libs/hyperscan/files/hyperscan-5.2.1-locales.patch 
b/dev-libs/hyperscan/files/hyperscan-5.2.1-locales.patch
new file mode 100644
index 000..985a6f13034
--- /dev/null
+++ b/dev-libs/hyperscan/files/hyperscan-5.2.1-locales.patch
@@ -0,0 +1,20 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 83197af..297a3b3 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -187,9 +187,9 @@ else()
+ set (EXEC_ARGS ${CC_ARG1} -c -Q --help=target -march=native 
-mtune=native)
+ execute_process(COMMAND ${CMAKE_C_COMPILER} ${EXEC_ARGS}
+ OUTPUT_VARIABLE _GCC_OUTPUT)
+-string(FIND "${_GCC_OUTPUT}" "Known" POS)
+-string(SUBSTRING "${_GCC_OUTPUT}" 0 ${POS} _GCC_OUTPUT)
+-string(REGEX REPLACE ".*march=[ \t]*([^ \n]*)[ \n].*" "\\1"
++string(FIND "${_GCC_OUTPUT}" "march" POS)
++string(SUBSTRING "${_GCC_OUTPUT}" ${POS} -1 _GCC_OUTPUT)
++string(REGEX REPLACE "march=[ \t]*([^ \n]*)[ \n].*" "\\1"
+ GNUCC_ARCH "${_GCC_OUTPUT}")
+ 
+ # test the parsed flag
+-- 
+2.26.2
+

diff --git a/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild 
b/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild
index aa7ab14e706..1f23a817dcb 100644
--- a/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild
+++ b/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://www.hyperscan.io/ 
https://github.com/intel/hyperscan;
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+cpu_flags_x86_ssse3 static-libs"
+IUSE="cpu_flags_x86_avx2 +cpu_flags_x86_ssse3 static-libs"
 
 RDEPEND="dev-libs/boost"
 DEPEND="${RDEPEND}"
@@ -25,16 +25,29 @@ BDEPEND="
 
 REQUIRED_USE="cpu_flags_x86_ssse3"
 
+PATCHES=(
+   "${FILESDIR}/${P}-locales.patch"
+)
+
 src_prepare() {
+   # Respect user -O flags
+   sed -i '/set(OPT_CX*_FLAG/d' CMakeLists.txt || die
+
# upstream workaround
append-cxxflags -Wno-redundant-move
cmake_src_prepare
 }
 
 src_configure() {
+   CMAKE_BUILD_TYPE=Release
+
+   use cpu_flags_x86_ssse3 && append-flags -mssse3
+   use cpu_flags_x86_avx2  && append-flags -mavx2
+
local mycmakeargs=(
-DBUILD_SHARED_LIBS=$(usex static-libs OFF ON)
-DBUILD_STATIC_AND_SHARED=$(usex static-libs ON OFF)
+   -DFAT_RUNTIME=false
)
cmake_src_configure
 }



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

2020-06-10 Thread Joonas Niilola
commit: 941a92ebea9e55817509e59d24396d6205cbac23
Author: Petr Vaněk  atlas  cz>
AuthorDate: Mon May 25 15:03:18 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 10 14:24:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=941a92eb

dev-libs/hyperscan: bump to 5.3.0

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Petr Vaněk  atlas.cz>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/hyperscan/Manifest   |  1 +
 dev-libs/hyperscan/hyperscan-5.3.0.ebuild | 53 +++
 2 files changed, 54 insertions(+)

diff --git a/dev-libs/hyperscan/Manifest b/dev-libs/hyperscan/Manifest
index af6b6034e0b..2e5b6029c6a 100644
--- a/dev-libs/hyperscan/Manifest
+++ b/dev-libs/hyperscan/Manifest
@@ -1 +1,2 @@
 DIST hyperscan-5.2.1.tar.gz 1818935 BLAKE2B 
8b073c946b970867221043b88f36203a0bfa3f2b94002ce2e46f0aa5c616d3e09f19a750510bd88ed30d0aa4324c0d0f04d6a816775b4bed2c246bbc1548b2f0
 SHA512 
e6ac2aef1f3efa1535c00d73fa590ea62fff4686c4ad3ee023d2e72c51896ca4616ec1b85d7c6f88ac7b42d92c3557b9c4bb3b51cfb796e20a79d53b28e53b6c
+DIST hyperscan-5.3.0.tar.gz 1824077 BLAKE2B 
6d1c8ac8df32e8e4ac09f51ad292e566c2af2b7de9fb1f0bf99b233b9647b527ea115b6bdace5533927bc7a0eace626921b391ad3e78d62fe54636ae13b9f26e
 SHA512 
a4d85ffd2264e8e6745340ba51431361775a1e7a2da78edd31f6f53552ac61fdef718710ae53a254b7d5000f9ec1aafe7a48d9c55e76f5c6822486150bbc6c56

diff --git a/dev-libs/hyperscan/hyperscan-5.3.0.ebuild 
b/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
new file mode 100644
index 000..6e01c2f6c6b
--- /dev/null
+++ b/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..8} )
+
+inherit cmake flag-o-matic python-any-r1
+
+DESCRIPTION="High-performance regular expression matching library"
+SRC_URI="https://github.com/intel/hyperscan/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+HOMEPAGE="https://www.hyperscan.io/ https://github.com/intel/hyperscan;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpu_flags_x86_avx2 +cpu_flags_x86_ssse3 static-libs"
+
+RDEPEND="dev-libs/boost"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   ${PYTHON_DEPS}
+   dev-util/ragel
+"
+
+REQUIRED_USE="cpu_flags_x86_ssse3"
+
+src_prepare() {
+   # Respect user -O flags
+   sed -i '/set(OPT_CX*_FLAG/d' CMakeLists.txt || die
+
+   # upstream workaround
+   append-cxxflags -Wno-redundant-move
+   cmake_src_prepare
+}
+
+src_configure() {
+   CMAKE_BUILD_TYPE=Release
+
+   use cpu_flags_x86_ssse3 && append-flags -mssse3
+   use cpu_flags_x86_avx2  && append-flags -mavx2
+
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=$(usex static-libs OFF ON)
+   -DBUILD_STATIC_AND_SHARED=$(usex static-libs ON OFF)
+   -DFAT_RUNTIME=false
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   "${BUILD_DIR}"/bin/unit-hyperscan || die
+}



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

2020-06-10 Thread Joonas Niilola
commit: 7f5372cb31671675611aae3c8e22d00d1deee0cc
Author: Petr Vaněk  atlas  cz>
AuthorDate: Wed Jun  3 09:27:38 2020 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jun 10 14:24:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5372cb

dev-libs/hyperscan: port to py39

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Petr Vaněk  atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/15681
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild | 2 +-
 dev-libs/hyperscan/hyperscan-5.3.0.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild 
b/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild
index 1f23a817dcb..6cfd5c07a2e 100644
--- a/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild
+++ b/dev-libs/hyperscan/hyperscan-5.2.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit cmake flag-o-matic python-any-r1
 

diff --git a/dev-libs/hyperscan/hyperscan-5.3.0.ebuild 
b/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
index 6e01c2f6c6b..2b2917b7102 100644
--- a/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
+++ b/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit cmake flag-o-matic python-any-r1
 



[gentoo-commits] repo/gentoo:master commit in: mail-filter/opendkim/files/, mail-filter/opendkim/

2020-06-10 Thread Michael Orlitzky
commit: 79567f95d25c83baea0df69d7d30b7f372d6c4ef
Author: Wynn Wolf Arbor  oriole  systems>
AuthorDate: Tue Jun  9 14:41:50 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Jun 10 14:45:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79567f95

mail-filter/opendkim: Fix build on musl

The build of libvbr, which is included in opendkim and enabled by
default in the ebuild, fails on musl because the '__P' macro is not
defined. glibc defines it along with '__PMT' in cdefs.h, but notes that
they are kept "only because some other projects expect the macros to be
defined".

Since cdefs.h is not included in musl, patch vbr.h to include this
particular macro definition.

See also: https://github.com/trusteddomainproject/OpenDKIM/pull/74

Closes: https://github.com/gentoo/gentoo/pull/16140
Signed-off-by: Wynn Wolf Arbor  oriole.systems>
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Michael Orlitzky  gentoo.org>

 .../opendkim-2.10.3-define-P-macro-in-libvbr.patch | 40 ++
 mail-filter/opendkim/opendkim-2.10.3-r18.ebuild|  1 +
 2 files changed, 41 insertions(+)

diff --git 
a/mail-filter/opendkim/files/opendkim-2.10.3-define-P-macro-in-libvbr.patch 
b/mail-filter/opendkim/files/opendkim-2.10.3-define-P-macro-in-libvbr.patch
new file mode 100644
index 000..bbb4eb8b33b
--- /dev/null
+++ b/mail-filter/opendkim/files/opendkim-2.10.3-define-P-macro-in-libvbr.patch
@@ -0,0 +1,40 @@
+From 50a91575cee8d08682f090d2d6bdb4806eccfbcd Mon Sep 17 00:00:00 2001
+From: Wynn Wolf Arbor 
+Date: Wed, 10 Jun 2020 09:37:03 +0200
+Subject: [PATCH] Define __P() macro in libvbr
+
+Definitions for this macro have been added throughout the codebase in
+commits 91e7407d, 705948fd, 227fa252, 842c1733, and b730bdc0, but one
+was still missing from libvbr. glibc contains a definition for legacy
+reasons, but other libcs might not. Particularly, the musl libc does not
+contain it, leading to build errors when enabling support for VBR.
+
+Add a definition for __P() to vbr.h to fix this.
+---
+ libvbr/vbr.h | 10 ++
+ 1 file changed, 10 insertions(+)
+
+diff --git a/libvbr/vbr.h b/libvbr/vbr.h
+index 4bef1f36..3bcb9212 100644
+--- a/libvbr/vbr.h
 b/libvbr/vbr.h
+@@ -12,6 +12,16 @@
+ /* system includes */
+ #include 
+
++#ifdef __STDC__
++# ifndef __P
++#  define __P(x)  x
++# endif /* ! __P */
++#else /* __STDC__ */
++# ifndef __P
++#  define __P(x)  ()
++# endif /* ! __P */
++#endif /* __STDC__ */
++
+ /* strings */
+ #define   VBR_ALL "all"
+ #define   VBR_INFOHEADER  "VBR-Info"
+--
+2.27.0
+

diff --git a/mail-filter/opendkim/opendkim-2.10.3-r18.ebuild 
b/mail-filter/opendkim/opendkim-2.10.3-r18.ebuild
index 260010392d1..039036e2305 100644
--- a/mail-filter/opendkim/opendkim-2.10.3-r18.ebuild
+++ b/mail-filter/opendkim/opendkim-2.10.3-r18.ebuild
@@ -51,6 +51,7 @@ PATCHES=(
"${FILESDIR}/${P}-openrc.patch"
"${FILESDIR}/${P}-openssl-1.1.1.patch.r2"
"${FILESDIR}/${P}-lua-pkgconfig.patch"
+   "${FILESDIR}/${P}-define-P-macro-in-libvbr.patch"
 )
 
 src_prepare() {



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

2020-06-10 Thread Michał Górny
commit: 0b8af7aa52743ee0ac0faa801ec3acac47815027
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  9 18:04:56 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:31:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b8af7aa

dev-python/nbformat: Port to py3.9

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

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

diff --git a/dev-python/nbformat/nbformat-5.0.7.ebuild 
b/dev-python/nbformat/nbformat-5.0.7.ebuild
index 923167308a4..23f19a3586f 100644
--- a/dev-python/nbformat/nbformat-5.0.7.ebuild
+++ b/dev-python/nbformat/nbformat-5.0.7.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6..9} )
 PYTHON_REQ_USE='sqlite'
 
 inherit distutils-r1



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

2020-06-10 Thread Michał Górny
commit: 0777bf441d0481947d4a9ab04462ffe113a4e3e9
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  9 18:05:31 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:31:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0777bf44

dev-python/notebook: Port to py3.9

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

 .../notebook/files/notebook-6.0.3-py39.patch   | 73 ++
 dev-python/notebook/notebook-6.0.3.ebuild  |  7 ++-
 2 files changed, 78 insertions(+), 2 deletions(-)

diff --git a/dev-python/notebook/files/notebook-6.0.3-py39.patch 
b/dev-python/notebook/files/notebook-6.0.3-py39.patch
new file mode 100644
index 000..2b0fc134b58
--- /dev/null
+++ b/dev-python/notebook/files/notebook-6.0.3-py39.patch
@@ -0,0 +1,73 @@
+From c01b2cc014af5c3f8c1e00907a985edc19cad8d7 Mon Sep 17 00:00:00 2001
+From: Karthikeyan Singaravelan 
+Date: Wed, 22 Jan 2020 00:41:58 +0530
+Subject: [PATCH] Remove deprecated encoding parameter for Python 3.9
+ compatibility.
+
+---
+ notebook/tests/test_gateway.py | 13 ++---
+ 1 file changed, 6 insertions(+), 7 deletions(-)
+
+diff --git a/notebook/tests/test_gateway.py b/notebook/tests/test_gateway.py
+index d0cc84b09d..116b3db673 100644
+--- a/notebook/tests/test_gateway.py
 b/notebook/tests/test_gateway.py
+@@ -176,7 +176,7 @@ def test_gateway_get_kernelspecs(self):
+ with mocked_gateway:
+ response = self.request('GET', '/api/kernelspecs')
+ self.assertEqual(response.status_code, 200)
+-content = json.loads(response.content.decode('utf-8'), 
encoding='utf-8')
++content = json.loads(response.content.decode('utf-8'))
+ kspecs = content.get('kernelspecs')
+ self.assertEqual(len(kspecs), 2)
+ self.assertEqual(kspecs.get('kspec_bar').get('name'), 'kspec_bar')
+@@ -186,7 +186,7 @@ def test_gateway_get_named_kernelspec(self):
+ with mocked_gateway:
+ response = self.request('GET', '/api/kernelspecs/kspec_foo')
+ self.assertEqual(response.status_code, 200)
+-kspec_foo = json.loads(response.content.decode('utf-8'), 
encoding='utf-8')
++kspec_foo = json.loads(response.content.decode('utf-8'))
+ self.assertEqual(kspec_foo.get('name'), 'kspec_foo')
+ 
+ response = self.request('GET', '/api/kernelspecs/no_such_spec')
+@@ -257,7 +257,7 @@ def create_session(self, kernel_name):
+ # Create the kernel... (also tests get_kernel)
+ response = self.request('POST', '/api/sessions', **kwargs)
+ self.assertEqual(response.status_code, 201)
+-model = json.loads(response.content.decode('utf-8'), 
encoding='utf-8')
++model = json.loads(response.content.decode('utf-8'))
+ self.assertEqual(model.get('path'), nb_path)
+ kernel_id = model.get('kernel').get('id')
+ # ensure its in the running_kernels and name matches.
+@@ -286,7 +286,7 @@ def is_kernel_running(self, kernel_id):
+ # Get list of running kernels
+ response = self.request('GET', '/api/kernels')
+ self.assertEqual(response.status_code, 200)
+-kernels = json.loads(response.content.decode('utf-8'), 
encoding='utf-8')
++kernels = json.loads(response.content.decode('utf-8'))
+ self.assertEqual(len(kernels), len(running_kernels))
+ for model in kernels:
+ if model.get('id') == kernel_id:
+@@ -305,7 +305,7 @@ def create_kernel(self, kernel_name):
+ 
+ response = self.request('POST', '/api/kernels', **kwargs)
+ self.assertEqual(response.status_code, 201)
+-model = json.loads(response.content.decode('utf-8'), 
encoding='utf-8')
++model = json.loads(response.content.decode('utf-8'))
+ kernel_id = model.get('id')
+ # ensure its in the running_kernels and name matches.
+ running_kernel = running_kernels.get(kernel_id)
+@@ -330,7 +330,7 @@ def restart_kernel(self, kernel_id):
+ with mocked_gateway:
+ response = self.request('POST', '/api/kernels/' + kernel_id + 
'/restart')
+ self.assertEqual(response.status_code, 200)
+-model = json.loads(response.content.decode('utf-8'), 
encoding='utf-8')
++model = json.loads(response.content.decode('utf-8'))
+ restarted_kernel_id = model.get('id')
+ # ensure its in the running_kernels and name matches.
+ running_kernel = running_kernels.get(restarted_kernel_id)
+@@ -345,4 +345,3 @@ def delete_kernel(self, kernel_id):
+ response = self.request('DELETE', '/api/kernels/' + kernel_id)
+ self.assertEqual(response.status_code, 204)
+ self.assertEqual(response.reason, 'No Content')
+-

diff --git a/dev-python/notebook/notebook-6.0.3.ebuild 

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

2020-06-10 Thread Michał Górny
commit: 5a3113bc81109fc80c75bdb711c25bcaaa161f46
Author: Adrian Grigo  yahoo  com  au>
AuthorDate: Tue May 12 01:24:28 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:31:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a3113bc

media-libs/osl: Version bump to 1.10.10

Version bump osl to 1.10.10

This version of osl supports up to LLVM/Clang 9.

Minimum versions of dependencies have been removed where all versions
in the tree are suitable. The patch to find openexr used in the
previous version is no longer required as it has been incorporated
upstream.

Signed-off-by: Adrian Grigo  yahoo.com.au>
Closes: https://bugs.gentoo.org/717506
Closes: https://bugs.gentoo.org/720242
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Closes: https://github.com/gentoo/gentoo/pull/15757
Signed-off-by: Michał Górny  gentoo.org>

 media-libs/osl/Manifest   |  1 +
 media-libs/osl/osl-1.10.10.ebuild | 86 +++
 2 files changed, 87 insertions(+)

diff --git a/media-libs/osl/Manifest b/media-libs/osl/Manifest
index 26e99aaa370..1ccafafa6ad 100644
--- a/media-libs/osl/Manifest
+++ b/media-libs/osl/Manifest
@@ -1 +1,2 @@
+DIST osl-1.10.10.tar.gz 13549066 BLAKE2B 
d91360d4cde0e8f70e01aa5cbf14bd6dc30be47ba96d4f2206adb75ef8f14af6af43b00f025cbf9b9c03cfcf117380ee9bb0a93129c314b249151cd97135757b
 SHA512 
10371d9aefa786fefbae15cb9c71d7360bd903a36734840f7d0a960a615d48096b7170596bd934d10579b33d8f8398fc0e00471a10cd517c1a4a601169b2ca13
 DIST osl-1.10.5.tar.gz 13543151 BLAKE2B 
3c67834d9ab6d4d725ecde622c402707593b9aaf25f1e94f9ed6b004c28fa9b7b90cfd0d320cb2898f77f8883ac14a71310abaf63a5b06704565c5a3bdea09b4
 SHA512 
d704b623836edca4c3fe9c18f33b8d76f4625036228fc977732c600e23e16da4cb4bf311607019b251d734b63a184bde0f7726f144ecd5bcd7866938d95bfdff

diff --git a/media-libs/osl/osl-1.10.10.ebuild 
b/media-libs/osl/osl-1.10.10.ebuild
new file mode 100644
index 000..e37aeee7734
--- /dev/null
+++ b/media-libs/osl/osl-1.10.10.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit cmake llvm toolchain-funcs
+
+# check this on updates
+LLVM_MAX_SLOT=9
+
+DESCRIPTION="Advanced shading language for production GI renderers"
+HOMEPAGE="http://opensource.imageworks.com/?p=osl;
+SRC_URI="https://github.com/imageworks/OpenShadingLanguage/archive/Release-${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+X86_CPU_FEATURES=(
+   sse2:sse2 sse3:sse3 ssse3:ssse3 sse4_1:sse4.1 sse4_2:sse4.2
+   avx:avx avx2:avx2 avx512f:avx512f f16c:f16c
+)
+CPU_FEATURES=( ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_} )
+
+IUSE="doc partio qt5 test ${CPU_FEATURES[@]%:*}"
+
+RDEPEND="
+   dev-libs/boost:=
+   dev-libs/pugixml
+   media-libs/openexr:=
+   media-libs/openimageio:=
+   

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

2020-06-10 Thread Michał Górny
commit: 4f3631c22dcd2c639cb83bb444e6abe33d4dde51
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  9 18:03:51 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:31:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f3631c2

dev-python/jupyter_core: Port to py3.9

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

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

diff --git a/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild 
b/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild
index ba4f8a20402..0891fa649da 100644
--- a/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild
+++ b/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1



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

2020-06-10 Thread Michał Górny
commit: 6a3c62f9874776b2a5028cdfec4c8a4531080c27
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 07:04:37 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 07:31:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a3c62f9

dev-python/qtconsole: Restore ~arm64

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

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

diff --git a/dev-python/qtconsole/qtconsole-4.7.4.ebuild 
b/dev-python/qtconsole/qtconsole-4.7.4.ebuild
index 917d6d1fbda..85867603c37 100644
--- a/dev-python/qtconsole/qtconsole-4.7.4.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.7.4.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 RDEPEND="
dev-python/ipykernel[${PYTHON_USEDEP}]



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

2020-06-10 Thread Miroslav Šulc
commit: 1c8c05b6acf01ee7b582136085acb3d57088cf57
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Jun 10 08:00:24 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Jun 10 08:00:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c8c05b6

media-libs/ganv: bump to 1.6.0

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/ganv/Manifest  |  1 +
 media-libs/ganv/ganv-1.6.0.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/media-libs/ganv/Manifest b/media-libs/ganv/Manifest
index 7fe792a92ca..4c2028e8ae3 100644
--- a/media-libs/ganv/Manifest
+++ b/media-libs/ganv/Manifest
@@ -1 +1,2 @@
 DIST ganv-1.4.2.tar.bz2 175510 BLAKE2B 
4e6d7e411c78a516ea6603245ae13787607591b061d3856f305bcc4731f27ef46897d032a9b8a1f672776b41351823f89a2ddfeac40b47f584dbf638af79d466
 SHA512 
0609dea81cceb0c560286ad2f132f318c2d583af5163dcea4511155e78a022248dcb7ae535233493bdf906fb036422ebd4368d688123f3e1676c4e0398cbc6c2
+DIST ganv-1.6.0.tar.bz2 377068 BLAKE2B 
f78c4783f0188fd163b087c789d50eb67a54a77d26d261d3557fba46a7bee09fc3326204273ad496d6b2ae262368015c3f186c290f2b85e6d5297eeed7596677
 SHA512 
05900aa63e65646e75f805dfe6ae5901efb19ae31a3f0a6730a713bfaffc47bb93f683879ce2a75093ea09e84a9d3137966b68b4ad307707753dead1df439a09

diff --git a/media-libs/ganv/ganv-1.6.0.ebuild 
b/media-libs/ganv/ganv-1.6.0.ebuild
new file mode 100644
index 000..516ec4cbc85
--- /dev/null
+++ b/media-libs/ganv/ganv-1.6.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+# oes not work with python3
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE='threads(+)'
+inherit eutils flag-o-matic waf-utils python-any-r1
+
+DESCRIPTION="A GTK+ widget for interactive graph-like environments"
+HOMEPAGE="http://drobilla.net/software/ganv/;
+SRC_URI="http://download.drobilla.net/${P}.tar.bz2;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+fdgl +graphviz introspection nls"
+
+RDEPEND="
+   dev-cpp/glibmm:2
+   dev-cpp/gtkmm:2.4
+   x11-libs/gtk+:2
+   graphviz? ( media-gfx/graphviz[gtk] )
+   introspection? (
+   app-text/yelp-tools
+   dev-libs/gobject-introspection:=[doctool] )
+"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   dev-util/glib-utils
+   nls? ( virtual/libintl )
+"
+
+src_configure() {
+   append-cxxflags -std=c++11
+   waf-utils_src_configure \
+   $(use graphviz || echo "--no-graphviz") \
+   $(use fdgl || echo "--no-fdgl") \
+   $(use nls || echo "--no-nls") \
+   $(use introspection && echo "--gir")
+}



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

2020-06-10 Thread Michał Górny
commit: d7446b7d401575cf1bd839fee39fc16d297dfb61
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:08:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:11:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7446b7d

dev-python/pbr: Add python@ as (co-)maint

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

 dev-python/pbr/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pbr/metadata.xml b/dev-python/pbr/metadata.xml
index a7f104aa218..aa7c0d69456 100644
--- a/dev-python/pbr/metadata.xml
+++ b/dev-python/pbr/metadata.xml
@@ -9,6 +9,10 @@
 openst...@gentoo.org
 Openstack
   
+  
+pyt...@gentoo.org
+Python
+  
   
 Python Build Reasonableness
   PBR is a library that injects some useful and sensible default behaviors 
into your setuptools run.



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

2020-06-10 Thread Lars Wendler
commit: dc5fb99c6ce42f7e00f362e1956cb0b60cfacacd
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jun 10 08:43:34 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jun 10 08:49:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc5fb99c

media-sound/alsa-utils: Bump to version 1.2.3

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

 media-sound/alsa-utils/Manifest|  1 +
 media-sound/alsa-utils/alsa-utils-1.2.3.ebuild | 77 ++
 2 files changed, 78 insertions(+)

diff --git a/media-sound/alsa-utils/Manifest b/media-sound/alsa-utils/Manifest
index 8fe259cd379..2b9d8f163c4 100644
--- a/media-sound/alsa-utils/Manifest
+++ b/media-sound/alsa-utils/Manifest
@@ -1 +1,2 @@
 DIST alsa-utils-1.2.2.tar.bz2 1274821 BLAKE2B 
79b6cd719dbf36ca65b186c6682c9617fb89cb76aa530e4f40850004170703990054b5e96f700c652b11781e0086490824ce2433e33b17c03655fea089f59ceb
 SHA512 
30598c658f3f2ad71a5ce7911b09ae13add54b293bcf3bebb053371d84a91528bd64fd376f167456b2e27e2546a2279019678e099247513e5142b283af756fd9
+DIST alsa-utils-1.2.3.tar.bz2 1277105 BLAKE2B 
70037123de16d4d267fbe862acba31144e1f060cb01c294cf0691d9378e1f04b108c9f3a5e071979abe9b5c1c15a49facc9e0be73122caaf812047a514e4de4d
 SHA512 
5aeba2e5b7279c62d4df85b61a26b3f41e5465bac5a0b94c7bbe1299f7aa38e8cf2a1f749f618289a63b61f76609fe54169fcbe70792b45adc8957811b672012

diff --git a/media-sound/alsa-utils/alsa-utils-1.2.3.ebuild 
b/media-sound/alsa-utils/alsa-utils-1.2.3.ebuild
new file mode 100644
index 000..24b8ba3949f
--- /dev/null
+++ b/media-sound/alsa-utils/alsa-utils-1.2.3.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit systemd udev
+
+DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, 
etc.)"
+HOMEPAGE="https://alsa-project.org/;
+SRC_URI="https://www.alsa-project.org/files/pub/utils/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0.9"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="bat doc +libsamplerate +ncurses nls selinux"
+
+CDEPEND=">=media-libs/alsa-lib-${PV}
+   libsamplerate? ( media-libs/libsamplerate )
+   ncurses? ( >=sys-libs/ncurses-5.7-r7:0= )
+   bat? ( sci-libs/fftw:= )"
+DEPEND="${CDEPEND}
+   doc? ( app-text/xmlto )"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-alsa )"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1.8-missing_header.patch
+)
+
+src_configure() {
+   local myeconfargs=(
+   # --disable-alsaconf because it doesn't work with sys-apps/kmod 
wrt #456214
+   --disable-alsaconf
+   --disable-maintainer-mode
+   --with-asound-state-dir="${EPREFIX}"/var/lib/alsa
+   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   --with-udev-rules-dir="${EPREFIX}/$(get_udevdir)"/rules.d
+   $(use_enable bat)
+   $(use_enable libsamplerate alsaloop)
+   $(use_enable ncurses alsamixer)
+   $(use_enable nls)
+   $(usex doc '' --disable-xmlto)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default
+   dodoc seq/*/README.*
+
+   newinitd "${FILESDIR}"/alsasound.initd-r8 alsasound
+   newconfd "${FILESDIR}"/alsasound.confd-r4 alsasound
+
+   insinto /etc/modprobe.d
+   newins "${FILESDIR}"/alsa-modules.conf-rc alsa.conf
+
+   keepdir /var/lib/alsa
+
+   # ALSA lib parser.c:1266:(uc_mgr_scan_master_configs) error: could not
+   # scan directory /usr/share/alsa/ucm: No such file or directory
+   # alsaucm: unable to obtain card list: No such file or directory
+   keepdir /usr/share/alsa/ucm
+}
+
+pkg_postinst() {
+   if [[ -z ${REPLACING_VERSIONS} ]]; then
+   elog
+   elog "To take advantage of the init script, and automate the 
process of"
+   elog "saving and restoring sound-card mixer levels you should"
+   elog "add alsasound to the boot runlevel. You can do this as"
+   elog "root like so:"
+   elog "# rc-update add alsasound boot"
+   ewarn
+   ewarn "The ALSA core should be built into the kernel or loaded 
through other"
+   ewarn "means. There is no longer any modular auto(un)loading in 
alsa-utils."
+   fi
+}



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

2020-06-10 Thread Lars Wendler
commit: 98ba0bde80ad0ef399551bc85d6671d09cf28cf2
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jun 10 08:40:06 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jun 10 08:49:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98ba0bde

media-libs/alsa-lib: Bump to version 1.2.3

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

 media-libs/alsa-lib/Manifest  |  1 +
 media-libs/alsa-lib/alsa-lib-1.2.3.ebuild | 81 +++
 2 files changed, 82 insertions(+)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index a4ca6c2d6be..624b74a6154 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1 +1,2 @@
 DIST alsa-lib-1.2.2.tar.bz2 1030747 BLAKE2B 
176054c7783452fcd0b30482f4d85fb88a1364a97f79830f2c22cd578275280fa64537d00a08f3e3b1420e4aeb4e4269c7523cb4296db3ed095bcf078b452726
 SHA512 
d21adb3ff998918c7d1820f9ce2aaf4202dd45ccb87cb092d49da8b2402b6ddaad06325be0fd59f17393a5d9958e3743bfccb4b14bdb947a42e7d791d73c7033
+DIST alsa-lib-1.2.3.tar.bz2 1037485 BLAKE2B 
522c5c2a4bd3bc13d96f64781270647271e131042e0a6ed0f2104d9cb9f93341af1c14d000d5acb9c4c327e10202b0e9f280e59f355819f8861ae023a5a0f0a8
 SHA512 
567c094914833af511bd7b175b0865ae4e4483ae68a7d4f90a34b12d7f077782835eec24257a7928631c104c78eff588f7b92068aade37e3c4806d79353758a8

diff --git a/media-libs/alsa-lib/alsa-lib-1.2.3.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.2.3.ebuild
new file mode 100644
index 000..e11bdf33b0a
--- /dev/null
+++ b/media-libs/alsa-lib/alsa-lib-1.2.3.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+inherit autotools multilib-minimal python-single-r1
+
+DESCRIPTION="Advanced Linux Sound Architecture Library"
+HOMEPAGE="https://alsa-project.org/;
+SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="alisp debug doc elibc_uclibc python +thread-safety"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+BDEPEND="doc? ( >=app-doc/doxygen-1.2.6 )"
+RDEPEND="python? ( ${PYTHON_DEPS} )"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.1.6-missing_files.patch" #652422
+)
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || 
die
+   # https://bugs.gentoo.org/509886
+   if use elibc_uclibc ; then
+   sed -i -e 's:oldapi queue_timer:queue_timer:' test/Makefile.am 
|| die
+   fi
+   # https://bugs.gentoo.org/545950
+   sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' 
test/lsb/Makefile.am || die
+   default
+   eautoreconf
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   --disable-maintainer-mode
+   --disable-resmgr
+   --enable-aload
+   --enable-rawmidi
+   --enable-seq
+   --enable-shared
+   # enable Python only on final ABI
+   $(multilib_native_use_enable python)
+   $(use_enable alisp)
+   $(use_enable thread-safety)
+   $(use_with debug)
+   $(usex elibc_uclibc --without-versioned '')
+   )
+
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_compile() {
+   emake
+
+   if multilib_is_native_abi && use doc; then
+   emake doc
+   grep -FZrl "${S}" doc/doxygen/html | \
+   xargs -0 sed -i -e "s:${S}::" || die
+   fi
+}
+
+multilib_src_install() {
+   multilib_is_native_abi && use doc && local HTML_DOCS=( 
doc/doxygen/html/. )
+   default
+}
+
+multilib_src_install_all() {
+   find "${ED}" -type f \( -name '*.a' -o -name '*.la' \) -delete || die
+   dodoc ChangeLog doc/asoundrc.txt NOTES TODO
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/alsa-ucm-conf/

2020-06-10 Thread Lars Wendler
commit: 459f3a2b4dc7526528a8b04333a52a90f352aad9
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jun 10 08:45:18 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jun 10 08:49:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=459f3a2b

media-libs/alsa-ucm-conf: Bump to version 1.2.3

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

 media-libs/alsa-ucm-conf/Manifest   |  1 +
 media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.3.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/media-libs/alsa-ucm-conf/Manifest 
b/media-libs/alsa-ucm-conf/Manifest
index 6dfc20fb4fa..304d174b5d5 100644
--- a/media-libs/alsa-ucm-conf/Manifest
+++ b/media-libs/alsa-ucm-conf/Manifest
@@ -1 +1,2 @@
 DIST alsa-ucm-conf-1.2.2.tar.bz2 14608 BLAKE2B 
ce850415a115f673267f6ab32f176c2ab73aad8bd7cf2be244bfbb7342756c6de2212044cb92b3524dc4189955c8144b134af144b6a15aabf33c06cbcfe1fdf6
 SHA512 
25e3f341c110772c7cffc8c7745b320f2ddd12fe6460380c088939b5dc67b99ae4ad92e69375179574e0e1c40d14ff49961e86494e223fde009e51590f00ca8f
+DIST alsa-ucm-conf-1.2.3.tar.bz2 17482 BLAKE2B 
d280ebb530c58df706d9b01c169472af8a88ec87735a8c5639981a2fddee31add0d78a2e47b43abf5bd13ef051dbb25749c701174aa0ea1b7255f771856e3e12
 SHA512 
1bdb024170f1dc18170c1d3699798c14d9cc7bbaccfe6eaef1fac0ec8c28074d08ed722bf47996682d4a0737138112b7eb4d45e224f00b027b3331da728e47cd

diff --git a/media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.3.ebuild 
b/media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.3.ebuild
new file mode 100644
index 000..1424e013ca8
--- /dev/null
+++ b/media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="ALSA ucm configuration files"
+HOMEPAGE="https://www.alsa-project.org;
+SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
+LICENSE="BSD"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: media-libs/alsa-topology-conf/

2020-06-10 Thread Lars Wendler
commit: 976dd9a06baaebb30cf429ca80303f807a7206b6
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Jun 10 08:46:37 2020 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Jun 10 08:49:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=976dd9a0

media-libs/alsa-topology-conf: Bump to version 1.2.3

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

 media-libs/alsa-topology-conf/Manifest  |  1 +
 .../alsa-topology-conf-1.2.3.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/media-libs/alsa-topology-conf/Manifest 
b/media-libs/alsa-topology-conf/Manifest
index e44a68819b2..373d615238b 100644
--- a/media-libs/alsa-topology-conf/Manifest
+++ b/media-libs/alsa-topology-conf/Manifest
@@ -1 +1,2 @@
 DIST alsa-topology-conf-1.2.2.tar.bz2 6346 BLAKE2B 
6aea93139e85de3d28ce19319429340eac61bb340c29448dfa14d4fe1d80dc1e5e0c066b33ccab3d9c620efe6b95b095cf1ea52583d7543ca472f1375dc5ad57
 SHA512 
145ee0e16f7f84d5f97759b1efaa3df9fe35c8b33c7ae863ae1b915f361acd902ad05f59090e1d98b2a4f2ecc14933681592893564fcc45cdbc974899f789b94
+DIST alsa-topology-conf-1.2.3.tar.bz2 11787 BLAKE2B 
8dbeafd6a6800e826e76c0305caa01f6d7af4d32eadb49feb6fcab23041e3b3bc4c2bb9286e41b2e1a123ee363d621c46a8c96459ce4af03f8a45f834b83c6c7
 SHA512 
e57439212fd76d1d0c1677654ae7cecef0f89c01a6c57f5f00a02ecd2f6d9f22dc31ed4f301cf82464d98ac32c01f2015a91a5b51d08268ddfeb4265e9b951b9

diff --git a/media-libs/alsa-topology-conf/alsa-topology-conf-1.2.3.ebuild 
b/media-libs/alsa-topology-conf/alsa-topology-conf-1.2.3.ebuild
new file mode 100644
index 000..84b05683cf7
--- /dev/null
+++ b/media-libs/alsa-topology-conf/alsa-topology-conf-1.2.3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="ALSA topology configuration files"
+HOMEPAGE="https://www.alsa-project.org;
+SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
+LICENSE="BSD"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND="!

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

2020-06-10 Thread Michał Górny
commit: 5463abfbad513a5bfcfb01e84a591165fda6664c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 10 08:45:00 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun 10 08:58:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5463abfb

dev-python/distro: Port to py3.9

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

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

diff --git a/dev-python/distro/distro-1.5.0.ebuild 
b/dev-python/distro/distro-1.5.0.ebuild
index bd0a5473a71..24643b164d3 100644
--- a/dev-python/distro/distro-1.5.0.ebuild
+++ b/dev-python/distro/distro-1.5.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
+PYTHON_COMPAT=( python2_7 python3_{6..9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: www-plugins/adobe-flash/

2020-06-10 Thread Jeroen Roovers
commit: b82553691131c984578f0190e4ee547bcd11b998
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 10 09:17:24 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 10 09:20:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8255369

www-plugins/adobe-flash: Version 32.0.0.387

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Bug: https://bugs.gentoo.org/727812
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-plugins/adobe-flash/Manifest   |   4 +
 .../adobe-flash/adobe-flash-32.0.0.387.ebuild  | 141 +
 2 files changed, 145 insertions(+)

diff --git a/www-plugins/adobe-flash/Manifest b/www-plugins/adobe-flash/Manifest
index 69279d2eb1d..a18ea793b82 100644
--- a/www-plugins/adobe-flash/Manifest
+++ b/www-plugins/adobe-flash/Manifest
@@ -2,3 +2,7 @@ DIST adobe-flash-32.0.0.371-npapi.i386.tar.gz 8545804 BLAKE2B 
db837eace6b6c6ee0b
 DIST adobe-flash-32.0.0.371-npapi.x86_64.tar.gz 9064252 BLAKE2B 
bf4ef5cec99be864e2aec464bff1812789bad49ac8975c2f8e592273460831ccd7e3f94eea52a442d5f930f7cf544daa8ceb45d6700c88a65b0ac8bc91af1206
 SHA512 
167a50632fc903b9f8f49f2e88ae297fb2eace30c47045299eac44f2883097c79c1c8a251c3fc46e1cb26df6b7153934bb8c4af0fa8f98c0f843d3235dfed0f1
 DIST adobe-flash-32.0.0.371-ppapi.i386.tar.gz 8579860 BLAKE2B 
93995df47b9ae38ac08353a2828bfeeb5bb1e687a03e547896ac7456d174df14778488a45f01281ad157b634eb2275b45fb9a87a92b6c53c81b1b3498050da2d
 SHA512 
35581e26d44a8d3f4a03afcd1e05ff7b41b8c7c7f0951f723f35208d60af39ad2530707bc1e77a18d66e6fa9c1bbb85bc355c4dc606438865167eab6324615db
 DIST adobe-flash-32.0.0.371-ppapi.x86_64.tar.gz 9499706 BLAKE2B 
2ba9472e0e0a5e3cbe37456b87964a5dfb81c5574212b6cfd7f1acef831626b27899251f9b62fec5d30cdc3a7e5a1bcd417ab098701b4e28d249c86ba236b4ca
 SHA512 
28769c018fec6f89ed310dcfb5a4d734ead463031ce3f99fd465d418be7887017026ae5547101d373130081eae9f0a412f3abbae7d905d9dbddf6e7a32dccb67
+DIST adobe-flash-32.0.0.387-npapi.i386.tar.gz 8546104 BLAKE2B 
ec878a2150261bc6db11b64d14069d0b3a93fc25fbcb85bff2150c355c5ecdd39b272610b79abda074d1e918538f813ecc889aa88a37d9fc7beb2398ffebc01b
 SHA512 
9e9878e7736a77ba32fa95271e83b995c20058cde1b60c456d0a6dd0594889d6629038f144f5e5867176ed78c296908b911078f3477a1d160b4c690208ffe067
+DIST adobe-flash-32.0.0.387-npapi.x86_64.tar.gz 9065685 BLAKE2B 
77dd406107f42c9c8195f33e6b2eb90473dce88aa2756e0fb7c303a6ae3534d0a81a229af3dbec370281658efddd3e00fc620797eabbeaed761183b34c3553c8
 SHA512 
a72983efd3ef953807be0dfc5c2f22d3f25a059bc2c41b463874d7174eb44ca0dcd4d30ac04054292670e0d1894e7aff9561dbdc18b6856e067c95ef05c44f19
+DIST adobe-flash-32.0.0.387-ppapi.i386.tar.gz 8832916 BLAKE2B 
cb83cbea7b378117470ad39d3685f01b42d9f1a54c4ab83320769e51258caf65ac0bd536f2d896375074cc5ee3c316b5aa8fb9379f6717455babd5a8dec50aaa
 SHA512 
c28dc82ec987cb74970710f3b2404ab90623030947e57e341b31d853fb28e8a220c7877f331729139ca01b8b0c0a4c29ab4b48c635bcf2417562c842a486dd28
+DIST adobe-flash-32.0.0.387-ppapi.x86_64.tar.gz 9765972 BLAKE2B 
e6f001cd38f823071190b9773b65cfe68efefe1c6c0f3082ccab3cb57fb9c29bb9974c147f33daa4c6b1499000256568b47f333b951ca19d595844ee03f40b13
 SHA512 
dd3a26a650a8620ea2aec730f1ae61c1df018461190ee09e2ac783bec79018e649add87b3e2f682fe863fdc8d9be0469fbd563d4e7dbd4d51b164fae2fcf98dd

diff --git a/www-plugins/adobe-flash/adobe-flash-32.0.0.387.ebuild 
b/www-plugins/adobe-flash/adobe-flash-32.0.0.387.ebuild
new file mode 100644
index 000..4bed41bad55
--- /dev/null
+++ b/www-plugins/adobe-flash/adobe-flash-32.0.0.387.ebuild
@@ -0,0 +1,141 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit xdg-utils nsplugins multilib multilib-minimal
+
+DESCRIPTION="Adobe Flash Player"
+HOMEPAGE="
+   https://www.adobe.com/products/flashplayer.html
+   https://get.adobe.com/flashplayer/
+   https://helpx.adobe.com/security/products/flash-player.html
+"
+
+AF_URI="https://fpdownload.adobe.com/pub/flashplayer/pdc/${PV};
+AF_NP_32_URI="${AF_URI}/flash_player_npapi_linux.i386.tar.gz -> 
${P}-npapi.i386.tar.gz"
+AF_NP_64_URI="${AF_URI}/flash_player_npapi_linux.x86_64.tar.gz -> 
${P}-npapi.x86_64.tar.gz"
+AF_PP_32_URI="${AF_URI}/flash_player_ppapi_linux.i386.tar.gz -> 
${P}-ppapi.i386.tar.gz"
+AF_PP_64_URI="${AF_URI}/flash_player_ppapi_linux.x86_64.tar.gz -> 
${P}-ppapi.x86_64.tar.gz"
+
+IUSE="+nsplugin +ppapi"
+REQUIRED_USE="
+   || ( nsplugin ppapi )
+"
+
+SRC_URI="
+   nsplugin? (
+   abi_x86_32? ( ${AF_NP_32_URI} )
+   abi_x86_64? ( ${AF_NP_64_URI} )
+   )
+   ppapi? (
+   abi_x86_32? ( ${AF_PP_32_URI} )
+   abi_x86_64? ( ${AF_PP_64_URI} )
+   )
+"
+SLOT="22"
+
+KEYWORDS="-* ~amd64 ~x86"
+LICENSE="AdobeFlash-11.x"
+RESTRICT="bindist mirror strip"
+
+NPAPI_RDEPEND="
+   dev-libs/atk[${MULTILIB_USEDEP}]
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   dev-libs/nspr[${MULTILIB_USEDEP}]
+   dev-libs/nss[${MULTILIB_USEDEP}]
+   

[gentoo-commits] proj/pambase: New tag: pambase-20200610

2020-06-10 Thread Mikle Kolyada
commit: 
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jun 10 11:34:33 2020 +

New tag: pambase-20200610




[gentoo-commits] proj/pambase: Tag deleted: pambase-20200610

2020-06-10 Thread Mikle Kolyada
commit: 
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jun 10 11:45:57 2020 +

Tag deleted: pambase-20200610




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

2020-06-10 Thread Jeroen Roovers
commit: 1f340d19ba6f8ca49cf78274f9556c4e922eefd7
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 10 12:35:24 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 10 12:35:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f340d19

net-analyzer/iptraf-ng: Update SRC_URI, again

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

 net-analyzer/iptraf-ng/Manifest | 2 +-
 .../iptraf-ng/{iptraf-ng-1.2.0.ebuild => iptraf-ng-1.2.0-r1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/iptraf-ng/Manifest b/net-analyzer/iptraf-ng/Manifest
index 7dfddeb8730..2ddd08611f6 100644
--- a/net-analyzer/iptraf-ng/Manifest
+++ b/net-analyzer/iptraf-ng/Manifest
@@ -1,3 +1,3 @@
 DIST iptraf-ng-1.1.4-github.tar.gz 556843 BLAKE2B 
6f4e2bd8c4cf271d90732810f0ba6ab146b3471b723e657c180cf95ce8e1361d18c6803d5da56e872b0e49234956304fe1ff5532fde1332bc30a51a77ef8bdc0
 SHA512 
675165e08f979daf70fdbd0bd7ae24803860a182f3f1f6e6905f79f65b283470eedcc7e2f8608006c92af258cfad49c0b571652d843107cc79ad8eda63d4e5cb
 DIST iptraf-ng-1.1.4.tar.gz 583306 BLAKE2B 
c06fdc25838901fc5528057ade5ebe28b5679a6a545f461cef2a5f4d3cbc1346a7ab3e94f4fe317a1760067e480c3c622df1027591d978b0ac1236ba9203e9da
 SHA512 
8cafbcec75eb4071156a9e9350ffe6de99cb6386e8f50d05337113872ee50082a30009d85faa02d83633a8e727039791332d600654321b95ca6cfc881774
-DIST iptraf-ng-1.2.0.tar.gz 324841 BLAKE2B 
dab84b6c4d4266e51405fc8315361fa617bf41c7071d84a71021c73217e0cfaa7c9b327893e779f1970d99b9eab39baa0109359f973b80dd384cbe5744a5a78e
 SHA512 
a9d24e5e32fb3525c32b952a24b8d74e65b0462cc4f98086d054cc259d4fff15e99d4f17bca6cc91ed3cc4f8e8d3cd3bd749423ce9c04933c50a808a9624a831
+DIST iptraf-ng-1.2.0.tar.gz 324969 BLAKE2B 
45a67fc64b5ab518339e55adfc158c8cf10eacded15941545d8d7cee19c954aae2619c39a11b1eeaa79f5a381b5dcf2e6a6e0b8fdd7e78e75f41ab10b71e6a0a
 SHA512 
6dc3b5deb7c6fb3776ce696492975db43c13fa2d1d956712e7738ef34ac1bfc5f5d63a5211ba8e9fabf391e8bc5560c08c5d5e219b0cfe067e3499b2c02e6f3d

diff --git a/net-analyzer/iptraf-ng/iptraf-ng-1.2.0.ebuild 
b/net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild
similarity index 92%
rename from net-analyzer/iptraf-ng/iptraf-ng-1.2.0.ebuild
rename to net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild
index ccae3b8d887..bda05a1a02a 100644
--- a/net-analyzer/iptraf-ng/iptraf-ng-1.2.0.ebuild
+++ b/net-analyzer/iptraf-ng/iptraf-ng-1.2.0-r1.ebuild
@@ -6,7 +6,7 @@ inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="A console-based network monitoring utility"
 HOMEPAGE="https://github.com/iptraf-ng/iptraf-ng;
-SRC_URI="https://github.com/iptraf-ng/iptraf-ng/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/iptraf-ng/iptraf-ng/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2 doc? ( FDL-1.1 )"
 SLOT="0"



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

2020-06-10 Thread Ben Kohler
commit: 1c2c762c232ffe1f7b864f3860943286f659469b
Author: Ben Kohler  gentoo  org>
AuthorDate: Wed Jun 10 12:43:52 2020 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Wed Jun 10 12:44:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2c762c

gui-apps/nm-tray: keyword on x86

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

 gui-apps/nm-tray/nm-tray-0.4.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/nm-tray/nm-tray-0.4.3.ebuild 
b/gui-apps/nm-tray/nm-tray-0.4.3.ebuild
index d18f9b26f66..e921fc04cae 100644
--- a/gui-apps/nm-tray/nm-tray-0.4.3.ebuild
+++ b/gui-apps/nm-tray/nm-tray-0.4.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/palinek/nm-tray/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 BDEPEND=">=dev-util/cmake-3.10"



[gentoo-commits] proj/pambase: New tag: pambase-20200610

2020-06-10 Thread Mikle Kolyada
commit: 
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Wed Jun 10 11:49:23 2020 +

New tag: pambase-20200610




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

2020-06-10 Thread Jeroen Roovers
commit: 3ea02c91dce90ad12716507d32633bcb923cf774
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Jun 10 11:50:02 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Jun 10 11:54:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ea02c91

net-analyzer/sngrep: Backport tinfo patch

- In case 1.4.7 has bugs that 1.4.6 does not, apply the fixed tinfo
  patch there as well.
- The tinfo patch fixes the test suite problems as well, so drop
  RESTRICT=test again.

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Bug: https://bugs.gentoo.org/709852
Bug: https://bugs.gentoo.org/727790
Signed-off-by: Jeroen Roovers  gentoo.org>

 net-analyzer/sngrep/files/sngrep-1.4.5-tinfo.patch  | 13 -
 .../{sngrep-1.4.6-r2.ebuild => sngrep-1.4.6-r3.ebuild}  |  2 +-
 net-analyzer/sngrep/sngrep-1.4.7.ebuild |  1 -
 3 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/net-analyzer/sngrep/files/sngrep-1.4.5-tinfo.patch 
b/net-analyzer/sngrep/files/sngrep-1.4.5-tinfo.patch
deleted file mode 100644
index f3829560264..000
--- a/net-analyzer/sngrep/files/sngrep-1.4.5-tinfo.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -98,6 +98,10 @@
-   ])
- ])
- 
-+AC_SEARCH_LIBS([keyname], [tinfo], [], [
-+  AC_MSG_ERROR([ You need to have ncurses panelw library installed to 
compile sngrep.])
-+])
-+
- 
-  GnuTLS Support
- 

diff --git a/net-analyzer/sngrep/sngrep-1.4.6-r2.ebuild 
b/net-analyzer/sngrep/sngrep-1.4.6-r3.ebuild
similarity index 95%
rename from net-analyzer/sngrep/sngrep-1.4.6-r2.ebuild
rename to net-analyzer/sngrep/sngrep-1.4.6-r3.ebuild
index 011fb09336b..b9f731a5e64 100644
--- a/net-analyzer/sngrep/sngrep-1.4.6-r2.ebuild
+++ b/net-analyzer/sngrep/sngrep-1.4.6-r3.ebuild
@@ -24,8 +24,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 PATCHES=(
-   "${FILESDIR}"/${PN}-1.4.5-tinfo.patch
"${FILESDIR}"/${PN}-1.4.6-stdin.patch
+   "${FILESDIR}"/${PN}-1.4.7-tinfo.patch
 )
 
 src_prepare() {

diff --git a/net-analyzer/sngrep/sngrep-1.4.7.ebuild 
b/net-analyzer/sngrep/sngrep-1.4.7.ebuild
index f6b04daa278..6782684125c 100644
--- a/net-analyzer/sngrep/sngrep-1.4.7.ebuild
+++ b/net-analyzer/sngrep/sngrep-1.4.7.ebuild
@@ -23,7 +23,6 @@ DEPEND="
gnutls? ( net-libs/gnutls )
 "
 RDEPEND="${DEPEND}"
-RESTRICT="test"
 PATCHES=(
"${FILESDIR}"/${PN}-1.4.7-tinfo.patch
"${FILESDIR}"/${PN}-1.4.7-LDFLAGS.patch



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

2020-06-10 Thread Bernard Cafarelli
commit: be20c66f6d80e0a3b335d1a6c62c26fa99fc3481
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jun 10 11:48:43 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jun 10 11:58:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be20c66f

www-apps/nextcloud: drop 16.0 versions

Unsupported upstream

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

 www-apps/nextcloud/Manifest |  2 --
 www-apps/nextcloud/nextcloud-16.0.10.ebuild | 41 -
 www-apps/nextcloud/nextcloud-16.0.9.ebuild  | 41 -
 3 files changed, 84 deletions(-)

diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest
index 437b5733c82..e877313c73f 100644
--- a/www-apps/nextcloud/Manifest
+++ b/www-apps/nextcloud/Manifest
@@ -1,5 +1,3 @@
-DIST nextcloud-16.0.10.tar.bz2 63199839 BLAKE2B 
e030b9e99bf9573cdc0e5510394aa15473e3ced647049f7ace7a7c6400f002bf40e7b9965d48a938bacdf8f93d6a246828bd2fa304d79201f15e473c897a3df6
 SHA512 
295ef79bc8dfa4318c761f920ff145d40c41a89c1d410ca7bd33125ac835312dcf9123b19bb68b8cb3e20c08a7e233830702bfacf37f9e0815237b154d0563a0
-DIST nextcloud-16.0.9.tar.bz2 62595192 BLAKE2B 
8594d49bd8913e6a826b55390398d97733619469c10c817a1263d0e1f4fcadf9b0cbe459c6a415c2078fe6678898f7dcec511ebe4be8254226358c11d8491239
 SHA512 
5787bf73575e10f5bd204ca797f367eff27d47d45f87765f313481b5f47f295c8ce730371809d02a84a02b8c68b87f6529c315b739b8a8b48c2d2512aeafa2c4
 DIST nextcloud-17.0.5.tar.bz2 66618876 BLAKE2B 
9d7aabafadc768e72f90180fb0763a16188f09e0ab657fcfea762fffa53af87c5ed546f0176852346973164ecd42edac8acd6120392ce075e96658f70e2c1740
 SHA512 
b6b5ddd85666ca6542ba945adb4bd0196997d815aa0d232b83fb5e29be2b3cdef891d3fb349c86d2aeef7356fd71c234bcf4b569ce41b0082f86a909148930a1
 DIST nextcloud-17.0.6.tar.bz2 66599870 BLAKE2B 
dd4c66fcdb8c2aca978ebc1df52970cda189e56b3e48465e5a1ce9191a2e6499cc069910ef894699d9e888206335e5ac59cc813b0f2108cd585e776f88f0e333
 SHA512 
e97f74d2890815742654af8c3248ae8378f7d8fe57c13657824354cdd90d4a30b99dd2249980b885ec73eaba9d2ed0c1fdc9254f926f3de26f1c2832e36e9344
 DIST nextcloud-18.0.3.tar.bz2 86636651 BLAKE2B 
ad73d397dfd8ceaa5b1edc42031a350560fd80c0c55500cff5e394f3a0ffedc0c02a5a0bbdb4579fba2765fe542cae6e8c835c2f6e07755ec368556d207cdecd
 SHA512 
b1f433dee2e7eea800de8cd8131332530050b6194460a397081a134f63b236f65e33758c60cd8e97a43570d0b6a1baac9e0503535d85a9a34cd63abd50041292

diff --git a/www-apps/nextcloud/nextcloud-16.0.10.ebuild 
b/www-apps/nextcloud/nextcloud-16.0.10.ebuild
deleted file mode 100644
index de1b7898efd..000
--- a/www-apps/nextcloud/nextcloud-16.0.10.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-DESCRIPTION="Personal cloud that runs on your own server"
-HOMEPAGE="https://nextcloud.com/;
-SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2;
-LICENSE="AGPL-3"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="+curl +imagemagick mysql postgres +sqlite"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-DEPEND=""
-RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
-   imagemagick? ( dev-php/pecl-imagick )
-   virtual/httpd-php"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
-   webapp_pkg_setup
-}
-
-src_install() {
-   webapp_src_preinst
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-   dodir "${MY_HTDOCSDIR}"/data
-
-   webapp_serverowned -R "${MY_HTDOCSDIR}"/apps
-   webapp_serverowned -R "${MY_HTDOCSDIR}"/data
-   webapp_serverowned -R "${MY_HTDOCSDIR}"/config
-   webapp_configfile "${MY_HTDOCSDIR}"/.htaccess
-
-   webapp_src_install
-}

diff --git a/www-apps/nextcloud/nextcloud-16.0.9.ebuild 
b/www-apps/nextcloud/nextcloud-16.0.9.ebuild
deleted file mode 100644
index de1b7898efd..000
--- a/www-apps/nextcloud/nextcloud-16.0.9.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit webapp
-
-DESCRIPTION="Personal cloud that runs on your own server"
-HOMEPAGE="https://nextcloud.com/;
-SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2;
-LICENSE="AGPL-3"
-
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="+curl +imagemagick mysql postgres +sqlite"
-REQUIRED_USE="|| ( mysql postgres sqlite )"
-
-DEPEND=""
-RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip]
-   imagemagick? ( dev-php/pecl-imagick )
-   virtual/httpd-php"
-
-S=${WORKDIR}/${PN}
-
-pkg_setup() {
-   webapp_pkg_setup
-}
-
-src_install() {
-   webapp_src_preinst
-
-   insinto "${MY_HTDOCSDIR}"
-   doins -r .
-   dodir "${MY_HTDOCSDIR}"/data
-
-   

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

2020-06-10 Thread Bernard Cafarelli
commit: c93ee5f0930ed887880957b051cc611cab5a1779
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Wed Jun 10 11:53:46 2020 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Wed Jun 10 11:58:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93ee5f0

net-misc/nextcloud-client: fix compilation failure with Qt 5.15

Closes: https://bugs.gentoo.org/727474
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Bernard Cafarelli  gentoo.org>

 .../files/nextcloud-client-2.6.4-qt515.patch   | 22 ++
 .../nextcloud-client/nextcloud-client-2.6.4.ebuild |  4 +++-
 2 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/net-misc/nextcloud-client/files/nextcloud-client-2.6.4-qt515.patch 
b/net-misc/nextcloud-client/files/nextcloud-client-2.6.4-qt515.patch
new file mode 100644
index 000..5c59cf46bf3
--- /dev/null
+++ b/net-misc/nextcloud-client/files/nextcloud-client-2.6.4-qt515.patch
@@ -0,0 +1,22 @@
+From 0fe7a657386b107ae498e7749ff4c20116b9752a Mon Sep 17 00:00:00 2001
+From: Michael Schuster 
+Date: Sun, 7 Jun 2020 02:43:45 +0200
+Subject: [PATCH] Fix Qt 5.15.0 build error (missing include)
+
+Signed-off-by: Michael Schuster 
+---
+ src/libsync/networkjobs.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/libsync/networkjobs.cpp b/src/libsync/networkjobs.cpp
+index fd63b9606..bb5786ea9 100644
+--- a/src/libsync/networkjobs.cpp
 b/src/libsync/networkjobs.cpp
+@@ -31,6 +31,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include "networkjobs.h"
+ #include "account.h"

diff --git a/net-misc/nextcloud-client/nextcloud-client-2.6.4.ebuild 
b/net-misc/nextcloud-client/nextcloud-client-2.6.4.ebuild
index 0efd5f09b27..655fcb79a2b 100644
--- a/net-misc/nextcloud-client/nextcloud-client-2.6.4.ebuild
+++ b/net-misc/nextcloud-client/nextcloud-client-2.6.4.ebuild
@@ -51,7 +51,9 @@ DEPEND="${COMMON_DEPEND}
 
 RESTRICT="!test? ( test )"
 
-PATCHES=( "${FILESDIR}"/${PN}-2.6.1-include_tests.patch )
+PATCHES=( "${FILESDIR}"/${PN}-2.6.1-include_tests.patch
+   "${FILESDIR}"/${P}-qt515.patch
+   )
 
 S=${WORKDIR}/desktop-${PV/_/-}
 



  1   2   3   4   >