[gentoo-commits] repo/gentoo:master commit in: net-voip/sipvicious/

2023-05-02 Thread Sam James
commit: d36aff50e65b579bdf21aa0a99a7477d99e88430
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:42:48 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:42:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d36aff50

net-voip/sipvicious: enable py3.11

Closes: https://bugs.gentoo.org/897154
Signed-off-by: Sam James  gentoo.org>

 net-voip/sipvicious/sipvicious-0.3.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-voip/sipvicious/sipvicious-0.3.4.ebuild 
b/net-voip/sipvicious/sipvicious-0.3.4.ebuild
index 5f337c174cd3..14d8ef7e0698 100644
--- a/net-voip/sipvicious/sipvicious-0.3.4.ebuild
+++ b/net-voip/sipvicious/sipvicious-0.3.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_SINGLE_IMPL=1
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: app-backup/backintime/

2023-05-02 Thread Sam James
commit: 0f596644abe6b6c415b0b01f93bab141c88282c6
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:45:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:59:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f596644

app-backup/backintime: add 1.3.3

Now with tests!

Closes: https://bugs.gentoo.org/905627
Closes: https://bugs.gentoo.org/896500
Signed-off-by: Sam James  gentoo.org>

 app-backup/backintime/Manifest|   1 +
 app-backup/backintime/backintime-1.3.3.ebuild | 103 ++
 app-backup/backintime/backintime-.ebuild  |  69 +++--
 3 files changed, 152 insertions(+), 21 deletions(-)

diff --git a/app-backup/backintime/Manifest b/app-backup/backintime/Manifest
index 4a40070f52fb..cdaa0118f8de 100644
--- a/app-backup/backintime/Manifest
+++ b/app-backup/backintime/Manifest
@@ -1 +1,2 @@
 DIST backintime-1.3.2.tar.gz 714459 BLAKE2B 
cc53bd5391155705016248511e30cdfa7bc25f0a7cb170dfeeffda397e8be1b22f8e335063289d8c192f94c469430655064899ac8059f22f3b7582e3af87d373
 SHA512 
19f756d03cc7533e02bb5172ae3f8c167206bf5e8d60c0f3af1f647e01297a4eeb7889bbb5b58e46636bc31392ee436249b276ddbfa41697a0538c542fa26cb8
+DIST backintime-1.3.3.tar.gz 751422 BLAKE2B 
5c6723d1b190c5331b8453d4cf2b14e00a4bb64777d73e3b2a1405be51ebc5418f749fca654032154f1cec2389efcd41e52c571c1f9f1f982bbd0adcb0b7dd59
 SHA512 
f91157133166869665c8d7475c870cd5418135e17f5e7c8ae5788eb8cd3be39e8ea3d7652aa5945f64d9906b6baed0ed3ee16eb46b81a088210459333efe9372

diff --git a/app-backup/backintime/backintime-1.3.3.ebuild 
b/app-backup/backintime/backintime-1.3.3.ebuild
new file mode 100644
index ..f5d3483dd04a
--- /dev/null
+++ b/app-backup/backintime/backintime-1.3.3.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+inherit python-single-r1 xdg
+
+DESCRIPTION="Backup system inspired by TimeVault and FlyBack"
+HOMEPAGE="https://backintime.readthedocs.io/en/latest/ 
https://github.com/bit-team/backintime/;
+
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://github.com/bit-team/backintime/;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/bit-team/${PN}/releases/download/v${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="examples qt5 test"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   ')
+"
+RDEPEND="
+   ${DEPEND}
+   net-misc/openssh
+   net-misc/rsync[xattr,acl]
+   qt5? ( dev-python/PyQt5[gui,widgets] )
+"
+BDEPEND="
+   sys-devel/gettext
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/pyfakefs[${PYTHON_USEDEP}]
+   ')
+   )
+"
+
+PATCHES=( "${FILESDIR}/${PN}-1.2.1-no-compress-docs-examples.patch" )
+
+src_prepare() {
+   default
+
+   # Looks at host system too much, so too flaky
+   rm common/test/test_tools.py || die
+   # Fails with dbus/udev issue (likely sandbox)
+   rm common/test/test_snapshots.py || die
+}
+
+src_configure() {
+   pushd common > /dev/null || die
+   # Not autotools
+   ./configure --python3 --no-fuse-group || die
+   popd > /dev/null || die
+
+   if use qt5 ; then
+   pushd qt > /dev/null || die
+   ./configure --python3 || die
+   popd > /dev/null || die
+   fi
+}
+
+src_compile() {
+   emake -C common
+
+   if use qt5 ; then
+   emake -C qt
+   fi
+}
+
+src_test() {
+   # pytest should work but it can't find the backintime binary, so
+   # use the unittest-based runner instead.
+   # 
https://github.com/bit-team/backintime/blob/dev/CONTRIBUTING.md#how-to-contribute-to-back-in-time
+   emake -C common test-v
+}
+
+src_install() {
+   emake -C common DESTDIR="${D}" install
+
+   if use qt5 ; then
+   emake -C qt DESTDIR="${D}" install
+   fi
+
+   einstalldocs
+
+   if use examples ; then
+   docinto examples
+   dodoc common/{config-example-local,config-example-ssh}
+   fi
+
+   python_optimize "${D}"
+}

diff --git a/app-backup/backintime/backintime-.ebuild 
b/app-backup/backintime/backintime-.ebuild
index a95837877012..f5d3483dd04a 100644
--- a/app-backup/backintime/backintime-.ebuild
+++ b/app-backup/backintime/backintime-.ebuild
@@ -3,32 +3,60 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
-inherit python-single-r1 git-r3 xdg
+PYTHON_COMPAT=( python3_{10..11} )
+inherit python-single-r1 xdg
 
 DESCRIPTION="Backup system inspired by TimeVault and FlyBack"
 HOMEPAGE="https://backintime.readthedocs.io/en/latest/ 

[gentoo-commits] repo/gentoo:master commit in: dev-cpp/ctemplate/

2023-05-02 Thread Sam James
commit: 42e06168be8e894d260308fa2ba54785802f9f46
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:39:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:39:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e06168

dev-cpp/ctemplate: enable py3.11

Only used for tests and already restricted.

Closes: https://bugs.gentoo.org/896670
Signed-off-by: Sam James  gentoo.org>

 dev-cpp/ctemplate/ctemplate-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/ctemplate/ctemplate-2.4.ebuild 
b/dev-cpp/ctemplate/ctemplate-2.4.ebuild
index 4ae3af9c20f2..b1a2a9d2775c 100644
--- a/dev-cpp/ctemplate/ctemplate-2.4.ebuild
+++ b/dev-cpp/ctemplate/ctemplate-2.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit autotools elisp-common python-any-r1
 



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

2023-05-02 Thread Sam James
commit: 8da0d0ba21eef81ca711698918268ab721d1126a
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:35:11 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:35:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8da0d0ba

dev-python/pyGPG: mark ALLARCHES

Bug: https://bugs.gentoo.org/905424
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pyGPG/metadata.xml b/dev-python/pyGPG/metadata.xml
index 9f215a16d869..b04f3dcc2151 100644
--- a/dev-python/pyGPG/metadata.xml
+++ b/dev-python/pyGPG/metadata.xml
@@ -9,6 +9,7 @@
It also connects to gpg's status-fd output and makes all the 
status data
available as subclassed namedtuple instances.

+   

dol-sen/pyGPG




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

2023-05-02 Thread Sam James
commit: b426ba741b7fecf9449ce78cbe45e2ecc0cec29d
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:29:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:29:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b426ba74

net-analyzer/snmpclitools: enable py3.11

Closes: https://bugs.gentoo.org/897074
Signed-off-by: Sam James  gentoo.org>

 net-analyzer/snmpclitools/snmpclitools-0.6.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/snmpclitools/snmpclitools-0.6.4-r1.ebuild 
b/net-analyzer/snmpclitools/snmpclitools-0.6.4-r1.ebuild
index e429450c8633..190b3e6f2f15 100644
--- a/net-analyzer/snmpclitools/snmpclitools-0.6.4-r1.ebuild
+++ b/net-analyzer/snmpclitools/snmpclitools-0.6.4-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 inherit distutils-r1
 
 DESCRIPTION="Pure-Python SNMP management tools, formerly pysnmp-apps"



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

2023-05-02 Thread Sam James
commit: 83002cb6930d9178a3f5944885e94bb90a8440e8
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:31:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:31:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83002cb6

media-sound/frescobaldi: enable py3.11

Closes: https://bugs.gentoo.org/897028
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-sound/frescobaldi/frescobaldi-3.3.0.ebuild 
b/media-sound/frescobaldi/frescobaldi-3.3.0.ebuild
index 6b50270c637e..bda72123c1cb 100644
--- a/media-sound/frescobaldi/frescobaldi-3.3.0.ebuild
+++ b/media-sound/frescobaldi/frescobaldi-3.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1 xdg
 



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

2023-05-02 Thread Sam James
commit: c8bc02b29453cc1d528357b6f1bf0d6b671bdbac
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:28:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:28:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8bc02b2

app-misc/byobu: add github upstream metadata

Listed at https://www.byobu.org/source-code.

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

 app-misc/byobu/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/byobu/metadata.xml b/app-misc/byobu/metadata.xml
index d9b542e258fc..b0d0e4f0ddc6 100644
--- a/app-misc/byobu/metadata.xml
+++ b/app-misc/byobu/metadata.xml
@@ -19,5 +19,6 @@


byobu
+   dustinkirkland/byobu

 



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

2023-05-02 Thread Sam James
commit: ac65aa470187292057dc98fcd53692d584b638ad
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:27:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:27:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac65aa47

media-sound/apetag: update HOMEPAGE, SRC_URI

Closes: https://bugs.gentoo.org/897022
Signed-off-by: Sam James  gentoo.org>

 media-sound/apetag/apetag-1.12-r3.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-sound/apetag/apetag-1.12-r3.ebuild 
b/media-sound/apetag/apetag-1.12-r3.ebuild
index a88054964932..183648ad647a 100644
--- a/media-sound/apetag/apetag-1.12-r3.ebuild
+++ b/media-sound/apetag/apetag-1.12-r3.ebuild
@@ -3,13 +3,13 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit python-single-r1 toolchain-funcs
 
 DESCRIPTION="Command-line ape 2.0 tagger"
-HOMEPAGE="http://muth.org/Robert/Apetag/;
-SRC_URI="http://muth.org/Robert/Apetag/${PN}.${PV}.tar.gz;
+HOMEPAGE="https://robert.muth.org/Apetag/;
+SRC_URI="https://robert.muth.org/Apetag/${PN}.${PV}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"



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

2023-05-02 Thread Sam James
commit: cbb692ee13943db034a9fd0d07bbf436cd7fbda8
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:25:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:25:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb692ee

dev-python/pyGPG: Stabilize 0.2_p20220808 ppc64, #905424

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

 dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild 
b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index a36ee0cbe0ff..1b5fc28fb358 100644
--- a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -26,7 +26,7 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG;
 LICENSE="BSD"
 SLOT="0"
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
 fi
 
 RDEPEND="app-crypt/gnupg"



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

2023-05-02 Thread Sam James
commit: db760ea0a19da75d34ca5bcc4654409ebe76dc8c
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:25:36 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:25:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db760ea0

dev-util/catalyst: Stabilize 3.0.22-r1 ppc64, #905615

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

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

diff --git a/dev-util/catalyst/catalyst-3.0.22-r1.ebuild 
b/dev-util/catalyst/catalyst-3.0.22-r1.ebuild
index 2c0e11b9e5aa..bc03aa7bbd37 100644
--- a/dev-util/catalyst/catalyst-3.0.22-r1.ebuild
+++ b/dev-util/catalyst/catalyst-3.0.22-r1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == ** ]]; then
EGIT_BRANCH="master"
 else

SRC_URI="https://gitweb.gentoo.org/proj/catalyst.git/snapshot/${P}.tar.bz2;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86"
 fi
 
 PYTHON_COMPAT=( python3_{9..11} )



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

2023-05-02 Thread Sam James
commit: 1150b8768a6d49734f177da61de982b49067ddfa
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:23:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:23:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1150b876

app-misc/khal: add github upstream metadata

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

 app-misc/khal/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/khal/metadata.xml b/app-misc/khal/metadata.xml
index 42fa09f8c693..23ad9117f7aa 100644
--- a/app-misc/khal/metadata.xml
+++ b/app-misc/khal/metadata.xml
@@ -5,6 +5,7 @@
amy...@gentoo.org


+   pimutils/khal
khal

 



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

2023-05-02 Thread Sam James
commit: 55b81a908d6e069ec4a0792e84ff37dc0099a972
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:22:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:22:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55b81a90

app-misc/khal: add 0.11.1

Fix test deps while at it.

Closes: https://bugs.gentoo.org/896582
Signed-off-by: Sam James  gentoo.org>

 app-misc/khal/Manifest   |  1 +
 app-misc/khal/khal-0.11.1.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index 660f191bb0c0..781dd1a99e48 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,2 +1,3 @@
 DIST khal-0.10.4.tar.gz 185736 BLAKE2B 
0cb9deb793f577bbcedcbba4788988973ee9d0ab71fdd30a01142a54434767d74b1d10e5bfa5f6a2feb9f18a8a9fe22717d4a38a07ab5e30b331c87b79a79f39
 SHA512 
b32f1bfe5d3a3976278726a6570eb345a5ad44f63a52b75f045fd0509d145edd5b76e11a10acffd9c3982edc124f93daec34a37c39299c2311796c0314016eb6
 DIST khal-0.10.5.tar.gz 188468 BLAKE2B 
195e61fcff7cff1308f2819ec54c5733acebb5ace18f88afa8fc561926857dab3e0e0b82d1f7e3e0235e69ed9ad56544d6eeb95a9e9829dc078d49ebf96c0485
 SHA512 
f7b1e4d4934757ec7458fc4e73c6b6c5ee6b1c64f6cdc3e61771a2f05041515e4afb73b4a17cbc577747039b689ddd66503e120648c4bfe4e33113a3de6f3d14
+DIST khal-0.11.1.tar.gz 193942 BLAKE2B 
12f98781b9a64710537f7728a087f24ef1d73600e957eac7b699948047c1676a9c91a38a415741c6acd94a7ba72014d4b009425edab249225c8bef23b94c0387
 SHA512 
c4fd25dc4981f4937562949b78f81d3e57b7ef54f7f6d96855645ca239eea9dec7ee6f3c957a67261e7ae2975ab55b36a686db476b03f4fd0bacce94e834b239

