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

2022-11-19 Thread Arthur Zamarin
commit: b195167c3597750a58aa51f2af0ee50b67d6790e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 17:09:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 17:10:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b195167c

dev-util/pkgcheck: (live) update to newest build system

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-util/pkgcheck/pkgcheck-.ebuild | 17 ++---
 1 file changed, 6 insertions(+), 11 deletions(-)

diff --git a/dev-util/pkgcheck/pkgcheck-.ebuild 
b/dev-util/pkgcheck/pkgcheck-.ebuild
index f3c9d7062d84..2a5d551d17a9 100644
--- a/dev-util/pkgcheck/pkgcheck-.ebuild
+++ b/dev-util/pkgcheck/pkgcheck-.ebuild
@@ -3,8 +3,8 @@
 
 EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_IN_SOURCE_BUILD=1
 inherit elisp-common distutils-r1 optfeature
 
 if [[ ${PV} == * ]] ; then
@@ -29,8 +29,8 @@ if [[ ${PV} == * ]]; then
~sys-apps/pkgcore-[${PYTHON_USEDEP}]"
 else
RDEPEND="
-   >=dev-python/snakeoil-0.10.1[${PYTHON_USEDEP}]
-   >=sys-apps/pkgcore-0.12.15[${PYTHON_USEDEP}]"
+   >=dev-python/snakeoil-0.10.3[${PYTHON_USEDEP}]
+   >=sys-apps/pkgcore-0.12.17[${PYTHON_USEDEP}]"
 fi
 RDEPEND+="
dev-libs/tree-sitter
@@ -46,8 +46,8 @@ RDEPEND+="
app-emacs/flycheck
)
 "
-BDEPEND="
-   ${RDEPEND}
+BDEPEND="${RDEPEND}
+   dev-python/wheel
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
@@ -57,7 +57,7 @@ BDEPEND="
 
 SITEFILE="50${PN}-gentoo.el"
 
-distutils_enable_tests setup.py
+distutils_enable_tests pytest
 
 export USE_SYSTEM_TREE_SITTER_BASH=1
 
@@ -71,11 +71,6 @@ src_compile() {
fi
 }
 
