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

2023-02-16 Thread Sam James
commit: 9b955a2693fe679b03005128867525f4b8363a22
Author: Kerin Millar  plushkava  net>
AuthorDate: Fri Feb 17 04:45:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:38:33 2023 +
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=9b955a26

Only join the positional parameters where necessary in _eend()

Also, don't join them twice.

Signed-off-by: Kerin Millar  plushkava.net>
Signed-off-by: Sam James  gentoo.org>

 functions.sh | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/functions.sh b/functions.sh
index 816acf4..01f2972 100644
--- a/functions.sh
+++ b/functions.sh
@@ -237,8 +237,11 @@ _eend()
 
if [ "${retval}" -ne 0 ]; then
# If a message was given, print it with the specified function.
-   if _is_visible "$*"; then
-   "${efunc}" "$*"
+   if [ "$#" -gt 0 ]; then
+   msg=$*
+   if _is_visible "${msg}"; then
+   "${efunc}" "${msg}"
+   fi
fi
# Generate an indicator for ebegin's unsuccessful conclusion.
if [ "${is_tty}" -eq 0 ]; then



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

2023-02-16 Thread Sam James
commit: 1a1b2373220086a98ced0af6e43057819ab8833f
Author: Kerin Millar  plushkava  net>
AuthorDate: Fri Feb 17 03:11:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:37:00 2023 +
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=1a1b2373

Don't try to write to a variable named arg upon being sourced

The consumer should be free to use this variable for their own purposes.

Signed-off-by: Kerin Millar  plushkava.net>
Signed-off-by: Sam James  gentoo.org>

 functions.sh | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/functions.sh b/functions.sh
index 02627d2..816acf4 100644
--- a/functions.sh
+++ b/functions.sh
@@ -481,13 +481,12 @@ RC_NOCOLOR="${RC_NOCOLOR:-no}"
 # Set the initial value for e-message indentation.
 genfun_indent=
 
-for arg in "$@" ; do
-   case "${arg}" in
-   # Lastly check if the user disabled it with --nocolor argument
+for _ in "$@"; do
+   case $_ in
+   # Check whether the user specifed an argument to disable color.
--nocolor|--nocolour|-nc|-C)
RC_NOCOLOR="yes"
break
-   ;;
esac
 done
 



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

2023-02-16 Thread Sam James
commit: 0af4e76511a1235990e10d0e616a261cb6a4714f
Author: Kerin Millar  plushkava  net>
AuthorDate: Fri Feb 17 03:04:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:36:59 2023 +
URL:
https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=0af4e765

Improve the legibility of the routine that detects the number of columns

Also, mention that the use of stty size is portable as of POSIX Issue 8.

Signed-off-by: Kerin Millar  plushkava.net>
Signed-off-by: Sam James  gentoo.org>

 functions.sh | 52 
 1 file changed, 28 insertions(+), 24 deletions(-)

diff --git a/functions.sh b/functions.sh
index df72d4a..02627d2 100644
--- a/functions.sh
+++ b/functions.sh
@@ -492,32 +492,36 @@ for arg in "$@" ; do
 done
 
 # Try to determine the number of available columns in the terminal.