diff --git a/app-misc/khal/khal-0.11.1.ebuild b/app-misc/khal/khal-0.11.1.ebuild
new file mode 100644
index ..49071ea28ff0
--- /dev/null
+++ b/app-misc/khal/khal-0.11.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_10 )
+PYTHON_REQ_USE="sqlite"
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A CalDAV based calendar"
+HOMEPAGE="https://lostpackets.de/khal/ https://github.com/pimutils/khal;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/click-log[${PYTHON_USEDEP}]
+   dev-python/icalendar[${PYTHON_USEDEP}]
+   dev-python/urwid[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   dev-python/atomicwrites[${PYTHON_USEDEP}]
+   dev-python/tzlocal[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/vdirsyncer[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.rst README.rst khal.conf.sample )
+
+distutils_enable_tests pytest



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

2023-05-02 Thread Sam James
commit: 81a173bdb62281832d94ef3fca5553d228ae07e4
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:13:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:22:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a173bd

app-text/restview: enable py3.11

Closes: https://bugs.gentoo.org/896642
Signed-off-by: Sam James  gentoo.org>

 app-text/restview/restview-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/restview/restview-3.0.0.ebuild 
b/app-text/restview/restview-3.0.0.ebuild
index f54b105df3de..921e4a227fb8 100644
--- a/app-text/restview/restview-3.0.0.ebuild
+++ b/app-text/restview/restview-3.0.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 pypi
 
 DESCRIPTION="reStructuredText viewer"



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

2023-05-02 Thread Sam James
commit: ef4d36a7487f5c337be7e2ddbff27ef88e3e28ca
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:10:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:22:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef4d36a7

dev-python/pygresql: enable py3.11

Closes: https://bugs.gentoo.org/896832
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pygresql/pygresql-5.2.4.ebuild 
b/dev-python/pygresql/pygresql-5.2.4.ebuild
index 2c4fcce017a1..5ad5dc18a36b 100644
--- a/dev-python/pygresql/pygresql-5.2.4.ebuild
+++ b/dev-python/pygresql/pygresql-5.2.4.ebuild
@@ -7,7 +7,7 @@ DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
 PYPI_PN="PyGreSQL"
 POSTGRES_COMPAT=( 9.6 {10..14} )
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1 postgres pypi
 



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

2023-05-02 Thread Sam James
commit: 13869cf61f1f7b26a20811fda02619380b656b76
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:20:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:22:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13869cf6

media-tv/kodi: enable py3.11

As noted in the bug, taking a punt on this given I don't see any upstream
commits indicating it doesn't work.

Closes: https://bugs.gentoo.org/905076
Signed-off-by: Sam James  gentoo.org>

 media-tv/kodi/kodi-19.5.ebuild| 2 +-
 media-tv/kodi/kodi-19..ebuild | 2 +-
 media-tv/kodi/kodi-.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-tv/kodi/kodi-19.5.ebuild b/media-tv/kodi/kodi-19.5.ebuild
index db326e7f1d0a..3f033734ff91 100644
--- a/media-tv/kodi/kodi-19.5.ebuild
+++ b/media-tv/kodi/kodi-19.5.ebuild
@@ -10,7 +10,7 @@ LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3"
 FFMPEG_VERSION="4.3.2"
 CODENAME="Matrix"
 FFMPEG_KODI_VERSION="19.1"
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{10..11} )
 SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz 
-> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz
https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz 
-> libdvdread-${LIBDVDREAD_VERSION}.tar.gz
https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz 
-> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz

diff --git a/media-tv/kodi/kodi-19..ebuild 
b/media-tv/kodi/kodi-19..ebuild
index 46037f8a406b..840bbfa1621d 100644
--- a/media-tv/kodi/kodi-19..ebuild
+++ b/media-tv/kodi/kodi-19..ebuild
@@ -10,7 +10,7 @@ LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3"
 FFMPEG_VERSION="4.3.2"
 CODENAME="Matrix"
 FFMPEG_KODI_VERSION="19.1"
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{10..11} )
 SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz 
-> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz
https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz 
-> libdvdread-${LIBDVDREAD_VERSION}.tar.gz
https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz 
-> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index d83f9fc2f23a..245639840c31 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -10,7 +10,7 @@ LIBDVDNAV_VERSION="6.1.1-Next-Nexus-Alpha2"
 FFMPEG_VERSION="5.1.2"
 CODENAME="Nexus"
 FFMPEG_KODI_VERSION="Alpha3"
-PYTHON_COMPAT=( python3_11 )
+PYTHON_COMPAT=( python3_{10..11} )
 SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz 
-> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz
https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz 
-> libdvdread-${LIBDVDREAD_VERSION}.tar.gz
https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz 
-> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz



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

2023-05-02 Thread Sam James
commit: af7101cbf88d4711083c6b0e2a09f2b27f633674
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:07:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:22:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af7101cb

media-sound/sonata: enable py3.11

Closes: https://bugs.gentoo.org/897042
Signed-off-by: Sam James  gentoo.org>

 media-sound/sonata/sonata-1.7.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/sonata/sonata-1.7.0-r1.ebuild 
b/media-sound/sonata/sonata-1.7.0-r1.ebuild
index 528799087020..c45e9db16e8c 100644
--- a/media-sound/sonata/sonata-1.7.0-r1.ebuild
+++ b/media-sound/sonata/sonata-1.7.0-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 DISTUTILS_SINGLE_IMPL=1
 DISTUTILS_USE_PEP517=setuptools
 inherit desktop distutils-r1 xdg



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

2023-05-02 Thread Sam James
commit: 0d7b0e0ce0f52f903f3e4a18bc8411cb6713c5d5
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:08:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:22:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7b0e0c

dev-python/qpageview: enable py3.11

Closes: https://bugs.gentoo.org/896872
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/qpageview/qpageview-0.6.2.ebuild 
b/dev-python/qpageview/qpageview-0.6.2.ebuild
index 35d5ee8d8d1f..6e8fcf632c7e 100644
--- a/dev-python/qpageview/qpageview-0.6.2.ebuild
+++ b/dev-python/qpageview/qpageview-0.6.2.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit distutils-r1 optfeature
 
 DESCRIPTION="Page-based viewer widget for Qt5/PyQt5"



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

2023-05-02 Thread Joonas Niilola
commit: f060334e200989bf6d959d7381d9cba754fc73c0
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed May  3 05:21:25 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed May  3 05:21:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f060334e

dev-util/cbindgen: update HOMEPAGE

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

 dev-util/cbindgen/cbindgen-0.24.3.ebuild | 4 ++--
 dev-util/cbindgen/metadata.xml   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/cbindgen/cbindgen-0.24.3.ebuild 
b/dev-util/cbindgen/cbindgen-0.24.3.ebuild
index b35333719540..dd15030fc686 100644
--- a/dev-util/cbindgen/cbindgen-0.24.3.ebuild
+++ b/dev-util/cbindgen/cbindgen-0.24.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # Auto-Generated by cargo-ebuild 0.5.1
@@ -56,7 +56,7 @@ inherit cargo
 DESCRIPTION="A tool for generating C bindings to Rust code"
 # Double check the homepage as the cargo_metadata crate
 # does not provide this value so instead repository is used
-HOMEPAGE="https://github.com/eqrion/cbindgen/;
+HOMEPAGE="https://github.com/mozilla/cbindgen/;
 SRC_URI="$(cargo_crate_uris)
https://github.com/eqrion/cbindgen/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
 

diff --git a/dev-util/cbindgen/metadata.xml b/dev-util/cbindgen/metadata.xml
index 441536cad728..aeb3cd2cd92b 100644
--- a/dev-util/cbindgen/metadata.xml
+++ b/dev-util/cbindgen/metadata.xml
@@ -6,6 +6,6 @@
Gentoo Mozilla Team


-   eqrion/cbindgen
+   mozilla/cbindgen

 



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

2023-05-02 Thread Michał Górny
commit: 568e226f23ee69a22bbd06b1e2453a674b0706ae
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:13:14 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:13:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=568e226f

dev-python/picobox: Remove old

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

 dev-python/picobox/Manifest|  1 -
 .../picobox/files/picobox-2.2.0-fix-py3.10.patch   | 26 ---
 dev-python/picobox/picobox-2.2.0.ebuild| 29 --
 3 files changed, 56 deletions(-)

diff --git a/dev-python/picobox/Manifest b/dev-python/picobox/Manifest
index 6fca50562b08..8a65ac80232b 100644
--- a/dev-python/picobox/Manifest
+++ b/dev-python/picobox/Manifest
@@ -1,2 +1 @@
-DIST picobox-2.2.0.tar.gz 30231 BLAKE2B 
9911e2e41a850b57d4a642aa454e55703e0546bdb3a5b95aa4a15747388413babaec7dc3a3f7fcb7ecae7ecd0f81dc203161975ca393f87353987825e0413355
 SHA512 
d127ea71637105285701ae5252e59e0c940077fbbe044ba1f42f80134ea08291344ebb6bc8bce240112a7efe0be8561c8040b43d20912f1fbd121098578a1795
 DIST picobox-3.0.0.tar.gz 28599 BLAKE2B 
e29dd7b0b5b23175a21f8fe6efe83adc6edfb0302c7a27f92f518deeba8f74f8e2d481a8eef6a1363fa0fb02ffc00b462181bab09872f6da5c1c9063c4d274e6
 SHA512 
ac8cecba10527e7dc096eb66f3b6743b523c305bd9725d5be8ec2822857a65ef8e9cc0ddcb85b8c656c557e7dc6cf0903035753bf8fe8cc2616b463e0a82bb5d

diff --git a/dev-python/picobox/files/picobox-2.2.0-fix-py3.10.patch 
b/dev-python/picobox/files/picobox-2.2.0-fix-py3.10.patch
deleted file mode 100644
index 74c6f9b2193f..
--- a/dev-python/picobox/files/picobox-2.2.0-fix-py3.10.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/tests/test_box.py b/tests/test_box.py
-index c1c1ca2..d576086 100644
 a/tests/test_box.py
-+++ b/tests/test_box.py
-@@ -402,7 +402,7 @@ def test_box_pass_unexpected_argument(boxclass):
- with pytest.raises(TypeError) as excinfo:
- fn(1, 2)
- 
--assert str(excinfo.value) == "fn() got an unexpected keyword argument 'd'"
-+assert "fn() got an unexpected keyword argument 'd'" in str(excinfo.value)
- 
- 
- def test_box_pass_keyerror(boxclass):
-diff --git a/tests/test_stack.py b/tests/test_stack.py
-index 725d378..10129b3 100644
 a/tests/test_stack.py
-+++ b/tests/test_stack.py
-@@ -472,7 +472,7 @@ def test_box_pass_unexpected_argument(boxclass, teststack):
- with pytest.raises(TypeError) as excinfo:
- fn(1, 2)
- 
--assert str(excinfo.value) == "fn() got an unexpected keyword argument 'd'"
-+assert "fn() got an unexpected keyword argument 'd'" in str(excinfo.value)
- 
- 
- def test_box_pass_keyerror(boxclass, teststack):

diff --git a/dev-python/picobox/picobox-2.2.0.ebuild 
b/dev-python/picobox/picobox-2.2.0.ebuild
deleted file mode 100644
index 21e6a6424b63..
--- a/dev-python/picobox/picobox-2.2.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1 pypi
-
-DESCRIPTION="Dependency injection framework designed with Python in mind"
-HOMEPAGE="https://pypi.org/project/picobox/
-   https://github.com/ikalnytskyi/picobox;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
-
-BDEPEND="
-   dev-python/setuptools-scm[${PYTHON_USEDEP}]
-   test? (
-   dev-python/flask[${PYTHON_USEDEP}]
-   )
-"
-
-PATCHES=(
-   "${FILESDIR}/${P}-fix-py3.10.patch"
-)
-
-distutils_enable_tests pytest



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

2023-05-02 Thread Michał Górny
commit: 2a6944d9d355e3c45e0757564afbabb54a864af3
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:10:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:10:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a6944d9

dev-python/pyfakefs: Remove old

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

 dev-python/pyfakefs/Manifest  |  3 ---
 dev-python/pyfakefs/pyfakefs-5.1.0.ebuild | 30 --
 dev-python/pyfakefs/pyfakefs-5.2.0.ebuild | 30 --
 dev-python/pyfakefs/pyfakefs-5.2.1.ebuild | 30 --
 4 files changed, 93 deletions(-)

diff --git a/dev-python/pyfakefs/Manifest b/dev-python/pyfakefs/Manifest
index 3a1cd3d3597a..6074b50d63b0 100644
--- a/dev-python/pyfakefs/Manifest
+++ b/dev-python/pyfakefs/Manifest
@@ -1,4 +1 @@
-DIST pyfakefs-5.1.0.gh.tar.gz 212507 BLAKE2B 
b9607ff2af71d6697bb5ea5ceae0bb1b92b9aa2e91bafdf24d3dab6f5412a6fd8ff590983085079e9a7b1569b839f4fc5b443d5904decf2de5511ab856e8de7d
 SHA512 
40d4e3fb422c2d9515c00bfa9940a8799d5e102a5775ac34d45e99286759451d1287df1e32f45956a84c1052cc02eed98a8f9789a628ac253771042b011ddd3e
-DIST pyfakefs-5.2.0.gh.tar.gz 218488 BLAKE2B 
b0d2fc01e6fc4b965d5b1099700864c309cb3531b4672fe86db7e1517e4661b64b268f3551eabdd6a20ce2c9b3c4b109bce050962ca7deec6450825292468677
 SHA512 
d1d7557f5bcf4ae5917f71d74ee942c428f39c9c1bca5cd31e6f7662084a0db044bddaa0e6e95ea7ee410444b46e3cae91f8dbf74050225f94ecd6436a4c5468
-DIST pyfakefs-5.2.1.gh.tar.gz 219084 BLAKE2B 
85769abbff7c0fb8497cd951785d362778178aec28649b873ade35da819fb496d075ebe1b615c7e5965f1bc8469bea59bcd47db0667ee50475d093e3014623e2
 SHA512 
79febb84ca53ccef1d550f40a36fdff0d4b92484e9ea7a616de914c37d1156f56653e60c549c6060b4bdda9a36e40bc4a94e58b762850a31a2a2c2f1b06358fe
 DIST pyfakefs-5.2.2.gh.tar.gz 219768 BLAKE2B 
be22ad269dcb8777c2fc6d8aed5079b84089980f5b62f1198ec2b4b3eea3688df3665bfc305a300e73917d65bc4209bc7bbf2a739d3852b1257036ca288a7846
 SHA512 
43ba719ad129f3e5188512a6f9b1eb8cfd7586f45a69c6623a9ae2429ca4dfa67d54cfc42032a599daaf736d46cb9e268c9f68150c16427667ed84e0917ed459

diff --git a/dev-python/pyfakefs/pyfakefs-5.1.0.ebuild 
b/dev-python/pyfakefs/pyfakefs-5.1.0.ebuild
deleted file mode 100644
index bd296d0b3f4b..
--- a/dev-python/pyfakefs/pyfakefs-5.1.0.ebuild
+++ /dev/null
@@ -1,30 +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="A fake file system that mocks the Python file system modules"
-HOMEPAGE="
-   https://github.com/pytest-dev/pyfakefs/
-   https://pypi.org/project/pyfakefs/
-"
-SRC_URI="
-   https://github.com/pytest-dev/pyfakefs/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-macos"
-
-distutils_enable_tests pytest
-
-python_test() {
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest -p pyfakefs.pytest_plugin
-}

diff --git a/dev-python/pyfakefs/pyfakefs-5.2.0.ebuild 
b/dev-python/pyfakefs/pyfakefs-5.2.0.ebuild
deleted file mode 100644
index 876026d4079f..
--- a/dev-python/pyfakefs/pyfakefs-5.2.0.ebuild
+++ /dev/null
@@ -1,30 +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="A fake file system that mocks the Python file system modules"
-HOMEPAGE="
-   https://github.com/pytest-dev/pyfakefs/
-   https://pypi.org/project/pyfakefs/
-"
-SRC_URI="
-   https://github.com/pytest-dev/pyfakefs/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos"
-
-distutils_enable_tests pytest
-
-python_test() {
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   epytest -p pyfakefs.pytest_plugin
-}

diff --git a/dev-python/pyfakefs/pyfakefs-5.2.1.ebuild 
b/dev-python/pyfakefs/pyfakefs-5.2.1.ebuild
deleted file mode 100644
index 876026d4079f..
--- a/dev-python/pyfakefs/pyfakefs-5.2.1.ebuild
+++ /dev/null
@@ -1,30 +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="A fake file system that mocks the Python file system modules"
-HOMEPAGE="
-   https://github.com/pytest-dev/pyfakefs/
-   https://pypi.org/project/pyfakefs/
-"
-SRC_URI="
-   https://github.com/pytest-dev/pyfakefs/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"

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

2023-05-02 Thread Michał Górny
commit: 2d772ecbc93e80ba4b40d0dbbdfda1b63a7e0b41
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:12:17 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:12:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d772ecb

dev-python/nbconvert: Remove old

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

 dev-python/nbconvert/Manifest   |  3 -
 dev-python/nbconvert/nbconvert-7.2.10-r1.ebuild | 93 
 dev-python/nbconvert/nbconvert-7.2.9.ebuild | 95 -
 dev-python/nbconvert/nbconvert-7.3.0.ebuild | 93 
 4 files changed, 284 deletions(-)