-src_test() {
-   local -x PYTHONDONTWRITEBYTECODE=
-   distutils-r1_src_test
-}
-
 python_install_all() {
local DOCS=( NEWS.rst )
[[ ${PV} == * ]] || doman man/*



[gentoo-commits] proj/pkgcore/pkgcheck:master commit in: data/, data/share/pkgcheck/, src/pkgcheck/scripts/, requirements/, ...

2022-11-19 Thread Arthur Zamarin
commit: 3af5138d54c975ae9ea48d14cfc00726e0f77ac1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Nov 13 21:14:55 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:35:07 2022 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=3af5138d

setup.py: move to pure setuptools

Signed-off-by: Arthur Zamarin  gentoo.org>

 .github/workflows/manylinux.sh |   7 +-
 MANIFEST.in|   1 -
 Makefile   |  14 +
 .../share/bash-completion/completions}/pkgcheck|   0
 data/{ => share/pkgcheck}/ci.py|   0
 data/{ => share/pkgcheck}/perl-version.pl  |   0
 data/{ => share/pkgcheck}/pkgcheck.conf|   0
 .../share/zsh/site-functions}/_pkgcheck|   0
 pyproject.toml |  72 -
 requirements/ci.txt|   1 -
 requirements/dev.txt   |   8 -
 requirements/dist.txt  |   4 -
 requirements/docs.txt  |   1 -
 requirements/install.txt   |   7 -
 requirements/pyproject.toml|  12 -
 requirements/test.txt  |   2 -
 requirements/tox.txt   |   3 -
 setup.cfg  |   4 -
 setup.py   | 330 ++---
 src/pkgcheck/const.py  |   2 +-
 src/pkgcheck/scripts/__init__.py   |   8 +-
 tests/scripts/test_pkgcheck.py |  10 -
 tox.ini|  25 --
 23 files changed, 247 insertions(+), 264 deletions(-)

diff --git a/.github/workflows/manylinux.sh b/.github/workflows/manylinux.sh
index d6eb4ec8..c56892aa 100755
--- a/.github/workflows/manylinux.sh
+++ b/.github/workflows/manylinux.sh
@@ -1,13 +1,12 @@
 #!/bin/sh
 # Mangle the manylinux docker image to successfully build and test wheels.
 
-set -e
-set +x
+set -ex
 
 # install git
-if type -P apk; then
+if command -v apk; then
 apk add --no-cache git bash py3-lxml
-elif type -P yum; then
+elif command -v yum; then
 yum update -y
 yum install -y libxslt-devel libxml2-devel python-devel
 else

diff --git a/MANIFEST.in b/MANIFEST.in
index cd152a18..5784287b 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -2,7 +2,6 @@ include LICENSE *.py *.rst
 include tox.ini pyproject.toml .coveragerc .pylintrc
 recursive-include bin *
 recursive-include contrib *
-recursive-include completion *
 recursive-include data *
 recursive-include doc *
 recursive-include requirements *

diff --git a/Makefile b/Makefile
new file mode 100644
index ..3eb6e2e4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+PYTHON ?= python
+SPHINX_BUILD ?= $(PYTHON) -m sphinx.cmd.build
+
+.PHONY: man html
+man html:
+   $(SPHINX_BUILD) -a -b $@ doc build/sphinx/$@
+
+.PHONY: sdist wheel
+sdist wheel:
+   $(PYTHON) -m build --$@
+
+.PHONY: clean
+clean:
+   $(RM) -r build/sphinx doc/api doc/generated dist

diff --git a/completion/bash/pkgcheck 
b/data/share/bash-completion/completions/pkgcheck
similarity index 100%
rename from completion/bash/pkgcheck
rename to data/share/bash-completion/completions/pkgcheck

diff --git a/data/ci.py b/data/share/pkgcheck/ci.py
similarity index 100%
rename from data/ci.py
rename to data/share/pkgcheck/ci.py

diff --git a/data/perl-version.pl b/data/share/pkgcheck/perl-version.pl
similarity index 100%
rename from data/perl-version.pl
rename to data/share/pkgcheck/perl-version.pl

diff --git a/data/pkgcheck.conf b/data/share/pkgcheck/pkgcheck.conf
similarity index 100%
rename from data/pkgcheck.conf
rename to data/share/pkgcheck/pkgcheck.conf

diff --git a/completion/zsh/_pkgcheck b/data/share/zsh/site-functions/_pkgcheck
similarity index 100%
rename from completion/zsh/_pkgcheck
rename to data/share/zsh/site-functions/_pkgcheck

diff --git a/pyproject.toml b/pyproject.toml
index 39d8f6a8..2f0ac255 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,12 +1,78 @@
 [build-system]
 requires = [
-   "wheel", "setuptools",
+   "setuptools >= 61.0.0",
+   "wheel",
+   # repeat all normal runtime dependencies here
"chardet",
"lazy-object-proxy",
"lxml",
"pathspec",
"tree-sitter>=0.19.0",
-   "snakeoil~=0.9.10",
-   "pkgcore~=0.12.11",
+   "snakeoil~=0.10.2",
+   "pkgcore~=0.12.17",
 ]
 build-backend = "setuptools.build_meta"
+
+[project]
+name = "pkgcheck"
+description = "pkgcore-based QA utility for ebuild repos"
+readme = "README.rst"
+license = {file = "LICENSE"}
+requires-python = "~=3.9"
+authors = [
+   {name = "Tim Harder", email = "radher...@gmail.com"},
+   {name = "Arthur Zamarin", email = "arthur...@gentoo.org"},
+]
+maintainers = [
+   {name = 

[gentoo-commits] proj/pkgcore/pkgcheck:master commit in: /, doc/, doc/generate/pkgcheck/

2022-11-19 Thread Arthur Zamarin
commit: 806bd75c8331835de69d41cd154c869c0d0e9d17
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Nov 13 21:21:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:49:36 2022 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=806bd75c

docs/conf.py: use snakeoil extension

Signed-off-by: Arthur Zamarin  gentoo.org>

 .gitignore  |  1 +
 MANIFEST.in |  2 ++
 Makefile|  2 +-
 doc/conf.py | 39 +--
 doc/generate/pkgcheck/checks.py |  4 ++--
 pyproject.toml  |  7 ---
 6 files changed, 15 insertions(+), 40 deletions(-)

diff --git a/.gitignore b/.gitignore
index e8c09eb9..9e6db4a1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@ _trial_temp
 /doc/_build
 /doc/api
 /doc/generated
+/doc/man/pkgcheck

diff --git a/MANIFEST.in b/MANIFEST.in
index 5784287b..15fbcc7a 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -4,6 +4,8 @@ recursive-include bin *
 recursive-include contrib *
 recursive-include data *
 recursive-include doc *
+recursive-exclude doc/generated *
+recursive-exclude doc/man/pkgcheck *
 recursive-include requirements *
 recursive-include src *
 recursive-include testdata *

diff --git a/Makefile b/Makefile
index 3eb6e2e4..736ed18b 100644
--- a/Makefile
+++ b/Makefile
@@ -11,4 +11,4 @@ sdist wheel:
 
 .PHONY: clean
 clean:
-   $(RM) -r build/sphinx doc/api doc/generated dist
+   $(RM) -r build doc/man/pkgcheck doc/generated dist

diff --git a/doc/conf.py b/doc/conf.py
index 6917f395..440c6603 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -13,20 +13,6 @@
 # All configuration values have a default; values that are commented out
 # serve to show the default.
 
-import os
-import sys
-from importlib import import_module
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-libdir = os.path.abspath(os.path.join('..', 'build', 'lib'))
-if os.path.exists(libdir):
-sys.path.insert(0, libdir)
-
-os.environ['PKGDIST_REPODIR'] = os.path.abspath('..')
-from snakeoil.dist import distutils_extensions as pkgdist
-
 # -- General configuration 
 
 # If your documentation needs a minimal Sphinx version, state it here.
@@ -46,6 +32,7 @@ extensions = [
 'sphinx.ext.coverage',
 'sphinx.ext.ifconfig',
 'sphinx.ext.viewcode',
+'snakeoil.dist.sphinxext',
 ]
 
 # Add any paths that contain templates here, relative to this directory.
@@ -61,17 +48,11 @@ source_suffix = '.rst'
 master_doc = 'index'
 
 # General information about the project.
-project = pkgdist.MODULE_NAME
+project = 'pkgcheck'
 authors = ''
-copyright = '2006-2021, pkgcheck contributors'
+copyright = '2006-2022, pkgcheck contributors'
 
-# The version info for the project you're documenting, acts as replacement for
-# |version| and |release|, also used in various other places throughout the
-# built documents.
-#
-# The short X.Y version.
-version = pkgdist.module_version()
-# The full version, including alpha/beta/rc tags.
+# version is set by snakeoil extension
 release = 'master'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
@@ -241,19 +222,9 @@ latex_documents = [
 
 # -- Options for manual page output ---
 
-bin_path = 
os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'bin')
-scripts = os.listdir(bin_path)
-
-generated_man_pages = [
-(f"{project}.scripts.{s.replace('-', '_')}", s) for s in scripts
-]
-
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
-man_pages = [
-(f'man/{script}', script, 
import_module(module).__doc__.strip().split('\n', 1)[0], [], 1)
-for module, script in generated_man_pages
-]
+man_pages = []
 
 # If true, show URL addresses after external links.
 #man_show_urls = False

diff --git a/doc/generate/pkgcheck/checks.py b/doc/generate/pkgcheck/checks.py
index 04ff7289..e8401079 100755
--- a/doc/generate/pkgcheck/checks.py
+++ b/doc/generate/pkgcheck/checks.py
@@ -40,7 +40,7 @@ def main(f=sys.stdout, **kwargs):
 
 wrapper = TextWrapper(width=85)
 
-for i, scope in enumerate(base.scopes.values()):
+for scope in base.scopes.values():
 _rst_header('-', scope.desc.capitalize() + ' scope')
 
 checks = (x for x in objects.CHECKS.values() if x.scope == scope)
@@ -61,7 +61,7 @@ def main(f=sys.stdout, **kwargs):
 explanation = 
'\n'.join(dedent(explanation).strip().split('\n'))
 out('\n' + explanation)
 if issubclass(check, GentooRepoCheck):
-out(f'\n\n- Gentoo repo specific')
+

[gentoo-commits] proj/pkgcore/pkgcheck:master commit in: .github/workflows/

2022-11-19 Thread Arthur Zamarin
commit: 832171d1aad13dee4b9176c469bd579549502409
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Nov 13 21:34:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:49:37 2022 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=832171d1

ci: update workflows

Signed-off-by: Arthur Zamarin  gentoo.org>

 .github/workflows/doc.yml |  6 ++
 .github/workflows/release.yml | 25 +
 .github/workflows/test.yml| 13 +
 3 files changed, 16 insertions(+), 28 deletions(-)

diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml
index a6552fec..b8a0101e 100644
--- a/.github/workflows/doc.yml
+++ b/.github/workflows/doc.yml
@@ -25,17 +25,15 @@ jobs:
   uses: actions/setup-python@v4
   with:
 python-version: '3.10'
-cache: 'pip'
-cache-dependency-path: requirements/*.txt
 
 - name: Install dependencies
   run: |
 python -m pip install --upgrade pip
-pip install -r requirements/dev.txt -r requirements/docs.txt
+pip install ".[doc]"
 
 - name: Build sphinx documentation
   run: |
-python setup.py build_docs
+make html
 # notify github this isn't a jekyll site
 touch build/sphinx/html/.nojekyll
 

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 3bb70cb1..4ffd6f50 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -4,6 +4,7 @@ on:
   push:
 branches: [deploy]
 tags: [v*]
+  workflow_dispatch:
 
 jobs:
   build-sdist:
@@ -19,22 +20,19 @@ jobs:
 
 - name: Install dependencies
   run: |
-# install deps required for building sdist/wheels
 python -m pip install --upgrade pip
-pip install -r requirements/dist.txt -r requirements/test.txt
+pip install build ".[test,doc]"
 
 - name: Test with pytest
   env:
 PY_COLORS: 1 # forcibly enable pytest colors
-  run: python setup.py test
+  run: pytest
 
 - name: Build sdist
   run: |
 git clean -fxd
-# build sdist
-python setup.py sdist
-# run in-place build so wheel deps use release versions
-python setup.py build_py -i
+make man
+make sdist
 
 - name: Output dist file info
   run: |
@@ -49,10 +47,6 @@ jobs:
 
   build-wheel:
 runs-on: ubuntu-latest
-strategy:
-  fail-fast: false
-  matrix:
-pyver: [cp39, cp310, cp311]
 steps:
 - name: Checkout code
   uses: actions/checkout@v3
@@ -62,13 +56,12 @@ jobs:
   with:
 output-dir: dist
   env:
-CIBW_BUILD: ${{matrix.pyver}}-*
+CIBW_BUILD: cp310-*
 CIBW_ARCHS_LINUX: x86_64
 CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
-CIBW_BEFORE_BUILD: pip install -r {project}/requirements/dist.txt && 
{project}/.github/workflows/manylinux.sh
-CIBW_BEFORE_TEST: pip install -r {project}/requirements/test.txt
-CIBW_ENVIRONMENT: PY_COLORS=1
-CIBW_TEST_COMMAND: pytest -v {project}/tests
+CIBW_BEFORE_BUILD: "{project}/.github/workflows/manylinux.sh && pip 
install '{project}'"
+CIBW_BEFORE_TEST: pip install '{project}[test]'
+CIBW_TEST_COMMAND: pytest {project}/tests
 
 - name: Upload wheel artifacts
   uses: actions/upload-artifact@v3

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5af0c3a3..6659a14c 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -66,9 +66,7 @@ jobs:
 
 - name: Pin dependencies to minimal versions
   if: ${{ matrix.deps == 'minimal-deps' }}
-  run: |
-sed -i -e 's:~=:==:' requirements/*
-mv requirements/install.txt requirements/dev.txt
+  run: sed -e '/^requires-python/!s/~=/==/' -i pyproject.toml
 
 # To use libtree-sitter-bash.so installed on the system, we need to compile
 # it manually, because ubuntu doesn't yet package (but Gentoo does)
@@ -92,13 +90,12 @@ jobs:
   with:
 python-version: ${{ matrix.python-version }}
 cache: 'pip'
-cache-dependency-path: requirements/*.txt
+cache-dependency-path: pyproject.toml
 
-- name: Install python deps
+- name: Install dependencies
   run: |
 python -m pip install --upgrade pip
-pip install -r requirements/test.txt -r requirements/ci.txt
-pip install .
+pip install ".[test]"
 
 - name: Test with pytest
   env:
@@ -136,7 +133,7 @@ jobs:
 - name: Install dependencies
   run: |
 python -m pip install --upgrade pip
-pip install -r requirements/dev.txt pylint
+pip install . pylint
 
 - name: Run linting tools
   run: |



[gentoo-commits] proj/pkgcore/pkgcheck:master commit in: /, .github/workflows/

2022-11-19 Thread Arthur Zamarin
commit: 5fd8dcad9d55cdc1c98a3cd93c82e324e486bdc0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov 14 20:42:05 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:49:38 2022 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=5fd8dcad

release: cleaner and cross support

Signed-off-by: Arthur Zamarin  gentoo.org>

 .github/workflows/manylinux.sh | 20 
 .github/workflows/release.yml  | 19 ---
 pyproject.toml | 36 
 3 files changed, 48 insertions(+), 27 deletions(-)

diff --git a/.github/workflows/manylinux.sh b/.github/workflows/manylinux.sh
deleted file mode 100755
index c56892aa..
--- a/.github/workflows/manylinux.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-# Mangle the manylinux docker image to successfully build and test wheels.
-
-set -ex
-
-# install git
-if command -v apk; then
-apk add --no-cache git bash py3-lxml
-elif command -v yum; then
-yum update -y
-yum install -y libxslt-devel libxml2-devel python-devel
-else
-apt-get update
-apt-get install -y git libxml2-dev libxslt-dev python-dev
-fi
-
-# download static build of recent bash release
-URL="https://github.com/robxu9/bash-static/releases/download/5.1.016-1.2.3/bash-linux-${1:-x86_64};
-curl -L "$URL" > /usr/local/bin/bash
-chmod +x /usr/local/bin/bash

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 4ffd6f50..6de38945 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -47,21 +47,26 @@ jobs:
 
   build-wheel:
 runs-on: ubuntu-latest
+strategy:
+  fail-fast: false
+  matrix:
+arch: [x86_64, aarch64, ppc64le, s390x]
+
 steps:
 - name: Checkout code
   uses: actions/checkout@v3
 
+- name: Set up QEMU
+  uses: docker/setup-qemu-action@v2
+  with:
+platforms: ${{matrix.arch}}
+
 - name: Build wheels
-  uses: joerick/cibuildwheel@v2.10.0
+  uses: joerick/cibuildwheel@v2.11.2
   with:
 output-dir: dist
   env:
-CIBW_BUILD: cp310-*
-CIBW_ARCHS_LINUX: x86_64
-CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_24
-CIBW_BEFORE_BUILD: "{project}/.github/workflows/manylinux.sh && pip 
install '{project}'"
-CIBW_BEFORE_TEST: pip install '{project}[test]'
-CIBW_TEST_COMMAND: pytest {project}/tests
+CIBW_ARCHS_LINUX: ${{matrix.arch}}
 
 - name: Upload wheel artifacts
   uses: actions/upload-artifact@v3

diff --git a/pyproject.toml b/pyproject.toml
index bb6410bc..6245024e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -77,3 +77,39 @@ version = {attr = "pkgcheck.__version__"}
 minversion = "6.0"
 addopts = "-vv -ra -l"
 testpaths = ["tests"]
+
+[tool.cibuildwheel]
+build = "cp310-*"
+build-frontend = "build"
+
+before-build = [
+   "rm -f {project}/src/pkgcheck/bash/lang.so"
+]
+test-requires = ["pytest", "requests"]
+test-command = "pytest {project}/tests"
+
+# glibc 2.24
+manylinux-x86_64-image = "manylinux_2_24"
+manylinux-i686-image = "manylinux_2_24"
+manylinux-aarch64-image = "manylinux_2_24"
+manylinux-ppc64le-image = "manylinux_2_24"
+manylinux-s390x-image = "manylinux_2_24"
+test-skip = "*-*linux_{aarch64,ppc64le,s390x}"
+
+[[tool.cibuildwheel.overrides]]
+select = "*-musllinux*"
+before-all = [
+   "apk add --no-cache git bash libxml2-dev libxslt-dev",
+]
+
+[[tool.cibuildwheel.overrides]]
+select = "*-manylinux*"
+before-all = [
+   "apt-get update",
+   "apt-get install -y git libxml2-dev libxslt-dev",
+   # "yum update -y",
+   # "yum install -y git libxslt-devel libxml2-devel",
+
+   "curl -L 
\"https://github.com/robxu9/bash-static/releases/download/5.1.016-1.2.3/bash-linux-$(uname
 -m)\" -o /usr/local/bin/bash",
+   "chmod +x /usr/local/bin/bash",
+]



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/

2022-11-19 Thread Thomas Beierlein
commit: 9703f41aedd0aa5ac5acc05397609d969123c929
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sat Nov 19 16:09:22 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sat Nov 19 16:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9703f41a

sci-electronics/puff: Filter out -flto

Closes: https://bugs.gentoo.org/862516
Signed-off-by: Thomas Beierlein  gentoo.org>

 sci-electronics/puff/puff-20181104.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sci-electronics/puff/puff-20181104.ebuild 
b/sci-electronics/puff/puff-20181104.ebuild
index ab384b49ccc0..c3e3c633e08d 100644
--- a/sci-electronics/puff/puff-20181104.ebuild
+++ b/sci-electronics/puff/puff-20181104.ebuild
@@ -29,6 +29,8 @@ src_prepare() {
 }
 
 src_compile() {
+#  # fails to compile with -flto (bug #862516)
+   filter-lto
LDFLAGS="$(raw-ldflags)"
emake -j1 CC="$(tc-getCC)" LD="$(tc-getLD)"
 }



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/files/, sci-electronics/puff/

2022-11-19 Thread Thomas Beierlein
commit: bcaeda147edececb884f685eea7c1116e00b299d
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sat Nov 19 16:05:51 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sat Nov 19 16:58:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcaeda14

sci-electronics/puff: Drop explicit linker format option

Fall back to using the default format options for LD as well as LLD.
Furthermore add explicite LDPATH to locate libX11.so

Closes: https://bugs.gentoo.org/831569
Signed-off-by: Thomas Beierlein  gentoo.org>

 sci-electronics/puff/files/puff-20181104-Makefile.patch | 5 +++--
 sci-electronics/puff/puff-20181104.ebuild   | 5 -
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/sci-electronics/puff/files/puff-20181104-Makefile.patch 
b/sci-electronics/puff/files/puff-20181104-Makefile.patch
index a874b9173aed..c51c87d1d33b 100644
--- a/sci-electronics/puff/files/puff-20181104-Makefile.patch
+++ b/sci-electronics/puff/files/puff-20181104-Makefile.patch
@@ -2,7 +2,7 @@
 # respect CC and LD
 --- Makefile.old   2021-07-03 16:34:49.937098627 +0200
 +++ Makefile   2021-07-03 16:33:56.615284555 +0200
-@@ -1,12 +1,13 @@
+@@ -1,12 +1,14 @@
  X11LIBDIR = /usr/X11R6/lib
  PASCALCOMPILER = fpc
 -CC = gcc
@@ -15,7 +15,8 @@
  puff: $(POBJS) puff_c.o ppas.sh
 -  sed 's/link.res/link.res puff_c.o -lX11/' ppasx.sh
 +  sed -i -e 's!^[^[:space:]]\+ -b!$(LD) -b!g' ppas.sh
-+  sed 's/.res/.res $(LDFLAGS) puff_c.o -lX11/' ppasx.sh
++  sed -i -e 's/\-b [^[:space:]]\+//g' ppas.sh
++  sed 's:.res:.res $(LDFLAGS) puff_c.o -lX11:' ppasx.sh
sh ppasx.sh
  
  %.o:  %.pas

diff --git a/sci-electronics/puff/puff-20181104.ebuild 
b/sci-electronics/puff/puff-20181104.ebuild
index 3ec8bccda1fa..ab384b49ccc0 100644
--- a/sci-electronics/puff/puff-20181104.ebuild
+++ b/sci-electronics/puff/puff-20181104.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -21,7 +21,10 @@ src_prepare() {
default
# fix lib path for X11 and dont ignore LDFLAGS
# respect CC and LD
+   # additional drop explicite format option for linker (bug #831569)
eapply -p0 "${FILESDIR}"/$P-Makefile.patch
+   # add missing LDPATH for libX11.so
+   sed -i -e "s:-lX11:-L/usr/$(get_libdir) -lX11:g" Makefile || die
eapply_user
 }
 



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/puff/

2022-11-19 Thread Thomas Beierlein
commit: b124c4ea8c9c6d2db1e61dae51962012e5d59da8
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Sat Nov 19 16:56:53 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Sat Nov 19 16:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b124c4ea

sci-electronics/puff: Drop illegal parameter

Closes: https://bugs.gentoo.org/880225
Signed-off-by: Thomas Beierlein  gentoo.org>

 sci-electronics/puff/puff-20181104.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sci-electronics/puff/puff-20181104.ebuild 
b/sci-electronics/puff/puff-20181104.ebuild
index c3e3c633e08d..80838dd3c7ef 100644
--- a/sci-electronics/puff/puff-20181104.ebuild
+++ b/sci-electronics/puff/puff-20181104.ebuild
@@ -25,6 +25,8 @@ src_prepare() {
eapply -p0 "${FILESDIR}"/$P-Makefile.patch
# add missing LDPATH for libX11.so
sed -i -e "s:-lX11:-L/usr/$(get_libdir) -lX11:g" Makefile || die
+   # drop no longer needed and now unsupported paramter '-T' (bug #8802225)
+   sed -i -e "s: -T : :g" Makefile || die
eapply_user
 }
 



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

2022-11-19 Thread Michał Górny
commit: 203b773833290d0972fb61193c0d90bfa51cfe2f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:55:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:57:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203b7738

dev-python/shapely: Remove old

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

 dev-python/shapely/Manifest |  1 -
 dev-python/shapely/shapely-1.8.4.ebuild | 50 -
 2 files changed, 51 deletions(-)

diff --git a/dev-python/shapely/Manifest b/dev-python/shapely/Manifest
index b3454e29..0c2de6069e9d 100644
--- a/dev-python/shapely/Manifest
+++ b/dev-python/shapely/Manifest
@@ -1,2 +1 @@
-DIST shapely-1.8.4.gh.tar.gz 322701 BLAKE2B 
79cca2290b8e32ac146316feff4ccb332d47dd11ec4753f83618305c169e085629858c5e9d66fe281adda36be46eaebe996e2fe67dace1e6cbe9a7ca322c1c18
 SHA512 
8b57a2e83f8eb10a041f6a8d9170b84ed708a5835a16874761e5ccec0453ff34a282aeefb0367ab79c85216a68f5bb8b4b75503e81eaa3f7277f4036b8b0b242
 DIST shapely-1.8.5.post1.gh.tar.gz 323178 BLAKE2B 
05ff22f972446da340714548f5a2ad233f8bac8bb0710a8c5444dc44e7d5ad0d2c2d37bc3ddb987f57accd065c75c9627752a6c6cb3590621e39812674c678e9
 SHA512 
99a406833ebd13cb3f88fb710ed66f545a0b128d201e82ff381de0214cde38c685a622f78e964d6d41fc9ba096bc62e63bf9da04d216dedf2f96bb1e3496d48f

diff --git a/dev-python/shapely/shapely-1.8.4.ebuild 
b/dev-python/shapely/shapely-1.8.4.ebuild
deleted file mode 100644
index a437821df180..
--- a/dev-python/shapely/shapely-1.8.4.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Geometric objects, predicates, and operations"
-HOMEPAGE="
-   https://pypi.org/project/Shapely/
-   https://github.com/shapely/shapely/
-"
-SRC_URI="
-   https://github.com/shapely/shapely/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-DEPEND="
-   >=sci-libs/geos-3.9
-"
-RDEPEND="
-   ${DEPEND}
-   dev-python/numpy[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   ${DEPEND}
-   dev-python/cython[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs dev-python/matplotlib
-
-src_prepare() {
-   rm -r _vendor || die
-   sed -i -e 's:_vendor\.::' setup.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   rm -rf shapely || die
-   epytest
-}



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

2022-11-19 Thread Michał Górny
commit: 1770ff506d372abfb7657bd729b5a244aa1b077a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:56:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:57:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1770ff50

dev-python/simpy: Remove old

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

 dev-python/simpy/simpy-4.0.1.ebuild | 28 
 1 file changed, 28 deletions(-)

diff --git a/dev-python/simpy/simpy-4.0.1.ebuild 
b/dev-python/simpy/simpy-4.0.1.ebuild
deleted file mode 100644
index 86288c2b3512..
--- a/dev-python/simpy/simpy-4.0.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} )
-PYTHON_REQ_USE="tk"
-
-inherit distutils-r1
-
-MY_P="${P/simpy/SimPy}"
-
-DESCRIPTION="Object-oriented, process-based discrete-event simulation language"
-HOMEPAGE="https://simpy.readthedocs.org;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-
-BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
-
-# Could not import extension sphinx.builders.epub3 (exception: cannot import
-# name 'StandaloneHTMLBuilder' from partially initialized module
-# 'sphinx.builders.html' (most likely due to a circular import)
-# (/usr/lib/python3.10/site-packages/sphinx/builders/html/__init__.py))
-#distutils_enable_sphinx docs dev-python/sphinx_rtd_theme
-distutils_enable_tests --install pytest



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

2022-11-19 Thread Michał Górny
commit: cff34ec928fd89fa07bfe43ccbf27b54939e4108
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:56:29 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:57:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cff34ec9

dev-python/xxhash: Remove old

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

 dev-python/xxhash/Manifest|  1 -
 dev-python/xxhash/xxhash-3.0.0.ebuild | 38 ---
 2 files changed, 39 deletions(-)

diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest
index ceac0fcc9cac..f35f9c821333 100644
--- a/dev-python/xxhash/Manifest
+++ b/dev-python/xxhash/Manifest
@@ -1,2 +1 @@
-DIST xxhash-3.0.0.tar.gz 74279 BLAKE2B 
4c3d68103a7145aa1fd99da955b206c734c7882f1f6f3020d8bce9e5f2eb9714b9168b28918595bbb60445a024ec50d606e387358e6db8f4e575014763dece65
 SHA512 
170bfbacf0c4f8136550a257328d71dca096d996a52993a54442a7c5a54d48c51bb7997b3a718d73ae6c8e25a672ed4de664e7a651e02c43eb5f3fd135a59a80
 DIST xxhash-3.1.0.tar.gz 74389 BLAKE2B 
c2c7467aca51a397366c9de47104831f2d3d732b6b287e3fce4a0481d21bf059330dd63e1372b8da3aa9354efbc3de6ba106501d86c907b5783f7192e5e7c9a1
 SHA512 
a1d78dbbcc8fc8e41b6bc1d9e571df6951d4545fe61b198427db6f8c99058a095cf20e09951acc7bf9b432963f8b234741ae1f15ebb19972e69be0c59c9eb165

diff --git a/dev-python/xxhash/xxhash-3.0.0.ebuild 
b/dev-python/xxhash/xxhash-3.0.0.ebuild
deleted file mode 100644
index 851eca3965af..
--- a/dev-python/xxhash/xxhash-3.0.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python binding for the xxHash library"
-HOMEPAGE="
-   https://github.com/ifduyue/python-xxhash/
-   https://pypi.org/project/xxhash/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
-
-DEPEND="
-   >=dev-libs/xxhash-0.8.0
-"
-RDEPEND="
-   ${DEPEND}
-"
-
-distutils_enable_tests unittest
-
-python_configure_all() {
-   export XXHASH_LINK_SO=1
-}
-
-python_test() {
-   cd tests || die
-   eunittest
-}



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

2022-11-19 Thread Michał Górny
commit: 284e5bd2ce83179ef218b42f2b126c35d30ade49
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:56:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:57:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=284e5bd2

dev-python/sqlalchemy: Remove old

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

 dev-python/sqlalchemy/Manifest |  2 -
 dev-python/sqlalchemy/sqlalchemy-1.4.41.ebuild | 94 --
 dev-python/sqlalchemy/sqlalchemy-1.4.42.ebuild | 94 --
 3 files changed, 190 deletions(-)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index 9d90cc342cd9..a7ad520b42cb 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -1,4 +1,2 @@
-DIST SQLAlchemy-1.4.41.tar.gz 8281227 BLAKE2B 
31fb2bfcb41ceefc2c6ed70444b5d8b38a862e06899dd9b5ede7fde0b624ce9f8be766028aaf32b36983268c35e61d87ada5a597260fb97efe72bfc27ce15a71
 SHA512 
f03a2d4d61a108b4091a4d2ccf2bf49ea22e6c30fcbd70758f89dc3817968e7b5ffa603ce0158812fe42814cd08bbadd00079609a47765d3c534d769835a5543
-DIST SQLAlchemy-1.4.42.tar.gz 8303728 BLAKE2B 
8b3a4f1c0931e6182b0251b986d3efb14b032035cb9b6f86fbbd9928f69a12436944c6e5a81aca6ca50dbea76306b14ca8ef68ea36ef82c4b4531498681191a4
 SHA512 
113e7c5e0949d70091f74271a55722caa1597d65e2e18208691dfd3ff1753b6eec7e69da954958e6dbd34d9c78c022e73bc123d1d1536d27d24f77c044e13621
 DIST SQLAlchemy-1.4.43.tar.gz 8510996 BLAKE2B 
49e77ab7ac75c622981a5ba81efc75e39369d988811a514c7bda10fdddeb64a7a573a452d5afe02d3379d3f56a7f70400a898544b1c0dc995efa1edf991029af
 SHA512 
ee26578874617d46bee8c45e5358e966dafe76d11ff3773a0ce058cfdc180642c87ead782b64e0709aa6af2f92fbcb8a4df3d5e5ce69c9ee3ed4a8583be3b802
 DIST SQLAlchemy-1.4.44.tar.gz 8516775 BLAKE2B 
647a43b2c01bcf066891e6bf2247271ff051ebc0d75c2e06b04879d058aacc54dced5d1af00c9489ba515621c56bb6f358836e1658f0069295f125675956797e
 SHA512 
ba4e022f7af77cdf099b59a7af088852d7d4e0b4c6d632a63d244f501ff0b76837e601de63619f219fe50e6d526cd13415c4e623a6127afb0a2f24b87a4c3ece

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.41.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.4.41.ebuild
deleted file mode 100644
index 95c8a6f558a3..
--- a/dev-python/sqlalchemy/sqlalchemy-1.4.41.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{8..11} )
-PYTHON_REQ_USE="sqlite?"
-
-inherit distutils-r1 optfeature
-
-MY_PN="SQLAlchemy"
-MY_P="${MY_PN}-${PV/_beta/b}"
-
-DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
-HOMEPAGE="
-   https://www.sqlalchemy.org/
-   https://pypi.org/project/SQLAlchemy/
-   https://github.com/sqlalchemy/sqlalchemy/
-"
-SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
-IUSE="examples +sqlite test"
-
-BDEPEND="
-   test? (
-   $(python_gen_impl_dep sqlite)
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # hardcode call counts specific to Python versions
-   test/aaa_profiling
-)
-
-src_prepare() {
-   sed -i -e '/greenlet/d' setup.cfg || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # warning tests are unreliable
-   test/base/test_warnings.py
-   )
-   [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
-   
test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access
-   )
-   if ! has_version "dev-python/greenlet[${PYTHON_USEDEP}]"; then
-   EPYTEST_DESELECT+=(
-   
test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_execution
-   
test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync
-   
"test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]"
-   
"test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]"
-   
"test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]"
-   )
-   fi
-
-   # upstream's test suite is horribly hacky; it relies on disabling
-   # the warnings plugin and turning warnings into errors;  this also
-   # means that any DeprecationWarnings from third-party plugins cause
-   # everything to explode
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   local -x PYTEST_PLUGINS=
-   # upstream automagically depends on xdist when it is importable
-   if has_version "dev-python/pytest-xdist[${PYTHON_USEDEP}]"; then
- 

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

2022-11-19 Thread Arthur Zamarin
commit: 507b12165876631bccff07295a111f6c7c73f76a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=507b1216

dev-python/requests-oauthlib: Keyword 1.3.1 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/requests-oauthlib/requests-oauthlib-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/requests-oauthlib/requests-oauthlib-1.3.1.ebuild 
b/dev-python/requests-oauthlib/requests-oauthlib-1.3.1.ebuild
index 2e2962f4c0f7..d4867d294611 100644
--- a/dev-python/requests-oauthlib/requests-oauthlib-1.3.1.ebuild
+++ b/dev-python/requests-oauthlib/requests-oauthlib-1.3.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/requests/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="ISC"
-KEYWORDS="amd64 ~arm ~riscv x86"
+KEYWORDS="amd64 ~arm ~ppc64 ~riscv x86"
 
 RDEPEND="
>=dev-python/requests-2.0.0[${PYTHON_USEDEP}]



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

2022-11-19 Thread Arthur Zamarin
commit: 8403fb0115098abc6fa77bb085ac9b7fd45ca57e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8403fb01

dev-python/pyxDamerauLevenshtein: Keyword 1.7.1 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git 
a/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.7.1.ebuild 
b/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.7.1.ebuild
index bd6a7e47f77e..6736f1d9b636 100644
--- a/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.7.1.ebuild
+++ b/dev-python/pyxDamerauLevenshtein/pyxDamerauLevenshtein-1.7.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 
 RDEPEND="
dev-python/cython[${PYTHON_USEDEP}]



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

2022-11-19 Thread Arthur Zamarin
commit: 0991dc70d98d241c781f2b8e50d2dc3ead8683ca
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:53 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0991dc70

dev-python/textdistance: Keyword 4.5.0 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/textdistance/textdistance-4.5.0.ebuild 
b/dev-python/textdistance/textdistance-4.5.0.ebuild
index 6fd3810032d1..5f557cf3b372 100644
--- a/dev-python/textdistance/textdistance-4.5.0.ebuild
+++ b/dev-python/textdistance/textdistance-4.5.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 
 BDEPEND="
test? (



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

2022-11-19 Thread Arthur Zamarin
commit: e2ef9528d7054b8c5cfbb75ff14ca6025ad2ed5b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2ef9528

dev-python/jellyfish: Keyword 0.9.0-r1 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/jellyfish/jellyfish-0.9.0-r1.ebuild 
b/dev-python/jellyfish/jellyfish-0.9.0-r1.ebuild
index c1ec210d8b08..3ced1436c4f5 100644
--- a/dev-python/jellyfish/jellyfish-0.9.0-r1.ebuild
+++ b/dev-python/jellyfish/jellyfish-0.9.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 
 distutils_enable_tests pytest
 



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

2022-11-19 Thread Arthur Zamarin
commit: 439633fbdd88c90cfe30ccbad2197ebdca3e69e6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=439633fb

dev-python/abydos: Keyword 0.5.0-r2 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/abydos/abydos-0.5.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/abydos/abydos-0.5.0-r2.ebuild 
b/dev-python/abydos/abydos-0.5.0-r2.ebuild
index 65f0c11a6a3a..1ed6a80c87e1 100644
--- a/dev-python/abydos/abydos-0.5.0-r2.ebuild
+++ b/dev-python/abydos/abydos-0.5.0-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/chrislit/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 
 # Requires access to the internet
 RESTRICT="test"



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

2022-11-19 Thread Arthur Zamarin
commit: c63f9d8a4ae583d819acff32aa6d5ddf69418e67
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:51 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c63f9d8a

dev-python/nltk: Keyword 3.7 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/nltk/nltk-3.7.ebuild b/dev-python/nltk/nltk-3.7.ebuild
index 0855f4a1b8fc..66c75c9b3b89 100644
--- a/dev-python/nltk/nltk-3.7.ebuild
+++ b/dev-python/nltk/nltk-3.7.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/nltk/nltk/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-solaris"
+KEYWORDS="amd64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-solaris"
 IUSE="tk"
 
 RDEPEND="



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

2022-11-19 Thread Arthur Zamarin
commit: fc23b2f56ded733b993a1a5c7a1c045c0d61b7b7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc23b2f5

dev-python/nltk-data: Keyword 20221108 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/nltk-data/nltk-data-20221108.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/nltk-data/nltk-data-20221108.ebuild 
b/dev-python/nltk-data/nltk-data-20221108.ebuild
index 26c9531c0a33..44624c3de360 100644
--- a/dev-python/nltk-data/nltk-data-20221108.ebuild
+++ b/dev-python/nltk-data/nltk-data-20221108.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://www.nltk.org/nltk_data/;
 # TODO: create a USE flag for free-ish subset
 LICENSE="all-rights-reserved"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 IUSE="extra"
 RESTRICT="bindist mirror"
 



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

2022-11-19 Thread Arthur Zamarin
commit: 4f4a37e4cba661724b16bfdb27c60eb160a82410
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:56:51 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:56:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f4a37e4

dev-python/twython: Keyword 3.9.1-r1 ppc64, #872680

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/twython/twython-3.9.1-r1.ebuild 
b/dev-python/twython/twython-3.9.1-r1.ebuild
index cf9ff0e450af..c9dd3d20032b 100644
--- a/dev-python/twython/twython-3.9.1-r1.ebuild
+++ b/dev-python/twython/twython-3.9.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 
 RDEPEND="
>=dev-python/requests-2.1.0[${PYTHON_USEDEP}]



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

2022-11-19 Thread Michał Górny
commit: 5767fbc5237c608c4f0ccec0cb25fbc6092bfa55
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:53:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:53:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5767fbc5

dev-python/rpy: Remove old

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

 dev-python/rpy/Manifest |  1 -
 dev-python/rpy/rpy-3.5.4.ebuild | 41 -
 2 files changed, 42 deletions(-)

diff --git a/dev-python/rpy/Manifest b/dev-python/rpy/Manifest
index 154d8619e7bc..3e76efd18ebc 100644
--- a/dev-python/rpy/Manifest
+++ b/dev-python/rpy/Manifest
@@ -1,2 +1 @@
-DIST rpy2-3.5.4.tar.gz 208307 BLAKE2B 
bd302a65daf9f702f66cde63484552c8b01777baf1fd99f1631711806ea259df51d4beb7800b6fa9f9816637b1b6a0f75bb583e256c956142aaad5b677038fa2
 SHA512 
65a0a4516f362459667a678c3aeaaa05fa1df785ac4e203122e6268db1578af8d7344b905ef27528c20ebdf93bbbe5f1b6a5d8958d1f5dca2867d95f191afb5b
 DIST rpy2-3.5.5.tar.gz 210255 BLAKE2B 
b26aa4830f10b69ad8a9b21df14784203f77ea35b403a5b9d6135680ab47b47edbc480e3dbfcc469ffd523262c977c9a78e3597e467f5ccb3643c66a8a49b94e
 SHA512 
47ce62851ec5385e3d8da947bb30cb71bf28fdba5891ec729f227313aa3863a2fa7be9ec3b7b2fffa4c09ebae131d15a8723f796c85406e5c19ea4a480f8e653

diff --git a/dev-python/rpy/rpy-3.5.4.ebuild b/dev-python/rpy/rpy-3.5.4.ebuild
deleted file mode 100644
index 7fc4a253ebc8..
--- a/dev-python/rpy/rpy-3.5.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite"
-inherit distutils-r1 virtualx
-
-MYSLOT=2
-MY_PN=${PN}${MYSLOT}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python interface to the R Programming Language"
-HOMEPAGE="https://rpy.sourceforge.net/
-   https://pypi.org/project/rpy2/;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-
-# ggplot2 is a test dep but not in portage
-RESTRICT="test"
-
-RDEPEND="
-   >=dev-lang/R-3.2
-   dev-python/cffi[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   >=dev-python/pandas-0.13.1[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/tzlocal[${PYTHON_USEDEP}]
-"
-PDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"
-
-python_test() {
-   cd "${BUILD_DIR}"/lib || die
-   virtx "${EPYTHON}" -m 'rpy2.tests'
-}



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

2022-11-19 Thread Michał Górny
commit: 90abb6f027bc5fbd1e6cf9f936049b26d8b71367
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:53:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:53:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90abb6f0

dev-python/progressbar2: Remove old

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

 dev-python/progressbar2/Manifest  |  2 --
 dev-python/progressbar2/progressbar2-4.0.0.ebuild | 33 --
 dev-python/progressbar2/progressbar2-4.1.1.ebuild | 34 ---
 3 files changed, 69 deletions(-)

diff --git a/dev-python/progressbar2/Manifest b/dev-python/progressbar2/Manifest
index 3599f2db569d..ad43361d74f6 100644
--- a/dev-python/progressbar2/Manifest
+++ b/dev-python/progressbar2/Manifest
@@ -1,3 +1 @@
-DIST progressbar2-4.0.0.tar.gz 663046 BLAKE2B 
1616f1b9c5f720f370dc9eb02ba37cf83391c853a525fca523fb33af1b580f38647b835a83558674a78dacc33bf7652cb9af8799ad13763f62d33417abaa35cf
 SHA512 
b9b9dabb3093e42bc6f40c0e284caae2d29ebfa450db379c214a5ae39e7ccb8c690655da21a44882d0b68f24d83f55a3342671087a25ada168bce9d236685666
-DIST progressbar2-4.1.1.tar.gz 638622 BLAKE2B 
f9e73c29aac68f3f12c978e29990382dd2a31f668159f9198c162901b2e4ae1e52943fb0a3259fadb8aa62e45e57c0f867923e064953c6f9ddc5ff2c62a5dea1
 SHA512 
4df7652584c867589448ea8765ba2da99ce5e4c9cfc27268ff850dfe41efa6342a6a44f19384c5c54ef8c79432db35a755958ed9561cf2d37f98fc661a42099f
 DIST progressbar2-4.2.0.tar.gz 650564 BLAKE2B 
7b4d9604626d0944040e59af1b52bf1cf2c045b6a256c7fd4233fa2ee22491484ecb721fe680ad326f7ef383c7070cebad38729c45e91ca2d3b6fcc6c51127a1
 SHA512 
d49c154e48bd730c2a7916ed53272ff20cb6fac8c9752734cf645d4701ffcdf25309bf493d03fdc5b6072a85b5f758332fa7448f307d4acc001ad4ab36303a68

diff --git a/dev-python/progressbar2/progressbar2-4.0.0.ebuild 
b/dev-python/progressbar2/progressbar2-4.0.0.ebuild
deleted file mode 100644
index 730fd2de7dcc..
--- a/dev-python/progressbar2/progressbar2-4.0.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Text progressbar library for python"
-HOMEPAGE="https://progressbar-2.readthedocs.io/ 
https://pypi.org/project/progressbar2/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/python-utils-3.0.0[${PYTHON_USEDEP}]
-   !dev-python/progressbar
-"
-BDEPEND="
-   test? ( dev-python/freezegun[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e '/cov/d' pytest.ini || die
-   default
-}
-
-python_test() {
-   PYTHONDONTWRITEBYTECODE=1 epytest tests
-}

diff --git a/dev-python/progressbar2/progressbar2-4.1.1.ebuild 
b/dev-python/progressbar2/progressbar2-4.1.1.ebuild
deleted file mode 100644
index cdd74919e01e..
--- a/dev-python/progressbar2/progressbar2-4.1.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-inherit distutils-r1
-
-DESCRIPTION="Text progressbar library for python"
-HOMEPAGE="https://progressbar-2.readthedocs.io/ 
https://pypi.org/project/progressbar2/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/python-utils-3.0.0[${PYTHON_USEDEP}]
-   !dev-python/progressbar
-"
-BDEPEND="
-   test? ( dev-python/freezegun[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e '/cov/d' pytest.ini || die
-   default
-}
-
-python_test() {
-   PYTHONDONTWRITEBYTECODE=1 epytest tests
-}



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

2022-11-19 Thread Michał Górny
commit: 8a3fb5e620361a7e9b80c1f2ac9eb8d113641237
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:53:29 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:53:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a3fb5e6

dev-python/python3-xapp: Remove old

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

 dev-python/python3-xapp/Manifest   |  1 -
 .../python3-xapp/python3-xapp-2.2.1-r1.ebuild  | 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/python3-xapp/Manifest b/dev-python/python3-xapp/Manifest
index 52f82221503a..41ee73e1ec99 100644
--- a/dev-python/python3-xapp/Manifest
+++ b/dev-python/python3-xapp/Manifest
@@ -1,2 +1 @@
-DIST python3-xapp-2.2.1.tar.gz 20739 BLAKE2B 
11f3b8964aedc726235d1c9350b159ed5cc0e859f33d6390d06e8df225eb86d0d6a392d16023a460ae0dad69f4a65b3cc8c3a759e8a4e5abab491a6d71ea8ab9
 SHA512 
2c03a6201404d7c792e12b10241309c912ca6b1daaa56aa0867ddbb16af053f110e4cb05da969b1800678d60acc0e6d19fc097581e6b195fff9f68acb48505ff
 DIST python3-xapp-2.2.2.tar.gz 20872 BLAKE2B 
72bfd020477382480a5cf007107a197a86bd96c886b54440bee5eb0cf124294feac01c04dee24525d892cc5e701abf4e64753f2bff09d417e9e18ee314eb57a4
 SHA512 
d4aac6949bfe4adfe5fdb08edb80e622ccf04c2d571760aec280b43ff26b246c0d8f09eda6d7281381bf3a367002a7cce780664eb1f9933db6e9f63084d99def

diff --git a/dev-python/python3-xapp/python3-xapp-2.2.1-r1.ebuild 
b/dev-python/python3-xapp/python3-xapp-2.2.1-r1.ebuild
deleted file mode 100644
index 09b9302b496b..
--- a/dev-python/python3-xapp/python3-xapp-2.2.1-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for x11-libs/xapp"
-HOMEPAGE="https://github.com/linuxmint/python3-xapp;
-SRC_URI="https://github.com/linuxmint/python3-xapp/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-IUSE=""
-
-DEPEND="
-   >=x11-libs/xapp-2.2.0[introspection]
-"
-RDEPEND="
-   ${DEPEND}
-   dev-python/psutil[${PYTHON_USEDEP}]
-"



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

2022-11-19 Thread Michał Górny
commit: a2ca0072ca7e732387230d929f31a2c4fa2bf891
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:52:49 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:52:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ca0072

dev-python/logbook: Remove old

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

 dev-python/logbook/Manifest |  1 -
 dev-python/logbook/logbook-1.5.3.ebuild | 45 -
 2 files changed, 46 deletions(-)

diff --git a/dev-python/logbook/Manifest b/dev-python/logbook/Manifest
index caba909f7046..36a1b5c15aeb 100644
--- a/dev-python/logbook/Manifest
+++ b/dev-python/logbook/Manifest
@@ -1,2 +1 @@
 DIST logbook-1.5.3.gh.tar.gz 371901 BLAKE2B 
e37924e06613ccf27380004b159966b7b42ec7b766afb6904751eafb3d774c5a9994b9d63f834fbe949fe345953c0da4693e093d717b589046412bd4056322bf
 SHA512 
c9068324f12a189ced98e2c02753489847fa533ce3a3af07b62c73e9959c2e014d47515d47e756d031639cb220a2c4a9a380cba4cb3ea1b190c50106decba686
-DIST logbook-1.5.3.tar.gz 371901 BLAKE2B 
e37924e06613ccf27380004b159966b7b42ec7b766afb6904751eafb3d774c5a9994b9d63f834fbe949fe345953c0da4693e093d717b589046412bd4056322bf
 SHA512 
c9068324f12a189ced98e2c02753489847fa533ce3a3af07b62c73e9959c2e014d47515d47e756d031639cb220a2c4a9a380cba4cb3ea1b190c50106decba686

diff --git a/dev-python/logbook/logbook-1.5.3.ebuild 
b/dev-python/logbook/logbook-1.5.3.ebuild
deleted file mode 100644
index c6cca63be0e0..
--- a/dev-python/logbook/logbook-1.5.3.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit distutils-r1
-
-DESCRIPTION="A logging replacement for Python"
-HOMEPAGE="https://logbook.readthedocs.io/en/stable/
-   https://github.com/getlogbook/logbook
-   https://pypi.org/project/Logbook/;
-SRC_URI="https://github.com/getlogbook/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
-IUSE=""
-
-BDEPEND="
-   test? (
-   app-arch/brotli[${PYTHON_USEDEP},python]
-   dev-python/execnet[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/pip[${PYTHON_USEDEP}]
-   dev-python/pyzmq[${PYTHON_USEDEP}]
-   dev-python/sqlalchemy[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   !!dev-python/contextvars
-   !!dev-python/gevent"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs
-
-python_prepare_all() {
-   # Delete test file requiring local connection to redis server
-   rm tests/test_queues.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_configure_all() {
-   export DISABLE_LOGBOOK_CEXT=1
-}



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

2022-11-19 Thread Michał Górny
commit: 2f8c2d69bebeaf093d9fc64fb10fc32ba91ac6f7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:53:19 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:53:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f8c2d69

dev-python/pytest-twisted: Remove old

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

 dev-python/pytest-twisted/Manifest |  1 -
 .../pytest-twisted/pytest-twisted-1.13.4-r1.ebuild | 44 --
 2 files changed, 45 deletions(-)

diff --git a/dev-python/pytest-twisted/Manifest 
b/dev-python/pytest-twisted/Manifest
index 161ccf533ba3..5dd091b55d26 100644
--- a/dev-python/pytest-twisted/Manifest
+++ b/dev-python/pytest-twisted/Manifest
@@ -1,2 +1 @@
-DIST pytest-twisted-1.13.4.gh.tar.gz 15687 BLAKE2B 
8e1024da02a5a1c9c33df96c18a355b9be5757446d9f5495ba1f043c15a2e44efd6e59693986a0684d77b8518393ce9f382d62e3d1e5b903876e8cff34efb427
 SHA512 
99899ad73f87582023a0e639986a287b4571638be4f1ae134078a15a4d4bebd24153f813c993382603edc14306c12931e2daf517d7998e48d3d19b8469c0b7aa
 DIST pytest-twisted-1.14.0.gh.tar.gz 16234 BLAKE2B 
1f047089313512794dcb726e5c16c8ce6911456eae7068035a001010b2513f5b1d7507c84f8ebf183042144c3cec3fb4fd1f060d987f5e1f3c053f29ed0e
 SHA512 
d3c1b7320f87bd32bec992b807baf235c13e5595c93895eb7df91f709d7ab92dbbc30a47f4341477d7ba9541958efa1d4ef7d355023050747b401bb541314bc9

diff --git a/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild 
b/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild
deleted file mode 100644
index 9dc7a2ba31ab..
--- a/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="A pytest plugin for testing Twisted framework consumers"
-HOMEPAGE="https://github.com/pytest-dev/pytest-twisted;
-SRC_URI="https://github.com/pytest-dev/pytest-twisted/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86"
-
-RDEPEND="
-   dev-python/decorator[${PYTHON_USEDEP}]
-   dev-python/greenlet[${PYTHON_USEDEP}]
-   >=dev-python/pytest-2.3[${PYTHON_USEDEP}]
-   dev-python/twisted[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   # If we let pytest-twisted autoload everywhere, it breaks tests in
-   # packages that don't expect it. Apply a similar hack as for bug
-   # #661218.
-   sed -e 's/"pytest11": \[[^]]*\]//' -i setup.py || die
-
-   # https://github.com/pytest-dev/pytest/issues/9280
-   sed -e '/^pytest_plugins =/d' -i testing/conftest.py || die
-
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   local -x PYTEST_PLUGINS=pytest_twisted
-
-   epytest -p pytester
-}



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

2022-11-19 Thread Michał Górny
commit: 682ca2d364b96a32ed730048e716bc8030d5df4a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:53:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:53:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=682ca2d3

dev-python/PyGithub: Remove old

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

 dev-python/PyGithub/Manifest|  1 -
 dev-python/PyGithub/PyGithub-1.55-r1.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/PyGithub/Manifest b/dev-python/PyGithub/Manifest
index 430b17000cdb..ed160288497a 100644
--- a/dev-python/PyGithub/Manifest
+++ b/dev-python/PyGithub/Manifest
@@ -1,3 +1,2 @@
-DIST PyGithub-1.55.gh.tar.gz 3123996 BLAKE2B 
58522db764b44286bb4b65cfa13fcce8fcaac99f1b71d62afe6cfda2bc8b13537de0b0db65e0cbc5c6e4a346cfdbf0084c0c8f4c13ed046d8bea33b10fa51382
 SHA512 
7ea9e67428e98330f90f1d78e5a003dbe1a6d5cd98b6c729f2030a73d21b4a72a7957382c888fac0b7bae4a409cfb53473a19e7e73df46b251df0327871e173a
 DIST PyGithub-1.56.gh.tar.gz 3144624 BLAKE2B 
04ee4784802f04b39da3fe28b67a884f14adc3d60f3085a5490d91e7b56fcadb735e70e8295ffddb63f21ca417932f1f8da0adf592e59034d3f7449d3c837aad
 SHA512 
fe20d5eaa0f0267c49141fdd4d37bff81fe766a7db48662ceabc5a3f69ae7587bba6958d959a67dd224d4402f9b5785b67b461cac4c2f1bf5a15e8fcf8ae98ec
 DIST PyGithub-1.57.gh.tar.gz 3159952 BLAKE2B 
e753a72c0fe20f0697ff3246fd2c3445571079ae18bee50abf6543da51d9e889c67cafa0bf36a980223f3423cf880c36d24ce74a6bf245117a080186a209ddcb
 SHA512 
6c8880d21c5134581be6bc5549184c3f13cef8f360a46a459234f22f3dd4fc5f8b573cc3a5d870bba6c6129ff7b670e739d87e42f2e34ddcdf357a3fe2b3cadc

diff --git a/dev-python/PyGithub/PyGithub-1.55-r1.ebuild 
b/dev-python/PyGithub/PyGithub-1.55-r1.ebuild
deleted file mode 100644
index 26580b302ec9..
--- a/dev-python/PyGithub/PyGithub-1.55-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python library to access the Github API v3"
-HOMEPAGE="https://github.com/PyGithub/PyGithub/;
-SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-python/deprecated[${PYTHON_USEDEP}]
-   >=dev-python/pyjwt-2.0[${PYTHON_USEDEP}]
-   >=dev-python/pynacl-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.0[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   >=dev-python/httpretty-0.9.6[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest



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

2022-11-19 Thread Michał Górny
commit: 9fec69b2a72cc0afc689f8f5fa99fbde55602716
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:51:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:51:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fec69b2

dev-python/google-api-python-client: Remove old

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

 dev-python/google-api-python-client/Manifest   |  1 -
 .../google-api-python-client-2.64.0.ebuild | 53 --
 2 files changed, 54 deletions(-)

diff --git a/dev-python/google-api-python-client/Manifest 
b/dev-python/google-api-python-client/Manifest
index 66381b12c31b..dea9ac331f4a 100644
--- a/dev-python/google-api-python-client/Manifest
+++ b/dev-python/google-api-python-client/Manifest
@@ -1,3 +1,2 @@
-DIST google-api-python-client-2.64.0.gh.tar.gz 36028133 BLAKE2B 
8e9abaa17d078210c9cdf5e18db02199bae1ee6f7e5364002266ca9795100fefd8dbbfbaecd5c9e2b74e5125e42535e23f9735fb83b8fe5bc1adae1fe815
 SHA512 
a525d26224e7b4b647bf5fde82434fbe0e221ff55591b1564b0a3af5e1d49492b3ea157d75bec0328bda754318b9d5e57d78b4d8d532afad2e3b8cbfc650f876
 DIST google-api-python-client-2.65.0.gh.tar.gz 36079173 BLAKE2B 
32e60989dbc6e02ed2bd128772a71c24670d16da09ca4e5be6d4f56ebf16c94ccac120e233b4efb5fb9c9b8c464d052129eb6305a57fb61f732ca9d593f1297c
 SHA512 
3b215e290c9a63aca914c08478342ab41ef760c135d3d5a13387be52a2993b814568c86cad752de6afe16fb3097989f4d7df06f4c9ce9c453fb7d0cb55f17053
 DIST google-api-python-client-2.66.0.gh.tar.gz 36477219 BLAKE2B 
1da02e7747fd1421bdc62180103784af7b50ab0a672ac932f2fe28c22141a922d6f59d9c11ee74b78ff13583bdeee98d35f7b6d616af84fe99aa3d1a0de17342
 SHA512 
6b3cdf7279067080ff216d184f23c76c74c586e34b70afd936f1d10671fc0c7e7a8ba446a1ca5a9003bab2e3855e939376610ff4e45811fd6ead5e4942f62247

diff --git 
a/dev-python/google-api-python-client/google-api-python-client-2.64.0.ebuild 
b/dev-python/google-api-python-client/google-api-python-client-2.64.0.ebuild
deleted file mode 100644
index 1c528a1a0c2d..
--- a/dev-python/google-api-python-client/google-api-python-client-2.64.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Google API Client for Python"
-HOMEPAGE="
-   https://github.com/googleapis/google-api-python-client/
-   https://pypi.org/project/google-api-python-client/
-"
-SRC_URI="
-   
https://github.com/googleapis/google-api-python-client/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   >=dev-python/httplib2-0.15[${PYTHON_USEDEP}]
-   =dev-python/google-api-core-2.3.1[${PYTHON_USEDEP}]
-   >=dev-python/google-auth-1.35.0[${PYTHON_USEDEP}]
-   >=dev-python/google-auth-httplib2-0.1.0[${PYTHON_USEDEP}]
-   >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}]
-   

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

2022-11-19 Thread Michał Górny
commit: 2bf55edaa7ab8c5981f77458752b5bcca14fb6b8
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:51:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:51:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf55eda

dev-python/icalendar: Remove old

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

 dev-python/icalendar/Manifest   |  3 ---
 dev-python/icalendar/icalendar-4.1.0.ebuild | 32 
 dev-python/icalendar/icalendar-5.0.0.ebuild | 38 -
 dev-python/icalendar/icalendar-5.0.1.ebuild | 38 -
 4 files changed, 111 deletions(-)

diff --git a/dev-python/icalendar/Manifest b/dev-python/icalendar/Manifest
index c079038e4651..3d7899a3b63d 100644
--- a/dev-python/icalendar/Manifest
+++ b/dev-python/icalendar/Manifest
@@ -1,4 +1 @@
-DIST icalendar-4.1.0.tar.gz 78706 BLAKE2B 
a676b938101e901c45cfeceba031c35f26dc361832ca24877acefcbe9158e111d883b757a133d72901579f73b32e34adbcb47db6d8ccbaa49f013106c282401e
 SHA512 
15bdf4fd22394836d120d7d7ee029e218247d731c51bd99d4e6df7dd6046b91ea0874b8a81bd6090d366fff035329eac98cabdf0ba5aead43efc82c1e6566b23
-DIST icalendar-5.0.0.tar.gz 97342 BLAKE2B 
ce0eef07439f150488748b5dbaea45dead18f419304a33ff8a11eb2c00c432ceb3d25cf14b59f13c7aeb18fa3ef137e87306c98bcb5f5d20503c99fe52738151
 SHA512 
b6608d6aa23e0e3118ea90babe224dfb2fa0a83477b443fdd66d52f82681d5ca7ca86c4b774cf9161e1d1d08f3c1c2cd79f2b347f1bf5e8e54a50e615d8c4880
-DIST icalendar-5.0.1.tar.gz 98634 BLAKE2B 
5cc2e17e583caa2f35d5b4723da1975d784bfcbd5620108428cc0d671002620bf0e2fbc72c83440866e3ef31c5e3136781d45dee69ea15be00c42abb6b4d5d22
 SHA512 
55e62419b90e80e6e675a8ca339e03ea927a620f365a8dcfdb679328103665e7ec80fc7736b425efc6273cf806889783fe499dc4593c77b179601afa1d993e02
 DIST icalendar-5.0.2.tar.gz 101104 BLAKE2B 
2e442c8282d764d1985031ef47259094028ec4b86abd03fb226b5ff9ccf7db67ba583df042589e4585d5379cc6675fe1d08141a8129979a43485e51841bfd524
 SHA512 
830ab3ad8ab100743fbd19ed3823cf1e3d13a8d83188214670b75ed06ee624ce4d52495e31b3fb67495363125f33232a1bedae5fdec467e57566f4f67f591b87

diff --git a/dev-python/icalendar/icalendar-4.1.0.ebuild 
b/dev-python/icalendar/icalendar-4.1.0.ebuild
deleted file mode 100644
index 1c649eb27c0d..
--- a/dev-python/icalendar/icalendar-4.1.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 
2445)"
-HOMEPAGE="https://github.com/collective/icalendar;
-SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-RDEPEND="
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # reset conf.py to not read version from an installed instance
-   sed -e "s:pkg_resources.get_distribution('icalendar').version:'${PV}':" 
\
-   -i docs/conf.py || die
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/icalendar/icalendar-5.0.0.ebuild 
b/dev-python/icalendar/icalendar-5.0.0.ebuild
deleted file mode 100644
index 4b300aa3103d..
--- a/dev-python/icalendar/icalendar-5.0.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 
2445)"
-HOMEPAGE="
-   https://github.com/collective/icalendar/
-   https://pypi.org/project/icalendar/
-"
-SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-
-RDEPEND="
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
-   ' 3.8)
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   # reset conf.py to not read version from an installed instance
-   sed -e "s:pkg_resources.get_distribution('icalendar').version:'${PV}':" 
\
-   -i docs/conf.py || die
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/icalendar/icalendar-5.0.1.ebuild 
b/dev-python/icalendar/icalendar-5.0.1.ebuild
deleted file mode 100644
index 4b300aa3103d..
--- a/dev-python/icalendar/icalendar-5.0.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools

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

2022-11-19 Thread Michał Górny
commit: efbc323724b018c246401df8d8652d843c1fc99d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:50:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:50:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efbc3237

dev-python/dask: Remove old

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

 dev-python/dask/Manifest  |  3 --
 dev-python/dask/dask-2022.10.0.ebuild | 61 ---
 dev-python/dask/dask-2022.11.0.ebuild | 61 ---
 dev-python/dask/dask-2022.9.2.ebuild  | 61 ---
 4 files changed, 186 deletions(-)

diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index a9e520873ea2..cbf8640cf086 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,5 +1,2 @@
-DIST dask-2022.10.0.gh.tar.gz 8778168 BLAKE2B 
d352f574cbf478747a95896c8b074c40c9bb413ccc6cd7b12d344b0dc7dc89bdc0613bf5b142e000b85f1c2a5a02e6eb8ac00b6db459a8580927cb4d7c54cf46
 SHA512 
d35ee0c710f4cccbdddca028a33f3f855ea26f94bebae1dd2a8c761cd0d116324daa03fd7fb5a4cb57d040f549f922b7373a0c089c9667b4da25fbb3b83efa02
 DIST dask-2022.10.1.gh.tar.gz 8781108 BLAKE2B 
2030cf0670d054a222123ef836573ae7f5e574a879089a57b9a7730ae5cc33e43da2af3b470ce24174169f9045415cf71543aa05fd368b447a01982c5b7c
 SHA512 
58b5515be46086a02a895f97db7120423a51651dcefef6f14d631a719e4faa0315b7a32640e4cd823064ae754319b84cc7c74bb4d4e9d904177816115abc48e5
-DIST dask-2022.11.0.gh.tar.gz 8223664 BLAKE2B 
d92a393877ecdc24ee20ada65f5a14bb6559c2b266f68a19fe30a8d18b63e543d0115d1a0d3bd3deefa476810722e37016be13035e097a7cc73f196c93052727
 SHA512 
e4294fa041a64227ecb40cbdb72b5c0f0a7f026ad51da37b778330b01a05a14cf5ab67feafe098388f40edb571ab9c6b688270063433567785048c477cf2a6f4
 DIST dask-2022.11.1.gh.tar.gz 8223813 BLAKE2B 
1c7f4ed26022673ebb3a337520eee4cfb6c48449c06bfc1906431de6f03b4a4df313630326f96cf5ef8aefdc1306ded21158946997d9cf79153f7d83659575bd
 SHA512 
c954de12d512e5be7d4891e9e702ae21c69e42be703e3859bb2d6893dd600fc7255ce25677bfdf9e119f84450510877ce018ac8ef425291fdf90c04af169e2e7
-DIST dask-2022.9.2.gh.tar.gz 8767605 BLAKE2B 
ad0d9b7f849f984316768f1d1983e13177c3263b6803ce6d861b15b8d88c21c7dce4dae917ca28f8688797573503c6fd518816ca7d993d67c56172ef2adc73ec
 SHA512 
467411933432821413f8440e6434b18c2bf76c616a92ec990bc71c141ea2cab235c1330e888ed77f429b6d00d588042928cd3b06d9b693d51302cf8c114700dd

diff --git a/dev-python/dask/dask-2022.10.0.ebuild 
b/dev-python/dask/dask-2022.10.0.ebuild
deleted file mode 100644
index 8f2f893b8e30..
--- a/dev-python/dask/dask-2022.10.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
-HOMEPAGE="
-   https://www.dask.org/
-   https://github.com/dask/dask/
-   https://pypi.org/project/dask/
-"
-SRC_URI="
-   https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
-   >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
-   >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
-   >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
-   >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
-   >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
-   >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   dev-python/toolz[${PYTHON_USEDEP}]
-   test? (
-   dev-python/moto[${PYTHON_USEDEP}]
-   dev-python/numexpr[${PYTHON_USEDEP}]
-   dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # another test relying on -Werror
-   "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
-   # TODO
-   dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
-   dask/tests/test_config.py::test__get_paths
-   dask/array/tests/test_linalg.py::test_solve_assume_a
-   
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[0-float-5-1-True]"
-   
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[1-float-5-1-True]"
-)
-
-python_test() {
-   epytest -p no:flaky -m "not network"
-}

diff --git a/dev-python/dask/dask-2022.11.0.ebuild 
b/dev-python/dask/dask-2022.11.0.ebuild
deleted file mode 100644
index 8f2f893b8e30..
--- a/dev-python/dask/dask-2022.11.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of 

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

2022-11-19 Thread Michał Górny
commit: 3f5833e5a3aac123d67b1d954935e6b53374ebe9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:52:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:52:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f5833e5

dev-python/cli_helpers: Sync the live ebuild

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

 dev-python/cli_helpers/cli_helpers-.ebuild | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/dev-python/cli_helpers/cli_helpers-.ebuild 
b/dev-python/cli_helpers/cli_helpers-.ebuild
index bd04a525c0a0..2ce70d69e282 100644
--- a/dev-python/cli_helpers/cli_helpers-.ebuild
+++ b/dev-python/cli_helpers/cli_helpers-.ebuild
@@ -3,13 +3,18 @@
 
 EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{8..11} )
-EGIT_REPO_URI="https://github.com/dbcli/${PN}.git;
+
 inherit distutils-r1 git-r3
 
 DESCRIPTION="Python helpers for common CLI tasks"
-HOMEPAGE="https://cli-helpers.rtfd.io/;
-SRC_URI=""
+HOMEPAGE="
+   https://cli-helpers.rtfd.io/
+   https://github.com/dbcli/cli_helpers/
+   https://pypi.org/project/cli-helpers/
+"
+EGIT_REPO_URI="https://github.com/dbcli/${PN}.git;
 
 LICENSE="BSD"
 SLOT="0"



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

2022-11-19 Thread Michał Górny
commit: efc43a3f72130cef982db4a420414c55fdc01977
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:51:12 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:51:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc43a3f

dev-python/google-auth: Remove old

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

 dev-python/google-auth/Manifest  |  2 -
 dev-python/google-auth/google-auth-2.12.0.ebuild | 58 
 dev-python/google-auth/google-auth-2.14.0.ebuild | 58 
 3 files changed, 118 deletions(-)

diff --git a/dev-python/google-auth/Manifest b/dev-python/google-auth/Manifest
index cef87724a6af..5695ad31f09e 100644
--- a/dev-python/google-auth/Manifest
+++ b/dev-python/google-auth/Manifest
@@ -1,4 +1,2 @@
-DIST google-auth-2.12.0.tar.gz 209325 BLAKE2B 
a6f754262dd7b75796dd63f4b7a2161ba959a3103c51cacb3d5f4ba3d17efdd36e1836ce360fa108b5dbce710743bfacf3b8b054de0e235590ba15eae8f3cdf3
 SHA512 
59209299631b7ea7d11e6787c33a304bbed5bca2173148d8c69595fc573f8915f6e3b601ed96686568f517cbbea71e18be228874334733629fbdd030976821cb
 DIST google-auth-2.13.0.tar.gz 216209 BLAKE2B 
4e88062d89ca9976e0d87a93012c8ca318f9068452fde365970aab1d6ab4985aad378a038e36e0a82aca4665a196c412287a84b58c831edc9483d02fa4ed2489
 SHA512 
253dd17466850b20212c8cbbeb29c35dbffb2f3205867c7fdf74e400e4f2f9bf3c9ca6ffc814e5c3e9c7cc918a6cc60e696bc98c5d969761101dee4109b7018e
-DIST google-auth-2.14.0.tar.gz 219265 BLAKE2B 
93ba6f54e28cc8846aecc9226de07ec66762b8f757b40b5796050209a02ff758475fddd2bf82d4374804058c99b80590e5f4a390642a3ad6ca2e9348d1a6b3a1
 SHA512 
ae85da8335bd00dcce9e7854fa92a114f81c61687a20274058d482dc3d6bb2396d5de6c2865ad64f5c892ed9a9abf8b9f39456c1fd1760a67298ecfaf40c8163
 DIST google-auth-2.14.1.tar.gz 220079 BLAKE2B 
7e0958bd0f83bb9e47e5ea191a6f90f221630c67638082fdafb2b925e44eb9c68f6b91e86ab8b7869edb70de21c3be44041ded6507c2819754b19b13bd342a0c
 SHA512 
1aec6b7104d71f58d1bc76472b204261eb6fc3030d0ed5f523bb125a9169544bc6266a8ae4573fce28423b689f2efcf57aadafc6c21876824fc17b2a96bbed95

diff --git a/dev-python/google-auth/google-auth-2.12.0.ebuild 
b/dev-python/google-auth/google-auth-2.12.0.ebuild
deleted file mode 100644
index 37c2ffef06a9..
--- a/dev-python/google-auth/google-auth-2.12.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="
-   https://github.com/googleapis/google-auth-library-python/
-   https://pypi.org/project/google-auth/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   =dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]
-   >=dev-python/rsa-3.1.4[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   !dev-python/namespace-google
-"
-BDEPEND="
-   test? (
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/flask[${PYTHON_USEDEP}]
-   dev-python/freezegun[${PYTHON_USEDEP}]
-   dev-python/grpcio[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/moto[${PYTHON_USEDEP}]
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/pytest-localserver[${PYTHON_USEDEP}]
-   dev-python/pyu2f[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/responses[${PYTHON_USEDEP}]
-   dev-python/urllib3[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # these are compatibility tests with oauth2client
-   # disable them to unblock removal of that package
-   tests/test__oauth2client.py
-)
-
-python_compile() {
-   distutils-r1_python_compile
-   find "${BUILD_DIR}" -name '*.pth' -delete || die
-}

diff --git a/dev-python/google-auth/google-auth-2.14.0.ebuild 
b/dev-python/google-auth/google-auth-2.14.0.ebuild
deleted file mode 100644
index de5188c8fdb8..
--- a/dev-python/google-auth/google-auth-2.14.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Google Authentication Library"
-HOMEPAGE="
-   https://github.com/googleapis/google-auth-library-python/
-   https://pypi.org/project/google-auth/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   =dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
-   

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

2022-11-19 Thread Michał Górny
commit: 246dcd6c37a4be14b18159b50156362fc27ce14b
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:50:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:50:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=246dcd6c

dev-python/fido2: Remove old

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

 dev-python/fido2/Manifest   |  1 -
 dev-python/fido2/fido2-1.0.0.ebuild | 37 -
 2 files changed, 38 deletions(-)

diff --git a/dev-python/fido2/Manifest b/dev-python/fido2/Manifest
index 2f6bda07a05c..f84f6aff5fc0 100644
--- a/dev-python/fido2/Manifest
+++ b/dev-python/fido2/Manifest
@@ -1,3 +1,2 @@
 DIST fido2-0.9.3.tar.gz 217894 BLAKE2B 
ccc3a9b59045216037664b5bf4b969a79b86b300f67fc4253b563acbbee98912ea076996772f17b88141d2a36a933b4926de96f05c53e204d0bb4eaaa2daad6b
 SHA512 
f105c347784cdfab88ab08852227d24f4bca623145f7f76bd066dadab6ada1eae751934fd4dc7436a5c5fb3a0ed2fc4d5c59bb2a93888d470028f0713ca7e09e
-DIST fido2-1.0.0.tar.gz 245631 BLAKE2B 
e9ee319c19a9d4b687958ee2f9b2b809b8fa1d41bd278bbd7e26a5bbcab51791d6b8565dd6cdb6abf6804db4604f4b02e2d7e73cbbf2a237d72a0679c3ebcf49
 SHA512 
778128fb4fd459bd096eb440034a08c8883bfd29dbe834f3affb451032a5d5a22c79ca71be257b3c333a9d9890602558502848e83cd3efab4b6d6762e0622670
 DIST fido2-1.1.0.tar.gz 243526 BLAKE2B 
48a6466c1ad3723d3d5f2e22ef59b4b49ebc3231739db25349d466c23f5cdc063908ea1adb944041f646d0bd0648d66acdaae0e72a9715e4bc365f449c12
 SHA512 
df7fcf205a5c124daf14c4bb7742aa16def1e912490c3b967dd940fdb21baf1a933130eab276af7c03fb46fb779a5a2b8e5fa3d8e3cd379297c23d9f39cadba4

diff --git a/dev-python/fido2/fido2-1.0.0.ebuild 
b/dev-python/fido2/fido2-1.0.0.ebuild
deleted file mode 100644
index 20e8481f1821..
--- a/dev-python/fido2/fido2-1.0.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=poetry
-
-inherit distutils-r1
-
-DESCRIPTION="Python based FIDO 2.0 library"
-HOMEPAGE="https://github.com/Yubico/python-fido2;
-SRC_URI="https://github.com/Yubico/python-fido2/releases/download/${PV}/${P}.tar.gz;
-
-LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0"
-SLOT="0/1.0" # Bumped every time a backwards-incompatible version is released
-KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
-IUSE="examples"
-
-RDEPEND="

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

2022-11-19 Thread Michał Górny
commit: dd5d74590befd71a5c3889d543eb472ff807825f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:50:22 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:50:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd5d7459

dev-python/cx_Freeze: Remove old

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

 dev-python/cx_Freeze/Manifest|  2 -
 dev-python/cx_Freeze/cx_Freeze-6.11.1.ebuild | 53 --
 dev-python/cx_Freeze/cx_Freeze-6.13.0.ebuild | 57 
 3 files changed, 112 deletions(-)

diff --git a/dev-python/cx_Freeze/Manifest b/dev-python/cx_Freeze/Manifest
index 8d73928cb543..9577efab9e20 100644
--- a/dev-python/cx_Freeze/Manifest
+++ b/dev-python/cx_Freeze/Manifest
@@ -1,4 +1,2 @@
-DIST cx_Freeze-6.11.1.gh.tar.gz 1307368 BLAKE2B 
7bfbe61274b29890ba35fda133d4c18708d3a04bc33c96633f6651fb9712fec4628f92e2044284ad1bfb992a76e4772669a29ada2f12f16741378d636701e4ad
 SHA512 
37586365a901800fcd18ab6e3b0de9e3e9980c8d8b8b61aa1eddf0d01dc50b53cb1ffc77070f5a5ad40c9b7a020b09ced51d38f53688129b2444abe020a75237
 DIST cx_Freeze-6.12.0.gh.tar.gz 1483040 BLAKE2B 
78faa77b7bd12344f601bcc5811dff43d6e9440f7cf96167b438557f93bc8d26c59c375930090389946005984245ff93232ddb6d7340ca28012ccb356d0ca630
 SHA512 
a3fdd94b33985b3bb0fbee2fc7438e20f3ddb31f0d71322eed1c06a15954be5845a0b1dfbc55537fe16022db95b446d3fa0b3e8418cd250e653f42a180b8c586
-DIST cx_Freeze-6.13.0.gh.tar.gz 1486127 BLAKE2B 
f0f54db5ce6f0d8d70efc3321741a70d496773742505cf316646051c41154f9f11dba2fc964f6e16d01e2aa54ed2c9988ec006c3bbbf70b1e37f623aee0a061a
 SHA512 
ed6a9607dd93bfe608036beae6f52a535c240fed222d5ae5da43037ef135cd9423e815066539f975facced221d466db5393bb207eadaec3654ed409c664c2f83
 DIST cx_Freeze-6.13.1.gh.tar.gz 1486207 BLAKE2B 
aa0151fed482714e41a859059f9672950249ad7fe50fa2accaa9d6af7ddc183a8f74d87337f274849a34a404dda0c732300343b58cd872f3bd03bf275c2f4d97
 SHA512 
48d569fdce5c6cb100232ce3577f0a55a40f3d1dcafa884a4d62af7f27200a21eb892504b47fb7cd106f410354b70d98a8e5245382431bc1f6d990510c77cb36

diff --git a/dev-python/cx_Freeze/cx_Freeze-6.11.1.ebuild 
b/dev-python/cx_Freeze/cx_Freeze-6.11.1.ebuild
deleted file mode 100644
index 738e647e0f5f..
--- a/dev-python/cx_Freeze/cx_Freeze-6.11.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Create standalone executables from Python scripts"
-HOMEPAGE="https://cx-freeze.readthedocs.io/;
-SRC_URI="
-   https://github.com/marcelotduarte/cx_Freeze/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="PYTHON"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-util/patchelf
-   virtual/libcrypt:=
-   $(python_gen_cond_dep '
-   dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
-   ' 3.8)
-"
-BDEPEND="
-   test? (
-   dev-python/bcrypt[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/openpyxl[${PYTHON_USEDEP}]
-   dev-python/pandas[${PYTHON_USEDEP}]
-   dev-python/pillow[${PYTHON_USEDEP}]
-   dev-python/pydantic[${PYTHON_USEDEP}]
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   )
-"
-
-PATCHES=(
-   # bug #491602
-   "${FILESDIR}/${PN}-6.8.2-buildsystem.patch"
-)
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # new setuptools?
-   tests/test_bdist_rpm.py::test_bdist_rpm
-)

diff --git a/dev-python/cx_Freeze/cx_Freeze-6.13.0.ebuild 
b/dev-python/cx_Freeze/cx_Freeze-6.13.0.ebuild
deleted file mode 100644
index ee713d33b641..
--- a/dev-python/cx_Freeze/cx_Freeze-6.13.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Create standalone executables from Python scripts"
-HOMEPAGE="
-   https://cx-freeze.readthedocs.io/
-   https://github.com/marcelotduarte/cx_Freeze/
-   https://pypi.org/project/cx-Freeze/
-"
-SRC_URI="
-   https://github.com/marcelotduarte/cx_Freeze/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="PYTHON"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-python/importlib_metadata[${PYTHON_USEDEP}]
-   dev-util/patchelf
-   virtual/libcrypt:=
-   $(python_gen_cond_dep '
-   dev-python/backports-zoneinfo[${PYTHON_USEDEP}]
-   ' 3.8)
-"
-BDEPEND="
-   test? (
-   dev-python/bcrypt[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
- 

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

2022-11-19 Thread Michał Górny
commit: c0a6b3cdc4a160f44e86634df855d07a3bb47fdf
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:49:52 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:49:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0a6b3cd

dev-python/coverage: Remove old

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

 dev-python/coverage/Manifest |  1 -
 dev-python/coverage/coverage-6.4.4-r1.ebuild | 73 
 2 files changed, 74 deletions(-)

diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest
index 293ec08264db..df5298b6d3fb 100644
--- a/dev-python/coverage/Manifest
+++ b/dev-python/coverage/Manifest
@@ -1,2 +1 @@
-DIST coverage-6.4.4.tar.gz 772949 BLAKE2B 
87b4c51ac43ac3bd2202496f6db6de5c74dd9925521bf3092cd862b86d8d7c0e3d008ee550c90e890febd87cc4d167669e830668f15da94ef4ea72e82154bf26
 SHA512 
f210f2471b170e05d4dac2cc9a91e3f0d4ba6456cdf91dc1c0ef67a02a11f4279c5beca5df8854c42660346995492b1eff020e1ac578d2a0a129627dadd17114
 DIST coverage-6.5.0.tar.gz 775224 BLAKE2B 
1ff7db1c72856553717d07d5a13443c210a3d85b3ce1f1eee802b986f71e3c13ac9df6bbca498fbeaa961ee33baab29c5e38f0c0e7b21c378830dfe85d797798
 SHA512 
4f2ec0bf69a83471a2b5a73b6a2212372ee6e32ccc4c72e0d33eef915939152f3213ab60e1a22ce2b72791e706c2223b0c81c87b95bbfadd1e828fa1a9fff120

diff --git a/dev-python/coverage/coverage-6.4.4-r1.ebuild 
b/dev-python/coverage/coverage-6.4.4-r1.ebuild
deleted file mode 100644
index d0af269cf673..
--- a/dev-python/coverage/coverage-6.4.4-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-PYTHON_REQ_USE="threads(+),sqlite(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Code coverage measurement for Python"
-HOMEPAGE="
-   https://coverage.readthedocs.io/en/latest/
-   https://github.com/nedbat/coveragepy/
-   https://pypi.org/project/coverage/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-macos"
-
-RDEPEND="
-   $(python_gen_cond_dep '
-   dev-python/tomli[${PYTHON_USEDEP}]
-   ' 3.{8..10})
-"
-BDEPEND="
-   test? (
-   dev-python/flaky[${PYTHON_USEDEP}]
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e '/^addopts/s:-q -n auto::' setup.cfg || die
-   distutils-r1_src_prepare
-}
-
-test_tracer() {
-   local -x COVERAGE_TEST_TRACER=${1}
-   einfo "  Testing with the ${COVERAGE_TEST_TRACER} tracer ..."
-   epytest tests
-}
-
-python_test() {
-   "${EPYTHON}" igor.py zip_mods || die
-
-   local -x COVERAGE_TESTING=True
-   # TODO: figure out why they can't be imported inside test env
-   local -x COVERAGE_NO_CONTRACTS=1
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   local -x 
PYTEST_PLUGINS=_hypothesis_pytestplugin,flaky.flaky_pytest_plugin,xdist.plugin
-
-   local prev_opt=$(shopt -p nullglob)
-   shopt -s nullglob
-   local c_ext=( "${BUILD_DIR}/install$(python_get_sitedir)"/coverage/*.so 
)
-   ${prev_opt}
-
-   if [[ -n ${c_ext} ]]; then
-   cp "${c_ext}" \
-   coverage/ || die
-   test_tracer c
-   rm coverage/*.so || die
-   else
-   test_tracer py
-   fi
-}



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

2022-11-19 Thread Michał Górny
commit: baafe64f1c09f6e2c159d4331d18eae0b4eaf546
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:49:26 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:49:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baafe64f

dev-python/absl-py: Remove old

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

 dev-python/absl-py/Manifest |  1 -
 dev-python/absl-py/absl-py-1.2.0.ebuild | 79 -
 2 files changed, 80 deletions(-)

diff --git a/dev-python/absl-py/Manifest b/dev-python/absl-py/Manifest
index 53766f870f4e..2f2f43c42910 100644
--- a/dev-python/absl-py/Manifest
+++ b/dev-python/absl-py/Manifest
@@ -1,2 +1 @@
-DIST abseil-py-1.2.0.gh.tar.gz 219456 BLAKE2B 
ec7d878692dcf0cbe879cd7df51bc1b8ceeae945b053419b4a024a637e726064128af69fe077a26413f8562dd4a35830b340d000a6c9d520c7674b81a7e417ae
 SHA512 
f363814ed65a68ae4bfd833dc095491349349e70327c0a87ad68ddc3b8429dacc78aaa16d2ff0d733487a12a2ab09094d4ccd1c1133981f65c12d3715cee410d
 DIST abseil-py-1.3.0.gh.tar.gz 224655 BLAKE2B 
7f5c329c159a3b8d3fd7fc37ab36649d7711120ab41a2c052deb383aeae115b8ffe22e0f9c933e6cfe83e19013a2733d037954411f0f6d4acde1a7ecb3131973
 SHA512 
5631368b1f86dbc73d5261dc07a2693c8effb2534745fe4f19db26f908c7afff9f440a1545f16d1356092ac9a9fda2fdde97fc8977100e162765d9c224d7a66d

diff --git a/dev-python/absl-py/absl-py-1.2.0.ebuild 
b/dev-python/absl-py/absl-py-1.2.0.ebuild
deleted file mode 100644
index a3f82b27933d..
--- a/dev-python/absl-py/absl-py-1.2.0.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-MY_P=abseil-py-${PV}
-DESCRIPTION="Abseil Python Common Libraries"
-HOMEPAGE="
-   https://github.com/abseil/abseil-py/
-   https://pypi.org/project/absl-py/
-"
-SRC_URI="
-   https://github.com/abseil/abseil-py/archive/v${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-
-RDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
-   # what a nightmare... well, we could have called bazel but that would
-   # even worse
-   local helpers=(
-   
absl/flags/tests/argparse_flags_test_helper.py:absl/flags/tests/argparse_flags_test_helper
-   
absl/logging/tests/logging_functional_test_helper.py:absl/logging/tests/logging_functional_test_helper
-   
absl/testing/tests/absltest_fail_fast_test_helper.py:absl/testing/tests/absltest_fail_fast_test_helper
-   
absl/testing/tests/absltest_filtering_test_helper.py:absl/testing/tests/absltest_filtering_test_helper
-   
absl/testing/tests/absltest_randomization_testcase.py:absl/testing/tests/absltest_randomization_testcase
-   
absl/testing/tests/absltest_sharding_test_helper.py:absl/testing/tests/absltest_sharding_test_helper
-   
absl/testing/tests/absltest_test_helper.py:absl/testing/tests/absltest_test_helper
-   
absl/testing/tests/xml_reporter_helper_test.py:absl/testing/tests/xml_reporter_helper_test
-   
absl/tests/app_test_helper.py:absl/tests/app_test_helper_pure_python
-   )
-
-   local x
-   for x in "${helpers[@]}"; do
-   local script=${x%:*}
-   local sym=${x#*:}
-   sed -i -e "1i#!/usr/bin/env python" "${script}" || die
-   chmod +x "${script}" || die
-   ln -s "${script##*/}" "${sym}" || die
-   done
-
-   # i don't wanna know how these pass for upstream with wrong helper names
-   sed -i -e 's:\(app_test_helper\)\.py:\1_pure_python:' \
-   absl/tests/app_test.py || die
-   sed -i -e 's:\(logging_functional_test_helper\)\.py:\1:' \
-   absl/logging/tests/logging_functional_test.py || die
-
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x PYTHONPATH=.
-   local fails=0
-   while read -r -d '' x; do
-   ebegin "${x}"
-   "${EPYTHON}" "${x}"
-   eend ${?} || : "$(( fails += 1 ))"
-   done < <(find -name '*_test.py' -print0)
-
-   [[ ${fails} -ne 0 ]] && die "${fails} tests failed on ${EPYTHON}"
-
-   # we actually need to clean this up manually before running the test
-   # suite again...
-   chmod -R u+rwX "${T}"/absl_testing || die
-   rm -rf "${T}"/absl_testing || die
-}



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