-# shellcheck disable=3044
-if [ -n "${BASH}" ] && shopt -s checkwinsize 2>/dev/null; then
-   # As is documented, running an external command will cause bash to set
-   # the COLUMNS variable. This technique is effective for >=4.3, though
-   # it requires for the checkwinsize shopt to be enabled. By default, it
-   # is only enabled for >=5.0.
-   /bin/true
-fi
-if is_int "${COLUMNS}" && [ "${COLUMNS}" -gt 0 ]; then
-   # The value of COLUMNS was likely set by a shell such as bash or mksh.
-   genfun_cols=${COLUMNS}
-else
-   # Try to use stty(1) to determine the number of columns. The use of the
-   # size operand is not portable.
-   genfun_cols=$(
-   stty size 2>/dev/null | {
-   if IFS=' ' read -r _ cols _; then
-   printf '%s\n' "${cols}"
+for _ in 1 2 3; do
+   case $_ in
+   1)
+   # Running an external command causes bash >=4.3 to set
+   # the COLUMNS variable, provided that the checkwinsize
+   # shopt is enabled. As of 5.0, it's enabled by default.
+   # shellcheck disable=3044
+   if [ -n "${BASH}" ] && shopt -s checkwinsize 
2>/dev/null; then
+   /bin/true
fi
-   }
-   )
-   if ! is_int "${genfun_cols}" || [ "${genfun_cols}" -le 0 ]; then
-   # Give up and assume 80 available columns.
-   genfun_cols=80
+   genfun_cols=${COLUMNS}
+   ;;
+   2)
+   # This use of stty(1) is portable as of POSIX Issue 8.
+   genfun_cols=$(
+   stty size 2>/dev/null | {
+   if IFS=' ' read -r _ cols; then
+   printf '%s\n' "${cols}"
+   fi
+   }
+   )
+   ;;
+   3)
+   # Give up and assume 80 available columns.
+   genfun_cols=80
+   esac
+   if is_int "${genfun_cols}" && [ "${genfun_cols}" -gt 0 ]; then
+   break
fi
-fi
+done
 
 # Set an ECMA-48 CSI sequence, allowing for eend to line up the [ ok ] string.
 {



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/facebook-ptp/

2023-02-16 Thread Joe Kappus
commit: 90dec87d0e2e649cc45ed3cf32684ebb12d83f38
Author: Joe Kappus  wt  gd>
AuthorDate: Fri Feb 17 07:44:00 2023 +
Commit: Joe Kappus  wt  gd>
CommitDate: Fri Feb 17 07:44:00 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90dec87d

net-misc/facebook-ptp: update upstream metadata

Signed-off-by: Joe Kappus  wt.gd>

 net-misc/facebook-ptp/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/facebook-ptp/metadata.xml 
b/net-misc/facebook-ptp/metadata.xml
index 574c64dfa..f8dbaf9d3 100644
--- a/net-misc/facebook-ptp/metadata.xml
+++ b/net-misc/facebook-ptp/metadata.xml
@@ -6,7 +6,7 @@
 Alessandro Barbieri
 
 
-https://github.com/facebookincubator/ptp/issues
-facebookincubator/ptp
+https://github.com/facebook/time/issues
+facebook/time
 
 



[gentoo-commits] repo/proj/guru:dev commit in: net-misc/facebook-ptp/

2023-02-16 Thread Joe Kappus
commit: aa09ac28b5c4d5947895f82d46e9cb80d13648ef
Author: Joe Kappus  wt  gd>
AuthorDate: Fri Feb 17 07:42:38 2023 +
Commit: Joe Kappus  wt  gd>
CommitDate: Fri Feb 17 07:42:38 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa09ac28

net-misc/facebook-ptp: update HOMEPAGE, SRC_URI

Closes: https://bugs.gentoo.org/884911
Signed-off-by: Joe Kappus  wt.gd>

 net-misc/facebook-ptp/Manifest  | 2 +-
 net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-misc/facebook-ptp/Manifest b/net-misc/facebook-ptp/Manifest
index 3236662fe..79a15d8bf 100644
--- a/net-misc/facebook-ptp/Manifest
+++ b/net-misc/facebook-ptp/Manifest
@@ -11,7 +11,7 @@ DIST cloud.google.com%2Fgo%2Ffirestore%2F@v%2Fv1.1.0.mod 568 
BLAKE2B d3d62f2d5c0
 DIST cloud.google.com%2Fgo%2Fpubsub%2F@v%2Fv1.0.1.mod 508 BLAKE2B 
9915d1d1a768852b3f262784771c8fe2e7e176e61f7d77841f8d3adac571dc141e36c6455c19090cf00a98a7a5ef0c2c887424142e2ecad339f8105b1c30f91e
 SHA512 
8a393b8614207c22c73a706ccc3e66a8a16d2f305ab95d8f70774f13d0bcb7396b0ac5095daa57ebb991225a1db08c3110f1e85c26dd72f3bbcaf73fea536d9c
 DIST cloud.google.com%2Fgo%2Fstorage%2F@v%2Fv1.0.0.mod 374 BLAKE2B 
4fef9f7da9f23e94efe43be0e279958715949a889c5d51e388f5b66ec9a7cdbf15a717c93647032998facd71359ad1dcacebcf3334100144abbfa12dac03
 SHA512 
faf4a02a513ae4c23f931b8917e74a056c528b4267ef3b5b704949283910bfc5d41fdd7264b78d4fc1f6e5b370474a7c9933a2fad36bb5c872006def71f8ed0b
 DIST 
dmitri.shuralyov.com%2Fgpu%2Fmtl%2F@v%2Fv0.0.0-20190408044501-666a987793e9.mod 
36 BLAKE2B 
b430ef9388b0dfe932b201495a00275a6036338c99160d7362556be1e25924584b0802061d193533f23b1f76719dfd6a9484572babd25f1af0e53fd9bf07ac00
 SHA512 
196affe091247f94ceda4b56629bd62d4ee2b397f2c0f56c9534c02e43531b46705ad33543b58c1a4fc7a48e25e5923db087fe0485a93966a4086581c0d1d3e1
-DIST facebook-ptp-0_pre20211123.tar.gz 92326 BLAKE2B 
6567a5193807ab945dc9ee3cf32dcd6ab6f3cac54741a77d77f6247fabed8068bfca10f740cb566559e7f5b38ac8f47cc3d1df089bae94aee90c17d44fc2cb3c
 SHA512 
fe828a9d856fb771520e9b04ed3383ef558e164388c30d3164c39d2c5ff40372e00a87a1700c6750ee03d97267f0f4d26bec9fc5ad62fcbe60ee5af105e5ab37
+DIST facebook-ptp-0_pre20211123.tar.gz 92334 BLAKE2B 
a6162b912c00132f42e3a0dfe3d9d2ac9f36a3e628008e7d7cd9ccf2a89d23a4ac16e3e4d05491b9ba3a0438c65d94ea1fa477d557409f9ccdf6982f9c11975a
 SHA512 
b241d9a589bed31c6c5c428fcc9d16b7e4e3f80124615f79bbbe0594679ab56d19f26f5f4b949a08ebdfb9198fc173c0bca4e2623269a9d508fe897b7cddd603
 DIST github.com%2F!burnt!sushi%2Ftoml%2F@v%2Fv0.3.1.mod 34 BLAKE2B 
ce54a247aef91043830bdf0603c8452ba38eceb1495af6e7a74c9119234a0dc5cd080cb25258c28f5e270acf91189a5ed33e361cbf17de2be5e37dadbda1d90d
 SHA512 
320941bc3b7fb8bc595e6135cbc513a7583d129f0cd92508055291e141191066303cf75148e25198c21f6c6c539a790ea3210f3ecf5de6a2a03b70c753091146
 DIST 
github.com%2F!burnt!sushi%2Fxgb%2F@v%2Fv0.0.0-20160522181843-27f122750802.mod 
33 BLAKE2B 
d234bf9be3dd919cb1f8d33750a24dca68c90fea110fd0ff62f0dba86d2ebbfc66d55fea62745b6383c5607bc91cfd78c9d2cf12df251397e85995c04707caa2
 SHA512 
dbfa64ac31b25fdbff12110c6f9815abfde65f281e40852e7165499a2cefb6656c74fe0b82f0f018304daa02b83b421e9c15654efabad39787c69c1b2996a79d
 DIST github.com%2F!one!of!one%2Fxxhash%2F@v%2Fv1.2.2.mod 34 BLAKE2B 
83966cb7de9bb687f99f17c5c89c03718258d2df34e3dda01b96a2fcb1273a0ba0e3253ba5950d5458193d3e54962371317a8fe85020ae338b44e864bd96667f
 SHA512 
9081c69a2480ef726f547047306dc9136211ac7550882e68d458e2c04e5343366cb08f20525a51c804ab9a554dfe8363a1d9660bc0f9e501e1d996f7b6f320e4

diff --git a/net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild 
b/net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild
index f287b63a8..3a66310ea 100644
--- a/net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild
+++ b/net-misc/facebook-ptp/facebook-ptp-0_pre20211123.ebuild
@@ -341,12 +341,12 @@ EGO_SUM=(
 go-module_set_globals
 
 DESCRIPTION="Facebook's PTP libraries"
-HOMEPAGE="https://github.com/facebookincubator/ptp;
+HOMEPAGE="https://github.com/facebook/time;
 SRC_URI="
-   https://github.com/facebookincubator/ptp/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz
+   https://github.com/facebook/time/archive/${COMMIT}.tar.gz -> ${P}.tar.gz
${EGO_SUM_SRC_URI}
 "
-S="${WORKDIR}/ptp-${COMMIT}"
+S="${WORKDIR}/time-${COMMIT}"
 
 LICENSE="Apache-2.0 BSD ISC MIT"
 SLOT="0"



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

2023-02-16 Thread Sam James
commit: 4a7c3430bb8390792a80962d3372592680ea584a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:40:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:41:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7c3430

dev-python/pyparted: enable py3.11

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

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

diff --git a/dev-python/pyparted/pyparted-3.12.0.ebuild 
b/dev-python/pyparted/pyparted-3.12.0.ebuild
index 32404cf09dbc..5eb6652a4b2c 100644
--- a/dev-python/pyparted/pyparted-3.12.0.ebuild
+++ b/dev-python/pyparted/pyparted-3.12.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1
 



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

2023-02-16 Thread Michał Górny
commit: 10ab948e4dfc480fb6895430c2a5db575bf90236
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 07:39:36 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:39:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ab948e

dev-python/python-lsp-server: Remove old

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

 dev-python/python-lsp-server/Manifest  |  2 -
 ...ython-lsp-server-1.6.0-unpin-all-the-deps.patch | 51 -
 ...ython-lsp-server-1.7.0-unpin-all-the-deps.patch | 51 -
 .../python-lsp-server-1.6.0-r1.ebuild  | 89 --
 .../python-lsp-server-1.7.0-r1.ebuild  | 89 --
 5 files changed, 282 deletions(-)

diff --git a/dev-python/python-lsp-server/Manifest 
b/dev-python/python-lsp-server/Manifest
index e5cd37ba75c4..2aa1448333c8 100644
--- a/dev-python/python-lsp-server/Manifest
+++ b/dev-python/python-lsp-server/Manifest
@@ -1,3 +1 @@
-DIST python-lsp-server-1.6.0.tar.gz 85242 BLAKE2B 
52fcca5a93035a6ec8179908b2139e9392220cad082afb4c31b18284cdd53050c68fca4bcc9d852fa9acb49200487431fec37dc840e61ab9320fd6c3a86189ee
 SHA512 
e4ab52f334fb1eece3458258ed39bf66eeb6056ed7e243be9c69ce2bac92792786df2fbc1d316133ac5523b44a57e7d89d4d6f18120c748e78ef20570a325c9b
-DIST python-lsp-server-1.7.0.tar.gz 95085 BLAKE2B 
8cce5a01588d44efbc19f8ceec67e61580835814f403d6bda4ca2f82f56dc35c85fc3176f8ebc1eea720aa92710379f87a5e98f443f71a5d16e5bfe48702da1b
 SHA512 
2ef31bdd4451b4b282469223ff5cc5799f4487d3dfc593dfc58483b939802754e0e375461723bf7a90d0fd71f945c927106c5d929621a70f83c3f30bddf68250
 DIST python-lsp-server-1.7.1.tar.gz 95731 BLAKE2B 
0cdcda04ef849cb0c5fa83f1f701e986e22fb1228112eaf355bfedc52cca4fcc5927352c71b74fa3903526d8a1fc80fa57ac3e6ee7bcc2609556c2398dd2bbb8
 SHA512 
36c90f45071f35d0aeb0a57795eb6e9fb531baf9e8b468031b0d3e9eb2d53bee439893a333c6bf5f9d5b0818ec53675a3824850abef3e866e8ebdcd4a6142c48

diff --git 
a/dev-python/python-lsp-server/files/python-lsp-server-1.6.0-unpin-all-the-deps.patch
 
b/dev-python/python-lsp-server/files/python-lsp-server-1.6.0-unpin-all-the-deps.patch
deleted file mode 100644
index 28bc0f84c6a8..
--- 
a/dev-python/python-lsp-server/files/python-lsp-server-1.6.0-unpin-all-the-deps.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff --git a/pyproject.toml b/pyproject.toml
-index 8cce90e..18cf2db 100644
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -13,7 +13,7 @@ readme = "README.md"
- license = {text = "MIT"}
- requires-python = ">=3.7"
- dependencies = [
--"jedi>=0.17.2,<0.19.0",
-+"jedi>=0.17.2",
- "python-lsp-jsonrpc>=1.0.0",
- "pluggy>=1.0.0",
- "docstring-to-markdown",
-@@ -27,26 +27,26 @@ Homepage = 
"https://github.com/python-lsp/python-lsp-server;
- 
- [project.optional-dependencies]
- all = [
--"autopep8>=1.6.0,<1.7.0",
--"flake8>=5.0.0,<5.1.0",
--"mccabe>=0.7.0,<0.8.0",
--"pycodestyle>=2.9.0,<2.10.0",
-+"autopep8>=1.6.0",
-+"flake8>=5.0.0",
-+"mccabe>=0.7.0",
-+"pycodestyle>=2.9.0",
- "pydocstyle>=2.0.0",
--"pyflakes>=2.5.0,<2.6.0",
-+"pyflakes>=2.5.0",
- "pylint>=2.5.0",
- "rope>=0.10.5",
- "yapf",
- "whatthepatch"
- ]
--autopep8 = ["autopep8>=1.6.0,<1.7.0"]
--flake8 = ["flake8>=5.0.0,<5.1.0"]
--mccabe = ["mccabe>=0.7.0,<0.8.0"]
--pycodestyle = ["pycodestyle>=2.9.0,<2.10.0"]
-+autopep8 = ["autopep8>=1.6.0"]
-+flake8 = ["flake8>=5.0.0"]
-+mccabe = ["mccabe>=0.7.0"]
-+pycodestyle = ["pycodestyle>=2.9.0"]
- pydocstyle = ["pydocstyle>=2.0.0"]
--pyflakes = ["pyflakes>=2.5.0,<2.6.0"]
-+pyflakes = ["pyflakes>=2.5.0"]
- pylint = ["pylint>=2.5.0"]
- rope = ["rope>0.10.5"]
--yapf = ["yapf", "whatthepatch>=1.0.2,<2.0.0"]
-+yapf = ["yapf", "whatthepatch>=1.0.2"]
- websockets = ["websockets>=10.3"]
- test = [
- "pylint>=2.5.0",

diff --git 
a/dev-python/python-lsp-server/files/python-lsp-server-1.7.0-unpin-all-the-deps.patch
 
b/dev-python/python-lsp-server/files/python-lsp-server-1.7.0-unpin-all-the-deps.patch
deleted file mode 100644
index 7bc98e1eb2c8..
--- 
a/dev-python/python-lsp-server/files/python-lsp-server-1.7.0-unpin-all-the-deps.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff --git a/pyproject.toml b/pyproject.toml
-index 1422313..4e1ecad 100644
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -13,7 +13,7 @@ readme = "README.md"
- license = {text = "MIT"}
- requires-python = ">=3.7"
- dependencies = [
--"jedi>=0.17.2,<0.19.0",
-+"jedi>=0.17.2",
- "python-lsp-jsonrpc>=1.0.0",
- "pluggy>=1.0.0",
- "docstring-to-markdown",
-@@ -27,26 +27,26 @@ Homepage = 
"https://github.com/python-lsp/python-lsp-server;
- 
- [project.optional-dependencies]
- all = [
--"autopep8>=1.6.0,<1.7.0",
--"flake8>=5.0.0,<7",
--"mccabe>=0.7.0,<0.8.0",
--"pycodestyle>=2.9.0,<2.11.0",
-+"autopep8>=1.6.0",
-+"flake8>=5.0.0",
-+"mccabe>=0.7.0",
-+"pycodestyle>=2.9.0",
- "pydocstyle>=2.0.0",
--"pyflakes>=2.5.0,<3.1.0",

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

2023-02-16 Thread Michał Górny
commit: 6b057cbe70bb46fbc9983a876e4d924b61a128b9
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 07:40:10 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:40:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b057cbe

dev-python/pydocstyle: Remove old

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

 dev-python/pydocstyle/Manifest |  1 -
 .../pydocstyle/files/pydocstyle-6.1.1-tomli.patch  | 90 --
 dev-python/pydocstyle/pydocstyle-6.1.1-r2.ebuild   | 43 ---
 3 files changed, 134 deletions(-)

diff --git a/dev-python/pydocstyle/Manifest b/dev-python/pydocstyle/Manifest
index 59b18c487eee..0cce48528328 100644
--- a/dev-python/pydocstyle/Manifest
+++ b/dev-python/pydocstyle/Manifest
@@ -1,3 +1,2 @@
-DIST pydocstyle-6.1.1.tar.gz 73982 BLAKE2B 
6a896221fdcd257f0475472e1cf87ef892d8292a4c0faf661595adb17e2d18f4a8277cda498197309d34597c448203856c272256277a7e35fba20e2e5ba47f2b
 SHA512 
ce4932a6601c80d05a46600f5af7df54798025a5f3dc41ab8cf1bc0d63e7f78b70cccb17dc99ddab25eda9abd639f91468fca1b1ceb4539708350212e481a156
 DIST pydocstyle-6.2.3.gh.tar.gz 77612 BLAKE2B 
f94b9c8232a3e96dad1d84d37bf7cc53f114edfddbd0dad725ff3bb79f39576a5fceff5a2b962e284e9d0d96ac8d71e5aa0406322af4bf8fdc73910348ff9190
 SHA512 
b275bd2367a3a6d4636a2879f503da15b9965bffe2750db87cbd3ca09fc3353a481a9c38e1b35b3b2aeeba019e9dd393d2cb65db2820d6343fb4c9881f7e6deb
 DIST pydocstyle-6.3.0.gh.tar.gz 78058 BLAKE2B 
551da9af8baebcba4f1053e0d9495bff039a98c96ad229219cd37ac8ba9e3002fff8a136c5148144a5f84ed94a1414364d7c827ad010038f63961ce17a260ee3
 SHA512 
f8473b19ab6ef0b61787875558f9dd6f9f7f1954e1baa0010942af6d4de8dbca30c8c08be6acbf24aadd1c0a601ba9467b747026a6cd22379f0c4b84a38b57c7

diff --git a/dev-python/pydocstyle/files/pydocstyle-6.1.1-tomli.patch 
b/dev-python/pydocstyle/files/pydocstyle-6.1.1-tomli.patch
deleted file mode 100644
index 8be2adca5ba1..
--- a/dev-python/pydocstyle/files/pydocstyle-6.1.1-tomli.patch
+++ /dev/null
@@ -1,90 +0,0 @@
-From 4c9ed77d3629a69febdaa14d153d3db869b58e4f Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
-Date: Wed, 12 Oct 2022 16:37:40 +0200
-Subject: [PATCH] Use tomllib/tomli for reading .toml configs
-
-Use the built-in `tomllib` module in Python 3.11 and the modern `tomli`
-package in older Python versions to read .toml configs instead of
-the unmaintained and broken `toml` package.
-
-Fixes #599
-Fixes #600

- docs/release_notes.rst   |  1 +
- requirements/runtime.txt |  2 +-
- requirements/tests.txt   |  1 -
- setup.py |  2 +-
- src/pydocstyle/config.py | 20 
- 5 files changed, 15 insertions(+), 11 deletions(-)
-
-diff --git a/requirements/runtime.txt b/requirements/runtime.txt
-index 80302751..b4e9ca76 100644
 a/requirements/runtime.txt
-+++ b/requirements/runtime.txt
-@@ -1,2 +1,2 @@
- snowballstemmer==1.2.1
--toml==0.10.2
-+tomli==2.0.1; python_version < "3.11"
-diff --git a/setup.py b/setup.py
-index a9c5df1c..6c0671c7 100644
 a/setup.py
-+++ b/setup.py
-@@ -8,7 +8,7 @@
- 'snowballstemmer',
- ]
- extra_requirements = {
--'toml': ['toml'],
-+'toml': ['tomli; python_version < "3.11"'],
- }
- 
- 
-diff --git a/src/pydocstyle/config.py b/src/pydocstyle/config.py
-index ed00c874..db7ed1b6 100644
 a/src/pydocstyle/config.py
-+++ b/src/pydocstyle/config.py
-@@ -4,6 +4,7 @@
- import itertools
- import operator
- import os
-+import sys
- from collections import namedtuple
- from collections.abc import Set
- from configparser import NoOptionError, NoSectionError, RawConfigParser
-@@ -13,10 +14,13 @@
- from .utils import __version__, log
- from .violations import ErrorRegistry, conventions
- 
--try:
--import toml
--except ImportError:  # pragma: no cover
--toml = None  # type: ignore
-+if sys.version_info >= (3, 11):
-+import tomllib
-+else:
-+try:
-+import tomli as tomllib
-+except ImportError:  # pragma: no cover
-+tomllib = None  # type: ignore
- 
- 
- def check_initialized(method):
-@@ -59,15 +63,15 @@ def read(self, filenames, encoding=None):
- read_ok = []
- for filename in filenames:
- try:
--with open(filename, encoding=encoding) as fp:
--if not toml:
-+with open(filename, "rb") as fp:
-+if not tomllib:
- log.warning(
- "The %s configuration file was ignored, "
--"because the `toml` package is not installed.",
-+"because the `tomli` package is not installed.",
- filename,
- )
- continue
--self._config.update(toml.load(fp))
-+self._config.update(tomllib.load(fp))
- except OSError:
- continue
- if isinstance(filename, 

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

2023-02-16 Thread Michał Górny
commit: 899ba4ac54f28815926bd1e573d7fd7d0d786db6
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 07:03:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899ba4ac

dev-python/requests-ntlm: Bump to 1.2.0

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

 dev-python/requests-ntlm/Manifest  |  1 +
 dev-python/requests-ntlm/metadata.xml  |  2 +-
 .../requests-ntlm/requests-ntlm-1.2.0.ebuild   | 50 ++
 3 files changed, 52 insertions(+), 1 deletion(-)

diff --git a/dev-python/requests-ntlm/Manifest 
b/dev-python/requests-ntlm/Manifest
index 61c7a4bc33ad..1a1d3cb85fbb 100644
--- a/dev-python/requests-ntlm/Manifest
+++ b/dev-python/requests-ntlm/Manifest
@@ -1 +1,2 @@
+DIST requests-ntlm-1.2.0.gh.tar.gz 14540 BLAKE2B 
0b9dd72680c6e67dc6e4f0a3eef3b9fa0cc03c71010238a0e7ef8a48b59c57e12846040975f7eef7710113f372cd1e1628e5a9be0eca8e7a287a9cfd0765ebf0
 SHA512 
230eb6c8a90e8745a3c969114f81d2559aa0f411b79b54747d21c6c28572f7d61c024c47a831777c2d85fb8b09af7fee667d3a3abf318473c97e727c5f2d7943
 DIST requests_ntlm-1.1.0.tar.gz 5183 BLAKE2B 
190a75d3f82ae2216e05295f855aa072f98908ef8a0d4dda68d6e39239655ccf175c707af137290cd78cf622c0a3d1741a0afbb1363f8b170f408c34a2682fa6
 SHA512 
9a74ecd6e4ed5c5e4381d2ee3fb9ff233352b49baa5fae4e0ecc30aaad12fc7a5c1b9dd936f35d4a3815ae7f6ec5bb8581e84128d63ff0e961181408daddb807

diff --git a/dev-python/requests-ntlm/metadata.xml 
b/dev-python/requests-ntlm/metadata.xml
index cb401c68b149..7f4b01eebc5e 100644
--- a/dev-python/requests-ntlm/metadata.xml
+++ b/dev-python/requests-ntlm/metadata.xml
@@ -10,7 +10,7 @@
Python


-   requests_ntlm
+   requests-ntlm
requests/requests-ntlm

 

diff --git a/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild 
b/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild
new file mode 100644
index ..81473a0deacb
--- /dev/null
+++ b/dev-python/requests-ntlm/requests-ntlm-1.2.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="HTTP NTLM authentication using the requests library"
+HOMEPAGE="
+   https://github.com/requests/requests-ntlm/
+   https://pypi.org/project/requests-ntlm/
+"
+SRC_URI="
+   https://github.com/requests/requests-ntlm/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+SLOT="0"
+LICENSE="ISC"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/cryptography-1.3[${PYTHON_USEDEP}]
+   >=dev-python/pyspnego-0.1.6[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/flask[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local ts_pid test_ret
+
+   "${EPYTHON}" -m tests.test_server &> "${T}"/test-server.log &
+   ts_pid=${!}
+
+   nonfatal epytest tests/unit
+   test_ret=${?}
+
+   kill "${ts_pid}"
+   [[ ${test_ret} -ne 0 ]] && die "Tests failed with ${EPYTHON}"
+}



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

2023-02-16 Thread Michał Górny
commit: 7a72f0e25bc3eaa10b657e35a0d1ccb5d666044e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:56:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a72f0e2

dev-python/alembic: Bump to 1.9.4

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

 dev-python/alembic/Manifest |  1 +
 dev-python/alembic/alembic-1.9.4.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-python/alembic/Manifest b/dev-python/alembic/Manifest
index b5eae2faee2b..4a4a4be50199 100644
--- a/dev-python/alembic/Manifest
+++ b/dev-python/alembic/Manifest
@@ -1,2 +1,3 @@
 DIST alembic-1.9.2.tar.gz 1136929 BLAKE2B 
26c4ad3185bc274aa4321a0860dc357566625abb51c951f2d0151bfd109f0e0bf7a37075d07ad2f0975127bdd327579f2d9a700f3cc130fbdd1c6458127b2e50
 SHA512 
d878d48d140be68facdaf0ec25f8582c9e10a369b23e9ee035ae63f8f2ad52d50464c5b8e9c666307edd1a797b6a2c495e56fa890f7dc8f46b3d75a726905ded
 DIST alembic-1.9.3.tar.gz 1137492 BLAKE2B 
17dbc5513b7e15daa51f623bfa90febf356caad8d13e215c6007fd0330e569ea4ffddd374c1ab9b7954e38a136c27d2e5d0ff5db026a6c2ad04d242b3cfdbe7f
 SHA512 
dcbde51c26a81f88b102979aa000c17d0af065e96c51484c94c138fc08099e229deb06f5934d499058f25ef87eb5a5de765225fb890a76eb030d1ad6649e57a4
+DIST alembic-1.9.4.tar.gz 1139210 BLAKE2B 
5b740803b6bf5b715e9572a91d87d5403d64e665647776d28511704fa17ed81825fe6f5cdab2cec77a0806abb02ef2a7acf5f9702ff87639b90e74d9e22a4b1a
 SHA512 
76e6f86e789cecff78f8e86c34d22a70615158833bc24a26f38fe2d0d5ccd098920e0fe4cbebaadd2c9a4a2e63152720945645000d46a2b6b8b6696ce873f899

diff --git a/dev-python/alembic/alembic-1.9.4.ebuild 
b/dev-python/alembic/alembic-1.9.4.ebuild
new file mode 100644
index ..c7ecdc042007
--- /dev/null
+++ b/dev-python/alembic/alembic-1.9.4.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Database migrations tool, written by the author of SQLAlchemy"
+HOMEPAGE="
+   https://github.com/sqlalchemy/alembic/
+   https://pypi.org/project/alembic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-1.1.0[${PYTHON_USEDEP}]
+   dev-python/mako[${PYTHON_USEDEP}]
+   >=dev-python/python-editor-0.3[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/. )
+   distutils-r1_python_install_all
+}



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

2023-02-16 Thread Michał Górny
commit: b30e04bea30944c05917db48b05b8a7578d70075
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:55:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b30e04be

dev-python/pyspnego: Bump to 0.8.0

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

 dev-python/pyspnego/Manifest  |  1 +
 dev-python/pyspnego/pyspnego-0.8.0.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/pyspnego/Manifest b/dev-python/pyspnego/Manifest
index 27f9ef1a15ec..6585e53ce2f9 100644
--- a/dev-python/pyspnego/Manifest
+++ b/dev-python/pyspnego/Manifest
@@ -1 +1,2 @@
 DIST pyspnego-0.7.0.tar.gz 219295 BLAKE2B 
43a31b468ac52750858c74c676c29611f5294d64efe3b0b4ac31acbd0d3c8fb346fea0c396de98908ea7d03040e0d4b5e3e2adacc911413bfafad8e295fd3bb3
 SHA512 
0c3eeab267bc43fbc3836d2a804e25304ed245ae3f0bf7926cdfd1edd4815c6f25580c655218857ea117e63b13e0ea3e343614580096151d4d720ff6c79ab844
+DIST pyspnego-0.8.0.tar.gz 222900 BLAKE2B 
aa526c6506f680008ded0a86e938629ccc9ca89454d7987017903e9e5fe26204346bd4eefae3a35c641309391a4784c23e1a3e51d8a03f5ab517516e1a3a4965
 SHA512 
d9d6356cf9d78fde6669606df7b56f0004957ed58f94cd3965d63827df702ffc10299296153f8c089853f3b22a684e08129d607b4eaedfd332b8b82652119e89

diff --git a/dev-python/pyspnego/pyspnego-0.8.0.ebuild 
b/dev-python/pyspnego/pyspnego-0.8.0.ebuild
new file mode 100644
index ..202be95d8916
--- /dev/null
+++ b/dev-python/pyspnego/pyspnego-0.8.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 optfeature pypi
+
+DESCRIPTION="Library to handle SPNEGO and CredSSP authentication"
+HOMEPAGE="
+   https://github.com/jborean93/pyspnego/
+   https://pypi.org/project/pyspnego/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/cryptography[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   dev-python/gssapi[${PYTHON_USEDEP}]
+   >=dev-python/krb5-0.3.0[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+pkg_postinst() {
+   optfeature "Kerberos authentication" "dev-python/gssapi 
>=dev-python/krb5-0.3.0"
+   optfeature "YAML output support" "dev-python/ruamel-yaml"
+}



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

2023-02-16 Thread Michał Górny
commit: 5dc114a7b3c427ada7c97c03e07472764fe5e3da
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:58:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dc114a7

dev-python/jupyter_client: Bump to 8.0.3

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

 dev-python/jupyter_client/Manifest |  1 +
 .../jupyter_client/jupyter_client-8.0.3.ebuild | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/jupyter_client/Manifest 
b/dev-python/jupyter_client/Manifest
index 9fc11e30837f..b914f02a577b 100644
--- a/dev-python/jupyter_client/Manifest
+++ b/dev-python/jupyter_client/Manifest
@@ -1,2 +1,3 @@
 DIST jupyter_client-7.4.9.tar.gz 329115 BLAKE2B 
8b43b237ac79bc51e40e403cf4a3ada18d03437094dc1dd9b9988adb1bcfbc56ba4b2373d3dd858df583b723723127f934c01544f3d6a576886b012364674f0f
 SHA512 
0de91309ffddd2da50ae69bff4f7ecd741398171982f66488e6367d78388c6844b353bed1834684fa4af890364120ce09f2fa6b3ed7778c501058ae558439969
 DIST jupyter_client-8.0.2.tar.gz 333904 BLAKE2B 
e5a6ba4d2190150bed94b4f6ed80d7b043643341e925851ad073d65d78984ba37bf9ca2563d5fdd6cd79aa104b271ef0585d5e478ae3394b5ef478060ae71d4e
 SHA512 
80944e5727a41299e2e05807460c399f6186409817e53b9385cae15e0f6ea5c5d85b76940157195f5b2bd1fbf4b6a38614ab4efe7aefb13744eb9fde5836d70b
+DIST jupyter_client-8.0.3.tar.gz 334366 BLAKE2B 
04ea6e8206fe0b741da1ba0d17cb559657824c20f4fcff48fd0ce4287dce7da9a151000e7a0f08cbf3fa6b1868d8d7e424d49d70a258283466350946f4ce5220
 SHA512 
27eca49e44c13d819624c6ab596b24b9b469f82a788920eb4db02cee43c2efdf22ea68bf282f5f4ca28d38c9238d51d70d7aa214f2c3b8f6c2a7ebcaf12d567c

diff --git a/dev-python/jupyter_client/jupyter_client-8.0.3.ebuild 
b/dev-python/jupyter_client/jupyter_client-8.0.3.ebuild
new file mode 100644
index ..49f147de433f
--- /dev/null
+++ b/dev-python/jupyter_client/jupyter_client-8.0.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Jupyter protocol implementation and client libraries"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter/jupyter_client/
+   https://pypi.org/project/jupyter-client/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/jupyter_core-5.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
+   >=dev-python/pyzmq-23.0[${PYTHON_USEDEP}]
+   >=dev-python/tornado-6.0[${PYTHON_USEDEP}]
+   dev-python/traitlets[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_metadata-4.8.3[${PYTHON_USEDEP}]
+   ' 3.{8,9})
+"
+BDEPEND="
+   test? (
+   >=dev-python/ipykernel-6.14[${PYTHON_USEDEP}]
+   >=dev-python/pytest-asyncio-0.18[${PYTHON_USEDEP}]
+   >=dev-python/pytest_jupyter-0.4.1[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # TODO: times out
+   tests/test_client.py::TestAsyncKernelClient::test_input_request
+   # TODO
+   tests/test_multikernelmanager.py::TestKernelManager::test_tcp_cinfo
+)



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

2023-02-16 Thread Michał Górny
commit: bbc5f93ea0c2be8e1d4eda1fe173851bbbde660c
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:58:06 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc5f93e

dev-python/GitPython: Bump to 3.1.31

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

 dev-python/GitPython/GitPython-3.1.31.ebuild | 83 
 dev-python/GitPython/Manifest|  3 +
 2 files changed, 86 insertions(+)

diff --git a/dev-python/GitPython/GitPython-3.1.31.ebuild 
b/dev-python/GitPython/GitPython-3.1.31.ebuild
new file mode 100644
index ..803fa451e4ec
--- /dev/null
+++ b/dev-python/GitPython/GitPython-3.1.31.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 pypi
+
+TEST_P=GitPython-${PV}
+GITDB_P=gitdb-4.0.10
+SMMAP_P=smmap-5.0.0_p1
+
+DESCRIPTION="Library used to interact with Git repositories"
+HOMEPAGE="
+   https://github.com/gitpython-developers/GitPython/
+   https://pypi.org/project/GitPython/
+"
+SRC_URI+="
+   test? (
+   https://dev.gentoo.org/~mgorny/dist/${TEST_P}.gitbundle
+   https://dev.gentoo.org/~mgorny/dist/${GITDB_P}.gitbundle
+   https://dev.gentoo.org/~mgorny/dist/${SMMAP_P}.gitbundle
+   )
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   dev-vcs/git
+   >=dev-python/gitdb-4.0.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-python/ddt-1.1.1[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_test() {
+   git config --global user.email "tra...@ci.com" || die
+   git config --global user.name "Travis Runner" || die
+
+   git clone "${DISTDIR}/${TEST_P}.gitbundle" "${T}"/test || die
+   git clone "${DISTDIR}/${GITDB_P}.gitbundle" \
+   "${T}"/test/git/ext/gitdb || die
+   git clone "${DISTDIR}/${SMMAP_P}.gitbundle" \
+   "${T}"/test/git/ext/gitdb/gitdb/ext/smmap || die
+
+   cd "${T}"/test || die
+   git rev-parse HEAD > .git/refs/remotes/origin/master || die
+   TRAVIS=1 ./init-tests-after-clone.sh || die
+   cat test/fixtures/.gitconfig >> ~/.gitconfig || die
+
+   distutils-r1_src_test
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # performance tests are unreliable by design
+   test/performance
+   # unimpoortant and problematic
+   test/test_installation.py
+   # Internet
+   test/test_repo.py::TestRepo::test_leaking_password_in_clone_logs
+   # requires which(1)
+   # https://github.com/gitpython-developers/GitPython/pull/1525
+   test/test_git.py::TestGit::test_refresh
+   # TODO
+   test/test_submodule.py::TestSubmodule::test_base_rw
+   
test/test_submodule.py::TestSubmodule::test_git_submodules_and_add_sm_with_new_commit
+   
test/test_submodule.py::TestSubmodule::test_list_only_valid_submodules
+   test/test_submodule.py::TestSubmodule::test_root_module
+   )
+
+   epytest -o addopts= test
+}

diff --git a/dev-python/GitPython/Manifest b/dev-python/GitPython/Manifest
index 9fb67c6a59ad..aa98dd078a51 100644
--- a/dev-python/GitPython/Manifest
+++ b/dev-python/GitPython/Manifest
@@ -1,4 +1,7 @@
 DIST GitPython-3.1.30.gitbundle 9945082 BLAKE2B 
ac3e530509d459303c0c465668c92073d0532bb75c0635c9e5521857132c2d3c18f0e30b85830cf101fc0c79cde33a5eaf459cddbd66abeb6185453d90e4077d
 SHA512 
e43275e8ffc3fb02e360503de3cd9d0b2c817f870361fe6bcfcd9dec30da077c4c685f57bce408ec670f2fb49d265abca34bf14d806a3ea54fd25f9eaf5019b3
 DIST GitPython-3.1.30.tar.gz 195508 BLAKE2B 
ba3dcb7c7aba8ec42842e6240777b8823e641139e6704641a7236ea07b2a82966638fb074c8fe3ff47b66e23aa526cfc899d8c28359f260f62fd1962a6de66de
 SHA512 
067e64c801ca3882d70aca7706b3a57a51597817f0a3f03290a17e3ebb0fa0fd04cd1d72a32eae3bb72b6c486ffd26d1ede9cee5b17d99ffceb0f8dcc83081b9
+DIST GitPython-3.1.31.gitbundle 9820824 BLAKE2B 
47becdf80c8047c3de74f3ad2308f2003629dac970df961e97ae455719690afa8ca4fc08c85fdd01d351980cac5b79265164b92c16e993efb964e4c5d6e62810
 SHA512 
2b73a9bbe11bf24c1f0cfbc817b1226ae49c52a898f233d23aa8512cb7709adaba57c76afce8aa4416dcc4f16775d0d4138f0059ede51f59a6ccdd27d0f08cd3
+DIST GitPython-3.1.31.tar.gz 195822 BLAKE2B 
c5644a811e33da4e2983d5b41dc5e223bff23bb817027485fd24598163dc515d1823e8abc5f871a9ad4334827f097dbe7856cf618940cd3ddbe507728253ea2c
 SHA512 
80d5f73db589e239dead268c99092b2429c4d0602e4f9a1e77cce5c68f2eade1651e3da9de68fd485021565f3a2d9b980c286b0d302c58e60011a443b4361e71
 

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

2023-02-16 Thread Michał Górny
commit: ff45f7a67f47de1fc4245977b9d53465b79c2941
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:55:20 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 07:38:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff45f7a6

dev-python/scikit-build: Bump to 0.16.7

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

 dev-python/scikit-build/Manifest   |  1 +
 dev-python/scikit-build/scikit-build-0.16.7.ebuild | 69 ++
 2 files changed, 70 insertions(+)

diff --git a/dev-python/scikit-build/Manifest b/dev-python/scikit-build/Manifest
index a2f01023d623..0e6a704e6b14 100644
--- a/dev-python/scikit-build/Manifest
+++ b/dev-python/scikit-build/Manifest
@@ -1,3 +1,4 @@
 DIST scikit-build-0.16.4.tar.gz 271037 BLAKE2B 
6cca8a3c4f4b37228b77ac098650a5eca4ad0f525ca7dcba178f4cffabb7e60e9a7bbba244e64c1a598ab5916f2f47788198eb2a19803d8d0cf7b9792f4e06e2
 SHA512 
90315ceac4c372e4d7248b4b56b6092362c2c43fbdc180d1a234e057209c508a05d2c6e0a3d0c2587c3adb8957e4c66d5c171a2a2bc3dbf9874a0de58d97d976
 DIST scikit-build-0.16.5.tar.gz 271974 BLAKE2B 
e34d44fb27975720adc4ca57a0fabc9b05260a13043b546d19bfb44fa1c60e6490c5d7bbd41494481da470e24c05c4da3eb41b26c78160a35be1e3c29f9a4ef4
 SHA512 
37e50b3a1fc04b6758b65a58f5d5239effbc0ab38a4a2024098b6a69eea1d7a9a388e41696176469e9c55a7c8b73ace9d7eee2daf5d0fbaefe2a3e09880ee600
 DIST scikit-build-0.16.6.tar.gz 272201 BLAKE2B 
bb14b0db52d0c04b9630fa27ccbc58c7af72eb8640c4dc82e920acdbc815e2eb8f7662684b23aa42765966ae1ad4e046dead3d7090a263d79f69bfd955ab0f24
 SHA512 
f36a46845420b441ca158ea05bc20023238afdf81b2108554a52a4a2be0cb19ef6b2729997199d9a9d18841c8470df8f7e7a986a86e1172328f0963f3a015f3d
+DIST scikit-build-0.16.7.tar.gz 274287 BLAKE2B 
8a5064c021d904312ccf89a396ab794b89b73ad1b6238767ca74eeb394f0f1514eedd3c746353ee3e9e7b825988b3c52c563e1f19d0acfbe69213c5a306f1dcc
 SHA512 
5bba94214c249f891b2972301b0e37b5f10938151e37a04b845dfc9e11ae85edc7e3880984f9fbbd1c037257fc8baa3ba7b006b1f1b7abb941d1a54e049f3cbc

diff --git a/dev-python/scikit-build/scikit-build-0.16.7.ebuild 
b/dev-python/scikit-build/scikit-build-0.16.7.ebuild
new file mode 100644
index ..7d500c4d6183
--- /dev/null
+++ b/dev-python/scikit-build/scikit-build-0.16.7.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Improved build system generator for Python C/C++/Fortran/Cython 
extensions"
+HOMEPAGE="
+   https://github.com/scikit-build/scikit-build/
+   https://pypi.org/project/scikit-build/
+"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   >=dev-python/setuptools-42.0.0[${PYTHON_USEDEP}]
+   >=dev-python/wheel-0.32.0[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   >=dev-python/cython-0.25.1[${PYTHON_USEDEP}]
+   >=dev-python/pytest-mock-1.10.4[${PYTHON_USEDEP}]
+   >=dev-python/pytest-virtualenv-1.2.5[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-rtd-theme \
+   dev-python/sphinx-issues
+distutils_enable_tests pytest
+
+src_prepare() {
+   # not packaged
+   sed -i -e '/cmakedomain/d' docs/conf.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # sandbox violations
+   tests/test_hello_cpp.py::test_hello_develop
+   tests/test_issue274_support_default_package_dir.py
+   tests/test_issue274_support_one_package_without_package_dir.py
+   tests/test_issue334_configure_cmakelists_non_cp1252_encoding.py
+   tests/test_pep518.py
+   # This fails because of additional item setup.py in sources
+   tests/test_include_exclude_data.py::test_hello_sdist
+   tests/test_include_exclude_data.py::test_hello_sdist_with_base
+   
tests/test_issue401_sdist_with_symlinks.py::test_sdist_with_symlinks
+   tests/test_manifest_in.py::test_manifest_in_sdist
+   # Wants internet to install things with pip
+   tests/test_numpy.py::test_pep518_findpython
+   # TODO
+   
"tests/test_command_line.py::test_hide_listing[True-bdist_wheel]"
+   )
+   epytest
+}



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

2023-02-16 Thread Sam James
commit: d2ae1232ab16543d05317e5cab522972a09758f7
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:23:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:23:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2ae1232

dev-libs/criterion: enable py3.11

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

 dev-libs/criterion/criterion-2.4.0.ebuild | 2 +-
 dev-libs/criterion/criterion-2.4.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/criterion/criterion-2.4.0.ebuild 
b/dev-libs/criterion/criterion-2.4.0.ebuild
index d150bad6f79d..49faed7a545b 100644
--- a/dev-libs/criterion/criterion-2.4.0.ebuild
+++ b/dev-libs/criterion/criterion-2.4.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="8"
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit meson python-any-r1
 

diff --git a/dev-libs/criterion/criterion-2.4.1.ebuild 
b/dev-libs/criterion/criterion-2.4.1.ebuild
index 981964ff1a85..f3384d089938 100644
--- a/dev-libs/criterion/criterion-2.4.1.ebuild
+++ b/dev-libs/criterion/criterion-2.4.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit meson python-any-r1
 



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

2023-02-16 Thread Sam James
commit: 55f25b309b1a8ab5d1f4a6bdca7d854d472c7375
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:27:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:27:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f25b30

dev-python/prov: update SRC_URI

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

 dev-python/prov/prov-2.0.0.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-python/prov/prov-2.0.0.ebuild 
b/dev-python/prov/prov-2.0.0.ebuild
index b911105584c6..a8850b2716c3 100644
--- a/dev-python/prov/prov-2.0.0.ebuild
+++ b/dev-python/prov/prov-2.0.0.ebuild
@@ -3,12 +3,11 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1 pypi
 
 DESCRIPTION="W3C provenance data dodel library"
 HOMEPAGE="https://pypi.org/project/prov/;
-SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"



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

2023-02-16 Thread Sam James
commit: fcf8b8dd9a0bb5c78438254cb6523a6fbb6794f3
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:21:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:21:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcf8b8dd

dev-libs/boxfort: enable py3.11

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

 dev-libs/boxfort/boxfort-0.1.1.ebuild | 2 +-
 dev-libs/boxfort/boxfort-0.1.4.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/boxfort/boxfort-0.1.1.ebuild 
b/dev-libs/boxfort/boxfort-0.1.1.ebuild
index 8a8774e348b1..c7cabdbb8bf7 100644
--- a/dev-libs/boxfort/boxfort-0.1.1.ebuild
+++ b/dev-libs/boxfort/boxfort-0.1.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit meson python-any-r1
 

diff --git a/dev-libs/boxfort/boxfort-0.1.4.ebuild 
b/dev-libs/boxfort/boxfort-0.1.4.ebuild
index 45d8dc65c1d9..5ba94e06da9f 100644
--- a/dev-libs/boxfort/boxfort-0.1.4.ebuild
+++ b/dev-libs/boxfort/boxfort-0.1.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="8"
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit meson python-any-r1
 



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

2023-02-16 Thread Sam James
commit: c65ce96143a9356d22020969f661c8a268a02673
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:36:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:36:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c65ce961

dev-python/pyalsa: enable py3.11, wire up test infra

Can't run tests in sandbox though.

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

 dev-python/pyalsa/pyalsa-1.2.7.ebuild | 27 +++
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/dev-python/pyalsa/pyalsa-1.2.7.ebuild 
b/dev-python/pyalsa/pyalsa-1.2.7.ebuild
index 9d79adb5891d..3840bf92b6eb 100644
--- a/dev-python/pyalsa/pyalsa-1.2.7.ebuild
+++ b/dev-python/pyalsa/pyalsa-1.2.7.ebuild
@@ -3,9 +3,9 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
-inherit distutils-r1 flag-o-matic
+inherit distutils-r1
 
 DESCRIPTION="Python bindings for ALSA library"
 HOMEPAGE="https://alsa-project.org/wiki/Main_Page;
@@ -14,7 +14,8 @@ 
SRC_URI="https://www.alsa-project.org/files/pub/pyalsa/${P}.tar.bz2;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
-IUSE=""
+# Needs access to system's alsa configuration/devices
+RESTRICT="test"
 
 RDEPEND="media-libs/alsa-lib"
 DEPEND="${RDEPEND}
@@ -22,4 +23,22 @@ DEPEND="${RDEPEND}
 
 PATCHES=( "${FILESDIR}/${PN}-1.1.6-no-build-symlinks.patch" )
 
-# Testsuite appears to require installed state
+python_test() {
+   cd "${T}" || die
+
+   shopt -s nullglob
+   local test
+   local failed
+   for test in "${S}"/test/*.py ; do
+   ${EPYTHON} "${test}" || {
+   eerror "${test} failed with ${EPYTHON}"
+   failed=1
+   break
+   }
+   done
+   shopt -u nullglob
+
+   if [[ ${failed} -eq 1 ]] ; then
+   die "${test} failed with ${EPYTHON}"
+   fi
+}



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

2023-02-16 Thread Sam James
commit: ba99d9795d0f7d43d73c1c7ea4c56493aab44e5f
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:27:05 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:27:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba99d979

dev-python/pydot: enable py3.11

Good enough for dev-python/prov to pass its tests too.

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

 dev-python/pydot/pydot-1.4.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydot/pydot-1.4.2-r3.ebuild 
b/dev-python/pydot/pydot-1.4.2-r3.ebuild
index 264ba8777f16..3e99bb59fe68 100644
--- a/dev-python/pydot/pydot-1.4.2-r3.ebuild
+++ b/dev-python/pydot/pydot-1.4.2-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 DESCRIPTION="Python interface to Graphviz's Dot language"



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

2023-02-16 Thread Sam James
commit: 8f75554b02b6019fbfdb8efbc864827b9434e01a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:17:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:17:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f75554b

dev-python/pygal: fix SRC_URI name

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

 dev-python/pygal/Manifest | 1 +
 dev-python/pygal/{pygal-3.0.0-r3.ebuild => pygal-3.0.0-r4.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/pygal/Manifest b/dev-python/pygal/Manifest
index 932c7ae4057a..d535ff34e001 100644
--- a/dev-python/pygal/Manifest
+++ b/dev-python/pygal/Manifest
@@ -1 +1,2 @@
+DIST pygal-3.0.0.gh.tar.gz 3575455 BLAKE2B 
9b64cf441aeb25b0a0b9834f07e5892fe163f28a5da796d37083f8f3a10d8737a69bad39e503d722e6a36f2de4367b4fd2bdc3a06c5bc30bce66a370690d9c88
 SHA512 
71ac9f197d711c8cf5bb47caef128754f81b1cb0ba98c4cc67de78b68fca5d40baae9fbb5c978f6abaed4c73b8edfea2de07de2fda1aa7c15e0d81387518cc49
 DIST pygal-3.0.0.tar.gz 3575455 BLAKE2B 
9b64cf441aeb25b0a0b9834f07e5892fe163f28a5da796d37083f8f3a10d8737a69bad39e503d722e6a36f2de4367b4fd2bdc3a06c5bc30bce66a370690d9c88
 SHA512 
71ac9f197d711c8cf5bb47caef128754f81b1cb0ba98c4cc67de78b68fca5d40baae9fbb5c978f6abaed4c73b8edfea2de07de2fda1aa7c15e0d81387518cc49

diff --git a/dev-python/pygal/pygal-3.0.0-r3.ebuild 
b/dev-python/pygal/pygal-3.0.0-r4.ebuild
similarity index 98%
rename from dev-python/pygal/pygal-3.0.0-r3.ebuild
rename to dev-python/pygal/pygal-3.0.0-r4.ebuild
index 02d7faf9000d..b6abd76d9353 100644
--- a/dev-python/pygal/pygal-3.0.0-r3.ebuild
+++ b/dev-python/pygal/pygal-3.0.0-r4.ebuild
@@ -11,7 +11,7 @@ inherit distutils-r1 optfeature
 
 DESCRIPTION="A python SVG charts generator"
 HOMEPAGE="https://github.com/Kozea/pygal/;
-SRC_URI="https://github.com/Kozea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/Kozea/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
 
 LICENSE="LGPL-3+"
 SLOT="0"



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

2023-02-16 Thread Sam James
commit: 98e0d1bcd1e51dd7641f83d05084f07326382122
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:16:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:16:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e0d1bc

dev-util/meson: Stabilize 1.0.0 sparc, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index 591ea6898d40..f14de1f9d52d 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips 
ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips 
ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: 237bbd8bfa152335829a18138dfd31e1bbea7bd5
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:16:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:16:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=237bbd8b

dev-util/meson: Stabilize 1.0.0 arm64, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index 113f51d40e9a..591ea6898d40 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips 
ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: c11bced79906a678f01d0dc2753d3e00488ae17a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11bced7

dev-util/meson: Stabilize 1.0.0 ppc64, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index 4d07850e6630..d0cce1d06ad4 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: 40e7c4d9e7a59b319398d9eaab828b62c1fd6238
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:59 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e7c4d9

dev-util/meson: Stabilize 1.0.0 x86, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index 97886baba964..113f51d40e9a 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: 41220b008dff14a7fec07ea1dbd5ce6402336dc3
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41220b00

dev-python/python-lsp-server: Stabilize 1.7.1 ALLARCHES, #895000

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

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

diff --git a/dev-python/python-lsp-server/python-lsp-server-1.7.1.ebuild 
b/dev-python/python-lsp-server/python-lsp-server-1.7.1.ebuild
index c0abd68bb8f3..b0f9a2826d4a 100644
--- a/dev-python/python-lsp-server/python-lsp-server-1.7.1.ebuild
+++ b/dev-python/python-lsp-server/python-lsp-server-1.7.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 IUSE="all-plugins"
 



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

2023-02-16 Thread Sam James
commit: 69d4aff5fac8d093e68049254bb05924efb88131
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:57 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69d4aff5

dev-util/meson: Stabilize 1.0.0 amd64, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index d0cce1d06ad4..97886baba964 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: e3e8906f517920fb8dd63abab88bf54a57b902f4
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3e8906f

dev-util/meson: Stabilize 1.0.0 ppc, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index 2712a59b3733..4d07850e6630 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: 8233662ca3580765af43eefe1315f6184d76a96f
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8233662c

dev-util/meson: Stabilize 1.0.0 arm, #895002

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

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

diff --git a/dev-util/meson/meson-1.0.0.ebuild 
b/dev-util/meson/meson-1.0.0.ebuild
index 8140364c2c1b..2712a59b3733 100644
--- a/dev-util/meson/meson-1.0.0.ebuild
+++ b/dev-util/meson/meson-1.0.0.ebuild
@@ -15,7 +15,7 @@ else
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k 
~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 fi
 



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

2023-02-16 Thread Sam James
commit: ff2e6ca60c176f05a4fdaea5a89f9f5e52f7e26f
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:35:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:48:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff2e6ca6

dev-python/pygal: enable py3.11

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

 dev-python/pygal/pygal-3.0.0-r3.ebuild | 44 ++
 1 file changed, 44 insertions(+)

diff --git a/dev-python/pygal/pygal-3.0.0-r3.ebuild 
b/dev-python/pygal/pygal-3.0.0-r3.ebuild
new file mode 100644
index ..02d7faf9000d
--- /dev/null
+++ b/dev-python/pygal/pygal-3.0.0-r3.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="A python SVG charts generator"
+HOMEPAGE="https://github.com/Kozea/pygal/;
+SRC_URI="https://github.com/Kozea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/pyquery[${PYTHON_USEDEP}]
+   media-gfx/cairosvg[${PYTHON_USEDEP}]
+   )
+"
+
+# CHANGELOG is a symlink to docs/changelog.rst
+DOCS=( docs/changelog.rst README.md )
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Not actually required unless we want to do setup.py test
+   # https://github.com/Kozea/pygal/issues/430
+   sed -i -e "/setup_requires/d" setup.py || die
+   distutils-r1_python_prepare_all
+}
+
+pkg_postinst() {
+   optfeature "improving rendering speed" "dev-python/lxml"
+   optfeature "png rendering" "dev-python/cairosvg"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/pam_wrapper/files/, sys-libs/pam_wrapper/

2023-02-16 Thread Sam James
commit: 3bae8de27d1c8f4596ea838bec571db33cec1653
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 07:15:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 07:15:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bae8de2

sys-libs/pam_wrapper: enable py3.11

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

 .../files/pam_wrapper-1.1.4-tests-import.patch | 22 
 ...1.1.4-r1.ebuild => pam_wrapper-1.1.4-r2.ebuild} | 24 +++---
 2 files changed, 43 insertions(+), 3 deletions(-)

diff --git a/sys-libs/pam_wrapper/files/pam_wrapper-1.1.4-tests-import.patch 
b/sys-libs/pam_wrapper/files/pam_wrapper-1.1.4-tests-import.patch
new file mode 100644
index ..aba9c370a22c
--- /dev/null
+++ b/sys-libs/pam_wrapper/files/pam_wrapper-1.1.4-tests-import.patch
@@ -0,0 +1,22 @@
+--- a/tests/pypamtest_test.py
 b/tests/pypamtest_test.py
+@@ -15,19 +15,6 @@ class PyPamTestCase(unittest.TestCase):
+ self.assertSequenceEqual(test_result.errors, info_list)
+ 
+ class PyPamTestImport(unittest.TestCase):
+-def setUp(self):
+-" Make sure we load the in-tree module "
+-if sys.hexversion >= 0x300:
+-self.modpath = os.path.join(os.getcwd(), "../src/python/python3")
+-else:
+-self.modpath = os.path.join(os.getcwd(), "../src/python/python2")
+-self.system_path = sys.path[:]
+-sys.path = [ self.modpath ]
+-
+-def tearDown(self):
+-" Restore the system path "
+-sys.path = self.system_path
+-
+ def testImport(self):
+ " Import the module "
+ try:

diff --git a/sys-libs/pam_wrapper/pam_wrapper-1.1.4-r1.ebuild 
b/sys-libs/pam_wrapper/pam_wrapper-1.1.4-r2.ebuild
similarity index 77%
rename from sys-libs/pam_wrapper/pam_wrapper-1.1.4-r1.ebuild
rename to sys-libs/pam_wrapper/pam_wrapper-1.1.4-r2.ebuild
index 264a74d7a5c3..20e06b42b366 100644
--- a/sys-libs/pam_wrapper/pam_wrapper-1.1.4-r1.ebuild
+++ b/sys-libs/pam_wrapper/pam_wrapper-1.1.4-r2.ebuild
@@ -1,10 +1,9 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
+EAPI=8
 
+PYTHON_COMPAT=( python3_{9..11} )
 inherit cmake-multilib python-r1
 
 DESCRIPTION="A tool to test PAM applications and PAM modules"
@@ -31,6 +30,10 @@ DEPEND="
test? ( dev-util/cmocka[${MULTILIB_USEDEP}] )
 "
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1.4-tests-import.patch
+)
+
 multilib_src_configure() {
configure_for_python() {
local mycmakeargs=( -DUNIT_TESTING=OFF )
@@ -60,6 +63,21 @@ multilib_src_compile() {
cmake_src_compile
 }
 
+multilib_src_test() {
+   cmake_src_test
+
+   # Fails b/c of sandbox?
+   #python_test() {
+   #   local -x 
PYTHONPATH="${BUILD_DIR}/src/python/python3:${PYTHONPATH}"
+   #   elog "${PYTHONPATH}"
+   #   ${EPYTHON} "${S}"/tests/pypamtest_test.py || die "Tests failed 
with ${EPYTHON}"
+   #}
+
+   #if multilib_is_native_abi ; then
+   #   python_foreach_impl python_test
+   #fi
+}
+
 multilib_src_install() {
if multilib_is_native_abi ; then
python_foreach_impl cmake_src_install



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

2023-02-16 Thread Sam James
commit: 4e235452fc9388905dccaf72f24c3f3ee0c07d02
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:36:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:48:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e235452

dev-python/semver: enable py3.11, PEP517

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

 dev-python/semver/Manifest | 2 +-
 .../semver/{semver-2.13.0.ebuild => semver-2.13.0-r1.ebuild}   | 7 ---
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-python/semver/Manifest b/dev-python/semver/Manifest
index 83bf711cc293..fcb567acb5f3 100644
--- a/dev-python/semver/Manifest
+++ b/dev-python/semver/Manifest
@@ -1 +1 @@
-DIST semver-2.13.0.tar.gz 43674 BLAKE2B 
35d0ca0b61836d0e6deb97f067a0c1cbba310dde6eb83d78f02f85c3f7485114ad549559d572d4494aa7cc7d6feabcb36394561a238489d56bfd04ed8590
 SHA512 
ca0d408d8bb7305e90802ea04d935cd7b76b8f166a9ec97ed3427dbc2cf60eeca0b2d27ad0cb2f15f32f5b2589d6717a63717c463183374c5335bf79e1eec222
+DIST semver-2.13.0.gh.tar.gz 43674 BLAKE2B 
35d0ca0b61836d0e6deb97f067a0c1cbba310dde6eb83d78f02f85c3f7485114ad549559d572d4494aa7cc7d6feabcb36394561a238489d56bfd04ed8590
 SHA512 
ca0d408d8bb7305e90802ea04d935cd7b76b8f166a9ec97ed3427dbc2cf60eeca0b2d27ad0cb2f15f32f5b2589d6717a63717c463183374c5335bf79e1eec222

diff --git a/dev-python/semver/semver-2.13.0.ebuild 
b/dev-python/semver/semver-2.13.0-r1.ebuild
similarity index 83%
rename from dev-python/semver/semver-2.13.0.ebuild
rename to dev-python/semver/semver-2.13.0-r1.ebuild
index df1afc006d40..f534300fab4d 100644
--- a/dev-python/semver/semver-2.13.0.ebuild
+++ b/dev-python/semver/semver-2.13.0-r1.ebuild
@@ -1,14 +1,15 @@
 # Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( pypy3 python3_{9..10} )
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{9..11} )
 inherit distutils-r1
 
 DESCRIPTION="A Python module for semantic versioning"
 HOMEPAGE="https://github.com/python-semver/python-semver;
-SRC_URI="https://github.com/python-${PN}/python-${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/python-${PN}/python-${PN}/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
 S="${WORKDIR}/python-${P}"
 
 LICENSE="BSD"



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

2023-02-16 Thread Sam James
commit: 35cff4dbb31d71e3ba248b2d5a73c61d6b1b712c
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:30:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:48:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35cff4db

dev-python/poyo: enable py3.11, use pypi.eclass, PEP517

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

 dev-python/poyo/{poyo-0.5.0.ebuild => poyo-0.5.0-r1.ebuild} | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/poyo/poyo-0.5.0.ebuild 
b/dev-python/poyo/poyo-0.5.0-r1.ebuild
similarity index 71%
rename from dev-python/poyo/poyo-0.5.0.ebuild
rename to dev-python/poyo/poyo-0.5.0-r1.ebuild
index 12675d637ff4..6e726f1e681c 100644
--- a/dev-python/poyo/poyo-0.5.0.ebuild
+++ b/dev-python/poyo/poyo-0.5.0-r1.ebuild
@@ -1,14 +1,14 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1 pypi
 
 DESCRIPTION="A lightweight YAML Parser for Python"
 HOMEPAGE="https://github.com/hackebrot/poyo;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"



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

2023-02-16 Thread Sam James
commit: 7e3432811734ab3b824fa8fe30488e6b8b20b640
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:45:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:48:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e343281

net-libs/stem: add note re py3.11

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

 net-libs/stem/stem-1.8.0-r1.ebuild| 2 ++
 net-libs/stem/stem-1.8.0_p2028.ebuild | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/net-libs/stem/stem-1.8.0-r1.ebuild 
b/net-libs/stem/stem-1.8.0-r1.ebuild
index 3552fa292554..0603d9e04d5d 100644
--- a/net-libs/stem/stem-1.8.0-r1.ebuild
+++ b/net-libs/stem/stem-1.8.0-r1.ebuild
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
+# Fails w/ 3.11: https://github.com/torproject/stem/issues/130 (breaks 
net-misc/nyx)
 PYTHON_COMPAT=( python3_{9..10} pypy3 )
 DISTUTILS_USE_SETUPTOOLS=no
 

diff --git a/net-libs/stem/stem-1.8.0_p2028.ebuild 
b/net-libs/stem/stem-1.8.0_p2028.ebuild
index 1fc58544f59b..f409826d624a 100644
--- a/net-libs/stem/stem-1.8.0_p2028.ebuild
+++ b/net-libs/stem/stem-1.8.0_p2028.ebuild
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
+# Fails w/ 3.11: https://github.com/torproject/stem/issues/130 (breaks 
net-misc/nyx)
 PYTHON_COMPAT=( python3_{9..10} pypy3 )
 DISTUTILS_USE_SETUPTOOLS=no
 



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

2023-02-16 Thread Sam James
commit: 3a72847676b1eab773b0c93fe6a41109651ff329
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:34:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:48:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a728476

dev-python/pylibacl: enable py3.11, PEP517

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

 .../{pylibacl-0.6.0.ebuild => pylibacl-0.6.0-r1.ebuild}  | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/dev-python/pylibacl/pylibacl-0.6.0.ebuild 
b/dev-python/pylibacl/pylibacl-0.6.0-r1.ebuild
similarity index 81%
rename from dev-python/pylibacl/pylibacl-0.6.0.ebuild
rename to dev-python/pylibacl/pylibacl-0.6.0-r1.ebuild
index 040a24e0..d5d6d50574b7 100644
--- a/dev-python/pylibacl/pylibacl-0.6.0.ebuild
+++ b/dev-python/pylibacl/pylibacl-0.6.0-r1.ebuild
@@ -1,33 +1,35 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
+EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 DESCRIPTION="POSIX ACLs (Access Control Lists) for Python"
 HOMEPAGE="
https://pylibacl.k1024.org/
https://pypi.org/project/pylibacl/
-   https://github.com/iustin/pylibacl/;
+   https://github.com/iustin/pylibacl/
+"
 SRC_URI="
https://github.com/iustin/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz"
+   -> ${P}.gh.tar.gz
+"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86"
 
 RDEPEND="sys-apps/acl"
-DEPEND=${RDEPEND}
+DEPEND="${RDEPEND}"
 
 distutils_enable_sphinx doc
 distutils_enable_tests pytest
 
 python_test() {
-   if ! pytest -vv; then
+   if ! nonfatal epytest ; then
eerror
eerror "If you got the following errors:"
eerror "\"IOError: [Errno 95] Operation not supported\","



[gentoo-commits] proj/sci:master commit in: dev-vcs/dandi-cli/

2023-02-16 Thread Horea Christian
commit: 7693a82449b13b3ecd3e37618c151ce0babc0d02
Author: Horea Christian  chymera  eu>
AuthorDate: Fri Feb 17 07:03:01 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Fri Feb 17 07:03:01 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=7693a824

dev-vcs/dandi-cli: drop 0.39.4, 0.45.1

Signed-off-by: Horea Christian  chymera.eu>

 dev-vcs/dandi-cli/dandi-cli-0.39.4.ebuild | 88 ---
 dev-vcs/dandi-cli/dandi-cli-0.45.1.ebuild | 80 
 2 files changed, 168 deletions(-)

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.39.4.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.39.4.ebuild
deleted file mode 100644
index e3f36d1de..0
--- a/dev-vcs/dandi-cli/dandi-cli-0.39.4.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="DANDI command line client to facilitate common operations"
-HOMEPAGE="https://github.com/dandi/dandi-cli;
-SRC_URI="https://github.com/dandi/dandi-cli/archive/refs/tags/${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test etelemetry"
-
-RDEPEND="
-   dev-python/appdirs[${PYTHON_USEDEP}]
-   dev-python/click[${PYTHON_USEDEP}]
-   dev-python/click-didyoumean[${PYTHON_USEDEP}]
-   ~dev-python/dandi-schema-0.6.0[${PYTHON_USEDEP}]
-   dev-python/fasteners[${PYTHON_USEDEP}]
-   dev-python/fscacher[${PYTHON_USEDEP}]
-   dev-python/humanize[${PYTHON_USEDEP}]
-   dev-python/interleave[${PYTHON_USEDEP}]
-   dev-python/joblib[${PYTHON_USEDEP}]
-   dev-python/keyring[${PYTHON_USEDEP}]
-   dev-python/keyrings-alt[${PYTHON_USEDEP}]
-   dev-python/nwbinspector[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   dev-python/pycryptodome[${PYTHON_USEDEP}]
-   >=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]
-   dev-python/pynwb[${PYTHON_USEDEP}]
-   dev-python/pyout[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/ruamel-yaml[${PYTHON_USEDEP}]
-   dev-python/semantic_version[${PYTHON_USEDEP}]
-   dev-python/tenacity[${PYTHON_USEDEP}]
-   dev-python/wheel[${PYTHON_USEDEP}]
-   dev-python/zarr[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-python/anys[${PYTHON_USEDEP}]
-   dev-python/responses[${PYTHON_USEDEP}]
-   dev-python/pyfakefs[${PYTHON_USEDEP}]
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   media-libs/opencv[ffmpeg,${PYTHON_USEDEP}]
-   )
-"
-# Upstream might be amenable to dropping opencv:
-# https://github.com/dandi/dandi-cli/issues/944
-
-# Some tests require deep copy with git history
-# https://github.com/dandi/dandi-cli/issues/878#issuecomment-1021720299
-EPYTEST_DESELECT=(
-   "dandi/tests/test_utils.py::test_get_instance_dandi_with_api"
-   "dandi/tests/test_utils.py::test_get_instance_url"
-   "dandi/tests/test_utils.py::test_get_instance_cli_version_too_old"
-   "dandi/tests/test_utils.py::test_get_instance_bad_cli_version"
-)
-
-distutils_enable_tests pytest
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.37.0-pip-versioncheck.patch"
-   "${FILESDIR}/${PN}-0.37.0-pep517.patch"
-)
-
-src_prepare() {
-   if use etelemetry; then
-   default
-   else
-   eapply "${FILESDIR}/${PN}-0.28.0-no-etelemetry.patch"
-   default
-   sed -i "/etelemetry/d" setup.cfg
-   fi
-}
-
-python_test() {
-   export DANDI_TESTS_NONETWORK=1
-   epytest
-}

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.45.1.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.45.1.ebuild
deleted file mode 100644
index 52d57dfd5..0
--- a/dev-vcs/dandi-cli/dandi-cli-0.45.1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..10} )
-
-inherit distutils-r1
-
-MY_PN="dandi"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="DANDI command line client to facilitate common operations"
-HOMEPAGE="https://github.com/dandi/dandi-cli;
-#SRC_URI="https://github.com/dandi/dandi-cli/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test etelemetry"
-
-RDEPEND="
-   dev-python/appdirs[${PYTHON_USEDEP}]
-   dev-python/click[${PYTHON_USEDEP}]
-   dev-python/click-didyoumean[${PYTHON_USEDEP}]
-   =dev-python/dandi-schema-0.7*[${PYTHON_USEDEP}]
-   dev-python/fasteners[${PYTHON_USEDEP}]
-   dev-python/fscacher[${PYTHON_USEDEP}]
-   dev-python/humanize[${PYTHON_USEDEP}]
-   

[gentoo-commits] proj/sci:master commit in: dev-vcs/dandi-cli/

2023-02-16 Thread Horea Christian
commit: 6c37d67bb202777a5779c57e6bb7caf17f126a72
Author: Horea Christian  chymera  eu>
AuthorDate: Fri Feb 17 07:02:25 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Fri Feb 17 07:02:25 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6c37d67b

dev-vcs/dandi-cli: add 0.49.0

Signed-off-by: Horea Christian  chymera.eu>

 dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild | 80 +++
 1 file changed, 80 insertions(+)

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild
new file mode 100644
index 0..3fcb74d2d
--- /dev/null
+++ b/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..10} )
+
+inherit distutils-r1
+
+MY_PN="dandi"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="DANDI command line client to facilitate common operations"
+HOMEPAGE="https://github.com/dandi/dandi-cli;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test etelemetry"
+
+RDEPEND="
+   =dev-python/dandi-schema-0.7*[${PYTHON_USEDEP}]
+   >=dev-python/pydantic-1.9.0[${PYTHON_USEDEP}]
+   dev-python/appdirs[${PYTHON_USEDEP}]
+   dev-python/click-didyoumean[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/fasteners[${PYTHON_USEDEP}]
+   dev-python/fscacher[${PYTHON_USEDEP}]
+   dev-python/humanize[${PYTHON_USEDEP}]
+   dev-python/interleave[${PYTHON_USEDEP}]
+   dev-python/joblib[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   dev-python/keyrings-alt[${PYTHON_USEDEP}]
+   dev-python/nwbinspector[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   dev-python/pynwb[${PYTHON_USEDEP}]
+   dev-python/pyout[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/ruamel-yaml[${PYTHON_USEDEP}]
+   dev-python/semantic_version[${PYTHON_USEDEP}]
+   dev-python/tenacity[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   dev-python/zarr[${PYTHON_USEDEP}]
+   dev-python/zarr_checksum[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/anys[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   dev-python/pyfakefs[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   media-libs/opencv[ffmpeg,${PYTHON_USEDEP}]
+   )
+"
+# Upstream might be amenable to dropping opencv:
+# https://github.com/dandi/dandi-cli/issues/944
+
+S="${WORKDIR}/${MY_P}"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   if use etelemetry; then
+   default
+   else
+   eapply "${FILESDIR}/${PN}-0.28.0-no-etelemetry.patch"
+   default
+   sed -i "/etelemetry/d" setup.cfg
+   fi
+}
+
+python_test() {
+   export DANDI_TESTS_NONETWORK=1
+   epytest
+}



[gentoo-commits] proj/sci:master commit in: dev-python/zarr_checksum/

2023-02-16 Thread Horea Christian
commit: ebd73e1cb1e836778396b558322214a090f83468
Author: Horea Christian  chymera  eu>
AuthorDate: Fri Feb 17 06:59:08 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Fri Feb 17 06:59:08 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ebd73e1c

dev-python/zarr_checksum: new package, add 0.2.8

Signed-off-by: Horea Christian  chymera.eu>

 dev-python/zarr_checksum/metadata.xml  | 16 +
 .../zarr_checksum/zarr_checksum-0.2.8.ebuild   | 26 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/zarr_checksum/metadata.xml 
b/dev-python/zarr_checksum/metadata.xml
new file mode 100644
index 0..57bdec31a
--- /dev/null
+++ b/dev-python/zarr_checksum/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gen...@chymera.eu
+   Horea Christian
+   
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+   
+   dandi/zarr_checksum
+   zarr_checksum
+   
+

diff --git a/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild 
b/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild
new file mode 100644
index 0..47c21433e
--- /dev/null
+++ b/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..10} )
+DISTUTILS_USE_PEP517=poetry
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Calculatine zarr checksums from local or cloud storage"
+HOMEPAGE="https://github.com/dandi/zarr_checksum;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/boto3[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/pydantic[${PYTHON_USEDEP}]
+   dev-python/tqdm[${PYTHON_USEDEP}]
+   dev-python/zarr[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter-server-fileid/

2023-02-16 Thread Michał Górny
commit: 9733443650ed53ba28f6962a37b0d05872ae72d4
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:38:05 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:38:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97334436

dev-python/jupyter-server-fileid: Bump to 0.7.0

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

 dev-python/jupyter-server-fileid/Manifest  |  1 +
 .../jupyter-server-fileid-0.7.0.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/jupyter-server-fileid/Manifest 
b/dev-python/jupyter-server-fileid/Manifest
index cab6a7264a17..bd736b59242e 100644
--- a/dev-python/jupyter-server-fileid/Manifest
+++ b/dev-python/jupyter-server-fileid/Manifest
@@ -1 +1,2 @@
 DIST jupyter_server_fileid-0.6.0.tar.gz 50006 BLAKE2B 
d7fb42e6640354b58c488cdcc0310051fec3bb7d9318a230c6fc1f75ce4ab4c1d545b3d685e76529156861915457f3025d30aedc575d811f7850db1ed8a978d3
 SHA512 
96bfc5b7c3d60ca32d7956363aaef5905ae8ac5f8c5a2a520aa86bf5a9b0e89817e89f7587cedfc00ba4a1b97cb63191ed9f62fe9a91a2f3c989f0f3f6dd9f9a
+DIST jupyter_server_fileid-0.7.0.tar.gz 50918 BLAKE2B 
82e8dc6a52047bbd039f571441397a1a5e8b455dadfda108ee06d1c44e4b8e23d851c4ffcec353226b61184a7f6d238438e26df51c058a3ab3360c2b6dd5
 SHA512 
2f9dff16599e60e73e890705427953748587375eba46bba416ee9caba38065c058d08fb9aee27a737022a37b2c241fcc205ce185fe0d9e14d7aa0f813f44c73e

diff --git 
a/dev-python/jupyter-server-fileid/jupyter-server-fileid-0.7.0.ebuild 
b/dev-python/jupyter-server-fileid/jupyter-server-fileid-0.7.0.ebuild
new file mode 100644
index ..158c58539de2
--- /dev/null
+++ b/dev-python/jupyter-server-fileid/jupyter-server-fileid-0.7.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="An extension that maintains file IDs for documents in a running 
Jupyter Server"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter-server/jupyter_server_fileid/
+   https://pypi.org/project/jupyter-server-fileid/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/jupyter_server[${PYTHON_USEDEP}]
+   ~dev-python/jupyter_events-0.5.0[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/pytest_jupyter[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   distutils-r1_python_install_all
+   mv "${ED}/usr/etc" "${ED}/etc" || die
+}



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

2023-02-16 Thread Michał Górny
commit: e4f9af8651e6682e75685b3958ac3cdb40a931a6
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:27:47 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:37:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f9af86

dev-python/jaraco-path: Bump to 3.4.1

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

 dev-python/jaraco-path/Manifest |  1 +
 dev-python/jaraco-path/jaraco-path-3.4.1.ebuild | 31 +
 2 files changed, 32 insertions(+)

diff --git a/dev-python/jaraco-path/Manifest b/dev-python/jaraco-path/Manifest
index 7624d3f8e93d..cacb25d43ef0 100644
--- a/dev-python/jaraco-path/Manifest
+++ b/dev-python/jaraco-path/Manifest
@@ -1 +1,2 @@
 DIST jaraco.path-3.4.0.tar.gz 9574 BLAKE2B 
41c7b65be0f7f8ae93b2137f1527145ac91acde2a2d4e338cd68e35f7e5233e6a8dcfe9a0c07f36ae9cd2a00946031eb6b692cfaf1a299bf7a451f25b39cc8cc
 SHA512 
00a853bffdde4a931938b1d193898c039e253018f06ca9d102ee8e07f797b4c9dac33eb50243f714e3f3e151b6ce2fed7d47e1b82ab18d3e8715525b57040a6a
+DIST jaraco.path-3.4.1.tar.gz 10612 BLAKE2B 
bfef9b86a37671533d2834351ddd4b95f4eeb0eca6c581c08824f8206b8e1512ee38eb9134970be315be116b889a70ff2539d8162530ab50bc2e684c6b2a4648
 SHA512 
a41d592120f584943f271f01f3b80e5d06563b849605124ee28d0bfde906037f6c180b19e562f321f6b21eea8542094ef8b499875b0eb2d544fe73adef9b11c4

diff --git a/dev-python/jaraco-path/jaraco-path-3.4.1.ebuild 
b/dev-python/jaraco-path/jaraco-path-3.4.1.ebuild
new file mode 100644
index ..dadb7c5aad3a
--- /dev/null
+++ b/dev-python/jaraco-path/jaraco-path-3.4.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Miscellaneous path functions"
+HOMEPAGE="
+   https://github.com/jaraco/jaraco.path/
+   https://pypi.org/project/jaraco.path/
+"
+SRC_URI="$(pypi_sdist_url --no-normalize "${PN/-/.}")"
+S=${WORKDIR}/${P/-/.}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest tests
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_server_fileid/, dev-python/jupyter_server_ydoc/, ...

2023-02-16 Thread Michał Górny
commit: 865a7a73ba28310620d7d7481a9f031440d3a273
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:31:50 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:37:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=865a7a73

Rename dev-python/{jupyter_server_fileid → jupyter-server-fileid}

Upstream normalizes on hyphens and so should we.  This corrects
the project name in SRC_URI, and the normalized sdist filename renames
the same.

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

 dev-python/{jupyter_server_fileid => jupyter-server-fileid}/Manifest| 0
 .../jupyter-server-fileid-0.6.0-r1.ebuild}  | 0
 .../{jupyter_server_fileid => jupyter-server-fileid}/metadata.xml   | 0
 dev-python/jupyter_server_ydoc/jupyter_server_ydoc-0.6.1.ebuild | 2 +-
 dev-python/jupyter_server_ydoc/jupyter_server_ydoc-0.7.0.ebuild | 2 +-
 profiles/updates/1Q-2023| 1 +
 6 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-python/jupyter_server_fileid/Manifest 
b/dev-python/jupyter-server-fileid/Manifest
similarity index 100%
rename from dev-python/jupyter_server_fileid/Manifest
rename to dev-python/jupyter-server-fileid/Manifest

diff --git 
a/dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild 
b/dev-python/jupyter-server-fileid/jupyter-server-fileid-0.6.0-r1.ebuild
similarity index 100%
rename from 
dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild
rename to dev-python/jupyter-server-fileid/jupyter-server-fileid-0.6.0-r1.ebuild

diff --git a/dev-python/jupyter_server_fileid/metadata.xml 
b/dev-python/jupyter-server-fileid/metadata.xml
similarity index 100%
rename from dev-python/jupyter_server_fileid/metadata.xml
rename to dev-python/jupyter-server-fileid/metadata.xml

diff --git a/dev-python/jupyter_server_ydoc/jupyter_server_ydoc-0.6.1.ebuild 
b/dev-python/jupyter_server_ydoc/jupyter_server_ydoc-0.6.1.ebuild
index d9f80a6c8620..d767a50638f0 100644
--- a/dev-python/jupyter_server_ydoc/jupyter_server_ydoc-0.6.1.ebuild
+++ b/dev-python/jupyter_server_ydoc/jupyter_server_ydoc-0.6.1.ebuild
@@ -22,7 +22,7 @@ KEYWORDS="~amd64"
 RDEPEND="

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

2023-02-16 Thread Michał Górny
commit: 0cca2cddfddf4dbf8c1da587616cd4ccaf4b07f1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:29:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:37:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cca2cdd

dev-python/stripe: Bump to 5.2.0

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

 dev-python/stripe/Manifest|  1 +
 dev-python/stripe/stripe-5.2.0.ebuild | 70 +++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 54449a18910f..3906141145f5 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -1,3 +1,4 @@
 DIST stripe-5.0.0.tar.gz 267241 BLAKE2B 
6b4a58a355baf2d16d6de8667d1dff655c3334b58933c6172b25963f90bf072ebb5fae197faafd69285ceaaf06ba952c7012c35222df873d0453ec9fcee45cd5
 SHA512 
3d782abd3d6983734b6248fcb44cb69609475e14b820062882439c11ba8ba64e19f3db7984902157adaf0a80f9c26d18e7fbe414eb27bfeda95a7fae78a07577
 DIST stripe-5.1.0.tar.gz 267508 BLAKE2B 
973f286c1a6a6703e903d65267465def0a99c15e65b034a690f12d51e6572412f1007eb8fa7ba9df41f4450e09c8b0584a1ce472d0815757ef1e402021daec67
 SHA512 
1afe76180922bfdd90c19d9a6326a98a9cc8e138fc9bb26c42f245373f8b4b93bc0144d3c41e0fd5f278fe425f6bb219cda7d4f993db845756de22c0047cb228
 DIST stripe-5.1.1.tar.gz 267508 BLAKE2B 
da7918aeaa50dcb0e02274a93d39db16cc02b185597b00b442437050df3842c4d9dcbf3477015b7166837845fe6d2f9f9b79fc05ace118c985254545d424b1d9
 SHA512 
119af52d0a3548dc73a14b3de84cf9b8c465296386b045b7aa23e0db6a071f2d03e6d445c0581863055497378b2a1169bd70119eb4d5ecc62382968da2ef
+DIST stripe-5.2.0.tar.gz 267950 BLAKE2B 
b7312e4c7e56803fdd64507602df3527efcc964aa7bb6deae59d00df75c72c47cf179382ce6b90ffab5089e7fce9b2e03de0748a091b36dd25d93d8cf6b1d119
 SHA512 
e928487b690a2c7bce9013ba988ff5a1d9b0ef4b0be56852385925fd5fa4a1b9e655e05b7fa2728d38ed7834eebe621b883851e6a6db625f388866f32c9f8a15

diff --git a/dev-python/stripe/stripe-5.2.0.ebuild 
b/dev-python/stripe/stripe-5.2.0.ebuild
new file mode 100644
index ..324896ea5925
--- /dev/null
+++ b/dev-python/stripe/stripe-5.2.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Stripe python bindings"
+HOMEPAGE="
+   https://github.com/stripe/stripe-python/
+   https://pypi.org/project/stripe/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/requests-2.20[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-util/stripe-mock-0.151.0
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   net-misc/curl
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
+
+python_test() {
+   epytest tests
+}
+
+src_test() {
+   local stripe_mock_port=12111
+   local stripe_mock_max_port=12121
+   local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
+   # Try to start stripe-mock until we find a free port
+   while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
+   ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
+   stripe-mock --http-port ${stripe_mock_port} &> 
"${stripe_mock_logfile}" &
+   local stripe_mock_pid=$!
+   sleep 2
+   # Did stripe-mock start?
+   curl --fail -u "sk_test_123:" \
+   http://127.0.0.1:${stripe_mock_port}/v1/customers &> 
/dev/null
+   eend $? "Port ${stripe_mock_port} unavailable"
+   if [[ $? -eq 0 ]]; then
+   einfo "stripe-mock running on port ${stripe_mock_port}"
+   break
+   fi
+   (( stripe_mock_port++ ))
+   done
+   if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
+   eerror "Unable to start stripe-mock for tests"
+   die "Please see the logfile located at: ${stripe_mock_logfile}"
+   fi
+
+   local -x STRIPE_MOCK_PORT=${stripe_mock_port}
+   distutils-r1_src_test
+
+   # Tear down stripe-mock
+   kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
+}



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

2023-02-16 Thread Michał Górny
commit: 286928d8438886976491afc7974013079d29276a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:30:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:37:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=286928d8

dev-python/jupyter_server_fileid: Use pypi.eclass

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

 dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild 
b/dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild
index 18a6211f0e1d..158c58539de2 100644
--- a/dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild
+++ b/dev-python/jupyter_server_fileid/jupyter_server_fileid-0.6.0-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 DISTUTILS_USE_PEP517=hatchling
 PYTHON_COMPAT=( python3_{9..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="An extension that maintains file IDs for documents in a running 
Jupyter Server"
 HOMEPAGE="
@@ -14,7 +14,6 @@ HOMEPAGE="
https://github.com/jupyter-server/jupyter_server_fileid/
https://pypi.org/project/jupyter-server-fileid/
 "
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-notifyd/

2023-02-16 Thread Michał Górny
commit: c750c1d11c58ef1f4ebbcb6eef1104cb7af7700a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:22:09 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:37:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c750c1d1

xfce-extra/xfce4-notifyd: Remove old

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

 xfce-extra/xfce4-notifyd/Manifest  |  2 -
 .../xfce4-notifyd/xfce4-notifyd-0.7.2.ebuild   | 66 --
 .../xfce4-notifyd/xfce4-notifyd-0.7.3.ebuild   | 66 --
 3 files changed, 134 deletions(-)

diff --git a/xfce-extra/xfce4-notifyd/Manifest 
b/xfce-extra/xfce4-notifyd/Manifest
index cdb7deea007a..ed8a43adfdc5 100644
--- a/xfce-extra/xfce4-notifyd/Manifest
+++ b/xfce-extra/xfce4-notifyd/Manifest
@@ -1,4 +1,2 @@
 DIST xfce4-notifyd-0.6.5.tar.bz2 572193 BLAKE2B 
498c8eecfd884aa04230fea2ecca3b663f0d6b59b549cc5a56d43ac20a17d4f15a1bd1e3ce8d1681de7307d569096e169ada447d41f7889daad5a35c8a8f
 SHA512 
9953dd456520bd80e0d48da013703d7b976f953b9b41cd55f3ac236a74c55277d04f38a092e2a9024cd67cbcde3f3989daadf6b4f41e57c7e005c20f4acdf1ac
-DIST xfce4-notifyd-0.7.2.tar.bz2 576257 BLAKE2B 
69e0ac8fdbabc5c27788f0854e4fc35cd837eaba9632d84c9acbebe088d1c111723c2b763b6da29c69cb3e9dec925581bc4b12eeb58d3e0ecd3a065db4e4f919
 SHA512 
7a2a162db82f7760a455c32c5a5dc25eba6f747bb76da56bc49f5c37e1386416496fa7bc51fe010fe403e958a8ab665ae7359ed334589b0b55942dcccd370894
-DIST xfce4-notifyd-0.7.3.tar.bz2 587185 BLAKE2B 
42da6227d59d97c0693d27ba6ca682f59c0625587f3f115a8f548349df156dc012e555bd6b3eecbf792eb3b6aa2d86d99895a1d0987a2da581928b1c2c54a987
 SHA512 
525fcf5dfa8c4a2bf48b4276b19f5fd1d5010bdeacd52f6d9189aabf1d5fe2a79efa542796c62d62c6a7bfc83d7eddf3ed671fa171be96c255907b7c7f599bee
 DIST xfce4-notifyd-0.8.0.tar.bz2 612641 BLAKE2B 
4a368ba2dc8769586d6496ced8116a82e2ef548aa1e99ceb6066223a8c5a215089aed612909301d4bdc110d8172aae3274a988e4066b0b8d3d2fbd9135f8e373
 SHA512 
3b53036105fc194f87a4a76d5c5c578d0435bacf0fc10b5d0eeba37230cd76c9ce56cd30c840ee1d47baedffb1f1c1f2b8c88a0d6ca36207f0596ebc6ba75271

diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.7.2.ebuild 
b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.7.2.ebuild
deleted file mode 100644
index f08a5b934440..
--- a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.7.2.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="Notification daemon for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/apps/notifyd/start
-   https://gitlab.xfce.org/apps/xfce4-notifyd/
-"
-SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
-IUSE="sound wayland X"
-
-DEPEND="
-   >=dev-libs/glib-2.56.0:2
-   >=x11-libs/gtk+-3.22:3[wayland?,X?]
-   >=x11-libs/libnotify-0.7
-   >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
-   >=xfce-base/libxfce4util-4.12:=
-   >=xfce-base/xfce4-panel-4.12:=
-   >=xfce-base/xfconf-4.10:=
-   sound? (
-   >=media-libs/libcanberra-0.30[gtk3]
-   )
-   wayland? (
-   >=gui-libs/gtk-layer-shell-0.7.0
-   )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   dev-util/gdbus-codegen
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable wayland gdk-wayland)
-   $(use_enable wayland gtk-layer-shell)
-   $(use_enable X gdk-x11)
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.7.3.ebuild 
b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.7.3.ebuild
deleted file mode 100644
index f08a5b934440..
--- a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.7.3.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="Notification daemon for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/apps/notifyd/start
-   https://gitlab.xfce.org/apps/xfce4-notifyd/
-"
-SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
-IUSE="sound wayland X"
-
-DEPEND="
-   >=dev-libs/glib-2.56.0:2
-   >=x11-libs/gtk+-3.22:3[wayland?,X?]
-   >=x11-libs/libnotify-0.7
-   >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
-   >=xfce-base/libxfce4util-4.12:=
-   >=xfce-base/xfce4-panel-4.12:=
-   >=xfce-base/xfconf-4.10:=
-   sound? (
-   

[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-notifyd/

2023-02-16 Thread Michał Górny
commit: 95f94c7c89da7140ecd457e6bcce1747cd9e2c30
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:22:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:37:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95f94c7c

xfce-extra/xfce4-notifyd: Bump to 0.8.1

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

 xfce-extra/xfce4-notifyd/Manifest  |  1 +
 .../xfce4-notifyd/xfce4-notifyd-0.8.1.ebuild   | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/xfce-extra/xfce4-notifyd/Manifest 
b/xfce-extra/xfce4-notifyd/Manifest
index ed8a43adfdc5..03f96542d3d2 100644
--- a/xfce-extra/xfce4-notifyd/Manifest
+++ b/xfce-extra/xfce4-notifyd/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-notifyd-0.6.5.tar.bz2 572193 BLAKE2B 
498c8eecfd884aa04230fea2ecca3b663f0d6b59b549cc5a56d43ac20a17d4f15a1bd1e3ce8d1681de7307d569096e169ada447d41f7889daad5a35c8a8f
 SHA512 
9953dd456520bd80e0d48da013703d7b976f953b9b41cd55f3ac236a74c55277d04f38a092e2a9024cd67cbcde3f3989daadf6b4f41e57c7e005c20f4acdf1ac
 DIST xfce4-notifyd-0.8.0.tar.bz2 612641 BLAKE2B 
4a368ba2dc8769586d6496ced8116a82e2ef548aa1e99ceb6066223a8c5a215089aed612909301d4bdc110d8172aae3274a988e4066b0b8d3d2fbd9135f8e373
 SHA512 
3b53036105fc194f87a4a76d5c5c578d0435bacf0fc10b5d0eeba37230cd76c9ce56cd30c840ee1d47baedffb1f1c1f2b8c88a0d6ca36207f0596ebc6ba75271
+DIST xfce4-notifyd-0.8.1.tar.bz2 548158 BLAKE2B 
d512642d93e486aaec740eaa3b9b7aaa5875dfa6a16c328af8318d616cd3acd2bb891747782431be6237fe3090b80fc9d158866deccef1d99a3e6bf16fbb964b
 SHA512 
555261a5931030e50686c4fb86fe62c5455ecba3ed6251851e0fae8652fbc85cb3c4fff3444a3dd6df3d9c44955d4f3049720c04635560170e3eb2c98aa95122

diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.8.1.ebuild 
b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.8.1.ebuild
new file mode 100644
index ..35fa954a9295
--- /dev/null
+++ b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.8.1.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Notification daemon for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/apps/notifyd/start
+   https://gitlab.xfce.org/apps/xfce4-notifyd/
+"
+SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="sound wayland X"
+
+DEPEND="
+   >=dev-db/sqlite-3.34:3
+   >=dev-libs/glib-2.68.0:2
+   >=x11-libs/gtk+-3.22:3[wayland?,X?]
+   >=x11-libs/libnotify-0.7
+   >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
+   >=xfce-base/libxfce4util-4.12:=
+   >=xfce-base/xfce4-panel-4.12:=
+   >=xfce-base/xfconf-4.10:=
+   sound? (
+   >=media-libs/libcanberra-0.30[gtk3]
+   )
+   wayland? (
+   >=gui-libs/gtk-layer-shell-0.7.0
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   dev-util/gdbus-codegen
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable wayland gdk-wayland)
+   $(use_enable wayland gtk-layer-shell)
+   $(use_enable X gdk-x11)
+   )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



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

2023-02-16 Thread Sam James
commit: 96c9514787bcf0c0318053db1a70a39f530a043a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:47:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c95147

net-misc/httpstat: enable py3.11

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

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

diff --git a/net-misc/httpstat/httpstat-1.3.1.ebuild 
b/net-misc/httpstat/httpstat-1.3.1.ebuild
index 9e8d0bbbcdc6..381ef2db3345 100644
--- a/net-misc/httpstat/httpstat-1.3.1.ebuild
+++ b/net-misc/httpstat/httpstat-1.3.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} pypy3 )
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
 inherit distutils-r1
 
 DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and 
clarity"



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

2023-02-16 Thread Sam James
commit: 731c306909c9740025426bdc24a4d4a648887d62
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:24:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:25:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=731c3069

net-misc/httpstat: PEP517

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

 net-misc/httpstat/Manifest |  1 +
 net-misc/httpstat/httpstat-1.3.1-r1.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/net-misc/httpstat/Manifest b/net-misc/httpstat/Manifest
index 7628631d9551..6c21f9db0e5c 100644
--- a/net-misc/httpstat/Manifest
+++ b/net-misc/httpstat/Manifest
@@ -1 +1,2 @@
+DIST httpstat-1.3.1.gh.tar.gz 97691 BLAKE2B 
f7a5388c3891c1caac654c6c9be425864e2a037eba2e12229ec72c847864f7be23b64d5450ebb42f976335f5b6ca878f1ee555ee3b2178c1a10c5969f883604d
 SHA512 
bca91afe14d50af37c741ca4baa7d3843b010bb6dc012c72bd28c43f59099c20628cadc4dd80652dffeb1d26fb07f5cf156a3f6bf9eba1f6e121d4b250020b46
 DIST httpstat-1.3.1.tar.gz 97691 BLAKE2B 
f7a5388c3891c1caac654c6c9be425864e2a037eba2e12229ec72c847864f7be23b64d5450ebb42f976335f5b6ca878f1ee555ee3b2178c1a10c5969f883604d
 SHA512 
bca91afe14d50af37c741ca4baa7d3843b010bb6dc012c72bd28c43f59099c20628cadc4dd80652dffeb1d26fb07f5cf156a3f6bf9eba1f6e121d4b250020b46

diff --git a/net-misc/httpstat/httpstat-1.3.1-r1.ebuild 
b/net-misc/httpstat/httpstat-1.3.1-r1.ebuild
new file mode 100644
index ..da4d547a2347
--- /dev/null
+++ b/net-misc/httpstat/httpstat-1.3.1-r1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} pypy3 )
+inherit distutils-r1
+
+DESCRIPTION="httpstat visualizes cURL statistics in a way of beauty and 
clarity"
+HOMEPAGE="https://github.com/reorx/httpstat;
+SRC_URI="https://github.com/reorx/${PN}/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="net-misc/curl:*"
+
+# Requires access to google.com and http2.akamai.com
+RESTRICT="test"
+PROPERTIES="test_network"
+
+PATCHES=( "${FILESDIR}"/${PN}-1.2.1-gentoo-tests.patch )
+
+python_test() {
+   ./httpstat_test.sh || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse/

2023-02-16 Thread Sam James
commit: 0bc926631d25ed9724162f343c4884888121c1ee
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:08:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:25:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bc92663

sys-fs/fuse: drop 3.13.0-r1, 3.13.1

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

 sys-fs/fuse/Manifest  |  1 -
 sys-fs/fuse/fuse-3.13.0-r1.ebuild | 72 ---
 sys-fs/fuse/fuse-3.13.1.ebuild| 72 ---
 3 files changed, 145 deletions(-)

diff --git a/sys-fs/fuse/Manifest b/sys-fs/fuse/Manifest
index 67c3af1eaa32..d4da09e03f9c 100644
--- a/sys-fs/fuse/Manifest
+++ b/sys-fs/fuse/Manifest
@@ -1,5 +1,4 @@
 DIST fuse-2.9.9.tar.gz 1813177 BLAKE2B 
9e9141380bda46eb0bcce325c6fd293fe3844fe884a4952bb38d4b89dc48b728ffcc891038b3a7a861f05acfacce9dd7bb0e11d600609f3ad0ab278ccbe98847
 SHA512 
3d82fafd04f2924299bb09d2bb144935fa004a43fb9a6568e2e1cc5a60fded2efa1711029a0d7f12b3e6e4501f7217f2ee3545646d89da8dece083cb390f23e2
 DIST fuse-3.12.0.tar.xz 3206368 BLAKE2B 
9f7df324f5c28480e48264c53c23fd2afc372592aab586bebdee38a809881603c93d05d0ca20c9007ba4b77efdf391705a93a0a6a12b218c9bd5541aa6a5275d
 SHA512 
b66232785fbe83ec32a9779542d085dc2c19f1fe0655e5f1e22e1a7add69795df40eb58da256a963537e64a9bf798ed8dfbc678f977fdd22567c5befa5b6ca04
-DIST fuse-3.13.0.tar.xz 3847800 BLAKE2B 
b9428f27c431c30deca48cf4b76761c120ebbdb6d22789c19fa25ffbff47c752690e7d0a0b28b70bff2b8f9063272adc65dc084ee45036548452ae891fb77ab2
 SHA512 
762262ed45b3e139481e39e7c7aae1df4347064fe100538138467f7567ae04f46fca19e6dac76f046cc07d2c4736f34ddb3780e067a48165e0d1fdd1153b66b1
 DIST fuse-3.13.1.tar.xz 4011224 BLAKE2B 
b8e6cb54bc88e2133a90e9a1dce549f81ce1503906424dd36825cfdfc2b7340217b84176c9e9c707403ea4fe0e0a10a723613bb475c95fb59ff0cb35e7180c60
 SHA512 
7630e17a68d81e1ac66c9e8937bc9e1a99d8887d48639cbd5a96d04c7f687729dbab71a875d90bb77bdf361a154f195223f34c3438ab149630286bf87238c679
 DIST iconv.m4.bz2 3057 BLAKE2B 
9d8f7637d87bfcea1b60f3ea11e162aecf391b3f4579a3b85afb01735f56bfbae363a7e781279f3b2bed0d1dd3336f7d0678d3b1d59004824d7d0ca848dceb6e
 SHA512 
9899368b8acc06e216a7a548b83a894f780e152a02612cd52af02b5c3f2ff38e2c36e77bda300587f81c3d74c90addec8066885216fa0e74f3f3280a383d2b55

diff --git a/sys-fs/fuse/fuse-3.13.0-r1.ebuild 
b/sys-fs/fuse/fuse-3.13.0-r1.ebuild
deleted file mode 100644
index 548762c989b8..
--- a/sys-fs/fuse/fuse-3.13.0-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit flag-o-matic meson-multilib udev python-any-r1
-
-DESCRIPTION="An interface for filesystems implemented in userspace"
-HOMEPAGE="https://github.com/libfuse/libfuse;
-SRC_URI="https://github.com/libfuse/libfuse/releases/download/${P}/${P}.tar.xz;
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-IUSE="+suid test"
-RESTRICT="!test? ( test ) test? ( userpriv )"
-
-BDEPEND="virtual/pkgconfig
-   test? (
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep 'dev-python/pytest[${PYTHON_USEDEP}]')
-   )"
-RDEPEND=">=sys-fs/fuse-common-3.3.0-r1"
-
-DOCS=( AUTHORS ChangeLog.rst README.md doc/README.NFS doc/kernel.txt )
-
-python_check_deps() {
-   python_has_version "dev-python/pytest[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-multilib_src_configure() {
-   # bug #853058
-   filter-lto
-
-   local emesonargs=(
-   $(meson_use test examples)
-   $(meson_use test tests)
-   -Duseroot=false
-   -Dudevrulesdir="${EPREFIX}$(get_udevdir)/rules.d"
-   )
-   meson_src_configure
-}
-
-src_test() {
-   if has sandbox ${FEATURES}; then
-   ewarn "Sandbox enabled, skipping tests"
-   else
-   multilib-minimal_src_test
-   fi
-}
-
-multilib_src_test() {
-   epytest
-}
-
-multilib_src_install_all() {
-   # Installed via fuse-common
-   rm -r "${ED}"{/etc,$(get_udevdir)} || die
-   rm -rf "${ED}"/etc || die
-
-   # useroot=false prevents the build system from doing this.
-   use suid && fperms u+s /usr/bin/fusermount3
-
-   # manually install man pages to respect compression
-   rm -r "${ED}"/usr/share/man || die
-   doman doc/{fusermount3.1,mount.fuse3.8}
-}

diff --git a/sys-fs/fuse/fuse-3.13.1.ebuild b/sys-fs/fuse/fuse-3.13.1.ebuild
deleted file mode 100644
index 548762c989b8..
--- a/sys-fs/fuse/fuse-3.13.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit flag-o-matic meson-multilib udev python-any-r1
-
-DESCRIPTION="An interface for 

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

2023-02-16 Thread Sam James
commit: 94caca5a1c8aeb1f43c8bfcdbfe396a8f62e6155
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:43:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94caca5a

mail-filter/pyzor: enable py3.11, use epytest

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

 mail-filter/pyzor/pyzor-1.0.0_p20211223.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mail-filter/pyzor/pyzor-1.0.0_p20211223.ebuild 
b/mail-filter/pyzor/pyzor-1.0.0_p20211223.ebuild
index 2f9075743d61..a2e78f468788 100644
--- a/mail-filter/pyzor/pyzor-1.0.0_p20211223.ebuild
+++ b/mail-filter/pyzor/pyzor-1.0.0_p20211223.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 MY_COMMIT="2dbe627c1ec245db206cdc73bf1f9d785f1512d8"
@@ -42,7 +42,7 @@ REQUIRED_USE="
 distutils_enable_sphinx docs
 
 python_test() {
-   pytest -vv tests/unit || die "Tests fail with ${EPYTHON}"
+   epytest -vv tests/unit
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/, media-tv/plex-media-server/files/

2023-02-16 Thread Sam James
commit: 71de81b880d7349ce048fa3e11ba0da762f70bb7
Author: Joe Kappus  wt  gd>
AuthorDate: Sun Feb  5 09:57:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71de81b8

media-tv/plex-media-server: readd hardened support, initscript, fix version 
reporting

These changes will bring us in line with plex-overlay.

- start_pms is hacky and removed, we shouldn't ship it.
- the service
- we had pax marking, someone removed it, but it was requested before so 
readding.
- openrc and systemd support
- Lift mirror restriction (again): https://bugs.gentoo.org/600696

Co-authored-by: Sam James  cmpct.info>
Signed-off-by: Joe Kappus  wt.gd>
Signed-off-by: Sam James  gentoo.org>

 .../files/plex-media-server.conf.d |  8 +++
 .../files/plex-media-server.init.d | 16 +
 .../files/plex-media-server.service.patch  | 10 +++
 .../plex-media-server-1.30.2.6563-r1.ebuild| 84 ++
 4 files changed, 118 insertions(+)

diff --git a/media-tv/plex-media-server/files/plex-media-server.conf.d 
b/media-tv/plex-media-server/files/plex-media-server.conf.d
new file mode 100644
index ..bd683b0063b9
--- /dev/null
+++ b/media-tv/plex-media-server/files/plex-media-server.conf.d
@@ -0,0 +1,8 @@
+# Config file for /etc/init.d/plex-media-server
+
+PLEX_PIDFILE="/var/run/plex-media-server.pid"
+PLEX_OUTLOG="/var/log/pms/out.log"
+PLEX_ERRLOG="/var/log/pms/err.log"
+PLEX_USER="plex"
+# PLEX_SCRIPT="/usr/sbin/start_pms"
+PLEX_SCRIPT="/usr/lib/plexmediaserver/Plex Media Server"

diff --git a/media-tv/plex-media-server/files/plex-media-server.init.d 
b/media-tv/plex-media-server/files/plex-media-server.init.d
new file mode 100644
index ..26f3941a3b0e
--- /dev/null
+++ b/media-tv/plex-media-server/files/plex-media-server.init.d
@@ -0,0 +1,16 @@
+#!/sbin/openrc-run
+
+start() {
+   ebegin "Starting Plex Media Server"
+   start-stop-daemon -S -m -p ${PLEX_PIDFILE} -1 ${PLEX_OUTLOG} -2 
${PLEX_ERRLOG} --quiet -u ${PLEX_USER} -N -5 -b --exec "${PLEX_SCRIPT}"
+   eend $?
+}
+
+stop() {
+   ebegin "Stopping Plex Media Server"
+   kill -- -`cat ${PLEX_PIDFILE}`
+
+   # Remove stale pid file since this is a dirty solution
+   rm ${PLEX_PIDFILE}
+   eend $?
+}

diff --git a/media-tv/plex-media-server/files/plex-media-server.service.patch 
b/media-tv/plex-media-server/files/plex-media-server.service.patch
new file mode 100644
index ..a2bf14ed30cd
--- /dev/null
+++ b/media-tv/plex-media-server/files/plex-media-server.service.patch
@@ -0,0 +1,10 @@
+--- ./usr/lib/plexmediaserver/lib/plexmediaserver.service.old  2020-11-22 
18:18:21.258165393 +0100
 ./usr/lib/plexmediaserver/lib/plexmediaserver.service  2020-11-22 
18:18:35.864602444 +0100
+@@ -27,5 +27,6 @@
+ export PLEX_MEDIA_SERVER_INFO_VENDOR="$(grep ^NAME= /etc/os-release | awk -F= 
"{print \\$2}" | tr -d \\" )"; \
+ export PLEX_MEDIA_SERVER_INFO_DEVICE="PC"; \
+ export PLEX_MEDIA_SERVER_INFO_MODEL="$(uname -m)"; \
+-export PLEX_MEDIA_SERVER_INFO_PLATFORM_VERSION="$(grep ^VERSION= 
/etc/os-release | awk -F= "{print \\$2}" | tr -d \\" )"; \
++export GENTOO_PROFILE="`readlink /etc/portage/make.profile`"; \
++export 
PLEX_MEDIA_SERVER_INFO_PLATFORM_VERSION="$${GENTOO_PROFILE#.*/profiles/}"; \
+ exec "/usr/lib/plexmediaserver/Plex Media Server"'

diff --git a/media-tv/plex-media-server/plex-media-server-1.30.2.6563-r1.ebuild 
b/media-tv/plex-media-server/plex-media-server-1.30.2.6563-r1.ebuild
new file mode 100644
index ..e95da8c48f94
--- /dev/null
+++ b/media-tv/plex-media-server/plex-media-server-1.30.2.6563-r1.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1 systemd unpacker pax-utils
+
+MY_PV="${PV}-3d4dc0cce"
+MY_URI="https://downloads.plex.tv/plex-media-server-new;
+
+DESCRIPTION="Free media library that is intended for use with a plex client"
+HOMEPAGE="https://www.plex.tv/;
+SRC_URI="
+   amd64? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_amd64.deb )
+   arm64? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_arm64.deb )
+   x86? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_i386.deb )
+"
+S="${WORKDIR}"
+
+LICENSE="Plex"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64 ~x86"
+RESTRICT="bindist"
+
+DEPEND="
+   acct-group/plex
+   acct-user/plex"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}.service.patch"
+)
+
+QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
+QA_PREBUILT="*"
+QA_MULTILIB_PATHS=(
+   "usr/lib/plexmediaserver/lib/.*"
+   "usr/lib/plexmediaserver/Resources/Python/lib/python2.7/.*"
+   
"usr/lib/plexmediaserver/Resources/Python/lib/python2.7/lib-dynload/_hashlib.so"
+)
+
+BINS_TO_PAX_MARK=(
+   "${ED}/usr/lib/plexmediaserver/Plex 

[gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/

2023-02-16 Thread Sam James
commit: ce1eed1f999e2adc124d0443e91149cea55d9c11
Author: Joe Kappus  wt  gd>
AuthorDate: Fri Feb 17 05:40:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce1eed1f

media-tv/plex-media-server: drop 1.25.8.5663

Signed-off-by: Joe Kappus  wt.gd>
Closes: https://github.com/gentoo/gentoo/pull/29433
Signed-off-by: Sam James  gentoo.org>

 media-tv/plex-media-server/Manifest|  2 -
 .../plex-media-server-1.25.8.5663.ebuild   | 71 --
 2 files changed, 73 deletions(-)

diff --git a/media-tv/plex-media-server/Manifest 
b/media-tv/plex-media-server/Manifest
index f31f18bbf3ad..9e5fe814787d 100644
--- a/media-tv/plex-media-server/Manifest
+++ b/media-tv/plex-media-server/Manifest
@@ -1,5 +1,3 @@
-DIST plexmediaserver_1.25.8.5663-e071c3d62_amd64.deb 78680708 BLAKE2B 
a688096ce5462ce6a49781464727e6b6a608a71935f251480214a6ab8308cefde62d645d07a0512857e04bc7301ab580d69a183261e32565d8ec280e176effea
 SHA512 
459a9a7bf47dc8caef3b9e72045bc039eb8482d8ae8aeb434239a1ced3ed2a3bd6caf8edea3a5306af0f5ba81ee5af5c8987db837c30e69e5c321e86f1c86df9
-DIST plexmediaserver_1.25.8.5663-e071c3d62_i386.deb 70296296 BLAKE2B 
86ae0969135af2e4456c7897b68eae1961a48c4e880a62cd37f286271b0857fb83784ee963b69471121957e4c952d941172107875af658c3fd687a520a2c65ad
 SHA512 
e3d2524e2dfbf411eb0a1626af18c4f346a41c1b83ca9dc738cff350978697fdfe3a16773815299d08f35b861f2ae9e3ca80c443230969d8aeedf47a632b7586
 DIST plexmediaserver_1.29.0.6244-819d3678c_amd64.deb 84783212 BLAKE2B 
038183f0b3d59e51c0ed83b7c3a4c0b5250db9ff6a61e3f2f97ec0793b57ace2f8ac458a507f48d4a7b11a263c4c74cb5a96c7cb8a6afa6c4727104cca0a5b96
 SHA512 
82b1b87a17d787efb5a9bb88161ca2e622af6fa077c12738a2c43ff170d48377da9ceb249c2bbc7d23b76199e25c6d531b6ca2c7ad4c936ca29b76d95f097d06
 DIST plexmediaserver_1.29.0.6244-819d3678c_arm64.deb 74021480 BLAKE2B 
933574b68a04c35fd49d0bb4d903ea830511d95ee3ab50d2971948779b041d971548dac9d221d98acb0441e6d3c848e5015176746d86008ab597816a9e3fda68
 SHA512 
999ed4459ce9476e717287a0e20f6124cea70e067949c55ffb6104d678b016aa43e45949ec1bd12f67c33c483bdc0c93a5918f36f1b62d601a75c6509563692d
 DIST plexmediaserver_1.29.0.6244-819d3678c_i386.deb 77619992 BLAKE2B 
e15181a7032cda861629d4433a270f71d73344332e7a87a98059172437e619aa13c3d5650e7ea422a576e218783490b940912937133eec3abf2e38b8e19a0d15
 SHA512 
dfa676ee6d9192c694420db8c28623747b7fd1ed45c8e0c09fd2dc5c17e089edcbd8f68457b8ba0e38cf68fa70b7e9a39d3885fac0197d8169d6be67a6e6107e

diff --git a/media-tv/plex-media-server/plex-media-server-1.25.8.5663.ebuild 
b/media-tv/plex-media-server/plex-media-server-1.25.8.5663.ebuild
deleted file mode 100644
index cc1063965958..
--- a/media-tv/plex-media-server/plex-media-server-1.25.8.5663.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit readme.gentoo-r1 systemd unpacker
-
-MY_PV="${PV}-e071c3d62"
-MY_URI="https://downloads.plex.tv/plex-media-server-new;
-
-DESCRIPTION="Free media library that is intended for use with a plex client"
-HOMEPAGE="https://www.plex.tv/;
-SRC_URI="
-   amd64? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_amd64.deb )
-   x86? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_i386.deb )"
-S="${WORKDIR}"
-
-LICENSE="Plex"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-RESTRICT="mirror bindist"
-
-DEPEND="
-   acct-group/plex
-   acct-user/plex"
-RDEPEND="${DEPEND}"
-
-QA_PREBUILT="*"
-QA_MULTILIB_PATHS=(
-   "usr/lib/plexmediaserver/lib/.*"
-   "usr/lib/plexmediaserver/Resources/Python/lib/python2.7/.*"
-   
"usr/lib/plexmediaserver/Resources/Python/lib/python2.7/lib-dynload/_hashlib.so"
-)
-
-src_install() {
-   # Remove Debian specific files
-   rm -r "usr/share/doc" || die
-
-   # Add startup wrapper
-   dosbin "${FILESDIR}/start_pms"
-
-   # Add user config file
-   mkdir -p "${ED}/etc/default" || die
-   cp usr/lib/plexmediaserver/lib/plexmediaserver.default 
"${ED}"/etc/default/plexmediaserver || die
-
-   # Copy main files over to image and preserve permissions so it is 
portable
-   cp -rp usr/ "${ED}" || die
-
-   # Make sure the logging directory is created
-   keepdir /var/log/pms
-   fowners plex:plex /var/log/pms
-
-   keepdir /var/lib/plexmediaserver
-   fowners plex:plex /var/lib/plexmediaserver
-
-   newinitd usr/lib/plexmediaserver/lib/plexmediaserver.init "${PN}"
-
-   systemd_dounit 
"${ED}"/usr/lib/plexmediaserver/lib/plexmediaserver.service
-   keepdir /var/lib/plexmediaserver
-
-   # Adds the precompiled plex libraries to the revdep-rebuild's mask list
-   # so it doesn't try to rebuild libraries that can't be rebuilt.
-   insinto /etc/revdep-rebuild
-   doins "${FILESDIR}"/80plexmediaserver
-
-   readme.gentoo_create_doc
-}
-
-pkg_postinst() {
-   

[gentoo-commits] repo/gentoo:master commit in: sys-fs/fuse/

2023-02-16 Thread Sam James
commit: 922709743c1af3f2c370262f489c094a95204c7e
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:08:28 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:25:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92270974

sys-fs/fuse: enable py3.11

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

 sys-fs/fuse/fuse-3.12.0.ebuild| 2 +-
 sys-fs/fuse/fuse-3.13.0-r1.ebuild | 2 +-
 sys-fs/fuse/fuse-3.13.1-r1.ebuild | 2 +-
 sys-fs/fuse/fuse-3.13.1.ebuild| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-fs/fuse/fuse-3.12.0.ebuild b/sys-fs/fuse/fuse-3.12.0.ebuild
index 9386ed44f076..de516e58dd48 100644
--- a/sys-fs/fuse/fuse-3.12.0.ebuild
+++ b/sys-fs/fuse/fuse-3.12.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit meson-multilib udev python-any-r1
 
 DESCRIPTION="An interface for filesystems implemented in userspace"

diff --git a/sys-fs/fuse/fuse-3.13.0-r1.ebuild 
b/sys-fs/fuse/fuse-3.13.0-r1.ebuild
index a6c210da4b63..548762c989b8 100644
--- a/sys-fs/fuse/fuse-3.13.0-r1.ebuild
+++ b/sys-fs/fuse/fuse-3.13.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit flag-o-matic meson-multilib udev python-any-r1
 
 DESCRIPTION="An interface for filesystems implemented in userspace"

diff --git a/sys-fs/fuse/fuse-3.13.1-r1.ebuild 
b/sys-fs/fuse/fuse-3.13.1-r1.ebuild
index 2d12bd5021b5..32261573b414 100644
--- a/sys-fs/fuse/fuse-3.13.1-r1.ebuild
+++ b/sys-fs/fuse/fuse-3.13.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit flag-o-matic meson-multilib udev python-any-r1
 
 DESCRIPTION="An interface for filesystems implemented in userspace"

diff --git a/sys-fs/fuse/fuse-3.13.1.ebuild b/sys-fs/fuse/fuse-3.13.1.ebuild
index a6c210da4b63..548762c989b8 100644
--- a/sys-fs/fuse/fuse-3.13.1.ebuild
+++ b/sys-fs/fuse/fuse-3.13.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit flag-o-matic meson-multilib udev python-any-r1
 
 DESCRIPTION="An interface for filesystems implemented in userspace"



[gentoo-commits] repo/gentoo:master commit in: media-tv/plex-media-server/

2023-02-16 Thread Sam James
commit: 851d560188616dd07a74fb2fba0079b4da68fb2f
Author: Joe Kappus  wt  gd>
AuthorDate: Fri Feb 17 05:36:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=851d5601

media-tv/plex-media-server: add 1.31.0.6654

Signed-off-by: Joe Kappus  wt.gd>
Signed-off-by: Sam James  gentoo.org>

 media-tv/plex-media-server/Manifest|  3 +
 .../plex-media-server-1.31.0.6654.ebuild   | 84 ++
 2 files changed, 87 insertions(+)

diff --git a/media-tv/plex-media-server/Manifest 
b/media-tv/plex-media-server/Manifest
index 6eaf225850d8..f31f18bbf3ad 100644
--- a/media-tv/plex-media-server/Manifest
+++ b/media-tv/plex-media-server/Manifest
@@ -12,3 +12,6 @@ DIST plexmediaserver_1.30.0.6486-629d58034_i386.deb 77346416 
BLAKE2B f7a54046e09
 DIST plexmediaserver_1.30.2.6563-3d4dc0cce_amd64.deb 85250976 BLAKE2B 
e7637733dc0e3c966e9609abfdefeb06b9985956fc8cffa58e5022a3e9e3924d186cf642c5b68a38340a99dcc0fa1619c91e564d69a4e7a7b5ae8633d6408d42
 SHA512 
c852ff8de3efbc06fcba6d5af3f7e68406cda8fe1e72b3954b3909dd83dfa39f973c2bc62e7e3a9a9b5b6169263af938c3564fe2d237c722eb3716cf5f01af52
 DIST plexmediaserver_1.30.2.6563-3d4dc0cce_arm64.deb 74318740 BLAKE2B 
cc8b42b75aac0de511902ba22b6dcbe649ba3e8c919c9d2fa6baa876ed0e1279c19abed3172a6aec5713967324c3534feebd67e60489c85b8d13aaad7d89f818
 SHA512 
ce900b6442e77ecbfcd2bb88a89f900423bbb408e8f0600455cce78d28c07462431270e4b2f2f19763a75ef07ab11cfabd2c99bf3931bfaf60e112f3bb133532
 DIST plexmediaserver_1.30.2.6563-3d4dc0cce_i386.deb 77862086 BLAKE2B 
dffabe49b1e556514272eb2be0b5eab4ba47277e08ffac8037904d77c564fb5dba477e21663b92b15013631a8ed319bf33396e70b075026cdbaa45bcde65c817
 SHA512 
7293d33ba658791307f5aa45a19d5f9a5d4288ce2b3509322b5ecb496f8b2e6436850ce3c23b722d7af775fc7732760b5db853c9429d3abc60050e5e590a780b
+DIST plexmediaserver_1.31.0.6654-02189b09f_amd64.deb 82825498 BLAKE2B 
2a1ff82f4dee56a46cd84bdef41489c19956a65ee439aa554616393141dc28593abd22c0a77ad3e9567c1ff6a0990d8d45f13ae84527911c07e241e556e01f28
 SHA512 
6cf58bf84ea45c395c628b4b60dd21c5cd4602815d476f003f1c0a1dd330ef786f9efe9ff9e666c68f9c95273db7ece833d6811d2d79621487392f6ff6b2ef3f
+DIST plexmediaserver_1.31.0.6654-02189b09f_arm64.deb 71881250 BLAKE2B 
67c794b5cda0c2972ca0b8cb09e001c59b5d421fabf61d18661e346b3f264a5199fb8cd41c37c48cf5e640e8b64b9737e487686ed2ba0497aaf213348efb3750
 SHA512 
d6e9eb89d2e5604303702212c064c385865c2e1b05cd27c63044b7977c96eb78471337dd0e126894153fbd3989852749f7b3604fce3017bde2f0df58f718fe77
+DIST plexmediaserver_1.31.0.6654-02189b09f_i386.deb 75423994 BLAKE2B 
91028104bd0f2d80d07248f369e8ddcf6e22657c3dc063a878df5b9485ec576a84db99d8a85fddf1063bd966d474a78b6163e8d7d94fcc03b6e425f0b85cedfe
 SHA512 
be03b446a0b002de094fbb83ad02fddef284b447e470fc29902376be4e79c826a52971d891c7b25834858e795d7ebe82cd4d599bad6157d47633010426939260

diff --git a/media-tv/plex-media-server/plex-media-server-1.31.0.6654.ebuild 
b/media-tv/plex-media-server/plex-media-server-1.31.0.6654.ebuild
new file mode 100644
index ..f52c3af7faa0
--- /dev/null
+++ b/media-tv/plex-media-server/plex-media-server-1.31.0.6654.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit readme.gentoo-r1 systemd unpacker pax-utils
+
+MY_PV="${PV}-02189b09f"
+MY_URI="https://downloads.plex.tv/plex-media-server-new;
+
+DESCRIPTION="Free media library that is intended for use with a plex client"
+HOMEPAGE="https://www.plex.tv/;
+SRC_URI="
+   amd64? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_amd64.deb )
+   arm64? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_arm64.deb )
+   x86? ( ${MY_URI}/${MY_PV}/debian/plexmediaserver_${MY_PV}_i386.deb )
+"
+S="${WORKDIR}"
+
+LICENSE="Plex"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64 ~x86"
+RESTRICT="bindist"
+
+DEPEND="
+   acct-group/plex
+   acct-user/plex"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}.service.patch"
+)
+
+QA_DESKTOP_FILE="usr/share/applications/plexmediamanager.desktop"
+QA_PREBUILT="*"
+QA_MULTILIB_PATHS=(
+   "usr/lib/plexmediaserver/lib/.*"
+   "usr/lib/plexmediaserver/Resources/Python/lib/python2.7/.*"
+   
"usr/lib/plexmediaserver/Resources/Python/lib/python2.7/lib-dynload/_hashlib.so"
+)
+
+BINS_TO_PAX_MARK=(
+   "${ED}/usr/lib/plexmediaserver/Plex Script Host"
+   "${ED}/usr/lib/plexmediaserver/Plex Media Scanner"
+)
+
+src_install() {
+   # Remove Debian specific files
+   rm -r "usr/share/doc" || die
+
+   # Copy main files over to image and preserve permissions so it is 
portable
+   cp -rp usr/ "${ED}" || die
+
+   # Make sure the logging directory is created
+   keepdir /var/log/pms
+   fowners plex:plex /var/log/pms
+
+   keepdir /var/lib/plexmediaserver
+   fowners plex:plex /var/lib/plexmediaserver
+
+   # Install the OpenRC 

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

2023-02-16 Thread Sam James
commit: df1acabb0a0685d3ad787ef06637ddcbc500f4cc
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:41:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1acabb

mail-filter/pyzor: drop 1.0.0_p20200523

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

 mail-filter/pyzor/Manifest |  1 -
 mail-filter/pyzor/pyzor-1.0.0_p20200523.ebuild | 61 --
 2 files changed, 62 deletions(-)

diff --git a/mail-filter/pyzor/Manifest b/mail-filter/pyzor/Manifest
index 08de429f76e4..23148d125558 100644
--- a/mail-filter/pyzor/Manifest
+++ b/mail-filter/pyzor/Manifest
@@ -1,2 +1 @@
-DIST pyzor-1.0.0_p20200523.tar.gz 138077 BLAKE2B 
13ad30f06ce32a24a42dd5aaa21ad2a6700df1bac3dc54a86532748688b094ee0f56a8e28e34336298388c6e0b95868e95d040866c9afa561d867069496608fe
 SHA512 
afe3b14794aea68b1a7d72840257976c7c9f755a6f6dcaaf6ebacab465c176fe2aa84f3fe176006cdbe26ef0b07ed949f75f6ef729f65c604fadf6ce8472da8f
 DIST pyzor-1.0.0_p20211223.tar.gz 138500 BLAKE2B 
242a7b2df3451f659d820771454e685868792bd2275b6d69d4c4adfd6044c781abe2d72fe1500a6074851faf8e88e95d6578c546d4d95fda03e11609d1a0b436
 SHA512 
218bea40515a21b1e08b2bad5b7ba339ba84fff2da425dc58df72a967730ebe10e319944e1604ff56bb37f6a8ae7bc0cd974b54b18a4878ba103131b8ea47b67

diff --git a/mail-filter/pyzor/pyzor-1.0.0_p20200523.ebuild 
b/mail-filter/pyzor/pyzor-1.0.0_p20200523.ebuild
deleted file mode 100644
index 39b48f25723c..
--- a/mail-filter/pyzor/pyzor-1.0.0_p20200523.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_9 )
-inherit distutils-r1
-
-COMMIT="f46159bd6519cebcebf59e9334a792037d75"
-
-DESCRIPTION="A distributed, collaborative spam detection and filtering network"
-HOMEPAGE="https://github.com/SpamExperts/pyzor;
-SRC_URI="https://github.com/SpamExperts/pyzor/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
-
-IUSE="doc gdbm mysql pyzord redis test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   pyzord? (
-   gdbm? ( $(python_gen_impl_dep 'gdbm') )
-   mysql? ( dev-python/mysqlclient[${PYTHON_USEDEP}] )
-   redis? ( dev-python/redis[${PYTHON_USEDEP}] )
-   )"
-DEPEND="
-   test? (
-   gdbm? ( $(python_gen_impl_dep 'gdbm') )
-   redis? ( dev-python/redis[${PYTHON_USEDEP}] )
-   )
-"
-BDEPEND="test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
-
-# TODO: maybe upstream would support skipping tests for which the
-# dependencies are missing?
-REQUIRED_USE="
-   pyzord? ( || ( gdbm redis ) )
-   test? ( gdbm redis )
-"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-distutils_enable_sphinx "docs"
-
-python_test() {
-   pytest -vv tests/unit || die "Tests fail with ${EPYTHON}"
-}
-
-src_install() {
-   distutils-r1_src_install
-
-   if use pyzord; then
-   dodir /usr/sbin
-   mv "${ED}"/usr/bin/pyzord* "${ED}/usr/sbin" \
-  || die "failed to relocate pyzord"
-   else
-   rm "${ED}"/usr/bin/pyzord* || die "failed to remove pyzord"
-   fi
-}



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

2023-02-16 Thread Sam James
commit: 23328263949acecfe54fdee980e35ca7c4de1b42
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:15:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23328263

media-gfx/graphite2: enable py3.11

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

 media-gfx/graphite2/graphite2-1.3.14_p20210810-r2.ebuild | 2 +-
 media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/graphite2/graphite2-1.3.14_p20210810-r2.ebuild 
b/media-gfx/graphite2/graphite2-1.3.14_p20210810-r2.ebuild
index 53dfb0c221e5..bd232f30b6d7 100644
--- a/media-gfx/graphite2/graphite2-1.3.14_p20210810-r2.ebuild
+++ b/media-gfx/graphite2/graphite2-1.3.14_p20210810-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 COMMIT=80c52493ef42e6fe605a69dcddd2a691cd8a1380
 GENTOO_DEPEND_ON_PERL="no"
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit perl-module python-any-r1 cmake-multilib
 
 DESCRIPTION="Library providing rendering capabilities for complex non-Roman 
writing systems"

diff --git a/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild 
b/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild
index bd53468cf978..78b29ae66f3f 100644
--- a/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild
+++ b/media-gfx/graphite2/graphite2-1.3.14_p20210810-r3.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 COMMIT=80c52493ef42e6fe605a69dcddd2a691cd8a1380
 GENTOO_DEPEND_ON_PERL="no"
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit perl-module python-any-r1 cmake-multilib
 
 DESCRIPTION="Library providing rendering capabilities for complex non-Roman 
writing systems"



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

2023-02-16 Thread Sam James
commit: 279a672d653d59114622429a5113cecfd0990d1a
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:05:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=279a672d

dev-python/pyusb: PEP517

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

 dev-python/pyusb/pyusb-1.2.1-r1.ebuild | 30 ++
 1 file changed, 30 insertions(+)

diff --git a/dev-python/pyusb/pyusb-1.2.1-r1.ebuild 
b/dev-python/pyusb/pyusb-1.2.1-r1.ebuild
new file mode 100644
index ..9f3ac1f4c29c
--- /dev/null
+++ b/dev-python/pyusb/pyusb-1.2.1-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1 pypi
+
+DESCRIPTION="USB support for Python"
+HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
+
+### This version is compatible with both 0.X and 1.X versions of libusb
+DEPEND="virtual/libusb:="
+RDEPEND="${DEPEND}"
+
+DOCS=( README.rst docs/tutorial.rst )
+
+PATCHES=(
+   "${FILESDIR}"/${P}-setuptools.patch
+)
+
+python_test() {
+   cd tests || die
+   "${EPYTHON}" testall.py || die "Tests failed with ${EPYTHON}"
+}



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

2023-02-16 Thread Sam James
commit: 5af16c76d8929c1d0d0dd79b9bdd9df43d6b21d9
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:09:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af16c76

gui-apps/waypipe: enable py3.11

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

 gui-apps/waypipe/waypipe-0.8.0-r2.ebuild | 2 +-
 gui-apps/waypipe/waypipe-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/waypipe/waypipe-0.8.0-r2.ebuild 
b/gui-apps/waypipe/waypipe-0.8.0-r2.ebuild
index c267b6de15fc..0d8968a8db52 100644
--- a/gui-apps/waypipe/waypipe-0.8.0-r2.ebuild
+++ b/gui-apps/waypipe/waypipe-0.8.0-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit meson python-any-r1
 
 DESCRIPTION="Transparent network proxy for Wayland compositors"

diff --git a/gui-apps/waypipe/waypipe-.ebuild 
b/gui-apps/waypipe/waypipe-.ebuild
index c267b6de15fc..0d8968a8db52 100644
--- a/gui-apps/waypipe/waypipe-.ebuild
+++ b/gui-apps/waypipe/waypipe-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit meson python-any-r1
 
 DESCRIPTION="Transparent network proxy for Wayland compositors"



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

2023-02-16 Thread Sam James
commit: a873510fe7b7345faed2485f7fcf779ecfefdc22
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:09:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a873510f

gui-apps/waypipe: drop 0.7.2-r2

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

 gui-apps/waypipe/Manifest|  1 -
 gui-apps/waypipe/waypipe-0.7.2-r2.ebuild | 76 
 2 files changed, 77 deletions(-)

diff --git a/gui-apps/waypipe/Manifest b/gui-apps/waypipe/Manifest
index d226736c8ada..2288cc924b9d 100644
--- a/gui-apps/waypipe/Manifest
+++ b/gui-apps/waypipe/Manifest
@@ -1,2 +1 @@
-DIST waypipe-0.7.2.tar.gz 202601 BLAKE2B 
bc8a03c8b47ee65a158ca45047f1989761c36b7b6fb5196784637f4e937fa2e5076497079f8368daf20592351e60a12fda5f4500b7220320b4c4a73ca9e5b1e0
 SHA512 
b126ea9d30864ecba67447793f39dbbe8bc73ab33c79879ac243023c64930e9aae887f13c0fdcc4cdf307b0ca6766b1012915dc88c596b7c250e3b35f6ba9190
 DIST waypipe-0.8.0.tar.gz 217533 BLAKE2B 
a2aebb9939acafae3eb693aa8fe344ab775e8d3e9a071e7291ab15a0f9869b681156b5730e42c04401648a32ad2a67d7a3bf95ff5f38e909e9309e00b1c69381
 SHA512 
853d36a9779e2fcb5ac7bcca6575d456685beadd8d918ec430a57b8359867849bdcb5d9c1edcd19eb8505f06a7758e8f53ba5354daa05f99491d5a45c330eeb2

diff --git a/gui-apps/waypipe/waypipe-0.7.2-r2.ebuild 
b/gui-apps/waypipe/waypipe-0.7.2-r2.ebuild
deleted file mode 100644
index d4b4f886e957..
--- a/gui-apps/waypipe/waypipe-0.7.2-r2.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_9 )
-
-inherit meson python-any-r1
-
-DESCRIPTION="Transparent network proxy for Wayland compositors"
-HOMEPAGE="https://gitlab.freedesktop.org/mstoeckl/waypipe;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe;
-else
-   
SRC_URI="https://gitlab.freedesktop.org/mstoeckl/waypipe/-/archive/v${PV}/${PN}-v${PV}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}"/${PN}-v${PV}
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-WAYPIPE_FLAG_MAP_X86=( avx2:with_avx2 avx512f:with_avx512f sse3:with_sse3 )
-WAYPIPE_FLAG_MAP_ARM=( neon:with_neon_opts )
-WAYPIPE_FLAG_MAP=(
-   "${WAYPIPE_FLAG_MAP_X86[@]/#/cpu_flags_x86_}"
-   "${WAYPIPE_FLAG_MAP_ARM[@]/#/cpu_flags_arm_}"
-)
-
-IUSE="dmabuf ffmpeg lz4 man systemtap test vaapi zstd 
${WAYPIPE_FLAG_MAP[@]%:*}"
-REQUIRED_USE="vaapi? ( ffmpeg )"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   dmabuf? (
-   media-libs/mesa[gbm(+),vaapi?,wayland]
-   x11-libs/libdrm
-   )
-   lz4? ( app-arch/lz4 )
-   systemtap? ( dev-util/systemtap )
-   vaapi? ( media-libs/libva[drm(+),wayland] )
-   ffmpeg? (
-   media-video/ffmpeg[x264,vaapi?]
-   )
-   zstd? ( app-arch/zstd )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-   ${PYTHON_DEPS}
-   virtual/pkgconfig
-   man? ( app-text/scdoc )
-   test? ( 
dev-libs/weston[examples,headless,remoting,screen-sharing,wayland-compositor] )
-"
-
-PATCHES=(
-   "${FILESDIR}"/waypipe-0.7.2-no-simd.patch
-)
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use systemtap with_systemtap)
-   $(meson_feature dmabuf with_dmabuf)
-   $(meson_feature ffmpeg with_video)
-   $(meson_feature lz4 with_lz4)
-   $(meson_feature man man-pages)
-   $(meson_feature vaapi with_vaapi)
-   $(meson_feature zstd with_zstd)
-   )
-   local fl
-   for fl in "${WAYPIPE_FLAG_MAP[@]}"; do
-   emesonargs+=( $(meson_use "${fl%:*}" "${fl#*:}") )
-   done
-   meson_src_configure
-}



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