diff --git a/dev-python/nbconvert/Manifest b/dev-python/nbconvert/Manifest
index 7981bb994a39..7756ab04198e 100644
--- a/dev-python/nbconvert/Manifest
+++ b/dev-python/nbconvert/Manifest
@@ -1,4 +1 @@
-DIST nbconvert-7.2.10.tar.gz 870708 BLAKE2B 
837b5cf70f530b8fd3d566809d8d4faefdb3c4581b46e317d218a08bb06b80fdf59dcbd6c337b7fd62a9fdff676ea1cec941a7f6641c54ebee066a1bec19ffcd
 SHA512 
078d6f1375f595f30db9eeebab55842353d549a294290a185c3817fc0bb2459c392120f089890409eec7cfe0fec7909752d20e4c55123249a4685d34655e0c05
-DIST nbconvert-7.2.9.tar.gz 870386 BLAKE2B 
aea62f29d3e696c70d77ab73cc89347a4e0c8e077e98c45331608f7117fb3c98165bf3da89e4f3bf23b9d62c618289d98c9103c5b2998ca81f65cbfda65ca536
 SHA512 
0053e0e88f279d2fe430e516bcc19f98191e9ce414546ab1ff214f37c8f1cdfc4fc101faa4b5f1d5955fdc65c87aad367f5a5f12ce5991c68c015c5083f2f30c
-DIST nbconvert-7.3.0.tar.gz 879918 BLAKE2B 
cf1414f5c6a41222f576a66ca8aa49f98d5ee4a0cd6bedcd779a6c429d46550e0435e60723255358f1ccf51b508d74e7461521889cbb7e6dfb10377175ea78a2
 SHA512 
a7030cced31ae749d9625f7fb7cc2bee17c10fcd90e83f36efed1c00758d02e47ed9d90aa907c2acbe979810a561d48d9fe854a3786b60418beacdd471b14b8f
 DIST nbconvert-7.3.1.tar.gz 880064 BLAKE2B 
0bde4a65f27a880fdbf694dc6501ad1d0f78bf72e6010377faf89d8b16d5b24f82fcba93c51d9421a88e5c554bc0fb6d002f913886bd2d2f1a7f17a834755d02
 SHA512 
24d8d0ff35cf09d095d01122386439cf0c40eb9af7c88604f3108e5831a270509e1302370dc40eabc8bcb28fb86603d9d7a4a104346122deb8471aab7471e62d