2022-11-19 Thread Michał Górny
commit: 4b56a38e2d8995c22116d0a2912e49bb976dae85
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:50:08 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:50:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b56a38e

dev-python/cryptography: Remove old

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

 dev-python/cryptography/Manifest   |   4 -
 dev-python/cryptography/cryptography-38.0.1.ebuild | 142 -
 dev-python/cryptography/cryptography-38.0.2.ebuild | 142 -
 3 files changed, 288 deletions(-)

diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest
index c397c4b173d0..d17d1e4cf943 100644
--- a/dev-python/cryptography/Manifest
+++ b/dev-python/cryptography/Manifest
@@ -10,11 +10,7 @@ DIST bumpalo-3.10.0.crate 78915 BLAKE2B 
94515190837765b47feaf94946c7e4da5b84e6fa
 DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
 DIST chrono-0.4.22.crate 185570 BLAKE2B 
10dfae2fe871a9910bf885b78aaf3e9ed1bcb87a40962d781c8ea407a945b837c665c2bb4e3d0562ac63d9e7bd5012804434642ee6f5c80e22bc816d4331f1b0
 SHA512 
de856679ec16afe035176b22125a00ced532d49c8babac0a88fa5f6e4a3d9e526a34ee8bf51639653fc313a5703a202b1be013aa16fdd72a505151d7aafa7c44
 DIST core-foundation-sys-0.8.3.crate 17519 BLAKE2B 