2023-02-16 Thread Sam James
commit: 2eb698a22d86249f42fb101889fd7ffc9d90127d
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:10:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb698a2

gui-apps/waypipe: add freedesktop-gitlab upstream metadata

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

 gui-apps/waypipe/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gui-apps/waypipe/metadata.xml b/gui-apps/waypipe/metadata.xml
index 28e1162cdbc8..418f3128fc8e 100644
--- a/gui-apps/waypipe/metadata.xml
+++ b/gui-apps/waypipe/metadata.xml
@@ -13,4 +13,7 @@
Link with ffmpeg to allow buffer displays 
using video streams
Enable SystemTAP/DTrace tracing

+   
+   mstoeckl/waypipe
+   
 



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

2023-02-16 Thread Sam James
commit: 485262e28f2aae4d6718cdbd8717841a1a0aa038
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:04:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=485262e2

dev-python/pyusb: enable py3.11, use pypi.eclass, fix w/ newer setuptools

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

 .../pyusb/files/pyusb-1.2.1-setuptools.patch   | 37 ++
 dev-python/pyusb/pyusb-1.2.1.ebuild|  9 --
 2 files changed, 43 insertions(+), 3 deletions(-)

diff --git a/dev-python/pyusb/files/pyusb-1.2.1-setuptools.patch 
b/dev-python/pyusb/files/pyusb-1.2.1-setuptools.patch
new file mode 100644
index ..26b5e204d648
--- /dev/null
+++ b/dev-python/pyusb/files/pyusb-1.2.1-setuptools.patch
@@ -0,0 +1,37 @@
+https://github.com/pyusb/pyusb/commit/777dea9d718e70d7323c821d4497c706b35742da
+
+From 777dea9d718e70d7323c821d4497c706b35742da Mon Sep 17 00:00:00 2001
+From: Jonas Malaco 
+Date: Tue, 12 Jul 2022 03:12:50 -0300
+Subject: [PATCH] version: handle when patch component is missing
+
+actions/checkout@v3 (by default) no longer fetches the tags while
+checking out the repository.  This, combined with our use of
+setuptools_scm post-release scheme, results in tox trying to run the
+tests with version strings that look something like
+
+pyusb-0.0.post1+g3678fc1.zip
+
+and breaking _get_extended_version_info().
+
+Make _get_extended_version_info() robust against this case.  This is
+preferable to configuring actions/checkout@v3 to fetch the tags as,
+being related shallow clones, it might also happen in other contexts.
+
+Fixes: 678fc1867f4 ("github: update to actions/checkout@v3")
+--- a/usb/__init__.py
 b/usb/__init__.py