diff --git a/dev-python/nbconvert/nbconvert-7.2.10-r1.ebuild 
b/dev-python/nbconvert/nbconvert-7.2.10-r1.ebuild
deleted file mode 100644
index 8a9e062190f1..
--- a/dev-python/nbconvert/nbconvert-7.2.10-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# 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 multiprocessing pypi virtualx
-
-DESCRIPTION="Converting Jupyter Notebooks"
-HOMEPAGE="
-   https://nbconvert.readthedocs.io/
-   https://github.com/jupyter/nbconvert/
-   https://pypi.org/project/nbconvert/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~riscv ~x86"
-
-RDEPEND="
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/bleach[${PYTHON_USEDEP}]
-   dev-python/defusedxml[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   >=dev-python/importlib-metadata-3.6[${PYTHON_USEDEP}]
-   ' 3.9)
-   >=dev-python/jinja-3.0[${PYTHON_USEDEP}]
-   >=dev-python/jupyter-core-4.7[${PYTHON_USEDEP}]
-   dev-python/jupyterlab_pygments[${PYTHON_USEDEP}]
-   >=dev-python/markupsafe-2.0[${PYTHON_USEDEP}]
-   >=dev-python/mistune-2.0.2[${PYTHON_USEDEP}]
-   >=dev-python/nbclient-0.5.0[${PYTHON_USEDEP}]
-   >=dev-python/nbformat-5.1[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   >=dev-python/pandocfilters-1.4.1[${PYTHON_USEDEP}]
-   >=dev-python/pygments-2.4.1[${PYTHON_USEDEP}]
-   dev-python/tinycss2[${PYTHON_USEDEP}]
-   >=dev-python/traitlets-5.1.1[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/ipykernel[${PYTHON_USEDEP}]
-   >=dev-python/ipywidgets-7[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   mkdir -p share/templates/classic/static || die
-   # tries to refetch stuff even if it's already present
-   sed -e 's:css = .*:raise PermissionError("You shall not fetch!"):' \
-   -i hatch_build.py || die
-   distutils-r1_src_prepare
-}
-
-src_test() {
-   virtx distutils-r1_src_test
-}
-
-python_test() {
-   local EPYTEST_DESELECT=(
-   # Missing pyppeteer for now
-   # TODO: Doesn't skip?
-   nbconvert/exporters/tests/test_webpdf.py
-   # Needs pyppeteer too
-   
'nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_webpdf_with_chromium'
-   # TODO
-   
nbconvert/exporters/tests/test_qtpng.py::TestQtPNGExporter::test_export
-   
nbconvert/tests/test_nbconvertapp.py::TestNbConvertApp::test_convert_full_qualified_name
-   

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

2023-05-02 Thread Michał Górny
commit: ef1f1dce507ff1a533fd6688b540673ae3322ac7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:12:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:12:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1f1dce

dev-python/pytest-jupyter: Remove old

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

 dev-python/pytest-jupyter/Manifest |  1 -
 .../pytest-jupyter/pytest-jupyter-0.6.2.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/dev-python/pytest-jupyter/Manifest 
b/dev-python/pytest-jupyter/Manifest
index b02cd95089ac..a945176ea318 100644
--- a/dev-python/pytest-jupyter/Manifest
+++ b/dev-python/pytest-jupyter/Manifest
@@ -1,2 +1 @@
-DIST pytest_jupyter-0.6.2.tar.gz 15174 BLAKE2B 
b6c536383ab1b8e375e4250b4922ac6372f850ee4993643122896092109d3f711f91ccc7b159b7330de18f7876df818dc01d31c05e3c18d97488255e063db4d4
 SHA512 
396f7a7c978097e6dee37ead92bb3c8cef2a8100a7cc85b0b1eab19e20bdaed3332391c17568a6a279ab6ddeea1fbb2fa8dafe24ba4500982ba52cfcda2b1052
 DIST pytest_jupyter-0.7.0.tar.gz 15507 BLAKE2B 
b4b580668083e46830d06908f484f221e511a9dc5b32285de25e8e83268a1cb4a110ab5bc92c4652033bd658332c6aef8560313e041d39ceeec6d7339c67b24d
 SHA512 
5bd44d1cc927281823ab92f5e1dbb4fa66e917fb9ba098c63001bb9edf60d4eb7842d4178c1dce1772e156d871def2319d511187185fbfd81ee9128c7c23ea2a

diff --git a/dev-python/pytest-jupyter/pytest-jupyter-0.6.2.ebuild 
b/dev-python/pytest-jupyter/pytest-jupyter-0.6.2.ebuild
deleted file mode 100644
index 99465a0d432e..
--- a/dev-python/pytest-jupyter/pytest-jupyter-0.6.2.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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="Pytest plugin for testing Jupyter libraries and extensions"
-HOMEPAGE="https://jupyter.org;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
-   >=dev-python/jupyter-client-7.4.0[${PYTHON_USEDEP}]
-   >=dev-python/ipykernel-6.14[${PYTHON_USEDEP}]
-   >=dev-python/jupyter-server-1.21[${PYTHON_USEDEP}]
-   >=dev-python/nbformat-5.3[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/pytest-timeout[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest



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

2023-05-02 Thread Michał Górny
commit: 6734f6e884aa7f0c2506cbd15d187ad26fc566a7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:11:47 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:11:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6734f6e8

dev-python/pgspecial: Remove old

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

 dev-python/pgspecial/Manifest   |  1 -
 dev-python/pgspecial/pgspecial-2.0.1.ebuild | 55 -
 2 files changed, 56 deletions(-)

diff --git a/dev-python/pgspecial/Manifest b/dev-python/pgspecial/Manifest
index 0cb2253d4137..7da814a98290 100644
--- a/dev-python/pgspecial/Manifest
+++ b/dev-python/pgspecial/Manifest
@@ -1,2 +1 @@
-DIST pgspecial-2.0.1.gh.tar.gz 50181 BLAKE2B 
6f3f9f8feba717c18d3985d80a432eb7d127c65f7436bfc792a44cb5d7aad08e6e3b931cc289a051fbfea43cd5d8d7db44ede6de89683d462d51635c5caf2e04
 SHA512 
e89e7cd0f7e849fe93b8e8e79e409ee73ba6c22f3d76279415f236184f732d12cdd8b6bb7722b24ec2bd665f3429c0bf4e6905cd24c9739aa78906b12f841f13
 DIST pgspecial-2.1.0.tar.gz 50495 BLAKE2B 
981f5a01ef32090eae7d477d23476fd8dd2a5bd3a5f3781e990cdbd28ebb24e5176653b7c8f9a1b7f1f01888a5c8278568257a709a5337f8b0d9838bfba8a21a
 SHA512 
5bbd53d21ad89698b6ca04c989aa1ed59f3b8adc9b876b5b7db35bca03b964f645df2af96d3ddf6e7718c8ee06953fcf8f3ca548e65d722eaf4ea0098fa126ad

diff --git a/dev-python/pgspecial/pgspecial-2.0.1.ebuild 
b/dev-python/pgspecial/pgspecial-2.0.1.ebuild
deleted file mode 100644
index d2105974bbd4..
--- a/dev-python/pgspecial/pgspecial-2.0.1.ebuild
+++ /dev/null
@@ -1,55 +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 implementation of PostgreSQL meta commands"
-HOMEPAGE="
-   https://github.com/dbcli/pgspecial/
-   https://pypi.org/project/pgspecial/
-"
-SRC_URI="
-   https://github.com/dbcli/pgspecial/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
-   >=dev-python/click-4.1[${PYTHON_USEDEP}]
-   >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
-   >=dev-python/psycopg-3.0.10:0[${PYTHON_USEDEP}]
-   >=dev-python/sqlparse-0.1.19[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   >=dev-db/postgresql-8.1[server]
-   )
-"
-
-distutils_enable_tests pytest
-
-DOCS=( License.txt README.rst changelog.rst  )
-
-src_test() {
-   local db=${T}/pgsql
-
-   initdb --username=postgres -D "${db}" || die
-   # TODO: random port
-   pg_ctl -w -D "${db}" start \
-   -o "-h '127.0.0.1' -p 5432 -k '${T}'" || die
-   psql -h "${T}" -U postgres -d postgres \
-   -c "ALTER ROLE postgres WITH PASSWORD 'postgres';" || die
-   createdb -h "${T}" -U postgres _test_db || die
-
-   distutils-r1_src_test
-
-   pg_ctl -w -D "${db}" stop || die
-}



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

2023-05-02 Thread Michał Górny
commit: 802995b4f0796bc8bcf11baf621e9d6cfe945c85
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May  3 05:16:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May  3 05:16:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=802995b4

sys-kernel/bliss-initramfs: Enable py3.11

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

 sys-kernel/bliss-initramfs/bliss-initramfs-9.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/bliss-initramfs/bliss-initramfs-9.3.0.ebuild 
b/sys-kernel/bliss-initramfs/bliss-initramfs-9.3.0.ebuild
index eeb469134df9..f28c89246fb8 100644
--- a/sys-kernel/bliss-initramfs/bliss-initramfs-9.3.0.ebuild
+++ b/sys-kernel/bliss-initramfs/bliss-initramfs-9.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 inherit python-single-r1
 
 DESCRIPTION="Boot your system's rootfs from Encrypted/OpenZFS"



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

2023-05-02 Thread Sam James
commit: d88bf4309488ae12af58e56c4cb78934ba9d96f7
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 05:02:15 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 05:02:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d88bf430

media-sound/soundconverter: enable py3.11

Closes: https://bugs.gentoo.org/891451
Closes: https://bugs.gentoo.org/897044
Signed-off-by: Sam James  gentoo.org>

 media-sound/soundconverter/soundconverter-4.0.3.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-sound/soundconverter/soundconverter-4.0.3.ebuild 
b/media-sound/soundconverter/soundconverter-4.0.3.ebuild
index 376dcf9016f5..a7a0002b9f9a 100644
--- a/media-sound/soundconverter/soundconverter-4.0.3.ebuild
+++ b/media-sound/soundconverter/soundconverter-4.0.3.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_SINGLE_IMPL=1
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 PYTHON_REQ_USE="xml(+)"
 inherit gnome2-utils distutils-r1 virtualx xdg
 
@@ -46,6 +46,7 @@ BDEPEND="
$(python_gen_cond_dep '
dev-python/python-distutils-extra[${PYTHON_USEDEP}]
')
+   dev-util/intltool
test? (
media-plugins/gst-plugins-flac:1.0
media-libs/gst-plugins-bad:1.0



[gentoo-commits] repo/gentoo:master commit in: sys-block/fio/

2023-05-02 Thread Sam James
commit: de256969b0de5d1e75a3cf23a31292981c053eb3
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:45:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:45:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de256969

sys-block/fio: Stabilize 3.34 ppc64, #905612

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

 sys-block/fio/fio-3.34.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/fio/fio-3.34.ebuild b/sys-block/fio/fio-3.34.ebuild
index 94ede9e12066..f5114877dc7b 100644
--- a/sys-block/fio/fio-3.34.ebuild
+++ b/sys-block/fio/fio-3.34.ebuild
@@ -16,7 +16,7 @@ SRC_URI="https://brick.kernel.dk/snaps/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="~amd64 arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv x86"
 IUSE="aio curl glusterfs gnuplot gtk io-uring nfs numa python rbd rdma static 
tcmalloc test zbc zlib"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )
gnuplot? ( python )



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

2023-05-02 Thread Sam James
commit: 1e0e0ae1fa50dc6ff38ee29d7ec399fafca13568
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:45:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:45:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0e0ae1

app-text/blahtexml: Stabilize 1.0 ppc64, #905590

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

 app-text/blahtexml/blahtexml-1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/blahtexml/blahtexml-1.0.ebuild 
b/app-text/blahtexml/blahtexml-1.0.ebuild
index 6db430937f06..ea99a3570a9e 100644
--- a/app-text/blahtexml/blahtexml-1.0.ebuild
+++ b/app-text/blahtexml/blahtexml-1.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/gvanas/blahtexml/archive/refs/tags/v${PV}.tar.gz ->
 
 LICENSE="BSD CC-BY-3.0 ZLIB"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~s390 x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 x86"
 IUSE="doc"
 
 RDEPEND="dev-libs/xerces-c"



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

2023-05-02 Thread Sam James
commit: 0fa207956ef2d1ba6b44e52441fd19d2428f63c6
Author: Jon Janzen  jonjanzen  com>
AuthorDate: Wed May  3 01:14:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:42:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fa20795

media-video/handbrake: enable py3.11

Bug: https://bugs.gentoo.org/897050
Signed-off-by: Jon Janzen  jonjanzen.com>
Closes: https://github.com/gentoo/gentoo/pull/30850
Signed-off-by: Sam James  gentoo.org>

 media-video/handbrake/handbrake-1.4.2-r2.ebuild | 2 +-
 media-video/handbrake/handbrake-1.5.1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/handbrake/handbrake-1.4.2-r2.ebuild 
b/media-video/handbrake/handbrake-1.4.2-r2.ebuild
index 618137c80e46..5f5a8b0e7e24 100644
--- a/media-video/handbrake/handbrake-1.4.2-r2.ebuild
+++ b/media-video/handbrake/handbrake-1.4.2-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit autotools python-any-r1 toolchain-funcs xdg
 

diff --git a/media-video/handbrake/handbrake-1.5.1.ebuild 
b/media-video/handbrake/handbrake-1.5.1.ebuild
index a5d8c9da21ac..97c89c1d5812 100644
--- a/media-video/handbrake/handbrake-1.5.1.ebuild
+++ b/media-video/handbrake/handbrake-1.5.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit autotools python-any-r1 toolchain-funcs xdg
 



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

2023-05-02 Thread Sam James
commit: 9a3f80f8429baa96ae24de4a22cb350d4e2117c1
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:45:09 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:45:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3f80f8

dev-lang/vala: Stabilize 0.56.6 ppc, #905505

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

 dev-lang/vala/vala-0.56.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.56.6.ebuild b/dev-lang/vala/vala-0.56.6.ebuild
index c6821025dd1b..5ad2decbdc5e 100644
--- a/dev-lang/vala/vala-0.56.6.ebuild
+++ b/dev-lang/vala/vala-0.56.6.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala 
https://gitlab.gnome.org/GNOME/va
 
 LICENSE="LGPL-2.1+"
 SLOT="0.56"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x86-linux"
 IUSE="test valadoc"
 RESTRICT="!test? ( test )"
 



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

2023-05-02 Thread Sam James
commit: c34f8fc7542f35c9a0ef63cf09689ce689699814
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:45:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:45:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c34f8fc7

dev-python/rapidfuzz: Stabilize 2.15.1 ppc64, #905599

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

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

diff --git a/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild 
b/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild
index e5e14c3890a9..30a383480e00 100644
--- a/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild
+++ b/dev-python/rapidfuzz/rapidfuzz-2.15.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc 
x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc 
x86"
 
 # all these are header-only libraries
 DEPEND="



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

2023-05-02 Thread Sam James
commit: 97e25a01a8a0492a00cf72e747ce32bcb0f24358
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:45:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:45:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e25a01

sys-apps/accountsservice: Stabilize 23.13.9 ppc64, #905563

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

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

diff --git a/sys-apps/accountsservice/accountsservice-23.13.9.ebuild 
b/sys-apps/accountsservice/accountsservice-23.13.9.ebuild
index d48e69aa8624..b45de29c0c45 100644
--- a/sys-apps/accountsservice/accountsservice-23.13.9.ebuild
+++ b/sys-apps/accountsservice/accountsservice-23.13.9.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz;
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
 
 IUSE="doc elogind gtk-doc +introspection selinux systemd test"
 RESTRICT="!test? ( test )"



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

2023-05-02 Thread Sam James
commit: 3932daec221e14962d1ddcfea059150a702b699c
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:04:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:04:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3932daec

dev-lang/vala: Stabilize 0.56.6 arm, #905505

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

 dev-lang/vala/vala-0.56.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.56.6.ebuild b/dev-lang/vala/vala-0.56.6.ebuild
index eda5c8914ff2..c6821025dd1b 100644
--- a/dev-lang/vala/vala-0.56.6.ebuild
+++ b/dev-lang/vala/vala-0.56.6.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala 
https://gitlab.gnome.org/GNOME/va
 
 LICENSE="LGPL-2.1+"
 SLOT="0.56"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~x86-linux"
 IUSE="test valadoc"
 RESTRICT="!test? ( test )"
 



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

2023-05-02 Thread Sam James
commit: 2620b31bfbb684e83e283e0cbd49f8017e11d798
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 04:04:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 04:04:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2620b31b

dev-lang/vala: Stabilize 0.56.6 x86, #905505

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

 dev-lang/vala/vala-0.56.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/vala/vala-0.56.6.ebuild b/dev-lang/vala/vala-0.56.6.ebuild
index 70072f140f0d..eda5c8914ff2 100644
--- a/dev-lang/vala/vala-0.56.6.ebuild
+++ b/dev-lang/vala/vala-0.56.6.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala 
https://gitlab.gnome.org/GNOME/va
 
 LICENSE="LGPL-2.1+"
 SLOT="0.56"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~x86-linux"
 IUSE="test valadoc"
 RESTRICT="!test? ( test )"
 



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

2023-05-02 Thread Sam James
commit: 470fd326151c1ac6a76dd5718879e14dd7cad6e8
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:56:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:56:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=470fd326

app-text/iso-codes: Stabilize 4.15.0 ppc64, #905531

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

 app-text/iso-codes/iso-codes-4.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/iso-codes/iso-codes-4.15.0.ebuild 
b/app-text/iso-codes/iso-codes-4.15.0.ebuild
index c009579f19fc..0fa886f987b9 100644
--- a/app-text/iso-codes/iso-codes-4.15.0.ebuild
+++ b/app-text/iso-codes/iso-codes-4.15.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://salsa.debian.org/${PN}-team/${PN}/-/archive/v${PV}/${PN}-v${PV}
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 
 BDEPEND="${PYTHON_DEPS}
sys-devel/gettext



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

2023-05-02 Thread Sam James
commit: 769538c27faca70d2691c9dd1c8775b55cab23fa
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:43 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=769538c2

dev-util/glib-utils: Stabilize 2.76.2 hppa, #905520

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

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

diff --git a/dev-util/glib-utils/glib-utils-2.76.2.ebuild 
b/dev-util/glib-utils/glib-utils-2.76.2.ebuild
index b6421d8f57ad..fad9c83163de 100644
--- a/dev-util/glib-utils/glib-utils-2.76.2.ebuild
+++ b/dev-util/glib-utils/glib-utils-2.76.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="LGPL-2.1+"
 SLOT="0" # /usr/bin utilities that can't be parallel installed by their nature
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-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 ~x86-winnt"
+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 ~x86-winnt"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"



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

2023-05-02 Thread Sam James
commit: cf4a8bf566a87084e9fa929211f0b6eb236ceecf
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:46 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4a8bf5

net-libs/glib-networking: Stabilize 2.76.0 ppc64, #905530

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

 net-libs/glib-networking/glib-networking-2.76.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/glib-networking/glib-networking-2.76.0.ebuild 
b/net-libs/glib-networking/glib-networking-2.76.0.ebuild
index 9ab84174eede..143c64f12ba3 100644
--- a/net-libs/glib-networking/glib-networking-2.76.0.ebuild
+++ b/net-libs/glib-networking/glib-networking-2.76.0.ebuild
@@ -12,7 +12,7 @@ LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+gnome +libproxy +ssl test"
 RESTRICT="!test? ( test )"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.73.3:2[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/nm-applet/

2023-05-02 Thread Sam James
commit: 7866e1e2e2ef72bafe9fe9c334dfac54592945f7
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7866e1e2

gnome-extra/nm-applet: Stabilize 1.32.0 ppc64, #905582

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

 gnome-extra/nm-applet/nm-applet-1.32.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild 
b/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild
index e15590f0273e..5a5dacc46e98 100644
--- a/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild
+++ b/gnome-extra/nm-applet/nm-applet-1.32.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="appindicator modemmanager selinux teamd"
-KEYWORDS="~amd64 ~arm arm64 ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~amd64 ~arm arm64 ppc ppc64 ~riscv ~sparc x86"
 
 RDEPEND="
>=dev-libs/glib-2.40:2



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

2023-05-02 Thread Sam James
commit: 656fecdfcbd98c93b6a3d5ec0031a7501b66b845
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=656fecdf

mail-filter/spf-engine: Stabilize 3.0.3 x86, #905608

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

 mail-filter/spf-engine/spf-engine-3.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/spf-engine/spf-engine-3.0.3.ebuild 
b/mail-filter/spf-engine/spf-engine-3.0.3.ebuild
index 2c680c53fd35..c75d4e9aadac 100644
--- a/mail-filter/spf-engine/spf-engine-3.0.3.ebuild
+++ b/mail-filter/spf-engine/spf-engine-3.0.3.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://launchpad.net/spf-engine;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 RDEPEND="dev-python/pyspf[${PYTHON_USEDEP}]
dev-python/authres[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/glibmm/

2023-05-02 Thread Sam James
commit: 6f0cb15987b74b161b5a1ff0eff1ee0d1fdba157
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:47 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0cb159

dev-cpp/glibmm: Stabilize 2.66.6 ppc64, #905537

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

 dev-cpp/glibmm/glibmm-2.66.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/glibmm/glibmm-2.66.6.ebuild 
b/dev-cpp/glibmm/glibmm-2.66.6.ebuild
index 5677f77c6a92..0686f1e20173 100644
--- a/dev-cpp/glibmm/glibmm-2.66.6.ebuild
+++ b/dev-cpp/glibmm/glibmm-2.66.6.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.gtkmm.org 
https://gitlab.gnome.org/GNOME/glibmm;
 
 LICENSE="LGPL-2.1+"
 SLOT="2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="gtk-doc debug test"
 RESTRICT="!test? ( test )"
 



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

2023-05-02 Thread Sam James
commit: 95a95e975fe018fb92f35ae17039e07c4d4aff2e
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a95e97

dev-util/glib-utils: Stabilize 2.76.2 ppc64, #905520

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

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

diff --git a/dev-util/glib-utils/glib-utils-2.76.2.ebuild 
b/dev-util/glib-utils/glib-utils-2.76.2.ebuild
index fad9c83163de..d94a24e0b19e 100644
--- a/dev-util/glib-utils/glib-utils-2.76.2.ebuild
+++ b/dev-util/glib-utils/glib-utils-2.76.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="LGPL-2.1+"
 SLOT="0" # /usr/bin utilities that can't be parallel installed by their nature
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-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 ~x86-winnt"
+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 ~x86-winnt"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gsettings-desktop-schemas/

2023-05-02 Thread Sam James
commit: f81ef047176de5a5b8c09eddbd1599d3d6903297
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f81ef047

gnome-base/gsettings-desktop-schemas: Stabilize 44.0 ppc64, #905569

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

 .../gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild
index 45b006a20cf1..245e1778e29d 100644
--- a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild
+++ b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas;
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+introspection"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
 
 BDEPEND="
introspection? ( >=dev-libs/gobject-introspection-1.54:= )



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgsf/

2023-05-02 Thread Sam James
commit: 1d40be9e5b7768e62d70e11d887bc8337cbe3f93
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d40be9e

gnome-extra/libgsf: Stabilize 1.14.50-r1 ppc64, #90

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

 gnome-extra/libgsf/libgsf-1.14.50-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.50-r1.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.50-r1.ebuild
index a8c0139f025e..4eab52cfc1c7 100644
--- a/gnome-extra/libgsf/libgsf-1.14.50-r1.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.50-r1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="bzip2 gtk +introspection test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gsettings-desktop-schemas/

2023-05-02 Thread Sam James
commit: 57e0d8fa266ae0c16d82a91ef002ed60494c3a98
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57e0d8fa

gnome-base/gsettings-desktop-schemas: Stabilize 44.0 hppa, #905569

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

 .../gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild 
b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild
index a533a6a9c4ad..45b006a20cf1 100644
--- a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild
+++ b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-44.0.ebuild
@@ -11,7 +11,7 @@ 
HOMEPAGE="https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas;
 LICENSE="LGPL-2.1+"
 SLOT="0"
 IUSE="+introspection"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris"
 
 BDEPEND="
introspection? ( >=dev-libs/gobject-introspection-1.54:= )



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

2023-05-02 Thread Sam James
commit: 3ad014b72d858aafba833cbcc19de00f844c8114
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:49 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ad014b7

dev-libs/gjs: Stabilize 1.76.0 ppc64, #905546

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

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

diff --git a/dev-libs/gjs/gjs-1.76.0.ebuild b/dev-libs/gjs/gjs-1.76.0.ebuild
index 80d90027912c..f3704e12d4f8 100644
--- a/dev-libs/gjs/gjs-1.76.0.ebuild
+++ b/dev-libs/gjs/gjs-1.76.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Gjs 
https://gitlab.gnome.org/GNOME/gjs
 LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
 SLOT="0"
 IUSE="+cairo examples readline sysprof test"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
 RESTRICT="!test? ( test )"
 
 RDEPEND="



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

2023-05-02 Thread Sam James
commit: dd9dae67b068ba02ca0c4a68ab368b95ecd7997a
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd9dae67

dev-libs/vala-common: Stabilize 0.56.6 ppc64, #905506

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

 dev-libs/vala-common/vala-common-0.56.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.56.6.ebuild 
b/dev-libs/vala-common/vala-common-0.56.6.ebuild
index 0f02ca20e3b8..2bba314753d4 100644
--- a/dev-libs/vala-common/vala-common-0.56.6.ebuild
+++ b/dev-libs/vala-common/vala-common-0.56.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala 
https://gitlab.gnome.org/GNOME/va
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 
 RDEPEND=""
 DEPEND=""



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

2023-05-02 Thread Sam James
commit: de7fbf8c4463b45761405355de59d27d7f957b26
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7fbf8c

gnome-base/librsvg: Stabilize 2.56.0 ppc64, #905511

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

 gnome-base/librsvg/librsvg-2.56.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/librsvg/librsvg-2.56.0.ebuild 
b/gnome-base/librsvg/librsvg-2.56.0.ebuild
index 8b2d8e172d25..5dd5aaa8a803 100644
--- a/gnome-base/librsvg/librsvg-2.56.0.ebuild
+++ b/gnome-base/librsvg/librsvg-2.56.0.ebuild
@@ -316,7 +316,7 @@ SRC_URI+=" $(cargo_crate_uris ${CRATES})"
 LICENSE="Apache-2.0 BSD CC0-1.0 LGPL-2.1+ MIT MPL-2.0 Unicode-DFS-2016"
 
 SLOT="2"
-KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv sparc x86"
 
 IUSE="gtk-doc +introspection +vala"
 REQUIRED_USE="



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

2023-05-02 Thread Sam James
commit: 3d6f20cc3a5b45573ea3bf125f09b6ef97f15ffa
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d6f20cc

dev-libs/libdispatch: Stabilize 5.7.3 ppc64, #905464

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

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

diff --git a/dev-libs/libdispatch/libdispatch-5.7.3.ebuild 
b/dev-libs/libdispatch/libdispatch-5.7.3.ebuild
index 7ee2a3b5ba55..da9e6411f534 100644
--- a/dev-libs/libdispatch/libdispatch-5.7.3.ebuild
+++ b/dev-libs/libdispatch/libdispatch-5.7.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/apple/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm64 ppc64 ~riscv x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



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

2023-05-02 Thread Sam James
commit: 1df6e915c752f35ebc47a6bd685e3661147962fa
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:40 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df6e915

dev-libs/libgit2: Stabilize 1.6.4 ppc64, #905508

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

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

diff --git a/dev-libs/libgit2/libgit2-1.6.4.ebuild 
b/dev-libs/libgit2/libgit2-1.6.4.ebuild
index 7eff76ef932d..d92033443441 100644
--- a/dev-libs/libgit2/libgit2-1.6.4.ebuild
+++ b/dev-libs/libgit2/libgit2-1.6.4.ebuild
@@ -15,7 +15,7 @@ S=${WORKDIR}/${P/_/-}
 
 LICENSE="GPL-2-with-linking-exception"
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="amd64 arm arm64 ~loong ppc ~ppc64 ~riscv ~s390 sparc x86 ~ppc-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~ppc-macos"
 IUSE="examples gssapi +ssh test +threads trace"
 RESTRICT="!test? ( test )"
 



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

2023-05-02 Thread Sam James
commit: 65d5bf95d765ee46097cccd2a154e503b6308f56
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:38 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65d5bf95

dev-libs/vala-common: Stabilize 0.56.6 hppa, #905506

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

 dev-libs/vala-common/vala-common-0.56.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.56.6.ebuild 
b/dev-libs/vala-common/vala-common-0.56.6.ebuild
index 568e5c28b0c3..0f02ca20e3b8 100644
--- a/dev-libs/vala-common/vala-common-0.56.6.ebuild
+++ b/dev-libs/vala-common/vala-common-0.56.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala 
https://gitlab.gnome.org/GNOME/va
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 
 RDEPEND=""
 DEPEND=""



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

2023-05-02 Thread Sam James
commit: 7e3abb4928f521a7eb10adebdf8d9a8ade7ad235
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e3abb49

app-editors/ghex: Stabilize 44.1 ppc64, #905500

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

 app-editors/ghex/ghex-44.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/ghex/ghex-44.1.ebuild 
b/app-editors/ghex/ghex-44.1.ebuild
index ed57922eb027..5bc774b4b945 100644
--- a/app-editors/ghex/ghex-44.1.ebuild
+++ b/app-editors/ghex/ghex-44.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/ghex.git;
SRC_URI=""
 else
-   KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="GPL-2+ FDL-1.1+"



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

2023-05-02 Thread Sam James
commit: a110c21c9477d44017d6c659c7a65c92ee06
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:36 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a110

dev-libs/vala-common: Stabilize 0.56.7 ppc64, #905504

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

 dev-libs/vala-common/vala-common-0.56.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/vala-common/vala-common-0.56.7.ebuild 
b/dev-libs/vala-common/vala-common-0.56.7.ebuild
index 0f02ca20e3b8..2bba314753d4 100644
--- a/dev-libs/vala-common/vala-common-0.56.7.ebuild
+++ b/dev-libs/vala-common/vala-common-0.56.7.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Vala 
https://gitlab.gnome.org/GNOME/va
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
 
 RDEPEND=""
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/glibmm/

2023-05-02 Thread Sam James
commit: 9c4635219b553c5ec9d819c148bfe7f118091afe
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:35 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c463521

dev-cpp/glibmm: Stabilize 2.76.0 ppc64, #905502

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

 dev-cpp/glibmm/glibmm-2.76.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/glibmm/glibmm-2.76.0.ebuild 
b/dev-cpp/glibmm/glibmm-2.76.0.ebuild
index 0072dc916f32..612a07aef62f 100644
--- a/dev-cpp/glibmm/glibmm-2.76.0.ebuild
+++ b/dev-cpp/glibmm/glibmm-2.76.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.gtkmm.org 
https://gitlab.gnome.org/GNOME/glibmm;
 
 LICENSE="LGPL-2.1+"
 SLOT="2.68"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="gtk-doc debug test"
 RESTRICT="!test? ( test )"
 



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

2023-05-02 Thread Sam James
commit: 5569ea2dabba7bf048c1d7a5c45eaebb3b30694b
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5569ea2d

net-libs/webkit-gtk: Stabilize 2.40.1-r600 ppc64, #905492

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

 net-libs/webkit-gtk/webkit-gtk-2.40.1-r600.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.1-r600.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.40.1-r600.ebuild
index 234c21d774d3..bc6166466047 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.40.1-r600.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.40.1-r600.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="6/0" # soname version of libwebkit2gtk-6.0
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~sparc ~x86"
 
 IUSE="aqua avif examples gamepad gles2-only gnome-keyring +gstreamer 
+introspection pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X"
 REQUIRED_USE="|| ( aqua wayland X )"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-icon-theme/

2023-05-02 Thread Sam James
commit: 7c65550f6b7f5150f67d1818719d36f0dfd2e657
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:31 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c65550f

x11-themes/adwaita-icon-theme: Stabilize 44.0 ppc64, #905494

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

 x11-themes/adwaita-icon-theme/adwaita-icon-theme-44.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-44.0.ebuild 
b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-44.0.ebuild
index b71f6eea7d79..328eaab808a1 100644
--- a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-44.0.ebuild
+++ b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-44.0.ebuild
@@ -17,7 +17,7 @@ LICENSE="
 "
 SLOT="0"
 IUSE="branding"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
 
 # gtk+:3 is needed for build for the gtk-encode-symbolic-svg utility
 # librsvg is needed for gtk-encode-symbolic-svg to be able to read the source 
SVG via



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

2023-05-02 Thread Sam James
commit: f191338900aadeeb5a2dfa4322416d36d1768bff
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1913389

media-gfx/feh: Stabilize 3.9.1-r1 ppc64, #905463

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

 media-gfx/feh/feh-3.9.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/feh/feh-3.9.1-r1.ebuild 
b/media-gfx/feh/feh-3.9.1-r1.ebuild
index b6847b115a45..233e891e2e63 100644
--- a/media-gfx/feh/feh-3.9.1-r1.ebuild
+++ b/media-gfx/feh/feh-3.9.1-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://feh.finalrewind.org/${P}.tar.bz2;
 
 LICENSE="feh"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ppc64 ~riscv x86"
 IUSE="debug curl exif test xinerama inotify"
 RESTRICT="test" # Tests are broken.
 



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

2023-05-02 Thread Sam James
commit: f7b008339e7882a4cd3938236202ced0bc65eab2
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:28 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b00833

media-gfx/gphoto2: Stabilize 2.5.28-r1 ppc64, #905487

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

 media-gfx/gphoto2/gphoto2-2.5.28-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/gphoto2/gphoto2-2.5.28-r1.ebuild 
b/media-gfx/gphoto2/gphoto2-2.5.28-r1.ebuild
index 2346fcb6b3f4..f81afde04a65 100644
--- a/media-gfx/gphoto2/gphoto2-2.5.28-r1.ebuild
+++ b/media-gfx/gphoto2/gphoto2-2.5.28-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/gphoto/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ppc ppc64 ~sparc x86"
 IUSE="aalib ncurses nls readline"
 
 # aalib -> needs libjpeg



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

2023-05-02 Thread Sam James
commit: f160b482cc48f1f6bb70bea1de66ca7f8b65da2c
Author: Sam James  gentoo  org>
AuthorDate: Wed May  3 03:52:24 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May  3 03:52:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f160b482

sys-apps/bubblewrap: Stabilize 0.8.0 ppc64, #905458

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

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

diff --git a/sys-apps/bubblewrap/bubblewrap-0.8.0.ebuild 
b/sys-apps/bubblewrap/bubblewrap-0.8.0.ebuild
index 7fe8b0a40140..756847be4af5 100644
--- a/sys-apps/bubblewrap/bubblewrap-0.8.0.ebuild
+++ b/sys-apps/bubblewrap/bubblewrap-0.8.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/containers/${PN}/releases/download/v${PV}/${P}.tar.x
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86"
 IUSE="selinux suid"
 
 RDEPEND="



[gentoo-commits] repo/proj/guru:dev commit in: games-emulation/dosbox-x/

2023-05-02 Thread Yuan Liao
commit: db1d43aa490ca328ce7c53f19aaaca1974de239a
Author: Yuan Liao  gmail  com>
AuthorDate: Wed May  3 00:50:43 2023 +
Commit: Yuan Liao  gmail  com>
CommitDate: Wed May  3 00:50:43 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=db1d43aa

games-emulation/dosbox-x: Add 2023.05.01

Signed-off-by: Yuan Liao  gmail.com>

 games-emulation/dosbox-x/Manifest  |   1 +
 .../dosbox-x/dosbox-x-2023.05.01.ebuild| 197 +
 2 files changed, 198 insertions(+)

diff --git a/games-emulation/dosbox-x/Manifest 
b/games-emulation/dosbox-x/Manifest
index 906992a36..019ac1981 100644
--- a/games-emulation/dosbox-x/Manifest
+++ b/games-emulation/dosbox-x/Manifest
@@ -1 +1,2 @@
 DIST dosbox-x-v2023.03.31.tar.gz 67926579 BLAKE2B 
d5668bfed2fb05f93364cc0b0886716f919666ce3743d6bd371f55ea280848fc880067d6e2c6b327be606a44e5518ffb0e3c140774ed29a169ddaa9e1da8136c
 SHA512 
376901f7795ba3f98af6b4cb8afc52298065c96e58be3db285dce81f5eb82455a7e7dac00d170aa54a7f83183dae71c7e6951494480cb726239bc22313790733
+DIST dosbox-x-v2023.05.01.tar.gz 68071717 BLAKE2B 
ce03956b9efc3c4470ee811e3062fe66d727946d8355f2a3de42260c21c499cb03cc5079e6a6c9883fdbae48c3b4f7d30dd702834150e2121e6549189a02d082
 SHA512 
2fd1022aff0a5468321f02a611927f5e33b19a87efaca0c298e83fed736379cc1fbe96b05ce61d997fa19b5cc6de95b4bc4697fe3a0ba761e7eea30cb6da4455

diff --git a/games-emulation/dosbox-x/dosbox-x-2023.05.01.ebuild 
b/games-emulation/dosbox-x/dosbox-x-2023.05.01.ebuild
new file mode 100644
index 0..f5c74e3b7
--- /dev/null
+++ b/games-emulation/dosbox-x/dosbox-x-2023.05.01.ebuild
@@ -0,0 +1,197 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools toolchain-funcs xdg
+
+if [[ "${PV}" ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/joncampbell123/dosbox-x.git;
+else
+   
SRC_URI="https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-v${PV}.tar.gz;
+   S="${WORKDIR}/${PN}-${PN}-v${PV}"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="Complete, accurate DOS emulator forked from DOSBox"
+HOMEPAGE="https://dosbox-x.com/;
+
+# Stay consistent with games-emulation/dosbox::gentoo even though source file
+# headers specify the GPL version to be "either version 2 of the License, or
+# (at your option) any later version."  The same header is used in both the
+# DOSBox source tree and the DOSBox-X source tree.
+LICENSE="GPL-2"
+SLOT="0"
+
+IUSE="X debug ffmpeg fluidsynth freetype opengl png slirp"
+# Unit tests are only available in debug builds
+RESTRICT="!debug? ( test )"
+
+BDEPEND="
+   dev-lang/nasm
+   sys-libs/libcap
+"
+
+# Unconditionally pulling in automagically-enabled optional dependencies:
+# - media-libs/alsa-lib
+# - media-libs/sdl2-net
+# - net-libs/libpcap
+#
+# With media-libs/libsdl2[-X,wayland], this package does work on a Wayland
+# desktop, but (at least on GNOME) the program does not launch in a movable
+# and resizable window; whereas with media-libs/libsdl2[X], it does.  Thus,
+# unconditionally require media-libs/libsdl2[X] for better user experience.
+#
+# DOSBox-X works with multiple audio backends of SDL 2 but requires at least
+# one available backend (https://bugs.gentoo.org/901303).  Unconditionally
+# depending on media-libs/libsdl2[alsa] to satisfy this requirement since
+# this ebuild already unconditionally pulls in media-libs/alsa-lib.
+RDEPEND="
+   media-libs/alsa-lib
+   media-libs/libsdl2[X,alsa,opengl?,sound,threads,video]
+   media-libs/sdl2-net
+   net-libs/libpcap
+   sys-libs/zlib
+   X? (
+   x11-libs/libX11
+   x11-libs/libXrandr
+   x11-libs/libxkbfile
+   )
+   debug? ( sys-libs/ncurses:= )
+   ffmpeg? ( media-video/ffmpeg:= )
+   fluidsynth? ( media-sound/fluidsynth:= )
+   freetype? ( media-libs/freetype )
+   opengl? ( media-libs/libglvnd[X] )
+   png? ( media-libs/libpng:= )
+   slirp? ( net-libs/libslirp )
+"
+
+DEPEND="
+   ${RDEPEND}
+"
+
+pkg_pretend() {
+   if use ffmpeg && use !png; then
+   ewarn "Setting the 'ffmpeg' USE flag when the 'png' USE flag is"
+   ewarn "unset does not have any effect.  Unsetting the 'png' USE"
+   ewarn "flag disables the video capture feature, so additional"
+   ewarn "video capture formats enabled by the 'ffmpeg' USE flag"
+   ewarn "will end up being unused."
+   fi
+}
+
+src_prepare() {
+   default
+
+   # https://bugs.gentoo.org/887669
+   # Mask lines touching '-O*', and avoid creating an empty command
+   # list as a result to not break 'if', 'for', or functions
+   sed -i -E -e 's/((C|CXX)FLAGS=.*-O)/: \1/' configure.ac ||
+   die "Failed to stop configure.ac from touching '-O*' compiler 
flags"
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=(
+ 

[gentoo-commits] repo/proj/guru:dev commit in: games-emulation/dosbox-x/

2023-05-02 Thread Yuan Liao
commit: 47268339043ca47d6ac3f4f1a410637263de0cbd
Author: Yuan Liao  gmail  com>
AuthorDate: Wed May  3 00:11:52 2023 +
Commit: Yuan Liao  gmail  com>
CommitDate: Wed May  3 00:11:52 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=47268339

games-emulation/dosbox-x: Drop 2022.12.26-r1

Signed-off-by: Yuan Liao  gmail.com>

 games-emulation/dosbox-x/Manifest  |   1 -
 .../dosbox-x/dosbox-x-2022.12.26-r1.ebuild | 197 -
 2 files changed, 198 deletions(-)

diff --git a/games-emulation/dosbox-x/Manifest 
b/games-emulation/dosbox-x/Manifest
index eaef75815..906992a36 100644
--- a/games-emulation/dosbox-x/Manifest
+++ b/games-emulation/dosbox-x/Manifest
@@ -1,2 +1 @@
-DIST dosbox-x-v2022.12.26.tar.gz 67886370 BLAKE2B 
a748c18bd51833f8532ee76cf30c1bed994458acf56f36be3207c9714678f8e1b4c4fb130aeaa54d5cac39f60484b6aa12a4d59fcd8ce1a7ddbb5d98cede9df7
 SHA512 
18895a3cd9b46a226490f4eda160b92f80e6a9022d22cc192cbf8ddea93803d72b658e9d88ebc3163b93d214389e74f67193e8aac37bf58f7068a1daf68dd550
 DIST dosbox-x-v2023.03.31.tar.gz 67926579 BLAKE2B 
d5668bfed2fb05f93364cc0b0886716f919666ce3743d6bd371f55ea280848fc880067d6e2c6b327be606a44e5518ffb0e3c140774ed29a169ddaa9e1da8136c
 SHA512 
376901f7795ba3f98af6b4cb8afc52298065c96e58be3db285dce81f5eb82455a7e7dac00d170aa54a7f83183dae71c7e6951494480cb726239bc22313790733

diff --git a/games-emulation/dosbox-x/dosbox-x-2022.12.26-r1.ebuild 
b/games-emulation/dosbox-x/dosbox-x-2022.12.26-r1.ebuild
deleted file mode 100644
index 688fc4f58..0
--- a/games-emulation/dosbox-x/dosbox-x-2022.12.26-r1.ebuild
+++ /dev/null
@@ -1,197 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs xdg
-
-if [[ "${PV}" ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/joncampbell123/dosbox-x.git;
-else
-   
SRC_URI="https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-v${PV}.tar.gz;
-   S="${WORKDIR}/${PN}-${PN}-v${PV}"
-   KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="Complete, accurate DOS emulator forked from DOSBox"
-HOMEPAGE="https://dosbox-x.com/;
-
-# Stay consistent with games-emulation/dosbox::gentoo even though source file
-# headers specify the GPL version to be "either version 2 of the License, or
-# (at your option) any later version."  The same header is used in both the
-# DOSBox source tree and the DOSBox-X source tree.
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="X debug ffmpeg fluidsynth freetype opengl png slirp"
-# Unit tests are only available in debug builds
-RESTRICT="!debug? ( test )"
-
-BDEPEND="
-   dev-lang/nasm
-   sys-libs/libcap
-"
-
-# Unconditionally pulling in automagically-enabled optional dependencies:
-# - media-libs/alsa-lib
-# - media-libs/sdl2-net
-# - net-libs/libpcap
-#
-# With media-libs/libsdl2[-X,wayland], this package does work on a Wayland
-# desktop, but (at least on GNOME) the program does not launch in a movable
-# and resizable window; whereas with media-libs/libsdl2[X], it does.  Thus,
-# unconditionally require media-libs/libsdl2[X] for better user experience.
-#
-# DOSBox-X works with multiple audio backends of SDL 2 but requires at least
-# one available backend (https://bugs.gentoo.org/901303).  Unconditionally
-# depending on media-libs/libsdl2[alsa] to satisfy this requirement since
-# this ebuild already unconditionally pulls in media-libs/alsa-lib.
-RDEPEND="
-   media-libs/alsa-lib
-   media-libs/libsdl2[X,alsa,opengl?,sound,threads,video]
-   media-libs/sdl2-net
-   net-libs/libpcap
-   sys-libs/zlib
-   X? (
-   x11-libs/libX11
-   x11-libs/libXrandr
-   x11-libs/libxkbfile
-   )
-   debug? ( sys-libs/ncurses:= )
-   ffmpeg? ( media-video/ffmpeg:= )
-   fluidsynth? ( media-sound/fluidsynth:= )
-   freetype? ( media-libs/freetype )
-   opengl? ( media-libs/libglvnd[X] )
-   png? ( media-libs/libpng:= )
-   slirp? ( net-libs/libslirp )
-"
-
-DEPEND="
-   ${RDEPEND}
-"
-
-pkg_pretend() {
-   if use ffmpeg && use !png; then
-   ewarn "Setting the 'ffmpeg' USE flag when the 'png' USE flag is"
-   ewarn "unset does not have any effect.  Unsetting the 'png' USE"
-   ewarn "flag disables the video capture feature, so additional"
-   ewarn "video capture formats enabled by the 'ffmpeg' USE flag"
-   ewarn "will end up being unused."
-   fi
-}
-
-src_prepare() {
-   default
-
-   # https://bugs.gentoo.org/887669
-   # Mask lines touching '-O*', and avoid creating an empty command
-   # list as a result to not break 'if', 'for', or functions
-   sed -i -E -e 's/((C|CXX)FLAGS=.*-O)/: \1/' configure.ac ||
-   die "Failed to stop configure.ac from touching '-O*' compiler 
flags"
-
-   eautoreconf
-}
-
-src_configure() {
-   local 

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

2023-05-02 Thread Horea Christian
commit: 83e88172628f0f65cf9a3e292eabb9e61a41d2d9
Author: Horea Christian  chymera  eu>
AuthorDate: Wed May  3 00:14:41 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Wed May  3 00:14:41 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=83e88172

dev-python/fslpy: enable py3.11

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

 dev-python/fslpy/fslpy-3.10.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/fslpy/fslpy-3.10.0.ebuild 
b/dev-python/fslpy/fslpy-3.10.0.ebuild
index d25cfb22f..2cc4e60ff 100644
--- a/dev-python/fslpy/fslpy-3.10.0.ebuild
+++ b/dev-python/fslpy/fslpy-3.10.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1 virtualx
 



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

2023-05-02 Thread Horea Christian
commit: af723c19d9d4bb35c43e08113c403896ea7da958
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:57:00 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:57:00 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=af723c19

dev-python/grabbit: enable py3.11

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

 dev-python/grabbit/grabbit-0.2.6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/grabbit/grabbit-0.2.6.ebuild 
b/dev-python/grabbit/grabbit-0.2.6.ebuild
index c7e710a70..722048089 100644
--- a/dev-python/grabbit/grabbit-0.2.6.ebuild
+++ b/dev-python/grabbit/grabbit-0.2.6.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-biology/nilearn/

2023-05-02 Thread Horea Christian
commit: 60179e4c42b383e3e1ccf88abc93d6d1feae267d
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:49:46 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:49:46 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=60179e4c

sci-biology/nilearn: enable py3.11

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

 sci-biology/nilearn/nilearn-0.8.1.ebuild | 4 ++--
 sci-biology/nilearn/nilearn-0.9.1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-biology/nilearn/nilearn-0.8.1.ebuild 
b/sci-biology/nilearn/nilearn-0.8.1.ebuild
index 2592a63fb..65711c867 100644
--- a/sci-biology/nilearn/nilearn-0.8.1.ebuild
+++ b/sci-biology/nilearn/nilearn-0.8.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 

diff --git a/sci-biology/nilearn/nilearn-0.9.1.ebuild 
b/sci-biology/nilearn/nilearn-0.9.1.ebuild
index c14c8f665..63a990451 100644
--- a/sci-biology/nilearn/nilearn-0.9.1.ebuild
+++ b/sci-biology/nilearn/nilearn-0.9.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-libs/nipype/

2023-05-02 Thread Horea Christian
commit: 9c8ae0f75d601b13d193cb0bfd7422498fb38f74
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:54:32 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:54:32 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9c8ae0f7

sci-libs/nipype: enable py3.11

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

 sci-libs/nipype/nipype-1.5.0.ebuild| 4 ++--
 sci-libs/nipype/nipype-1.8.4-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-libs/nipype/nipype-1.5.0.ebuild 
b/sci-libs/nipype/nipype-1.5.0.ebuild
index b590f1095..750c3ba05 100644
--- a/sci-libs/nipype/nipype-1.5.0.ebuild
+++ b/sci-libs/nipype/nipype-1.5.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 PYTHON_REQ_USE="threads(+),sqlite"
 
 inherit distutils-r1

diff --git a/sci-libs/nipype/nipype-1.8.4-r1.ebuild 
b/sci-libs/nipype/nipype-1.8.4-r1.ebuild
index d70509ce1..8214ccff4 100644
--- a/sci-libs/nipype/nipype-1.8.4-r1.ebuild
+++ b/sci-libs/nipype/nipype-1.8.4-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 PYTHON_REQ_USE="threads(+),sqlite"
 
 inherit distutils-r1



[gentoo-commits] proj/sci:master commit in: sci-libs/bids-validator/

2023-05-02 Thread Horea Christian
commit: 76a9eb10f8387f56456bce2bceffe2574bad8d6f
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:56:21 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:56:21 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=76a9eb10

sci-libs/bids-validator: enable py3.11

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

 sci-libs/bids-validator/bids-validator-1.4.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/bids-validator/bids-validator-1.4.4.ebuild 
b/sci-libs/bids-validator/bids-validator-1.4.4.ebuild
index 98d68d25d..a4f7f0340 100644
--- a/sci-libs/bids-validator/bids-validator-1.4.4.ebuild
+++ b/sci-libs/bids-validator/bids-validator-1.4.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-biology/samri/

2023-05-02 Thread Horea Christian
commit: 43640a50ac9001267a0c8d2274213a6be0985ded
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:57:43 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:57:43 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=43640a50

sci-biology/samri: enable py3.11

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

 sci-biology/samri/samri-0.5.3.ebuild | 2 +-
 sci-biology/samri/samri-0.5.4.ebuild | 2 +-
 sci-biology/samri/samri-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-biology/samri/samri-0.5.3.ebuild 
b/sci-biology/samri/samri-0.5.3.ebuild
index d45474603..d6ffd5f1f 100644
--- a/sci-biology/samri/samri-0.5.3.ebuild
+++ b/sci-biology/samri/samri-0.5.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1 prefix

diff --git a/sci-biology/samri/samri-0.5.4.ebuild 
b/sci-biology/samri/samri-0.5.4.ebuild
index d45474603..d6ffd5f1f 100644
--- a/sci-biology/samri/samri-0.5.4.ebuild
+++ b/sci-biology/samri/samri-0.5.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1 prefix

diff --git a/sci-biology/samri/samri-.ebuild 
b/sci-biology/samri/samri-.ebuild
index d45474603..d6ffd5f1f 100644
--- a/sci-biology/samri/samri-.ebuild
+++ b/sci-biology/samri/samri-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 
 inherit distutils-r1 prefix



[gentoo-commits] proj/sci:master commit in: sci-libs/pybids/

2023-05-02 Thread Horea Christian
commit: 10d07ab210cb625b4120362c45bf98e470015dfa
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:57:28 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:57:28 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=10d07ab2

sci-libs/pybids: enable py3.11

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

 sci-libs/pybids/pybids-0.10.2.ebuild | 4 ++--
 sci-libs/pybids/pybids-0.12.4.ebuild | 4 ++--
 sci-libs/pybids/pybids-0.6.5.ebuild  | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sci-libs/pybids/pybids-0.10.2.ebuild 
b/sci-libs/pybids/pybids-0.10.2.ebuild
index 8ddf531e8..5f2776855 100644
--- a/sci-libs/pybids/pybids-0.10.2.ebuild
+++ b/sci-libs/pybids/pybids-0.10.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 

diff --git a/sci-libs/pybids/pybids-0.12.4.ebuild 
b/sci-libs/pybids/pybids-0.12.4.ebuild
index ffc9fad38..7860d69c9 100644
--- a/sci-libs/pybids/pybids-0.12.4.ebuild
+++ b/sci-libs/pybids/pybids-0.12.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1

diff --git a/sci-libs/pybids/pybids-0.6.5.ebuild 
b/sci-libs/pybids/pybids-0.6.5.ebuild
index 47262bccd..6103c3191 100644
--- a/sci-libs/pybids/pybids-0.6.5.ebuild
+++ b/sci-libs/pybids/pybids-0.6.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-biology/nilearn/

2023-05-02 Thread Horea Christian
commit: 850d066a72087bee387e9cd23b615e6f1382e695
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:51:16 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:51:16 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=850d066a

sci-biology/nilearn: update SRC_URI

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

 sci-biology/nilearn/nilearn-0.8.1.ebuild | 2 +-
 sci-biology/nilearn/nilearn-0.9.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-biology/nilearn/nilearn-0.8.1.ebuild 
b/sci-biology/nilearn/nilearn-0.8.1.ebuild
index 65711c867..3064c0ba5 100644
--- a/sci-biology/nilearn/nilearn-0.8.1.ebuild
+++ b/sci-biology/nilearn/nilearn-0.8.1.ebuild
@@ -9,7 +9,7 @@ inherit distutils-r1
 
 DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
 HOMEPAGE="http://nilearn.github.io/;
-SRC_URI="https://github.com/nilearn/nilearn/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/nilearn/nilearn/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"

diff --git a/sci-biology/nilearn/nilearn-0.9.1.ebuild 
b/sci-biology/nilearn/nilearn-0.9.1.ebuild
index 63a990451..425e79444 100644
--- a/sci-biology/nilearn/nilearn-0.9.1.ebuild
+++ b/sci-biology/nilearn/nilearn-0.9.1.ebuild
@@ -9,7 +9,7 @@ inherit distutils-r1
 
 DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
 HOMEPAGE="http://nilearn.github.io/;
-SRC_URI="https://github.com/nilearn/nilearn/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/nilearn/nilearn/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"



[gentoo-commits] proj/sci:master commit in: sci-libs/nipy/

2023-05-02 Thread Horea Christian
commit: 25abe29c72046b3cf1d3b4a1dc617c3bd90c05ac
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:53:24 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:53:24 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=25abe29c

sci-libs/nipy: enable py3.11

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

 sci-libs/nipy/nipy-0.5.1_pre20230103.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/nipy/nipy-0.5.1_pre20230103.ebuild 
b/sci-libs/nipy/nipy-0.5.1_pre20230103.ebuild
index 58deeab11..25bdee0b8 100644
--- a/sci-libs/nipy/nipy-0.5.1_pre20230103.ebuild
+++ b/sci-libs/nipy/nipy-0.5.1_pre20230103.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-libs/labbookdb/

2023-05-02 Thread Horea Christian
commit: cf33dbf17e22d50c865a603f243a346dabea4c26
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:52:37 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:52:37 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=cf33dbf1

sci-libs/labbookdb: enable py3.11

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

 sci-libs/labbookdb/labbookdb-0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-libs/labbookdb/labbookdb-0.1.ebuild 
b/sci-libs/labbookdb/labbookdb-0.1.ebuild
index 9e535ede9..57c90a390 100644
--- a/sci-libs/labbookdb/labbookdb-0.1.ebuild
+++ b/sci-libs/labbookdb/labbookdb-0.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-libs/nibabel/

2023-05-02 Thread Horea Christian
commit: c3df4ab6e2c4549a2d00a05a66d436225291d8b7
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:48:31 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:48:31 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c3df4ab6

sci-libs/nibabel: enable py3.11

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

 sci-libs/nibabel/nibabel-4.0.0.ebuild | 4 ++--
 sci-libs/nibabel/nibabel-5.0.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sci-libs/nibabel/nibabel-4.0.0.ebuild 
b/sci-libs/nibabel/nibabel-4.0.0.ebuild
index 2de1e6dc9..4a24fb940 100644
--- a/sci-libs/nibabel/nibabel-4.0.0.ebuild
+++ b/sci-libs/nibabel/nibabel-4.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1

diff --git a/sci-libs/nibabel/nibabel-5.0.0.ebuild 
b/sci-libs/nibabel/nibabel-5.0.0.ebuild
index 07c2b35fc..0fec805b1 100644
--- a/sci-libs/nibabel/nibabel-5.0.0.ebuild
+++ b/sci-libs/nibabel/nibabel-5.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=hatchling
 
 inherit distutils-r1



[gentoo-commits] proj/sci:master commit in: sci-biology/bruker2nifti/

2023-05-02 Thread Horea Christian
commit: 70928fbfdb98e8afb20c189fc961e650ce04a7ab
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:48:46 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:48:46 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=70928fbf

sci-biology/bruker2nifti: enable py3.11

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

 sci-biology/bruker2nifti/bruker2nifti-1.0.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-biology/bruker2nifti/bruker2nifti-1.0.4.ebuild 
b/sci-biology/bruker2nifti/bruker2nifti-1.0.4.ebuild
index a94c2be48..dc0c49e6f 100644
--- a/sci-biology/bruker2nifti/bruker2nifti-1.0.4.ebuild
+++ b/sci-biology/bruker2nifti/bruker2nifti-1.0.4.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DISTUTILS_USE_SETUPTOOLS="rdepend"
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-libs/nibabel/

2023-05-02 Thread Horea Christian
commit: b35196f8ab2d440e2fe298e7ba947eabe9904de9
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:47:52 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:47:52 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b35196f8

sci-libs/nibabel: drop 3.2.1

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

 sci-libs/nibabel/nibabel-3.2.1.ebuild | 41 ---
 1 file changed, 41 deletions(-)

diff --git a/sci-libs/nibabel/nibabel-3.2.1.ebuild 
b/sci-libs/nibabel/nibabel-3.2.1.ebuild
deleted file mode 100644
index 97adfa2da..0
--- a/sci-libs/nibabel/nibabel-3.2.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_10 )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Access a cacophony of neuro-imaging file formats"
-HOMEPAGE="https://nipy.org/nibabel/;
-SRC_URI="https://github.com/nipy/nibabel/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="dicom"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   dev-python/scipy[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   dicom? (
-   dev-python/pillow[${PYTHON_USEDEP}]
-   sci-libs/pydicom
-   )
-"
-
-BDEPEND="test? (
-   dev-python/pytest-doctestplus[${PYTHON_USEDEP}]
-)"
-
-EPYTEST_DESELECT=(
-   # Re-evaluate after 3.2.1
-   nibabel/gifti/tests/test_parse_gifti_fast.py::test_parse_dataarrays
-)
-
-distutils_enable_sphinx doc/source dev-python/texext dev-python/numpydoc 
dev-python/matplotlib
-distutils_enable_tests pytest



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

2023-05-02 Thread Horea Christian
commit: b06f0456bd9000cb61c8b8fc3d92e5a9b779b6cc
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:45:20 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:45:20 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b06f0456

dev-python/pynrrd: enable py3.11

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

 dev-python/pynrrd/pynrrd-0.4.2.ebuild | 4 ++--
 dev-python/pynrrd/pynrrd-0.4.3.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/pynrrd/pynrrd-0.4.2.ebuild 
b/dev-python/pynrrd/pynrrd-0.4.2.ebuild
index f25908cb3..5cbd173fe 100644
--- a/dev-python/pynrrd/pynrrd-0.4.2.ebuild
+++ b/dev-python/pynrrd/pynrrd-0.4.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 

diff --git a/dev-python/pynrrd/pynrrd-0.4.3.ebuild 
b/dev-python/pynrrd/pynrrd-0.4.3.ebuild
index f25908cb3..5cbd173fe 100644
--- a/dev-python/pynrrd/pynrrd-0.4.3.ebuild
+++ b/dev-python/pynrrd/pynrrd-0.4.3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: app-office/visidata/

2023-05-02 Thread Horea Christian
commit: e87b09289ecf68acfe279ee8327325bde1d8dd67
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:44:13 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:44:13 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e87b0928

app-office/visidata: update SRC_URI

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

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

diff --git a/app-office/visidata/visidata-2.8.ebuild 
b/app-office/visidata/visidata-2.8.ebuild
index bcfbb0d70..62eeb87b5 100644
--- a/app-office/visidata/visidata-2.8.ebuild
+++ b/app-office/visidata/visidata-2.8.ebuild
@@ -10,7 +10,7 @@ inherit distutils-r1 optfeature
 
 DESCRIPTION="Terminal spreadsheet multitool for discovering and arranging data"
 HOMEPAGE="http://visidata.org;
-SRC_URI="https://github.com/saulpw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/saulpw/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"



[gentoo-commits] proj/sci:master commit in: app-office/visidata/

2023-05-02 Thread Horea Christian
commit: 2dcd97d2d096a7399ec53a9c0faadc8039c998b2
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:42:30 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:42:30 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2dcd97d2

app-office/visidata: enable py3.11

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

 app-office/visidata/visidata-2.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-office/visidata/visidata-2.8.ebuild 
b/app-office/visidata/visidata-2.8.ebuild
index f3cf9e123..bcfbb0d70 100644
--- a/app-office/visidata/visidata-2.8.ebuild
+++ b/app-office/visidata/visidata-2.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1 optfeature



[gentoo-commits] proj/sci:master commit in: sci-biology/neuroconv/

2023-05-02 Thread Horea Christian
commit: 116d00a2964bcf136fd7e093bd8ad415a670
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:41:13 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:41:13 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=116d00a2

sci-biology/neuroconv: enable py3.11

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

 sci-biology/neuroconv/neuroconv-0.2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/neuroconv/neuroconv-0.2.4.ebuild 
b/sci-biology/neuroconv/neuroconv-0.2.4.ebuild
index 39046a1a5..c554ce791 100644
--- a/sci-biology/neuroconv/neuroconv-0.2.4.ebuild
+++ b/sci-biology/neuroconv/neuroconv-0.2.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



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

2023-05-02 Thread Sam James
commit: c81ec24be475a4a950db2f783b8edf845b53ed4b
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 23:17:06 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 23:17:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c81ec24b

app-crypt/certbot-nginx: fix pyopenssl dep

This leads to confusing portage output because blockers shouldn't be used
unless there's a file collision. Just >=dep on the latest stable pyopenssl
instead to keep it simple.

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

 .../{certbot-nginx-2.5.0.ebuild => certbot-nginx-2.5.0-r1.ebuild}| 5 +++--
 app-crypt/certbot-nginx/certbot-nginx-.ebuild| 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/app-crypt/certbot-nginx/certbot-nginx-2.5.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-2.5.0-r1.ebuild
similarity index 86%
rename from app-crypt/certbot-nginx/certbot-nginx-2.5.0.ebuild
rename to app-crypt/certbot-nginx/certbot-nginx-2.5.0-r1.ebuild
index 8f87e5994fac..681a2d89b66e 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-2.5.0.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-2.5.0-r1.ebuild
@@ -40,11 +40,12 @@ BDEPEND="
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
 "
 
+# The requirement is really 17.5.0 but easier to require latest stable >= 
23.1.1
+# to avoid broken 23.1.0.
 RDEPEND="
>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
>=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.5.0[${PYTHON_USEDEP}]
-   !~dev-python/pyopenssl-23.1.0[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-23.1.1[${PYTHON_USEDEP}]
>=dev-python/pyparsing-2.2.1[${PYTHON_USEDEP}]
 "
 

diff --git a/app-crypt/certbot-nginx/certbot-nginx-.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-.ebuild
index 8f87e5994fac..681a2d89b66e 100644
--- a/app-crypt/certbot-nginx/certbot-nginx-.ebuild
+++ b/app-crypt/certbot-nginx/certbot-nginx-.ebuild
@@ -40,11 +40,12 @@ BDEPEND="
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
 "
 
+# The requirement is really 17.5.0 but easier to require latest stable >= 
23.1.1
+# to avoid broken 23.1.0.
 RDEPEND="
>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
>=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.5.0[${PYTHON_USEDEP}]
-   !~dev-python/pyopenssl-23.1.0[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-23.1.1[${PYTHON_USEDEP}]
>=dev-python/pyparsing-2.2.1[${PYTHON_USEDEP}]
 "
 



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

2023-05-02 Thread Sam James
commit: d4cb39912b1c9fb8e7a38edfcd15a46970f11f38
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 23:15:56 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 23:15:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4cb3991

app-crypt/acme: fix pyopenssl dep

This leads to confusing portage output because blockers shouldn't be used
unless there's a file collision. Just >=dep on the latest stable pyopenssl
instead to keep it simple.

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

 app-crypt/acme/{acme-2.5.0.ebuild => acme-2.5.0-r1.ebuild} | 6 +++---
 app-crypt/acme/acme-.ebuild| 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-crypt/acme/acme-2.5.0.ebuild 
b/app-crypt/acme/acme-2.5.0-r1.ebuild
similarity index 89%
rename from app-crypt/acme/acme-2.5.0.ebuild
rename to app-crypt/acme/acme-2.5.0-r1.ebuild
index b43f2920af36..37d481febf30 100644
--- a/app-crypt/acme/acme-2.5.0.ebuild
+++ b/app-crypt/acme/acme-2.5.0-r1.ebuild
@@ -43,13 +43,13 @@ BDEPEND="
dev-python/typing-extensions[${PYTHON_USEDEP}]
)
 "
-
+# The requirement is really 17.5.0 but easier to require latest stable >= 
23.1.1
+# to avoid broken 23.1.0.
 RDEPEND="
dev-python/chardet[${PYTHON_USEDEP}]
>=dev-python/cryptography-2.5.0[${PYTHON_USEDEP}]
>=dev-python/josepy-1.13.0[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.5.0[${PYTHON_USEDEP}]
-   !~dev-python/pyopenssl-23.1.0[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-23.1.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
>=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
>=dev-python/requests-2.20.0[${PYTHON_USEDEP}]

diff --git a/app-crypt/acme/acme-.ebuild b/app-crypt/acme/acme-.ebuild
index b43f2920af36..37d481febf30 100644
--- a/app-crypt/acme/acme-.ebuild
+++ b/app-crypt/acme/acme-.ebuild
@@ -43,13 +43,13 @@ BDEPEND="
dev-python/typing-extensions[${PYTHON_USEDEP}]
)
 "
-
+# The requirement is really 17.5.0 but easier to require latest stable >= 
23.1.1
+# to avoid broken 23.1.0.
 RDEPEND="
dev-python/chardet[${PYTHON_USEDEP}]
>=dev-python/cryptography-2.5.0[${PYTHON_USEDEP}]
>=dev-python/josepy-1.13.0[${PYTHON_USEDEP}]
-   >=dev-python/pyopenssl-17.5.0[${PYTHON_USEDEP}]
-   !~dev-python/pyopenssl-23.1.0[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-23.1.1[${PYTHON_USEDEP}]
dev-python/pyrfc3339[${PYTHON_USEDEP}]
>=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
>=dev-python/requests-2.20.0[${PYTHON_USEDEP}]



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

2023-05-02 Thread Horea Christian
commit: ae20906b6e4d9266aa3e6b27e1fe3b0b713c8dee
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:01:32 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:01:32 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ae20906b

dev-vcs/dandi-cli: enable py3.11

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

 dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild | 2 +-
 dev-vcs/dandi-cli/dandi-cli-0.50.0.ebuild | 2 +-
 dev-vcs/dandi-cli/dandi-cli-0.51.0.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild
index 8bbba64e8..3edb80b62 100644
--- a/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild
+++ b/dev-vcs/dandi-cli/dandi-cli-0.49.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1 pypi
 

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.50.0.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.50.0.ebuild
index 8bbba64e8..3edb80b62 100644
--- a/dev-vcs/dandi-cli/dandi-cli-0.50.0.ebuild
+++ b/dev-vcs/dandi-cli/dandi-cli-0.50.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1 pypi
 

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.51.0.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.51.0.ebuild
index e4da9cb75..8cf7c0166 100644
--- a/dev-vcs/dandi-cli/dandi-cli-0.51.0.ebuild
+++ b/dev-vcs/dandi-cli/dandi-cli-0.51.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1 pypi
 



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

2023-05-02 Thread Horea Christian
commit: 73b61e071cbc2ea65a7086bff70d2c9bac434f87
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:59:39 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:59:39 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=73b61e07

dev-python/nwbinspector: drop 0.4.14

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

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

diff --git a/dev-python/nwbinspector/nwbinspector-0.4.14.ebuild 
b/dev-python/nwbinspector/nwbinspector-0.4.14.ebuild
deleted file mode 100644
index 5f5bc2045..0
--- a/dev-python/nwbinspector/nwbinspector-0.4.14.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/zarr_checksum/

2023-05-02 Thread Horea Christian
commit: 38c89cee9dade099d65adf635005e6c16a656557
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:00:54 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:00:54 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=38c89cee

dev-python/zarr_checksum: enable py3.11

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

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

diff --git a/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild 
b/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild
index 47c21433e..58cb87329 100644
--- a/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild
+++ b/dev-python/zarr_checksum/zarr_checksum-0.2.8.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=poetry
 
 inherit distutils-r1 pypi



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

2023-05-02 Thread Horea Christian
commit: 14f235c39a9eeb538021438ebf2841fb866a
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:58:30 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:58:30 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=14f2

dev-python/interleave: enable py3.11

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

 dev-python/interleave/interleave-0.2.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/interleave/interleave-0.2.0.ebuild 
b/dev-python/interleave/interleave-0.2.0.ebuild
index 7dbb9d5c9..ce5f5d50b 100644
--- a/dev-python/interleave/interleave-0.2.0.ebuild
+++ b/dev-python/interleave/interleave-0.2.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2022 Gentoo Authors
+# 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)
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit distutils-r1
 



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

2023-05-02 Thread Horea Christian
commit: ba161beafb05c4395dde619e0106a0c8d93e040d
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:58:50 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:58:50 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba161bea

dev-python/interleave: update SRC_URI

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

 dev-python/interleave/interleave-0.2.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/interleave/interleave-0.2.0.ebuild 
b/dev-python/interleave/interleave-0.2.0.ebuild
index ce5f5d50b..4434b8fdd 100644
--- a/dev-python/interleave/interleave-0.2.0.ebuild
+++ b/dev-python/interleave/interleave-0.2.0.ebuild
@@ -6,11 +6,10 @@ EAPI=8
 DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{10..11} )
 
-inherit distutils-r1
+inherit distutils-r1 pypi
 
 DESCRIPTION="Yield from multiple iterators as values become available"
 HOMEPAGE="https://github.com/jwodder/interleave;
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"



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

2023-05-02 Thread Horea Christian
commit: 9b99b3e8e353dc5225a67d170deeae827cb16171
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:57:05 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:57:05 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=9b99b3e8

dev-python/fscacher: update SRC_URI

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

 dev-python/fscacher/fscacher-0.1.4.ebuild | 2 +-
 dev-python/fscacher/fscacher-0.2.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/fscacher/fscacher-0.1.4.ebuild 
b/dev-python/fscacher/fscacher-0.1.4.ebuild
index 476dcbf5b..50dcd6914 100644
--- a/dev-python/fscacher/fscacher-0.1.4.ebuild
+++ b/dev-python/fscacher/fscacher-0.1.4.ebuild
@@ -8,7 +8,7 @@ inherit distutils-r1
 
 DESCRIPTION="Cache results of operations on heavy file trees"
 HOMEPAGE="https://github.com/con/fscacher;
-SRC_URI="https://github.com/con/fscacher/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/con/fscacher/archive/refs/tags/${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"

diff --git a/dev-python/fscacher/fscacher-0.2.0.ebuild 
b/dev-python/fscacher/fscacher-0.2.0.ebuild
index 91887f218..f466d0675 100644
--- a/dev-python/fscacher/fscacher-0.2.0.ebuild
+++ b/dev-python/fscacher/fscacher-0.2.0.ebuild
@@ -8,7 +8,7 @@ inherit distutils-r1
 
 DESCRIPTION="Cache results of operations on heavy file trees"
 HOMEPAGE="https://github.com/con/fscacher;
-SRC_URI="https://github.com/con/fscacher/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+SRC_URI="https://github.com/con/fscacher/archive/refs/tags/${PV}.tar.gz -> 
${P}.gh.tar.gz"
 
 SLOT="0"
 LICENSE="MIT"



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

2023-05-02 Thread Horea Christian
commit: 4758a9b049b463d8a4b8f9feb84d9fe925e71d95
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:56:14 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:56:14 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=4758a9b0

dev-python/fscacher: enable py3.11

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

 dev-python/fscacher/fscacher-0.1.4.ebuild | 4 ++--
 dev-python/fscacher/fscacher-0.2.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/fscacher/fscacher-0.1.4.ebuild 
b/dev-python/fscacher/fscacher-0.1.4.ebuild
index b15c37615..476dcbf5b 100644
--- a/dev-python/fscacher/fscacher-0.1.4.ebuild
+++ b/dev-python/fscacher/fscacher-0.1.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 inherit distutils-r1
 
 DESCRIPTION="Cache results of operations on heavy file trees"

diff --git a/dev-python/fscacher/fscacher-0.2.0.ebuild 
b/dev-python/fscacher/fscacher-0.2.0.ebuild
index 8bb00f6f4..91887f218 100644
--- a/dev-python/fscacher/fscacher-0.2.0.ebuild
+++ b/dev-python/fscacher/fscacher-0.2.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 inherit distutils-r1
 
 DESCRIPTION="Cache results of operations on heavy file trees"



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

2023-05-02 Thread Horea Christian
commit: 688e26e52b9f0270ce8a96af0893d0794a77c64d
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 23:00:16 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 23:00:16 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=688e26e5

dev-python/nwbinspector: enable py3.11

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

 dev-python/nwbinspector/nwbinspector-0.4.19.ebuild| 2 +-
 dev-python/nwbinspector/nwbinspector-0.4.26-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/nwbinspector/nwbinspector-0.4.19.ebuild 
b/dev-python/nwbinspector/nwbinspector-0.4.19.ebuild
index a80527994..b4b5f7448 100644
--- a/dev-python/nwbinspector/nwbinspector-0.4.19.ebuild
+++ b/dev-python/nwbinspector/nwbinspector-0.4.19.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 inherit distutils-r1
 
 DESCRIPTION="Inspect NWB files for compliance with NWB Best Practices"

diff --git a/dev-python/nwbinspector/nwbinspector-0.4.26-r1.ebuild 
b/dev-python/nwbinspector/nwbinspector-0.4.26-r1.ebuild
index 46f158e0e..271dbfb1d 100644
--- a/dev-python/nwbinspector/nwbinspector-0.4.26-r1.ebuild
+++ b/dev-python/nwbinspector/nwbinspector-0.4.26-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 inherit distutils-r1
 
 DESCRIPTION="Inspect NWB files for compliance with NWB Best Practices"



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

2023-05-02 Thread Horea Christian
commit: 6c3f47bd802cd5b2aa1d504109165eb3536ec8da
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:51:10 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:51:10 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6c3f47bd

dev-python/spikeinterface: enable py3.11

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

 dev-python/spikeinterface/spikeinterface-0.96.1.ebuild | 2 +-
 dev-python/spikeinterface/spikeinterface-0.97.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/spikeinterface/spikeinterface-0.96.1.ebuild 
b/dev-python/spikeinterface/spikeinterface-0.96.1.ebuild
index 6dae8d191..ef6a472f4 100644
--- a/dev-python/spikeinterface/spikeinterface-0.96.1.ebuild
+++ b/dev-python/spikeinterface/spikeinterface-0.96.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 

diff --git a/dev-python/spikeinterface/spikeinterface-0.97.0.ebuild 
b/dev-python/spikeinterface/spikeinterface-0.97.0.ebuild
index 5c4e65481..2a25d4eee 100644
--- a/dev-python/spikeinterface/spikeinterface-0.97.0.ebuild
+++ b/dev-python/spikeinterface/spikeinterface-0.97.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



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

2023-05-02 Thread Horea Christian
commit: fd5f870b524f01cb4a07d395579a2f8ffe9833f9
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:50:04 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:50:04 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=fd5f870b

dev-python/lazy_ops: enable py3.11

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

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

diff --git a/dev-python/lazy_ops/lazy_ops-0.2.0.ebuild 
b/dev-python/lazy_ops/lazy_ops-0.2.0.ebuild
index a873e6b85..d624fb2aa 100644
--- a/dev-python/lazy_ops/lazy_ops-0.2.0.ebuild
+++ b/dev-python/lazy_ops/lazy_ops-0.2.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1 pypi
 



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

2023-05-02 Thread Horea Christian
commit: 739fc168f026262f82aaf6e1e5cedf0b6a74e911
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:53:15 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:53:15 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=739fc168

dev-vcs/dandi-cli: drop 0.48.0

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

 dev-vcs/dandi-cli/dandi-cli-0.48.0.ebuild | 79 ---
 1 file changed, 79 deletions(-)

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.48.0.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.48.0.ebuild
deleted file mode 100644
index 963aacdd4..0
--- a/dev-vcs/dandi-cli/dandi-cli-0.48.0.ebuild
+++ /dev/null
@@ -1,79 +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 pypi
-
-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="$(pypi_sdist_url dandi)"
-
-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}]
-   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
-
-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/anys/

2023-05-02 Thread Horea Christian
commit: 2247defef95a8a5fb1421077d3e46b857a8460ee
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:55:15 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:55:15 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=2247defe

dev-python/anys: enable py3.11

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

 dev-python/anys/anys-0.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/anys/anys-0.2.1.ebuild 
b/dev-python/anys/anys-0.2.1.ebuild
index 659e797cf..88e61a12e 100644
--- a/dev-python/anys/anys-0.2.1.ebuild
+++ b/dev-python/anys/anys-0.2.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_10 )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



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

2023-05-02 Thread Horea Christian
commit: 809af08f9126f72f3e431e54121d252b790efda8
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:52:57 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:52:57 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=809af08f

dev-vcs/dandi-cli: drop 0.46.6

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

 dev-vcs/dandi-cli/dandi-cli-0.46.6.ebuild | 79 ---
 1 file changed, 79 deletions(-)

diff --git a/dev-vcs/dandi-cli/dandi-cli-0.46.6.ebuild 
b/dev-vcs/dandi-cli/dandi-cli-0.46.6.ebuild
deleted file mode 100644
index 963aacdd4..0
--- a/dev-vcs/dandi-cli/dandi-cli-0.46.6.ebuild
+++ /dev/null
@@ -1,79 +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 pypi
-
-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="$(pypi_sdist_url dandi)"
-
-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}]
-   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
-
-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: sci-biology/roiextractors/

2023-05-02 Thread Horea Christian
commit: c7b4a0774a902f099874416c4608c1adfc66f274
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:51:37 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:51:37 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=c7b4a077

sci-biology/roiextractors: enable py3.11

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

 sci-biology/roiextractors/roiextractors-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/roiextractors/roiextractors-0.5.1.ebuild 
b/sci-biology/roiextractors/roiextractors-0.5.1.ebuild
index 06c3ada69..1c2fba6ea 100644
--- a/sci-biology/roiextractors/roiextractors-0.5.1.ebuild
+++ b/sci-biology/roiextractors/roiextractors-0.5.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..10} )
+PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 inherit distutils-r1
 



[gentoo-commits] proj/sci:master commit in: sci-biology/neuroconv/

2023-05-02 Thread Horea Christian
commit: 95e72af97822eef8d7f6273b1f2751b9f4fbb670
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:46:33 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:47:38 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=95e72af9

sci-biology/neuroconv: brought back

This reverts commit 3f8ff1293b126e52932e381d68d6451f65f11229.

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

 sci-biology/neuroconv/metadata.xml   | 21 +++
 sci-biology/neuroconv/neuroconv-0.2.4.ebuild | 56 
 2 files changed, 77 insertions(+)

diff --git a/sci-biology/neuroconv/metadata.xml 
b/sci-biology/neuroconv/metadata.xml
new file mode 100644
index 0..efd00647e
--- /dev/null
+++ b/sci-biology/neuroconv/metadata.xml
@@ -0,0 +1,21 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gen...@chymera.eu
+   Horea Christian
+   
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+   
+   Extracellular electrophysiology 
interfaces
+   Intracellular electrophysiology 
interfaces
+   Optical physiology interfaces
+   
+   
+   catalystneuro/roiextractors
+   roiextractors
+   
+

diff --git a/sci-biology/neuroconv/neuroconv-0.2.4.ebuild 
b/sci-biology/neuroconv/neuroconv-0.2.4.ebuild
new file mode 100644
index 0..39046a1a5
--- /dev/null
+++ b/sci-biology/neuroconv/neuroconv-0.2.4.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..10} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Create NWB files from proprietary formats."
+HOMEPAGE="https://github.com/catalystneuro/neuroconv;
+SRC_URI="https://github.com/catalystneuro/neuroconv/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+ecephys +icephys +ophys"
+
+RDEPEND="
+   dev-python/h5py[${PYTHON_USEDEP}]
+   dev-python/hdmf[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pandas[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pynwb[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   dev-python/tqdm[${PYTHON_USEDEP}]
+   dev-vcs/dandi-cli[${PYTHON_USEDEP}]
+   ecephys? (
+   dev-python/spikeinterface[${PYTHON_USEDEP}]
+   )
+   icephys? (
+   dev-python/neo[${PYTHON_USEDEP}]
+   )
+   ophys? (
+   sci-biology/roiextractors[${PYTHON_USEDEP}]
+   )
+"
+BDEPEND="
+   test? (
+   dev-python/parameterized[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # Additional tests require complex data getting infrastructure, ophys 
tests still have issues:
+   # https://github.com/catalystneuro/neuroconv/issues/305
+   local my_tests=( "tests/test_minimal" )
+   use ecephys && my_tests+=( "tests/test_ecephys" )
+   #use ophys && my_tests+=( "tests/test_ophys" )
+   epytest ${my_tests[*]// /|}
+}



[gentoo-commits] proj/sci:master commit in: sci-biology/roiextractors/

2023-05-02 Thread Horea Christian
commit: 35814c3a44d09456e722c91b6e198be0e6c43b8d
Author: Horea Christian  chymera  eu>
AuthorDate: Tue May  2 22:47:52 2023 +
Commit: Horea Christian  gmail  com>
CommitDate: Tue May  2 22:48:24 2023 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=35814c3a

sci-biology/roiextractors: brought back

This reverts commit 96c132128bcf99351d3feb2e4231e20c9946dba6.

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

 sci-biology/roiextractors/metadata.xml | 16 +
 .../roiextractors/roiextractors-0.5.1.ebuild   | 40 ++
 2 files changed, 56 insertions(+)

diff --git a/sci-biology/roiextractors/metadata.xml 
b/sci-biology/roiextractors/metadata.xml
new file mode 100644
index 0..000a44418
--- /dev/null
+++ b/sci-biology/roiextractors/metadata.xml
@@ -0,0 +1,16 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gen...@chymera.eu
+   Horea Christian
+   
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+   
+   catalystneuro/roiextractors
+   roiextractors
+   
+

diff --git a/sci-biology/roiextractors/roiextractors-0.5.1.ebuild 
b/sci-biology/roiextractors/roiextractors-0.5.1.ebuild
new file mode 100644
index 0..06c3ada69
--- /dev/null
+++ b/sci-biology/roiextractors/roiextractors-0.5.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..10} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Optical imaging data handling from several file formats"
+HOMEPAGE="https://github.com/catalystneuro/roiextractors;
+SRC_URI="https://github.com/catalystneuro/roiextractors/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/h5py[${PYTHON_USEDEP}]
+   dev-python/lazy_ops[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/pynwb[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   dev-python/tqdm[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/parameterized[${PYTHON_USEDEP}]
+   dev-python/spikeinterface[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest tests/test_internals
+}



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

2023-05-02 Thread Sam James
commit: c77e681e08e0b3a5c94a9365b78e97acc59b3945
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 22:53:07 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 22:53:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c77e681e

net-libs/libupnp: Stabilize 1.14.16 ppc, #905621

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

 net-libs/libupnp/libupnp-1.14.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.16.ebuild 
b/net-libs/libupnp/libupnp-1.14.16.ebuild
index 1de4096925e7..d09580808cb1 100644
--- a/net-libs/libupnp/libupnp-1.14.16.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.16.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-release-${PV}"
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~sparc 
x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc +reuseaddr samples +ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl:0= )"



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

2023-05-02 Thread Sam James
commit: 3f2f48424380058c8eaf041392bb55e1aa476db0
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 22:53:08 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 22:53:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f2f4842

net-libs/libupnp: Stabilize 1.14.16 arm, #905621

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

 net-libs/libupnp/libupnp-1.14.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.16.ebuild 
b/net-libs/libupnp/libupnp-1.14.16.ebuild
index d09580808cb1..0aac704dc03b 100644
--- a/net-libs/libupnp/libupnp-1.14.16.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.16.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-release-${PV}"
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~sparc 
x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ~ppc64 ~riscv ~sparc 
x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc +reuseaddr samples +ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl:0= )"



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

2023-05-02 Thread Sam James
commit: 7a7f88afccbdbba4558bcd4a2df550191471269b
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 22:53:04 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 22:53:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a7f88af

net-libs/libupnp: Stabilize 1.14.16 amd64, #905621

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

 net-libs/libupnp/libupnp-1.14.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.16.ebuild 
b/net-libs/libupnp/libupnp-1.14.16.ebuild
index f2542c3b3894..be2eab9bdede 100644
--- a/net-libs/libupnp/libupnp-1.14.16.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.16.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-release-${PV}"
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc +reuseaddr samples +ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl:0= )"



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

2023-05-02 Thread Sam James
commit: 191fbdaf985652a3873a545226a53cc2ad37de41
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 22:50:03 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 22:53:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191fbdaf

dev-libs/libstrophe: avoid maintainer mode b/c of bashisms patch

The bashisms patch touches configure.ac so it causes maintainer mode
in src_compile. Run eautoreconf instead.

Bug: https://bugs.gentoo.org/877049
Bug: https://bugs.gentoo.org/879533
Signed-off-by: Sam James  gentoo.org>

 dev-libs/libstrophe/libstrophe-0.12.2.ebuild | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/dev-libs/libstrophe/libstrophe-0.12.2.ebuild 
b/dev-libs/libstrophe/libstrophe-0.12.2.ebuild
index 712039ac8782..1e4a8b48e633 100644
--- a/dev-libs/libstrophe/libstrophe-0.12.2.ebuild
+++ b/dev-libs/libstrophe/libstrophe-0.12.2.ebuild
@@ -2,6 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
+inherit autotools
+
 DESCRIPTION="A simple, lightweight C library for writing XMPP clients"
 HOMEPAGE="https://strophe.im/libstrophe/;
 # 2nd SRC is a backport of the /bin/sh -> dash fix, #877049, #879533
@@ -34,6 +37,13 @@ PATCHES=(
"${DISTDIR}/${PN}-fix-configure-bashisms.patch"
 )
 
+src_prepare() {
+   default
+
+   # Needed for bashisms patch which touches configure
+   eautoreconf
+}
+
 src_configure() {
# shellcheck disable=SC2207
local myeconf=(
@@ -43,6 +53,7 @@ src_configure() {
)
econf "${myeconf[@]}"
 }
+
 src_compile() {
default
if use doc; then



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

2023-05-02 Thread Sam James
commit: 35f4c20c1d706d6913928db180350e36b7d1772e
Author: Sam James  gentoo  org>
AuthorDate: Tue May  2 22:53:06 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  2 22:53:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35f4c20c

net-libs/libupnp: Stabilize 1.14.16 x86, #905621

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

 net-libs/libupnp/libupnp-1.14.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.14.16.ebuild 
b/net-libs/libupnp/libupnp-1.14.16.ebuild
index be2eab9bdede..1de4096925e7 100644
--- a/net-libs/libupnp/libupnp-1.14.16.ebuild
+++ b/net-libs/libupnp/libupnp-1.14.16.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-release-${PV}"
 
 LICENSE="BSD"
 SLOT="0/17"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~sparc x86 ~amd64-linux"
 IUSE="blocking-tcp debug doc +reuseaddr samples +ssl static-libs"
 
 RDEPEND="ssl? ( dev-libs/openssl:0= )"



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

2023-05-02 Thread Michael Orlitzky
commit: 6cbc79e3ae55e88e98cae951dd0d3514c76b7325
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue May  2 22:45:26 2023 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue May  2 22:48:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cbc79e3

dev-php/smarty: drop 4.2.1

Bug: https://bugs.gentoo.org/903620
Signed-off-by: Michael Orlitzky  gentoo.org>

 dev-php/smarty/Manifest|  1 -
 dev-php/smarty/smarty-4.2.1.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-php/smarty/Manifest b/dev-php/smarty/Manifest
index c323682b9854..bf76715a4a1c 100644
--- a/dev-php/smarty/Manifest
+++ b/dev-php/smarty/Manifest
@@ -1,2 +1 @@
-DIST smarty-4.2.1.tar.gz 236881 BLAKE2B 
4014178cfc4411a9ded3120d0e3e977af0190bc03f6ed21bbd2c484ca8fb4e5aa79fe9c606ee13be87db94c17a00d7d0399cb04fe09c4b439b95bc7b9331d675
 SHA512 
0d55ab1d329aaa0853a1c40b5b0207d3ddc8b0c25d863a217b3c4ac8bb0a796bb60eda2919b5dda569565b03b8dd44dff67b55d8fafc005164f2848bb481d131
 DIST smarty-4.3.1.tar.gz 361248 BLAKE2B 
b09ab14742b9ebdfd1e31ec9d2ac79016ce8869403da67ea241b735875ef25f40c2936a41bda5647ca697b708b91b02a29f5d17ebbc7d6049bf468851f0bc70f
 SHA512 
03a42007fd1c03ba502b7a2255071638e978a54e5d75d4542a033e9f490c7c41587b5593316269107fe904a7b96a1a3337bf9525e038a5bb4051cc9aef13940f

diff --git a/dev-php/smarty/smarty-4.2.1.ebuild 
b/dev-php/smarty/smarty-4.2.1.ebuild
deleted file mode 100644
index 882ec1a65927..
--- a/dev-php/smarty/smarty-4.2.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A template engine for PHP"
-HOMEPAGE="https://www.smarty.net/ https://github.com/smarty-php/smarty/;
-SRC_URI="https://github.com/smarty-php/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~ia64 ppc ppc64 sparc x86"
-
-# PHP unicode support is detected at runtime, and the cached templates
-# that smarty generates depend on it. If, later on, PHP is reinstalled
-# without unicode support, all of the previously-generated cached
-# templates will begin to throw 500 errrors for missing mb_foo
-# functions. See bug #532618.
-RDEPEND="dev-lang/php:*[unicode]"
-
-src_install() {
-   insinto "/usr/share/php/${PN}"
-   doins -r libs/*
-
-   # The smarty docs and examples aren't part of the tarball,
-   # https://github.com/smarty-php/smarty/issues/799
-   local DOCS=( CHANGELOG.md README.md SECURITY.md )
-   einstalldocs
-}
-
-pkg_postinst() {
-   elog "${PN} has been installed in /usr/share/php/${PN}/."
-   elog
-   elog 'To use it in your scripts, include the Smarty.class.php file'
-   elog "from the \"${PN}\" directory; for example,"
-   elog
-   elog "  require('${PN}/Smarty.class.php');"
-   elog
-   elog 'After that, the Smarty class will be available to you.'
-}



  1   2   3   4   5   6   7   >