4ac3d9ab16753dd995abe82f158d460d0d22184ab55d260e73b20305cffe4e03427dabfe0c8be968b6c3ecd348be2e17154ded7c9bbd5a95334ff266fe83bbf7
 SHA512 
a3ba3184cef65dafe8318c4db7e59eb2749dcde7b2370ad20272b0735ded0032daf2de3fd0cf55eb48448a335f5b81e8e745f2a647f9a43bb85946ce714bfd82
-DIST cryptography-38.0.1.tar.gz 599412 BLAKE2B 
40e17d43b72c35e77fab27efb66762e1d8002f9ba419220de68eb5ce957a31410cca821a40494e0963cc590a4e0c01c70e4076009022056a26d08d22ce859664
 SHA512 
a0e9eb645888a74e01377c0ed79427d066a50d10a9b628828195e82b7ee44ff59866f3659f2028541856bba818340c404e00061645c2676bc63f8ece42fd511e
-DIST cryptography-38.0.2.tar.gz 599757 BLAKE2B 
68f4650e9276b3bea1663ea0eb2576acf3d9992228d75a0af1af1d48311cfd087fe3bcb0b538476cd47bc431057993ef9aca35e5823995f753d470391616e6a4
 SHA512 
d29ba293ded9b0431f3da78cb93868974f628206a0d3c1d19a97d79e2c4ece791b424fdf3aea17f8e26559581db0aa2519644f63e60b62625d8b06bb63f93332
 DIST cryptography-38.0.3.tar.gz 599876 BLAKE2B 
84a296a3fae42e465d6fb79f86e22527ddf3e8702bc34d9d77942db20572236b4f5a525cea7b82000c9aa46af1f9ff345e1e4188b6658e929b2d8b7e6027d768
 SHA512 
f133d83266f386cb0169a3cf2226d258b7d599e7aaad9913f8a4b01ee0841670586a21cee93fb4d4d9f61b0da53109c5dbcf7d91d470cfbb166aa04f4a1d7634
-DIST cryptography_vectors-38.0.1.tar.gz 35273681 BLAKE2B 
2011978306416283d3083f3c82d29bd1d80630ff8d3777c4df0a0dbe384b89720a44f504e6a826045dd13943f60eafb702a910a521fb6a201c6f9cd238d8926c
 SHA512 
075216fcfc1e8de269c646f25cf23488d505743019bbd3edf6dee696533509969788b9982ec4487b671541893636c3eafb1e001d84e19cabff5ce1329e03b86e
-DIST cryptography_vectors-38.0.2.tar.gz 35273897 BLAKE2B 
ac875eff5d904e1c54a919562928bbe43ac6b7a2f79039df5f1557a1447da2e524dcbacd5e1b214b3e0246ac43a20ab59aa043df05fe96dc9a44cae7fe3ed86a
 SHA512 
746e80447be709a93686dbb0f5459a9e7857b0b4f37f99de747d13d7844eb2d3604cf067c2c09202e28b6d11cbb5bdeb77d8cfaf4a06e482a56c676c46c06c5f
 DIST cryptography_vectors-38.0.3.tar.gz 35273999 BLAKE2B 
cd7deeb1979e060a27a300d23bff527b35405a7879c6f884299afe1f253407d46061fd7817ffcd7e03a2560197cffdc0a0b6f20dfc93e52c5759cc5328438138
 SHA512 
3155dc396298daccdeb24e7f86131f32818eb6264110540c2639c205e57b99bc3ffd12cc9eace337e0215042734c1318e83fc8f7b1adbe20b47b8192abd618b7
 DIST iana-time-zone-0.1.47.crate 16974 BLAKE2B 
841e380fd81def3eb5af424215c36caa9b48adf2368d9da57dd562ea4f806fc5ed1abd0c118eebb532264eb3ab5d8670049cfe20eada40cad7bef4718245c968
 SHA512 
c1817555149f05ae45f7e54046b79c732f80f5af382680d626dd3e970167092cdc176b259941d3c1533518bef511a92ed24c3aa538897e9d082984684d99f55b
 DIST indoc-0.3.6.crate 9663 BLAKE2B 
ca7a1f4d3cbedbee0ba0a3f19c4b3352ff90927eef744b7e4f1d60855d4dc4265202972e81e0fc06d1222d8d5fb322efc4ef669af7396b251248a1e45c91def2
 SHA512 
e900aa3b001df0fdbf1f543d8b679af317e85a1f95e26fc556213f2826a4f6c82d8c4f3f82de435e3591f8bc14e78eb22668d901dcbe2287f46740e0291afacd