+@@ -55,9 +55,9 @@
+ 
+ def _get_extended_version_info(version):
+ import re
+-m = re.match(r'(\d+)\.(\d+)\.(\d+)[.-]?(.*)', version)
+-major, minor, patch, suffix = m.groups()
+-return int(major), int(minor), int(patch), suffix
++m = re.match(r'(\d+)\.(\d+)(\.(\d+))?[.-]?(.*)', version)
++major, minor, _, patch, suffix = m.groups()
++return int(major), int(minor), int(patch or "0"), suffix
+ 
+ extended_version_info = _get_extended_version_info(__version__)
+ version_info = extended_version_info[:3]
+

diff --git a/dev-python/pyusb/pyusb-1.2.1.ebuild 
b/dev-python/pyusb/pyusb-1.2.1.ebuild
index 900eb0c4252d..d7c303722986 100644
--- a/dev-python/pyusb/pyusb-1.2.1.ebuild
+++ b/dev-python/pyusb/pyusb-1.2.1.ebuild
@@ -3,12 +3,11 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
+PYTHON_COMPAT=( python3_{9..11} )
+inherit distutils-r1 pypi
 
 DESCRIPTION="USB support for Python"
 HOMEPAGE="https://pyusb.github.io/pyusb/ https://pypi.org/project/pyusb/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -20,6 +19,10 @@ RDEPEND="${DEPEND}"
 
 DOCS=( README.rst docs/tutorial.rst )
 