diff --git a/dev-python/cryptography/cryptography-38.0.1.ebuild 
b/dev-python/cryptography/cryptography-38.0.1.ebuild
deleted file mode 100644
index ca185b9ce09a..
--- a/dev-python/cryptography/cryptography-38.0.1.ebuild
+++ /dev/null
@@ -1,142 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CARGO_OPTIONAL=yes
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-CRATES="
-   Inflector-0.11.4
-   aliasable-0.1.3
-   

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

2022-11-19 Thread Michał Górny
commit: 91c53a99d7b2bb7c625d01dfb9dd07e4eb941eb1
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 16:49:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 16:49:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91c53a99

dev-python/cli_helpers: Remove old

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

 dev-python/cli_helpers/Manifest |  1 -
 dev-python/cli_helpers/cli_helpers-2.2.1.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/dev-python/cli_helpers/Manifest b/dev-python/cli_helpers/Manifest
index e513e0c73eea..4499213caf40 100644
--- a/dev-python/cli_helpers/Manifest
+++ b/dev-python/cli_helpers/Manifest
@@ -1,2 +1 @@
-DIST cli_helpers-2.2.1.tar.gz 34199 BLAKE2B 
5fb5217321d92cd6c774337bdf444ad2a6120accfe32da08642a880a60f1bdb4c71f12657bd17c30f7b3f212216fad027ac9c786367563e01d58c54c15bf67b5
 SHA512 
4b4a8c3ab61ceeaa1986e5d9943b10351ff1b3339294a78ed740bff3bd555cace723e637d6627e26b832370583989aa2b0782f57949af2c1d504f93caceda2d8
 DIST cli_helpers-2.3.0.gh.tar.gz 34374 BLAKE2B 
83978ee17aec8a02173460cf5d5c42751d4745c63a1f83c8fafdd55fcfb31e04d02a61f90db4a4fe8ba2049167306b06e1389db15230558a646589e3834745de
 SHA512 
ee5f2adbca54c62c2f40be4c7b418760d12f331737a65bafdb8209989fc866f35d6c2ea1b9b0a12add6ed3fa576a84a2c8f62a2f3babf58706660f7d7eb8eb57

diff --git a/dev-python/cli_helpers/cli_helpers-2.2.1.ebuild 
b/dev-python/cli_helpers/cli_helpers-2.2.1.ebuild
deleted file mode 100644
index c39af3248f56..
--- a/dev-python/cli_helpers/cli_helpers-2.2.1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-inherit distutils-r1
-
-DESCRIPTION="Python helpers for common CLI tasks"
-HOMEPAGE="https://cli-helpers.rtfd.io/;
-SRC_URI="https://github.com/dbcli/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/configobj-5.0.5[${PYTHON_USEDEP}]
-   >=dev-python/pygments-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/tabulate-0.8.0[${PYTHON_USEDEP}]
-   dev-python/wcwidth[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



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

2022-11-19 Thread Sam James
commit: a60d15fe94e8d343c196187a19489dd2f2b8c1e8
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:40:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a60d15fe

dev-python/coverage: add github upstream metadata

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/coverage/metadata.xml b/dev-python/coverage/metadata.xml
index 7901aa69ec4d..703663e75f4b 100644
--- a/dev-python/coverage/metadata.xml
+++ b/dev-python/coverage/metadata.xml
@@ -15,5 +15,6 @@ Python standard library to determine which lines are 
executable, and which have
 been executed.

coverage
+   nedbat/coveragepy

 



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

2022-11-19 Thread Sam James
commit: b5fab99fedb7642dffbfd085057c7e6d4491529f
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5fab99f

dev-python/simpy: Stabilize 4.0.1-r1 amd64, #881941

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/simpy/simpy-4.0.1-r1.ebuild 
b/dev-python/simpy/simpy-4.0.1-r1.ebuild
index ff7d8d312aaf..22897ee54322 100644
--- a/dev-python/simpy/simpy-4.0.1-r1.ebuild
+++ b/dev-python/simpy/simpy-4.0.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
 



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

2022-11-19 Thread Sam James
commit: f1fc69b291ec75c1accb20994bd58e961e95a2e2
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1fc69b2

dev-python/shapely: Stabilize 1.8.5_p1 amd64, #881939

Signed-off-by: Sam James  gentoo.org>

 dev-python/shapely/shapely-1.8.5_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/shapely/shapely-1.8.5_p1.ebuild 
b/dev-python/shapely/shapely-1.8.5_p1.ebuild
index 1c94cbd1caa4..8aa5d69f4d98 100644
--- a/dev-python/shapely/shapely-1.8.5_p1.ebuild
+++ b/dev-python/shapely/shapely-1.8.5_p1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 DEPEND="
>=sci-libs/geos-3.9



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

2022-11-19 Thread Sam James
commit: 11ba4308cd2d60771f1cce894e39c3636cd0e75d
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ba4308

dev-python/rpy: Stabilize 3.5.5 x86, #881935

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/rpy/rpy-3.5.5.ebuild b/dev-python/rpy/rpy-3.5.5.ebuild
index 33ae4762eb31..76128a462c39 100644
--- a/dev-python/rpy/rpy-3.5.5.ebuild
+++ b/dev-python/rpy/rpy-3.5.5.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 
 # ggplot2 is a test dep but not in portage
 RESTRICT="test"



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

2022-11-19 Thread Sam James
commit: 65c434c035ad9b94eb44e0ad2b30e140363fa15b
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c434c0

dev-python/pytest-twisted: Stabilize 1.14.0 amd64, #881929

Signed-off-by: Sam James  gentoo.org>

 dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild 
b/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild
index 4ee39ea2dc2b..41a15b58b678 100644
--- a/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild
+++ b/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~riscv x86"
 
 RDEPEND="
dev-python/decorator[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/xnec2c/

2022-11-19 Thread Sam James
commit: 5df05d2d7970ed51a59e7143bb66549c5de9cc73
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:37 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df05d2d

sci-electronics/xnec2c: Stabilize 4.4.12 amd64, #881973

Signed-off-by: Sam James  gentoo.org>

 sci-electronics/xnec2c/xnec2c-4.4.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild 
b/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild
index d885352e3758..edc8563c6bd0 100644
--- a/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild
+++ b/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.xnec2c.org/releases/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc examples"
 
 RDEPEND="dev-libs/glib:2



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

2022-11-19 Thread Sam James
commit: a7a04236d0d34d92c4214bdd4353ff2e4a3a6d61
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7a04236

dev-python/python3-xapp: Stabilize 2.2.2 ALLARCHES, #881931

Signed-off-by: Sam James  gentoo.org>

 dev-python/python3-xapp/python3-xapp-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python3-xapp/python3-xapp-2.2.2.ebuild 
b/dev-python/python3-xapp/python3-xapp-2.2.2.ebuild
index 63cbe7e119ba..15ce2c223c27 100644
--- a/dev-python/python3-xapp/python3-xapp-2.2.2.ebuild
+++ b/dev-python/python3-xapp/python3-xapp-2.2.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/linuxmint/python3-xapp/archive/${PV}.tar.gz -> ${P}.
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
 IUSE=""
 
 DEPEND="



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

2022-11-19 Thread Sam James
commit: f092a054687b11869506e2a9b009215e623e7d09
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f092a054

dev-python/xxhash: Stabilize 3.1.0 amd64, #881951

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/xxhash/xxhash-3.1.0.ebuild 
b/dev-python/xxhash/xxhash-3.1.0.ebuild
index dc94bedd6f45..851eca3965af 100644
--- a/dev-python/xxhash/xxhash-3.1.0.ebuild
+++ b/dev-python/xxhash/xxhash-3.1.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 DEPEND="
>=dev-libs/xxhash-0.8.0



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

2022-11-19 Thread Sam James
commit: a496703810e6d9e5f7c7d0065a31eb3a0548270a
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4967038

dev-python/sqlalchemy: Stabilize 1.4.43 x86, #881945

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
index 44cc7e704a44..a384f8e43afc 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="examples +sqlite test"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/xnec2c/

2022-11-19 Thread Sam James
commit: 91ad190c7f55a6fcc28e9b42128bb043cc786678
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91ad190c

sci-electronics/xnec2c: Stabilize 4.4.12 x86, #881973

Signed-off-by: Sam James  gentoo.org>

 sci-electronics/xnec2c/xnec2c-4.4.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild 
b/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild
index 3d142cf6f7a4..d885352e3758 100644
--- a/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild
+++ b/sci-electronics/xnec2c/xnec2c-4.4.12.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.xnec2c.org/releases/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc examples"
 
 RDEPEND="dev-libs/glib:2



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

2022-11-19 Thread Sam James
commit: 80ab9b3302b4bef1d100f600f269666569c8c0c4
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80ab9b33

dev-python/icalendar: Stabilize 5.0.2 ALLARCHES, #881895

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/icalendar/icalendar-5.0.2.ebuild 
b/dev-python/icalendar/icalendar-5.0.2.ebuild
index c68083d1dacb..76308591c49c 100644
--- a/dev-python/icalendar/icalendar-5.0.2.ebuild
+++ b/dev-python/icalendar/icalendar-5.0.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 RDEPEND="
dev-python/python-dateutil[${PYTHON_USEDEP}]



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

2022-11-19 Thread Sam James
commit: 5ac8879a093080b556e54c4c3dead69e9469a4ca
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac8879a

dev-python/simpy: Stabilize 4.0.1-r1 x86, #881941

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/simpy/simpy-4.0.1-r1.ebuild 
b/dev-python/simpy/simpy-4.0.1-r1.ebuild
index fac65d7b2095..ff7d8d312aaf 100644
--- a/dev-python/simpy/simpy-4.0.1-r1.ebuild
+++ b/dev-python/simpy/simpy-4.0.1-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
 



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

2022-11-19 Thread Sam James
commit: e1757b59c45ae29bac0fed240cc8bf09b9c790c4
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1757b59

dev-python/shapely: Stabilize 1.8.5_p1 x86, #881939

Signed-off-by: Sam James  gentoo.org>

 dev-python/shapely/shapely-1.8.5_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/shapely/shapely-1.8.5_p1.ebuild 
b/dev-python/shapely/shapely-1.8.5_p1.ebuild
index cb3c65a36d9f..1c94cbd1caa4 100644
--- a/dev-python/shapely/shapely-1.8.5_p1.ebuild
+++ b/dev-python/shapely/shapely-1.8.5_p1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 x86"
 
 DEPEND="
>=sci-libs/geos-3.9



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

2022-11-19 Thread Sam James
commit: cdf3c14f344a2a29416a418e397399c450de8e41
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf3c14f

dev-python/rpy: Stabilize 3.5.5 amd64, #881935

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/rpy/rpy-3.5.5.ebuild b/dev-python/rpy/rpy-3.5.5.ebuild
index 76128a462c39..7fc4a253ebc8 100644
--- a/dev-python/rpy/rpy-3.5.5.ebuild
+++ b/dev-python/rpy/rpy-3.5.5.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="AGPL-3 GPL-2 LGPL-2.1 MPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 
 # ggplot2 is a test dep but not in portage
 RESTRICT="test"



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

2022-11-19 Thread Sam James
commit: a3968da84b39a895710b6a2615ff3dcbb4b3467f
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3968da8

dev-python/PyGithub: Stabilize 1.56 ALLARCHES, #881921

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/PyGithub/PyGithub-1.56.ebuild 
b/dev-python/PyGithub/PyGithub-1.56.ebuild
index 2aff9499dee1..6d4bea4cc23b 100644
--- a/dev-python/PyGithub/PyGithub-1.56.ebuild
+++ b/dev-python/PyGithub/PyGithub-1.56.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="LGPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/deprecated[${PYTHON_USEDEP}]



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

2022-11-19 Thread Sam James
commit: ab08dd12efef8f885c5c3632d5a0f4dd8b9d8eb2
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:40:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab08dd12

dev-python/sabyenc: Stabilize 5.4.4 amd64, #881937

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/sabyenc/sabyenc-5.4.4.ebuild 
b/dev-python/sabyenc/sabyenc-5.4.4.ebuild
index 74f8328f2a0f..2e136ce94689 100644
--- a/dev-python/sabyenc/sabyenc-5.4.4.ebuild
+++ b/dev-python/sabyenc/sabyenc-5.4.4.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 BDEPEND="
test? (



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

2022-11-19 Thread Sam James
commit: 1935dc53b1c1236d4866fc3597156af6bebfe4a3
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1935dc53

dev-python/pytest-twisted: Stabilize 1.14.0 x86, #881929

Signed-off-by: Sam James  gentoo.org>

 dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild 
b/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild
index cb6ee5309a59..4ee39ea2dc2b 100644
--- a/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild
+++ b/dev-python/pytest-twisted/pytest-twisted-1.14.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv x86"
 
 RDEPEND="
dev-python/decorator[${PYTHON_USEDEP}]



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

2022-11-19 Thread Sam James
commit: c8d60f175b1c772b631450b77467309959f82266
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d60f17

dev-python/progressbar2: Stabilize 4.2.0 ALLARCHES, #881915

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/progressbar2/progressbar2-4.2.0.ebuild 
b/dev-python/progressbar2/progressbar2-4.2.0.ebuild
index cdd74919e01e..b94ebba6ab1a 100644
--- a/dev-python/progressbar2/progressbar2-4.2.0.ebuild
+++ b/dev-python/progressbar2/progressbar2-4.2.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
>=dev-python/python-utils-3.0.0[${PYTHON_USEDEP}]



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

2022-11-19 Thread Sam James
commit: af3bb21382f97e3b8e6ad46cead9e11a8d075232
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3bb213

dev-python/numpy: Stabilize 1.23.4 amd64, #881905

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/numpy/numpy-1.23.4.ebuild 
b/dev-python/numpy/numpy-1.23.4.ebuild
index 21f49e0dfe09..5f85c52bd703 100644
--- a/dev-python/numpy/numpy-1.23.4.ebuild
+++ b/dev-python/numpy/numpy-1.23.4.ebuild
@@ -29,7 +29,7 @@ SRC_URI="
 "
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc lapack"
 
 RDEPEND="



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

2022-11-19 Thread Sam James
commit: aaa61a37e2e8d71c86948f6c6c8ce71df73b7461
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaa61a37

dev-python/logbook: Stabilize 1.5.3-r1 x86, #881901

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/logbook/logbook-1.5.3-r1.ebuild 
b/dev-python/logbook/logbook-1.5.3-r1.ebuild
index bb374548a6f2..3e13d704c0c8 100644
--- a/dev-python/logbook/logbook-1.5.3-r1.ebuild
+++ b/dev-python/logbook/logbook-1.5.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/getlogbook/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="~amd64 ~riscv x86"
 
 BDEPEND="
test? (



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

2022-11-19 Thread Sam James
commit: 583c745e8dba313ce32b47660e5d3939650d082a
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=583c745e

dev-python/logbook: Stabilize 1.5.3-r1 amd64, #881901

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/logbook/logbook-1.5.3-r1.ebuild 
b/dev-python/logbook/logbook-1.5.3-r1.ebuild
index 3e13d704c0c8..d8f8dd75c11d 100644
--- a/dev-python/logbook/logbook-1.5.3-r1.ebuild
+++ b/dev-python/logbook/logbook-1.5.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/getlogbook/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv x86"
+KEYWORDS="amd64 ~riscv x86"
 
 BDEPEND="
test? (



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

2022-11-19 Thread Sam James
commit: f7c78e5f9915cee067bc17ee705a2f8591ec893f
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c78e5f

dev-python/google-auth: Stabilize 2.13.0 ALLARCHES, #881891

Signed-off-by: Sam James  gentoo.org>

 dev-python/google-auth/google-auth-2.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/google-auth/google-auth-2.13.0.ebuild 
b/dev-python/google-auth/google-auth-2.13.0.ebuild
index de5188c8fdb8..37c2ffef06a9 100644
--- a/dev-python/google-auth/google-auth-2.13.0.ebuild
+++ b/dev-python/google-auth/google-auth-2.13.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 RDEPEND="


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

2022-11-19 Thread Sam James
commit: fd36800ddaa90fe870121e8f55359e23cfe969ef
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd36800d

dev-python/cx_Freeze: Stabilize 6.12.0 amd64, #881879

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/cx_Freeze/cx_Freeze-6.12.0.ebuild 
b/dev-python/cx_Freeze/cx_Freeze-6.12.0.ebuild
index bb24d400330a..67cf1adf7483 100644
--- a/dev-python/cx_Freeze/cx_Freeze-6.12.0.ebuild
+++ b/dev-python/cx_Freeze/cx_Freeze-6.12.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="PYTHON"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/importlib_metadata[${PYTHON_USEDEP}]



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

2022-11-19 Thread Sam James
commit: 4a52aa8cdcecbf40124777c08dde8aeb20862e7a
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a52aa8c

dev-python/google-api-python-client: Stabilize 2.65.0 ALLARCHES, #881889

Signed-off-by: Sam James  gentoo.org>

 .../google-api-python-client/google-api-python-client-2.65.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/google-api-python-client/google-api-python-client-2.65.0.ebuild 
b/dev-python/google-api-python-client/google-api-python-client-2.65.0.ebuild
index 7e8aaa05d6d4..1c528a1a0c2d 100644
--- a/dev-python/google-api-python-client/google-api-python-client-2.65.0.ebuild
+++ b/dev-python/google-api-python-client/google-api-python-client-2.65.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 RDEPEND="
>=dev-python/httplib2-0.15[${PYTHON_USEDEP}]



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

2022-11-19 Thread Sam James
commit: f7a424ba857df896742c61ae66d4e52b52d59194
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7a424ba

dev-python/fido2: Stabilize 1.1.0 ALLARCHES, #881885

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/fido2/fido2-1.1.0.ebuild 
b/dev-python/fido2/fido2-1.1.0.ebuild
index da7a80ee9ab6..6361668e2d08 100644
--- a/dev-python/fido2/fido2-1.1.0.ebuild
+++ b/dev-python/fido2/fido2-1.1.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0 BSD-2 MIT MPL-2.0"
 SLOT="0/1.0" # Bumped every time a backwards-incompatible version is released
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
 IUSE="examples"
 
 RDEPEND="



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

2022-11-19 Thread Sam James
commit: 2b54ab15a79231817f0f2127bbebedc062a73bb9
Author: Sam James  gentoo  org>
AuthorDate: Sat Nov 19 16:39:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Nov 19 16:39:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b54ab15

dev-python/dask: Stabilize 2022.10.1 ALLARCHES, #881881

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/dask/dask-2022.10.1.ebuild 
b/dev-python/dask/dask-2022.10.1.ebuild
index 8f2f893b8e30..3944d63ad468 100644
--- a/dev-python/dask/dask-2022.10.1.ebuild
+++ b/dev-python/dask/dask-2022.10.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]



[gentoo-commits] repo/proj/guru:dev commit in: media-sound/qloud/

2022-11-19 Thread Anna Vyalkova
commit: c2fb46179c67dbdc0b85afa719f3a1763dacfed5
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Nov 19 16:23:30 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sat Nov 19 16:23:35 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c2fb4617

media-sound/qloud: eprefix-ify and eapi bump

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 media-sound/qloud/qloud-1.4.2.ebuild | 14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/media-sound/qloud/qloud-1.4.2.ebuild 
b/media-sound/qloud/qloud-1.4.2.ebuild
index db3f39bce..ca4258f50 100644
--- a/media-sound/qloud/qloud-1.4.2.ebuild
+++ b/media-sound/qloud/qloud-1.4.2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit qmake-utils
 
@@ -16,14 +16,11 @@ HOMEPAGE="https://github.com/molke-productions/qloud;
 
 if [[ "${PV}" != "" ]]; then

SRC_URI="https://github.com/molke-productions/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-else
-   SRC_URI=""
 fi
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 RESTRICT="test"
 
@@ -44,16 +41,15 @@ RDEPEND="
 
x11-libs/qwt:6
 "
-DEPEND="${RDEPEND}
-"
+DEPEND="${RDEPEND}"
 
 src_prepare() {
default
 
-   sed -e "s!/usr/local!/usr!" \
+   sed -e "s!/usr/local!${EPREFIX}/usr!" \
-i config.pri || die
 
-   sed -e "s!/usr/include/qwt!/usr/include/qwt6!" \
+   sed -e "s!/usr/include/qwt!${EPREFIX}/usr/include/qwt6!" \
-i src/src.pro || die
 
sed -e "s!-lqwt!-lqwt6-qt5!" \



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

2022-11-19 Thread Arthur Zamarin
commit: 6d36615dd23f5c210ef9f001d75a703c9df13dc7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:09:45 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:09:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d36615d

sys-libs/glibc: Stabilize 2.36-r5 ppc, #879213

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-libs/glibc/glibc-2.36-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.36-r5.ebuild 
b/sys-libs/glibc/glibc-2.36-r5.ebuild
index 54ca86e6b0ea..43585018c0f8 100644
--- a/sys-libs/glibc/glibc-2.36-r5.ebuild
+++ b/sys-libs/glibc/glibc-2.36-r5.ebuild
@@ -26,7 +26,7 @@ PATCH_DEV=dilfridge
 if [[ ${PV} == * ]]; then
inherit git-r3
 else
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc ~x86"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
SRC_URI+=" 
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${P}-patches-${PATCH_VER}.tar.xz;
 fi



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

2022-11-19 Thread Arthur Zamarin
commit: 7f5ebd9646cd365568f9453a53f5ca6463d4afd7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:09:41 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:09:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5ebd96

sys-libs/glibc: Stabilize 2.36-r5 ppc64, #879213

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-libs/glibc/glibc-2.36-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.36-r5.ebuild 
b/sys-libs/glibc/glibc-2.36-r5.ebuild
index 7b69394a3d11..54ca86e6b0ea 100644
--- a/sys-libs/glibc/glibc-2.36-r5.ebuild
+++ b/sys-libs/glibc/glibc-2.36-r5.ebuild
@@ -26,7 +26,7 @@ PATCH_DEV=dilfridge
 if [[ ${PV} == * ]]; then
inherit git-r3
 else
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc ~x86"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
SRC_URI+=" 
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${P}-patches-${PATCH_VER}.tar.xz;
 fi



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

2022-11-19 Thread Arthur Zamarin
commit: 30b151128e250f771997710de6ff82dd3d810abf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:09:45 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:09:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30b15112

sys-libs/glibc: Stabilize 2.35-r11 ppc, #879213

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-libs/glibc/glibc-2.35-r11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.35-r11.ebuild 
b/sys-libs/glibc/glibc-2.35-r11.ebuild
index 7ba1c0f10cf3..706610c41650 100644
--- a/sys-libs/glibc/glibc-2.35-r11.ebuild
+++ b/sys-libs/glibc/glibc-2.35-r11.ebuild
@@ -26,7 +26,7 @@ PATCH_DEV=dilfridge
 if [[ ${PV} == * ]]; then
inherit git-r3
 else
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc ~x86"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
SRC_URI+=" 
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${P}-patches-${PATCH_VER}.tar.xz;
SRC_URI+=" experimental-loong? ( 
https://dev.gentoo.org/~xen0n/distfiles/glibc-2.35-loongarch-patches-20220522.tar.xz
 )"



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

2022-11-19 Thread Arthur Zamarin
commit: 0c10624dc5be9fddf7e939b9f9ffdd0fbc4da832
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:09:41 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:09:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c10624d

sys-libs/glibc: Stabilize 2.35-r11 ppc64, #879213

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-libs/glibc/glibc-2.35-r11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.35-r11.ebuild 
b/sys-libs/glibc/glibc-2.35-r11.ebuild
index 639b83ba1977..7ba1c0f10cf3 100644
--- a/sys-libs/glibc/glibc-2.35-r11.ebuild
+++ b/sys-libs/glibc/glibc-2.35-r11.ebuild
@@ -26,7 +26,7 @@ PATCH_DEV=dilfridge
 if [[ ${PV} == * ]]; then
inherit git-r3
 else
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc ~x86"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
SRC_URI+=" 
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${P}-patches-${PATCH_VER}.tar.xz;
SRC_URI+=" experimental-loong? ( 
https://dev.gentoo.org/~xen0n/distfiles/glibc-2.35-loongarch-patches-20220522.tar.xz
 )"



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

2022-11-19 Thread Arthur Zamarin
commit: 2d6fef9245ccaef61da7eb8bfbea2aecfee1557a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 16:04:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 16:04:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d6fef92

app-admin/conky: Stabilize 1.13.1 ppc64, #878357

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-admin/conky/conky-1.13.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/conky/conky-1.13.1.ebuild 
b/app-admin/conky/conky-1.13.1.ebuild
index b00502260ebc..cf2c7c6dbc1d 100644
--- a/app-admin/conky/conky-1.13.1.ebuild
+++ b/app-admin/conky/conky-1.13.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/brndnmtthws/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-3 BSD LGPL-2.1 MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ppc ppc64 ~riscv sparc x86"
 IUSE="apcupsd bundled-toluapp cmus curl doc hddtemp ical iconv imlib
intel-backlight iostats ipv6 irc lua-cairo lua-imlib lua-rsvg math moc
mpd mysql nano-syntax ncurses nvidia +portmon pulseaudio rss systemd



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

2022-11-19 Thread Piotr Karbowski
commit: 38ded96221c91a3f3a7b78d83d1adbafbc0bedb6
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:51:14 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:51:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38ded962

net-misc/rclone: 1.60.1 version bump.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/rclone/Manifest |  2 ++
 net-misc/rclone/rclone-1.60.1.ebuild | 41 
 2 files changed, 43 insertions(+)

diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
index 03c48e45a529..47274cb1df60 100644
--- a/net-misc/rclone/Manifest
+++ b/net-misc/rclone/Manifest
@@ -6,3 +6,5 @@ DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B 
c2ff3beb776f8697ef44421c2adb7a7
 DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B 
e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f
 SHA512 
5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342
 DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 
5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8
 SHA512 
460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac
 DIST rclone-1.60.0.tar.gz 16018631 BLAKE2B 
e40f6a7e9954bc55232c126eb3095b2938761be170422d8ce63b76bf2c20d9c887a7c9d0b050ea094e125584c7ae6aad12f8d4a7fb3a85f9fb67e77bd9d0fb7b
 SHA512 
f24958e5e99f1b4812952434921e6a0f21fd2a46c41d5c2e714cd5d686edf0fb2f60cbe6c79674c7e0fcd11de7b5fa2b86ef2eae62ec776dd9bbb567c908919d
+DIST rclone-1.60.1-deps.tar.xz 260510372 BLAKE2B 
74b5998a8d6ff1d78eaf86bab38d90eee1abdc92d4e560d15ef4449663b2b0b4a243522fb1b74e1329e15372133cbd32be5437ad68cc6aab3e82efd6840ea362
 SHA512 
08b3970c4694c3c4ca3637e3221c2a54c4305d0f4b091c4e2b258b7d07f548bca1424eaa50c6fe5e2685761c4976e59caa0b5997a65d1b4e30a0644e1d030fe4
+DIST rclone-1.60.1.tar.gz 16026540 BLAKE2B 
bdc666de0d242847596719a9dd6823683a5c100fc9bcacf611d956d50823fb9e3874fc1216de244b7004f52875cee6f8739ecaf2d2d2f61cd231e824d71cd2ad
 SHA512 
ba4e4a3a57ae639665ca22576a4c8ed6d8818aa903a7d4211bf2cfbb0fb81a95162521806b7174a042bb684262786dfee4c204d6080d33e59bd9705dc9d8db9c

diff --git a/net-misc/rclone/rclone-1.60.1.ebuild 
b/net-misc/rclone/rclone-1.60.1.ebuild
new file mode 100644
index ..585af0e639a7
--- /dev/null
+++ b/net-misc/rclone/rclone-1.60.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 go-module
+
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+SRC_URI="
+   https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-deps.tar.xz
+"
+
+DESCRIPTION="A program to sync files to and from various cloud storage 
providers"
+HOMEPAGE="https://rclone.org/;
+
+LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
+SLOT="0"
+IUSE=""
+
+src_compile() {
+   go build -mod=readonly . || die "compile failed"
+}
+
+src_test() {
+   # Setting CI skips unreliable tests, see fstest/testy/testy.go
+   # TestAddPlugin and TestRemovePlugin fail
+   RCLONE_CONFIG="/notfound" CI="true" go test -mod=readonly -v -run 
"!Test.*Plugin" ./... || die "test failed"
+}
+
+src_install() {
+   dobin ${PN}
+   doman ${PN}.1
+   dodoc README.md
+
+   ./rclone genautocomplete bash ${PN}.bash || die
+   newbashcomp ${PN}.bash ${PN}
+
+   ./rclone genautocomplete zsh ${PN}.zsh || die
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+}



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

2022-11-19 Thread Piotr Karbowski
commit: ff689166cf1fceeaba4c8df5740fd5d810300323
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:52:37 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:52:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff689166

net-misc/rclone: drop old.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-misc/rclone/Manifest |  4 
 net-misc/rclone/rclone-1.58.1.ebuild | 41 
 net-misc/rclone/rclone-1.59.0.ebuild | 41 
 3 files changed, 86 deletions(-)

diff --git a/net-misc/rclone/Manifest b/net-misc/rclone/Manifest
index 47274cb1df60..19d062c2ebe1 100644
--- a/net-misc/rclone/Manifest
+++ b/net-misc/rclone/Manifest
@@ -1,7 +1,3 @@
-DIST rclone-1.58.1-deps.tar.xz 201798856 BLAKE2B 
e739b038953292e78161a40c3bd2753e4172b1e330109a4ad0aa5a10255a165c2ae1a4cbd191aeff3bee98c2b2ffd5c9f142bd290ef41fe0ab560baf43cb9702
 SHA512 
f40f00da9da7b6535ee1de2a120e047522e50e9341bf30ca8f0b01559621ed7474a59d925a88393600a90120818233eaa45ee44727b12336a7d48f3e2dfe550b
-DIST rclone-1.58.1.tar.gz 15696598 BLAKE2B 
601d60c5a1facc18bd6c157bf017ff8c0793fe4ca0bd8e8b719ad457882829919b18085c54a606c8880b60199c50b4a8f8fb7e73ca2c200efa899b8bcb7e0b63
 SHA512 
104ff2e743374ad3d0f3c517e34ac068d6439445732bc3ce4ffe8fbc13e7d2b4285518e8037c5600589425e001c26e334c7e31d12f9a476af958cb47097c4e00
-DIST rclone-1.59.0-deps.tar.xz 301036992 BLAKE2B 
f5acc3d1ec96e27a96343712595974827ebdb2a10c4d45bbd323228a47a097f9fdc71d439b0881dbee75a6406015ba5fcaccb616482333dd4c5df1cc32d84bc2
 SHA512 
41a3edbaeb6da5252f4eeb04cf3eb0ec1882de32c2ae55a659db6a841446ab756197b20878fc9a7053d687ce05b42ea45c30207cdbb16d8ba8a98256ea38
-DIST rclone-1.59.0.tar.gz 15940750 BLAKE2B 
d6923e766e78a88714b9ebbc146947421e5c9f327b2a6ea8f173d203e3cc952439408622bdc07a98ceb473131d338ca8246614e808e26085f829c971eccd32fe
 SHA512 
a6cb27687b5d4ca6f2a3597b16d6b00d212bbe0bc8542c399c597bc52d827254d41fa0aa67457677cc4ae53d5b264aef09aaa74d80d5a84e4efe9d40f3042b61
 DIST rclone-1.59.2-deps.tar.xz 295715984 BLAKE2B 
c2ff3beb776f8697ef44421c2adb7a7997fcb1343b54c5218a4b7615f05406f5310f248048814a3f6c81a4e83d8f7400603263476ef6fce0f9d14464b358cd07
 SHA512 
9c3c60d08422d632ac42fc92d2a8d5c075c115600fbace376f18cda5609eea261297d648da6558a93c3afea8131f877682175ae7ff8e0d2549776263bb9ec40b
 DIST rclone-1.59.2.tar.gz 15946730 BLAKE2B 
e05ce4b1c37af29499ae1b6a8d18a198fe43dcf788f3d1e3d027a871533c87783ed3ddc94c7c2772a94e3bc19c2540f4bb82aa79780f119c4c54833ad171671f
 SHA512 
5741e1e1b4d2d0dc0f80baf2f7c318cdda995c2f15b7b9e0dd1c9be7372ab21cedba377c40adcc0edd0482aec7c2a27e0144a6edb957840b9422a8bbff922342
 DIST rclone-1.60.0-deps.tar.xz 260508436 BLAKE2B 
5e4170601d76b4e221762ecac21a8c6a00635c6fd7958f993e4132ca703a8d91773d42523513be917feab7ae16a1babe3bd9c8142937604e724d36f7386bd8d8
 SHA512 
460a3f722324f0dc04408ab76a4e3be96b85d420921e7a8acc52eeebe4f6b11598c6b313946104d7ccb8cfa6c9071886f82ca7b7b863d11d5e520e68e500e7ac

diff --git a/net-misc/rclone/rclone-1.58.1.ebuild 
b/net-misc/rclone/rclone-1.58.1.ebuild
deleted file mode 100644
index bf443a98d757..
--- a/net-misc/rclone/rclone-1.58.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 go-module
-
-KEYWORDS="amd64 ~arm ~arm64 x86"
-SRC_URI="
-   https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   https://dev.gentoo.org/~slashbeast/distfiles/${PN}/${P}-deps.tar.xz
-"
-
-DESCRIPTION="A program to sync files to and from various cloud storage 
providers"
-HOMEPAGE="https://rclone.org/;
-
-LICENSE="Apache-2.0 BSD BSD-2 ISC MIT MPL-2.0"
-SLOT="0"
-IUSE=""
-
-src_compile() {
-   go build -mod=readonly . || die "compile failed"
-}
-
-src_test() {
-   # Setting CI skips unreliable tests, see fstest/testy/testy.go
-   # TestAddPlugin and TestRemovePlugin fail
-   RCLONE_CONFIG="/notfound" CI="true" go test -mod=readonly -v -run 
"!Test.*Plugin" ./... || die "test failed"
-}
-
-src_install() {
-   dobin ${PN}
-   doman ${PN}.1
-   dodoc README.md
-
-   ./rclone genautocomplete bash ${PN}.bash || die
-   newbashcomp ${PN}.bash ${PN}
-
-   ./rclone genautocomplete zsh ${PN}.zsh || die
-   insinto /usr/share/zsh/site-functions
-   newins ${PN}.zsh _${PN}
-}

diff --git a/net-misc/rclone/rclone-1.59.0.ebuild 
b/net-misc/rclone/rclone-1.59.0.ebuild
deleted file mode 100644
index 7c77180a06c2..
--- a/net-misc/rclone/rclone-1.59.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 go-module
-
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-SRC_URI="
-   https://github.com/rclone/rclone/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   

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

2022-11-19 Thread Piotr Karbowski
commit: 9c76e439f2bd106d14a0914360f7f7a3f6301235
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:47:30 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:47:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c76e439

net-ftp/proftpd: drop old

Bug: https://bugs.gentoo.org/811495
Signed-off-by: Piotr Karbowski  gentoo.org>

 net-ftp/proftpd/Manifest|   4 -
 net-ftp/proftpd/proftpd-1.3.7a-r3.ebuild| 277 
 net-ftp/proftpd/proftpd-1.3.7b-r2.ebuild| 275 ---
 net-ftp/proftpd/proftpd-1.3.7c-r1.ebuild| 275 ---
 net-ftp/proftpd/proftpd-1.3.8_rc1-r3.ebuild | 274 ---
 5 files changed, 1105 deletions(-)

diff --git a/net-ftp/proftpd/Manifest b/net-ftp/proftpd/Manifest
index 5a406ad79090..3ec591664228 100644
--- a/net-ftp/proftpd/Manifest
+++ b/net-ftp/proftpd/Manifest
@@ -1,9 +1,5 @@
 DIST mod_gss-1.3.9.tar.gz 117158 BLAKE2B 
f957fa465f9a9b06ceb9c190ab60c7f67fdeeef79dce7f51bcfed8dc726cb01a231232c65821ca3a240b77a5019fa22f31b45496c128a06627bd24dc960b566f
 SHA512 
44615983b0f67939b110e54c4a83b3056263bad72ba78de1b16f9f8590f5504c60e679f55484708d49e694c528d4715d9abd0cb75cfe439982ea9e02e0c18891
 DIST mod_vroot-0.9.4.tar.gz 29461 BLAKE2B 
eb4d3f6425ab0a1a61ca607e4655b5f8ff6ea342ca49d49598e7a4c5596382aa2c1d4e8228a1cdcfff324feb92dac80fcc58e35bbb77155069749afdd7cc41fb
 SHA512 
f5de392c9fe39f0a03b0783a7092bbfe17ea6db991f4b4e4a2d8f092f073d27ef2c64dd6484d5665b5abc808c0caba016d4fc3fab3da3810f5ebe5249bb4cbce
-DIST proftpd-1.3.7a.tar.gz 20414571 BLAKE2B 
829f3ff79cf74bc9cacfc611877cd1373daefb022b10eb427be56325d455dc7ba2f87a7dbefed06dca0c4cf06597043aac9141e4156e775a4f343bbb07a29375
 SHA512 
abb53c494677001b6d8d5a15af4ae47e2527025c952667b8c42e144452266d2b7f89b57e68c96177e6054733eb5e5d04cc1c0cf61ff7c3697910e0a525a9de87
-DIST proftpd-1.3.7b.tar.gz 20422741 BLAKE2B 
9234d395348778c208307928ae7d673078edf01d9d4e46501b2f46dc051bb0debb1cae0d81ac1564b4e6828a07dae6bdd1b5e708449bb2e21acf6ee1aedfb1f2
 SHA512 
c25dbd3d5359a41d9f2bc81f130af5c9448000626b27e9e9228efcfdd4c01e109bb19bdb7de46d736894b135a43c8b0ad4170c9215a87e93e56108de889a
-DIST proftpd-1.3.7c.tar.gz 20428648 BLAKE2B 
c8c02774be97e05ed6952c6765d908dd27e64891e709ccb5c737501da3d4857dc151c19a9b428b490b7963f3c3ad5d206a6e5ac6408bfafd333a373ec54fcef2
 SHA512 
f9268e521e68cebaf1947cbfe1cc57f282ea09d59410c1722cd9a68c99d643b90b837c1fa840fdb894597c7429b0eb62bc4ac324915ffac04366daa2f104e88d
-DIST proftpd-1.3.8rc1.tar.gz 20469318 BLAKE2B 
5385c013ecc123802163cd632eb1c87b0feb9bfac278f9d419ff4fc76380f415bee1726e6ac37929aff804bf4bdf0f9b525a250b9ac8e8679f772672c78a639a
 SHA512 
9c0fda5c870a7e84227d5ee6e1b331e0150c4cad297d6bd640e9ccfa838bd98e8620e542c40fc80d0f1c5f82ed3e2e2b5af7d3a7c371d96fb4e37d5472e24032
 DIST proftpd-1.3.8rc2.tar.gz 20485204 BLAKE2B 
fc79d56dfe61e2b7b0b2a8da52237f402212389b424c92142e24d4caa8688598ca26d2e2956e1ce5fa9c5ac7467aa7f61ebecc6e4ffe73a74118ab242049b68f
 SHA512 
0d98fb2a3044c4426aaf47f483e7af09c736d641ab7334e5f0f32088be1c904bc9ca00aae8977e496c951c63071deb20c282f53f43c1664bc4978a66215a774a
 DIST proftpd-mod-case-0.7.tar.gz 13184 BLAKE2B 
bf2118d9b8ed97a5b192b92b515d17ac7a0d75e154288e5afb3a1c3d686e635093df9501cc1c9b077f87c14326e31e8b9f751803dfca1eae9643f12333eb633f
 SHA512 
c08d13ef82fec36ae75aa3213dd02e0ce4045904849f422e152f039a9da66a45e4423751074b8bcf8ce347a40ce0e7bde798a85cbadc962fd872aeaa898261fc
 DIST proftpd-mod-diskuse-0.9.tar.gz 18596 BLAKE2B 
38c704c8607f0f93b080e77fe793cfe0125c88acc6f818ecb059c6c21a983e040ff5f2c1b91e34ef4ba2666a808d896018c364d1f12ea38f0c477e79bdaa2120
 SHA512 
d41976bf2810e4b783e775e8c767ca2030c3b5df116219fd31cbbac7feaf9922c315bf4ea092881b0d6cf43f2f4c5dbcae61be3c3a833058d12f962a3024b975

diff --git a/net-ftp/proftpd/proftpd-1.3.7a-r3.ebuild 
b/net-ftp/proftpd/proftpd-1.3.7a-r3.ebuild
deleted file mode 100644
index cc90efaadad2..
--- a/net-ftp/proftpd/proftpd-1.3.7a-r3.ebuild
+++ /dev/null
@@ -1,277 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib systemd tmpfiles toolchain-funcs
-
-MOD_CASE="0.7"
-MOD_CLAMAV="0.14rc2"
-MOD_DISKUSE="0.9"
-MOD_GSS="1.3.9"
-MOD_MSG="0.4.1"
-MOD_VROOT="0.9.4"
-
-DESCRIPTION="An advanced and very configurable FTP server"
-HOMEPAGE="http://www.proftpd.org/
-   http://www.castaglia.org/proftpd/
-   https://github.com/jbenden/mod_clamav
-   http://gssmod.sourceforge.net/;
-SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz
-   case? ( 
http://www.castaglia.org/${PN}/modules/${PN}-mod-case-${MOD_CASE}.tar.gz )
-   clamav? ( 
https://github.com/jbenden/mod_clamav/archive/v${MOD_CLAMAV}.tar.gz -> 
${PN}-mod_clamav-${MOD_CLAMAV}.tar.gz )
-   diskuse? ( 
http://www.castaglia.org/${PN}/modules/${PN}-mod-diskuse-${MOD_DISKUSE}.tar.gz )
-   kerberos? ( 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/qbittorrent/

2022-11-19 Thread Piotr Karbowski
commit: 5eda440ff49707a83a509dc92f0c6c84c0ba5269
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:28:05 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:29:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eda440f

net-p2p/qbittorrent: 4.4.5-r1, https://bugs.gentoo.org/868480
Signed-off-by: Piotr Karbowski  gentoo.org>

 net-p2p/qbittorrent/qbittorrent-4.4.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/qbittorrent/qbittorrent-4.4.5-r1.ebuild 
b/net-p2p/qbittorrent/qbittorrent-4.4.5-r1.ebuild
index 569ef3b83290..ffbda8b70a93 100644
--- a/net-p2p/qbittorrent/qbittorrent-4.4.5-r1.ebuild
+++ b/net-p2p/qbittorrent/qbittorrent-4.4.5-r1.ebuild
@@ -30,7 +30,7 @@ RDEPEND="
dev-qt/qtnetwork:5[ssl]
dev-qt/qtsql:5
dev-qt/qtxml:5
-   >=net-libs/libtorrent-rasterbar-1.2.14:=
+   =sys-libs/zlib-1.2.11
dbus? ( dev-qt/qtdbus:5 )
gui? (



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

2022-11-19 Thread Piotr Karbowski
commit: 74db6eea3511a65a8c52b0a46deed2b5b298bdb2
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:18:07 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:29:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74db6eea

net-libs/libtorrent-rasterbar: ~arm64 keywording of 1.2.18.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild
index aa314921fbd2..6f71b75a32d9 100644
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild
+++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/arvidn/libtorrent/releases/download/v${PV}/${P}.tar.
 
 LICENSE="BSD"
 SLOT="0/10"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+dht debug python ssl test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: net-p2p/qbittorrent/

2022-11-19 Thread Piotr Karbowski
commit: 736059feb1f8c465b00ca1ec4300d44c44adb04e
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:18:39 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:29:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=736059fe

net-p2p/qbittorrent: joining as maintainer.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-p2p/qbittorrent/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-p2p/qbittorrent/metadata.xml b/net-p2p/qbittorrent/metadata.xml
index 5aa623561db9..d972c0f1ac14 100644
--- a/net-p2p/qbittorrent/metadata.xml
+++ b/net-p2p/qbittorrent/metadata.xml
@@ -5,6 +5,10 @@
zlog...@gentoo.org
Mikle Kolyada

+   
+   slashbe...@gentoo.org
+   Piotr Karbowski
+   

Enable the Web UI




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

2022-11-19 Thread Piotr Karbowski
commit: 16b30b5766814ec975929b49c057abbe7dad070e
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Sat Nov 19 15:19:59 2022 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Sat Nov 19 15:29:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b30b57

net-libs/libtorrent-rasterbar: ~riscv keywording of 1.2.18.

Signed-off-by: Piotr Karbowski  gentoo.org>

 net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild 
b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild
index 6f71b75a32d9..22088ea89dfc 100644
--- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild
+++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.18.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/arvidn/libtorrent/releases/download/v${PV}/${P}.tar.
 
 LICENSE="BSD"
 SLOT="0/10"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE="+dht debug python ssl test"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 RESTRICT="!test? ( test )"



[gentoo-commits] data/gentoo-news:master commit in: 2022-11-19-lvm2-default-USE-flags/

2022-11-19 Thread David Seifert
commit: 3fb914ae4aeea01e3ab241683ca2bebc3416f50b
Author: David Seifert  gentoo  org>
AuthorDate: Sat Nov 19 15:20:03 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Nov 19 15:20:03 2022 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=3fb914ae

2022-11-19-lvm2-default-USE-flags: add item

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

 .../2022-11-19-lvm2-default-USE-flags.en.txt   | 30 ++
 1 file changed, 30 insertions(+)

diff --git 
a/2022-11-19-lvm2-default-USE-flags/2022-11-19-lvm2-default-USE-flags.en.txt 
b/2022-11-19-lvm2-default-USE-flags/2022-11-19-lvm2-default-USE-flags.en.txt
new file mode 100644
index 000..b3edf5d
--- /dev/null
+++ b/2022-11-19-lvm2-default-USE-flags/2022-11-19-lvm2-default-USE-flags.en.txt
@@ -0,0 +1,30 @@
+Title: LVM2 default USE flag change
+Author: David Seifert 
+Posted: 2022-11-19
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: sys-fs/lvm2
+
+The Gentoo Base System team has recently switched from the disabling
+"device-mapper-only" flag to the enabling "lvm" (bug #718910).
+
+After considering most reverse dependencies of sys-fs/lvm2, the Base System 
Team
+has decided that the majority of Gentoo users are unlikely to use the LVM2
+components of sys-fs/lvm2, instead relying solely on it providing device-mapper
+functionality.
+
+To this end, we will disable the default enabled flag "+lvm" on sys-fs/lvm2
+on 2023-01-01. If you do not have USE=lvm somehow globally enabled, this means
+you will lose LVM2 (but not device-mapper!) functionality, so enable it in your
+config if your boot configuration depends on it or if you depend on any of the
+lvm2-* daemons.
+
+Furthermore, we have considered other default enabled USE flags too, and have
+come to the conclusion that USE=+thin makes even less sense than USE=+lvm.
+Thin-provisioned LVM volumes are an important use case in certain VM hosting
+scenarios, but unlikely to be relevant for the large majority of Gentoo users.
+
+In summary:
+- Enable USE="lvm" if you use lvm2 (but not needed for device-mapper) as 
described above.
+- Enable USE="lvm thin" if you use thin as described above.
+- If you don't know what LVM2 is, you don't need to take any action.



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

2022-11-19 Thread Ionen Wolkens
commit: 9f64750c6af55392b8a5dc5a3aafe48e6be3c07c
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Nov 19 14:32:28 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Nov 19 14:33:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f64750c

media-sound/lingot: re-order maintainers

sound is more of a backup free-for-all maintainer and doesn't
accomplish much listed first

Signed-off-by: Ionen Wolkens  gentoo.org>

 media-sound/lingot/metadata.xml | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-sound/lingot/metadata.xml b/media-sound/lingot/metadata.xml
index d82c576c2896..a8573374e624 100644
--- a/media-sound/lingot/metadata.xml
+++ b/media-sound/lingot/metadata.xml
@@ -1,10 +1,6 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   so...@gentoo.org
-   Gentoo Sound project
-   

alexey+gen...@asokolov.org
Alexey Sokolov
@@ -13,6 +9,10 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   so...@gentoo.org
+   Gentoo Sound project
+   

lingot




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

2022-11-19 Thread Arthur Zamarin
commit: d54ad6659fd9ad38e4893689d95ec57fcaa98a9a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 14:26:01 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 14:26:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d54ad665

dev-python/pandas: Stabilize 1.5.1 arm64, #881907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pandas/pandas-1.5.1.ebuild 
b/dev-python/pandas/pandas-1.5.1.ebuild
index 623211f76378..d7356cdab078 100644
--- a/dev-python/pandas/pandas-1.5.1.ebuild
+++ b/dev-python/pandas/pandas-1.5.1.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${P/_/}
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="doc full-support minimal test X"
 RESTRICT="!test? ( test )"
 



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

2022-11-19 Thread Arthur Zamarin
commit: 1e7c4655cbb4b31d65c5628ab8ad04bbca4cbe27
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 14:25:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 14:25:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7c4655

dev-python/pandas: Stabilize 1.5.1 arm, #881907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pandas/pandas-1.5.1.ebuild 
b/dev-python/pandas/pandas-1.5.1.ebuild
index bacf96363300..623211f76378 100644
--- a/dev-python/pandas/pandas-1.5.1.ebuild
+++ b/dev-python/pandas/pandas-1.5.1.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${P/_/}
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="doc full-support minimal test X"
 RESTRICT="!test? ( test )"
 



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

2022-11-19 Thread Arthur Zamarin
commit: d68bdc9ca9873b59965a9516a1733ee8f8e4f65d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 14:25:34 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 14:25:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68bdc9c

dev-python/pandas: Stabilize 1.5.1 ppc64, #881907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pandas/pandas-1.5.1.ebuild 
b/dev-python/pandas/pandas-1.5.1.ebuild
index cb3415731fd7..bacf96363300 100644
--- a/dev-python/pandas/pandas-1.5.1.ebuild
+++ b/dev-python/pandas/pandas-1.5.1.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${P/_/}
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="doc full-support minimal test X"
 RESTRICT="!test? ( test )"
 



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

2022-11-19 Thread Arthur Zamarin
commit: b461ddf7a7e58cf48f1a86d947b7d63e5930c445
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 14:25:31 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 14:25:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b461ddf7

dev-python/pandas: Stabilize 1.5.1 ppc, #881907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/pandas/pandas-1.5.1.ebuild 
b/dev-python/pandas/pandas-1.5.1.ebuild
index 9b507e23b10b..cb3415731fd7 100644
--- a/dev-python/pandas/pandas-1.5.1.ebuild
+++ b/dev-python/pandas/pandas-1.5.1.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${P/_/}
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="doc full-support minimal test X"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] proj/releng:master commit in: tools/, releases/specs/sparc/sparc/, releases/specs/sparc/sparc64/

2022-11-19 Thread Andreas K. Hüttel
commit: be5ca56e3b5af4974efcfa0debfa2473987f71cf
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov 19 14:16:12 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov 19 14:16:12 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=be5ca56e

Add sparc systemd merged-usr builds

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 releases/specs/sparc/sparc/systemd-stage1-mu.spec   | 12 
 releases/specs/sparc/sparc/systemd-stage3-mu.spec   | 10 ++
 releases/specs/sparc/sparc64/systemd-stage1-mu.spec | 12 
 releases/specs/sparc/sparc64/systemd-stage3-mu.spec | 10 ++
 tools/catalyst-auto-sparc64.conf|  8 +++-
 5 files changed, 51 insertions(+), 1 deletion(-)

diff --git a/releases/specs/sparc/sparc/systemd-stage1-mu.spec 
b/releases/specs/sparc/sparc/systemd-stage1-mu.spec
new file mode 100644
index ..2af6a51b
--- /dev/null
+++ b/releases/specs/sparc/sparc/systemd-stage1-mu.spec
@@ -0,0 +1,12 @@
+subarch: sparc
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/sparc/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-sparc-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/sparc/sparc/systemd-stage3-mu.spec 
b/releases/specs/sparc/sparc/systemd-stage3-mu.spec
new file mode 100644
index ..d496942a
--- /dev/null
+++ b/releases/specs/sparc/sparc/systemd-stage3-mu.spec
@@ -0,0 +1,10 @@
+subarch: sparc
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/sparc/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-sparc-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/sparc/sparc64/systemd-stage1-mu.spec 
b/releases/specs/sparc/sparc64/systemd-stage1-mu.spec
new file mode 100644
index ..a4efb94a
--- /dev/null
+++ b/releases/specs/sparc/sparc64/systemd-stage1-mu.spec
@@ -0,0 +1,12 @@
+subarch: sparc64
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/sparc/17.0/64ul/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-sparc64-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/sparc/sparc64/systemd-stage3-mu.spec 
b/releases/specs/sparc/sparc64/systemd-stage3-mu.spec
new file mode 100644
index ..ce74d020
--- /dev/null
+++ b/releases/specs/sparc/sparc64/systemd-stage3-mu.spec
@@ -0,0 +1,10 @@
+subarch: sparc64
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/sparc/17.0/64ul/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-sparc64-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/tools/catalyst-auto-sparc64.conf b/tools/catalyst-auto-sparc64.conf
index fc346e21..668fc265 100644
--- a/tools/catalyst-auto-sparc64.conf
+++ b/tools/catalyst-auto-sparc64.conf
@@ -5,7 +5,7 @@ UPLOAD_USER=sparc
 UPLOAD_KEY=/root/.ssh/id_ed25519
 SPECS_DIR=${REPO_DIR}/releases/specs/sparc
 
-SPECS="sparc/stage1.spec sparc/stage3.spec sparc/systemd-stage1.spec 
sparc/systemd-stage3.spec sparc64/stage1.spec sparc64/stage3.spec 
sparc64/systemd-stage1.spec sparc64/systemd-stage3.spec"
+SPECS="sparc/stage1.spec sparc/stage3.spec sparc/systemd-stage1.spec 
sparc/systemd-stage3.spec sparc/systemd-stage1-mu.spec 
sparc/systemd-stage3-mu.spec sparc64/stage1.spec sparc64/stage3.spec 
sparc64/systemd-stage1.spec sparc64/systemd-stage3.spec 
sparc64/systemd-stage1-mu.spec sparc64/systemd-stage3-mu.spec"
 OPTIONAL_SPECS="sparc64/installcd-stage1.spec 
sparc64/installcd-stage2-minimal.spec"
 
 KCONFIG_DIR=${REPO_DIR}/releases/kconfig/sparc
@@ -44,12 +44,18 @@ post_build() {
sparc/systemd-stage3.spec)
upload stage3-sparc-systemd-${TIMESTAMP}*.xz*
;;
+   sparc/systemd-stage3-mu.spec)
+   upload stage3-sparc-systemd-mergedusr-${TIMESTAMP}*.xz*
+   ;;
sparc64/stage3.spec)
upload stage3-sparc64-${TIMESTAMP}*.xz*
;;
sparc64/systemd-stage3.spec)
upload stage3-sparc64-systemd-${TIMESTAMP}*.xz*
;;
+   sparc64/systemd-stage3-mu.spec)
+   upload stage3-sparc64-systemd-mergedusr-${TIMESTAMP}*.xz*
+   ;;
*)
echo "Finished ${spec}"
;;



[gentoo-commits] proj/releng:master commit in: releases/specs/x86/i686/, tools/

2022-11-19 Thread Andreas K. Hüttel
commit: a1175db1091cdebc82da57d792a5b48e7db5c0ea
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov 19 14:23:34 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov 19 14:23:34 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=a1175db1

Add x86 systemd merged-usr specs

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 releases/specs/x86/i686/stage1-systemd-mu.spec | 12 
 releases/specs/x86/i686/stage3-systemd-mu.spec | 10 ++
 tools/catalyst-auto-x86.conf   |  5 +
 3 files changed, 27 insertions(+)

diff --git a/releases/specs/x86/i686/stage1-systemd-mu.spec 
b/releases/specs/x86/i686/stage1-systemd-mu.spec
new file mode 100644
index ..d7bb1aab
--- /dev/null
+++ b/releases/specs/x86/i686/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: i686
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/x86/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-i686-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/x86/i686/stage3-systemd-mu.spec 
b/releases/specs/x86/i686/stage3-systemd-mu.spec
new file mode 100644
index ..22a40f2c
--- /dev/null
+++ b/releases/specs/x86/i686/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: i686
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/x86/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-i686-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/tools/catalyst-auto-x86.conf b/tools/catalyst-auto-x86.conf
index b0a70c76..4a740f57 100644
--- a/tools/catalyst-auto-x86.conf
+++ b/tools/catalyst-auto-x86.conf
@@ -13,6 +13,7 @@ SETS="
i486_openrc
i686_openrc
i686_systemd
+   i686_systemd_mu
hardened_openrc
musl
 "
@@ -22,6 +23,7 @@ 
SET_i486_openrc_OPTIONAL_SPECS="i486/installcd-stage1-openrc.spec i486/installcd
 
 SET_i686_openrc_SPECS="i686/stage1-openrc.spec i686/stage3-openrc.spec"
 SET_i686_systemd_SPECS="i686/stage1-systemd.spec i686/stage3-systemd.spec"
+SET_i686_systemd_mu_SPECS="i686/stage1-systemd-mu.spec 
i686/stage3-systemd-mu.spec"
 
 SET_hardened_openrc_SPECS="hardened/stage1-openrc.spec 
hardened/stage3-openrc.spec"
 SET_hardened_openrc_OPTIONAL_SPECS="hardened/admincd-stage1-openrc.spec 
hardened/admincd-stage2-openrc.spec"
@@ -71,6 +73,9 @@ post_build() {
i686/stage3-systemd.spec)
upload stage3-i686-systemd-${TIMESTAMP}.tar.xz*
;;
+   i686/stage3-systemd-mu.spec)
+   upload stage3-i686-systemd-mergedusr-${TIMESTAMP}.tar.xz*
+   ;;
esac
popd >/dev/null || exit
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/devilspie2/

2022-11-19 Thread Ionen Wolkens
commit: 9acc745e5b62bd8ee36c6b573819494de664bf98
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Nov 19 14:17:45 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Nov 19 14:21:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9acc745e

x11-misc/devilspie2: work around Makefile race condition

Closes: https://bugs.gentoo.org/881473
Signed-off-by: Ionen Wolkens  gentoo.org>

 x11-misc/devilspie2/devilspie2-0.44.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-misc/devilspie2/devilspie2-0.44.ebuild 
b/x11-misc/devilspie2/devilspie2-0.44.ebuild
index b919988753f7..8f5a37e52d01 100644
--- a/x11-misc/devilspie2/devilspie2-0.44.ebuild
+++ b/x11-misc/devilspie2/devilspie2-0.44.ebuild
@@ -40,6 +40,7 @@ src_compile() {
LUA=${ELUA}
)
 
+   mkdir obj || die # race condition (bug #881473)
emake "${DEVILSPIE2_ARGS[@]}"
 }
 



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