+PATCHES=(
+   "${FILESDIR}"/${P}-setuptools.patch
+)
+
 python_test() {
cd tests || die
"${EPYTHON}" testall.py || die "Tests failed with ${EPYTHON}"



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

2023-02-16 Thread Sam James
commit: 62173fbe826c3893713d4dd3db724296cf3a9146
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 06:01:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 06:22:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62173fbe

dev-python/pychroot: enable py3.11

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

 dev-python/pychroot/pychroot-0.10.4.ebuild | 4 ++--
 dev-python/pychroot/pychroot-.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/pychroot/pychroot-0.10.4.ebuild 
b/dev-python/pychroot/pychroot-0.10.4.ebuild
index e514946e41f3..b3b3332e394f 100644
--- a/dev-python/pychroot/pychroot-0.10.4.ebuild
+++ b/dev-python/pychroot/pychroot-0.10.4.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 if [[ ${PV} == * ]] ; then

diff --git a/dev-python/pychroot/pychroot-.ebuild 
b/dev-python/pychroot/pychroot-.ebuild
index c1142df20922..cdcf4d4fd50c 100644
--- a/dev-python/pychroot/pychroot-.ebuild
+++ b/dev-python/pychroot/pychroot-.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1
 
 if [[ ${PV} == * ]] ; then



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

2023-02-16 Thread Michał Górny
commit: fd93c0ead1226a1b757febd356a3a39a8915f69a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:00:46 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd93c0ea

dev-python/xxhash: Remove old

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

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

diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest
index eb61887a7efd..2a51c4bd01f3 100644
--- a/dev-python/xxhash/Manifest
+++ b/dev-python/xxhash/Manifest
@@ -1,2 +1 @@
-DIST xxhash-3.1.0.tar.gz 74389 BLAKE2B 
c2c7467aca51a397366c9de47104831f2d3d732b6b287e3fce4a0481d21bf059330dd63e1372b8da3aa9354efbc3de6ba106501d86c907b5783f7192e5e7c9a1
 SHA512 
a1d78dbbcc8fc8e41b6bc1d9e571df6951d4545fe61b198427db6f8c99058a095cf20e09951acc7bf9b432963f8b234741ae1f15ebb19972e69be0c59c9eb165
 DIST xxhash-3.2.0.tar.gz 74561 BLAKE2B 
d2c32b9a556eaaa67d961e130b017ff82944fbec983f24e0356436a7a23927faaba118328eff508e288e0757a1379b5ff88a48c2130eb9b3cf347e178cfc810d
 SHA512 
bbe903b95de3e91177064986adc5c945a9b7058650ea2b5cc10ee162a15a42909dc69f95b86081b8d276960f309b4bacf895ad263a9d9188fa66bb216d76dcd5

diff --git a/dev-python/xxhash/xxhash-3.1.0.ebuild 
b/dev-python/xxhash/xxhash-3.1.0.ebuild
deleted file mode 100644
index 66b89383752c..
--- a/dev-python/xxhash/xxhash-3.1.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..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/podcastparser/

2023-02-16 Thread Michał Górny
commit: 8f587c80254b6f911ed2cb7beba9724068f4f6b6
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:59:14 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f587c80

dev-python/podcastparser: Remove old

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

 dev-python/podcastparser/Manifest |  1 -
 .../podcastparser/podcastparser-0.6.8-r1.ebuild   | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/dev-python/podcastparser/Manifest 
b/dev-python/podcastparser/Manifest
index e4dc402edfb3..d386c545b4dc 100644
--- a/dev-python/podcastparser/Manifest
+++ b/dev-python/podcastparser/Manifest
@@ -1,2 +1 @@
-DIST podcastparser-0.6.8.tar.gz 29809 BLAKE2B 
19eda892dcc83f5371d23147a9044bd1249c05885aa7e72edc868e05744bf691336ceb8b445dca4c51612846bc7e8c087fa0c36fa44568a4f95b0e8f3eb155cf
 SHA512 
8c1152c6d7229faf375af5c3f02642debd081915dcb55ba706863620af6039eb710648bf970d1cd8018d43dd36ba579a456e3db0e82c7efcb6ac94a5cd23b1e8
 DIST podcastparser-0.6.9.tar.gz 30399 BLAKE2B 
a1882cdb298b3e2dccc0aa821ffb97863377b51b6dd78bcd09e00d9170b88c94298996ca20c7515ab761f9ff0c73b371b7f8c9b3c4fbacbcdc2215004e3cc137
 SHA512 
5e28b361b5fd0aba22c8c34318d3c8f575d82913f7de0f8f62ced9c8d904dcfcf40282b8b832867998f820de6bd5b793ce6be4657dd04b4965a151e32f2f0131

diff --git a/dev-python/podcastparser/podcastparser-0.6.8-r1.ebuild 
b/dev-python/podcastparser/podcastparser-0.6.8-r1.ebuild
deleted file mode 100644
index 1bcbc5d1aacd..
--- a/dev-python/podcastparser/podcastparser-0.6.8-r1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Podcast parser for the gpodder client"
-HOMEPAGE="https://github.com/gpodder/podcastparser;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-distutils_enable_tests pytest



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

2023-02-16 Thread Michał Górny
commit: b098f1463526a6fe0d57f984ce547668ade225fd
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:03:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b098f146

dev-python/autobahn: Remove old

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

 dev-python/autobahn/Manifest|   3 -
 dev-python/autobahn/autobahn-22.12.1.ebuild | 119 
 dev-python/autobahn/autobahn-22.7.1.ebuild  | 118 ---
 dev-python/autobahn/autobahn-23.1.1.ebuild  | 119 
 4 files changed, 359 deletions(-)

diff --git a/dev-python/autobahn/Manifest b/dev-python/autobahn/Manifest
index 346030cbc5cb..73afde7a83c4 100644
--- a/dev-python/autobahn/Manifest
+++ b/dev-python/autobahn/Manifest
@@ -1,4 +1 @@
-DIST autobahn-22.12.1.tar.gz 479515 BLAKE2B 
37003c458b773b122716fd17e5245c3754e49e5c66601266870ce83fe4b7622553605d007902bd505897428231ce8347bf24548142dcb38631dc08f092be7eaf
 SHA512 
10b3eec220a78b21aa393c9a721a9efb06b2623910ebb19dcf58c3966912cb9c5bbe5fc04d9f1072711a209a6a0168d7ba3a6147c1fc9a7db46bd528cc380dd0
-DIST autobahn-22.7.1.tar.gz 476789 BLAKE2B 
4860a6ec1a2631986dd5d8e94069134e75650eedb67dce18dd4c1e8ad45bd76ca183b4dcbca6ef4474c25f6feb4a1407c9fed4c74f0751e9c0c7fbca2b013406
 SHA512 
ea2c4d61d3f0f8ef35a31b599bc432781536dccaa316cda474a61003b10df0ef6346615d16228848cc5acb24a4e5f4c50be1fe759daf35b629f636da55688137
-DIST autobahn-23.1.1.tar.gz 479905 BLAKE2B 
598f3fde0efb7016423962b10937503414a96cce1813fb7b11133d1ee2b4fa4661c379df19e725f49b29731650e6696de4d2b5f6781b2076298641471f16ff9b
 SHA512 
f74ec3b2647689613e48446b7604b754f43fead2e8c77370c3f6e22553d9bccedd584b41940b572463977bdd1078c29c346af972dd04583feb217f708c771843
 DIST autobahn-23.1.2.tar.gz 480717 BLAKE2B 
cc92dc114ef0931be72fa9bf06cfb5646d8dac7a8da3ed3b8d28c4dad67c47465ba3fb03008b70b81ad36210ee014a148f69e5f13b74ef4993b344f9e6887374
 SHA512 
cd69d901ad7ec8c5f995ca15d803d1de1985294b48707bc0edabfc37733295c3bf9fd7965f930e8b4fa1c7c12c6e02dcbf2ff169edf464eadc774ae6f9185175

diff --git a/dev-python/autobahn/autobahn-22.12.1.ebuild 
b/dev-python/autobahn/autobahn-22.12.1.ebuild
deleted file mode 100644
index e31d95cf93be..
--- a/dev-python/autobahn/autobahn-22.12.1.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 optfeature
-
-MY_P=${PN}-$(ver_rs 3 -)
-
-DESCRIPTION="WebSocket and WAMP for Twisted and Asyncio"
-HOMEPAGE="
-   https://crossbar.io/autobahn/
-   https://github.com/crossbario/autobahn-python/
-   https://pypi.org/project/autobahn/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-IUSE="test xbr"
-RESTRICT="!test? ( test )"
-
-# The order of deps is based on their appearance in setup.py
-# All extra deps should be included in test and in optfeature
-RDEPEND="
-   >=dev-python/zope-interface-5.2.0[${PYTHON_USEDEP}]
-   >=dev-python/twisted-20.3.0[${PYTHON_USEDEP}]
-   >=dev-python/attrs-20.3.0[${PYTHON_USEDEP}]
-   >=dev-python/txaio-21.2.1[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   >=dev-python/hyperlink-21.0.0[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   >=dev-python/wsaccel-0.6.3[${PYTHON_USEDEP}]
-   >=dev-python/python-snappy-0.6.0[${PYTHON_USEDEP}]
-   >=dev-python/msgpack-1.0.2[${PYTHON_USEDEP}]
-   >=dev-python/ujson-4.0.2[${PYTHON_USEDEP}]
-   >=dev-python/cbor2-5.2.0[${PYTHON_USEDEP}]
-   >=dev-python/py-ubjson-0.16.1[${PYTHON_USEDEP}]
-   >=dev-python/flatbuffers-22.12.06[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-20.0.1[${PYTHON_USEDEP}]
-   >=dev-python/service_identity-18.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pynacl-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/pytrie-0.4[${PYTHON_USEDEP}]
-   >=dev-python/cffi-1.14.5[${PYTHON_USEDEP}]
-   >=dev-python/argon2-cffi-20.1.0[${PYTHON_USEDEP}]
-   >=dev-python/passlib-1.7.4[${PYTHON_USEDEP}]
-
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
-   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
-   )
-"
-
-python_prepare_all() {
-   if use xbr ; then
-   eerror "***"
-   eerror "Required xbr dependencies are incomplete in Gentoo."
-   eerror "So this functionality will not yet work"
-   eerror "Please file a bug if this feature is needed"
-   

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

2023-02-16 Thread Michał Górny
commit: 11ab4f2daa424b921e8bce3805fab6b163296c4e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:00:59 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ab4f2d

dev-python/zope-component: Remove old

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

 dev-python/zope-component/Manifest |  1 -
 .../zope-component/zope-component-5.0.1.ebuild | 56 --
 2 files changed, 57 deletions(-)

diff --git a/dev-python/zope-component/Manifest 
b/dev-python/zope-component/Manifest
index 032fb6a7504e..4988a9459d75 100644
--- a/dev-python/zope-component/Manifest
+++ b/dev-python/zope-component/Manifest
@@ -1,2 +1 @@
-DIST zope.component-5.0.1.tar.gz 91130 BLAKE2B 
4dbd78b003ba3688c0468573f4552c87333fd5fb7e0cd89d4844633f28c19443b3ea884438ff7f7ba8b056790f008c246c1e7ad52403d7b72b146d0d53edd8ad
 SHA512 
fad011816fe5bb869bb2e43e11a66841a6be2abf9002e41207ef1dfe69b1afb5ca486d275daeddf71d2a0e79e1a9c839c4735190dddcd118b675a976bde07a64
 DIST zope.component-5.1.0.tar.gz 90238 BLAKE2B 
411f1704f3e4c9a716508595ef75f1908b757f776b0ebe7677e38e678eb13e2cd5579441b94082e504f2dbc05c41e49fe0e2d1dcad406baafbc6b0733cb85008
 SHA512 
6695365b0313a24184d0d3b6e10ce0eda108e3e832c97709a4285bf1e76289a71223611d930a4cc3d3b5c2c766a5cfddb3cf616a64848eeccc6f3ac09316f3d1

diff --git a/dev-python/zope-component/zope-component-5.0.1.ebuild 
b/dev-python/zope-component/zope-component-5.0.1.ebuild
deleted file mode 100644
index 2cdd95425206..
--- a/dev-python/zope-component/zope-component-5.0.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_PN=zope.component
-MY_P=${MY_PN}-${PV}
-DESCRIPTION="Zope Component Architecture"
-HOMEPAGE="
-   https://pypi.org/project/zope.component/
-   https://github.com/zopefoundation/zope.component/
-"
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-
-RDEPEND="
-   dev-python/zope-event[${PYTHON_USEDEP}]
-   >=dev-python/zope-hookable-4.2.0[${PYTHON_USEDEP}]
-   >=dev-python/zope-interface-5.3.0[${PYTHON_USEDEP}]
-   !dev-python/namespace-zope
-"
-BDEPEND="
-   test? (
-   dev-python/zope-configuration[${PYTHON_USEDEP}]
-   dev-python/zope-i18nmessageid[${PYTHON_USEDEP}]
-   dev-python/zope-testing[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
-   # strip rdep specific to namespaces
-   sed -i -e "/'setuptools'/d" setup.py || die
-   distutils-r1_src_prepare
-}
-
-python_compile() {
-   distutils-r1_python_compile
-   find "${BUILD_DIR}" -name '*.pth' -delete || die
-}
-
-python_test() {
-   cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
-   distutils_write_namespace zope
-   eunittest
-}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-kernel-bin/

2023-02-16 Thread Michał Górny
commit: 0f09af7ba8d852b17874c3444023dfc13caa281a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:18:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f09af7b

sys-kernel/gentoo-kernel-bin: Bump to 5.10.168

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   6 +
 .../gentoo-kernel-bin-5.10.168.ebuild  | 127 +
 2 files changed, 133 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index b8104b442921..7871ce3d3e6d 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -8,6 +8,8 @@ DIST genpatches-5.10-175.base.tar.xz 4909096 BLAKE2B 
cf9a0be14ec5a99f5a8ff6ba615
 DIST genpatches-5.10-175.extras.tar.xz 3872 BLAKE2B 
1371c40d2a9e15fb2297842c5aa7989772c3699d360dba1837df770d3e8c16fe48cfe6ade3a0832237dcf85722ef276ee80960072c47dd83d46018de44af4bbf
 SHA512 
9c2c2349c1a88e916ddad9b67cddd0cc5c281ce1d85d29c56e308a52999b79c1c212c8caa3f829aa16e20b8ca4154ba8c66e6cc5d4ed1d4d07d3fe9c26f46ed5
 DIST genpatches-5.10-176.base.tar.xz 4910744 BLAKE2B 
119dfaaa5a2212f088f767e3600d748b2bc20a95c8e21b34bb81dc0a6ad6082769da9cc11a89b226c326c0326cb4c7da6fa0fcb1cb4c5e1f04fc353dab01a117
 SHA512 
60632369dc2066789ec8a144080127d7149d9deebb3c9764cd1a13fbe961dd5f88eaf345dbfeaa33c8c8b55d558511d2dafd4bfb631fac2db72110574ccf6c8f
 DIST genpatches-5.10-176.extras.tar.xz 3868 BLAKE2B 
a0a3808562dba6540d632b25e3a417f9a2514dddb13cda9692002b253a4d033bb58ffa4d606fd57764024f21a0907a94d93c2130deb9bbe92a60f310179e761c
 SHA512 
847fd0c0ce8bf3aaee9c6aacb527d8590439f44f5e1e19ffda883b5ea7d8bbc502cbe5e126fc181eaad9dfbced8ca664e459b70085bdc6d51e7f001bf4901f2a
+DIST genpatches-5.10-177.base.tar.xz 4940872 BLAKE2B 
b2a81aebd81bff1144ecb1732345cdef2a91abc5bff2aade07770cf11cbb5475c58ce2e4c2dc00a5b292948cbe9316d4812dcb534da90bf9361f18136bd67194
 SHA512 
b6c25015719ad70a3322d65a5f796ff075a38db7225d90b5bd18af22348e46adb547a374c0ab8fb6790f30d211570dc6742aa7abf0b24987fa4e6fc49b2a7c3d
+DIST genpatches-5.10-177.extras.tar.xz 3868 BLAKE2B 
bffc5ec0895066aa1e497ebf412a298f1dedd4ac86758f72c364fc7e56508aee3928725646742a66bb3979b8ed33afa7539e3ffa9c0f350c0f81139f69671287
 SHA512 
2c0b9273c933764c5c2fcbf6176b3fea06777aca18d823055cd69740519e1a37027a058238a0a9c15b39f1b29417fbdfd771fb7247663097fa717889b5492641
 DIST genpatches-5.15-92.base.tar.xz 3843196 BLAKE2B 
1a70c672f4ceda221611ba1bad20fc4e791a51e27f412995308cb7f39962c6e237efc1bb7912c67b8e3dabaffce3bb6ceb55d62f4f12b79671910b70c1e7a8dd
 SHA512 
33390b3e24783405971f2eacb24e715faf841a66e477a03d4055d61694fa72694d7563d799b95d47037ad0d7e7c234e56c894ddd7cd1dba59077efb901bbba26
 DIST genpatches-5.15-92.extras.tar.xz 3932 BLAKE2B 
12936d0ac139d69f2e5947436ffd34add80625aa383aa23e51b4419a5e2ad3c38ace4d69c9e7066bfeae32ab727013e602c3a1c3424e128562597c517c7e5903
 SHA512 
6595eca7525db97672a15275228dbb9b14e7e234514b549e0fc17daeda4b48d298f6dbcde46e5862fe02bac9f50ffd7b05d82a174541469456289bdc6eb7f4b1
 DIST genpatches-5.15-93.base.tar.xz 3874100 BLAKE2B 
3f9bd1a90de22824db823bead22ae777ebea551ebd183184ecd039f33def8db603694acbe3757352cff228eb2a28a8c31d362f2185b32f88edd19c4de6eedad1
 SHA512 
1d5c83f5f44ccee701755dc7732f80baa00e5b3f4137c9da8d81cd7fad0055df6b09dddb1cdd6287db6a43cd1b673aef3a543086138af72cad5218d2fef31860
@@ -64,6 +66,10 @@ DIST gentoo-kernel-5.10.167-1.amd64.gpkg.tar 66293760 
BLAKE2B 86933f7a1da3888fcc
 DIST gentoo-kernel-5.10.167-1.arm64.gpkg.tar 59351040 BLAKE2B 
f8e0ba24eb686e38704fce1c296c978105f953b801ada73eb83f03f9dcee542d223e23e103281035e1e7f78be2bceba52616f84dbc998fc391e6ed136b6ea9ec
 SHA512 
5d373fe35cee7142af63fac61282d2e71e5b9c80bac7c03ac3987a058aee7ac4915bebfab02cc995ff1344070d158a83d042dbb6573fe0bf5d13b9656e60f07d
 DIST gentoo-kernel-5.10.167-1.ppc64le.gpkg.tar 54906880 BLAKE2B 
85f324ca7221ba94b2fddf364b3e3b2f2e95549453f9b5d938ab6f711a4bc719559ef8f4e9b6adf259e7864877b888ddf09f5c22054164f098abfc0d2c71556b
 SHA512 
b4cacbdeb21ba0d1f72afbbd321f696aab71c150fd936e0e365c45df2d4fb7bc35e397fb32c788dbed8f45275225560e0bc894c724afcf23ae5dcf9bd507f897
 DIST gentoo-kernel-5.10.167-1.x86.gpkg.tar 56442880 BLAKE2B 
5386059e894540767125e8a8ad9f6c7243d67eb75d80d26fa457ef591aef2cc03b4a7599545df8f7b3601045c8d304a07162f00c2dc668d33fb1d403c24bb12e
 SHA512 
97dd05d6027c07b385617da4685d152c338d23c35b2947017ddfb6d61ff5daf2f117cbf089db608fb3137ebd21a4e7a14772cb8992b2faafb635fb268c9da740
+DIST gentoo-kernel-5.10.168-1.amd64.gpkg.tar 66314240 BLAKE2B 
17cd291cb4bff82c4bd3a5b17a019c04087b77589ea1ddb983fc184e9e64009a4ae412d4d710bbe5d5c1efeafcaf7b66f48eabac19f85c9f851a0ab973481f40
 SHA512 
7890e5406dde1485e80a7f5c279355ed0370920ab6e23ad8d7521dd616de859ef37c1298e6326372038146e20924a4f158ce8009c75cc167c7637292e1867d9b
+DIST gentoo-kernel-5.10.168-1.arm64.gpkg.tar 59351040 BLAKE2B 

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

2023-02-16 Thread Michał Górny
commit: 16de570b263a479ef5bcedd4c38c876b0791bc36
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:59:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16de570b

dev-python/phonenumbers: Remove old

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

 dev-python/phonenumbers/Manifest   |  3 --
 dev-python/phonenumbers/phonenumbers-8.13.3.ebuild | 39 --
 dev-python/phonenumbers/phonenumbers-8.13.4.ebuild | 39 --
 dev-python/phonenumbers/phonenumbers-8.13.5.ebuild | 39 --
 4 files changed, 120 deletions(-)

diff --git a/dev-python/phonenumbers/Manifest b/dev-python/phonenumbers/Manifest
index 35199c7dae14..649873ea5d01 100644
--- a/dev-python/phonenumbers/Manifest
+++ b/dev-python/phonenumbers/Manifest
@@ -1,4 +1 @@
-DIST python-phonenumbers-8.13.3.gh.tar.gz 4906633 BLAKE2B 
320f4caa2feb5c5884cc519de8d9caebb7bbfeb656e060f84aac25f0561b042498a14fff237be404b47b5242f57afb705e4bc91f0c33d5f951a88b3de614d16a
 SHA512 
f0aceacc52a5155757c5b2542a3e67ad78bf5b8ef2a24493e62b850ac2a0c260e21e63067252e698047a4969a5966bd602c8920457b62a20d8911badca200a0a
-DIST python-phonenumbers-8.13.4.gh.tar.gz 4906855 BLAKE2B 
3949376b44ecf5ed7fb13148c557c7ac376b14dc826baf9249a449fe2a966aff660bb4cb53b5922573d55af2593ec549577b663cb1125849a8ce9bc1961dd62d
 SHA512 
d484949088991839a304d816f400dbfbeef8cdac9616c30ce7c2564ddc7cacfed4f2babd625da465ac5c45f76e3bc0a05812b9f63a26a3d520e84ec9ed628672
-DIST python-phonenumbers-8.13.5.gh.tar.gz 4906658 BLAKE2B 
94def8c031ff070f30d9509a9a138d57ac9240b8545aa5136b29f82c862b959120b7b08fd449097173e0687b5ab221e5e7b783f40b30643194cd0f1009479f95
 SHA512 
132041160c8ed981a69efd25c5ab9bf88d5974aedc5e3bd3e31dfb751aa6909a5ebf363bb52230d453b68f740b4c6d05289ad249dc70b8ab604d4df699b4bf47
 DIST python-phonenumbers-8.13.6.gh.tar.gz 4906869 BLAKE2B 
b00fcd6085844a9465da15547f8b40ec741a350d24bb888a04dc5e7aee9b94ec1dae83a71548bc75b8cca29af3ee29cccdc5c49447c5b1bbf33a52db049835eb
 SHA512 
7ca6b8872975fc2597b6ddb1b824feb05dd8819da1ac1f73b7ce831070210520700639dc44e1466e83d335453a5c70ed2fae6ae8100cb99f03f62961f38e6dd9

diff --git a/dev-python/phonenumbers/phonenumbers-8.13.3.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.13.3.ebuild
deleted file mode 100644
index f02dfcaeb112..
--- a/dev-python/phonenumbers/phonenumbers-8.13.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Python port of Google's libphonenumber"
-HOMEPAGE="
-   https://github.com/daviddrysdale/python-phonenumbers/
-   https://pypi.org/project/phonenumbers/
-"
-SRC_URI="
-   
https://github.com/daviddrysdale/python-phonenumbers/archive/v${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}/python
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~riscv x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   test? (
-   dev-python/protobuf-python[${PYTHON_USEDEP}]
-   )
-"
-
-DOCS=( ../README.md )
-
-python_test() {
-   "${EPYTHON}" testwrapper.py -v || die "Tests failed with ${EPYTHON}"
-}

diff --git a/dev-python/phonenumbers/phonenumbers-8.13.4.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.13.4.ebuild
deleted file mode 100644
index 20fb3f38daee..
--- a/dev-python/phonenumbers/phonenumbers-8.13.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-MY_P=python-${P}
-DESCRIPTION="Python port of Google's libphonenumber"
-HOMEPAGE="
-   https://github.com/daviddrysdale/python-phonenumbers/
-   https://pypi.org/project/phonenumbers/
-"
-SRC_URI="
-   
https://github.com/daviddrysdale/python-phonenumbers/archive/v${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}/python
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   test? (
-   dev-python/protobuf-python[${PYTHON_USEDEP}]
-   )
-"
-
-DOCS=( ../README.md )
-
-python_test() {
-   "${EPYTHON}" testwrapper.py -v || die "Tests failed with ${EPYTHON}"
-}

diff --git a/dev-python/phonenumbers/phonenumbers-8.13.5.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.13.5.ebuild
deleted file mode 100644
index 20fb3f38daee..
--- a/dev-python/phonenumbers/phonenumbers-8.13.5.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 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/rope/

2023-02-16 Thread Michał Górny
commit: b77d1cf63e9c5cc88935c56bdabb9198214bef19
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:00:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b77d1cf6

dev-python/rope: Remove old

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

 dev-python/rope/Manifest  |  1 -
 dev-python/rope/rope-1.6.0.ebuild | 40 ---
 2 files changed, 41 deletions(-)

diff --git a/dev-python/rope/Manifest b/dev-python/rope/Manifest
index 909c11037da5..cb576b061e6f 100644
--- a/dev-python/rope/Manifest
+++ b/dev-python/rope/Manifest
@@ -1,2 +1 @@
-DIST rope-1.6.0.tar.gz 289325 BLAKE2B 
fc7fc37a93f6d011f7e5eab5d2a28e3eab1767839cba4bce2b665c7972d6485eb3693e5977abfd36025415bc898fb4985affb7ac757c8457840a5de3946df77d
 SHA512 
f610eb71c20533907aeea86c3ec5101401cf8136aba4221b2d64db3b0db16d4d7d1ec081c6d4929d6534ed51d4c01761af8d2ffddb6b69b4a9cc4921d240d745
 DIST rope-1.7.0.tar.gz 295362 BLAKE2B 
a81d6600441cf9dfe12be0a15113988ac8ec3dcd00c593085b9d749001b0785a5bceedc0fa8bbaeaaeb0142d623a432ef7d6e24874fab7a37179f131a26e6a6c
 SHA512 
13cc3a2041c58c142892d1c9e5105ecdaa672e012364a5d4ccf82dbf5110fe0b6f0362b3a0309e9e6b72ab1d267dfc58eae8f3af3a8756f0356a6aff06c09abd

diff --git a/dev-python/rope/rope-1.6.0.ebuild 
b/dev-python/rope/rope-1.6.0.ebuild
deleted file mode 100644
index 01bc24f0fa0d..
--- a/dev-python/rope/rope-1.6.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python refactoring library"
-HOMEPAGE="
-   https://pypi.org/project/rope/
-   https://github.com/python-rope/rope/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc"
-
-RDEPEND="
-   >=dev-python/pytoolconfig-1.2.2[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/build[${PYTHON_USEDEP}]
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # our venv style confuses this comparison
-   ropetest/contrib/autoimport/utilstest.py::test_get_package_source_typing
-   ropetest/contrib/autoimport/utilstest.py::test_get_package_tuple_typing
-   
ropetest/contrib/autoimport/utilstest.py::test_get_package_tuple_compiled
-)



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

2023-02-16 Thread Michał Górny
commit: e062ff88a2a625090ceb5aa8e010ba482d86c74a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:00:12 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e062ff88

dev-python/qtawesome: Remove old

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

 dev-python/qtawesome/Manifest   |  1 -
 dev-python/qtawesome/qtawesome-1.2.1.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/dev-python/qtawesome/Manifest b/dev-python/qtawesome/Manifest
index d72c250c4fd3..ecf3e2df5682 100644
--- a/dev-python/qtawesome/Manifest
+++ b/dev-python/qtawesome/Manifest
@@ -1,2 +1 @@
-DIST QtAwesome-1.2.1.tar.gz 2280937 BLAKE2B 
4d54e8d9fabd833ca4a430ed9573da4feb6aeaae9090fbdf7874d68214de0c0548be18b2f5d2c643add754c748f6af97eaa821aa3d341ed6dd563b8769c1a5c7
 SHA512 
dd4ef533c5a7bc5fc7eba549c166653efb2352e12412d5678e30cc8865fe44684ca6e070ca61801910c3eefd5673325cb87555e0fb30007b5fd0b53d04dc1c44
 DIST QtAwesome-1.2.2.tar.gz 2281303 BLAKE2B 
8766f06feb4cbcab213d537e2c6b5fcaa952d2e06cfa2c4ecdbcdd1b2e900b715632ac7280a5b65e8085643267d048a519805ad2d9da57ee1be1b4c311951ff7
 SHA512 
9117798041b9593f3db9c8e379f2fa38e1d6d73a4d6b370f73a4ca0bcd69af78989ab0e9a9e2aa9ec20e2637ed1123237f6e8da2be383c09d51921d52052498f

diff --git a/dev-python/qtawesome/qtawesome-1.2.1.ebuild 
b/dev-python/qtawesome/qtawesome-1.2.1.ebuild
deleted file mode 100644
index 22fac404c825..
--- a/dev-python/qtawesome/qtawesome-1.2.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 virtualx
-
-MY_PN="QtAwesome"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Enables iconic fonts such as Font Awesome in PyQt"
-HOMEPAGE="https://github.com/spyder-ide/qtawesome/ 
https://pypi.org/project/QtAwesome/;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S="${WORKDIR}"/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   media-fonts/fontawesome
-   dev-python/QtPy[pyqt5(+),gui,${PYTHON_USEDEP}]
-"
-BDEPEND="test? ( dev-python/pytest-qt[${PYTHON_USEDEP}] )"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs/source
-
-src_test() {
-   virtx distutils-r1_src_test
-}
-
-python_test() {
-   # Tests fail with pyside2, so depend on QtPy[pyqt5] and explicitly run
-   # the tests with pyqt5
-   PYTEST_QT_API="pyqt5" epytest || die "Tests failed with ${EPYTHON}"
-}



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

2023-02-16 Thread Michał Górny
commit: 72724fbeeb87630e03aac968d953a3e1091c7eb6
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:01:11 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72724fbe

dev-python/ujson: Remove old

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

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

diff --git a/dev-python/ujson/Manifest b/dev-python/ujson/Manifest
index 082415830a06..8ab239fbbb44 100644
--- a/dev-python/ujson/Manifest
+++ b/dev-python/ujson/Manifest
@@ -1,2 +1 @@
-DIST ujson-5.6.0.tar.gz 7151977 BLAKE2B 
59c0b88bdc59791889971993135484ce99763ad4805b36db7a3abc5e950c9132b917e7fbfb09870af916f5939d10e23ab44137f416179f75a06f424cf4b1154d
 SHA512 
996c9746e011f116fcab3e61345df27cb2c1251852f758eff1d3465e19df03deb1a037669aa6ee5aad2fc6c2cf76c22075ad6a73158ff4dc81357e59a4ee244a
 DIST ujson-5.7.0.tar.gz 7152625 BLAKE2B 
363fd77be3e2f8fb42a70db744ab4da12c0c8383103983b3555cee237497837abfcef102b19a51c0fa118fedd7847c568607c058f1d2cea76858a6bd89a226da
 SHA512 
e18a1608a7fe79030e3ff307c9e95a0e238cd5049ee791eddbc07efa55853475d053268b80a8765023639ae8ff39f82b4ae2c04e82fc7dc5f3192a5134ec0757

diff --git a/dev-python/ujson/ujson-5.6.0.ebuild 
b/dev-python/ujson/ujson-5.6.0.ebuild
deleted file mode 100644
index 2381ce0c005f..
--- a/dev-python/ujson/ujson-5.6.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Ultra fast JSON encoder and decoder for Python"
-HOMEPAGE="
-   https://github.com/ultrajson/ultrajson/
-   https://pypi.org/project/ujson/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-
-DEPEND="
-   dev-libs/double-conversion:=
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/pytz[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_configure() {
-   export 
UJSON_BUILD_DC_INCLUDES="${EPREFIX}/usr/include/double-conversion"
-   export UJSON_BUILD_DC_LIBS="-ldouble-conversion"
-   export UJSON_BUILD_NO_STRIP=1
-}



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

2023-02-16 Thread Michał Górny
commit: 4eb27687493a9643a30d315c773586bc15396f05
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:01:34 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eb27687

dev-python/xcffib: Remove old

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

 dev-python/xcffib/Manifest|  1 -
 dev-python/xcffib/xcffib-1.1.2.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-python/xcffib/Manifest b/dev-python/xcffib/Manifest
index 8106ddd3219f..971e3bac9651 100644
--- a/dev-python/xcffib/Manifest
+++ b/dev-python/xcffib/Manifest
@@ -1,2 +1 @@
-DIST xcffib-1.1.2.tar.gz 87303 BLAKE2B 
0727c1c4c49692d8daff79d77487cfd2780a4279fa2bd49b45d87f48186e9ba0ee3ea46841dc259e7a3b5e301caacdee764762efe96217e138e6f8cedb2a986f
 SHA512 
21606034bd0be2e1cf87b20904b006f7eb6eecbd835eff778f064ecb2bc16d17f48a6acce0eb1a30ca9bd98d810b4b1674bdadc9f6e42c5effee777f7bd138aa
 DIST xcffib-1.2.0.tar.gz 88972 BLAKE2B 
a8d9be7c3149f696d06474aab85e9f7605d45e9861151192dbb7b51e48483f75adb721e17531432294d19d8d6498b66ba312702ea011e8470c3ac42ac0cd6e23
 SHA512 
7012833f2877edea92cdc15030543883e2a848264c034a81222626ad48a69fcdac8a88cec2e07e61a80102640baa7fbdf29bbf25e08e59fc896aada08533bb77

diff --git a/dev-python/xcffib/xcffib-1.1.2.ebuild 
b/dev-python/xcffib/xcffib-1.1.2.ebuild
deleted file mode 100644
index def4be81f2b4..
--- a/dev-python/xcffib/xcffib-1.1.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-DESCRIPTION="A drop in replacement for xpyb, an XCB python binding"
-HOMEPAGE="
-   https://github.com/tych0/xcffib/
-   https://pypi.org/project/xcffib/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86"
-
-DEPEND="
-   x11-libs/libxcb
-"
-RDEPEND="
-   $(python_gen_cond_dep '
-   >=dev-python/cffi-1.1:=[${PYTHON_USEDEP}]
-   ' 'python*')
-   dev-python/six[${PYTHON_USEDEP}]
-   ${DEPEND}
-"
-BDEPEND="
-   test? (
-   x11-base/xorg-server[xvfb]
-   x11-apps/xeyes
-   )
-"
-
-distutils_enable_tests pytest



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

2023-02-16 Thread Michał Górny
commit: 1cae22755ea9215c7217f574bbd9e8224c21f625
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:03:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cae2275

dev-python/lz4: Remove old

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

 dev-python/lz4/Manifest |  2 --
 dev-python/lz4/lz4-4.0.2.ebuild | 39 --
 dev-python/lz4/lz4-4.3.1.ebuild | 42 -
 3 files changed, 83 deletions(-)

diff --git a/dev-python/lz4/Manifest b/dev-python/lz4/Manifest
index 4714a124bb2a..0ddd165a0b07 100644
--- a/dev-python/lz4/Manifest
+++ b/dev-python/lz4/Manifest
@@ -1,3 +1 @@
-DIST lz4-4.0.2.tar.gz 164309 BLAKE2B 
ea08c9786ee224aaf668a74269413c836a4288ab1a3c27497012621bdda9c8c1729c4cb6ba49cb74e7e5302fabbfddba94f8ed94a9612fdf21018a5cbdc70566
 SHA512 
f2fdd133b9c7389cd7d45b41e61944093b65bcbf529146740fa3721e683a9b4554166c2ad719298e6153e61facc4a4cb021ffd969cd16d4a5b6555fd8f14728f
-DIST lz4-4.3.1.tar.gz 170970 BLAKE2B 
dcc2f67860f60a7805c2d302aca3b610198e128e2dbd1c54d78ffb65c4baec3cf4ab7dfe2aebf713397e67d9c8b9a95a0dbb493c16692f2591d657bfe1a3da43
 SHA512 
4dbb3179892d44fe7d7b5280931c39434d28f5750b4588a16a5547588c756e4279daf8a5f0edcfaf958c7cb25e65188c0a9bb36509d0dc7a7083072a19ee6d55
 DIST lz4-4.3.2.tar.gz 170869 BLAKE2B 
bd6ddcb7294cbfaf2a2a0de78c49434956c376a38de08b457283684ac3e7b394da1e7964221de44bb91197511a40fda9103ec53478437daa4460d7fabeaef5a1
 SHA512 
c2e7d3ec0954110c9b21e562147e80c8abddd21ebb213491d1072454834151a0f3a0935c0f3eebec34c024fe6e79136ccf6363dcb5390aa03cb52489fcb4113c

diff --git a/dev-python/lz4/lz4-4.0.2.ebuild b/dev-python/lz4/lz4-4.0.2.ebuild
deleted file mode 100644
index 0d958770688e..
--- a/dev-python/lz4/lz4-4.0.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="LZ4 Bindings for Python"
-HOMEPAGE="https://pypi.org/project/lz4/ 
https://github.com/python-lz4/python-lz4;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="amd64 arm arm64 ~riscv x86 ~amd64-linux ~x86-linux"
-
-DEPEND="
-   app-arch/lz4:=
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   dev-python/pkgconfig[${PYTHON_USEDEP}]
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # lz4.stream is not officially supported and not installed by default
-   # (we do not support installing it at the moment)
-   tests/stream
-)

diff --git a/dev-python/lz4/lz4-4.3.1.ebuild b/dev-python/lz4/lz4-4.3.1.ebuild
deleted file mode 100644
index 431edd92f51c..
--- a/dev-python/lz4/lz4-4.3.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="LZ4 Bindings for Python"
-HOMEPAGE="
-   https://github.com/python-lz4/python-lz4/
-   https://pypi.org/project/lz4/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
-
-DEPEND="
-   app-arch/lz4:=
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   dev-python/pkgconfig[${PYTHON_USEDEP}]
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_IGNORE=(
-   # lz4.stream is not officially supported and not installed by default
-   # (we do not support installing it at the moment)
-   tests/stream
-)



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

2023-02-16 Thread Michał Górny
commit: 42bc07bc5791a4a63544ea2862cd37d583f8da4e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 06:00:21 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42bc07bc

dev-python/requests-cache: Remove old

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

 dev-python/requests-cache/Manifest |  1 -
 .../requests-cache/requests-cache-0.9.7.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/dev-python/requests-cache/Manifest 
b/dev-python/requests-cache/Manifest
index 9672af141860..146f525a7f5f 100644
--- a/dev-python/requests-cache/Manifest
+++ b/dev-python/requests-cache/Manifest
@@ -1,2 +1 @@
-DIST requests-cache-0.9.7.gh.tar.gz 1544100 BLAKE2B 
a255d3cce0345ff03e020327c10a1d8cc25e519069764b7e3e1a43a0e5cd899aec824e3c147561796cba1f269550505f881cf913d909ce7e6c52e8f76ad9688a
 SHA512 
00b2c7080030ed07f5d896871a431aec2625dab6ab84f01f7e6fea9e81692f757304e25ee6addbe7695e93d0c1c04484c31b95a71d7c9e12f6c23a5b7747ae30
 DIST requests-cache-0.9.8.gh.tar.gz 1540296 BLAKE2B 
8b2ab1227b28c3822cd9111375c8759f5d7099f2724680a6560e4e14cd16558a1dcb8dd98d043fdf2f9a3861d76dd0d2c2f84df059338e9fa28c1257e74e87b9
 SHA512 
f428a7b498d2ef2b6c23d3715bac2274c320b6f9d6f56017e69ab5fa6b8830242a2f335ed6c3758a741a51f108c6dacae1a447ff8f05ca5686303caf48a1dc59

diff --git a/dev-python/requests-cache/requests-cache-0.9.7.ebuild 
b/dev-python/requests-cache/requests-cache-0.9.7.ebuild
deleted file mode 100644
index 358a9638f092..
--- a/dev-python/requests-cache/requests-cache-0.9.7.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1 optfeature
-
-HOMEPAGE="
-   https://pypi.org/project/requests-cache/
-   https://github.com/requests-cache/requests-cache/
-"
-DESCRIPTION="Persistent cache for requests library"
-SRC_URI="
-   https://github.com/requests-cache/requests-cache/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   dev-python/attrs[${PYTHON_USEDEP}]
-   dev-python/appdirs[${PYTHON_USEDEP}]
-   >=dev-python/cattrs-22.2[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.0.0[${PYTHON_USEDEP}]
-   dev-python/urllib3[${PYTHON_USEDEP}]
-   >=dev-python/url-normalize-1.4[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/itsdangerous[${PYTHON_USEDEP}]
-   dev-python/pytest-httpbin[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   dev-python/responses[${PYTHON_USEDEP}]
-   dev-python/timeout-decorator[${PYTHON_USEDEP}]
-   dev-python/ujson[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
-   local EPYTEST_IGNORE=(
-   # These require extra servers running
-   tests/integration/test_dynamodb.py
-   tests/integration/test_gridfs.py
-   tests/integration/test_mongodb.py
-   tests/integration/test_redis.py
-   )
-   local EPYTEST_DESELECT=(
-   # Requires Internet access
-   tests/integration/test_compat.py::test_version_upgrade
-   )
-
-   local -x USE_PYTEST_HTTPBIN=true
-   epytest
-}
-
-pkg_postinst() {
-   optfeature "redis backend" "dev-python/redis"
-   optfeature "MongoDB backend" "dev-python/pymongo"
-
-   optfeature "JSON serialization" "dev-python/ujson"
-   optfeature "YAML serialization" "dev-python/pyyaml"
-   optfeature "signing serialized data" "dev-python/itsdangerous"
-}



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

2023-02-16 Thread Michał Górny
commit: 796f71c0cbfbd0b820f15bba5fb0c7002fbe8c3c
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:59:59 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796f71c0

dev-python/pytools: Remove old

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

 dev-python/pytools/Manifest |  1 -
 dev-python/pytools/pytools-2022.1.13.ebuild | 34 -
 2 files changed, 35 deletions(-)

diff --git a/dev-python/pytools/Manifest b/dev-python/pytools/Manifest
index 2cfb122e37ba..e2c08a5025a1 100644
--- a/dev-python/pytools/Manifest
+++ b/dev-python/pytools/Manifest
@@ -1,2 +1 @@
-DIST pytools-2022.1.13.tar.gz 71650 BLAKE2B 
d12a1081ae2dd063ff4bf04a8e364dc35730b89a1e937ff9a470d2c3a9a1f53f5eaa5eb328831f659f1db1f4e03d2522ad8a4126da67cc5b4ef3798589b4a309
 SHA512 
305c78659b2a32a3d64dbecd4ca2f860554690ec74455c3dfaf3c5434a3e37dfa9dd733d2e5a14736ef5a09bb2c923e7eedde6851e99472f87c849d005fd2e78
 DIST pytools-2022.1.14.tar.gz 74636 BLAKE2B 
5f3014c0adef3571c22b93c1dec1e4b49d48a0a0b9d320e7fa8f9712aaad04383222814770ab324b7d6e028d4b2a94698e6ea1f2f7fb89a654d7c8b371634dc7
 SHA512 
3e733d54176b135b69ac9c76ac7816463c5c874f3e1cede522ab2901250822c821fd325d0d2e5f2b124aeabb93386d8c68e3c6e1b11f6119bed7953ec80f9d4d

diff --git a/dev-python/pytools/pytools-2022.1.13.ebuild 
b/dev-python/pytools/pytools-2022.1.13.ebuild
deleted file mode 100644
index 1e06694cfde7..
--- a/dev-python/pytools/pytools-2022.1.13.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE='sqlite'
-
-inherit distutils-r1
-
-DESCRIPTION="Collection of tools missing from the Python standard library"
-HOMEPAGE="
-   https://mathema.tician.de/software/pytools/
-   https://github.com/inducer/pytools/
-   https://pypi.org/project/pytools/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64"
-
-# NB: numpy is now an "extra" (optional) dep -- we can remove it from
-# RDEPEND If revdeps don't need it
-RDEPEND="
-   >=dev-python/numpy-1.6.0[${PYTHON_USEDEP}]
-   >=dev-python/platformdirs-2.2.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   >=dev-python/typing-extensions-4.0[${PYTHON_USEDEP}]
-   ' 3.8 3.9 3.10)
-"
-
-distutils_enable_tests pytest



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

2023-02-16 Thread Michał Górny
commit: 06cf37a1e8420d90a18cbb4eba39ab9283d5b7b1
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:59:50 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06cf37a1

dev-python/python-cinderclient: Remove old

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

 dev-python/python-cinderclient/Manifest|  1 -
 .../python-cinderclient-9.1.0.ebuild   | 52 --
 2 files changed, 53 deletions(-)

diff --git a/dev-python/python-cinderclient/Manifest 
b/dev-python/python-cinderclient/Manifest
index a54c43561e7d..3230106a1691 100644
--- a/dev-python/python-cinderclient/Manifest
+++ b/dev-python/python-cinderclient/Manifest
@@ -1,2 +1 @@
-DIST python-cinderclient-9.1.0.tar.gz 234608 BLAKE2B 
9ff63454e8162d731517ce2d98b6ea0c3cf04ef5a885e30afaa67444eb7f814c1ac205a0a216c7a3b92311be5687b9e2561aa02936e87b91ca61c8ea663e069f
 SHA512 
2aa55331d5f372cccb946a4be2e25d4cc6a1d9d9676f1f32b9b51f141d107f74bcb1d0d7a5ef94b931fc5a5ccacb43f639db635217a7833d7738296734938f8b
 DIST python-cinderclient-9.2.0.tar.gz 235773 BLAKE2B 
1b4e1c27dec6d74a2c95e3aadbdfb296bf6105ba5a23599babfcf8fc5c37fb52eecf7897eaa0680277b903b1725de2cb7d9a108942fa1be5067b25dce8ca0c72
 SHA512 
76032779bfa2dbc6c7aecc6631ab42b80bff21437d5037e6bbc5d78a23ce493a7a185c4ee8c1657b41c0bf376a6c919b027f81577f2826fc4222334d8216fda5

diff --git a/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild 
b/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
deleted file mode 100644
index 8f127cc25556..
--- a/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="A client for the OpenStack Cinder API"
-HOMEPAGE="https://launchpad.net/python-cinderclient;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-python/keystoneauth1-4.3.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-5.0.1[${PYTHON_USEDEP}]
-   >=dev-python/oslo-utils-4.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pbr-5.5.0[${PYTHON_USEDEP}]
-   >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
-   >=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-3.3.0[${PYTHON_USEDEP}]
-"
-# Tests fail with dev-python/prettytable-3.4.0
-BDEPEND="
-   dev-python/pbr[${PYTHON_USEDEP}]
-   test? (
-   dev-python/ddt[${PYTHON_USEDEP}]
-   dev-python/fixtures[${PYTHON_USEDEP}]
-   dev-python/oslo-serialization[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   dev-python/testtools[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: dev-python/openapi-spec-validator/

2023-02-16 Thread Michał Górny
commit: bc2b766e66c359663e8aef59c61d1d64306b7a48
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:56:28 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2b766e

dev-python/openapi-spec-validator: Mark ALLARCHES

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

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

diff --git a/dev-python/openapi-spec-validator/metadata.xml 
b/dev-python/openapi-spec-validator/metadata.xml
index f1585fdeea72..be2432aed5c9 100644
--- a/dev-python/openapi-spec-validator/metadata.xml
+++ b/dev-python/openapi-spec-validator/metadata.xml
@@ -4,6 +4,7 @@

pyt...@gentoo.org

+   

p1c2u/openapi-spec-validator
openapi-spec-validator



[gentoo-commits] repo/gentoo:master commit in: dev-python/openapi-spec-validator/, dev-python/openapi-spec-validator/files/

2023-02-16 Thread Michał Górny
commit: 2d679f354dab7ed8ffcf6963dcf6ff38791b9467
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:53:59 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d679f35

dev-python/openapi-spec-validator: Remove old

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

 dev-python/openapi-spec-validator/Manifest |  4 --
 ...penapi-spec-validator-0.5.0-std-importlib.patch | 43 ---
 .../openapi-spec-validator-0.4.0.ebuild| 51 -
 .../openapi-spec-validator-0.5.1.ebuild| 64 --
 .../openapi-spec-validator-0.5.3.ebuild| 56 ---
 .../openapi-spec-validator-0.5.4.ebuild| 56 ---
 6 files changed, 274 deletions(-)

diff --git a/dev-python/openapi-spec-validator/Manifest 
b/dev-python/openapi-spec-validator/Manifest
index 79d28159ef28..2bbee3959014 100644
--- a/dev-python/openapi-spec-validator/Manifest
+++ b/dev-python/openapi-spec-validator/Manifest
@@ -1,6 +1,2 @@
-DIST openapi-spec-validator-0.4.0.gh.tar.gz 46051 BLAKE2B 
43a1458ab1801700261f750e49d45b0cb4d02f1c17a16943b5232836061e0e1466fc973343bbd4bf7a8669b682bd6761cb905fdfb3b80c0b9720253cc2d5a926
 SHA512 
d2eaf22c75e72eb5061a916eb37b13179a5ba65eb8a00ec42e81c6b4168239bc8613388f2d77ce35113d260385b175280d8863a3deedf18ea5aa93a79f058419
-DIST openapi-spec-validator-0.5.1.gh.tar.gz 39539 BLAKE2B 
66adbed2c85527f89e510d5cbc11ccf05f23546191e2677a1c34f7545d2e975dda37f1c53e988e37cf526663053ac0176567137273e3be9156b24deda89db6c1
 SHA512 
b70a2f926d889fec9d4fd26c51e1fbbeb5e75f13449d2d0205b1b7edb12ab2ba49e4cac69426f782ca3a4430c79a6de8f66b4aad2fc552bcfcf7005e866522ff
 DIST openapi-spec-validator-0.5.2.gh.tar.gz 39743 BLAKE2B 
92a4c4503add68c2683f4229f7b68b7cf98d38f36f3c03835b03be5e2a1092ebbb46a9f8d09bfb9e3cf7059a2a72ff01b81742986d479c2713dc6ef783718e00
 SHA512 
68f7d507a239c75e2edb3bab576fd1fede9bcebde48c57361e3e764c9c19c4dc0d63e650851c2f6e7f2dd7f4efcdcd028842e259aa9e341823cd052a6e20
-DIST openapi-spec-validator-0.5.3.gh.tar.gz 57006 BLAKE2B 
0b92de74c3615789de5bb78340f75b5833172020aa8da987dd129ad24a339e93851d7830f9eb0be192af5cd35120bd5ec9601140e6edc964d5577950ac968bf5
 SHA512 
ef197f7bd05bcc7523a5b8992b602d5a7ea8c9cabe2166889d41ad764d2f96d7a90cbc11c247d7c33a33747cb2e6667bcbd279260d1bfc394769ef5fd1c19b25
-DIST openapi-spec-validator-0.5.4.gh.tar.gz 57072 BLAKE2B 
d314fb62a106204fb706193c60b869a49d4e81a92d40ac73bd2f0b1cd01c7d6188f22e2299301974d1a90ec4d2a8e92f9895ab0643b6768f27230588fcac803d
 SHA512 
234d5f284f71448f47cb82584ba8601c0bae13d85daad3452aae0c33d9e26d1e541bd96a17e9de33dbad1a7ebea0c362eced61497424c502a666075dd02bce33
 DIST openapi-spec-validator-0.5.5.gh.tar.gz 57200 BLAKE2B 
037566130546d2cc894dd12e0fc0d80fe9631f94085ec286a61ea810c58b48cd7837cc044388773798a7684fa4d73bb89eed643a164280433c1cd8d6a9cd42cc
 SHA512 
4b5415216e74937a0c6f527850921f362a3183119a641d4d369cbf3e6aa19209ec7d8ff05697eed7dcd1ee6d0e8fbcc9cb8aaa0e3eb46e4da34bc7a0a4b78c00

diff --git 
a/dev-python/openapi-spec-validator/files/openapi-spec-validator-0.5.0-std-importlib.patch
 
b/dev-python/openapi-spec-validator/files/openapi-spec-validator-0.5.0-std-importlib.patch
deleted file mode 100644
index ac794b49cd9a..
--- 
a/dev-python/openapi-spec-validator/files/openapi-spec-validator-0.5.0-std-importlib.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From: Arthur Zamarin 
-Date: Fri, 2 Sep 2022 18:11:35 +0300
-Subject: [PATCH] Use stdlib importlib.resources on python >= 3.9
-
-https://github.com/p1c2u/openapi-spec-validator/pull/174
-
 a/openapi_spec_validator/schemas/utils.py
-+++ b/openapi_spec_validator/schemas/utils.py
-@@ -5,14 +5,17 @@ from typing import Hashable
- from typing import Mapping
- from typing import Tuple
-
--import importlib_resources
-+try:
-+from importlib.resources import as_file, files
-+except ImportError:
-+from importlib_resources import as_file, files
- from jsonschema_spec.readers import FilePathReader
-
-
- def get_schema(version: str) -> Tuple[Mapping[Hashable, Any], str]:
- schema_path = f"resources/schemas/v{version}/schema.json"
--ref = importlib_resources.files("openapi_spec_validator") / schema_path
--with importlib_resources.as_file(ref) as resource_path:
-+ref = files("openapi_spec_validator") / schema_path
-+with as_file(ref) as resource_path:
- schema_path_full = path.join(path.dirname(__file__), resource_path)
- return FilePathReader(schema_path_full).read()
-
 a/pyproject.toml
-+++ b/pyproject.toml
-@@ -49,7 +49,7 @@ openapi-schema-validator = "^0.3.2"
- python = "^3.7.0"
- PyYAML = ">=5.1"
- requests = {version = "*", optional = true}
--importlib-resources = "^5.8.0"
-+importlib-resources = {version = "^5.8.0", python = "<3.9" }
- jsonschema-spec = "^0.1.1"
- lazy-object-proxy = "^1.7.1"
-
---
-2.37.3
-

diff --git 

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

2023-02-16 Thread Michał Górny
commit: 2f5b309118e912aed845f0862cd866591aabd617
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:54:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f5b3091

dev-python/nbsphinx: Remove old

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

 dev-python/nbsphinx/Manifest   |  2 --
 dev-python/nbsphinx/nbsphinx-0.8.10.ebuild | 29 -
 dev-python/nbsphinx/nbsphinx-0.8.11.ebuild | 29 -
 3 files changed, 60 deletions(-)

diff --git a/dev-python/nbsphinx/Manifest b/dev-python/nbsphinx/Manifest
index 7e33eccd00ea..9bd2a7ec46dc 100644
--- a/dev-python/nbsphinx/Manifest
+++ b/dev-python/nbsphinx/Manifest
@@ -1,3 +1 @@
-DIST nbsphinx-0.8.10.tar.gz 177352 BLAKE2B 
e9fce12b59afe4b364be36ecfe4abc98e9444feafd52fa647ca2832622d875f78389928961d2c53235f466c55e9e1aee8ecf9db6751dfe7d0db8d40502876459
 SHA512 
a010ceff90d59d3cbff7953c1c807b9ff23661e1fb2255d5af151f6a1b4a2441f7a836a4fbea5ed11eda42ca8a0eae091ffe7d87c09940480d5f4e3311bb177b
-DIST nbsphinx-0.8.11.tar.gz 177598 BLAKE2B 
5a8db76cdc39b19ec883f1ee58331248cc952786ffbe1a5ac75261a8258a9f36370366bf7654c6eecfdae17b324dab6ff2981c791dcdfb15cabeb0eea3b3f9ba
 SHA512 
fb3e6d8074b639adc810ec0970e22d7f50bcadc072cacb0601bd9da3eece16c8af052360ecdd5c66b61ce4146deae10e44c3acd431073bd6086cc524b6861002
 DIST nbsphinx-0.8.12.tar.gz 178986 BLAKE2B 
5f79e20be5ceb3c9458530c19f453599cff8c278d5ad56faec952cc191336469cee3ecc130bbca8cae5d14447abf544a6b127251f3ee2a26e63c94a1326b707c
 SHA512 
fd18cde3b7034bbd0f0f5ec7addd8925e867dbe0cfe810310240e5748014f2cc6bf275ff24d070d0c8748e7d144bf3dc2e9a26ede3a50e880f3db27d1a0d0575

diff --git a/dev-python/nbsphinx/nbsphinx-0.8.10.ebuild 
b/dev-python/nbsphinx/nbsphinx-0.8.10.ebuild
deleted file mode 100644
index 40a1e044fb6f..
--- a/dev-python/nbsphinx/nbsphinx-0.8.10.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Jupyter Notebook Tools for Sphinx"
-HOMEPAGE="
-   https://github.com/spatialaudio/nbsphinx/
-   https://pypi.org/project/nbsphinx/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-RDEPEND="
-   dev-python/docutils[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/nbconvert[${PYTHON_USEDEP}]
-   dev-python/nbformat[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.8[${PYTHON_USEDEP}]
-   >=dev-python/traitlets-5[${PYTHON_USEDEP}]
-"

diff --git a/dev-python/nbsphinx/nbsphinx-0.8.11.ebuild 
b/dev-python/nbsphinx/nbsphinx-0.8.11.ebuild
deleted file mode 100644
index 1633ce2dde8a..
--- a/dev-python/nbsphinx/nbsphinx-0.8.11.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Jupyter Notebook Tools for Sphinx"
-HOMEPAGE="
-   https://github.com/spatialaudio/nbsphinx/
-   https://pypi.org/project/nbsphinx/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
-   dev-python/docutils[${PYTHON_USEDEP}]
-   dev-python/jinja[${PYTHON_USEDEP}]
-   dev-python/nbconvert[${PYTHON_USEDEP}]
-   dev-python/nbformat[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.8[${PYTHON_USEDEP}]
-   >=dev-python/traitlets-5[${PYTHON_USEDEP}]
-"



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

2023-02-16 Thread Michał Górny
commit: a2a59e06f73a1b1c12ebf8cf5b9c93b399d770e2
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:58:08 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a59e06

dev-python/pefile: Remove old

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

 dev-python/pefile/pefile-2022.5.30.ebuild | 29 -
 1 file changed, 29 deletions(-)

diff --git a/dev-python/pefile/pefile-2022.5.30.ebuild 
b/dev-python/pefile/pefile-2022.5.30.ebuild
deleted file mode 100644
index f6395af3347e..
--- a/dev-python/pefile/pefile-2022.5.30.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Module to read and work with Portable Executable (PE) files"
-HOMEPAGE="https://github.com/erocarrera/pefile;
-
-if [[ ${PV} ==  ]] ; then
-   EGIT_REPO_URI="https://github.com/erocarrera/pefile.git;
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/erocarrera/pefile/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="${PYTHON_DEPS}
-   dev-python/future[${PYTHON_USEDEP}]"
-
-# Unfortunately there is nothing we can test here. Upstream doesn't ship a test
-# suite inside the release files. The test fixtures in the source repo is
-# encrypted so that only their CI pipeline is able to run the tests.



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

2023-02-16 Thread Michał Górny
commit: 8c10650b26c2fcc2f1118dd883a5b21e9f5e5508
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:52:05 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c10650b

dev-python/ijson: Remove old

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

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

diff --git a/dev-python/ijson/Manifest b/dev-python/ijson/Manifest
index 61a46c4495ed..c4d39d05da09 100644
--- a/dev-python/ijson/Manifest
+++ b/dev-python/ijson/Manifest
@@ -1,2 +1 @@
-DIST ijson-3.1.4.tar.gz 125725 BLAKE2B 
870439690c0b776d04c3023fb910d0f9ff2ca573be728c06802fbbbd5de1d5dcb8e677b778d30cb134d181dfc4ffd53c686af3d57458501d9548ddbdba8bf6d7
 SHA512 
7e64c4fec84fd6942c83809849eefc1c299c597524c0fe73e2cdc542e113faad8f35cc5219b0bc4e05842ac69d8608089d7cbb2dc006e404c184505392b21baa
 DIST ijson-3.2.0.post0.gh.tar.gz 127558 BLAKE2B 
38e06039bb177c43e4744f145fed2159e317a0b8da628b85a62215cdfe6693b271c39629811513d2e563b532244950616b9105134916bc577446a0b5e5ce25f7
 SHA512 
b926253a3d6a070e2ac27c61542d340e4a1498de7642957dbe59e9fd3c53d700ed4e8ee71c83efcb90b2c302d15b0d268c38054c10728bbb436521aa5b42050b

diff --git a/dev-python/ijson/ijson-3.1.4.ebuild 
b/dev-python/ijson/ijson-3.1.4.ebuild
deleted file mode 100644
index 51d0badeee14..
--- a/dev-python/ijson/ijson-3.1.4.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} pypy3 )
-inherit distutils-r1
-
-MY_PV="${PV//_p/.post}"
-DESCRIPTION="Iterative JSON parser with a Pythonic interface"
-HOMEPAGE="
-   https://github.com/ICRAR/ijson
-   https://pypi.org/project/ijson/
-"
-SRC_URI="https://github.com/ICRAR/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-
-RDEPEND="dev-libs/yajl"
-DEPEND="${RDEPEND}"
-
-distutils_enable_tests pytest



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

2023-02-16 Thread Michał Górny
commit: b894bdb53b48c1c3b49b1cc981e61a1385d13eea
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:59:23 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b894bdb5

dev-python/precis-i18n: Remove old

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

 dev-python/precis-i18n/Manifest |  1 -
 dev-python/precis-i18n/precis-i18n-1.0.4.ebuild | 26 -
 2 files changed, 27 deletions(-)

diff --git a/dev-python/precis-i18n/Manifest b/dev-python/precis-i18n/Manifest
index 2a8d43c1ebe6..791b30b477cf 100644
--- a/dev-python/precis-i18n/Manifest
+++ b/dev-python/precis-i18n/Manifest
@@ -1,2 +1 @@
-DIST precis_i18n-1.0.4.tar.gz 67599 BLAKE2B 
db1f614b46015741b9f511b9a5df12e44b960ffb247357bf8d2e9f3a1deea9d417eed937e6c9e6a34d19a22c3e6d87bf8f2314767cd02b15cba068759588896f
 SHA512 
f57840cffe1224d282e707f6a36ebd53b539f9acee58de7053f28ceed5356bd35627d7c205cc91dc81983925cca55138715051c0ca535ca1dcc9d26aad9a9353
 DIST precis_i18n-1.0.5.tar.gz 67710 BLAKE2B 
7995c3cb74290524d70ecd75b052201df49ae7e9f4d0052c8176756866ba8533d164b057f0fc4c5c47b938a20e36898cb52bec411b56461cb9c4e4f7029db4ed
 SHA512 
ba3b43d4a84de02e002f7e62a7fb75c4694f3c6a8963e5bdfd9927989c2ee84317fc5fa6f119e79bb1f88dc97a37a06930829daae3969d6a5b2f5ba57bedc3e9

diff --git a/dev-python/precis-i18n/precis-i18n-1.0.4.ebuild 
b/dev-python/precis-i18n/precis-i18n-1.0.4.ebuild
deleted file mode 100644
index 13c842d2ad1c..
--- a/dev-python/precis-i18n/precis-i18n-1.0.4.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
-
-MY_PN="${PN/-/_}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Internationalized Usernames and Passwords"
-HOMEPAGE="https://pypi.org/project/precis-i18n/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN/-/_}/${P/-/_}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
-
-distutils_enable_tests unittest
-
-python_test() {
-   eunittest -s test
-}



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

2023-02-16 Thread Michał Górny
commit: aac3f9fd8cad5bd87624d8f67e72445cf165f36d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:59:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aac3f9fd

dev-python/plumbum: Remove old

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

 dev-python/plumbum/Manifest |  1 -
 dev-python/plumbum/plumbum-1.8.0.ebuild | 53 -
 2 files changed, 54 deletions(-)

diff --git a/dev-python/plumbum/Manifest b/dev-python/plumbum/Manifest
index 8a24e2c7a82f..3c8591585662 100644
--- a/dev-python/plumbum/Manifest
+++ b/dev-python/plumbum/Manifest
@@ -1,2 +1 @@
-DIST plumbum-1.8.0.tar.gz 325060 BLAKE2B 
30006fa3826bbdd9482592d825931fd7dcb05b2aca6d762093c4f722f0426aaa6f07fde55754f115e4fba4a45997d2995a657c5a1cfa34c417bb4f5fb2e5834d
 SHA512 
47874c42081d385fad85b9073fbeb72b8fa847fc79035be1277a1fdabcfb06e7822a4dbba271d86502b9b297a70742f30b1158c363b668a47e783c9990cd
 DIST plumbum-1.8.1.tar.gz 316432 BLAKE2B 
91288c5f793b9e3e7d1e1d3724f5cc16989d604b1236438fc71283fab5aa59bb34f1742fe2d79b7a9220e09a3622f5145769497765f3f9213dc70960af478fa0
 SHA512 
80031c07be3b68767556bba8246e964c51b16336d6105ad3d51d62f7c39287af6f928be713171c8c22cdd37145a0e7c3bd65d44f14bf8b1bc62483b648f3acff

diff --git a/dev-python/plumbum/plumbum-1.8.0.ebuild 
b/dev-python/plumbum/plumbum-1.8.0.ebuild
deleted file mode 100644
index 048238ccec4f..
--- a/dev-python/plumbum/plumbum-1.8.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="A library for shell script-like programs in python"
-HOMEPAGE="https://plumbum.readthedocs.io/en/latest/ 
https://github.com/tomerfiliba/plumbum;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-   test? (
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Need sshd running
-   tests/test_remote.py
-   tests/test_utils.py
-   # Windows specific
-   tests/test_putty.py
-   # Needs sudo without password
-   tests/test_sudo.py
-   # Wrong assumptions about env handling
-   tests/test_env.py::TestEnv::test_change_env
-   tests/test_env.py::TestEnv::test_dictlike
-   tests/test_local.py::TestLocalPath::test_iterdir
-)
-
-src_prepare() {
-   sed -e '/addopts/d' -i pyproject.toml || die
-   distutils-r1_src_prepare
-}
-
-pkg_postinst() {
-   optfeature "remote commands via ssh" dev-python/paramiko
-   optfeature "progress bars in jupyter" dev-python/ipywidgets
-   optfeature "colored output in jupyter" dev-python/ipython
-   optfeature "images on the command line" dev-python/pillow
-}



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

2023-02-16 Thread Michał Górny
commit: 27e5de495cd7cf4ef8cdcbd4ed69b80d5584927f
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:53:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27e5de49

dev-python/mediafile: Remove old

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

 dev-python/mediafile/Manifest|  1 -
 dev-python/mediafile/mediafile-0.10.1.ebuild | 31 
 2 files changed, 32 deletions(-)

diff --git a/dev-python/mediafile/Manifest b/dev-python/mediafile/Manifest
index ffa482b9fec4..305dc56d44c6 100644
--- a/dev-python/mediafile/Manifest
+++ b/dev-python/mediafile/Manifest
@@ -1,2 +1 @@
-DIST mediafile-0.10.1.gh.tar.gz 568722 BLAKE2B 
4da5fe76cc6e3e41d8591c962d9cfde1e16a64b57192d795714955aeab4d49d608a977685352de8e55ac83d1dde56435a31c4577a4a4743499393c051c471c7c
 SHA512 
db9d82d23eb3f1a6b2e19f1b635805e84ed54ed06641a0e1ab80d7350415d1297cec64f18c66b38a7552abdaf2c1a8bfc6bb0c8543d9c618368184e6d6bb6405
 DIST mediafile-0.11.0.gh.tar.gz 568718 BLAKE2B 
3815af2985312d5464158ae3aaecd23eadf53bec4f6b66247014dd5c3768262d33d0d6b7234d69d6169de77d2f8d9fab2c005c75e2774a53951451b08511971e
 SHA512 
2e4f11995a8d83dcbfe6aa01f5162db0f01851bb93e8ad9ffc50afca703edd6a23c4f5a3b94d2fd6e07285534d081f78ea384d04b3858eefa58216e415a8498b

diff --git a/dev-python/mediafile/mediafile-0.10.1.ebuild 
b/dev-python/mediafile/mediafile-0.10.1.ebuild
deleted file mode 100644
index 97b0134a27a1..
--- a/dev-python/mediafile/mediafile-0.10.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Read and write audio files' tags in Python"
-HOMEPAGE="
-   https://github.com/beetbox/mediafile/
-   https://pypi.org/project/mediafile/
-"
-SRC_URI="
-   https://github.com/beetbox/mediafile/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   >=media-libs/mutagen-1.46.0[${PYTHON_USEDEP}]
-"
-
-distutils_enable_sphinx docs
-distutils_enable_tests unittest



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

2023-02-16 Thread Michał Górny
commit: 419f86df32ba9622cec82fa2479f1e136ef89490
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:52:24 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=419f86df

dev-python/libcloud: Remove old

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

 dev-python/libcloud/Manifest  |  1 -
 dev-python/libcloud/libcloud-3.6.1.ebuild | 60 ---
 2 files changed, 61 deletions(-)

diff --git a/dev-python/libcloud/Manifest b/dev-python/libcloud/Manifest
index e1c16eda4736..7da391086683 100644
--- a/dev-python/libcloud/Manifest
+++ b/dev-python/libcloud/Manifest
@@ -1,2 +1 @@
-DIST apache-libcloud-3.6.1.tar.bz2 1944060 BLAKE2B 
61e1481cc8e4e3e017c262d20666ee33a79ccb78bbc0d682dfe6f63df26f21c06897ec98b0df56a27ac6ee92922a08ecb98451c1680c323f042a497379f91090
 SHA512 
292166aa1eda4b31eb1552c91d9acd54001c363471f1fdd5310e3e25519d7e1f599d9566f55a0c10ece08d544774e1abca3043283b1e7dd93bfadb7e36b02e22
 DIST apache-libcloud-3.7.0.tar.bz2 1979020 BLAKE2B 
f8630a5c559cba9ae6f7792ffc9cf4ba6eb2fdaa28d6ae148a5d2e978ee66eec9a39b16741446b78b047bf2454de860148a13bce3dbd8627dbc7dac43543b808
 SHA512 
315866947d2c748e4a13c4c2a4147a2a8e79cbb85e9e83fded3f89ff8a50c531acf1062a4e21c61448c20e7f7e7f9d1317d3c43ecfe2fb75155c0d81ff03f889

diff --git a/dev-python/libcloud/libcloud-3.6.1.ebuild 
b/dev-python/libcloud/libcloud-3.6.1.ebuild
deleted file mode 100644
index dd80485a7313..
--- a/dev-python/libcloud/libcloud-3.6.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE="ssl(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Unified Interface to the Cloud - python support libs"
-HOMEPAGE="https://libcloud.apache.org/;
-SRC_URI="mirror://apache/${PN}/apache-${P}.tar.bz2"
-S="${WORKDIR}/apache-${P}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-IUSE="examples"
-
-RDEPEND="
-   dev-python/pyopenssl[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.5.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-python/cryptography-2.6.1[${PYTHON_USEDEP}]
-   dev-python/lockfile[${PYTHON_USEDEP}]
-   dev-python/requests-mock[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # Needs network access
-   
libcloud/test/compute/test_ovh.py::OvhTests::test_list_nodes_invalid_region
-   
libcloud/test/test_connection.py::BaseConnectionClassTestCase::test_connection_timeout_raised
-   
libcloud/test/test_connection.py::ConnectionClassTestCase::test_retry_on_all_default_retry_exception_classes
-   # TODO
-   
libcloud/test/compute/test_ssh_client.py::ParamikoSSHClientTests::test_key_file_non_pem_format_error
-)
-
-src_prepare() {
-   if use examples; then
-   mkdir examples || die
-   mv example_*.py examples || die
-   fi
-
-   # needed for tests
-   cp libcloud/test/secrets.py-dist libcloud/test/secrets.py || die
-
-   distutils-r1_src_prepare
-}
-
-src_install() {
-   use examples && dodoc -r examples
-   distutils-r1_src_install
-}



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

2023-02-16 Thread Michał Górny
commit: a9a4277117de849219603bf2499ccd01e040
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:52:57 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9a42771

dev-python/mpi4py: Remove old

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

 dev-python/mpi4py/Manifest|  1 -
 dev-python/mpi4py/mpi4py-3.1.3.ebuild | 62 ---
 2 files changed, 63 deletions(-)

diff --git a/dev-python/mpi4py/Manifest b/dev-python/mpi4py/Manifest
index faba9600f3e6..b98e7a506457 100644
--- a/dev-python/mpi4py/Manifest
+++ b/dev-python/mpi4py/Manifest
@@ -1,2 +1 @@
-DIST mpi4py-3.1.3.tar.gz 2461368 BLAKE2B 
3ff7f6519a1ee96249567b1c65401fd1242c433bbb0a55c9d0a9b07f167ec44c71aefc24ac5fb354ceeb591dbfe97a4306f8455bb00559789367e91b78d80c16
 SHA512 
7a15224692016253120e8e88be1f7201e6f4548c1fb5ed15f04f416000b0d9e259dd8e80c0e237b1a960143e52b4a840d2a541359833387ac12868af1c059cea
 DIST mpi4py-3.1.4.tar.gz 2493282 BLAKE2B 
e1a048e6053263f6685c549e2e6f96072b7d95db68595c8848d0ecdb0a6cadf2b102e4c4ce589053ed17a090335afc56f4b3630b60944aeac7e4bc4ad82d4a1b
 SHA512 
f59ad765bc272f8b63f74cfde4e588f640c4fc3d47d05729509da45a2155f830c1d409ec716ff374756748fa8ebfa6e72f9fbe188a6b89ea3fa115740a532b08

diff --git a/dev-python/mpi4py/mpi4py-3.1.3.ebuild 
b/dev-python/mpi4py/mpi4py-3.1.3.ebuild
deleted file mode 100644
index bcc5f7cfbd44..
--- a/dev-python/mpi4py/mpi4py-3.1.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Message Passing Interface for Python"
-HOMEPAGE="https://github.com/mpi4py/mpi4py https://pypi.org/project/mpi4py/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~riscv x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-python/cython[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   virtual/mpi
-"
-DEPEND="${RDEPEND}
-   test? (
-   virtual/mpi[romio]
-   )
-"
-
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_prepare_all() {
-   # not needed on install
-   rm -vr docs/source || die
-   rm test/test_pickle.py || die # disabled by Gentoo-bug #659348
-   distutils-r1_python_prepare_all
-}
-
-src_compile() {
-   export FAKEROOTKEY=1
-   distutils-r1_src_compile
-}
-
-python_test() {
-   echo "Beginning test phase"
-   pushd "${BUILD_DIR}"/../ &> /dev/null || die
-   # spawn is not stable in OpenMPI 4
-   # https://github.com/jsquyres/ompi/pull/4#issuecomment-806897758
-   # oob_tcp_if_include lo is needed to allow test in systemd-nspawn 
container
-   mpiexec --use-hwthread-cpus --mca btl tcp,self --mca oob_tcp_if_include 
lo \
-   -n 1 "${PYTHON}" -B ./test/runtests.py -v \
-   --exclude="test_msgspec" --exclude="test_spawn" ||
-   die "Testsuite failed under ${EPYTHON}"
-   popd &> /dev/null || die
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/. )
-   use examples && local DOCS=( demo )
-   distutils-r1_python_install_all
-}



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

2023-02-16 Thread Michał Górny
commit: 12ff8d15e6281bdb106177c02361dc5668165ba8
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 17 05:52:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 17 06:21:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12ff8d15

dev-python/json-rpc: Remove old

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

 dev-python/json-rpc/Manifest  |  1 -
 dev-python/json-rpc/json-rpc-1.13.0-r1.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/dev-python/json-rpc/Manifest b/dev-python/json-rpc/Manifest
index 301ad9ead39e..5beb3f624fdf 100644
--- a/dev-python/json-rpc/Manifest
+++ b/dev-python/json-rpc/Manifest
@@ -1,2 +1 @@
-DIST json-rpc-1.13.0.tar.gz 31089 BLAKE2B 
f2058bf78cf1924aff7bf7882aa693cbbb5419624bf3e3508a344754265985907cb16456de611b9be23afd701bd2f664ccb05f954622e543bd9db0ab8be52101
 SHA512 
76cd320b29c32a79fcafbd415cea8d4ca98a349b22b29c379aa06a89a76cd2b5bcba2e0883d8cad75ee43c4a979759a6af513d3cfb30076965de08e1ee801b9e
 DIST json-rpc-1.14.0.tar.gz 28789 BLAKE2B 
7d5c0677452481e39be2698a1d303eb0677dd31f0861aac5b0ddfe850aea6f612ce5cf07f85df8d3b02b29a3d31c5249f49138603d6842b1ca56e8dc0ddcf668
 SHA512 
01e6a27509eb694d26b64b634a17fd2d36124f1602469293541f4f48b9de8046dcd5dccdc2a6f3e413c47eac4ed245495ce3e4c41fab42074a13e11f52a5c79e

diff --git a/dev-python/json-rpc/json-rpc-1.13.0-r1.ebuild 
b/dev-python/json-rpc/json-rpc-1.13.0-r1.ebuild
deleted file mode 100644
index fa48385199dd..
--- a/dev-python/json-rpc/json-rpc-1.13.0-r1.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="JSON-RPC transport implementation for python"
-HOMEPAGE="https://github.com/pavlov99/json-rpc;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64"
-
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"
-
-BDEPEND="
-   test? ( dev-python/flask[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest



[gentoo-commits] proj/sci:master commit in: dev-python/nwbinspector/

2023-02-16 Thread Horea Christian
commit: 59c98588cff8a567cda08a1154ae0ba19a152098
Author: Horea Christian  chymera  eu>
AuthorDate: Fri Feb 17 06:07:50 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Fri Feb 17 06:07:50 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=59c98588

dev-python/nwbinspector: drop 0.4.12

Signed-off-by: Horea Christian  chymera.eu>

 dev-python/nwbinspector/nwbinspector-0.4.12.ebuild | 39 --
 1 file changed, 39 deletions(-)

diff --git a/dev-python/nwbinspector/nwbinspector-0.4.12.ebuild 
b/dev-python/nwbinspector/nwbinspector-0.4.12.ebuild
deleted file mode 100644
index 5f5bc2045..0
--- a/dev-python/nwbinspector/nwbinspector-0.4.12.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_10 )
-inherit distutils-r1
-
-DESCRIPTION="Inspect NWB files for compliance with NWB Best Practices"
-HOMEPAGE="https://github.com/NeurodataWithoutBorders/nwbinspector;
-SRC_URI="https://github.com/NeurodataWithoutBorders/nwbinspector/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND=""
-RDEPEND="
-   dev-python/click[${PYTHON_USEDEP}]
-   dev-python/jsonschema[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
-   dev-python/pynwb[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   dev-python/tqdm[${PYTHON_USEDEP}]
-"
-BDEPEND=""
-
-distutils_enable_tests pytest
-
-python_test() {
-   local EPYTEST_IGNORE=(
-   tests/test_inspector.py
-   tests/unit_tests/test_time_series.py
-   )
-   epytest
-}



[gentoo-commits] proj/sci:master commit in: dev-python/nwbinspector/

2023-02-16 Thread Horea Christian
commit: 8a6eb88aaf6ee80dba7e02fca53b89ad6fd6cf42
Author: Horea Christian  chymera  eu>
AuthorDate: Fri Feb 17 06:07:39 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Fri Feb 17 06:07:39 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a6eb88a

dev-python/nwbinspector: add 0.4.26

Signed-off-by: Horea Christian  chymera.eu>

 dev-python/nwbinspector/nwbinspector-0.4.26.ebuild | 31 ++
 1 file changed, 31 insertions(+)

diff --git a/dev-python/nwbinspector/nwbinspector-0.4.26.ebuild 
b/dev-python/nwbinspector/nwbinspector-0.4.26.ebuild
new file mode 100644
index 0..a80527994
--- /dev/null
+++ b/dev-python/nwbinspector/nwbinspector-0.4.26.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_10 )
+inherit distutils-r1
+
+DESCRIPTION="Inspect NWB files for compliance with NWB Best Practices"
+HOMEPAGE="https://github.com/NeurodataWithoutBorders/nwbinspector;
+SRC_URI="https://github.com/NeurodataWithoutBorders/nwbinspector/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND=""
+RDEPEND="
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
+   dev-python/pynwb[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/tqdm[${PYTHON_USEDEP}]
+"
+BDEPEND=""
+
+distutils_enable_tests pytest



[gentoo-commits] proj/portage:master commit in: man/, lib/_emerge/, /, lib/portage/tests/resolver/

2023-02-16 Thread Sam James
commit: c65bbcf7630f454ce84a4fa6b8ebff8488c6bfb2
Author: Tom Gillespie  gmail  com>
AuthorDate: Sun Jan 15 22:46:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:49:01 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=c65bbcf7

emerge: add --onlydeps-with-ideps= option (bug 890777)

Add --onlydeps-with-ideps option in order to include install-time
dependencies with --onlydeps and --onlydeps-with-rdeps=n. The
dependencies that get pulled in are those that are necessary for
emerge --nodeps to succeed when run after the equivalent --onlydeps.
The default --onlydeps --onlydeps-with-rdeps=n behavior is unchanged.

This also adds a new test file test_onlydeps_ideps.py that is derived
from test_onlydeps_minimal.py and tests the behavior for EAPI={7,8}.
Additional tests have been added to test_onlydeps_minimal.py to ensure
that the behavior at EAPI=0 remains unchanged.

Bug: https://bugs.gentoo.org/890777
Signed-off-by: Tom Gillespie  gmail.com>
Closes: https://github.com/gentoo/portage/pull/979
Signed-off-by: Sam James  gentoo.org>

 NEWS   |   1 +
 lib/_emerge/depgraph.py|   3 +-
 lib/_emerge/main.py|   9 +-
 lib/portage/tests/resolver/test_onlydeps_ideps.py  | 172 +
 .../tests/resolver/test_onlydeps_minimal.py|  25 +++
 man/emerge.1   |   5 +
 6 files changed, 212 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 3322fe32a..b1f317ce3 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,7 @@ Features:
 * ebuild: Set GNUMAKEFLAGS="--output-sync=line" to ensure build logs are 
written
   to synchronously when running GNU make in parallel. This option is only set 
if
   MAKEOPTS and GNUMAKEFLAGS are left unset by the user.
+* emerge: add --onlydeps-with-ideps= option (bug #890777).
 
 Bug fixes:
 * gpkg: Handle out-of-space errors (bug #891391).

diff --git a/lib/_emerge/depgraph.py b/lib/_emerge/depgraph.py
index 9030b6543..1631ed126 100644
--- a/lib/_emerge/depgraph.py
+++ b/lib/_emerge/depgraph.py
@@ -3718,7 +3718,8 @@ class depgraph:
 ):
 edepend["RDEPEND"] = ""
 edepend["PDEPEND"] = ""
-edepend["IDEPEND"] = ""
+if self._frozen_config.myopts.get("--onlydeps-with-ideps") in 
("n", None):
+edepend["IDEPEND"] = ""
 
 ignore_build_time_deps = False
 if pkg.built and not removal_action:

diff --git a/lib/_emerge/main.py b/lib/_emerge/main.py
index 921d8cae7..38233e05c 100644
--- a/lib/_emerge/main.py
+++ b/lib/_emerge/main.py
@@ -162,6 +162,7 @@ def insert_optional_args(args):
 "--jobs": valid_integers,
 "--keep-going": y_or_n,
 "--load-average": valid_floats,
+"--onlydeps-with-ideps": y_or_n,
 "--onlydeps-with-rdeps": y_or_n,
 "--package-moves": y_or_n,
 "--quiet": y_or_n,
@@ -573,8 +574,12 @@ def parse_opts(tmpcmdline, silent=False):
 + "Emerge will ignore matching binary packages. ",
 "action": "append",
 },
+"--onlydeps-with-ideps": {
+"help": "modify interpretation of dependencies to include IDEPEND",
+"choices": true_y_or_n,
+},
 "--onlydeps-with-rdeps": {
-"help": "modify interpretation of depedencies",
+"help": "modify interpretation of dependencies",
 "choices": true_y_or_n,
 },
 "--rebuild-exclude": {
@@ -671,7 +676,7 @@ def parse_opts(tmpcmdline, silent=False):
 "action": "store",
 },
 "--root-deps": {
-"help": "modify interpretation of depedencies",
+"help": "modify interpretation of dependencies",
 "choices": ("True", "rdeps"),
 },
 "--search-index": {

diff --git a/lib/portage/tests/resolver/test_onlydeps_ideps.py 
b/lib/portage/tests/resolver/test_onlydeps_ideps.py
new file mode 100644
index 0..e34ee2aed
--- /dev/null
+++ b/lib/portage/tests/resolver/test_onlydeps_ideps.py
@@ -0,0 +1,172 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+from portage.tests import TestCase
+from portage.tests.resolver.ResolverPlayground import (
+ResolverPlayground,
+ResolverPlaygroundTestCase,
+)
+
+
+class OnlydepsIdepsTestCase(TestCase):
+def testOnlydepsIdepsEAPI7(self):
+ebuilds = {
+"dev-libs/A-1": {
+"EAPI": "7",
+"DEPEND": "dev-libs/B",
+"RDEPEND": "dev-libs/C",
+"PDEPEND": "dev-libs/D",
+"IDEPEND": "dev-libs/E",
+},
+"dev-libs/B-1": {},
+"dev-libs/C-1": {},
+"dev-libs/D-1": {},
+"dev-libs/E-1": {},
+}
+ebuilds["dev-libs/F-1"] = ebuilds["dev-libs/A-1"]
+installed = {}
+
+

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

2023-02-16 Thread Sam James
commit: df1600e6dfb8e8c9cdcb062b86d8876644af299c
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:31:06 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:31:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df1600e6

sys-devel/gcc: drop 11.3.1_p20230127, 11.3.1_p20230203

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

 sys-devel/gcc/Manifest|  2 --
 sys-devel/gcc/gcc-11.3.1_p20230127.ebuild | 52 ---
 sys-devel/gcc/gcc-11.3.1_p20230203.ebuild | 52 ---
 3 files changed, 106 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 1e8c493adb4a..6387076de463 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -10,8 +10,6 @@ DIST gcc-10.5.0-patches-4.tar.xz 17880 BLAKE2B 
f368b741fd42199c85b770ec45a5232d2
 DIST gcc-10.5.0-patches-5.tar.xz 17324 BLAKE2B 
e97b471fb6115fd0421be8a6390f7d88312de7ac0132fde3aa43dbf2a49d3bc640ec05f766f20363f033adeaf0430e90c42b5a6f92a422d1a82128f119e769f6
 SHA512 
2589b8a3be0bc60dd7b205ef9955dfd1ba525508879b30ee8057779d2677783c7c13a0bf901bc2a126e15c52d440663e6fe22a299d935e0706a037406e1cfb31
 DIST gcc-11-20221209.tar.xz 76240768 BLAKE2B 
3be0f1ece4473bbbf10f7242102f330a6e246c8481da5bd32620dcb15d2acd008bad60d2576a301f03e444e3d93a3c72d5184740c6fb3de2bc05e1863b68a0bc
 SHA512 
33d9581d434c012526eb4d49a4453cf77c57b459fd43f84e49bc764745e0772939eac007e119269f4f1989755df8678613732a84474c691b0c2452237c5b38a3
 DIST gcc-11-20230120.tar.xz 76201244 BLAKE2B 
07bc819dad3e2ee3747f09f43fd73a4263f06274362728174b32d9ead52ea95c25ea6a192397378b9b4c4f958285d97488d28e425c26129d23f143b1a8668fbc
 SHA512 
81f71aeb706b4ccb89e2af5201770fd72cc3190b9b5eac0b5a25a522626b9c4015a2e5d13e4bd1360ac0f7f1be27df51fc530c15ce3c3d782f39f34d5c58803e
-DIST gcc-11-20230127.tar.xz 76128480 BLAKE2B 
4fdff08bd120fbff1b1e87d09606a9049fa28f456444c07c5d0dc3738216be3c2b418137bbb57ac79e584b68cf277033707c63a5e2ecb75497f3778f7cf3fef6
 SHA512 
772f4ea802aba04a63a50272b59c293b0f1a143c00b88beae98c9bef4ef3a36ad4fd50ec670113d1d031e831262fe50e0b1017536f02c8553be61b05708678b8
-DIST gcc-11-20230203.tar.xz 76157392 BLAKE2B 
ed70b6c94d5440e647881e1e026da75547c9dcbb677d7d6f67aa89a04edc64d64b88eb14bf644c78f46b5c45c1d58f1f38f99c1bda913c42303fcec3ac329aa7
 SHA512 
125437acd0e1d14204542965d52392e7ed3cbe369f85ec43fa1278c536039f9eb2ce1af28a1c31b67573dcac15da432fb7a61d1c236b30eaca5ca9774ea41aa9
 DIST gcc-11-20230210.tar.xz 76141600 BLAKE2B 
04fc4d3cd23ce3abc47adaaf256fcde56891b1dd1ee70906714e92f4dadd2ae1f40852c17e17a8814bc1f5e642137d0f9660d410dc7f93b4541372895b99d617
 SHA512 
714eff2d949a615049aa2ac3a98fc4546dd8a0d94975fe69de411056dd540ecb9fd3d13818c213f2c407b737af5ca0028247769dbe3bd0493a97d2b80e6975e5
 DIST gcc-11.4.0-musl-patches-2.tar.xz 4308 BLAKE2B 
a2335e155fc57816fed822a648e0eaefafcba9d04e1ad0fd7baeea5a694ab6f5e3c1678cb406f2a1bd17bab25cb01699d032713a1ccf337948dfda2093844607
 SHA512 
17b84f907cb1bd763873655e6f35fd3ed55a40b602b70a626f04f83b4cc89c6261db1661de78d4d969187a8c56e9f6305b742515a3836b962248a21df0df5d0c
 DIST gcc-11.4.0-patches-3.tar.xz 15200 BLAKE2B 
a393df941a2a31164f477d6bc0032e28319e8f0bd87200eb453708f85aa8c0bf5d67e733ee7b75cf6d14743e18cc941cee1b77a8247f8c5683d17a98cbeb280f
 SHA512 
6f6096d95c7c62780d1070097739882393a8df5172c3a5ae811a8d4d1c98a0cd14a34f3f7e95410c8f210aec434330ac3b8876c688faeb130d7bb8faece9

diff --git a/sys-devel/gcc/gcc-11.3.1_p20230127.ebuild 
b/sys-devel/gcc/gcc-11.3.1_p20230127.ebuild
deleted file mode 100644
index 3029159b6f13..
--- a/sys-devel/gcc/gcc-11.3.1_p20230127.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-TOOLCHAIN_PATCH_SUFFIX="xz"
-TOOLCHAIN_PATCH_DEV="sam"
-PATCH_VER="8"
-PATCH_GCC_VER="11.4.0"
-MUSL_VER="2"
-MUSL_GCC_VER="11.4.0"
-
-if [[ $(ver_cut 3) ==  ]] ; then
-   MY_PV_2=$(ver_cut 2)
-   if [[ ${MY_PV_2} == 0 ]] ; then
-   MY_PV_2=0
-   else
-   MY_PV_2=$(($(ver_cut 2) - 1))
-   fi
-
-   # e.g. 12.2. -> 12.1.1
-   TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.$(($(ver_cut 3) - 9998))
-fi
-
-inherit toolchain
-# Needs to be after inherit (for now?), bug #830908
-EGIT_BRANCH=releases/gcc-$(ver_cut 1)
-
-# Don't keyword live ebuilds
-#if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then
-#  KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
-#fi
-
-# Technically only if USE=hardened *too* right now, but no point in 
complicating it further.
-# If GCC is enabling CET by default, we need glibc to be built with support 
for it.
-# bug #830454
-RDEPEND="elibc_glibc? ( sys-libs/glibc[cet(-)?] )"
-DEPEND="${RDEPEND}"
-BDEPEND=">=${CATEGORY}/binutils-2.30[cet(-)?]"
-
-src_prepare() {
-   local p upstreamed_patches=(
-   # add them here
-   )
-   for p in "${upstreamed_patches[@]}"; do

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

2023-02-16 Thread Sam James
commit: 10ad5a1baa9c5f01cb45e244b9c07851700f46db
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:31:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:32:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10ad5a1b

sys-devel/gcc: drop old 13 snapshot versions

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

 sys-devel/gcc/Manifest |  6 ---
 sys-devel/gcc/gcc-13.0.1_pre20230122.ebuild| 53 -
 sys-devel/gcc/gcc-13.0.1_pre20230129-r1.ebuild | 54 --
 sys-devel/gcc/gcc-13.0.1_pre20230205-r1.ebuild | 54 --
 sys-devel/gcc/gcc-13.0.1_pre20230205.ebuild| 54 --
 5 files changed, 221 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 01f6f934545d..b22cbd4fbcee 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -24,14 +24,8 @@ DIST gcc-12.2.0-patches-10.tar.xz 14252 BLAKE2B 
99368db982227728a6a9e2b1f694999f
 DIST gcc-12.2.0-patches-13.tar.xz 13756 BLAKE2B 
df0388a669458f2991951d2f4027badbff3f802e6a0422478206b5cdda76e70b531a474d2ac42817e9e7f8200e9ac35ca8276af539839b4ebb2e22903ec25a23
 SHA512 
2970de9d2806d59c5d0f77e66000860c816ebd674489db8114f48f6aa11575644154431480222580b520b9e312647b06f94ab38959a49a8cda818158d6babf1d
 DIST gcc-12.2.0-patches-2.tar.xz 13952 BLAKE2B 
a9e798911acaf45c3f585f69721130cfbecec016727a50ac0f4767b37a2ab9df39e0828abb07f1e429619cc102808f81af8422fef0265415c287d303d9d97fc0
 SHA512 
1808a05e98094577099d115ff5f3e136e3fc8f39fbe35c5183fd7775383f94439212e5e4174ab8d0ae8c0874e227ff84a958ffdfa1c99c9a8306a9842d126ef9
 DIST gcc-12.2.0.tar.xz 84645292 BLAKE2B 
715574af9ad678f9dc8cfd19c866bf910c7edfd479e7e9681337feaa9b54e5d304ddb85483816b8d89754d502405823ae2eff0d1e444538763f40be8e428d8da
 SHA512 
e9e857bd81bf7a370307d6848c81b2f5403db8c7b5207f54bce3f3faac3bde63445684092c2bc1a2427cddb6f7746496d9fbbef05fbbd77f2810b2998f1f9173
-DIST gcc-13-20230122.tar.xz 82869800 BLAKE2B 
fff4bee436910ba587640600a95c2a89ddec415e12f629c941c8b27d28202c62b39dac2ca0b5d82d9fb4ca271310b178e89202f488f5ef4a7fbc63cd3ecfd7d7
 SHA512 
a24c0acedc81f72104fe13aba7403ee8920949089971aad5a296de7b46b8969d82b77df92bfd4ef2537b2e5c2010b72d3a33e3bf35ff734d9c49a7a1746026b5
-DIST gcc-13-20230129.tar.xz 82957104 BLAKE2B 
15a8db17737a774c528116cc43a507cb702070371a15a9e65352f2485dc37651f99cb0d985258bff8267d7af2690933758016f60703b0ef3f5c44bb977baf955
 SHA512 
242038dbdedc5e9e0ea3b6832bfbea32411ad84360598dd1a57c3cb4ced01ced2d3a75ef440bcca71e457128731244d5c586bc553cd40709db3c23c93cb82c63
-DIST gcc-13-20230205.tar.xz 83535700 BLAKE2B 
0a4ac98652dd0a0777133b23ab6e9b3855fd7be8a3f790745be2c42428acb28937f8061fb0bd51a20a733f213282f59439aa562b4b32801f04c87ce7b644fa40
 SHA512 
b3064c0de7c4bd92a6fd4d043cead7a238651449bb3e19f977e57f504dd3a191dafd67487d099238e07e3bac4b368b791b3ebefe9dfe78a9e572d8cdbc2a47d8
 DIST gcc-13-20230212.tar.xz 83949608 BLAKE2B 
2c794044b6dc220b109bcb86ed1315f9413ef86e399b7062c4cb918d6ca7eede34db947c854d670201a25034471f57b9feaf2c23ea8f9714d272a1678311966d
 SHA512 
2ed0656ab75abe5aa60f087c1ce5a2e41395cb5d827279d4d67192e6b9e85890849e42982e7b89b89ff5eaf6a81aef292ccf618f29a8b9ccb2d6a8bd56dc76f9
 DIST gcc-13.1.0-musl-patches-1.tar.xz 3528 BLAKE2B 
c572ab4a0fb929b16ec36b3a3616cdcccd62f7ee27ded8077008b9beb50539db64cc251ff8a3eade54e8ebfe1012f8f32d0802379bf8ffb0f1b8ce7c8457da37
 SHA512 
ffb7dfa54a9d23b5333664e915efd9f18a43cd696f4ff5669a8b072a0e9cf4978de53e315123542441a2533e4f269de0bb7d90ee7a37d3a7517b7cda6ea06681
-DIST gcc-13.1.0-patches-5.tar.xz 11404 BLAKE2B 
5ba2b4002e917750757a28fa4c7ff6ff7090c35f28eb984aee6ad7fc0ac80c88a9d08e1d4d9efa98e6bd3f06e89df47b10b51f8294bb7d2ef0d1ac3fd2a1a963
 SHA512 
6864738794237bd7430c612404dd4b84e275362cb5abd081284a91e5b24c1b0aa97d90b9543168c72147be146887219715325d52ae2920912d9c4e17e7224aa3
-DIST gcc-13.1.0-patches-6.tar.xz 11552 BLAKE2B 
65ad3f4f9f767712ba11146edc25c7cc8ceb66a42f031059f904a4bb36171065489f4b72f55f85665fac275c11bf1f9a19d546747eaba7d835d2bdccf4211db7
 SHA512 
4d8f7f59469a64ca541a62bb48983603db540434c5763dd157960f176b05f69360a36a0b057263e6c21148a74ec5e3eeb78f8eef0924a3a4f6af1c83bbcb1c67
-DIST gcc-13.1.0-patches-7.tar.xz 13472 BLAKE2B 
186d2c4144759ceef40d7dcffb44a1b0b63b641fc7d1114991f0f6dd25e00ae0561ce4a1f54231216d089f63557b3758c881b6b3aca7e940c18b9308e2f2
 SHA512 
6f793e0ce69f52b73289f1d8bc6e89ab84c380c3fe311740e31890001412643a49a4865fb33a3403ce229e5d5060157edd438a5f3d7621b4fc1b9f98aa6c9969
 DIST gcc-13.1.0-patches-8.tar.xz 11644 BLAKE2B 
aaa135a7d22badc22eeba42fe92c2de40e1a779836f42b5ba15884ad3d756020421b99e29b9a27f40368013fb9d8348e3ca1ef3541a6de55129d66f4645caf8f
 SHA512 
a71ef0f215451c840a99d7100489e8364e4e7a71d83e9be42e35fb06d4276afadb64834801ef3469a4edb78eede5a03c18104215fef3039f98da3b3d0c8e69af
 DIST gcc-8.5.0-patches-4.tar.xz 18616 BLAKE2B 

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

2023-02-16 Thread Sam James
commit: 2f4e813a4c673adb00194b6dd0cbb234d04df6fc
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:31:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:32:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f4e813a

sys-devel/gcc: drop old 12 snapshot versions

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

 sys-devel/gcc/Manifest   |  4 ---
 sys-devel/gcc/gcc-12.2.1_p20230128.ebuild| 52 
 sys-devel/gcc/gcc-12.2.1_p20230204-r1.ebuild | 52 
 sys-devel/gcc/gcc-12.2.1_p20230204.ebuild| 52 
 4 files changed, 160 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 6387076de463..01f6f934545d 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -17,14 +17,10 @@ DIST gcc-11.4.0-patches-7.tar.xz 14416 BLAKE2B 
3ebf62cba04cac8830a93a99d11c21347
 DIST gcc-11.4.0-patches-8.tar.xz 13788 BLAKE2B 
a1406d5dcd906ed51ef06bb6571c216d83f74ab5ba05d2f1783d20619ee4ae9a4aa60c15917c861c24b708621b1605411011df9d217472f92001ec1c59a22b5b
 SHA512 
b18b068422911216063948e21f0ec01073edb45c828a351282730111642638a0a42b97394a3f7522f892fe79e30b391372c829b542ce64fd0dc58c2a83f091bf
 DIST gcc-12-20221126.tar.xz 79631864 BLAKE2B 
3bb97ef4a1a17ab8b92b431b1f792c11131085a1b523efa08c5b4f995b44bf628be371564813e5affb1f8e2320bb8a9b04532e57b2deeef26b33f517783daa5e
 SHA512 
163e0aa39dc5c24980f84000bd6ccd4b7c24581831b7a4cdbd63e4726be5c2b1933d034ce12c65cf95e4c0ebe1175af7e32facace465bfd7c7c377401350a2df
 DIST gcc-12-20230121.tar.xz 79652428 BLAKE2B 
f4f0e6474d179454dc56dd05c823fca919a894e9efdc64625bb13045c7bd549a7bab59dfb4052d45d594d4484801ab5b18cf3f3d6277be54eaec24a53abd439c
 SHA512 
b6c2486916418a64fab64c3655329bc18ca93ee4eca240e8779bd6d8280124fcd07b1aa8eff979fd317656646ecdba9353107887338354d8bd2c1f68c1609349
-DIST gcc-12-20230128.tar.xz 79655464 BLAKE2B 
6c4c6397749a3c9d11af8dd6ca1bd39312a9b06289f1f41fcf21df0cb55e3ab0b6e0efe44f4b8656ad41d6d49f6443ddda454ea5bbc956ef116cc011befe25c1
 SHA512 
7086b66509a9f7080805d9c4f8abf463c8e37729158eb2da60d9de97f9cdfd8664fe481a75c3730b78e12812bc9711c29554370f1af227c664ee6d3cf8708ede
-DIST gcc-12-20230204.tar.xz 79685036 BLAKE2B 
cc602a3a48566d188e0751a5a2bcf3d88fd055431f3e8765039f10d66ebccaf8c469c7fe3ca7fa7c3bc98fbc60f070590863af19a0148abc5ef7de44bc45a376
 SHA512 
4b251c255844d263122056ca559badcfe33b0b96f2c8ab6d4cd4c197bd183559df51ceac5ba14bae5f48a9db923fcfcab0c9e7f54d45b7be1aa806702b639ed4
 DIST gcc-12-20230211.tar.xz 79698020 BLAKE2B 
0de8d0b8f8823276fc7b0c70225a1c957455645cafd9c46ab8d3cd80d4e641a0d48df03a9d1d5206fde65e9f0dca09a481311b9b68a7993899e4060d44e08cf6
 SHA512 
6ae3979cfff1376ba2ea639d9a01428e55a67a2cc6582bc77a476b050bfd3ba00e078907067b74a1f59188014febc3fd1e4c5e98fae00421e0c82c9db54f1028
 DIST gcc-12.2.0-musl-patches-7.tar.xz 3652 BLAKE2B 
295ea907efea854a3c2447d472bedb24714d78b7b725476b1eac3898d89c0c549da8e69db28911205bb3293f62cf344a90ade0898ecf5fed57ff00fcf8547a9f
 SHA512 
7a7a440bc08de8dcb37c080ea0c27904adaaadfaab24d90becd2d009243dcfc886d8f674ce3ccddb4ebb5ad17f04d841064d9ec2e2e2e96a1afac3002111
 DIST gcc-12.2.0-patches-1.tar.xz 12864 BLAKE2B 
a5ae0a85dfc1b6f0bd968f0d5262ebed14ec9cdb3249e3a4c571578c54eda0e53708ee7fe8e03e506366c7f3cf7926eced9b390d9dee948c1249298c0fabd9fb
 SHA512 
f3d793b89a2a0385d596162fb0c653d4acdf21ae418cb792c1786a01fde0391bd0719715dbf07d53636f127168f5cd99108a1dc11cf6cea889b7d82385bcc258
 DIST gcc-12.2.0-patches-10.tar.xz 14252 BLAKE2B 
99368db982227728a6a9e2b1f694999f041f38db4a3806b6a740c86218735f9b561197bc150423a3caad0b5fd335c95d1aca130a519754423cd44a083e655373
 SHA512 
f7f0d8185e908926046f579793dba5916dc27392b85bfe50a7e70c213c3ba29479dfdb1b27514765b76bc897c4dbb530680e59c4deca7a245a808ed566120e4c
-DIST gcc-12.2.0-patches-11.tar.xz 13652 BLAKE2B 
3747d3e337ec2f2758fba90f5b1ff62129e5752031c43934211806d96e1153039e4cd6d8d28c19fdf5d5f0d1f4875388dbb177a300aacd50124e38a7ed7c
 SHA512 
50f9a6b0bd8b18dfb0bdc0a7179f26bd4cf8de7970c0b64a0cd9c8c92c002708ae961b9c904b735f15f827b3b8dab447515112d9b64e8f59568eb1e208029277
-DIST gcc-12.2.0-patches-12.tar.xz 15880 BLAKE2B 
312144c6d881a7fbc1dd078a8d7c410a0354980ea58d31b24b377cda38383c04ac6392f5fd780ec0a7483232019cb90271fdc2e0c8b5d4556ccd1baa96de0720
 SHA512 
68c7352c661d74c159f20eb5ab9a6f8d95cac728e40fdb32cd61dd476feaf6caa0bdd917c6f1e3d915731533c7937eb96a49c1f39b9c2be86bb3f63079493540
 DIST gcc-12.2.0-patches-13.tar.xz 13756 BLAKE2B 
df0388a669458f2991951d2f4027badbff3f802e6a0422478206b5cdda76e70b531a474d2ac42817e9e7f8200e9ac35ca8276af539839b4ebb2e22903ec25a23
 SHA512 
2970de9d2806d59c5d0f77e66000860c816ebd674489db8114f48f6aa11575644154431480222580b520b9e312647b06f94ab38959a49a8cda818158d6babf1d
 DIST gcc-12.2.0-patches-2.tar.xz 13952 BLAKE2B 
a9e798911acaf45c3f585f69721130cfbecec016727a50ac0f4767b37a2ab9df39e0828abb07f1e429619cc102808f81af8422fef0265415c287d303d9d97fc0
 SHA512 

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

2023-02-16 Thread Sam James
commit: 99de775b121af6c4ac73537380c3554ff4ee6daf
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:30:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:30:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99de775b

sys-devel/gcc: drop 10.4.1_p20230126, 10.4.1_p20230202

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

 sys-devel/gcc/Manifest|  2 --
 sys-devel/gcc/gcc-10.4.1_p20230126.ebuild | 58 ---
 sys-devel/gcc/gcc-10.4.1_p20230202.ebuild | 58 ---
 3 files changed, 118 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index f68ee04de43e..1e8c493adb4a 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -1,7 +1,5 @@
 DIST gcc-10-20221208.tar.xz 72098912 BLAKE2B 
8167b3d91fb95c727caa3a76d8bd6d70e0d0bd79eda72305f3005c9f7163dcd425c75386ba55b2d71644ecf83d998a4bccb6fd265bb615dcdd104f27cadb8e76
 SHA512 
5e49159d86300eaa4c2f34fb3537b5f257931e861a1a1217dbabcfcd5ef9da224d4a6023aaf8d24c8893ecd204ec0cd6e96349ae0dd445d62d92ebb041aeb054
 DIST gcc-10-20230119.tar.xz 72112952 BLAKE2B 
6e28cba9f6ff5c9f9231828bb400c82b8658a4f9c0166c28a6a12d71728d4460904152a8c84bbeff88c06b7f9378937b7b61bf4a871a10c56bd005170dc5fde2
 SHA512 
6cbb567ef1da1b6fa65892b6e71c3b7cd37e0c483e049720ea1987d444a0e7b4eb15d1e99f4e35995acdce560a811a779574eeba52bb252c61325accedd6a5c5
-DIST gcc-10-20230126.tar.xz 72121284 BLAKE2B 
add27f5cacaf5c36c4c54e2c71f6e60edd03242bf52e1729aa708cc6d927814f3640cccbf9711d105c252b90e980e0ab071a2204c7859045c35bacaac9664c7a
 SHA512 
619f73041be838b0e48a10f5dbe4bb775367fc13511f4b98d65c4336b397f1ccae2df64f11b7cd066e2635783b2d61f815c3ab0a6478ec3c98dd7b33728d2ae5
-DIST gcc-10-20230202.tar.xz 72116996 BLAKE2B 
79e06176ee536d4f313f68838fad5b26d087054ce477a394d35b3726ba857e203201dd4ad6a41004b47031fd40735c382c604f8645e15b817d37e48bf722f42d
 SHA512 
c904bdc5874cdc723d1e6d781961ffa3f9ccc3847b0edc6a498cfb740846b77bd4516b4d6c8342938febea9dec2aa4ec5d5f361d14b54fa8b789136909a682e0
 DIST gcc-10-20230209.tar.xz 72120748 BLAKE2B 
618cc9d70ead60a978e81f1b71cf9f78b1619c3b1322f321d73de1891c6e841ca771e35fefb5905d56540bcff5857682eb4adfa134588e5afd26cda2ad8e8142
 SHA512 
ff78b3f57ed2121c484f8dbea9c3024aa039affcec3b04738f92fc6f80696b02aea9ecd0fc72c6fec1a1a3a47a912381b89a332a44421c39506493d89d766d91
 DIST gcc-10.4.0-musl-patches-1.tar.xz 3808 BLAKE2B 
804d1fcc451dcd03be71240dd498ec2d179869571d44012967c48dccf5a478dd8c55000a964a80fdd5584d739a777dee1c83241cffce514ef002df2572854a67
 SHA512 
83e4a9c0f7062baf0c606a2bcc56a818494991403d7577dea65f04bbc25bdb786a5889b80d45d80e7f4be07c1aef786802cbfcfafd1a17ec255a2d4e93a77570
 DIST gcc-10.4.0-patches-5.tar.xz 17056 BLAKE2B 
f336d69a8ad105b8c4a84e8248a5b8a88175d3f1d67d32c6bee1780d252d86947059bd624992e6292610e86c9012f4d901a1a54df0d184dd023d404a0707700e
 SHA512 
aa8fb42f20587f8519e7b06037da4d8f7d386b63e228b239a0445a51df4e401940fcd81482381d966622054aef3e0db06d1def5c74ac3d3dcc9c75c3b966c758

diff --git a/sys-devel/gcc/gcc-10.4.1_p20230126.ebuild 
b/sys-devel/gcc/gcc-10.4.1_p20230126.ebuild
deleted file mode 100644
index 68d9c2522686..
--- a/sys-devel/gcc/gcc-10.4.1_p20230126.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-TOOLCHAIN_PATCH_SUFFIX="xz"
-TOOLCHAIN_PATCH_DEV="sam"
-#TOOLCHAIN_GCC_RC=1
-PATCH_GCC_VER="10.5.0"
-PATCH_VER="5"
-MUSL_VER="2"
-MUSL_GCC_VER="10.5.0"
-
-if [[ $(ver_cut 3) ==  ]] ; then
-   MY_PV_2=$(ver_cut 2)
-   if [[ ${MY_PV_2} == 0 ]] ; then
-   MY_PV_2=0
-   else
-   MY_PV_2=$(($(ver_cut 2) - 1))
-   fi
-
-   # e.g. 12.2. -> 12.1.1
-   TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.$(($(ver_cut 3) - 9998))
-elif [[ -n ${TOOLCHAIN_GCC_RC} ]] ; then
-   # Cheesy hack for RCs
-   MY_PV=$(ver_cut 1).$((($(ver_cut 2) + 1))).$((($(ver_cut 3) - 
1)))-RC-$(ver_cut 5)
-   MY_P=${PN}-${MY_PV}
-   
GCC_TARBALL_SRC_URI="https://gcc.gnu.org/pub/gcc/snapshots/${MY_PV}/${MY_P}.tar.xz;
-   TOOLCHAIN_SET_S=no
-   S="${WORKDIR}"/${MY_P}
-fi
-
-inherit toolchain
-# Needs to be after inherit (for now?), bug #830908
-EGIT_BRANCH=releases/gcc-$(ver_cut 1)
-
-# Don't keyword live ebuilds
-#if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then
-#  KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
-#fi
-
-RDEPEND=""
-BDEPEND="${CATEGORY}/binutils"
-
-src_prepare() {
-   local p upstreamed_patches=(
-   # add them here
-   )
-   for p in "${upstreamed_patches[@]}"; do
-   rm -v "${WORKDIR}/patch/${p}" || die
-   done
-
-   if has_version '>=sys-libs/glibc-2.32-r1'; then
-   rm -v "${WORKDIR}/patch/23_all_disable-riscv32-ABIs.patch" || 
die
-   fi
-
-   toolchain_src_prepare
-}

diff --git a/sys-devel/gcc/gcc-10.4.1_p20230202.ebuild 

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

2023-02-16 Thread Sam James
commit: 8d89af3bbd4f8f2d8f3f85772fbae5bb3ebd72fd
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:34:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:34:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d89af3b

sys-devel/gcc: add 10.4.1_p20230216

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

 sys-devel/gcc/Manifest|  1 +
 sys-devel/gcc/gcc-10.4.1_p20230216.ebuild | 58 +++
 2 files changed, 59 insertions(+)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index b22cbd4fbcee..5a63e0312bb7 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -1,6 +1,7 @@
 DIST gcc-10-20221208.tar.xz 72098912 BLAKE2B 
8167b3d91fb95c727caa3a76d8bd6d70e0d0bd79eda72305f3005c9f7163dcd425c75386ba55b2d71644ecf83d998a4bccb6fd265bb615dcdd104f27cadb8e76
 SHA512 
5e49159d86300eaa4c2f34fb3537b5f257931e861a1a1217dbabcfcd5ef9da224d4a6023aaf8d24c8893ecd204ec0cd6e96349ae0dd445d62d92ebb041aeb054
 DIST gcc-10-20230119.tar.xz 72112952 BLAKE2B 
6e28cba9f6ff5c9f9231828bb400c82b8658a4f9c0166c28a6a12d71728d4460904152a8c84bbeff88c06b7f9378937b7b61bf4a871a10c56bd005170dc5fde2
 SHA512 
6cbb567ef1da1b6fa65892b6e71c3b7cd37e0c483e049720ea1987d444a0e7b4eb15d1e99f4e35995acdce560a811a779574eeba52bb252c61325accedd6a5c5
 DIST gcc-10-20230209.tar.xz 72120748 BLAKE2B 
618cc9d70ead60a978e81f1b71cf9f78b1619c3b1322f321d73de1891c6e841ca771e35fefb5905d56540bcff5857682eb4adfa134588e5afd26cda2ad8e8142
 SHA512 
ff78b3f57ed2121c484f8dbea9c3024aa039affcec3b04738f92fc6f80696b02aea9ecd0fc72c6fec1a1a3a47a912381b89a332a44421c39506493d89d766d91
+DIST gcc-10-20230216.tar.xz 72119568 BLAKE2B 
410e3a08d9ca81492228581d2a672e5cd2a4c3f1ecc5f0169f1bfc352746922c82ea188cded4358e714d5d3583dfd1f740dc49c019cb75ecc611f2f7a950121a
 SHA512 
d9c7ed18311e502d9c22d658cc3f295212318d100603695bb6e97351d55652b7fd6be0bfe87e11ed314117a0909c82274bc4147b082e2d75a67dd2889b95777a
 DIST gcc-10.4.0-musl-patches-1.tar.xz 3808 BLAKE2B 
804d1fcc451dcd03be71240dd498ec2d179869571d44012967c48dccf5a478dd8c55000a964a80fdd5584d739a777dee1c83241cffce514ef002df2572854a67
 SHA512 
83e4a9c0f7062baf0c606a2bcc56a818494991403d7577dea65f04bbc25bdb786a5889b80d45d80e7f4be07c1aef786802cbfcfafd1a17ec255a2d4e93a77570
 DIST gcc-10.4.0-patches-5.tar.xz 17056 BLAKE2B 
f336d69a8ad105b8c4a84e8248a5b8a88175d3f1d67d32c6bee1780d252d86947059bd624992e6292610e86c9012f4d901a1a54df0d184dd023d404a0707700e
 SHA512 
aa8fb42f20587f8519e7b06037da4d8f7d386b63e228b239a0445a51df4e401940fcd81482381d966622054aef3e0db06d1def5c74ac3d3dcc9c75c3b966c758
 DIST gcc-10.4.0.tar.xz 75018092 BLAKE2B 
ec1169025d3896b70ab80a4b8ce5040763a95529fc7e120c6bc3a3eb1db5cf938ebde347c1e595a8ff7d4081e79ded6252702d7a1a09648449b7a0783188e434
 SHA512 
440c08ca746da450d9a1b35e8fd2305cb27e7e6987cd9d0f7d375f3b1fc9e4b0bd7acb3cd7bf795e72fcbead59cdef5b6c152862f5d35cd9fbfe6902101ce648

diff --git a/sys-devel/gcc/gcc-10.4.1_p20230216.ebuild 
b/sys-devel/gcc/gcc-10.4.1_p20230216.ebuild
new file mode 100644
index ..68d9c2522686
--- /dev/null
+++ b/sys-devel/gcc/gcc-10.4.1_p20230216.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+TOOLCHAIN_PATCH_SUFFIX="xz"
+TOOLCHAIN_PATCH_DEV="sam"
+#TOOLCHAIN_GCC_RC=1
+PATCH_GCC_VER="10.5.0"
+PATCH_VER="5"
+MUSL_VER="2"
+MUSL_GCC_VER="10.5.0"
+
+if [[ $(ver_cut 3) ==  ]] ; then
+   MY_PV_2=$(ver_cut 2)
+   if [[ ${MY_PV_2} == 0 ]] ; then
+   MY_PV_2=0
+   else
+   MY_PV_2=$(($(ver_cut 2) - 1))
+   fi
+
+   # e.g. 12.2. -> 12.1.1
+   TOOLCHAIN_GCC_PV=$(ver_cut 1).${MY_PV_2}.$(($(ver_cut 3) - 9998))
+elif [[ -n ${TOOLCHAIN_GCC_RC} ]] ; then
+   # Cheesy hack for RCs
+   MY_PV=$(ver_cut 1).$((($(ver_cut 2) + 1))).$((($(ver_cut 3) - 
1)))-RC-$(ver_cut 5)
+   MY_P=${PN}-${MY_PV}
+   
GCC_TARBALL_SRC_URI="https://gcc.gnu.org/pub/gcc/snapshots/${MY_PV}/${MY_P}.tar.xz;
+   TOOLCHAIN_SET_S=no
+   S="${WORKDIR}"/${MY_P}
+fi
+
+inherit toolchain
+# Needs to be after inherit (for now?), bug #830908
+EGIT_BRANCH=releases/gcc-$(ver_cut 1)
+
+# Don't keyword live ebuilds
+#if ! tc_is_live && [[ -z ${TOOLCHAIN_USE_GIT_PATCHES} ]] ; then
+#  KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86"
+#fi
+
+RDEPEND=""
+BDEPEND="${CATEGORY}/binutils"
+
+src_prepare() {
+   local p upstreamed_patches=(
+   # add them here
+   )
+   for p in "${upstreamed_patches[@]}"; do
+   rm -v "${WORKDIR}/patch/${p}" || die
+   done
+
+   if has_version '>=sys-libs/glibc-2.32-r1'; then
+   rm -v "${WORKDIR}/patch/23_all_disable-riscv32-ABIs.patch" || 
die
+   fi
+
+   toolchain_src_prepare
+}



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

2023-02-16 Thread Sam James
commit: f77096c2ef333e1c8cd757fb5137b87e3ce4a959
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:26:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:26:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f77096c2

profiles/features/musl: mask sci-mathematics/fricas[sbcl]

dev-lisp/sbcl is masked on musl.

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

 profiles/features/musl/package.use.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/features/musl/package.use.mask 
b/profiles/features/musl/package.use.mask
index 3f2f720c2b1b..c16b86e9582d 100644
--- a/profiles/features/musl/package.use.mask
+++ b/profiles/features/musl/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2023-02-17)
+# dev-lisp/sbcl is masked on musl
+sci-mathematics/fricas sbcl
+
 # Andrew Ammerlaan  (2022-12-10)
 # sci-libs/mkl is binary only and links to glibc
 sci-chemistry/gromacs mkl



[gentoo-commits] repo/gentoo:master commit in: sys-fs/xwmfs/

2023-02-16 Thread Sam James
commit: ae97d34fe6254cfeb2c883f049b666bc9b421530
Author: Matthias Gerstner  nefkom  net>
AuthorDate: Thu Feb 16 16:19:33 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:22:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae97d34f

sys-fs/xwmfs: drop 0.91

Signed-off-by: Matthias Gerstner  nefkom.net>
Closes: https://github.com/gentoo/gentoo/pull/29618
Signed-off-by: Sam James  gentoo.org>

 sys-fs/xwmfs/Manifest  |  1 -
 sys-fs/xwmfs/xwmfs-0.91.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/sys-fs/xwmfs/Manifest b/sys-fs/xwmfs/Manifest
index f9fa5657d24f..23c5e5d8568a 100644
--- a/sys-fs/xwmfs/Manifest
+++ b/sys-fs/xwmfs/Manifest
@@ -1,2 +1 @@
-DIST xwmfs-0.91.tar.gz 205380 BLAKE2B 
fe16fb42c255c8aa3f3a89c494ee9a0d89a4ec1f7d09299374b8891ecc03fe41bb676e2a65112d60abf7ea7e7c2b173aa1333969b445814b07f5c972c001969b
 SHA512 
a2f86b614364c1ffd5fa591bdabd8940f9f317f07e5c4ddc45e8da44de1ae434cbe0336fd1ef7f25027c390388943a8cd03991546ffa640ffe5800a66792ac17
 DIST xwmfs-0.92.tar.gz 205449 BLAKE2B 
b94992eae262487578832483afd5121583cbaabf1fd36f1775845a30d4d593300b19db2a8c6df39f9be6a918438af59b16104f6bf234978f88095a9e7b8ac1e8
 SHA512 
27f6166d3ac5abdd25e9333547f8f42a08b86e530a893eb2c028792405c0aac43e7a6583ee6bb3daeb327dee63c808e9098d95b114359fe44c2b6580b682208c

diff --git a/sys-fs/xwmfs/xwmfs-0.91.ebuild b/sys-fs/xwmfs/xwmfs-0.91.ebuild
deleted file mode 100644
index deecfb925e6a..
--- a/sys-fs/xwmfs/xwmfs-0.91.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="FUSE-based X11 Window-Manager file system"
-HOMEPAGE="https://github.com/gerstner-hub/xwmfs;
-SRC_URI="https://github.com/gerstner-hub/${PN}/releases/download/v${PV}/${P}-dist.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~x86"
-SLOT="0"
-
-RDEPEND="
-   sys-fs/fuse:0=
-   >=x11-libs/libX11-1.6.5"
-
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_test() {
-   # unset display to avoid testing errors, tests rely on X11 and a window
-   # manager environment
-   unset DISPLAY
-
-   default
-}



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

2023-02-16 Thread Sam James
commit: 302c6828242dacccb49ffa3139495530093abd55
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:23:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:23:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=302c6828

media-gfx/blender: destabilize 2.93.14 for ~amd64

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

 media-gfx/blender/blender-2.93.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/blender/blender-2.93.14.ebuild 
b/media-gfx/blender/blender-2.93.14.ebuild
index 60c8f2eacc38..e5ed153b5002 100644
--- a/media-gfx/blender/blender-2.93.14.ebuild
+++ b/media-gfx/blender/blender-2.93.14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -20,7 +20,7 @@ else
 
TEST_TARBALL_VERSION=2.93.0
SRC_URI+=" test? ( 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-${TEST_TARBALL_VERSION}-tests.tar.bz2
 )"
-   KEYWORDS="amd64 ~arm ~arm64"
+   KEYWORDS="~amd64 ~arm ~arm64"
 fi
 
 SLOT="${PV%.*}"



[gentoo-commits] repo/gentoo:master commit in: media-gfx/blender/files/, media-gfx/blender/

2023-02-16 Thread Sam James
commit: 6598e6d9c4b5e4474e1c31b0603da99f0cfb5e2d
Author: Sebastian Parborg  gmail  com>
AuthorDate: Fri Feb  3 11:08:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:20:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6598e6d9

media-gfx/blender: Fix building 2.93 with openvdb-10

Closes: https://bugs.gentoo.org/892924
Signed-off-by: Sebastian Parborg  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-gfx/blender/blender-2.93.13.ebuild   |   1 +
 .../blender/files/blender-2.93.13-openvdb-10.patch | 107 +
 2 files changed, 108 insertions(+)

diff --git a/media-gfx/blender/blender-2.93.13.ebuild 
b/media-gfx/blender/blender-2.93.13.ebuild
index 244f50a0e39f..60c8f2eacc38 100644
--- a/media-gfx/blender/blender-2.93.13.ebuild
+++ b/media-gfx/blender/blender-2.93.13.ebuild
@@ -126,6 +126,7 @@ BDEPEND="
 "
 
 PATCHES=(
+   "${FILESDIR}"/${PN}-2.93.13-openvdb-10.patch

"${FILESDIR}"/${PN}-3.0.0-intern-ghost-fix-typo-in-finding-XF86VMODE.patch
"${FILESDIR}"/${PN}-3.0.1-openexr.patch
"${FILESDIR}"/${PN}-3.0.1-openimageio-2.3.patch

diff --git a/media-gfx/blender/files/blender-2.93.13-openvdb-10.patch 
b/media-gfx/blender/files/blender-2.93.13-openvdb-10.patch
new file mode 100644
index ..42db25179cdc
--- /dev/null
+++ b/media-gfx/blender/files/blender-2.93.13-openvdb-10.patch
@@ -0,0 +1,107 @@
+--- a/intern/cycles/render/volume.cpp
 b/intern/cycles/render/volume.cpp
+@@ -259,7 +259,8 @@ void 
VolumeMeshBuilder::add_grid(openvdb::GridBase::ConstPtr grid,
+ void VolumeMeshBuilder::add_padding(int pad_size)
+ {
+ #ifdef WITH_OPENVDB
+-  openvdb::tools::dilateVoxels(topology_grid->tree(), pad_size);
++  openvdb::tools::dilateActiveValues(
++  topology_grid->tree(), pad_size, openvdb::tools::NN_FACE, 
openvdb::tools::IGNORE_TILES);
+ #else
+   (void)pad_size;
+ #endif
+diff --git a/source/blender/blenkernel/BKE_volume.h 
b/source/blender/blenkernel/BKE_volume.h
+index 8b42de7303d..068cdf87d16 100644
+--- a/source/blender/blenkernel/BKE_volume.h
 b/source/blender/blenkernel/BKE_volume.h
+@@ -104,7 +104,6 @@ typedef enum VolumeGridType {
+   VOLUME_GRID_INT,
+   VOLUME_GRID_INT64,
+   VOLUME_GRID_MASK,
+-  VOLUME_GRID_STRING,
+   VOLUME_GRID_VECTOR_FLOAT,
+   VOLUME_GRID_VECTOR_DOUBLE,
+   VOLUME_GRID_VECTOR_INT,
+@@ -218,8 +217,6 @@ auto BKE_volume_grid_type_operation(const VolumeGridType 
grid_type, OpType &)
+   return op.template operator()();
+ case VOLUME_GRID_VECTOR_DOUBLE:
+   return op.template operator()();
+-case VOLUME_GRID_STRING:
+-  return op.template operator()();
+ case VOLUME_GRID_MASK:
+   return op.template operator()();
+ case VOLUME_GRID_POINTS:
+diff --git a/source/blender/blenkernel/intern/volume.cc 
b/source/blender/blenkernel/intern/volume.cc
+index 39a7725bfa3..a0e2d1a83cd 100644
+--- a/source/blender/blenkernel/intern/volume.cc
 b/source/blender/blenkernel/intern/volume.cc
+@@ -1345,9 +1345,6 @@ VolumeGridType BKE_volume_grid_type_openvdb(const 
openvdb::GridBase )
+   if (grid.isType()) {
+ return VOLUME_GRID_VECTOR_DOUBLE;
+   }
+-  if (grid.isType()) {
+-return VOLUME_GRID_STRING;
+-  }
+   if (grid.isType()) {
+ return VOLUME_GRID_MASK;
+   }
+@@ -1383,7 +1380,6 @@ int BKE_volume_grid_channels(const VolumeGrid *grid)
+ case VOLUME_GRID_VECTOR_DOUBLE:
+ case VOLUME_GRID_VECTOR_INT:
+   return 3;
+-case VOLUME_GRID_STRING:
+ case VOLUME_GRID_POINTS:
+ case VOLUME_GRID_UNKNOWN:
+   return 0;
+@@ -1624,13 +1620,8 @@ struct CreateGridWithChangedResolutionOp {
+ 
+   template typename openvdb::GridBase::Ptr operator()()
+   {
+-if constexpr (std::is_same_v) {
+-  return {};
+-}
+-else {
+-  return create_grid_with_changed_resolution(static_cast(grid),
+- resolution_factor);
+-}
++return create_grid_with_changed_resolution(static_cast(grid),
++   resolution_factor);
+   }
+ };
+ 
+diff --git a/source/blender/blenkernel/intern/volume_render.cc 
b/source/blender/blenkernel/intern/volume_render.cc
+index c0a205b5673..7ccf04df941 100644
+--- a/source/blender/blenkernel/intern/volume_render.cc
 b/source/blender/blenkernel/intern/volume_render.cc
+@@ -77,7 +77,6 @@ static void extract_dense_float_voxels(const VolumeGridType 
grid_type,
+ case VOLUME_GRID_VECTOR_INT:
+   return extract_dense_voxels(
+   grid, bbox, reinterpret_cast(r_voxels));
+-case VOLUME_GRID_STRING:
+ case VOLUME_GRID_POINTS:
+ case VOLUME_GRID_UNKNOWN:
+   /* Zero channels to copy. */
+diff --git a/source/blender/makesrna/intern/rna_volume.c 
b/source/blender/makesrna/intern/rna_volume.c
+index 3100c1195f4..2854f02a4d4 100644
+--- a/source/blender/makesrna/intern/rna_volume.c
 b/source/blender/makesrna/intern/rna_volume.c
+@@ -241,7 +241,6 @@
+   

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

2023-02-16 Thread Sam James
commit: b94b24807e15189deeba8e95924f4e4009c9a0d5
Author: Robert Siebeck  r123  de>
AuthorDate: Wed Feb 15 22:28:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:19:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b94b2480

net-im/signal-desktop-bin: remove old version

Signed-off-by: Robert Siebeck  r123.de>
Closes: https://github.com/gentoo/gentoo/pull/29598
Signed-off-by: Sam James  gentoo.org>

 net-im/signal-desktop-bin/Manifest |  1 -
 .../signal-desktop-bin-6.5.1.ebuild| 95 --
 2 files changed, 96 deletions(-)

diff --git a/net-im/signal-desktop-bin/Manifest 
b/net-im/signal-desktop-bin/Manifest
index 6e85f26de68c..a046b4a53109 100644
--- a/net-im/signal-desktop-bin/Manifest
+++ b/net-im/signal-desktop-bin/Manifest
@@ -1,2 +1 @@
-DIST signal-desktop_6.5.1_amd64.deb 122802760 BLAKE2B 
1592660b760b32e9c4552a023c4ff730cc9530f152078987836e811e15da3fa020be55de97a75536660ecc81a86f16968725e1a473d2337a3a3252efd9d96e0e
 SHA512 
339aa597a444dd2b9763c2fd89e6ab3cc6314d5a83751e50bcb8e85bf1337ab9768a0400ed34db6f66d19102b7ec5f27c61fcb93a06fedd288596b6854582ffc
 DIST signal-desktop_6.6.0_amd64.deb 122765252 BLAKE2B 
ca709e15866fc764652c9e4262e71c71544a757dd45a5d284b4490c134bb01c63fe62a429ecf02af84e1af24f91e5b8a903113918bded5b0bb6d9ee279fe2110
 SHA512 
914c4b541d233e5995b02ad1ba802d1029da42c5f2ed03b9fa62a3d07b1ca4f3e1b483a20e725ee426d9bfb57b411fa37b5e614a0373cca3eac6fdc155b52dbc

diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-6.5.1.ebuild 
b/net-im/signal-desktop-bin/signal-desktop-bin-6.5.1.ebuild
deleted file mode 100644
index 1b6e912201c3..
--- a/net-im/signal-desktop-bin/signal-desktop-bin-6.5.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="${PN/-bin/}"
-
-inherit pax-utils unpacker xdg
-
-DESCRIPTION="Allows you to send and receive messages of Signal Messenger on 
your computer"
-HOMEPAGE="https://signal.org/
-   https://github.com/signalapp/Signal-Desktop;
-SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb;
-S="${WORKDIR}"
-
-LICENSE="GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl 
ZLIB APSL-2 icu Artistic-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="-* amd64"
-IUSE="+sound"
-RESTRICT="splitdebug"
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   media-libs/alsa-lib
-   media-libs/mesa[X(+)]
-   net-print/cups
-   sys-apps/dbus[X]
-   x11-libs/cairo
-   x11-libs/gtk+:3[X]
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libxkbcommon
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXrandr
-   x11-libs/pango
-   sound? (
-   || (
-   media-sound/pulseaudio
-   media-sound/apulse
-   )
-   )
-"
-
-QA_PREBUILT="
-   opt/Signal/chrome_crashpad_handler
-   opt/Signal/chrome-sandbox
-   opt/Signal/libEGL.so
-   opt/Signal/libGLESv2.so
-   opt/Signal/libffmpeg.so
-   opt/Signal/libvk_swiftshader.so
-   opt/Signal/libvulkan.so.1
-   opt/Signal/resources/app.asar.unpacked/node_modules/*
-   opt/Signal/signal-desktop
-   opt/Signal/swiftshader/libEGL.so
-   opt/Signal/swiftshader/libGLESv2.so"
-
-src_prepare() {
-   default
-   sed -e 's| --no-sandbox||g' \
-   -i usr/share/applications/signal-desktop.desktop || die
-   unpack usr/share/doc/signal-desktop/changelog.gz
-}
-
-src_install() {
-   insinto /
-   dodoc changelog
-   doins -r opt
-   insinto /usr/share
-
-   if has_version media-sound/apulse[-sdk] && ! has_version 
media-sound/pulseaudio; then
-   sed -i 's/Exec=/Exec=apulse /g' 
usr/share/applications/signal-desktop.desktop || die
-   fi
-
-   doins -r usr/share/applications
-   doins -r usr/share/icons
-   fperms +x /opt/Signal/signal-desktop /opt/Signal/chrome-sandbox
-   fperms u+s /opt/Signal/chrome-sandbox
-   pax-mark m opt/Signal/signal-desktop opt/Signal/chrome-sandbox
-
-   dosym -r /opt/Signal/${MY_PN} /usr/bin/${MY_PN}
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   elog "For using the tray icon on compatible desktop environments, start 
Signal with"
-   elog " '--start-in-tray' or '--use-tray-icon'."
-}



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

2023-02-16 Thread Sam James
commit: c41487e0ebd5855ca89d6da5fbecb65ca4d0e18b
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:26:44 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:27:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c41487e0

profiles/features/musl: consolidate masks (mostly binary)

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

 profiles/features/musl/package.mask | 14 --
 profiles/features/musl/package.use.mask | 11 ---
 2 files changed, 8 insertions(+), 17 deletions(-)

diff --git a/profiles/features/musl/package.mask 
b/profiles/features/musl/package.mask
index 992a594434c0..b78b576093f6 100644
--- a/profiles/features/musl/package.mask
+++ b/profiles/features/musl/package.mask
@@ -1,11 +1,6 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-# Maciej Barć  (2023-01-07)
-# Currently ACL2 (sci-mathematics/acl2) unconditionally depends
-# on SBCL (dev-lisp/sbcl), which is masked on the musl profile.
-sci-mathematics/acl2
-
 # Sam James  (2023-01-02)
 # Uses error.h, bug #888956
 =sys-libs/liburing-2.3
@@ -25,16 +20,15 @@ dev-libs/intel-compute-runtime
 =sys-devel/gcc-12.2.1_p20230121:12
 
 # Andrey Grozin  (2022-12-01)
-# These packages depend on dev-lisp/sbcl unconditionally
+# sbcl upstream supports only glibc Linux systems, bug #712626
+# and these packages depend on dev-lisp/sbcl unconditionally
+dev-lisp/sbcl
 app-emacs/sly
 dev-lisp/alexandria
+sci-mathematics/acl2
 x11-wm/stumpwm
 x11-wm/stumpwm-contrib
 
-# Andrey Grozin  (2022-12-01)
-# The upstream supports only glibc Linux systems, bug #712626
-dev-lisp/sbcl
-
 # Sam James  (2022-10-17)
 # Needs porting to musl
 # https://github.com/rr-debugger/rr/issues/2236

diff --git a/profiles/features/musl/package.use.mask 
b/profiles/features/musl/package.use.mask
index c16b86e9582d..86f5640af642 100644
--- a/profiles/features/musl/package.use.mask
+++ b/profiles/features/musl/package.use.mask
@@ -5,13 +5,6 @@
 # dev-lisp/sbcl is masked on musl
 sci-mathematics/fricas sbcl
 
-# Andrew Ammerlaan  (2022-12-10)
-# sci-libs/mkl is binary only and links to glibc
-sci-chemistry/gromacs mkl
-sci-libs/armadillo mkl
-sci-libs/dlib mkl
-sci-libs/trilinos mkl
-
 # Bernd Waibel  (2022-10-04)
 # Mask loguru until fixed upstream #873601
 sci-libs/vtk logging
@@ -41,6 +34,10 @@ media-video/ffmpeg amf
 net-fs/openafs tsm
 net-analyzer/nagios-plugin-check_raid megaraid-sas
 sys-apps/hwloc gl
+sci-chemistry/gromacs mkl
+sci-libs/armadillo mkl
+sci-libs/dlib mkl
+sci-libs/trilinos mkl
 www-client/qutebrowser widevine
 
 # Sam James  (2022-10-03)



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

2023-02-16 Thread Sam James
commit: b95fca4c36c3f070787899531b2c11f5622c538c
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb 17 05:29:02 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb 17 05:29:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b95fca4c

profiles: cleanup obsolete < LLVM 14 masks

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

 profiles/base/package.use.mask  | 3 ---
 profiles/features/musl/package.use.mask | 4 
 2 files changed, 7 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 3366feab2492..d54fb2cdd492 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -422,9 +422,6 @@ x11-libs/colord-gtk doc
 # Mask the experimental targets in release ebuilds.
 # Note to self: remember to move still-applicable masks to the newer
 # version when master is bumped.
- (2021-11-07)
-# Broken as "error: unknown type name '_Unwind_Word'"
- (2020-05-16)
 # execinfo.h is required for debug.
 dev-games/cegui debug



  1   2   3   4   5   6   >