2022-11-19 Thread Michał Górny
commit: a8a067fd32a291921cb7f84d211801acf7ffc30f
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 14:12:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 14:12:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8a067fd

package.mask: Last rite dev-cpp/pstreams

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 142a48033ed0..861dd273eea6 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Michał Górny  (2022-11-19)
+# Fails to build.  Last bumped in 2017.  Library with no revdeps.
+# Removal on 2022-12-19.  Bug #630396.
+dev-cpp/pstreams
+
 # Michał Górny  (2022-11-19)
 # Packages with no maintainer and major bugs reported.  They are either
 # inactive upstream, or have not been bumped for a long time.



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

2022-11-19 Thread Arthur Zamarin
commit: 293c6bfa7123bbda6cb170df09f32baa2fe0da57
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 14:01:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 14:01:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=293c6bfa

dev-python/coverage: Stabilize 6.5.0-r1 hppa, #881875

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/coverage/coverage-6.5.0-r1.ebuild 
b/dev-python/coverage/coverage-6.5.0-r1.ebuild
index fd68f6e786dd..d758745ecc95 100644
--- a/dev-python/coverage/coverage-6.5.0-r1.ebuild
+++ b/dev-python/coverage/coverage-6.5.0-r1.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~x64-macos"
 
 RDEPEND="
$(python_gen_cond_dep '



[gentoo-commits] proj/releng:master commit in: releases/specs/s390/s390x/, tools/, releases/specs/s390/s390/

2022-11-19 Thread Andreas K. Hüttel
commit: 970421b7643f0aa97332980b89ae2a4ea7be28dd
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov 19 13:58:38 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov 19 13:58:38 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=970421b7

Add s390* systemd merged-usr build

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 releases/specs/s390/s390/stage1-systemd-mu.spec  | 12 
 releases/specs/s390/s390/stage3-systemd-mu.spec  | 10 ++
 releases/specs/s390/s390x/stage1-systemd-mu.spec | 12 
 releases/specs/s390/s390x/stage3-systemd-mu.spec | 10 ++
 tools/catalyst-auto-s390.conf|  7 ++-
 tools/catalyst-auto-s390x.conf   |  7 ++-
 6 files changed, 56 insertions(+), 2 deletions(-)

diff --git a/releases/specs/s390/s390/stage1-systemd-mu.spec 
b/releases/specs/s390/s390/stage1-systemd-mu.spec
new file mode 100644
index ..0b62a1bd
--- /dev/null
+++ b/releases/specs/s390/s390/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: s390
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage1
+rel_type: default
+profile: default/linux/s390/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-s390-systemd-mergedusr-latest
+update_seed: no
+update_seed_command: --update --deep --newuse @world
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+pkgcache_path: /var/tmp/catalyst/packages/default/stage1-s390

diff --git a/releases/specs/s390/s390/stage3-systemd-mu.spec 
b/releases/specs/s390/s390/stage3-systemd-mu.spec
new file mode 100644
index ..db66c07c
--- /dev/null
+++ b/releases/specs/s390/s390/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: s390
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage3
+rel_type: default
+profile: default/linux/s390/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-s390-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+pkgcache_path: /var/tmp/catalyst/packages/default/stage3-s390

diff --git a/releases/specs/s390/s390x/stage1-systemd-mu.spec 
b/releases/specs/s390/s390x/stage1-systemd-mu.spec
new file mode 100644
index ..b989e248
--- /dev/null
+++ b/releases/specs/s390/s390x/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: s390x
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage1
+rel_type: default
+profile: default/linux/s390/17.0/s390x/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-s390x-systemd-mergedusr-latest
+update_seed: no
+update_seed_command: --update --deep --newuse @world
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+pkgcache_path: /var/tmp/catalyst/packages/default/stage1-s390x

diff --git a/releases/specs/s390/s390x/stage3-systemd-mu.spec 
b/releases/specs/s390/s390x/stage3-systemd-mu.spec
new file mode 100644
index ..a89557b4
--- /dev/null
+++ b/releases/specs/s390/s390x/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: s390x
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage3
+rel_type: default
+profile: default/linux/s390/17.0/s390x/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-s390x-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+pkgcache_path: /var/tmp/catalyst/packages/default/stage3-s390x

diff --git a/tools/catalyst-auto-s390.conf b/tools/catalyst-auto-s390.conf
index 13810624..21336ad8 100644
--- a/tools/catalyst-auto-s390.conf
+++ b/tools/catalyst-auto-s390.conf
@@ -6,13 +6,15 @@ UPLOAD_KEY=/root/.ssh/id_rsa
 SPECS_DIR=${REPO_DIR}/releases/specs/s390/s390
 SUBARCH=s390
 
-SETS="openrc systemd"
+SETS="openrc systemd systemd_mu"
 
 SET_openrc_SPECS="stage1-openrc.spec stage3-openrc.spec"
 SET_openrc_OPTIONAL_SPECS="netboot/netboot.spec"
 
 SET_systemd_SPECS="stage1-systemd.spec stage3-systemd.spec"
 
+SET_systemd_mu_SPECS="stage1-systemd-mu.spec stage3-systemd-mu.spec"
+
 KCONFIG_DIR=${REPO_DIR}/releases/kconfig/s390
 
 update_symlinks() {
@@ -45,6 +47,9 @@ post_build() {
stage3-systemd.spec)
upload stage3-${SUBARCH}-systemd-${TIMESTAMP}.tar.xz*
;;
+   stage3-systemd-mu.spec)
+   upload stage3-${SUBARCH}-systemd-mergedusr-${TIMESTAMP}.tar.xz*
+   ;;
*)
echo "Finished ${spec}"
;;

diff --git a/tools/catalyst-auto-s390x.conf b/tools/catalyst-auto-s390x.conf
index a49156a5..62042a7b 100644
--- a/tools/catalyst-auto-s390x.conf
+++ b/tools/catalyst-auto-s390x.conf
@@ -6,13 +6,15 @@ UPLOAD_KEY=/root/.ssh/id_rsa
 SPECS_DIR=${REPO_DIR}/releases/specs/s390/s390x
 SUBARCH=s390x
 
-SETS="openrc systemd"
+SETS="openrc systemd systemd_mu"
 
 SET_openrc_SPECS="stage1-openrc.spec stage3-openrc.spec"
 SET_openrc_OPTIONAL_SPECS="netboot/netboot.spec"
 
 

[gentoo-commits] proj/pkgcore/snakeoil:master commit in: src/snakeoil/

2022-11-19 Thread Arthur Zamarin
commit: 0ea0ab6271538227f8ca8a1e545b16183e93d122
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 13:57:21 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 13:57:21 2022 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=0ea0ab62

start work on 0.10.4

Signed-off-by: Arthur Zamarin  gentoo.org>

 src/snakeoil/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/snakeoil/__init__.py b/src/snakeoil/__init__.py
index 1780dada..636d6636 100644
--- a/src/snakeoil/__init__.py
+++ b/src/snakeoil/__init__.py
@@ -11,4 +11,4 @@ This library is a bit of a grabbag of the following:
 """
 
 __title__ = 'snakeoil'
-__version__ = '0.10.3'
+__version__ = '0.10.4'



[gentoo-commits] proj/pkgcore/pkgcheck:master commit in: src/pkgcheck/scripts/, tests/scripts/

2022-11-19 Thread Arthur Zamarin
commit: d77990efa1b8a2151471e8e112b36b048b25ea54
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 13:55:47 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 13:55:47 2022 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=d77990ef

scan: add support for NOCOLOR to disable colors

Signed-off-by: Arthur Zamarin  gentoo.org>

 src/pkgcheck/scripts/pkgcheck_scan.py |  3 +++
 tests/scripts/test_pkgcheck_scan.py   | 15 +++
 2 files changed, 18 insertions(+)

diff --git a/src/pkgcheck/scripts/pkgcheck_scan.py 
b/src/pkgcheck/scripts/pkgcheck_scan.py
index c6300b5b..e5227bbf 100644
--- a/src/pkgcheck/scripts/pkgcheck_scan.py
+++ b/src/pkgcheck/scripts/pkgcheck_scan.py
@@ -342,6 +342,9 @@ def _setup_scan(parser, namespace, args):
 # load repo-specific args from config if they exist
 namespace = config_parser.parse_config_sections(namespace, 
namespace.target_repo.aliases)
 
+if os.getenv('NOCOLOR'):
+namespace.color = False
+
 return namespace, args
 
 

diff --git a/tests/scripts/test_pkgcheck_scan.py 
b/tests/scripts/test_pkgcheck_scan.py
index 8b8113e7..6c1600f8 100644
--- a/tests/scripts/test_pkgcheck_scan.py
+++ b/tests/scripts/test_pkgcheck_scan.py
@@ -264,6 +264,21 @@ class TestPkgcheckScanParseArgs:
 assert options.jobs == expected_jobs
 assert options.tasks == 5 * expected_jobs
 
+def test_no_color(self, parser, tmp_path):
+(config_file := tmp_path / 'config').write_text(textwrap.dedent('''\
+[DEFAULT]
+color = true
+'''))
+
+args = ('scan', '--config', str(config_file))
+assert parser.parse_args(args).color is True
+with os_environ(NOCOLOR='1'):
+# NOCOLOR overrides config file
+assert parser.parse_args(args).color is False
+# cmd line option overrides NOCOLOR
+assert parser.parse_args([*args, '--color', 'n']).color is False
+assert parser.parse_args([*args, '--color', 'y']).color is True
+
 
 class TestPkgcheckScanParseConfigArgs:
 



[gentoo-commits] repo/proj/guru:dev commit in: media-sound/qloud/

2022-11-19 Thread Sergey Alirzaev
commit: bec3c0bb5f6ade91dc6ca90954061b06c832101a
Author: Sergey Alirzaev  riseup  net>
AuthorDate: Sat Nov 19 13:54:39 2022 +
Commit: Sergey Alirzaev  gmail  com>
CommitDate: Sat Nov 19 13:54:39 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bec3c0bb

media-sound/qloud: new package, add 1.4.2

Signed-off-by: Sergey Alirzaev  riseup.net>

 media-sound/qloud/Manifest   |  1 +
 media-sound/qloud/metadata.xml   |  7 
 media-sound/qloud/qloud-1.4.2.ebuild | 69 
 3 files changed, 77 insertions(+)

diff --git a/media-sound/qloud/Manifest b/media-sound/qloud/Manifest
new file mode 100644
index 0..28b39ac54
--- /dev/null
+++ b/media-sound/qloud/Manifest
@@ -0,0 +1 @@
+DIST qloud-1.4.2.tar.gz 49992 BLAKE2B 
b8a4b0d27a3b2d2a0037418bf5f8c4dc8cad28c60c4b73dbafee1547ef783bf6eb7bb6c40c0d0b5d8ac03bb4ee45f1fde1845f1bb6036370b970be716c2ebe44
 SHA512 
6c402f11850a663aed8f9688065d0d42da75774011d34184aa61db40a8d8e173eab99afe179a9860ef35a8d54c1f51ad9db085bf77bee02f9e9538086764be20

diff --git a/media-sound/qloud/metadata.xml b/media-sound/qloud/metadata.xml
new file mode 100644
index 0..181e8922d
--- /dev/null
+++ b/media-sound/qloud/metadata.xml
@@ -0,0 +1,7 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   molke-productions/qloud
+   
+

diff --git a/media-sound/qloud/qloud-1.4.2.ebuild 
b/media-sound/qloud/qloud-1.4.2.ebuild
new file mode 100644
index 0..db3f39bce
--- /dev/null
+++ b/media-sound/qloud/qloud-1.4.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit qmake-utils
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/molke-productions/${PN};
+fi
+
+DESCRIPTION="Tool to measure loudspeaker frequency and step responses and 
distortions"
+HOMEPAGE="https://github.com/molke-productions/qloud;
+
+if [[ "${PV}" != "" ]]; then
+   
SRC_URI="https://github.com/molke-productions/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+else
+   SRC_URI=""
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RESTRICT="test"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+"
+## x11-libs/qwt:6 to be removed in the near future
+RDEPEND="
+   dev-qt/qtcharts:5
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   media-libs/libsndfile
+   sci-libs/fftw:3.0
+   virtual/jack
+
+   x11-libs/qwt:6
+"
+DEPEND="${RDEPEND}
+"
+
+src_prepare() {
+   default
+
+   sed -e "s!/usr/local!/usr!" \
+   -i config.pri || die
+
+   sed -e "s!/usr/include/qwt!/usr/include/qwt6!" \
+   -i src/src.pro || die
+
+   sed -e "s!-lqwt!-lqwt6-qt5!" \
+   -i src/src.pro || die
+}
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   emake INSTALL_ROOT="${D}" install
+}



[gentoo-commits] proj/releng:master commit in: tools/, releases/specs-qemu/riscv/

2022-11-19 Thread Andreas K. Hüttel
commit: a137292167e79a115d46d038a4fcdd6a43639765
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov 19 13:50:07 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov 19 13:50:07 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=a1372921

Add riscv systemd merged-usr build

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 releases/specs-qemu/riscv/stage1-lp64-systemd-mu.spec | 15 +++
 releases/specs-qemu/riscv/stage1-lp64d-systemd-mu.spec| 15 +++
 releases/specs-qemu/riscv/stage1-multilib-systemd-mu.spec | 15 +++
 releases/specs-qemu/riscv/stage3-lp64-systemd-mu.spec | 13 +
 releases/specs-qemu/riscv/stage3-lp64d-systemd-mu.spec| 13 +
 releases/specs-qemu/riscv/stage3-multilib-systemd-mu.spec | 13 +
 tools/catalyst-auto-qemu-riscv.conf   | 10 +-
 7 files changed, 93 insertions(+), 1 deletion(-)

diff --git a/releases/specs-qemu/riscv/stage1-lp64-systemd-mu.spec 
b/releases/specs-qemu/riscv/stage1-lp64-systemd-mu.spec
new file mode 100644
index ..18643b3e
--- /dev/null
+++ b/releases/specs-qemu/riscv/stage1-lp64-systemd-mu.spec
@@ -0,0 +1,15 @@
+subarch: rv64_lp64
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+cflags: -O2 -pipe
+interpreter: /usr/bin/qemu-riscv64
+rel_type: default
+profile: default/linux/riscv/20.0/rv64gc/lp64/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-rv64_lp64-systemd-mergedusr-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/riscv/stage1-lp64d-systemd-mu.spec 
b/releases/specs-qemu/riscv/stage1-lp64d-systemd-mu.spec
new file mode 100644
index ..e67bf0a5
--- /dev/null
+++ b/releases/specs-qemu/riscv/stage1-lp64d-systemd-mu.spec
@@ -0,0 +1,15 @@
+subarch: rv64_lp64d
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+cflags: -O2 -pipe
+interpreter: /usr/bin/qemu-riscv64
+rel_type: default
+profile: default/linux/riscv/20.0/rv64gc/lp64d/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-rv64_lp64d-systemd-mergedusr-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/riscv/stage1-multilib-systemd-mu.spec 
b/releases/specs-qemu/riscv/stage1-multilib-systemd-mu.spec
new file mode 100644
index ..98d262ce
--- /dev/null
+++ b/releases/specs-qemu/riscv/stage1-multilib-systemd-mu.spec
@@ -0,0 +1,15 @@
+subarch: rv64_multilib
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+cflags: -O2 -pipe
+interpreter: /usr/bin/qemu-riscv64 /usr/bin/qemu-riscv32
+rel_type: default
+profile: default/linux/riscv/20.0/rv64gc/multilib/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-rv64_multilib-systemd-mergedusr-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/riscv/stage3-lp64-systemd-mu.spec 
b/releases/specs-qemu/riscv/stage3-lp64-systemd-mu.spec
new file mode 100644
index ..f171832f
--- /dev/null
+++ b/releases/specs-qemu/riscv/stage3-lp64-systemd-mu.spec
@@ -0,0 +1,13 @@
+subarch: rv64_lp64
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+cflags: -O2 -pipe
+interpreter: /usr/bin/qemu-riscv64
+rel_type: default
+profile: default/linux/riscv/20.0/rv64gc/lp64/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-rv64_lp64-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/riscv/stage3-lp64d-systemd-mu.spec 
b/releases/specs-qemu/riscv/stage3-lp64d-systemd-mu.spec
new file mode 100644
index ..5be7e53b
--- /dev/null
+++ b/releases/specs-qemu/riscv/stage3-lp64d-systemd-mu.spec
@@ -0,0 +1,13 @@
+subarch: rv64_lp64d
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+cflags: -O2 -pipe
+interpreter: /usr/bin/qemu-riscv64
+rel_type: default
+profile: default/linux/riscv/20.0/rv64gc/lp64d/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-rv64_lp64d-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/riscv/stage3-multilib-systemd-mu.spec 
b/releases/specs-qemu/riscv/stage3-multilib-systemd-mu.spec
new file mode 100644
index ..4b784d51
--- /dev/null
+++ 

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

2022-11-19 Thread Michał Górny
commit: 24b82cb19719911543091d5e192846b8158751b9
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Nov 19 13:42:57 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Nov 19 13:45:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24b82cb1

package.mask: Last rite multiple maintainer-needed packages

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

 profiles/base/package.use.mask |  2 ++
 profiles/package.mask  | 34 ++
 2 files changed, 36 insertions(+)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 2cbd0ba04485..26b5e4a1cb92 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -8,6 +8,8 @@
 
 # Michał Górny  (2022-11-19)
 # Requires packages masked for removal.
+mail-mta/netqmail authcram
+mail-mta/notqmail authcram
 media-plugins/gst-plugins-meta libvisual
 
 # Michał Górny  (2022-11-17)

diff --git a/profiles/package.mask b/profiles/package.mask
index c5d42659c3ab..142a48033ed0 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,40 @@
 
 #--- END OF EXAMPLES ---
 
+# Michał Górny  (2022-11-19)
+# Packages with no maintainer and major bugs reported.  They are either
+# inactive upstream, or have not been bumped for a long time.
+#
+# app-emulation/aqemu: bug #806421, last bumped in 2016
+# app-forensics/ovaldi: revdep of dev-libs/xalan-c, last bumped in 2017
+# app-misc/glimpse: bug #684096, last bumped in 2013
+# dev-db/cpp-driver: bug #685936, last bumped in 2019
+# dev-erlang/riakc: bug #722688, last bumped in 2016
+# dev-libs/xalan-c: bug #734190, last bumped in 2011
+# dev-util/stubgen: bug #839927, last bumped in 2011
+# media-gfx/xzgv: bug #831252, last bumped in 2009
+# net-dns/dnssec-check: bug #571350, last bumped in 2016
+# net-mail/cmd5checkpw: bug #833292, last bumped in 2005
+# net-ftp/gproftpd: bug #550524, last bumped in 2007
+# sys-apps/intel-performance-counter-monitor: bug #728564,
+# last bumped in 2016
+#
+# Removal on 2022-12-19.
+acct-group/cmd5checkpw
+acct-user/cmd5checkpw
+app-emulation/aqemu
+app-forensics/ovaldi
+app-misc/glimpse
+dev-db/cpp-driver
+dev-erlang/riakc
+dev-libs/xalan-c
+dev-util/stubgen
+media-gfx/xzgv
+net-dns/dnssec-check
+net-mail/cmd5checkpw
+net-ftp/gproftpd
+sys-apps/intel-performance-counter-monitor
+
 # Michał Górny  (2022-11-19)
 # Packages with reported failures and no maintainer activity.
 #



[gentoo-commits] proj/releng:master commit in: releases/specs/ppc/ppc32/, releases/specs/ppc/ppc64le/, tools/, ...

2022-11-19 Thread Andreas K. Hüttel
commit: 96ddfd3126511f34279732c1d96883f70c51d83f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Nov 19 13:37:12 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Nov 19 13:37:12 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=96ddfd31

Add ppc* systemd merged-usr build

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 releases/specs/ppc/ppc32/stage1-systemd-mu.spec   | 12 
 releases/specs/ppc/ppc32/stage3-systemd-mu.spec   | 10 ++
 releases/specs/ppc/ppc64/stage1-systemd-mu.spec   | 12 
 releases/specs/ppc/ppc64/stage3-systemd-mu.spec   | 10 ++
 releases/specs/ppc/ppc64le/stage1-systemd-mu.spec | 12 
 releases/specs/ppc/ppc64le/stage3-systemd-mu.spec | 10 ++
 tools/catalyst-auto-ppc.conf  |  8 
 tools/catalyst-auto-ppc64le.conf  |  4 
 8 files changed, 78 insertions(+)

diff --git a/releases/specs/ppc/ppc32/stage1-systemd-mu.spec 
b/releases/specs/ppc/ppc32/stage1-systemd-mu.spec
new file mode 100644
index ..79c9a23a
--- /dev/null
+++ b/releases/specs/ppc/ppc32/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: ppc
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/ppc/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-ppc-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world --jobs 8 --load-average 12
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/ppc/ppc32/stage3-systemd-mu.spec 
b/releases/specs/ppc/ppc32/stage3-systemd-mu.spec
new file mode 100644
index ..7435b726
--- /dev/null
+++ b/releases/specs/ppc/ppc32/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: ppc
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/ppc/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-ppc-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/ppc/ppc64/stage1-systemd-mu.spec 
b/releases/specs/ppc/ppc64/stage1-systemd-mu.spec
new file mode 100644
index ..e84e07d9
--- /dev/null
+++ b/releases/specs/ppc/ppc64/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: ppc64
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/ppc64/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-ppc64-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world --jobs 8 --load-average 12
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/ppc/ppc64/stage3-systemd-mu.spec 
b/releases/specs/ppc/ppc64/stage3-systemd-mu.spec
new file mode 100644
index ..fb62dd12
--- /dev/null
+++ b/releases/specs/ppc/ppc64/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: ppc64
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/ppc64/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-ppc64-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/ppc/ppc64le/stage1-systemd-mu.spec 
b/releases/specs/ppc/ppc64le/stage1-systemd-mu.spec
new file mode 100644
index ..7d5042c3
--- /dev/null
+++ b/releases/specs/ppc/ppc64le/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: ppc64le
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/ppc64le/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-ppc64le-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world --jobs 8 --load-average 12
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/ppc/ppc64le/stage3-systemd-mu.spec 
b/releases/specs/ppc/ppc64le/stage3-systemd-mu.spec
new file mode 100644
index ..9b531048
--- /dev/null
+++ b/releases/specs/ppc/ppc64le/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: ppc64le
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+rel_type: default
+profile: default/linux/ppc64le/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-ppc64le-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf
index a4ce6e78..46814162 100644
--- a/tools/catalyst-auto-ppc.conf
+++ b/tools/catalyst-auto-ppc.conf
@@ -12,8 +12,10 @@ SPECS="ppc32/stage1-openrc.spec 

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

2022-11-19 Thread Arthur Zamarin
commit: 84abfe2f73440439a739a18fdefc7500c4bb44fc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Nov 19 13:35:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Nov 19 13:35:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84abfe2f

dev-python/sqlalchemy: Stabilize 1.4.43 hppa, #881945

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
index 4ec8548643d1..44cc7e704a44 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.4.43.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="examples +sqlite test"
 
 BDEPEND="



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

2022-11-19 Thread Ionen Wolkens
commit: 3e04cd1d625dfb089cc4b349463243996c9a8ce8
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Nov 19 10:19:14 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Nov 19 13:27:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e04cd1d

media-video/mpv: enable drm and libmpv by default

Low footprint options, realistically everyone has libdrm unless this
is an headless machine or put mesa in package.provided and going
nvidia+libglvnd-only. Being disabled can also give unexpected results
with e.g. vaapi.

And libmpv is just an annoyance to enable for any users of frontends.
Could even consider removing the option (forced on), which would also
simplify the -Dgl logic, but I'll leave that alone at least for now.

Signed-off-by: Ionen Wolkens  gentoo.org>

 media-video/mpv/mpv-0.35.0.ebuild | 4 ++--
 media-video/mpv/mpv-.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-video/mpv/mpv-0.35.0.ebuild 
b/media-video/mpv/mpv-0.35.0.ebuild
index 80c072d09d63..39a550fa8790 100644
--- a/media-video/mpv/mpv-0.35.0.ebuild
+++ b/media-video/mpv/mpv-0.35.0.ebuild
@@ -21,8 +21,8 @@ HOMEPAGE="https://mpv.io/;
 LICENSE="LGPL-2.1+ GPL-2+ BSD ISC MIT" #506946
 SLOT="0/2" # soname
 IUSE="
-   +X +alsa aqua archive bluray cdda +cli coreaudio debug drm dvb
-   dvd +egl gamepad +iconv jack javascript jpeg lcms libcaca libmpv
+   +X +alsa aqua archive bluray cdda +cli coreaudio debug +drm dvb
+   dvd +egl gamepad +iconv jack javascript jpeg lcms libcaca +libmpv
+libplacebo +lua mmal nvenc openal opengl pipewire pulseaudio
raspberry-pi rubberband sdl selinux sndio test tools +uchardet
vaapi vdpau vulkan wayland +xv zimg zlib"

diff --git a/media-video/mpv/mpv-.ebuild b/media-video/mpv/mpv-.ebuild
index 80c072d09d63..39a550fa8790 100644
--- a/media-video/mpv/mpv-.ebuild
+++ b/media-video/mpv/mpv-.ebuild
@@ -21,8 +21,8 @@ HOMEPAGE="https://mpv.io/;
 LICENSE="LGPL-2.1+ GPL-2+ BSD ISC MIT" #506946
 SLOT="0/2" # soname
 IUSE="
-   +X +alsa aqua archive bluray cdda +cli coreaudio debug drm dvb
-   dvd +egl gamepad +iconv jack javascript jpeg lcms libcaca libmpv
+   +X +alsa aqua archive bluray cdda +cli coreaudio debug +drm dvb
+   dvd +egl gamepad +iconv jack javascript jpeg lcms libcaca +libmpv
+libplacebo +lua mmal nvenc openal opengl pipewire pulseaudio
raspberry-pi rubberband sdl selinux sndio test tools +uchardet
vaapi vdpau vulkan wayland +xv zimg zlib"



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

2022-11-19 Thread Ionen Wolkens
commit: cb71aa119edf9cf8c31a7be6d81d882c5274ffa0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Nov 19 13:15:06 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Nov 19 13:21:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb71aa11

media-sound/lingot: inherit xdg

Signed-off-by: Ionen Wolkens  gentoo.org>

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

diff --git a/media-sound/lingot/lingot-1.1.1.ebuild 
b/media-sound/lingot/lingot-1.1.1.ebuild
index 4c27784dea9a..50150787ae07 100644
--- a/media-sound/lingot/lingot-1.1.1.ebuild
+++ b/media-sound/lingot/lingot-1.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools
+inherit autotools xdg
 
 DESCRIPTION="Accurate, easy to use, and highly configurable musical instrument 
tuner"
 HOMEPAGE="https://www.nongnu.org/lingot/;



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

2022-11-19 Thread Ionen Wolkens
commit: 54be7857a5d9819e46f4f15510b690474296fec6
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Nov 19 13:27:01 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Nov 19 13:27:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54be7857

media-sound/lingot: add savannah-nongnu upstream metadata

Signed-off-by: Ionen Wolkens  gentoo.org>

 media-sound/lingot/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/media-sound/lingot/metadata.xml b/media-sound/lingot/metadata.xml
index ae636e378c5b..d82c576c2896 100644
--- a/media-sound/lingot/metadata.xml
+++ b/media-sound/lingot/metadata.xml
@@ -13,4 +13,7 @@
proxy-ma...@gentoo.org
Proxy Maintainers

+   
+   lingot
+   
 



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

2022-11-19 Thread Ionen Wolkens
commit: 278abd450e33a7e4d4bb29397b07a0ac680d1a07
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Nov 19 12:48:13 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Nov 19 13:21:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=278abd45

media-sound/lingot: add 1.1.1, un-lastrite

Signed-off-by: Alexey Sokolov  asokolov.org>
Closes: https://bugs.gentoo.org/699808
Closes: https://github.com/gentoo/gentoo/pull/28337
Signed-off-by: Ionen Wolkens  gentoo.org>

 media-sound/lingot/Manifest|  1 +
 .../lingot/files/lingot-1.1.1-desktop-icon.patch   | 11 
 media-sound/lingot/lingot-1.1.1.ebuild | 60 ++
 media-sound/lingot/metadata.xml|  8 +++
 profiles/package.mask  |  2 -
 5 files changed, 80 insertions(+), 2 deletions(-)

diff --git a/media-sound/lingot/Manifest b/media-sound/lingot/Manifest
index 196a07fdc813..22d79737735d 100644
--- a/media-sound/lingot/Manifest
+++ b/media-sound/lingot/Manifest
@@ -1 +1,2 @@
 DIST lingot-1.0.1.tar.gz 510112 BLAKE2B 
a04ef52cc70dba8af54746419190eedc2f2512120e3c1e8576dab0d6dd20c3470a6f857fd751ed4bcf8e291a993ff1f8fa7b0264a24957dcfab0efd9684ef3ba
 SHA512 
98182721ef68411485b3f2faccbf315f340e549dd7cce0fdfaacab7c34fb708c98eda9b96da00701f1987becefced3a7587ffaaad77d6ef86046fb8c9f5f1cb5
+DIST lingot-1.1.1.tar.gz 727028 BLAKE2B 
c681fcd72f67ae20e49f0229aa9791eace1f65cb596c60e52cff7805bc70d6d418cd87c96629306163756db81236ad31b6c8fe78b7ee401d155f8f81dda4f334
 SHA512 
71ee6b992a8f9cfe4a90d7cd8ba0098512857d65d773d3d5ec26aeeaa104ee812051b9d6b86c5e6462d1032bf03d7e6120aecd60ca8758fdf96c37f2d7ceacc7

diff --git a/media-sound/lingot/files/lingot-1.1.1-desktop-icon.patch 
b/media-sound/lingot/files/lingot-1.1.1-desktop-icon.patch
new file mode 100644
index ..c378bfb6e81a
--- /dev/null
+++ b/media-sound/lingot/files/lingot-1.1.1-desktop-icon.patch
@@ -0,0 +1,11 @@
+--- a/org.nongnu.lingot.desktop
 b/org.nongnu.lingot.desktop
+@@ -7,7 +7,7 @@ Comment=LINGOT Is Not a Guitar-Only Tuner
+ Comment[cs]=(Nejen kytarová) ladička
+ Comment[fr]=Un accordeur de guitare, mais pas que
+ Exec=lingot
+-Icon=org.nongnu.lingot.svg
++Icon=org.nongnu.lingot
+ Terminal=false
+ Type=Application
+ Categories=GNOME;GTK;AudioVideo;

diff --git a/media-sound/lingot/lingot-1.1.1.ebuild 
b/media-sound/lingot/lingot-1.1.1.ebuild
new file mode 100644
index ..4c27784dea9a
--- /dev/null
+++ b/media-sound/lingot/lingot-1.1.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Accurate, easy to use, and highly configurable musical instrument 
tuner"
+HOMEPAGE="https://www.nongnu.org/lingot/;
+SRC_URI="https://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="alsa +fftw jack pulseaudio test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="test? ( pulseaudio )"
+
+RDEPEND="
+   dev-libs/glib:2
+   dev-libs/json-c:=
+   x11-libs/cairo
+   x11-libs/gtk+:3
+   alsa? ( media-libs/alsa-lib )
+   fftw? ( sci-libs/fftw:3.0= )
+   jack? ( virtual/jack )
+   pulseaudio? ( media-libs/libpulse )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-util/cunit )
+"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}"/${P}-desktop-icon.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   local myemakeargs=(
+   $(use_with alsa)
+   $(use_with fftw)
+   $(use_with jack)
+   $(use_with pulseaudio)
+   $(use_with test cunit)
+   )
+
+   econf "${myemakeargs[@]}"
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git a/media-sound/lingot/metadata.xml b/media-sound/lingot/metadata.xml
index 93423219a5bc..ae636e378c5b 100644
--- a/media-sound/lingot/metadata.xml
+++ b/media-sound/lingot/metadata.xml
@@ -5,4 +5,12 @@
so...@gentoo.org
Gentoo Sound project

+   
+   alexey+gen...@asokolov.org
+   Alexey Sokolov
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
 

diff --git a/profiles/package.mask b/profiles/package.mask
index d7c37b3564d7..c5d42659c3ab 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -36,7 +36,6 @@
 # Michał Górny  (2022-11-19)
 # Packages with reported failures and no maintainer activity.
 #
-# media-sound/lingot: bug #699808, last bumped in 2018
 # media-sound/retrovol: bug #624136, last bumped in 2013, homepage dead
 # media-sound/umix: bug #726076, last release in 2003 (!)
 # media-libs/libvisual*: bug #840514, last bumped in 2006
@@ -46,7 +45,6 @@ media-libs/libvisual
 

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

2022-11-19 Thread Ben Kohler
commit: d724d9640eaf6bf37fcba686ca12905a8f1a13a3
Author: Ben Kohler  gentoo  org>
AuthorDate: Sat Nov 19 13:07:30 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Sat Nov 19 13:07:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d724d964

net-wireless/iwd: add 2.0

Signed-off-by: Ben Kohler  gentoo.org>

 net-wireless/iwd/Manifest   |   1 +
 net-wireless/iwd/iwd-2.0.ebuild | 183 
 2 files changed, 184 insertions(+)

diff --git a/net-wireless/iwd/Manifest b/net-wireless/iwd/Manifest
index f93a058875ad..1e65800046fd 100644
--- a/net-wireless/iwd/Manifest
+++ b/net-wireless/iwd/Manifest
@@ -1 +1,2 @@
 DIST iwd-1.30.tar.xz 1026436 BLAKE2B 
02382181d8e40d0d88c6c752c480db1036142c91b2547499456763bb9c157c7113f9c496d5dd0ae688110fab251e7f99374ea560450a12701e5d72ec7eae784c
 SHA512 
8cf705bd6cf2c69bb6fef0274f3a59f64e7a88071bf97fe3f291ebe523d38f1381299918370d7017b4e635fd1907005c530e8e693eff94d99ac5b89aebf9f815
+DIST iwd-2.0.tar.xz 1056120 BLAKE2B 
ec9bb9968640f2b27571824db068596bc06f383898a96b478eb09488b1d981f198b7204ef8fabbe3c17d6450a138166288b6f55b843ee3ad90b121da4d07edd0
 SHA512 
2939acf7fc6f8a2c93115dac04d700a9983ce6ad61687b64fac1cfff9d24b7c162751388b8b403e4280686072c7e1556c993205757cd99b0cc8b849dbf2e3478

diff --git a/net-wireless/iwd/iwd-2.0.ebuild b/net-wireless/iwd/iwd-2.0.ebuild
new file mode 100644
index ..ae3fdd0285d5
--- /dev/null
+++ b/net-wireless/iwd/iwd-2.0.ebuild
@@ -0,0 +1,183 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit flag-o-matic linux-info systemd
+
+#Set this variable to the required external ell version
+ELL_REQ="0.54"
+
+if [[ ${PV} == ** ]]; then
+   inherit autotools git-r3
+   
IWD_EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git;
+   ELL_EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git;
+else
+   SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+   MYRST2MAN="RST2MAN=:"
+fi
+
+DESCRIPTION="Wireless daemon for linux"
+HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda +monitor ofono 
standalone systemd wired"
+
+DEPEND="
+   sys-apps/dbus
+   client? ( sys-libs/readline:0= )
+"
+
+[[ -z "${ELL_REQ}" ]] || DEPEND+=" ~dev-libs/ell-${ELL_REQ}"
+
+RDEPEND="
+   ${DEPEND}
+   acct-group/netdev
+   net-wireless/wireless-regdb
+   crda? ( net-wireless/crda )
+   standalone? (
+   systemd? ( sys-apps/systemd )
+   !systemd? ( virtual/resolvconf )
+   )
+"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+
+[[ ${PV} == ** ]] && BDEPEND+=" dev-python/docutils"
+
+pkg_setup() {
+   CONFIG_CHECK="
+   ~ASYMMETRIC_KEY_TYPE
+   ~ASYMMETRIC_PUBLIC_KEY_SUBTYPE
+   ~CFG80211
+   ~CRYPTO_AES
+   ~CRYPTO_CBC
+   ~CRYPTO_CMAC
+   ~CRYPTO_DES
+   ~CRYPTO_ECB
+   ~CRYPTO_HMAC
+   ~CRYPTO_MD4
+   ~CRYPTO_MD5
+   ~CRYPTO_RSA
+   ~CRYPTO_SHA1
+   ~CRYPTO_SHA256
+   ~CRYPTO_SHA512
+   ~CRYPTO_USER_API_HASH
+   ~CRYPTO_USER_API_SKCIPHER
+   ~KEY_DH_OPERATIONS
+   ~PKCS7_MESSAGE_PARSER
+   ~RFKILL
+   ~X509_CERTIFICATE_PARSER
+   "
+   if use crda;then
+   CONFIG_CHECK="${CONFIG_CHECK} ~CFG80211_CRDA_SUPPORT"
+   WARNING_CFG80211_CRDA_SUPPORT="REGULATORY DOMAIN PROBLEM: 
please enable CFG80211_CRDA_SUPPORT for proper regulatory domain support"
+   fi
+
+   if use amd64;then
+   CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_DES3_EDE_X86_64"
+   WARNING_CRYPTO_DES3_EDE_X86_64="CRYPTO_DES3_EDE_X86_64: enable 
for increased performance"
+   fi
+
+   if use cpu_flags_x86_aes;then
+   CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_AES_NI_INTEL"
+   WARNING_CRYPTO_AES_NI_INTEL="CRYPTO_AES_NI_INTEL: enable for 
increased performance"
+   fi
+
+   if use cpu_flags_x86_ssse3 && use amd64; then
+   CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SHA1_SSSE3 
~CRYPTO_SHA256_SSSE3 ~CRYPTO_SHA512_SSSE3"
+   WARNING_CRYPTO_SHA1_SSSE3="CRYPTO_SHA1_SSSE3: enable for 
increased performance"
+   WARNING_CRYPTO_SHA256_SSSE3="CRYPTO_SHA256_SSSE3: enable for 
increased performance"
+   WARNING_CRYPTO_SHA512_SSSE3="CRYPTO_SHA512_SSSE3: enable for 
increased performance"
+   fi
+
+   if use kernel_linux && kernel_is -ge 4 20; then
+   CONFIG_CHECK="${CONFIG_CHECK} ~PKCS8_PRIVATE_KEY_PARSER"
+   fi
+
+   check_extra_config
+
+   

<    1   2   3   4   5   >