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

2022-11-23 Thread Jakov Smolić
commit: bbd6fb20b5dac1d4b057d4a008fd0c27a6408988
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Nov 24 06:56:46 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Nov 24 06:56:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd6fb20

media-libs/libheif: drop 1.12.0-r2, 1.12.0-r3

Signed-off-by: Jakov Smolić  gentoo.org>

 media-libs/libheif/Manifest |  1 -
 media-libs/libheif/libheif-1.12.0-r2.ebuild | 78 -
 media-libs/libheif/libheif-1.12.0-r3.ebuild | 89 -
 3 files changed, 168 deletions(-)

diff --git a/media-libs/libheif/Manifest b/media-libs/libheif/Manifest
index 17e4a2f763e6..5338d85a7688 100644
--- a/media-libs/libheif/Manifest
+++ b/media-libs/libheif/Manifest
@@ -1,2 +1 @@
-DIST libheif-1.12.0.tar.gz 1684355 BLAKE2B 
6d84678b39476f2d797d586c6dcaabc9a82351fe3bad536cd90edab16dabf91cbdcdb291195ff45061c7b0ad164748c53f87cbb2dc1e318b2cd458fcba74f644
 SHA512 
9e6f74dd52841a33b6021a1581ab28c56123d927caa7972acd28e90888bbdae983b6d847d20eac7651dacea2193d27eb8df45928cb0774229ef8eea23294
 DIST libheif-1.13.0.tar.gz 1703950 BLAKE2B 
e79af787c514c02f49eb9deb42c9727a4719584d16ebb73b8ab276d9e5452c5463f359a1ace30819466f4dab30db69fec5afa2eefeaadc828e2272e91c7d4cf7
 SHA512 
44cb12ec7191bdf8ef2193c075d5d7a064a7a90c00625e5346624de1ebbedd064601998d042c8336d6c5b2aaef4cd3b439b850d0ab5882daa2e22dcc8722c779

diff --git a/media-libs/libheif/libheif-1.12.0-r2.ebuild 
b/media-libs/libheif/libheif-1.12.0-r2.ebuild
deleted file mode 100644
index 0b5dfbc4051e..
--- a/media-libs/libheif/libheif-1.12.0-r2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools xdg multilib-minimal
-
-if [[ ${PV} == * ]] ; then
-   EGIT_REPO_URI="https://github.com/strukturag/libheif.git";
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"
-HOMEPAGE="https://github.com/strukturag/libheif";
-
-LICENSE="GPL-3"
-SLOT="0/1.12"
-IUSE="+aom gdk-pixbuf go rav1e test +threads x265"
-REQUIRED_USE="test? ( go )"
-RESTRICT="!test? ( test )"
-
-BDEPEND="test? ( dev-lang/go )"
-DEPEND="
-   media-libs/dav1d:=[${MULTILIB_USEDEP}]
-   media-libs/libde265:=[${MULTILIB_USEDEP}]
-   media-libs/libpng:0=[${MULTILIB_USEDEP}]
-   sys-libs/zlib:=[${MULTILIB_USEDEP}]
-   media-libs/libjpeg-turbo:0=[${MULTILIB_USEDEP}]
-   aom? ( >=media-libs/libaom-2.0.0:=[${MULTILIB_USEDEP}] )
-   gdk-pixbuf? ( x11-libs/gdk-pixbuf[${MULTILIB_USEDEP}] )
-   go? ( dev-lang/go )
-   rav1e? ( media-video/rav1e:= )
-   x265? ( media-libs/x265:=[${MULTILIB_USEDEP}] )"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-dav1d-1.0.0.patch
-)
-
-src_prepare() {
-   default
-
-   sed -i -e 's:-Werror::' configure.ac || die
-
-   eautoreconf
-
-   # prevent "stat heif-test.go: no such file or directory"
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   export GO111MODULE=auto
-   local econf_args=(
-   --enable-libde265
-   --disable-static
-   $(multilib_is_native_abi && use go || echo --disable-go)
-   $(use_enable aom)
-   $(use_enable gdk-pixbuf)
-   $(use_enable rav1e)
-   $(use_enable threads multithreading)
-   $(use_enable test tests)
-   $(use_enable x265)
-   )
-   ECONF_SOURCE="${S}" econf "${econf_args[@]}"
-}
-
-multilib_src_test() {
-   default
-   emake -C go test
-}
-
-multilib_src_install_all() {
-   einstalldocs
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/media-libs/libheif/libheif-1.12.0-r3.ebuild 
b/media-libs/libheif/libheif-1.12.0-r3.ebuild
deleted file mode 100644
index 758253791aae..
--- a/media-libs/libheif/libheif-1.12.0-r3.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools xdg multilib-minimal
-
-if [[ ${PV} == * ]] ; then
-   EGIT_REPO_URI="https://github.com/strukturag/libheif.git";
-   inherit git-r3
-else
-   
SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz";
-   KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86"
-fi
-
-DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"
-HOMEPAGE="https://github.com/strukturag/libheif";
-
-LICENSE="GPL-3"
-SLOT="0/1.12"
-IUSE="+aom gdk-pixbuf go rav1e test +threads x265"
-REQUIRED_USE="test? ( go )"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   test? (
-   

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

2022-11-23 Thread Miroslav Šulc
commit: 578c6efbe4b5f81cbdd6de02412a88d9cdf9b27f
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Nov 23 15:14:50 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Nov 24 07:19:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578c6efb

profiles/arch/x86: unmask USE=test on dev-java/jmock

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/28401
Signed-off-by: Miroslav Šulc  gentoo.org>

 profiles/arch/x86/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/x86/package.use.mask 
b/profiles/arch/x86/package.use.mask
index 80f4f0d954d1..a68e233ecfd9 100644
--- a/profiles/arch/x86/package.use.mask
+++ b/profiles/arch/x86/package.use.mask
@@ -14,10 +14,6 @@ media-video/mpv -libplacebo -vulkan
 app-laptop/pbbuttonsd -macbook
 sys-apps/fwupd -dell
 
-# Volkmar W. Pogatzki  (2022-08-09)
-# dev-java/jaxws-api not keyworded
->=dev-java/jmock-2.12.0 test
-
 # Alexey Shvetsov  (2022-09-15)
 # Mask nvml use flag for slurm
 sys-cluster/slurm nvml



[gentoo-commits] repo/gentoo:master commit in: dev-java/icu4j/

2022-11-23 Thread Miroslav Šulc
commit: 13df81c219bb4305227bc2d242c8322f93ba5c38
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Nov 23 14:33:41 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Nov 24 07:19:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13df81c2

dev-java/icu4j: drop 71.1

Closes: https://bugs.gentoo.org/827212
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/icu4j/Manifest  |   1 -
 dev-java/icu4j/icu4j-71.1.ebuild | 203 ---
 2 files changed, 204 deletions(-)

diff --git a/dev-java/icu4j/Manifest b/dev-java/icu4j/Manifest
index 92b640160d2f..764b0abe0d37 100644
--- a/dev-java/icu4j/Manifest
+++ b/dev-java/icu4j/Manifest
@@ -1,2 +1 @@
 DIST icu-72.1.tar.gz 67092974 BLAKE2B 
2261c7969ddbfdb4e75e405646cc9f29b1f8dd21f98641b9318457d3cd27694833a9181f4888d2cb243ba65191fe9216a508684c1dbd5a85f36e06ae8fac7d9e
 SHA512 
fee1278f16528867da63d95feee6864a1f62befa9cc0b006439e1b47cf6f3f0e6581692432129e465208b5bd7fcc44e1175f124e83157547b3d9a78f3a4944ab
-DIST icu4j-71.1.tar.gz 66177851 BLAKE2B 
39c5f6e1a8adc6ee913a7a41dcbf733c1f50e6de3047c0c548bf39426102fccef1a03dd7cb4020bd56b32d0c565848f11cc5ce3f738519dd7d2820a670c40443
 SHA512 
cc9ccb3208d8079c4f8169713aa0ebb930e86cf6c72510a3b7de5824e6482f26166a2e530abaaecfb8338764b23ac215b2921a821167b41d6a3f23952e2718e6

diff --git a/dev-java/icu4j/icu4j-71.1.ebuild b/dev-java/icu4j/icu4j-71.1.ebuild
deleted file mode 100644
index 1b928fc77942..
--- a/dev-java/icu4j/icu4j-71.1.ebuild
+++ /dev/null
@@ -1,203 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom pom.xml --download-uri 
https://github.com/unicode-org/icu/archive/refs/tags/release-70-1.tar.gz --slot 
70 --keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild icu4j-70.1.ebuild
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="com.ibm.icu:icu4j:71.1"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="A set of Java libraries providing Unicode and Globalization 
support"
-HOMEPAGE="https://icu.unicode.org";
-SRC_URI="https://github.com/unicode-org/icu/archive/refs/tags/release-${PV/./-}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="icu"
-SLOT="70"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-DEPEND=">=virtual/jdk-1.8:*
-   test? ( dev-java/junitparams:0 )"
-
-RDEPEND=">=virtual/jre-1.8:*"
-
-S="${WORKDIR}/icu-release-${PV/./-}/icu4j/main"
-
-HTML_DOCS=( ../{APIChangeReport,license,readme}.html )
-
-JAVA_GENTOO_CLASSPATH_EXTRA="icu4j.jar:icu4j-charset.jar:icu4j-localespi.jar:testdata.jar:framework.jar"
-JAVA_TEST_GENTOO_CLASSPATH="junit-4,junitparams"
-JAVA_TEST_EXTRA_ARGS="-Djava.locale.providers=CLDR,COMPAT,SPI"
-
-JAVA_TEST_SRC_DIR=(
-   tests/charset/src
-   tests/collate/src
-   tests/core/src
-#  tests/framework/src # we compile it in src_compile
-   tests/localespi/src
-   tests/packaging/src
-   tests/translit/src
-)
-
-JAVA_TEST_RESOURCE_DIRS=(
-   tests/charset/resources
-   tests/collate/resources
-   tests/core/resources
-#  tests/framework/resources
-   tests/localespi/resources
-   tests/packaging/resources
-   tests/translit/resources
-)
-
-JAVA_TEST_EXCLUDES=(
-   "com.ibm.icu.dev.data.TestDataElements_testtypes" # Invalid test class 
1. No runnable methods
-   "com.ibm.icu.dev.data.resources.TestDataElements_en_Latn_US" # Invalid 
test class 1. No runnable methods
-   "com.ibm.icu.dev.data.resources.TestDataElements_en_US" # Invalid test 
class 1. No runnable methods
-   "com.ibm.icu.dev.data.resources.TestDataElements_fr_Latn_FR" # Invalid 
test class 1. No runnable methods
-   "com.ibm.icu.dev.data.resources.TestDataElements_te" # Invalid test 
class 1. No runnable methods
-   "com.ibm.icu.dev.data.resources.TestMessages" # Invalid test class 1. 
No runnable methods
-   "com.ibm.icu.dev.test.translit.TestUtility" # Invalid test class 1. No 
runnable methods
-   "com.ibm.icu.dev.test.localespi.TestUtil" # Invalid test class 1. No 
runnable methods
-   "com.ibm.icu.dev.test.stringprep.TestData" # Invalid test class 1. No 
runnable methods
-   "com.ibm.icu.dev.test.calendar.ChineseTestCase" # Invalid test class 1. 
Test class should have exactly one public zero-argument constructor
-   "com.ibm.icu.dev.test.calendar.TestCase" # 
java.lang.IllegalArgumentException: Test class can only have one constructor
-   "com.ibm.icu.dev.test.bidi.TestData" # Invalid test class 1. Test class 
should have exactly one public constructor
-   # following kills 98 tests and and avoids 9 test failures
-   # coverage tests fail because test handlers for the parametrized tests 
are not defined so the tests are broken and cannot succeed
-   "com.ibm.icu.dev.test.serializable.CoverageTest"
-)
-
-src_p

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

2022-11-23 Thread Sam James
commit: ec23388563499d3a750850b6c3aa17246ac85ca1
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 24 03:13:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 24 07:20:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec233885

profiles/base: mask net-libs/libproxy[spidermonkey], depends on older SM

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

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 22c100eed3b0..700a074c247c 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -6,6 +6,11 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Sam James  (2022-11-24)
+# Depends on old dev-lang/spidermonkey:68, bug #807772
+# Particularly unwise given it parses data from network.
+net-libs/libproxy spidermonkey
+
 # Pascal Jäger  (2022-11-24)
 # Metamail last rited
 app-text/crm114 mimencode



[gentoo-commits] repo/gentoo:master commit in: net-libs/libproxy/, net-libs/libproxy/files/

2022-11-23 Thread Sam James
commit: 6633430d22c6a5049c8a2709b914d09efdb55453
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 24 03:12:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 24 07:20:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6633430d

net-libs/libproxy: drop 0.4.17-r1

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

 net-libs/libproxy/Manifest |  1 -
 .../files/libproxy-0.4.10-disable-pac-test.patch   | 29 
 .../files/libproxy-0.4.16-avoid-nm-build-dep.patch | 87 --
 .../libproxy/files/libproxy-0.4.17-mozjs.patch | 15 
 net-libs/libproxy/libproxy-0.4.17-r1.ebuild| 83 -
 5 files changed, 215 deletions(-)

diff --git a/net-libs/libproxy/Manifest b/net-libs/libproxy/Manifest
index 6d388cb8b367..a92c1f4d02d5 100644
--- a/net-libs/libproxy/Manifest
+++ b/net-libs/libproxy/Manifest
@@ -1,2 +1 @@
-DIST libproxy-0.4.17.tar.gz 95542 BLAKE2B 
70b78c90aebb0ea308d105ec6d2c61bb54dea36df2d99db835f29c6ffa91168c15e73e01823b799a37fa89a9cb6fca51013ea057006b608fa2a79f4056a5d3c5
 SHA512 
589045538a78dc7453335ed61c60adad3352b840b224885d4a58ae284e52224ae3ff2eebd77df57aebbc3ae75d7b6d69a825f24f01c19e75bf0a3345dce53126
 DIST libproxy-0.4.18.tar.gz 98037 BLAKE2B 
12505cc7afe9ca27bb387df31d7368ed3ac83696255e6bd8fdbca1528fb6fe83510cdf7c6bda09939dcb55daefba24cf9c52435f664c6cba01daad87ddff3f2a
 SHA512 
1148d688a9f070273a1a2b110a788561789799089660292bbba59fbf0a9caf7d28cb039a9ccdcb935f752e1e34739b2d2f4c784b1bb3bbaa03d108e7b38a4754

diff --git a/net-libs/libproxy/files/libproxy-0.4.10-disable-pac-test.patch 
b/net-libs/libproxy/files/libproxy-0.4.10-disable-pac-test.patch
deleted file mode 100644
index 91658574134e..
--- a/net-libs/libproxy/files/libproxy-0.4.10-disable-pac-test.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 5a1a8d2b920006e54d9de971999b443073f50843 Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev 
-Date: Tue, 16 Oct 2012 03:30:50 -0400
-Subject: [PATCH] Disable PAC test
-
-get-pac-test freezes when run from the ebuild, but succeeds when
-building manually. Using Xemake/virtualx.eclass doesn't seem to help.

- libproxy/test/CMakeLists.txt | 7 ---
- 1 file changed, 7 deletions(-)
-
-diff --git a/libproxy/test/CMakeLists.txt b/libproxy/test/CMakeLists.txt
-index 8894425..69543a4 100644
 a/libproxy/test/CMakeLists.txt
-+++ b/libproxy/test/CMakeLists.txt
-@@ -17,10 +17,3 @@ if(WIN32)
-   target_link_libraries(url-encode ws2_32)
- endif()
- add_test(NAME url-encode COMMAND ${CMAKE_CURRENT_BINARY_DIR}/url-encode)
--
--# Get PAC
--if (NOT WIN32)
--add_executable(get-pac-test ${CMAKE_CURRENT_SOURCE_DIR}/get-pac-test.cpp 
${PROJECT_SOURCE_DIR}/url.cpp)
--target_link_libraries(get-pac-test pthread)
--add_test(NAME get-pac-test COMMAND ${CMAKE_CURRENT_BINARY_DIR}/get-pac-test)
--endif()
--- 
-1.7.12.3
-

diff --git a/net-libs/libproxy/files/libproxy-0.4.16-avoid-nm-build-dep.patch 
b/net-libs/libproxy/files/libproxy-0.4.16-avoid-nm-build-dep.patch
deleted file mode 100644
index a50bcc130cc7..
--- a/net-libs/libproxy/files/libproxy-0.4.16-avoid-nm-build-dep.patch
+++ /dev/null
@@ -1,87 +0,0 @@
-https://github.com/libproxy/libproxy/issues/28
-
-From 703ac16ea2b508dc16d433b3fd597fcd496d05c1 Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev 
-Date: Mon, 29 Apr 2013 23:02:25 -0400
-Subject: [PATCH] Avoid build-time dependency on NetworkManager
-
-Needed to prevent a dependency loop:
-nm -> libsoup -> glib-networking -> libproxy -> nm
-
-https://bugs.gentoo.org/467696
-
-* ast...@gentoo.org: Rebased on top of 0.4.15
-  also revert 423801295921ab1ec0d98565fcbc2635088d45da
-* s...@gentoo.org: Rebased on top of 0.4.16
-  (same revert included)

- libproxy/cmake/modules.cmk|  6 ++---
- .../cmake/modules/network_networkmanager.cmk  |  5 +---
- libproxy/modules/network_networkmanager.cpp   | 23 ++-
- 3 files changed, 21 insertions(+), 13 deletions(-)
-
-diff --git a/libproxy/cmake/modules.cmk b/libproxy/cmake/modules.cmk
-index 11d2d43..cc2b58f 100644
 a/libproxy/cmake/modules.cmk
-+++ b/libproxy/cmake/modules.cmk
-@@ -40,10 +40,10 @@ px_module(config_w32reg"${WIN32}"1)
- px_module(ignore_domain1 1)
- px_module(ignore_hostname  1 1)
- px_module(ignore_ip1 1)
--if(NM_FOUND OR NMold_FOUND)
-+if(NM_FOUND)
-   set(NM_BUILD 1)
--endif(NM_FOUND OR NMold_FOUND)
--px_module(network_networkmanager   "${NM_BUILD}" 0   
${NM_LIBRARIES}${NMold_LIBRARIES})
-+endif(NM_FOUND)
-+px_module(network_networkmanager   "${NM_BUILD}" 0   ${NM_LIBRARIES})
- px_module(pacrunner_mozjs  0 ${BIPR} 
${MOZJS_LIBRARIES})
- px_module(pacrunner_natus  "${NATUS_FOUND}"  ${BIPR} 
${NATUS_LIBRARIES})
- px_module(pacrunner_webkit "${WEBKIT_FOUND}" ${BIPR} 
${WEBKIT_LIBRARIES})
-diff --git a/libproxy/cmake/modules/ne

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

2022-11-23 Thread Sam James
commit: 901acc0c32ffdbcd6f7dad926bd7ae215f59f32c
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 24 07:06:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 24 07:20:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901acc0c

dev-libs/mpfr: add 4.1.1_p1, drop 4.1.1-r1

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

 dev-libs/mpfr/Manifest |  1 +
 .../mpfr-4.1.1-fix-mpfr_custom_get_kind.patch  | 79 --
 .../{mpfr-4.1.1-r1.ebuild => mpfr-4.1.1_p1.ebuild} |  1 -
 3 files changed, 1 insertion(+), 80 deletions(-)

diff --git a/dev-libs/mpfr/Manifest b/dev-libs/mpfr/Manifest
index 98c281833584..979db7ba2241 100644
--- a/dev-libs/mpfr/Manifest
+++ b/dev-libs/mpfr/Manifest
@@ -12,4 +12,5 @@ DIST mpfr-4.1.0-patch11.patch 4584 BLAKE2B 
4ba240e7e8acc360eb2f05186493fd9044c8f
 DIST mpfr-4.1.0-patch12.patch 6768 BLAKE2B 
15ce68eb9941ac5d6544ee18a062cb12026e07273a5424b3941596a1024f54cf5481363e145cac9375e518ec2033db82d4fe9152884c74a9037a81fd2c405b5e
 SHA512 
4e91cffa0df911d68931ace13e86e420ec9f7d8e8a0279e12d995bbf8061b6bec90cb03ef8642a854f652907b13e533b7afb95f2279cf2dfa4010ec5d745ac3c
 DIST mpfr-4.1.0-patch13.patch 3344 BLAKE2B 
1239cf16dfe32a71bb6fc7b156978cd451bcbe4e1b04842fdb3549352a43607d44d58120e38bf448ffd33e36bab7f7cfd4ab65b2eb3aac2fe9bbd86d8f425f5a
 SHA512 
ddd5f54d12584b6e10fd4eba12b8568c5286dba10bd3b5cdd429415b78bc827bd0ed3957bd06ca4c2c63a2f5e877fd9d86eebade8929d61aafe84ace8454d016
 DIST mpfr-4.1.0.tar.xz 1525476 BLAKE2B 
41d1be0c4b557760f12a4525ad3a84b6e2cd6f0927c935fcfba577ac0490e582d1ae4b581dce58e21e705cf9d7c88373054d7fb7a94bb32c69b339f99a25dc68
 SHA512 
1bd1c349741a6529dfa53af4f0da8d49254b164ece8a46928cdb13a99460285622d57fe6f68cef19c6727b3f9daa25ddb3d7d65c201c8f387e421c7f7bee6273
+DIST mpfr-4.1.1-patch01.patch 2985 BLAKE2B 
d6bed1d6fca2319db457096a81aca060c1bd934fcdf9c5f98ba44920a7e97c2a5e9c539ec554feb723fb98c84096e1cb615c0d973133c67f3c2097edc1c5b803
 SHA512 
aa98173d59a24d0f59acff0c2143db5623746db3f6445e300a018a124b35a6b57d631c357a9a890f23c748591f621a95d3a801bed7341b6c8b6ddcc86ecfb107
 DIST mpfr-4.1.1.tar.xz 1429836 BLAKE2B 
ce20baee2f060acb28b877ffe6fc40c5619cf6af231bd54ca6cfb3e42ef2d74a4ffbab96cf0b5dd6a162e558099a54701d42f34f5bf2256f256fe6f5ae2505d0
 SHA512 
be468749bd88870dec37be35e544983a8fb7bda638eb9414c37334b9d553099ea2aa067045f51ae2c8ab86d852ef833e18161d173e414af0928e9a438c9b91f1

diff --git a/dev-libs/mpfr/files/mpfr-4.1.1-fix-mpfr_custom_get_kind.patch 
b/dev-libs/mpfr/files/mpfr-4.1.1-fix-mpfr_custom_get_kind.patch
deleted file mode 100644
index d2521f2fa632..
--- a/dev-libs/mpfr/files/mpfr-4.1.1-fix-mpfr_custom_get_kind.patch
+++ /dev/null
@@ -1,79 +0,0 @@
-https://bugs.gentoo.org/881995
-https://gitlab.inria.fr/mpfr/mpfr/-/commit/3cd39bc0b71ad2fb2ab5252ad9268b14603e3ce6
-https://gitlab.inria.fr/mpfr/mpfr/-/issues/1
-https://github.com/CGAL/cgal/issues/7064
-
-From 3cd39bc0b71ad2fb2ab5252ad9268b14603e3ce6 Mon Sep 17 00:00:00 2001
-From: Vincent Lefevre 
-Date: Tue, 22 Nov 2022 16:33:00 +0100
-Subject: [PATCH] Fix mpfr_custom_get_kind() macro bug.
-
-* src/mpfr.h: in the mpfr_custom_get_kind() macro, changed mpfr_ptr to
-  mpfr_srcptr for _x to agree with the function prototype, in order to
-  avoid a compilation failure of user code in some cases. This bug was
-  introduced by commit 9f94e0311ed53d0c64d4fbca249d19cc4888027e, which
-  introduced the temporary variable _x to avoid an incorrect number of
-  evaluations of the x argument.
-* tests/tstckintc.c: improved the tests to detect this bug.
-
-This should fix mpfr bug #1.
-
-Bug initially reported by FX Coudert:
-  https://github.com/CGAL/cgal/issues/7064
-
-It affects Fedora Linux:
-  https://bugzilla.redhat.com/show_bug.cgi?id=2144197
-
-(cherry picked from commit 0ce17bae34a6c54de31b126f969d3ddd72c6bc37)
 a/src/mpfr.h
-+++ b/src/mpfr.h
-@@ -1027,7 +1027,7 @@ __MPFR_DECLSPEC int mpfr_total_order_p (mpfr_srcptr, 
mpfr_srcptr);
- #if __GNUC__ > 2 || __GNUC_MINOR__ >= 95
- #define mpfr_custom_get_kind(x) \
-   __extension__ ({  \
--mpfr_ptr _x = (x);  \
-+mpfr_srcptr _x = (x);   \
- _x->_mpfr_exp >  __MPFR_EXP_INF ?   \
-   (mpfr_int) MPFR_REGULAR_KIND * MPFR_SIGN (_x) \
-   : _x->_mpfr_exp == __MPFR_EXP_INF ?   \
 a/tests/tstckintc.c
-+++ b/tests/tstckintc.c
-@@ -295,14 +295,16 @@ static void
- test_nan_inf_zero (void)
- {
-   mpfr_ptr val;
-+  mpfr_srcptr sval;  /* for compilation error checking */
-   int sign;
-   int kind;
- 
-   reset_stack ();
- 
-   val = new_mpfr (MPFR_PREC_MIN);
-+  sval = val;
-   mpfr_set_nan (val);
--  kind = (mpfr_custom_get_kind) (val);
-+  kind = (mpfr_custom_get_kind) (sval);

[gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/files/, dev-lang/spidermonkey/

2022-11-23 Thread Sam James
commit: c971a7deb51fd332abae53ae2dd3d37232e13750
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 24 03:14:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 24 07:20:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c971a7de

dev-lang/spidermonkey: drop 68.12.0-r1

Signed-off-by: Sam James  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/28407
Signed-off-by: Sam James  gentoo.org>

 dev-lang/spidermonkey/Manifest |   3 -
 .../spidermonkey-68.0-add-riscv-support.patch  | 107 
 .../files/spidermonkey-68.0-loong-support.patch| 103 
 .../spidermonkey/spidermonkey-68.12.0-r1.ebuild| 273 -
 4 files changed, 486 deletions(-)

diff --git a/dev-lang/spidermonkey/Manifest b/dev-lang/spidermonkey/Manifest
index b1f9a6224d7b..fd5d7d56691a 100644
--- a/dev-lang/spidermonkey/Manifest
+++ b/dev-lang/spidermonkey/Manifest
@@ -1,14 +1,11 @@
 DIST firefox-102.4.0esr.source.tar.xz 482118312 BLAKE2B 
dadb293edf4df20da5345aab6845ca9da8143a966b38d3660ea8ebc4f24ecab72097ba4345d30895907c83895883379867437f8097b86af4e7e0e691da551793
 SHA512 
30d9e6ef04fd86516e2cea3c797ec99af4c96b08576bb3409c0026da4fd1218167f89a007109e1fa4e2571f98f2dbe5ab58a26473533d45301f75b90ec3dbf28
 DIST firefox-102.5.0esr.source.tar.xz 478705384 BLAKE2B 
ee005b0e75151e39a9f34ab38a7a704a1f2efd4fe33bacb6a604a8a6ce8727210d0794b81e03e448d5baa2be264a7150728aac4f5b86d0a5154d549abf0c75ac
 SHA512 
f4e105209c61e9537ddc90afdb05ede0a31caceb9b164d96276c811abbd646d14bc246c00caa386c0b0561055096d30b298329c69270dd085b943bdbc3a91a13
 DIST firefox-102esr-patches-04j.tar.xz 21860 BLAKE2B 
1cc1d6493912f85e71cb5a0ec2c3196cda203242f3503bb6ce8c23a93e71a6e8b1138f88498a6a9698066134cc234989b35cb378693fb2cbc9ba4caa8d66761d
 SHA512 
9f7188dd79b9856826ae2a60b0109c2c86c60c10b03cd1828a9f7a7576df5c49ed3e11e4d3319d80e117204d6bc3408e375a62ad16ec8d2e53f999cd298811d8
-DIST firefox-68.0-patches-15.tar.xz 16060 BLAKE2B 
f9e6cd58ea51bed1af90a9d30fd551dc7e939afcd1b4d00de1271bd4bda94021c6f1799fd9945962c14ffa1fd0b6a6429369c4e45efc2000f179b9b2e46971e7
 SHA512 
9cb2479637dd8b84e0ab68dc0fe144acd2dc74feca282fd3c4b485ca6f0de8190244587622713a5421b243ccda153f738e9a8f463e87e15e93e9b725d943e128
-DIST firefox-68.12.0esr.source.tar.xz 313856956 BLAKE2B 
eeaa4acc9fabf15ec1b313170a30cee8e1fc10a8b08512b915b83b7d6a81c09b365733ed94638bd434864fd7b0cb8cbf1bc2e43441be69e31117e8e6a099234c
 SHA512 
839b02422e4c87bdb12e0995cd35ca8c1996f3fba00bbb46b419e46b67df5ec48a264cb14632db777ce29166ee4fdcb06e2ee3ce847e64328c58c9a2f9129f4c
 DIST firefox-78.15.0esr.source.tar.xz 330819568 BLAKE2B 
dc8785613c2f72c55d484642c89c2545765a9efbd609bc7c2cf57b4a3a06a2ea22e6959e42b5b8af867db782e8b2097a67dec858796b744e47008a8e575e2316
 SHA512 
ac3de735b246ce4f0e1619cd2664321ffa374240ce6843e785d79a350dc30c967996bbcc5e3b301cb3d822ca981cbea116758fc4122f1738d75ddfd1165b6378
 DIST firefox-78esr-patches-19.tar.xz 88424 BLAKE2B 
fdc7bf8f28b3e799551a70f1cec7a695f52c4712f3b28733648fcd7dac5a599613f4c3d2cfa169266dc62b65619b7f28c0e06d32317adb8ec0056ca79c87e9f6
 SHA512 
3c81dadc9bf74207c4e361605127ef6141d77700c5c54f1f9cd5ad3be13df9f73c6eec2f51d779558e4bdad1e7395c6aa8943a93415bd1786d461042bc03550a
 DIST firefox-91.11.0esr.source.tar.xz 384459848 BLAKE2B 
cff327378a1712d0dfb99e1a67bd63e958987e3147279af5f98ee9318fe91f42823bbc9afb0308638e42de789451b04ea895320a8c674cc221e0d4b0b1d80f38
 SHA512 
bff3a399c03bd1cdaaec0b6963b1558aa35b6338b6c02042ffd65fec0aedd344d01718692e881332f5f352c32da15ba09a20a09ee072200b47ae840bc0585a96
 DIST firefox-91.13.0esr.source.tar.xz 380053584 BLAKE2B 
75d0daa512b3a2d41974a0169778be9ef19a100de2bd382add9831860ca93976585a41e760b6a7ec753268fb78f9f61049780fa7961834248bc8157cfdcc2827
 SHA512 
38b4cc52de21e76d6061e6ba175e1cbfd888a16070aa951f5a44283f2db9d7e94f2504621f0da78feac6e71491a6d0e7038f63dd0ae112dcad700eb02e9aa516
 DIST firefox-91esr-patches-10j.tar.xz 18320 BLAKE2B 
ec882411eed19bafab8676e3d79f4ae43947bb97c44571c1497bb93a44fcfec99de06ebacbdf8c4944dcecdf949e4f684908d7ce4226cdcec60241e62e75810e
 SHA512 
670a14d852bb74b9074c3fef9310650f71ce1c56314109c49aea02a7a69acc836af60a8beab11da53e21b10a8e6da341fcfa18b68a1dfd33b26978dd63758e9c
 DIST spidermonkey-102-patches-04j.tar.xz 3996 BLAKE2B 
468697521adacc5d647b04f2228fc4c1a8131bc2523142f2d57f32e321303581ae8f793baae48966ecb27f48bf77eb084f7b2df1c1a0c667e9ed59ae93d786e6
 SHA512 
201bb779e2373cc00dfadc29a62b593030dfc12eec076114b92927f29f476d3fafdd056112dd1bb1f19f82827f4fe1252141e3998bec719e4196737a316d4ef2
-DIST spidermonkey-68.6.0-patches-04.tar.xz 5956 BLAKE2B 
b1250391a5173e676272d5926b710c06b0e9de1ff03b130a57fdac30f2deefbee3fa92250b37e28087572fe5cce73eb112ef4e1fb0c0401d6ecdb22ab9868998
 SHA512 
94575b11b4f006c6ee0c8d64b315734a173cecb68e9128ca61ba1a28177e3c149b8cf1f3b3c47a7a263fad8da6196fc0101df87392f016686a827e0cd24fdc74
 DIST spidermonkey-78-patches-04.tar.xz 3408 BLAKE2B 
f2fdd4882e1e4de1908c458dc8dfedd5665ef7118f19704dabf2b2a80e2fae48813e9bc3d0c3410287e32c21e3f

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

2022-11-23 Thread Miroslav Šulc
commit: 36093a67f193452dd82931199b38e3cd6d2b5ba3
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Nov 24 07:23:03 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Nov 24 07:23:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36093a67

media-libs/liblscp: dropped obsolete 0.9.7

Bug: https://bugs.gentoo.org/882599
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/liblscp/Manifest |  1 -
 media-libs/liblscp/liblscp-0.9.6.ebuild | 37 -
 2 files changed, 38 deletions(-)

diff --git a/media-libs/liblscp/Manifest b/media-libs/liblscp/Manifest
index aead3ca6b494..1c744c9bb633 100644
--- a/media-libs/liblscp/Manifest
+++ b/media-libs/liblscp/Manifest
@@ -1,2 +1 @@
-DIST liblscp-0.9.6.tar.gz 100811 BLAKE2B 
a86a5e9e6d52dfd2449274e1c800e40887094dcea3e39d257670dded8b3805f2cdf575b41f640b0df95cd008656d3e7c8ca93d5bc5360c8727b80d6d2695ed83
 SHA512 
51c3b0b3dfe3947ac5d7cfec18fec597a4282aacc489cdda5a30d5853c3a43778e207ddf2f211c28ba04386fd6f30a09eed62dc2a33177e5aeccd7f77b4ef520
 DIST liblscp-0.9.7.tar.gz 98364 BLAKE2B 
8ea8d05f7753db3dc3210e3faaa60d7f0e7fab558948a7e687b60b728f00ca557a08594f72beb0823e14c4eb3d4ec0aa75bb802194a4b9e660546c462196553a
 SHA512 
03b83962ea89bbf4ca6b76c71f4883c7621a7306383bbd53f6240d7f17838cfa89c2861aa169f789754f6067fe76866068b26ab1370a0c2fafbf0f660894a4ad

diff --git a/media-libs/liblscp/liblscp-0.9.6.ebuild 
b/media-libs/liblscp/liblscp-0.9.6.ebuild
deleted file mode 100644
index a68cc47b641b..
--- a/media-libs/liblscp/liblscp-0.9.6.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="C++ library for the Linux Sampler control protocol"
-HOMEPAGE="https://www.linuxsampler.org";
-
-if [[ ${PV} == "" ]] ; then
-   inherit subversion
-   ESVN_REPO_URI="https://svn.linuxsampler.org/svn/liblscp/trunk";
-else
-   SRC_URI="https://www.rncbc.org/archive/${P}.tar.gz
-   https://download.linuxsampler.org/packages/${P}.tar.gz";
-   KEYWORDS="amd64 ~ppc x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="doc"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.9.6-conditional.patch"
-)
-
-DOCS=( ChangeLog README )
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_DOC=$(usex doc)
-   )
-   cmake_src_configure
-}



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

2022-11-23 Thread Miroslav Šulc
commit: 3bce6dd56afa037c71929bca379d251df30aa5fa
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Nov 24 07:28:14 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Nov 24 07:28:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bce6dd5

media-sound/picard: bump to 2.8.4

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/picard/Manifest|  1 +
 media-sound/picard/picard-2.8.4.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-sound/picard/Manifest b/media-sound/picard/Manifest
index 63f5b4897190..1cdcbc8faed4 100644
--- a/media-sound/picard/Manifest
+++ b/media-sound/picard/Manifest
@@ -1 +1,2 @@
 DIST picard-2.8.3.tar.gz 5098160 BLAKE2B 
5f7290de8faee502f3a4984e0080409a31f9971428da635fb79a9f2ec540d71a256584010d747de77c86e85cd58df929e8ddaa09840ebc2c17e5cdbb035c5d68
 SHA512 
b87e768f0f13e1e306279f71004b5ffaebb2cfc44be23f041d9193432bdc631c4a2b893d72b47109b06c450d6ff4e2b0a70c2a4b0cc5d1608a4481d26526b0e3
+DIST picard-2.8.4.tar.gz 5108177 BLAKE2B 
948eea724d725150ccf906c1e375e04be59f762fd6ebdb4660b6b036c87eaab803c8caebfa258efb0931e1610b8b75e9e3b00c0015e5520feca3dceec71683c2
 SHA512 
c024cf5706fe75648f0d3f9ef9ed3437f632454ab848c463135516d8c819cab52c42e1e9d4e050aeb254f6e08ae8345fbe0f95c0ab35fdc2f79e0c01c56b291c

diff --git a/media-sound/picard/picard-2.8.4.ebuild 
b/media-sound/picard/picard-2.8.4.ebuild
new file mode 100644
index ..e50d604072d8
--- /dev/null
+++ b/media-sound/picard/picard-2.8.4.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_SINGLE_IMPL=1
+
+inherit distutils-r1 xdg
+
+if [[ ${PV} = ** ]]; then
+   EGIT_REPO_URI="https://github.com/metabrainz/picard";
+   inherit git-r3
+else
+   
SRC_URI="https://musicbrainz.osuosl.org/pub/musicbrainz/${PN}/${P}.tar.gz";
+   KEYWORDS="~amd64 ~x86"
+   S="${WORKDIR}/${PN}-release-${PV}"
+fi
+
+DESCRIPTION="Cross-platform music tagger"
+HOMEPAGE="https://picard.musicbrainz.org";
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="discid fingerprints nls"
+
+BDEPEND="
+   nls? ( dev-qt/linguist-tools:5 )
+"
+RDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/fasteners[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+   
dev-python/PyQt5[declarative,gui,network,widgets,${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   media-libs/mutagen[${PYTHON_USEDEP}]
+   discid? ( dev-python/python-discid[${PYTHON_USEDEP}] )
+   ')
+   fingerprints? ( media-libs/chromaprint[tools] )
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+   local build_args=(
+   --disable-autoupdate
+   )
+   if ! use nls; then
+   build_args+=( --disable-locales )
+   fi
+   distutils-r1_python_compile ${build_args[@]}
+}
+
+python_install() {
+   local install_args=(
+   --disable-autoupdate
+   --skip-build
+   )
+   if ! use nls; then
+   install_args+=( --disable-locales )
+   fi
+   distutils-r1_python_install ${install_args[@]}
+}



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

2022-11-23 Thread Viorel Munteanu
commit: 945b8139c893494e5ae445cc201e0118abe631b9
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Sun Nov 20 16:16:25 2022 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Thu Nov 24 07:46:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=945b8139

dev-libs/xalan-c: add 1.12

Closes: https://bugs.gentoo.org/734190
Closes: https://bugs.gentoo.org/829679
Closes: https://bugs.gentoo.org/867649
Closes: https://bugs.gentoo.org/831315
Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-libs/xalan-c/Manifest|  2 ++
 dev-libs/xalan-c/metadata.xml|  8 -
 dev-libs/xalan-c/xalan-c-1.12.ebuild | 59 
 dev-libs/xalan-c/xalan-c-.ebuild | 59 
 4 files changed, 127 insertions(+), 1 deletion(-)

diff --git a/dev-libs/xalan-c/Manifest b/dev-libs/xalan-c/Manifest
index c7eb353b1841..6ea0a59902b7 100644
--- a/dev-libs/xalan-c/Manifest
+++ b/dev-libs/xalan-c/Manifest
@@ -1 +1,3 @@
 DIST Xalan-C_r1153059-src.tar.gz 1573651 BLAKE2B 
5e684b80bc962776c1e0102a97023ee3a9b9357b6fc05e02687971d5d879b01a5dc426fd6ab2af68a7ad6ec48a799d70fd912a4e3a30d8e3a22a954d84d21f59
 SHA512 
2382c1343ae97d0196d84053139758d3b3b7574bcd835b754e34acdc6ab708a58fc23d2f27d41870c768c78a1de7be1bb6031cc78d205b6024f1ad7cd6fca653
+DIST xalan_c-1.12.tar.gz 1130924 BLAKE2B 
c2f0fb98d39e516d5219ab0e075517c2c916b451bfce6d90399899870a8a73fb59f8d2465f58bd97208d19c5a7a18df5a49ece156d8dfe47bf57fc875793fb43
 SHA512 
a9f72f0e8e199ee2cfb4c19ecf390d5007f597aad96a53f55bc475805190302c7e0d800d776b7fb20fe8e2dddb6391e70aa3a8861a2303370135e8b0a5fd15fc
+DIST xalan_c-1.12.tar.gz.asc 488 BLAKE2B 
1e5d7091ca184ac7e2897fe52417b01d9618ab0435f2bcc7748d563287ad81692e61bee92ec9bc71e5c21c11bc8245a4ec09ff7e6ed44a4b3113264b096ba277
 SHA512 
1c532367d5a3f16622cda3eaca05eac648b415a9de8685cf43f5e62683db30b396e669b6952f5bbe161327b8171cd1e54ad4dbefa54122243aa01298d53d400d

diff --git a/dev-libs/xalan-c/metadata.xml b/dev-libs/xalan-c/metadata.xml
index 85e4ed814fa2..2f2c528629de 100644
--- a/dev-libs/xalan-c/metadata.xml
+++ b/dev-libs/xalan-c/metadata.xml
@@ -1,5 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-
+
+   cea...@gentoo.org
+   Viorel Munteanu
+
+
+   apache/xalan-c
+
 

diff --git a/dev-libs/xalan-c/xalan-c-1.12.ebuild 
b/dev-libs/xalan-c/xalan-c-1.12.ebuild
new file mode 100644
index ..c4f9eac0ffdc
--- /dev/null
+++ b/dev-libs/xalan-c/xalan-c-1.12.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+MY_PN=${PN/-/_}
+DESCRIPTION="XSLT processor for transforming XML into HTML, text, or other XML 
types"
+HOMEPAGE="https://apache.github.io/xalan-c/";
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/apache/xalan-c.git";
+
+   SLOT="0"
+else
+   inherit verify-sig
+   SRC_URI="
+   mirror://apache/xalan/xalan-c/sources/${MY_PN}-${PV}.tar.gz
+   verify-sig? ( 
https://dlcdn.apache.org/xalan/xalan-c/sources/${MY_PN}-${PV}.tar.gz.asc )
+   "
+   
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/apache-xalan-c.asc
+
+   SLOT="0/$(ver_cut 1-2)"
+   KEYWORDS="~amd64 ~ppc ~x86"
+   S="${WORKDIR}/${MY_PN}-${PV}"
+   BDEPEND="
+   verify-sig? ( sec-keys/openpgp-keys-apache-xalan-c )
+   "
+fi
+
+LICENSE="Apache-2.0"
+IUSE="doc"
+
+RDEPEND="
+   dev-libs/icu:=
+   dev-libs/xerces-c[icu]
+"
+DEPEND="${RDEPEND}"
+BDEPEND+="
+   doc? ( app-doc/doxygen[dot] )
+"
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_DOXYGEN=$(usex doc)
+   )
+
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   if use doc; then
+   docinto examples
+   dodoc -r samples/*/
+   fi
+}

diff --git a/dev-libs/xalan-c/xalan-c-.ebuild 
b/dev-libs/xalan-c/xalan-c-.ebuild
new file mode 100644
index ..c4f9eac0ffdc
--- /dev/null
+++ b/dev-libs/xalan-c/xalan-c-.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+MY_PN=${PN/-/_}
+DESCRIPTION="XSLT processor for transforming XML into HTML, text, or other XML 
types"
+HOMEPAGE="https://apache.github.io/xalan-c/";
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/apache/xalan-c.git";
+
+   SLOT="0"
+else
+   inherit verify-sig
+   SRC_URI="
+   mirror://apache/xalan/xalan-c/sources/${MY_PN}-${PV}.tar.gz
+   verify-sig? ( 
https://dlcdn.apache.org/xalan/xalan-c/sources/${MY_PN}-${PV}.tar.gz.asc )
+   "
+   
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/apache-xalan-c.asc
+
+   SLOT="0/$(ver_cut 1-2)"
+   KEYWORDS="~amd64 ~ppc ~x86"
+   

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

2022-11-23 Thread Viorel Munteanu
commit: 796d6ad12e80f325fc90f2125bfcde23db169f41
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Tue Nov 22 11:04:14 2022 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Thu Nov 24 07:47:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796d6ad1

profiles: unmask dev-libs/xalan-c

Closes: https://github.com/gentoo/gentoo/pull/28384
Signed-off-by: Viorel Munteanu  gentoo.org>

 profiles/package.mask | 2 --
 1 file changed, 2 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 948e36ee303e..6df6789e0b0b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -118,7 +118,6 @@ dev-cpp/pstreams
 # app-misc/glimpse: bug #684096, last bumped in 2013
 # dev-db/cpp-driver: bug #685936, last bumped in 2019
 # dev-erlang/riakc: bug #722688, last bumped in 2016
-# dev-libs/xalan-c: bug #734190, last bumped in 2011
 # dev-util/stubgen: bug #839927, last bumped in 2011
 # media-gfx/xzgv: bug #831252, last bumped in 2009
 # net-dns/dnssec-check: bug #571350, last bumped in 2016
@@ -135,7 +134,6 @@ app-forensics/ovaldi
 app-misc/glimpse
 dev-db/cpp-driver
 dev-erlang/riakc
-dev-libs/xalan-c
 dev-util/stubgen
 media-gfx/xzgv
 net-dns/dnssec-check



[gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-apache-xalan-c/

2022-11-23 Thread Viorel Munteanu
commit: d7cd1aeddfc7622bf122762697c74b535058bc77
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Wed Nov 23 15:50:33 2022 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Thu Nov 24 07:46:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7cd1aed

sec-keys/openpgp-keys-apache-xalan-c: new package, add 20221123

Signed-off-by: Viorel Munteanu  gentoo.org>

 sec-keys/openpgp-keys-apache-xalan-c/Manifest|  1 +
 sec-keys/openpgp-keys-apache-xalan-c/metadata.xml|  9 +
 .../openpgp-keys-apache-xalan-c-20221123.ebuild  | 20 
 3 files changed, 30 insertions(+)

diff --git a/sec-keys/openpgp-keys-apache-xalan-c/Manifest 
b/sec-keys/openpgp-keys-apache-xalan-c/Manifest
new file mode 100644
index ..7ff9fb67ef2f
--- /dev/null
+++ b/sec-keys/openpgp-keys-apache-xalan-c/Manifest
@@ -0,0 +1 @@
+DIST openpgp-keys-apache-xalan-c-20221123 29329 BLAKE2B 
2f30c23ce368db54d6222ed774495482c65b620774f57906591ead9c413f99dbf23c1457f33f87a6d036e84ad43d12ad296513005ae1199b3810ca64c5de3df5
 SHA512 
89bf04a06d33d9e0cf9945406d9fb5809547b06df62acbbd4549832dcd2021c6ff4a9f7c4674ce2e3c93034d9a87783ba47089da1973adbc9077312c39a154e2

diff --git a/sec-keys/openpgp-keys-apache-xalan-c/metadata.xml 
b/sec-keys/openpgp-keys-apache-xalan-c/metadata.xml
new file mode 100644
index ..fd8745b5b4ae
--- /dev/null
+++ b/sec-keys/openpgp-keys-apache-xalan-c/metadata.xml
@@ -0,0 +1,9 @@
+
+https://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   cea...@gentoo.org
+   Viorel Munteanu
+   
+   
+

diff --git 
a/sec-keys/openpgp-keys-apache-xalan-c/openpgp-keys-apache-xalan-c-20221123.ebuild
 
b/sec-keys/openpgp-keys-apache-xalan-c/openpgp-keys-apache-xalan-c-20221123.ebuild
new file mode 100644
index ..3c2503c0377f
--- /dev/null
+++ 
b/sec-keys/openpgp-keys-apache-xalan-c/openpgp-keys-apache-xalan-c-20221123.ebuild
@@ -0,0 +1,20 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="OpenPGP keys used to sign Apache Xalan-C"
+HOMEPAGE="https://xalan.apache.org/";
+SRC_URI="https://downloads.apache.org/xalan/xalan-c/KEYS -> ${P}"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+S="${WORKDIR}"
+
+src_install() {
+   local files=( ${A} )
+   insinto /usr/share/openpgp-keys
+   newins - apache-xalan-c.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
+}



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

2022-11-23 Thread Michał Górny
commit: a3ffc021b679bd8793b0ab369876372142be9fdf
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:53:47 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:02:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3ffc021

dev-python/texttable: Bump to 1.6.7

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

 dev-python/texttable/Manifest   |  1 +
 dev-python/texttable/texttable-1.6.7.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest
index aebffb478058..63036e3cf146 100644
--- a/dev-python/texttable/Manifest
+++ b/dev-python/texttable/Manifest
@@ -1,2 +1,3 @@
 DIST texttable-1.6.4.tar.gz 11611 BLAKE2B 
a97a9beefc9547fe7487af5b6411effd7391e303a13161d7e1c9304a1b580cf47bb10c8649dfea5c6f8ba05bc6c3fd7595662e8b74b282696d9ee3a110746212
 SHA512 
300b02f5b682f1c09a3eb5abfd4ee9c724354505a3f9e8f68207fd7d244402f234437807d68b6b526c3d4ade9e527e66c921bcd47a5e86d680698d559da3fe1a
 DIST texttable-1.6.5.gh.tar.gz 11720 BLAKE2B 
e8a1e7c087de92b11954dc657c59d0c2c0b0afc509ab401c54ff9eca0f75952fcb5a0ae96d08241438c369edf820f03e73f76b9b5d9f610455f74e8a7751396e
 SHA512 
63c73cd85be0432d05abde31ef7d7c91efa461b0f7daae3c6f9a29c116771841bbc1b4daf47c8863e32ed001417b96804ece1e976595c527ee5a1f253129028c
+DIST texttable-1.6.7.gh.tar.gz 11698 BLAKE2B 
e34f5d6b49de379493697638305b428a1921b93ad95902334f8315263657f4570f6c3770f99bd0fbbce7be29c73f9638922f2c0b19df137a9fde425170d3b0e3
 SHA512 
204dcad0d2438dab8880088d1ea6ab1d0a5d81348294547a6967938bf8e1c27a6c5f91c59c2fe22ce8d1266d7efdb165749e0aebc738644215ab9b1d5a28c419

diff --git a/dev-python/texttable/texttable-1.6.7.ebuild 
b/dev-python/texttable/texttable-1.6.7.ebuild
new file mode 100644
index ..a67b50ccc120
--- /dev/null
+++ b/dev-python/texttable/texttable-1.6.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Module to create simple ASCII tables"
+HOMEPAGE="
+   https://github.com/foutaise/texttable/
+   https://pypi.org/project/texttable/
+"
+SRC_URI="
+   https://github.com/foutaise/texttable/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   dev-python/wcwidth[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest tests.py
+}
+
+pkg_postinst() {
+   optfeature "better wrapping of CJK text" dev-python/cjkwrap
+}



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

2022-11-23 Thread Alfredo Tupone
commit: 6734c3a1c5503291bd70b5aec67538f5cddcaa8d
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Wed Nov 23 08:01:54 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Nov 23 08:14:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6734c3a1

dev-lang/tcl: add 8.6.13

Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-lang/tcl/Manifest  |   1 +
 dev-lang/tcl/tcl-8.6.13.ebuild | 123 +
 2 files changed, 124 insertions(+)

diff --git a/dev-lang/tcl/Manifest b/dev-lang/tcl/Manifest
index 166a301b9284..936ea7f54637 100644
--- a/dev-lang/tcl/Manifest
+++ b/dev-lang/tcl/Manifest
@@ -1,2 +1,3 @@
 DIST tcl-core8.6.11-src.tar.gz 6041050 BLAKE2B 
9c41d5ae5d22627b903d18c5ca607d4a2647d7af65d3029a463cf571d3fbe0bd48e15fef643e81de94296777985a36530a83718d4eb7befca4bc107ab860cc0d
 SHA512 
fe3556c37305e3856743e9a202a320d44b1b3cbc926a1b7a4449ae5baf2f8df92214a9aa06f0a87645d032857fb71458fc864ff007fd73da60463ae5001f2d3f
 DIST tcl-core8.6.12-src.tar.gz 6064625 BLAKE2B 
30dc780562aa6955e2c417798cc96fabd23e947cee81146dc192156598e3c43f588864aab4392d62901b8964cf59bedb6cad1f064e32b03dd9733b3a0a7b5c8a
 SHA512 
7144a50d19d3855edbda14b538cc94fe26c0dd357b979676c3fe02d599dab61ba777bf14f6aaebb63e238aeff1d0bad25ea7b0ff31b2398468f67fc0a305b9f3
+DIST tcl-core8.6.13-src.tar.gz 6370805 BLAKE2B 
f5af3c0fa2d52c09ab16578c9147cb5ac4a06b81882c49f1ef23642bed32adccbe2a5acbddc5d18bd1757e1991daf864707d842e675f92c6de70be6f4275b95e
 SHA512 
c1c953ac0f9a530d8256514c0cb78f166d0063db725b87fa19272716a955cd390ff8f1c5f17e791cf463284d88bb136d61194779a913a6a78f46146d485c71ee

diff --git a/dev-lang/tcl/tcl-8.6.13.ebuild b/dev-lang/tcl/tcl-8.6.13.ebuild
new file mode 100644
index ..ace21039b42b
--- /dev/null
+++ b/dev-lang/tcl/tcl-8.6.13.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Please bump with dev-lang/tk!
+
+inherit autotools flag-o-matic multilib-minimal multilib toolchain-funcs
+
+MY_P="${PN}${PV}"
+
+DESCRIPTION="Tool Command Language"
+HOMEPAGE="http://www.tcl.tk/";
+SRC_URI="mirror://sourceforge/tcl/${PN}-core${PV}-src.tar.gz"
+
+LICENSE="tcltk"
+SLOT="0/8.6"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="debug +threads"
+
+RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+SPARENT="${WORKDIR}/${MY_P}"
+S="${SPARENT}"/unix
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-8.6.10-multilib.patch
+   "${FILESDIR}"/${PN}-8.6.8-conf.patch # Bug 125971
+   "${FILESDIR}"/${PN}-8.6.9-include-spec.patch # Bug 731120
+)
+
+src_prepare() {
+   find \
+   "${SPARENT}"/compat/* \
+   "${SPARENT}"/doc/try.n \
+   -delete || die
+
+   pushd "${SPARENT}" &>/dev/null || die
+   default
+   popd &>/dev/null || die
+
+   # httpold tests require netowk
+   rm ../tests/httpold.test \
+   ../tests/env.test \
+   ../tests/http.test \
+   || die
+
+   # workaround stack check issues, bug #280934
+   use hppa && append-cflags "-DTCL_NO_STACK_CHECK=1"
+
+   tc-export CC
+
+   sed \
+   -e '/chmod/s:555:755:g' \
+   -i Makefile.in || die
+
+   sed \
+   -e 's:-O[2s]\?::g' \
+   -i tcl.m4 || die
+
+   mv configure.{in,ac} || die
+
+   eautoconf
+
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   # We went ahead and deleted the whole compat/ subdir which means
+   # the configure tests to detect broken versions need to pass (else
+   # we'll fail to build).  This comes up when cross-compiling, but
+   # might as well get a minor configure speed up normally.
+   export ac_cv_func_memcmp_working="yes"
+   export tcl_cv_str{str,toul,tod}_unbroken="ok"
+   export tcl_cv_strtod_buggy="no"
+
+   econf \
+   $(use_enable threads) \
+   $(use_enable debug symbols)
+}
+
+multilib_src_install() {
+   #short version number
+   local v1=$(ver_cut 1-2)
+   local mylibdir=$(get_libdir)
+
+   S= default
+   # fix the tclConfig.sh to eliminate refs to the build directory
+   # and drop unnecessary -L inclusion to default system libdir
+
+   sed \
+   -e "/^TCL_BUILD_LIB_SPEC=/s:-L$(pwd) *::g" \
+   -e "/^TCL_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
+   -e 
"/^TCL_SRC_DIR=/s:${SPARENT}:${EPREFIX}/usr/${mylibdir}/tcl${v1}/include:g" \
+   -e "/^TCL_BUILD_STUB_LIB_SPEC=/s:-L$(pwd) *::g" \
+   -e "/^TCL_STUB_LIB_SPEC=/s:-L${EPREFIX}/usr/${mylibdir} *::g" \
+   -e 
"/^TCL_BUILD_STUB_LIB_PATH=/s:$(pwd):${EPREFIX}/usr/${mylibdir}:g" \
+   -e 
"/

[gentoo-commits] repo/gentoo:master commit in: dev-lang/tk/files/, dev-lang/tk/

2022-11-23 Thread Alfredo Tupone
commit: 1077e71fdc367c08255278e8a95120f6f5c83c44
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Wed Nov 23 08:13:47 2022 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Wed Nov 23 08:14:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1077e71f

dev-lang/tk: add 8.6.13

Signed-off-by: Alfredo Tupone  gentoo.org>

 dev-lang/tk/Manifest   |   1 +
 dev-lang/tk/files/tk-8.6.13-test.patch |  50 +++
 dev-lang/tk/tk-8.6.13.ebuild   | 149 +
 3 files changed, 200 insertions(+)

diff --git a/dev-lang/tk/Manifest b/dev-lang/tk/Manifest
index a247dc628a0c..56d868e8c418 100644
--- a/dev-lang/tk/Manifest
+++ b/dev-lang/tk/Manifest
@@ -1,2 +1,3 @@
 DIST tk8.6.11.1-src.tar.gz 4496008 BLAKE2B 
d7bae2fa535411ad8620ec81cdc0b34a1206fed82f50dbd98d3977af46ac43f794166cb7029f274f7903228c62ce83dfbd56cea06669ff1e382b185d733b0792
 SHA512 
e2a1d27ba63601731d43c4c4e2b658771a14afd97ef8231f8bc7854e762b83a42f23b8db600e4b4a4a14ae6fc97378d0b9a9a180ae09308b9d12436ec2b176c4
 DIST tk8.6.12-src.tar.gz 4515393 BLAKE2B 
328522b7e1b4d291863db01ac93e18630f3984459d145a11d742f912a40d5634ffe4608760ce45f444903d45fb707bb48ecc3586913f0c2fde4664a402f6b862
 SHA512 
afe51eb3e2071640ebc57f9ee6979fe91ee7856df8d3c9d55ae70c470cdae2306d2feeb791f46258f529a5c4a07b53974a7574cf3594818cd4e99077b30c697b
+DIST tk8.6.13-src.tar.gz 4546848 BLAKE2B 
5f00cf64feb7c7eb6739303c857dfabff4cbf4148c65462c2a5cc49cc8010fba950ffa7043101e98ded543a6c6e9b925dc1ee0e6e9031a240ae29b918f81060a
 SHA512 
719aa6776bfdc814f817919a265d3f9d847782c9f0a5fc5c2ab139beeba921e6fde8c66e7e836d78f86f53c98a7df0e587f0b2f4b08cc5ce12eecbb7f1ab71a5

diff --git a/dev-lang/tk/files/tk-8.6.13-test.patch 
b/dev-lang/tk/files/tk-8.6.13-test.patch
new file mode 100644
index ..c239ba79ef2f
--- /dev/null
+++ b/dev-lang/tk/files/tk-8.6.13-test.patch
@@ -0,0 +1,50 @@
+--- a/tests/textDisp.test  2022-11-23 08:26:53.070121316 +0100
 b/tests/textDisp.test  2022-11-23 08:35:58.527988892 +0100
+@@ -2303,10 +2303,10 @@
+ }
+ lequal [.t index @0,0] $expected
+ } {1}
+-test textDisp-16.17 {TkTextYviewCmd procedure, "moveto" option} {
++test textDisp-16.17 {TkTextYviewCmd procedure, "moveto" option} -constraints 
{knownBug} -body {
+ .t yview moveto .755
+ .t index @0,0
+-} {151.80}
++} -result {151.80}
+ test textDisp-16.18 {TkTextYviewCmd procedure, "moveto" roundoff} {
+ catch {destroy .top1}
+ toplevel .top1
+--- a/tests/ttk/entry.test 2022-11-23 08:44:49.647148945 +0100
 b/tests/ttk/entry.test 2022-11-23 08:51:48.524180822 +0100
+@@ -127,28 +127,28 @@
+ set result [.e xview]
+ } -result {0.0 0.5}
+ 
+-test entry-3.3 "xview" -body {
++test entry-3.3 "xview" -constraints knownBug -body {
+ .e delete 0 end;
+ .e insert end abcdefghijklmnopqrstuvwxyz
+ .e xview end
+ set result [.e index @0]
+ } -result 7
+ 
+-test entry-3.4 "xview" -body {
++test entry-3.4 "xview" -constraints knownBug -body {
+ .e delete 0 end;
+ .e insert end abcdefghijklmnopqrstuvwxyz
+ .e xview moveto 1.0
+ set result [.e index @0]
+ } -result 7
+ 
+-test entry-3.5 "xview" -body {
++test entry-3.5 "xview" -constraints knownBug -body {
+ .e delete 0 end;
+ .e insert end abcdefghijklmnopqrstuvwxyz
+ .e xview scroll 5 units
+ set result [.e index @0]
+ } -result 5
+ 
+-test entry-3.6 "xview" -body {
++test entry-3.6 "xview" -constraints knownBug -body {
+ .e delete 0 end;
+ .e insert end [string repeat abcdefghijklmnopqrstuvwxyz 5]
+ .e xview scroll 2 pages

diff --git a/dev-lang/tk/tk-8.6.13.ebuild b/dev-lang/tk/tk-8.6.13.ebuild
new file mode 100644
index ..8409057c78b4
--- /dev/null
+++ b/dev-lang/tk/tk-8.6.13.ebuild
@@ -0,0 +1,149 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Please bump with dev-lang/tcl!
+
+inherit autotools multilib-minimal multilib prefix toolchain-funcs virtualx
+
+MY_P="${PN}${PV/_beta/b}"
+
+DESCRIPTION="Tk Widget Set"
+HOMEPAGE="https://www.tcl.tk/";
+SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
+
+LICENSE="tcltk"
+SLOT="0/8.6"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="debug +threads truetype aqua xscreensaver"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   !aqua? (
+   >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}]
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
+   truetype? ( >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}] )
+   xscreensaver? ( 
>=x11-libs/libXScrnSaver-1.2.2-r1[${MULTILIB_USEDEP}] )
+   )
+   ~dev-lang/tcl-$(ver_cut 1-3):0=[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   !aqua? ( x11-base/xorg-prot

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

2022-11-23 Thread Joonas Niilola
commit: de87818b5fbbd5e6ac5160eda6ff4c1b718ea3f4
Author: Petr Vaněk  atlas  cz>
AuthorDate: Tue Nov 22 13:32:11 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Nov 23 08:17:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de87818b

net-im/synapse: add 1.72.0

Signed-off-by: Petr Vaněk  atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/28383
Signed-off-by: Joonas Niilola  gentoo.org>

 net-im/synapse/Manifest  |   8 ++
 net-im/synapse/synapse-1.72.0.ebuild | 201 +++
 2 files changed, 209 insertions(+)

diff --git a/net-im/synapse/Manifest b/net-im/synapse/Manifest
index 5801cd2e41f4..2407cbf001bd 100644
--- a/net-im/synapse/Manifest
+++ b/net-im/synapse/Manifest
@@ -5,6 +5,7 @@ DIST arc-swap-1.5.1.crate 66157 BLAKE2B 
9060ef4f9d699fadc03be1a116d9301f6308fbb7
 DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
 DIST blake2-0.10.4.crate 46804 BLAKE2B 
694e81198aa92d610a189056558b77765f8231a2dbde4e861396edb57398af30e10c6bfd8bb0b62c2013d4874b5442d3df8857499d0f5fff640649224ac4663a
 SHA512 
ea6fde4969d66de70e0689da8c76efd37c8f70b9f1d1894d5c1e497a980b011cac75ac650170b7f0face9f85f0c35d05e136dcf823e1cbe7df3db58b72c6fa4b
+DIST blake2-0.10.5.crate 46855 BLAKE2B 
51b3e2e9a5ebaa71dbfba330e4f86d887935c94c8c637bfec5d5e94a6ad1df398d038fc3499c2f13a844a7fc308b25771f66fb8c2b1de3f5cf3717c6177ecb36
 SHA512 
51aeb30092774935f09a86d6d10943c52305d41dddc4082075fccd992506439ade012ead39fddcce1dff3cfa6e7546273b109d2056ee2202ceb2d80ce55a1bf4
 DIST block-buffer-0.10.3.crate 10465 BLAKE2B 
32f0089971bb759244b73a75bdbbeb2d24f0422e92ceb0ae0afe3c698e3fabb371112a2eba3dab16a3859420d492c0ac984bfbb25e59e0c31951501cc652aab7
 SHA512 
e29faab70f8f2965a58089728274ec34bc97d681526687868c9cb1a2c145db00717f97e77b79a04fa52bd76817d796e104b509cd2a3163085b214f8eb68ac04f
 DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
 DIST crypto-common-0.1.6.crate 8760 BLAKE2B 
f2422bfb89c15d47a8f91c8f6695e05eb56990a922e3cdf3d426044736f9932324c0d899a151a6df4d6683e6a6b21659c657d3988734014c02cd854bb4b924e7
 SHA512 
471dbc43f517089d2cfe0868e29510c6ca579875b3bb5d013c70796db969b609b6c4bb35c9a07b9a2917012dc5708b717d48e317a20038adbe7e7039bf3ada6f
@@ -29,19 +30,25 @@ DIST proc-macro2-1.0.43.crate 41512 BLAKE2B 
da0577094cb0b8b419f3160bab6342f97865
 DIST proc-macro2-1.0.46.crate 41954 BLAKE2B 
3bdc274c8ada8bf1a84d4480b25e0348f4ec5bfacebb74da144a36d4dc0efeb341fa24525e7e8408c3589013a048563a46f1e094944afc1726e594534e2455fa
 SHA512 
1c2ae8dc4bebeeaa4af02f8edce18b3d159109a1639d8e9f26be2b7023ade9d09824ee0f2a60ae034967d982158196826fdb989d23a4b3bc81188a9a63e18cb9
 DIST pyo3-0.16.6.crate 364587 BLAKE2B 
935b3347770e1fba76f6aee6b4ddc41cf9cb13be77e76d2668985012776a119906403a8fe95ccd0e33b4630bd38936693d2fd1b7b3d11d84a4e53fca021a2f36
 SHA512 
fe297e4d171ecb5a965ce9f3a0527a086766ac5607ba7b59b2a3a8f6cc66da3959d93f1d6aa688d67ceebde41ac4adefce18c0d52c1b77d0cd95cf1178f52325
 DIST pyo3-0.17.2.crate 405417 BLAKE2B 
d59b138de6af6eeaf41043a8a07c3a3763f2338b13716c9259d9dd821cd01d299a95b50946c93e222563fe202e2e7a2958114de47955d9d96872b98a452d226b
 SHA512 
5b33a75c968460c538b49fb687900e313626d8e2228b36f31fc9d5838eedf6628a4124cead1037cdf6a07978ff39f98e3ec110d8ccbbb409fd6eb9339cba5245
+DIST pyo3-0.17.3.crate 408939 BLAKE2B 
e67ce34c626dbede3c76abf66ba5078827e8a75644ff9fbd83eccf3d53096a3c2e0991da8b3489ea9984c665751308bcf4aa9c3d31dd62c72127694156a7a0a9
 SHA512 
5c83ea76202edce13c370d023562a9009382e36fdf3fcd7c4dea844ab8e5e048db4cc79a9c0ea98fb7017a83da16924ba0981ad98bd83e75e2fac434738e9740
 DIST pyo3-build-config-0.16.6.crate 28891 BLAKE2B 
26667482bf9f5b140daab9728f58965a8417e879bfeaf27d9c61f75502150557f3d5952bf52b1d16360ade2f58ed44f99e10a5781a6d241844e9202735c6625e
 SHA512 
a015bb4c328f0d1e643d64831e029bbd66cbf635ab616533f35aefce59abf1c5d596099feaccb81bff02e863867c14f975ce6fc55bc05d99ea47b5f6fdc2da5d
 DIST pyo3-build-config-0.17.2.crate 29231 BLAKE2B 
f9f82117c3107767ddca53e0aba1c5c751ef807fcb7712c79b39d6d5248de7087a2ae9178e05ae206bf7f831d906965f75cdab4d677fbcc659a4152ce7de28c1
 SHA512 
d547f5e260ee513797afc7284788aed8207f3d460f1b86b6784bfb5eef0b703c3081363f0d4826afc87d3df5277827ce5174391b2224bf59

[gentoo-commits] repo/gentoo:master commit in: app-arch/advancecomp/

2022-11-23 Thread Sam James
commit: c5a2304fc2a42ca49f5c6af92289dee93368e8d9
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 23 08:28:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 23 08:28:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a2304f

app-arch/advancecomp: Stabilize 2.4 ppc64, #882573

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

 app-arch/advancecomp/advancecomp-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/advancecomp/advancecomp-2.4.ebuild 
b/app-arch/advancecomp/advancecomp-2.4.ebuild
index 2d742f6a747a..b6711574ee7b 100644
--- a/app-arch/advancecomp/advancecomp-2.4.ebuild
+++ b/app-arch/advancecomp/advancecomp-2.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ Apache-2.0 LGPL-2.1+ MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~x86"
 
 RDEPEND="
app-arch/bzip2:=



[gentoo-commits] repo/gentoo:master commit in: app-arch/advancecomp/

2022-11-23 Thread Sam James
commit: 5516a2a8a908c4f912c2819cce777b7ac6ad0263
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 23 08:28:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 23 08:28:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5516a2a8

app-arch/advancecomp: Stabilize 2.4 x86, #882573

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

 app-arch/advancecomp/advancecomp-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/advancecomp/advancecomp-2.4.ebuild 
b/app-arch/advancecomp/advancecomp-2.4.ebuild
index b6711574ee7b..a1e2a5f164a0 100644
--- a/app-arch/advancecomp/advancecomp-2.4.ebuild
+++ b/app-arch/advancecomp/advancecomp-2.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ Apache-2.0 LGPL-2.1+ MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv x86"
 
 RDEPEND="
app-arch/bzip2:=



[gentoo-commits] repo/gentoo:master commit in: app-arch/advancecomp/

2022-11-23 Thread Sam James
commit: d8f68130f76192f2723f5b92859d5c6eb8456289
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 23 08:28:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 23 08:28:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8f68130

app-arch/advancecomp: Stabilize 2.4 amd64, #882573

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

 app-arch/advancecomp/advancecomp-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/advancecomp/advancecomp-2.4.ebuild 
b/app-arch/advancecomp/advancecomp-2.4.ebuild
index a1e2a5f164a0..f08e066c87ea 100644
--- a/app-arch/advancecomp/advancecomp-2.4.ebuild
+++ b/app-arch/advancecomp/advancecomp-2.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ Apache-2.0 LGPL-2.1+ MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv x86"
 
 RDEPEND="
app-arch/bzip2:=



[gentoo-commits] repo/gentoo:master commit in: app-i18n/nabi/

2022-11-23 Thread Sam James
commit: ddab4e54c7c46466f951d49e25101187001a1dd4
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 23 08:04:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 23 08:28:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddab4e54

app-i18n/nabi: add 1.0.1

Closes: https://bugs.gentoo.org/875716
Bug: https://bugs.gentoo.org/854597
Signed-off-by: Sam James  gentoo.org>

 app-i18n/nabi/Manifest  |  1 +
 app-i18n/nabi/nabi-1.0.1.ebuild | 62 +
 2 files changed, 63 insertions(+)

diff --git a/app-i18n/nabi/Manifest b/app-i18n/nabi/Manifest
index e8804ae80f77..7275f9d7c976 100644
--- a/app-i18n/nabi/Manifest
+++ b/app-i18n/nabi/Manifest
@@ -1 +1,2 @@
 DIST nabi-1.0.0.tar.gz 868761 BLAKE2B 
125028a4a3a6c51edfeee45de42868c5c0397d8545fdaaffc8a305282ea7d8af102487ad86016e1d6e7275cf7e8a5cd0111bd7f8b9c38470021b94585c1cbf1d
 SHA512 
cd093fc54fc4a40eaa85f9973999b9fe2e37344c1004b56fe9a2102bb0747294ba2af76aca2be234ce4fe07a5e8175d1bab7423dd2cee92ab88af865cd856005
+DIST nabi-1.0.1.tar.gz 927009 BLAKE2B 
b53e3131e2998499f4004c07272bd1715905fbf26c8e524299bc1a4a80d8cada6d6368f372619893f5edec3b5c1595afe4c25756f171df88a2b805644c9d115b
 SHA512 
8113b31df792ff1b31b1e063671a30e21c312e27627c0e15d9de872bb644eeaea4ebb65ef399dea2d75563d81941990f59adbe1e4c584026e02dcdafe389e9c1

diff --git a/app-i18n/nabi/nabi-1.0.1.ebuild b/app-i18n/nabi/nabi-1.0.1.ebuild
new file mode 100644
index ..7d7d5f22192f
--- /dev/null
+++ b/app-i18n/nabi/nabi-1.0.1.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Simple Hanguk X Input Method"
+HOMEPAGE="https://github.com/libhangul/nabi";
+SRC_URI="https://github.com/libhangul/nabi/archive/refs/tags/${P}.tar.gz";
+S="${WORKDIR}"/${PN}-${P}
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="debug nls"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="
+   >=app-i18n/libhangul-0.1
+   dev-libs/glib:2
+   x11-libs/gtk+:2
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   virtual/libintl
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS ChangeLog.0 NEWS README TODO )
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   local myconf=()
+
+   # Broken configure: --disable-debug also enables debug
+   use debug && myconf+=( --enable-debug )
+
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+
+   insinto /etc/X11/xinit/xinput.d
+   sed -e "s:@EPREFIX@:${EPREFIX}:g" "${FILESDIR}"/xinput-${PN} | newins - 
${PN}.conf
+}
+
+pkg_postinst() {
+   elog "You MUST add environment variable..."
+   elog
+   elog "export XMODIFIERS=\"@im=nabi\""
+   elog
+}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/nabi/

2022-11-23 Thread Sam James
commit: 82f3d9d67271eba1653fcafbb369a586c1ff3e75
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 23 08:29:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 23 08:29:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82f3d9d6

app-i18n/nabi: fix copyright

Fixup got lost...?

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

 app-i18n/nabi/nabi-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/nabi/nabi-1.0.1.ebuild b/app-i18n/nabi/nabi-1.0.1.ebuild
index 7d7d5f22192f..d7bfd2dc3d9c 100644
--- a/app-i18n/nabi/nabi-1.0.1.ebuild
+++ b/app-i18n/nabi/nabi-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8



[gentoo-commits] repo/gentoo:master commit in: app-arch/advancecomp/

2022-11-23 Thread Sam James
commit: 27f1024af2a159042b53a9665d001db33c9057d7
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 23 08:30:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 23 08:30:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27f1024a

app-arch/advancecomp: Stabilize 2.4 arm64, #882573

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

 app-arch/advancecomp/advancecomp-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/advancecomp/advancecomp-2.4.ebuild 
b/app-arch/advancecomp/advancecomp-2.4.ebuild
index f08e066c87ea..5567886679b2 100644
--- a/app-arch/advancecomp/advancecomp-2.4.ebuild
+++ b/app-arch/advancecomp/advancecomp-2.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ Apache-2.0 LGPL-2.1+ MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
 
 RDEPEND="
app-arch/bzip2:=



[gentoo-commits] repo/gentoo:master commit in: app-arch/advancecomp/

2022-11-23 Thread Arthur Zamarin
commit: 17403c90ea0230a05af20fa6d7e430a828b1b315
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 23 08:31:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 23 08:31:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17403c90

app-arch/advancecomp: Stabilize 2.4 ppc, #882573

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

 app-arch/advancecomp/advancecomp-2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/advancecomp/advancecomp-2.4.ebuild 
b/app-arch/advancecomp/advancecomp-2.4.ebuild
index 5567886679b2..6d75cd55c107 100644
--- a/app-arch/advancecomp/advancecomp-2.4.ebuild
+++ b/app-arch/advancecomp/advancecomp-2.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="GPL-2+ Apache-2.0 LGPL-2.1+ MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv x86"
 
 RDEPEND="
app-arch/bzip2:=



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

2022-11-23 Thread Michał Górny
commit: ddd364c8828d6d14590db83ad8dd32ef39adaa31
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:42:07 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddd364c8

dev-python/pyproject-fmt: Bump to 0.4.0

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

 dev-python/pyproject-fmt/Manifest  |  1 +
 .../pyproject-fmt/pyproject-fmt-0.4.0.ebuild   | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/pyproject-fmt/Manifest 
b/dev-python/pyproject-fmt/Manifest
index f99614b1f23e..46f73c46a511 100644
--- a/dev-python/pyproject-fmt/Manifest
+++ b/dev-python/pyproject-fmt/Manifest
@@ -1 +1,2 @@
 DIST pyproject-fmt-0.3.5.gh.tar.gz 14718 BLAKE2B 
6ccf58350fd2c4cd0726a3f66513cf9f4558b9e1cc8b9b1e2ea2b94844b9e6ab925ff5f141cbd32d8ea63b43f84a432034af69150fc1fa8ddcbfeab0a139c2d5
 SHA512 
c6b668d860f04a944872867574cfbe0946e7a5425cfa5f5b18e9ef0ce1e007197e7eb9915d76ca54e8963e71eb3fa7aee1f8362a63aa7bf89e06ca95681cdae8
+DIST pyproject-fmt-0.4.0.gh.tar.gz 14851 BLAKE2B 
0ed9b7974410929b32ebfe0b452784cf150f58e531eb4cfd25359f3963dce326860ab2e3c01cd98911044dce9397327ea1fdcc4649133fac4fcf845d2fabf1ee
 SHA512 
c5376abc29eac99df078c1981a01c3c7f12a55d0350df89deeb7f7ec74dad4470d7ff19e89fd399fd42150f93d214c9203b3e210a1facbf973a4ffbfc4241d8c

diff --git a/dev-python/pyproject-fmt/pyproject-fmt-0.4.0.ebuild 
b/dev-python/pyproject-fmt/pyproject-fmt-0.4.0.ebuild
new file mode 100644
index ..1173c6f3deb3
--- /dev/null
+++ b/dev-python/pyproject-fmt/pyproject-fmt-0.4.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Format your pyproject.toml file"
+HOMEPAGE="
+   https://github.com/tox-dev/pyproject-fmt/
+   https://pypi.org/project/pyproject-fmt/
+"
+SRC_URI="
+   https://github.com/tox-dev/pyproject-fmt/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/packaging-21.3[${PYTHON_USEDEP}]
+   >=dev-python/tomlkit-0.11.6[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/hatch-vcs[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/pytest-mock-3.8.2[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}



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

2022-11-23 Thread Michał Górny
commit: 7d029c49c0065e310f6ef1f8be7141c6f4becde4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:43:46 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d029c49

dev-python/botocore: Bump to 1.29.15

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.29.15.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 643da6c46d8e..710b7b447c2a 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,4 +3,5 @@ DIST botocore-1.29.11.gh.tar.gz 10660645 BLAKE2B 
0d5f8a7e34f99947e1488b468699e68
 DIST botocore-1.29.12.gh.tar.gz 10675051 BLAKE2B 
8ccf2f7fe711556d05771712b365a5317aa386411b3a98eaf3240fe14b7f14f04974e2847dc3c49178f4c22a8add957f3286b75f96f10dc68f99e2260a2ade77
 SHA512 
8728ac25d6dba86d8a336b17446f1b5000dab9e0f01e0bd61afcf9b806cb2fd3ac747119dac9a9b063463555cd977b2edac2a0b363b79d18ae68b1e8bdb1
 DIST botocore-1.29.13.gh.tar.gz 10704244 BLAKE2B 
593fb236ac87e13fca6688e91ee680404506f308a312b35e1a92205b3e533c24fb9dd39a0eedbd64887128daf388607fdce74b439d0e3e1fa1df970e73b22c79
 SHA512 
673e7ec32cbfb4aff51ad0399ffbf51cafacd7d29f06769290a00284d54f43891d0a25dfef3d805b6808130cdafeebf07c0f4cec7ac614b22aa8daba1c79cda6
 DIST botocore-1.29.14.gh.tar.gz 10705895 BLAKE2B 
3f20e92819965abb6ce280e4d4c4d967ddc2fa722de058140785637ee541b4f3d88c158aa9ceacfc0c2308c8bbda37d0b8ee53bc63a8594806c5175b150b2f62
 SHA512 
b6ddc39c82d9b7f59dd5f953e0eca90e21f1de2bd82ab731708acc3853d826308f7480b83f018f663ccb2846abed84d6bf1443df0d9ab1041589b1ed3b0d4fc3
+DIST botocore-1.29.15.gh.tar.gz 10707154 BLAKE2B 
e282f61ec0909bc6d58190310b798ef44367ec4d404679666855266134df3988ce90e30e4d85c834f4825c1d013462510d30ae3224491991a2671fb0f4b680f4
 SHA512 
e723bd34543b01286d0e7f3890ec27683c079ff80324fd5c450b9893d40b3126e996712e3605b6ea93f7551b0929fd9eca696ed383819c03dd801cf00f3264bb
 DIST botocore-1.29.8.gh.tar.gz 10636661 BLAKE2B 
3ebd9e5cb6cc1a9d4ddb877e806e0a845e6a19a4604b4489dbdb9a0f35251201de5d7062f3b0193db3e28f5170d8c3315fdc0b2bec7668a61880ff3e9305d3bc
 SHA512 
c4a1a3993576bd0340de4eeb25e10650219e9d74c21f7e51e5298120bc92a8359143c38d5a991b940316fc5eac483e4e838298881a5c068fa91dc3ebf92a7f5a

diff --git a/dev-python/botocore/botocore-1.29.15.ebuild 
b/dev-python/botocore/botocore-1.29.15.ebuild
new file mode 100644
index ..eed342eb3cfa
--- /dev/null
+++ b/dev-python/botocore/botocore-1.29.15.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore";
+   inherit git-r3
+else
+   SRC_URI="
+   https://github.com/boto/botocore/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   # fails on unrelated warnings
+   
tests/unit/test_client.py::TestAutoGeneratedClient::test_BOTO_DISABLE_COMMONNAME
+   
tests/unit/test_client.py::TestClientErrors::test_BOTO_DISABLE_COMMONNAME
+   # TODO
+   
tests/functional/test_credentials.py::SSOSessionTest::test_token_chosen_from_provider
+   )
+
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-11-23 Thread Michał Górny
commit: 6846ea10905d887a4b1dde311b24e154012350f6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:44:08 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6846ea10

app-admin/awscli: Bump to 1.27.15

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.27.15.ebuild | 80 ++
 2 files changed, 81 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 34edd82ea840..259b79375550 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -3,4 +3,5 @@ DIST aws-cli-1.27.11.gh.tar.gz 2303984 BLAKE2B 
f773a631bd2f172697a013e11765307ed
 DIST aws-cli-1.27.12.gh.tar.gz 2306806 BLAKE2B 
b94c5ae753754ff66897263883942043fa659cef95b5eb6c4e8edee8249b0cf1010d4490a4a46b477052ad14398f5d034285ff2e21428369b1ab4b425bb75cca
 SHA512 
104cf99cc5bee3261b04a0c11681dfe8a18ffce6d1a4b8502983f6c754cce5b7d7e9b7f1dfd314ff06ccc4d8aa81f47cc335cbdfe81b6e19e7a08bad7cf14b02
 DIST aws-cli-1.27.13.gh.tar.gz 2308435 BLAKE2B 
7b9ec88744417d9b3416f85d26100ab7e07a5373ada8aab004ff0411ff1aededfe21376b4843708a7b861bcf0d47fd5182e8423fcb1a041d1f16380532514a3c
 SHA512 
0888cede49de91790dbd8eedf0b9ec96da10c05d06f939ab0cac983ca24c5f4e2dd8d2f3c11e5543c15c04c86f2bfb0fc49f9d29fe42149a2e3c1e2e04266089
 DIST aws-cli-1.27.14.gh.tar.gz 2309344 BLAKE2B 
dc29dbc89ca963f7dee116b815652c846a643b8415807a32460e86eb9a863470f985bcfcb7f228ce78682b351d14e29234dabc426556f4c7f8863ceec9c55347
 SHA512 
a97e104c8a45983f52a802d1b1cd55a89f95b1bd3ec5760905404e3f94946c2efe24de70a411d1e943a9ba07671f8114dbb05c216d3d52d1876c05f5e73093cd
+DIST aws-cli-1.27.15.gh.tar.gz 2309456 BLAKE2B 
17ef8924b61c578462de2ad1eb8e46d16d55a49cc14ca1fa21fd895fa019bcd22bc2eadea498902fd9d440b2d441902c9a78c2b3687aa3cc636894360bdb74b3
 SHA512 
2e76d318c88bd344ad5336472d6ef1c8231e61b00cfd52f7051bc272966ea1d374584b0f35984441963f7b0d55d74377c3bb4ce60372751d2f2d00043747da72
 DIST aws-cli-1.27.8.gh.tar.gz 2301766 BLAKE2B 
1873d92b8d2f6d3f29a65b4177927a1a14034da71dbc95ff6abf3f49df6cf3ee192412eeea15be14c8cf9fca0a5603f2c76b80b280f4feb95e661055abcd8b60
 SHA512 
e53828cac1b3e10e2ddd45312d71cdb748216dbc37c3e9833e7a1320b236c3bef6a13204a38b946d9182430f169fca1ddc77d3d06c1c2c6e05978dc61f675168

diff --git a/app-admin/awscli/awscli-1.27.15.ebuild 
b/app-admin/awscli/awscli-1.27.15.ebuild
new file mode 100644
index ..9bcb01ac11e2
--- /dev/null
+++ b/app-admin/awscli/awscli-1.27.15.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   !app-admin/awscli-bin
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
tests/functional/eks/test_kubeconfig.py::TestKubeconfigLoader::test_load_simple
+   
tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_env_only
+   
tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_existing
+   
tests/unit/customizations/eks/test_kubeconfig.py::TestKubeconfigValidator::test_valid
+   )
+
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked
+}
+
+python_install_all() {
+   newbashcomp b

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

2022-11-23 Thread Michał Górny
commit: 530e9520fc17b845ebeaac30af3172be6bb22fa6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:43:57 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=530e9520

dev-python/boto3: Bump to 1.26.15

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.26.15.ebuild | 68 +++
 2 files changed, 69 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 38905900948f..1760454b267c 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,4 +3,5 @@ DIST boto3-1.26.11.gh.tar.gz 561018 BLAKE2B 
3bd4ddd23d0752dcaad9795041658909f8df
 DIST boto3-1.26.12.gh.tar.gz 563006 BLAKE2B 
3618532b3156029590dbfb9cabb62506bd1a945bac78cf7d4a4e95300ba6a4c9d2258801f8f69107670c57bada7cb2fb37811ad18db891c2b4d50dda257a8f28
 SHA512 
0a7d504bfcfd0f6c0a7f1ee799911e3828094d104472d150ef8ccdd8e0ecd10b25e88d845fe701bf2a93629bf0f71bf673ba07c469a76aa301fc5e9bbe3c9ece
 DIST boto3-1.26.13.gh.tar.gz 565005 BLAKE2B 
445b5d49dec5983213166c1365a38f721d945d6ff32a2c6d2fd74bf87512d5a5d5dbac5379eb0f5da10744e7e4c3993f206d2f224c9fa09723c263c615183ad0
 SHA512 
ba2948cefd0bb8befbe0de5c082c0e7de6ddd44be1e05b245ab2b4cf7bf464ac1efa37c12a9ddd6aebadb6b71ec3b8ab6f7f3038c8d538b73ff0cf3b2e1a2199
 DIST boto3-1.26.14.gh.tar.gz 565166 BLAKE2B 
271ebad718999d3986ff393c670fe495af3a37dcea2fabd8ad4c459929d50f237eaef74e0b7e18731839b8cc9562183e4d0ba3128f6407f83a4df8166e4cab58
 SHA512 
42243b3b93a84571a050e7cec5091f2a70dd8e14018a1f2e825e40761ecd9bf822ae7b35a48831259eb8007b0564254255a5899795454178a6fc4d1c8d81aa1f
+DIST boto3-1.26.15.gh.tar.gz 565491 BLAKE2B 
13435c477bb865cc3f74d0890f5bc425567e0e14d61d5784bb1297c3b233c5ed0642a6f2d0ee26e9a8268b8b5c5f61edd7af79d439eec6a0535b7604876bec6d
 SHA512 
477d0119166cb0c2c5ae42bec627718b6072be6f611b7ee885398b62e52a6f6a270d73032b4d9cf4dbd1a07cd562380e23348aac8e7bb2fed54cafa75b33896b
 DIST boto3-1.26.8.gh.tar.gz 557012 BLAKE2B 
211bb7441acc8b1f901ebf5251288dc7c9073fa6e34f5a34426424ef064efb0fb3031deaf48ef336ec43bb015f95f618598da43d12ec83cbf814e1b4097b28a0
 SHA512 
738190cedfb0b85d3a1e9558b03e7f2fb14e43b152bc9627fd95c8ecc4a0ddc17f4c87ccb6129c1fbf5f47db9eea4dbc5c2cfbb69b903bc6f3ff417ef86b6f6b

diff --git a/dev-python/boto3/boto3-1.26.15.ebuild 
b/dev-python/boto3/boto3-1.26.15.ebuild
new file mode 100644
index ..6edcc751d54b
--- /dev/null
+++ b/dev-python/boto3/boto3-1.26.15.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/boto3/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3";
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="
+   https://github.com/boto/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-11-23 Thread Michał Górny
commit: 4a4d61dd4ad8b25d1b2b0569bf67d6f7fad97537
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:47:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a4d61dd

net-wireless/blueman: Bump to 2.3.5

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

 net-wireless/blueman/Manifest |   1 +
 net-wireless/blueman/blueman-2.3.5.ebuild | 155 ++
 2 files changed, 156 insertions(+)

diff --git a/net-wireless/blueman/Manifest b/net-wireless/blueman/Manifest
index 40025274836b..743cd22bb937 100644
--- a/net-wireless/blueman/Manifest
+++ b/net-wireless/blueman/Manifest
@@ -1,3 +1,4 @@
 DIST blueman-2.3.2.tar.xz 1575412 BLAKE2B 
25fbed432e103a46840dc10d73bce4e8e7a5e7ea623dbb3a50c420d166af7eb0eff046d0fd9986869055fbb4c3f8563920fb840f8f74f37a05b6680434f13dc5
 SHA512 
13760def19951bcb4582dbe142259256826a0f50e6c34e56c61c6f890f4e2e08085733f2480ad4c95ee52ec616cbb7ddd3a946634f042d80692cd37b57207cc0
 DIST blueman-2.3.3.tar.xz 1575852 BLAKE2B 
618f789b7e411adccb986704922cf2cbe283197878232210a933530c54caf0ca3c21f08c7b2192389451988623280b63dff23c9b56a696970ec4b7f773cb47a3
 SHA512 
2c2290a5b0fb78eccd35c33ac10c5ef38f01f4074796a62fb3aeded1f5db76104d60bc02968a8144c5dae3ec8fd425d7b33beaf2a81e401a09dd3b550e2d0d2d
 DIST blueman-2.3.4.tar.xz 1575488 BLAKE2B 
382bf6c995477b31527c2702bb22c3657fc5b36476cd8dd32fb8e0e78359f8b427aeae781ca7022e58f644a3ca3c67a7e644e8dd16492fb7037d4619489c73fb
 SHA512 
8bca916567a1d72fd7c539cc200177b20723e38ec55e30358141b4dff6f7b889d5eae689ef61618fdc23ebb4d8bfbbe2d0447d04a58b769c2d898ff017001f76
+DIST blueman-2.3.5.tar.xz 1544232 BLAKE2B 
454a5369cecd429dcbff84108ef5440c61e3740d54de30e85cef941f9bd55ef3f032aa4774b161cd145eecc53061d2d104ea6d6ec12516beb2f2b3579c074ccb
 SHA512 
678261dc0a795ca79b43614f4fc6ad436b44690d0ce4dbf15f55dba4834a25a5c1956bf658d568a3318828863b3bb089689d0dc4fef8963ed2b27cf0f1144580

diff --git a/net-wireless/blueman/blueman-2.3.5.ebuild 
b/net-wireless/blueman/blueman-2.3.5.ebuild
new file mode 100644
index ..48fcfc069d2a
--- /dev/null
+++ b/net-wireless/blueman/blueman-2.3.5.ebuild
@@ -0,0 +1,155 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=no
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit autotools distutils-r1 gnome2-utils linux-info systemd xdg-utils
+
+DESCRIPTION="Simple and intuitive GTK+ Bluetooth Manager"
+HOMEPAGE="https://github.com/blueman-project/blueman/";
+
+if [[ ${PV} == "" ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/blueman-project/blueman.git";
+else
+   SRC_URI="
+   
https://github.com/blueman-project/blueman/releases/download/${PV/_/.}/${P/_/.}.tar.xz
+   "
+   S=${WORKDIR}/${P/_/.}
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+# icons are GPL-2
+# source files are mixed GPL-3+ and GPL-2+
+LICENSE="GPL-3+ GPL-2"
+SLOT="0"
+IUSE="network nls policykit pulseaudio"
+
+DEPEND="
+   $(python_gen_cond_dep '
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+   >=net-wireless/bluez-5:=
+"
+BDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/cython[${PYTHON_USEDEP}]
+   ')
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+"
+RDEPEND="
+   ${DEPEND}
+   $(python_gen_cond_dep '
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   ')
+   sys-apps/dbus
+   x11-libs/gtk+:3[introspection,X]
+   x11-libs/libnotify[introspection]
+   || (
+   x11-themes/adwaita-icon-theme
+   x11-themes/faenza-icon-theme
+   x11-themes/mate-icon-theme
+   )
+   network? (
+   net-firewall/iptables
+   || (
+   sys-apps/net-tools
+   sys-apps/iproute2
+   )
+   || (
+   net-dns/dnsmasq
+   net-misc/dhcp
+   >=net-misc/networkmanager-0.8[introspection]
+   )
+   )
+   policykit? (
+   sys-auth/polkit
+   )
+   pulseaudio? (
+   || (
+   media-sound/pulseaudio-daemon[bluetooth]
+   media-video/pipewire[bluetooth]
+   

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

2022-11-23 Thread Michał Górny
commit: 749cd710575cce64830a0fac23969b6ef2400387
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:52:19 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749cd710

dev-python/cleo: Bump to 2.0.1

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

 dev-python/cleo/Manifest  |  1 +
 dev-python/cleo/cleo-2.0.1.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/cleo/Manifest b/dev-python/cleo/Manifest
index bba90d117976..14814f035330 100644
--- a/dev-python/cleo/Manifest
+++ b/dev-python/cleo/Manifest
@@ -1,2 +1,3 @@
 DIST cleo-0.8.1.gh.tar.gz 96220 BLAKE2B 
57971f6254a31ecf5101d89e96607b5915ab5138d727279d445172b89a10acd6b76619d344973fa2bdbc320866fa1dbdf05c889f4eca879839fa6bcbbad0af7c
 SHA512 
9cd470063db9866a526f0bb8619d772c585377d5b1a662e0f94bad9fb9c853598b176444ca1ac0fadec82992196c471646504d6a28d4dcd1171433b8d160be9c
 DIST cleo-1.0.0.gh.tar.gz 154114 BLAKE2B 
7a8906b4a40c1d1a9899f2195a4e4a35a828c2ea7713df31a94e40e7e930b8624a24ff5bc219140b5e42e100f96199393c940aa1bac24991c380f2136762dbff
 SHA512 
a45af3f4ff0fc9535363bdcf265ab3d7726af99cf4b48e896f9d5fb1404721b4641f80e37a7266690a1f7d4a261cbd4c746338294ff29745f782f8657cd2bb07
+DIST cleo-2.0.1.gh.tar.gz 154222 BLAKE2B 
dcaeff38c2dcb13b3c11200aa97cb2a1c16004558aabf9b44f1ba7ddd5d9c8c7784ea0ba1c50c19b015a6ff0659cb116b8ee926670091e39fd2b1cfd426cb72a
 SHA512 
57a8e9cfc5486f73ade424199aaeb3def787a958031691aba2c6a230323d1c816316e3639dee7a07111aa0fc852d7088756f515cb24fdc84a40056ce969e5884

diff --git a/dev-python/cleo/cleo-2.0.1.ebuild 
b/dev-python/cleo/cleo-2.0.1.ebuild
new file mode 100644
index ..c3e87c88a8bd
--- /dev/null
+++ b/dev-python/cleo/cleo-2.0.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python tool for building testable command-line interfaces"
+HOMEPAGE="
+   https://github.com/python-poetry/cleo/
+   https://pypi.org/project/cleo/
+"
+SRC_URI="
+   https://github.com/python-poetry/cleo/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+
+RDEPEND="
+   dev-python/crashtest[${PYTHON_USEDEP}]
+   dev-python/rapidfuzz[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   local -x PYTEST_PLUGINS=pytest_mock
+   epytest
+}



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

2022-11-23 Thread Michał Górny
commit: 3566a5ace4de0bb5700a3ab11a436430474f25ed
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:54:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3566a5ac

dev-python/pytest-check: Bump to 1.1.3

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

 dev-python/pytest-check/Manifest  |  1 +
 dev-python/pytest-check/metadata.xml  |  2 +-
 dev-python/pytest-check/pytest-check-1.1.3.ebuild | 27 +++
 3 files changed, 29 insertions(+), 1 deletion(-)

diff --git a/dev-python/pytest-check/Manifest b/dev-python/pytest-check/Manifest
index 8680d5c35ea3..51ee5cf9 100644
--- a/dev-python/pytest-check/Manifest
+++ b/dev-python/pytest-check/Manifest
@@ -1,2 +1,3 @@
 DIST pytest-check-1.0.10.tar.gz 15603 BLAKE2B 
e51dbb2806bdac73e202b14668c76675979113f661eb339a1a3cff07069d3d4709869d67ea2cb6384483ebde8b68288026df9b7492b17ea67c79ee95e6865809
 SHA512 
dc3a80b20637eab8adda085ca8172bc3bde75bd47566972a07cf226bb38771933a531d99e139d7c220cc149715fd7d98ab964f72e0b520e8dd3df7633a6e5a90
 DIST pytest-check-1.1.2.tar.gz 19090 BLAKE2B 
25d483c29f7a357b26d6153582e9ca0a4b6f6c5c97baf9e8a12403de6993f44fa4d4eea370f1c800036062abffb68cbcf826c210f7eb32ef4fefcbfde031674f
 SHA512 
64e74e399cecc6733aeca7ca88dedb110029394548c0b3e27d0f35e034887fbb9a3d6a2da7b30e52a5fa68f535e15373173ffaf391afa02783009e5edb6637d3
+DIST pytest-check-1.1.3.tar.gz 19461 BLAKE2B 
e6ba332f3326992842a50323c6062283c3227d15526cc0f33f51a90455e7a30f0f53e96907896eeecce4a13b8e6fafcc8112eecfc844310200e107e92150d3d0
 SHA512 
af89cc90de9a72600d79947d2f771fe878dc55add754dae447afe8c0df47745842c35867ebc104825189c119858a7ddde992e91b48dab4f9e74fd71e7b55f51e

diff --git a/dev-python/pytest-check/metadata.xml 
b/dev-python/pytest-check/metadata.xml
index 5db435fa7f11..5d7827d9d2b4 100644
--- a/dev-python/pytest-check/metadata.xml
+++ b/dev-python/pytest-check/metadata.xml
@@ -12,6 +12,6 @@


okken/pytest-check
-   pytest_check
+   pytest-check

 

diff --git a/dev-python/pytest-check/pytest-check-1.1.3.ebuild 
b/dev-python/pytest-check/pytest-check-1.1.3.ebuild
new file mode 100644
index ..9a459557d506
--- /dev/null
+++ b/dev-python/pytest-check/pytest-check-1.1.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="pytest plugin that allows multiple failures per test"
+HOMEPAGE="
+   https://github.com/okken/pytest-check/
+   https://pypi.org/project/pytest-check/
+"
+SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86"
+
+RDEPEND="
+   >=dev-python/colorama-0.4.6[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2022-11-23 Thread Michał Górny
commit: 74eda12e0454c6e61574b1093e962f0efcdc0fcc
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:52:50 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74eda12e

dev-python/Faker: Bump to 15.3.3

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

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

diff --git a/dev-python/Faker/Faker-15.3.3.ebuild 
b/dev-python/Faker/Faker-15.3.3.ebuild
new file mode 100644
index ..7547e146fdbe
--- /dev/null
+++ b/dev-python/Faker/Faker-15.3.3.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="A Python package that generates fake data for you"
+HOMEPAGE="
+   https://github.com/joke2k/faker/
+   https://pypi.org/project/Faker/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/python-dateutil-2.4.2[${PYTHON_USEDEP}]
+   !dev-ruby/faker
+"
+BDEPEND="
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP},tiff]
+   dev-python/validators[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest

diff --git a/dev-python/Faker/Manifest b/dev-python/Faker/Manifest
index 9379c24c132f..576c5955a861 100644
--- a/dev-python/Faker/Manifest
+++ b/dev-python/Faker/Manifest
@@ -1,2 +1,3 @@
 DIST Faker-15.3.1.tar.gz 1598695 BLAKE2B 
8c9d8ec18cf8505eb3ca00feb0e7cea78db2f6f5b8dd4b0a65cc600b0cf57a96c174a6f0f2f99f67dab873ad6afc63f858b5f0efe672583d055eb69d59a86104
 SHA512 
8dce318ee0e8959b7f7da4b5fda792476a7b4f8bc22a2acead29131e0f6c97fb0b84522cc2865264276f65606e8559ae3213f4671e4c701301845986920ecf9d
 DIST Faker-15.3.2.tar.gz 1598951 BLAKE2B 
6f1c53933639a478aa6db933b26e326561b654cbb3d7182c7d8b1add50aaa4089ebf001553e95657baa2f434516148e40417c0265043d2a50f8e86c73556f82f
 SHA512 
96489fd02cc16ff0a31a0f165805aa4508e2f3e04552f2008b92f211c8645e37ee23a8181838f851114906e2df0da19a95c38889e6afab5d1c7cf090a9235e17
+DIST Faker-15.3.3.tar.gz 1598995 BLAKE2B 
c6416f06b835b153a2e72967a4b65b962068d027dc35a95ebdd92175f8e6330ef07f3721ca5d6ba4bb85efdc54ecedf0663f458ec8fcedd489e2871c623af3de
 SHA512 
371516d95941921f5180107beba633a40df719a38f6b752f38857be15ae7befcb602c1b3f16ccbbaa7e8aa2c6b158c70aea38a112d65234d334ce1f370c91b87



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

2022-11-23 Thread Michał Górny
commit: a6f68e9b3b5a7e840280e62d914294e44968156b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:57:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6f68e9b

dev-python/tavern: Bump to 1.24.1

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

 dev-python/tavern/Manifest |  1 +
 dev-python/tavern/tavern-1.24.1.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/tavern/Manifest b/dev-python/tavern/Manifest
index 4523f5720074..e48fbe2d0d88 100644
--- a/dev-python/tavern/Manifest
+++ b/dev-python/tavern/Manifest
@@ -1 +1,2 @@
 DIST tavern-1.24.0.gh.tar.gz 163796 BLAKE2B 
d1683bf9f62f77551155259d5627de8c5b9b7da4ec2024ac273f3ce912a004f48365ed46feadf437e7c8be38d5d17be146facc06dfc95b38ba10c24df0d28c55
 SHA512 
d0e57dcf792540028a790ec11fd1c4887f638af24ab8a716f855d5396410e780fa36dcdb175b86d26e86839478c57df32630cf9095e268ed8166069d49a6f706
+DIST tavern-1.24.1.gh.tar.gz 163938 BLAKE2B 
661160fe203e5117452e23178a74279a982cb3e4b4cdb84df074d5cd8481796cb9a05b2c5d42b225c6a2d2cf34283166d59a3242ff5df76a457d89c6acf60576
 SHA512 
9a9f7e46172a62a0dbf0c42aa0521d0fbde644f05a650dd768a32b3c8652bb17209b8073519830e52b2865bbe646825e650cce251184b85f0a5343cfd2ceb1c3

diff --git a/dev-python/tavern/tavern-1.24.1.ebuild 
b/dev-python/tavern/tavern-1.24.1.ebuild
new file mode 100644
index ..05f30e58c00e
--- /dev/null
+++ b/dev-python/tavern/tavern-1.24.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="A tool, library, and Pytest plugin for testing RESTful APIs"
+HOMEPAGE="
+   https://github.com/taverntesting/tavern/
+   https://pypi.org/project/tavern/
+"
+SRC_URI="
+   https://github.com/taverntesting/tavern/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/jmespath[${PYTHON_USEDEP}]
+   dev-python/paho-mqtt[${PYTHON_USEDEP}]
+   dev-python/pyjwt[${PYTHON_USEDEP}]
+   dev-python/pykwalify[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/python-box[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/stevedore[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/colorlog[${PYTHON_USEDEP}]
+   dev-python/Faker[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-11-23 Thread Michał Górny
commit: f5c31c01593004adc05da277e08cbaafb9fe0cc6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:08:07 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c31c01

dev-python/poetry-core: Bump to 1.4.0

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

 dev-python/poetry-core/Manifest |  1 +
 dev-python/poetry-core/poetry-core-1.4.0.ebuild | 63 +
 2 files changed, 64 insertions(+)

diff --git a/dev-python/poetry-core/Manifest b/dev-python/poetry-core/Manifest
index 3dd30e17b14b..d6149fe358d5 100644
--- a/dev-python/poetry-core/Manifest
+++ b/dev-python/poetry-core/Manifest
@@ -1 +1,2 @@
 DIST poetry-core-1.3.2.gh.tar.gz 539267 BLAKE2B 
43845f344f8b492aa5dae5608b8d67b41efab33c60999cc61d8476e08a9ec9870328174b371d0735624c5f11dd2ce15e19e2c984653c7349dd0c3a687dec0123
 SHA512 
57fca4925889bfcff9335c0f76ea0cf8b48de1cb7bdc83bab8ceee452d6a6d64c4eaa169be17fb32ee59f453256fde1191e5c36382c4be27b74b5e3c8dce7703
+DIST poetry-core-1.4.0.gh.tar.gz 556575 BLAKE2B 
6a0860f965bb7d554f1f13c46d76727b9a763dd3dc04a1d889ca894c30ad91e46931308981560fadf70348731f080322da9c9590248b7877e02eb81f4009e02a
 SHA512 
31c9b42ae8e4ec5c4cec93604a5ea72642fb89717867d7f43fdf930835c7e1da97b0251870d86841c30b1bf0ee7b167fc6a8dcfe939beb5b40acd7e24dfaede7

diff --git a/dev-python/poetry-core/poetry-core-1.4.0.ebuild 
b/dev-python/poetry-core/poetry-core-1.4.0.ebuild
new file mode 100644
index ..c76206f1717a
--- /dev/null
+++ b/dev-python/poetry-core/poetry-core-1.4.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Poetry PEP 517 Build Backend"
+HOMEPAGE="
+   https://github.com/python-poetry/poetry-core/
+   https://pypi.org/project/poetry-core/
+"
+SRC_URI="
+   https://github.com/python-poetry/poetry-core/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+# check inside src/poetry/core/_vendor/vendor.txt
+# (note that some are indirect deps)
+RDEPEND="
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/lark[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/tomlkit[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/build[${PYTHON_USEDEP}]
+   dev-python/pep517[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # These "fail" bacause of glob file path resulting from newer versions
+   # in our tree than vendored. But those don't affect anything.
+   tests/masonry/builders/test_sdist.py::test_default_with_excluded_data
+   
tests/masonry/builders/test_wheel.py::test_default_src_with_excluded_data
+)
+
+src_prepare() {
+   # remove vendoring of dependencies
+   rm -r src/poetry/core/_vendor || die
+   sed -e '/__vendor_site__/d' -i src/poetry/core/__init__.py || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # needed for migration from <1.1
+   distutils_write_namespace poetry
+   epytest
+}



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

2022-11-23 Thread Michał Górny
commit: 7ae51547365a0ee2deae8b2b7fe084f73d37fb40
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:58:58 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae51547

dev-python/cfn-lint: Bump to 0.72.0

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

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-0.72.0.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 8e5268463abe..f9d6ba51bfaa 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -6,3 +6,4 @@ DIST cfn-lint-0.70.0.gh.tar.gz 9891445 BLAKE2B 
6cdacffb2c3649203046339d088d3e41a
 DIST cfn-lint-0.70.1.gh.tar.gz 9891593 BLAKE2B 
2ee4ba8d688c3888e11e1df52ab26f554f7d13a2f46bc56b5f0d3de7912e8cd99432e7dc174f0072966fd6a586718abe5e9ab11797c5a24480ee508f8819a7df
 SHA512 
c2566ffadf5935b8dfd38eb690f406466aef4d1e0793691547479673bc2519acd8bd5b42ecfb666736c81e9cf3254601542b0a7d4b5257ca626e6e3b194c64da
 DIST cfn-lint-0.71.0.gh.tar.gz 2970400 BLAKE2B 
f57f8605a05004dfe6207a313126c74d163f4e461b4065d8ba439534b38cf9beb4d7fc11ed7736ae3c635ba3f7ab3d658f5d8278d4859bf24c987545d9105e97
 SHA512 
814e9029e221fc5a6fb9d5c687760549fe6a239ca3c9f0248a4bd307429da46ba394af49a7af1d3f52f4fdbc88ded86aa5cc42e3e46608bacb909d23e334c053
 DIST cfn-lint-0.71.1.gh.tar.gz 2984397 BLAKE2B 
faa2164ee0f469f8e9118b82d5c86dee05e5404feb5ae28abd9e4218122677dba09308d5a573c4eaabb8f321932b8de621a39bc20f1c86724dc24fedac7e7a93
 SHA512 
dee916eaa43eabcc4cf2db7fb08db8875f68292a56aa97d29d0d291da51a828a78b681162b71759ec0dc3d246570dbce8fe33a41ce61c22e6fbf2a4ff15f49ff
+DIST cfn-lint-0.72.0.gh.tar.gz 3027416 BLAKE2B 
710c403838d90de46525ce6991aa05bb973fc010b6909d329c8a59159779578f51248f823554faf1c9c9f2fd019235770f1f9ca124426ff1c79d203d7599c5c2
 SHA512 
c420ab110039c4bc761551ca8665d2c58390ffb0590adf2f8ae3beb3cc2587fae1c96e06faa5baecb6014ce68f580e8f0d285c2ad287718c15d6d6e49ca5d50b

diff --git a/dev-python/cfn-lint/cfn-lint-0.72.0.ebuild 
b/dev-python/cfn-lint/cfn-lint-0.72.0.ebuild
new file mode 100644
index ..335ae90faf41
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-0.72.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+SRC_URI="
+   https://github.com/aws-cloudformation/cfn-lint/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.54.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema_to_python-1.2.3[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/networkx[${PYTHON_USEDEP}]
+   >dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.15.0[${PYTHON_USEDEP}]
+   >=dev-python/sarif_om-1.0.4[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # TODO
+   test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_2
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+)
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i setup.py || die
+   distutils-r1_src_prepare
+}



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

2022-11-23 Thread Michał Górny
commit: d52ec74d8359efe0116f795296f855bfb6358556
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 07:45:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52ec74d

dev-python/jsonschema: Bump to 4.17.1

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

 dev-python/jsonschema/Manifest |  1 +
 dev-python/jsonschema/jsonschema-4.17.1.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-python/jsonschema/Manifest b/dev-python/jsonschema/Manifest
index 8abe954e331a..d77e37c59fe5 100644
--- a/dev-python/jsonschema/Manifest
+++ b/dev-python/jsonschema/Manifest
@@ -1,2 +1,3 @@
 DIST jsonschema-4.16.0.tar.gz 292399 BLAKE2B 
b1a78bc7dbc7cd10324638b57ebe4593afbdcbeb8d4b247aa127f41d5f6cce5e7970f5db1576e6a761357d8efe453ef514ae49f58b6624a05c4b7771daff3721
 SHA512 
c84abc992f410e9d558e2ce06c7172e9e2d298cff469baf8a23b1ea5b4777e6addfa757c5cc62b2e28e257721ee55e04bec0852e5f525adfa87392cbf712828f
 DIST jsonschema-4.17.0.tar.gz 293414 BLAKE2B 
51910903a788c5fc0fea695f40ac26c886a88a6b97e653452d11ca9b4cbe18a24fe4c28a13705f77c16c1b2342f66ac86232f9ac7c578c94f23b725580e82b17
 SHA512 
a0160caea26527e5afbba48fea7f0700e8cd0bb5cbd9661501d34f5dd9857971ca3fd9982bc17f570d0b5a08eb5ecfd0e5182f78a0e0a6343621ed8360643166
+DIST jsonschema-4.17.1.tar.gz 296586 BLAKE2B 
2d29abd1d27c216cb53363ea801f1a83aedfae66fc1cf90dd7b9cb4e9ce809e09819585a7e83c060dadc2a200c45036ec22cd35d4005757b4b8797f05daa207b
 SHA512 
5d184ea60cf313c9fa6a3e1c2891432531aa7a25a5aced8e51aac46eb67fe7fd17bc9d141faa3e52a834f9067556225cfd3a592d80867b543f0dea42983e5d04

diff --git a/dev-python/jsonschema/jsonschema-4.17.1.ebuild 
b/dev-python/jsonschema/jsonschema-4.17.1.ebuild
new file mode 100644
index ..ac11d050d26a
--- /dev/null
+++ b/dev-python/jsonschema/jsonschema-4.17.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="An implementation of JSON-Schema validation for Python"
+HOMEPAGE="
+   https://pypi.org/project/jsonschema/
+   https://github.com/python-jsonschema/jsonschema/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/attrs-17.4.0[${PYTHON_USEDEP}]
+   >=dev-python/pyrsistent-0.18.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_resources-1.4.0[${PYTHON_USEDEP}]
+   dev-python/pkgutil_resolve_name[${PYTHON_USEDEP}]
+   ' 3.8)
+"
+BDEPEND="
+   dev-python/hatch-vcs[${PYTHON_USEDEP}]
+   dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}]
+"
+
+# formatter deps
+RDEPEND+="
+   dev-python/fqdn[${PYTHON_USEDEP}]
+   dev-python/idna[${PYTHON_USEDEP}]
+   dev-python/isoduration[${PYTHON_USEDEP}]
+   >=dev-python/jsonpointer-1.13[${PYTHON_USEDEP}]
+   dev-python/rfc3339-validator[${PYTHON_USEDEP}]
+   dev-python/rfc3986-validator[${PYTHON_USEDEP}]
+   dev-python/rfc3987[${PYTHON_USEDEP}]
+   dev-python/uri_template[${PYTHON_USEDEP}]
+   >=dev-python/webcolors-1.11[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # requires pip, does not make much sense for the users
+   jsonschema/tests/test_cli.py::TestCLIIntegration::test_license
+   # fragile warning tests
+   jsonschema/tests/test_deprecations.py
+   # wtf?
+   jsonschema/tests/test_jsonschema_test_suite.py::test_suite_bug
+)



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

2022-11-23 Thread Michał Górny
commit: 051683d3d3b3e1b4eafbb1174aabdf5da88dd03f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:09:03 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051683d3

dev-python/rope: Bump to 1.5.0

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

 dev-python/rope/Manifest  |  1 +
 dev-python/rope/rope-1.5.0.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/rope/Manifest b/dev-python/rope/Manifest
index 2916e445834f..2deb9fee33e7 100644
--- a/dev-python/rope/Manifest
+++ b/dev-python/rope/Manifest
@@ -1,3 +1,4 @@
 DIST rope-1.1.1.tar.gz 274610 BLAKE2B 
52354453305ee58db70f86392f7ec27179e1e4a9ec677fb8875bb9ca24663e6dae26e1bac4a1ad62143fe3a419a7a1e1fd0b7d2f03ef556143d2b060b23300af
 SHA512 
aaf664a63ef00e3c844d6999338fe6a3384ddecfe95ef9b7eb213e5c37c9f78f7d2ea59aa7e612487bac5eaaaf7fc8ba499c0d43c740f99a7b3be64c9d7f6e07
 DIST rope-1.3.0.tar.gz 286846 BLAKE2B 
f8b122a276812638eee76cc235e91e013696f6047c450729edde1b4a5bfdd1d6aa7d1e9ac46048e8205a1f544ee82f740e0f7b20f10769a9a28065a8b9caee6b
 SHA512 
45036cfb3abbe6b00306268f62804d787a633ef8981b23553d57ea18087bfbec33be6346bb59393bb6c3b48020a2da87f759668a57ec8e809ba3666aff0dfd2c
 DIST rope-1.4.0.tar.gz 287417 BLAKE2B 
d161e571649be2df7e6012336e7bded844f98f67764740814bfccebc926ff4c5f734cdf26701c9b7cec35bf3178be1f1ebe0d86f3b60259a161d3e87125fc7d5
 SHA512 
586f6f22fdf4743f71bf7f7505ec49aaced28aff48b5eae4f731eb690edec1ff8c736e3f9f21d7732bf5ea60ced5253e8f0d224a51a6a9bfdf7dd50ab56733ea
+DIST rope-1.5.0.tar.gz 287817 BLAKE2B 
fcaf2b9bb1e9e7fd7ad1b433188d9a4d78dbca5af910bce745ecfd8bb32d485d3fe3c85acc4e251e9295422f7a2c0a8d57088f36d5c9d56c72a35dc7eb60d340
 SHA512 
0fa16d78f2c39bbba5f1559adb83602019d7efb819d4c5b7964f7230af58d21bff1352cb1bdb2e73c5f2e506c8a9aea46d5ccbb412f929d4a0bc21bd28c9f5d6

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



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

2022-11-23 Thread Michał Górny
commit: 149e66d06e3d6da0009f6754dd9a1d2d3f3fbeed
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:14:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=149e66d0

dev-python/croniter: Bump to 1.3.8

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

 dev-python/croniter/Manifest  |  1 +
 dev-python/croniter/croniter-1.3.8.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/croniter/Manifest b/dev-python/croniter/Manifest
index 19051712e68d..8b84f5fe7a01 100644
--- a/dev-python/croniter/Manifest
+++ b/dev-python/croniter/Manifest
@@ -1 +1,2 @@
 DIST croniter-1.3.7.tar.gz 38853 BLAKE2B 
2a05a023300a1e90824fdfe444eb1b2e43889c99d5b070329fc9f11c9e1807c4bb81a0c27c17d3aa92130d91c949e8515b76c7d927a5c583a3a86172f24be446
 SHA512 
c0157fc3d5b88ae66ee9871bc9e18b835a71f2fe85d66b9e92b05329652e150bdd823976a495b30e62050fa21d3353cffb090c8c99b74f79eba6dfa87ffcb11a
+DIST croniter-1.3.8.tar.gz 38982 BLAKE2B 
2b28c7e4e991e9525f073a00ba3b346144ed6d353e95509c1fac47ddf56c645edaaa3927f8ca6615a94d37cd6926c26cd1514a25520a48b39c3028ef79ac0337
 SHA512 
c0216aedd594f07a9e2fef0f8f4406ad2037f1d4543f9414598e0f2ef81a61615554b1f779ce4e75d36cd5e80def3a29ee57e88c15d5d70da06ac2b861ead5cf

diff --git a/dev-python/croniter/croniter-1.3.8.ebuild 
b/dev-python/croniter/croniter-1.3.8.ebuild
new file mode 100644
index ..07402f10627d
--- /dev/null
+++ b/dev-python/croniter/croniter-1.3.8.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module to provide iteration for datetime object"
+HOMEPAGE="
+   https://github.com/kiorky/croniter/
+   https://pypi.org/project/croniter/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/python-dateutil[${PYTHON_USEDEP}]"
+BDEPEND="
+   test? (
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/tzlocal[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-11-23 Thread Michał Górny
commit: 857eaee11937d60a08301db6cad7ba7fb0522c39
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:12:36 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857eaee1

dev-python/sentry-sdk: Bump to 1.11.1

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

 dev-python/sentry-sdk/Manifest |   1 +
 dev-python/sentry-sdk/sentry-sdk-1.11.1.ebuild | 100 +
 2 files changed, 101 insertions(+)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index 0cc2435843c0..b24efd740c37 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -1,3 +1,4 @@
 DIST sentry-sdk-1.10.1.gh.tar.gz 292186 BLAKE2B 
03181c0118294d4221b176b1e4fd38b4b2147a3a1b6eae709153f92717da77e889d17e715ad1795c8d9bdf24ed2ca5718a88b4f3fa25d240ec8e5804d1041a56
 SHA512 
135dff6db284439812d74b54f301ba0ce25444f71ad0b7d3ff8869399dba97affa40673fd306960bc6665118e0aabd1a3420976effc9a501d51d9f2174d615f4
 DIST sentry-sdk-1.11.0.gh.tar.gz 296421 BLAKE2B 
4a7052a47bfa3e8a5b285c0c4845ca04fee1a9bba360920bcff8b1527714f504eb27be6d2d5466eb96759e17fc11824723825f4468b0d86ace040605b9043e18
 SHA512 
d966ebec2438d537d54da7db152f13691a67946add50357a5084f257ab5a29bb52bcf08a786a7906efac5509f5c075fd19ea0d7a04344fd2ddc216473162d809
+DIST sentry-sdk-1.11.1.gh.tar.gz 296633 BLAKE2B 
8325b75d58bb4c587c5d27698b775a76aaf840fc69a910567243fcac2d6fbb7fe00fbfe008c70fc5b67d999167cc3474e5a18817832dfe2c768ffc750c7af128
 SHA512 
9fd3e1aa9a7287ae21d1a7274f12b9d309d95615e5611ee098c8e2d0577f7c3928a6d5c7256b18d4f0de0ac48d44eb9e38f94709e8982a0c09a5b1cfb5dba114
 DIST sentry-sdk-1.9.10.gh.tar.gz 282661 BLAKE2B 
dbecfafafebb52f288ff977dc39b7268c0cd7fc78a643139b9baf9345eb216842bad426e860914dad325096306dc515bf48ddfb26f524c95c718787ecadce3e1
 SHA512 
293f38335692fe6ec215d470b436d2a8ae49ac8471722c555405e920a41d2d591682c956bb01ad43bb3705566353a878f8fabfe74248716e9cf5a2ea2c172649

diff --git a/dev-python/sentry-sdk/sentry-sdk-1.11.1.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-1.11.1.ebuild
new file mode 100644
index ..915dca6cddc6
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-1.11.1.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for Sentry"
+HOMEPAGE="
+   https://sentry.io/
+   https://github.com/getsentry/sentry-python/
+   https://pypi.org/project/sentry-sdk/
+"
+SRC_URI="
+   https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/sentry-python-${PV}"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   dev-python/certifi[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/asttokens[${PYTHON_USEDEP}]
+   dev-python/django[${PYTHON_USEDEP}]
+   dev-python/executing[${PYTHON_USEDEP}]
+   dev-python/fakeredis[${PYTHON_USEDEP}]
+   dev-python/flask-login[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pyrsistent[${PYTHON_USEDEP}]
+   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
+   dev-python/pytest-django[${PYTHON_USEDEP}]
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   dev-python/werkzeug[${PYTHON_USEDEP}]
+   dev-python/zope-event[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # tests require Internet access
+   tests/integrations/httpx/test_httpx.py
+   tests/integrations/requests/test_requests.py
+   tests/integrations/stdlib/test_httplib.py
+   tests/integrations/flask/test_flask.py
+   tests/integrations/django/test_basic.py
+   # wtf is it supposed to do?!
+   tests/integrations/gcp/test_gcp.py
+   # broken by rq-1.10.1 (optional dep)
+   tests/integrations/rq/test_rq.py
+   # fastapi is not packaged
+   tests/integrations/asgi/test_fastapi.py
+   # TODO
+   tests/integrations/bottle
+   # TODO: causes breakage in other tests
+   tests/integrations/starlette
+   # TODO
+   tests/integrations/tornado
+   # requires mockupdb
+   tests/integrations/pymongo
+)
+
+EPYTEST_DESELECT=(
+   # hangs
+   'tests/test_transport.py::test_transport_works'
+   # TODO
+   
'tests/test_basics.py::test_auto_enabling_integrations_catches_import_error'
+   tests/test_client.py::test_databag_depth_stripping
+   tests/test_client.py::test_databag_string_stripping
+   tests/test_client.py::test_databag_breadth_stripp

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

2022-11-23 Thread Michał Górny
commit: 535dd1473a26b98eb89b14c0ce6c2fa917754266
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:15:44 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:41:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=535dd147

dev-python/pytest-rerunfailures: Bump to 10.3

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

 dev-python/pytest-rerunfailures/Manifest   |  1 +
 .../pytest-rerunfailures-10.3.ebuild   | 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/pytest-rerunfailures/Manifest 
b/dev-python/pytest-rerunfailures/Manifest
index 08538aa9aab2..3000b82a0e6b 100644
--- a/dev-python/pytest-rerunfailures/Manifest
+++ b/dev-python/pytest-rerunfailures/Manifest
@@ -1 +1,2 @@
 DIST pytest-rerunfailures-10.2.tar.gz 15863 BLAKE2B 
9f317f3a39ac234e145a14d532d2727bb9fb5fead65c05372cf95268e0f589f9de994cd3c47e75dcb354c996595698c43fccdea5134d2e1921429c8ea7b71451
 SHA512 
8830610276e2cc172ee372ae4d8376bc6329138751ea2737a4def6af32d05c112c872a7a180ff554018058c05ed0d109927dbac61f748586257e40b0243f03c8
+DIST pytest-rerunfailures-10.3.tar.gz 15852 BLAKE2B 
1063f55f4145eff4db22f121620cb3a53ad8cd0c44580578bd5027c4bd8005af6d33e0da8d67fceb7b8abe91f22c591e7b42b7a810cb5c7d8b5668b0a48eb3f2
 SHA512 
30ebafdb221d7ff8c46d50795b1a342b55293eaf60f5a012c631e2333dcf3114bfc4ed5210705edba4ad33a8f215ce7b5988362750149fc5e9463e4c3fa93860

diff --git a/dev-python/pytest-rerunfailures/pytest-rerunfailures-10.3.ebuild 
b/dev-python/pytest-rerunfailures/pytest-rerunfailures-10.3.ebuild
new file mode 100644
index ..db19fb8cb3d3
--- /dev/null
+++ b/dev-python/pytest-rerunfailures/pytest-rerunfailures-10.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="pytest plugin to re-run tests to eliminate flaky failures"
+HOMEPAGE="
+   https://github.com/pytest-dev/pytest-rerunfailures/
+   https://pypi.org/project/pytest-rerunfailures/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MPL-2.0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/packaging-17.1[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   local -x PYTEST_PLUGINS=pytest_rerunfailures
+   epytest
+}



[gentoo-commits] repo/gentoo:master commit in: sec-keys/openpgp-keys-apache-tomcat/

2022-11-23 Thread Miroslav Šulc
commit: dfdabca48548791ecd4e65f5bfb3f57d1d45502a
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Nov 23 07:29:18 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 08:53:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfdabca4

sec-keys/openpgp-keys-apache-tomcat: add 8.5.84

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 sec-keys/openpgp-keys-apache-tomcat/Manifest |  1 +
 .../openpgp-keys-apache-tomcat-8.5.84.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/sec-keys/openpgp-keys-apache-tomcat/Manifest 
b/sec-keys/openpgp-keys-apache-tomcat/Manifest
index cafa80965ecb..2ae8f0f8d79f 100644
--- a/sec-keys/openpgp-keys-apache-tomcat/Manifest
+++ b/sec-keys/openpgp-keys-apache-tomcat/Manifest
@@ -1,2 +1,3 @@
 DIST openpgp-keys-apache-tomcat-10.1.2-KEYS.asc 29066 BLAKE2B 
72cc4f65649cf9b0118936d3af7d122833aa3a8f55c13457e1656acaf0c0081fc0e2a276891ce7701cb672b69497dfe9bf21a39b08319d896c138abcd6c50afc
 SHA512 
ced5f5251dfda8b5accd3278ff54df8038bdf1c2dc7a07abd2c2366167d9bc5788e26d2a8036649b9a6498d2c0008af4829103724e76a6cfd29b262a70037444
+DIST openpgp-keys-apache-tomcat-8.5.84-KEYS.asc 45686 BLAKE2B 
77604cd61e33efa2df702a992bc27cdb2060da1714c00bc75ee0438e1374d7b63a9a02c7aaa917fa982c0c8112bf29974b03a46e78146c9d51c360bc6343b898
 SHA512 
44f3063f5ada8d7e4be644b6d9cafc79b9c4e03d58f6843da20782ea945832d3d70ed02e4ad26594f97b30d2b77bf2339fbe11e671a0772ca3bfbef7db533210
 DIST openpgp-keys-apache-tomcat-9.0.69-KEYS.asc 14008 BLAKE2B 
62f0f6bf0d89a3930df668c039c69c4b2648128079a4d420f4f0c8a1b4c228ca5c631f3d2f66745a7c4d8c85e98609dc4119bc224306d972f65ab432385a1231
 SHA512 
51ad85d42824d22ace66ce262df598d55efe11caad7f6e5c9d09377a80431013711a0243fb0dc1f7a4bf3aa24ed77024a311aa77277743b784e3ef6a946e

diff --git 
a/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-8.5.84.ebuild 
b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-8.5.84.ebuild
new file mode 100644
index ..f01bcf52a65d
--- /dev/null
+++ 
b/sec-keys/openpgp-keys-apache-tomcat/openpgp-keys-apache-tomcat-8.5.84.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="OpenPGP keys used by tomcat.apache.org"
+HOMEPAGE="https://tomcat.apache.org/download-80.cgi";
+SRC_URI="https://downloads.apache.org/tomcat/tomcat-$(ver_cut 1)/v${PV}/KEYS 
-> ${P}-KEYS.asc"
+
+LICENSE="public-domain"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+S="${WORKDIR}"
+
+src_install() {
+   local files=( ${A} )
+   insinto /usr/share/openpgp-keys
+   newins - tomcat-${PV}.apache.org.asc < <(cat 
"${files[@]/#/${DISTDIR}/}" || die)
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-el-api/

2022-11-23 Thread Miroslav Šulc
commit: f2a6a8c266a44885d57e1c498aca6c1e65f8cbb4
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Nov 23 07:40:16 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 08:53:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2a6a8c2

dev-java/tomcat-el-api: add 8.5.84

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/tomcat-el-api/Manifest|  2 ++
 dev-java/tomcat-el-api/tomcat-el-api-8.5.84.ebuild | 40 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-java/tomcat-el-api/Manifest b/dev-java/tomcat-el-api/Manifest
index d6ed0111fb47..7209a7ab6604 100644
--- a/dev-java/tomcat-el-api/Manifest
+++ b/dev-java/tomcat-el-api/Manifest
@@ -3,6 +3,8 @@ DIST apache-tomcat-10.1.1-src.tar.gz 6061845 BLAKE2B 
c0069d47dd51b35ed6817576a4d
 DIST apache-tomcat-10.1.2-src.tar.gz 6063352 BLAKE2B 
960feb80afd12249301414786d7e502c5f87f78f609dd1335fee4cd8767b7600062ebdd34e6e09735e6c28e1c3eb99d49098917ea720a92bac5f67901f509026
 SHA512 
446acee71c4a0588cf0d004a35ff107dcbcd7f2e2675cf59bd487aad16768e7e06a41ee56fe58448dde7f518bd9d44cfc70136d1b25dba2fcee6e60b3b191655
 DIST apache-tomcat-10.1.2-src.tar.gz.asc 849 BLAKE2B 
bb90cb53af6c5725f2bacbdd1e9a35c859803ccba5dc9355d61b02b6b2b4c41593b43f95fff878f295ec8dcd652b36d9245e710b6976ac3157a2fa02cbebef05
 SHA512 
d1dbd81d2df81430c4fbdfb57e2c1b37295004d89a77542d7cde51eaa3149835941859573d523e9803be7e6aa3a1bb4c008bfdeed45429a76d1b19d6700cbc10
 DIST apache-tomcat-8.5.83-src.tar.gz 6025934 BLAKE2B 
29df8c53819d90abf1b1bda3f5c3e6013c354ee847760849d83a5e7ec4a39688f25cc5f8226fe37c235e717761de123e4e480ae834e8f9f37a5c6b5819b9823d
 SHA512 
26dcb71025ab714a4fc78379aeb026e88d1de1b5c268a4a3f753a122127aa738a9b40b2d743799db70c0364d8eb786f0fe3ec9733e8ccf1f22f88ea34d68318f
+DIST apache-tomcat-8.5.84-src.tar.gz 6027185 BLAKE2B 
8637f65653ae025448d7ce3a96839825d5ec6b77a06fc8a410ff4de786af140deaf00cedc5c9de00172c9cc759a7728521a2384d722bdf63dcfc71aedec7308f
 SHA512 
5224ee4d6c61ed1975fd7a20814eb53b3b5a3d88b31fd3227a94fcc261274aa69f992f161e14217dadea476e4720b7f0a24c733346533d5873206b899ee86695
+DIST apache-tomcat-8.5.84-src.tar.gz.asc 849 BLAKE2B 
eeeb4c22190c9bb5c087db86807b194ef87d8a03d399cbc36e910dc3cf6f28c845efde4d3748eb8a362d06e870724869acf259b3e75cf892ca72fbea4a4bf943
 SHA512 
6f2478da242a49a72b0ebb9e51f17e681f84228d69cb9b7119ca9c772032c3fb5112f908077a200d5286b2170ac1529914c7682d5ed97ac58d3b8ff6baf00bf2
 DIST apache-tomcat-9.0.68-src.tar.gz 6212265 BLAKE2B 
21a7772c0473c016486b4b90c005b65613e79739cf68eaa0c0a0e83c30016f49921816893f8babe42b462538c47bc776630812526c330e7c6360f02a719574cd
 SHA512 
63bb2c42f683c4c5e362b19bda046de172382714e80298106c61cc728feea9681b568450f04cb95d6cae08e5a71933c7755b9b81b706c46d63f4683c2a3a96be
 DIST apache-tomcat-9.0.69-src.tar.gz 6214949 BLAKE2B 
21387c7dbc830c5292d5ea315bf93c2faac2160dd21e8524184495e34cee0739ef57ce77ba46c99a64f7389047da431cffe000da9a5db2aabd481e84f149153f
 SHA512 
8178ef757d8a8a04b87a08e0a5d45e2d244fe0c0fd11b8f6b50182da1811758b7e4b1ea52188e4b241278c32737c0f61ed93d53b5a95075ebabb9209fe57a3b1
 DIST apache-tomcat-9.0.69-src.tar.gz.asc 833 BLAKE2B 
e4002185d7054ff963d0ecb1373afb2affb4795281bd344fa5b707e45dac4c6168cc2365853923a0cca1b5c21806554987513177ed64e01d7905f5d46ee9c581
 SHA512 
7d9ea8ac9986303bf649781524dd93db22c9ab1101a50be9aad7b4b65f902640b24462117047ddeba99b3652d63e980deaa232f6b93aff2266887a183059ff8f

diff --git a/dev-java/tomcat-el-api/tomcat-el-api-8.5.84.ebuild 
b/dev-java/tomcat-el-api/tomcat-el-api-8.5.84.ebuild
new file mode 100644
index ..19c8e403f1e4
--- /dev/null
+++ b/dev-java/tomcat-el-api/tomcat-el-api-8.5.84.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+MAVEN_ID="org.apache.tomcat:tomcat-el-api:8.5.84"
+
+inherit java-pkg-2 java-pkg-simple verify-sig
+
+DESCRIPTION="Tomcat's EL API 3.0 implementation"
+HOMEPAGE="https://tomcat.apache.org/";
+SRC_URI="mirror://apache/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz
+   verify-sig? ( https://downloads.apache.org/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz.asc )"
+
+LICENSE="Apache-2.0"
+SLOT="3.0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+
+DEPEND=">=virtual/jdk-1.8:*"
+RDEPEND=">=virtual/jre-1.8:*"
+
+BDEPEND="verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-${PV}:${PV} )"
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/tomcat-${PV}.apache.org.asc"
+
+S="${WORKDIR}/apache-tomcat-${PV}-src"
+
+JAVA_RESOURCE_DIRS="resources"
+JAVA_SRC_DIR="java/javax/el"
+
+src_prepare() {
+   default
+   # remove anything related to "el" or "jsp"
+   find java/javax \( -name 'jsp' -o -name 'servlet' \) \
+   -exec rm -rf {} + || die "removing jsp failed"
+
+   mkdir reso

[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-jsp-api/

2022-11-23 Thread Miroslav Šulc
commit: 399c10fc346de8e94646580b298878891ee21d08
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Nov 23 08:03:21 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 08:53:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=399c10fc

dev-java/tomcat-jsp-api: add 8.5.84

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/28395
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/tomcat-jsp-api/Manifest   |  2 +
 .../tomcat-jsp-api/tomcat-jsp-api-8.5.84.ebuild| 47 ++
 2 files changed, 49 insertions(+)

diff --git a/dev-java/tomcat-jsp-api/Manifest b/dev-java/tomcat-jsp-api/Manifest
index d6ed0111fb47..7209a7ab6604 100644
--- a/dev-java/tomcat-jsp-api/Manifest
+++ b/dev-java/tomcat-jsp-api/Manifest
@@ -3,6 +3,8 @@ DIST apache-tomcat-10.1.1-src.tar.gz 6061845 BLAKE2B 
c0069d47dd51b35ed6817576a4d
 DIST apache-tomcat-10.1.2-src.tar.gz 6063352 BLAKE2B 
960feb80afd12249301414786d7e502c5f87f78f609dd1335fee4cd8767b7600062ebdd34e6e09735e6c28e1c3eb99d49098917ea720a92bac5f67901f509026
 SHA512 
446acee71c4a0588cf0d004a35ff107dcbcd7f2e2675cf59bd487aad16768e7e06a41ee56fe58448dde7f518bd9d44cfc70136d1b25dba2fcee6e60b3b191655
 DIST apache-tomcat-10.1.2-src.tar.gz.asc 849 BLAKE2B 
bb90cb53af6c5725f2bacbdd1e9a35c859803ccba5dc9355d61b02b6b2b4c41593b43f95fff878f295ec8dcd652b36d9245e710b6976ac3157a2fa02cbebef05
 SHA512 
d1dbd81d2df81430c4fbdfb57e2c1b37295004d89a77542d7cde51eaa3149835941859573d523e9803be7e6aa3a1bb4c008bfdeed45429a76d1b19d6700cbc10
 DIST apache-tomcat-8.5.83-src.tar.gz 6025934 BLAKE2B 
29df8c53819d90abf1b1bda3f5c3e6013c354ee847760849d83a5e7ec4a39688f25cc5f8226fe37c235e717761de123e4e480ae834e8f9f37a5c6b5819b9823d
 SHA512 
26dcb71025ab714a4fc78379aeb026e88d1de1b5c268a4a3f753a122127aa738a9b40b2d743799db70c0364d8eb786f0fe3ec9733e8ccf1f22f88ea34d68318f
+DIST apache-tomcat-8.5.84-src.tar.gz 6027185 BLAKE2B 
8637f65653ae025448d7ce3a96839825d5ec6b77a06fc8a410ff4de786af140deaf00cedc5c9de00172c9cc759a7728521a2384d722bdf63dcfc71aedec7308f
 SHA512 
5224ee4d6c61ed1975fd7a20814eb53b3b5a3d88b31fd3227a94fcc261274aa69f992f161e14217dadea476e4720b7f0a24c733346533d5873206b899ee86695
+DIST apache-tomcat-8.5.84-src.tar.gz.asc 849 BLAKE2B 
eeeb4c22190c9bb5c087db86807b194ef87d8a03d399cbc36e910dc3cf6f28c845efde4d3748eb8a362d06e870724869acf259b3e75cf892ca72fbea4a4bf943
 SHA512 
6f2478da242a49a72b0ebb9e51f17e681f84228d69cb9b7119ca9c772032c3fb5112f908077a200d5286b2170ac1529914c7682d5ed97ac58d3b8ff6baf00bf2
 DIST apache-tomcat-9.0.68-src.tar.gz 6212265 BLAKE2B 
21a7772c0473c016486b4b90c005b65613e79739cf68eaa0c0a0e83c30016f49921816893f8babe42b462538c47bc776630812526c330e7c6360f02a719574cd
 SHA512 
63bb2c42f683c4c5e362b19bda046de172382714e80298106c61cc728feea9681b568450f04cb95d6cae08e5a71933c7755b9b81b706c46d63f4683c2a3a96be
 DIST apache-tomcat-9.0.69-src.tar.gz 6214949 BLAKE2B 
21387c7dbc830c5292d5ea315bf93c2faac2160dd21e8524184495e34cee0739ef57ce77ba46c99a64f7389047da431cffe000da9a5db2aabd481e84f149153f
 SHA512 
8178ef757d8a8a04b87a08e0a5d45e2d244fe0c0fd11b8f6b50182da1811758b7e4b1ea52188e4b241278c32737c0f61ed93d53b5a95075ebabb9209fe57a3b1
 DIST apache-tomcat-9.0.69-src.tar.gz.asc 833 BLAKE2B 
e4002185d7054ff963d0ecb1373afb2affb4795281bd344fa5b707e45dac4c6168cc2365853923a0cca1b5c21806554987513177ed64e01d7905f5d46ee9c581
 SHA512 
7d9ea8ac9986303bf649781524dd93db22c9ab1101a50be9aad7b4b65f902640b24462117047ddeba99b3652d63e980deaa232f6b93aff2266887a183059ff8f

diff --git a/dev-java/tomcat-jsp-api/tomcat-jsp-api-8.5.84.ebuild 
b/dev-java/tomcat-jsp-api/tomcat-jsp-api-8.5.84.ebuild
new file mode 100644
index ..2e2c3ccf79cd
--- /dev/null
+++ b/dev-java/tomcat-jsp-api/tomcat-jsp-api-8.5.84.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+MAVEN_ID="org.apache.tomcat:tomcat-jsp-api:8.5.84"
+
+inherit java-pkg-2 java-pkg-simple verify-sig
+
+DESCRIPTION="Tomcat's JSP API 2.3 implementation"
+HOMEPAGE="https://tomcat.apache.org/";
+SRC_URI="mirror://apache/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz
+   verify-sig? ( https://downloads.apache.org/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz.asc )"
+
+LICENSE="Apache-2.0"
+SLOT="2.3"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+
+CP_DEPEND="
+   ~dev-java/tomcat-el-api-${PV}:3.0
+   ~dev-java/tomcat-servlet-api-${PV}:3.1
+"
+
+DEPEND="
+   >=virtual/jdk-1.8:*
+   ${CP_DEPEND}"
+
+RDEPEND="
+   >=virtual/jre-1.8:*
+   ${CP_DEPEND}"
+
+BDEPEND="verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-${PV}:${PV} )"
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/tomcat-${PV}.apache.org.asc"
+
+S="${WORKDIR}/apache-tomcat-${PV}-src"
+
+JAVA_RESOURCE_DIRS="resources"
+JAVA_SRC_DIR="java/javax/ser

[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2022-11-23 Thread Miroslav Šulc
commit: 960b5340e00ec56d7ec303e98f72fd44fb635c11
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Nov 23 07:50:17 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 08:53:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=960b5340

dev-java/tomcat-servlet-api: add 8.5.84

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/tomcat-servlet-api/Manifest   |  2 +
 .../tomcat-servlet-api-8.5.84.ebuild   | 49 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-java/tomcat-servlet-api/Manifest 
b/dev-java/tomcat-servlet-api/Manifest
index f1e008c953d8..8075fd03f320 100644
--- a/dev-java/tomcat-servlet-api/Manifest
+++ b/dev-java/tomcat-servlet-api/Manifest
@@ -7,6 +7,8 @@ DIST apache-tomcat-5.5.36-src.tar.gz 3743113 BLAKE2B 
dbfcfd123a23b0ceb9f1fdd936e
 DIST apache-tomcat-6.0.53-src.tar.gz 3522914 BLAKE2B 
054b097c16861abaa8bdbeba713b49bc1dfcff573bb3f4bd0ff5807c33a2a0fb991af618f6e11e5b3ce3fa55c589fc6569342cab5d5a00349c79bc7061d81e40
 SHA512 
915a0a18f5c2883625c9441eed6465973eff4f6bf41e08e925c7edaea89ef8f6ee9476d3e06fa38228d4bcb4decaf53e3a7bdb7ec7e899e6250db3e12a9f5f2c
 DIST apache-tomcat-7.0.109-src.tar.gz 5314401 BLAKE2B 
56583caea6879bf8ca5cc02a886de3d7af413032f88d367653e709dc1c8f590e78620c788317bbff4b6e65dd3e242cc26863164ac8e7c87334a22636f3ed0703
 SHA512 
ecf9c0bee0e3e1aa24f299fe633705c5a2f6aa264d9e4968cfc96aa5d0a425c2b0ff07765a8b6c67221766733bdfaed6e6c6377a8d0870d889e7063ce90a46ce
 DIST apache-tomcat-8.5.83-src.tar.gz 6025934 BLAKE2B 
29df8c53819d90abf1b1bda3f5c3e6013c354ee847760849d83a5e7ec4a39688f25cc5f8226fe37c235e717761de123e4e480ae834e8f9f37a5c6b5819b9823d
 SHA512 
26dcb71025ab714a4fc78379aeb026e88d1de1b5c268a4a3f753a122127aa738a9b40b2d743799db70c0364d8eb786f0fe3ec9733e8ccf1f22f88ea34d68318f
+DIST apache-tomcat-8.5.84-src.tar.gz 6027185 BLAKE2B 
8637f65653ae025448d7ce3a96839825d5ec6b77a06fc8a410ff4de786af140deaf00cedc5c9de00172c9cc759a7728521a2384d722bdf63dcfc71aedec7308f
 SHA512 
5224ee4d6c61ed1975fd7a20814eb53b3b5a3d88b31fd3227a94fcc261274aa69f992f161e14217dadea476e4720b7f0a24c733346533d5873206b899ee86695
+DIST apache-tomcat-8.5.84-src.tar.gz.asc 849 BLAKE2B 
eeeb4c22190c9bb5c087db86807b194ef87d8a03d399cbc36e910dc3cf6f28c845efde4d3748eb8a362d06e870724869acf259b3e75cf892ca72fbea4a4bf943
 SHA512 
6f2478da242a49a72b0ebb9e51f17e681f84228d69cb9b7119ca9c772032c3fb5112f908077a200d5286b2170ac1529914c7682d5ed97ac58d3b8ff6baf00bf2
 DIST apache-tomcat-9.0.68-src.tar.gz 6212265 BLAKE2B 
21a7772c0473c016486b4b90c005b65613e79739cf68eaa0c0a0e83c30016f49921816893f8babe42b462538c47bc776630812526c330e7c6360f02a719574cd
 SHA512 
63bb2c42f683c4c5e362b19bda046de172382714e80298106c61cc728feea9681b568450f04cb95d6cae08e5a71933c7755b9b81b706c46d63f4683c2a3a96be
 DIST apache-tomcat-9.0.69-src.tar.gz 6214949 BLAKE2B 
21387c7dbc830c5292d5ea315bf93c2faac2160dd21e8524184495e34cee0739ef57ce77ba46c99a64f7389047da431cffe000da9a5db2aabd481e84f149153f
 SHA512 
8178ef757d8a8a04b87a08e0a5d45e2d244fe0c0fd11b8f6b50182da1811758b7e4b1ea52188e4b241278c32737c0f61ed93d53b5a95075ebabb9209fe57a3b1
 DIST apache-tomcat-9.0.69-src.tar.gz.asc 833 BLAKE2B 
e4002185d7054ff963d0ecb1373afb2affb4795281bd344fa5b707e45dac4c6168cc2365853923a0cca1b5c21806554987513177ed64e01d7905f5d46ee9c581
 SHA512 
7d9ea8ac9986303bf649781524dd93db22c9ab1101a50be9aad7b4b65f902640b24462117047ddeba99b3652d63e980deaa232f6b93aff2266887a183059ff8f

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.84.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.84.ebuild
new file mode 100644
index ..d84a51e0b43c
--- /dev/null
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-8.5.84.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+MAVEN_ID="org.apache.tomcat:tomcat-servlet-api:8.5.84"
+
+inherit java-pkg-2 java-pkg-simple verify-sig
+
+DESCRIPTION="Tomcat's Servlet API 3.1 implementation"
+HOMEPAGE="https://tomcat.apache.org/";
+SRC_URI="mirror://apache/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz
+   verify-sig? ( https://downloads.apache.org/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz.asc )"
+
+LICENSE="Apache-2.0"
+SLOT="3.1"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+
+# we can't use the exact same version of el as tomcat 9 implements the same 
slot and
+# it would prevent from installing both tomcat 8.5 and 9 at the same time
+CP_DEPEND=">=dev-java/tomcat-el-api-${PV}:3.0"
+
+DEPEND="
+   >=virtual/jdk-1.8:*
+   ${CP_DEPEND}"
+
+RDEPEND="
+   >=virtual/jre-1.8:*
+   ${CP_DEPEND}"
+
+BDEPEND="verify-sig? ( ~sec-keys/openpgp-keys-apache-tomcat-${PV}:${PV} )"
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}/usr/share/openpgp-keys/tomcat-${PV}.apache.org.asc

[gentoo-commits] repo/gentoo:master commit in: www-servers/tomcat/

2022-11-23 Thread Miroslav Šulc
commit: 1eb38c3d8d9ba040f3665f58a00f2467fd09a226
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Nov 23 08:53:33 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 08:53:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb38c3d

www-servers/tomcat: bump to 8.5.84, added verify-sig

Signed-off-by: Miroslav Šulc  gentoo.org>

 www-servers/tomcat/Manifest |   2 +
 www-servers/tomcat/tomcat-8.5.84.ebuild | 171 
 2 files changed, 173 insertions(+)

diff --git a/www-servers/tomcat/Manifest b/www-servers/tomcat/Manifest
index 9214cd583929..f3e77702cda1 100644
--- a/www-servers/tomcat/Manifest
+++ b/www-servers/tomcat/Manifest
@@ -3,6 +3,8 @@ DIST apache-tomcat-10.1.1-src.tar.gz 6061845 BLAKE2B 
c0069d47dd51b35ed6817576a4d
 DIST apache-tomcat-10.1.2-src.tar.gz 6063352 BLAKE2B 
960feb80afd12249301414786d7e502c5f87f78f609dd1335fee4cd8767b7600062ebdd34e6e09735e6c28e1c3eb99d49098917ea720a92bac5f67901f509026
 SHA512 
446acee71c4a0588cf0d004a35ff107dcbcd7f2e2675cf59bd487aad16768e7e06a41ee56fe58448dde7f518bd9d44cfc70136d1b25dba2fcee6e60b3b191655
 DIST apache-tomcat-10.1.2-src.tar.gz.asc 849 BLAKE2B 
bb90cb53af6c5725f2bacbdd1e9a35c859803ccba5dc9355d61b02b6b2b4c41593b43f95fff878f295ec8dcd652b36d9245e710b6976ac3157a2fa02cbebef05
 SHA512 
d1dbd81d2df81430c4fbdfb57e2c1b37295004d89a77542d7cde51eaa3149835941859573d523e9803be7e6aa3a1bb4c008bfdeed45429a76d1b19d6700cbc10
 DIST apache-tomcat-8.5.83-src.tar.gz 6025934 BLAKE2B 
29df8c53819d90abf1b1bda3f5c3e6013c354ee847760849d83a5e7ec4a39688f25cc5f8226fe37c235e717761de123e4e480ae834e8f9f37a5c6b5819b9823d
 SHA512 
26dcb71025ab714a4fc78379aeb026e88d1de1b5c268a4a3f753a122127aa738a9b40b2d743799db70c0364d8eb786f0fe3ec9733e8ccf1f22f88ea34d68318f
+DIST apache-tomcat-8.5.84-src.tar.gz 6027185 BLAKE2B 
8637f65653ae025448d7ce3a96839825d5ec6b77a06fc8a410ff4de786af140deaf00cedc5c9de00172c9cc759a7728521a2384d722bdf63dcfc71aedec7308f
 SHA512 
5224ee4d6c61ed1975fd7a20814eb53b3b5a3d88b31fd3227a94fcc261274aa69f992f161e14217dadea476e4720b7f0a24c733346533d5873206b899ee86695
+DIST apache-tomcat-8.5.84-src.tar.gz.asc 849 BLAKE2B 
eeeb4c22190c9bb5c087db86807b194ef87d8a03d399cbc36e910dc3cf6f28c845efde4d3748eb8a362d06e870724869acf259b3e75cf892ca72fbea4a4bf943
 SHA512 
6f2478da242a49a72b0ebb9e51f17e681f84228d69cb9b7119ca9c772032c3fb5112f908077a200d5286b2170ac1529914c7682d5ed97ac58d3b8ff6baf00bf2
 DIST apache-tomcat-9.0.68-src.tar.gz 6212265 BLAKE2B 
21a7772c0473c016486b4b90c005b65613e79739cf68eaa0c0a0e83c30016f49921816893f8babe42b462538c47bc776630812526c330e7c6360f02a719574cd
 SHA512 
63bb2c42f683c4c5e362b19bda046de172382714e80298106c61cc728feea9681b568450f04cb95d6cae08e5a71933c7755b9b81b706c46d63f4683c2a3a96be
 DIST apache-tomcat-9.0.69-src.tar.gz 6214949 BLAKE2B 
21387c7dbc830c5292d5ea315bf93c2faac2160dd21e8524184495e34cee0739ef57ce77ba46c99a64f7389047da431cffe000da9a5db2aabd481e84f149153f
 SHA512 
8178ef757d8a8a04b87a08e0a5d45e2d244fe0c0fd11b8f6b50182da1811758b7e4b1ea52188e4b241278c32737c0f61ed93d53b5a95075ebabb9209fe57a3b1
 DIST apache-tomcat-9.0.69-src.tar.gz.asc 833 BLAKE2B 
e4002185d7054ff963d0ecb1373afb2affb4795281bd344fa5b707e45dac4c6168cc2365853923a0cca1b5c21806554987513177ed64e01d7905f5d46ee9c581
 SHA512 
7d9ea8ac9986303bf649781524dd93db22c9ab1101a50be9aad7b4b65f902640b24462117047ddeba99b3652d63e980deaa232f6b93aff2266887a183059ff8f

diff --git a/www-servers/tomcat/tomcat-8.5.84.ebuild 
b/www-servers/tomcat/tomcat-8.5.84.ebuild
new file mode 100644
index ..7e306a627419
--- /dev/null
+++ b/www-servers/tomcat/tomcat-8.5.84.ebuild
@@ -0,0 +1,171 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+
+inherit java-pkg-2 java-ant-2 prefix verify-sig
+
+MY_P="apache-${P}-src"
+
+DESCRIPTION="Tomcat Servlet-3.1/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 
Container"
+HOMEPAGE="https://tomcat.apache.org/";
+SRC_URI="mirror://apache/${PN}/tomcat-8/v${PV}/src/${MY_P}.tar.gz
+   verify-sig? ( https://downloads.apache.org/tomcat/tomcat-$(ver_cut 
1)/v${PV}/src/apache-tomcat-${PV}-src.tar.gz.asc )"
+
+LICENSE="Apache-2.0"
+SLOT="8.5"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="extra-webapps"
+
+RESTRICT="test" # can we run them on a production system?
+
+ECJ_SLOT="4.15"
+SERVLET_API_SLOT="3.1"
+JSP_API_SLOT="2.3"
+EL_API_SLOT="3.0"
+
+# we don't use ~ for el and jsp because the same implementation
+# is also present in tomcat 9 and it would be impossible to install
+# both tomcat 8.5 and 9 at the same time
+COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT}
+   >=dev-java/tomcat-el-api-${PV}:${EL_API_SLOT}
+   >=dev-java/tomcat-jsp-api-${PV}:${JSP_API_SLOT}
+   ~dev-java/tomcat-servlet-api-${PV}:${SERVLET_API_SLOT}
+"
+RDEPEND="${COMMON_DEP}
+   acct-group/tomcat
+   acct-user/tomcat
+   >=virtual/jre-1.8:*"
+DEPEND="${COMMON_DEP}
+   app-admin/pwg

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

2022-11-23 Thread Michał Górny
commit: 4470b680fe2fc5e8434c34eef03dbb825e0afdff
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:42:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 08:54:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4470b680

dev-python/redis-py: Bump to 4.3.5

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

 dev-python/redis-py/Manifest  |  1 +
 dev-python/redis-py/redis-py-4.3.5.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/redis-py/Manifest b/dev-python/redis-py/Manifest
index dfc9dc11274d..2ef1e6457b14 100644
--- a/dev-python/redis-py/Manifest
+++ b/dev-python/redis-py/Manifest
@@ -1 +1,2 @@
 DIST redis-py-4.3.4.gh.tar.gz 4613714 BLAKE2B 
cea5a6455160c67c9ab3b8f9de8ae47aed97e7bea1e408ce1a001afe3e0c4a7a14220887504fa40c749d15be9d89f77e36b6f7a785e0ff22a49037b6ef245e87
 SHA512 
55dd00c15cedb82cb5edd46b1f18f32c0accb8c85b1b94bbfe04591dc07f6151ced81cbfca8ac6fe88a6743bf5abc50309ea23bef96bf4332a712979c61ea0b7
+DIST redis-py-4.3.5.gh.tar.gz 4620696 BLAKE2B 
2eaa40fc0ad624c4b8444054dcfea70ba1a2a54aaa54954f0c0fab31b310d67ca25e7508bc3550a0033139bb36bb63ddea97bb807c91ca92df3630a5385d6ba5
 SHA512 
42ef903f07b818061aeaea5d7d188e058db1ef73275b731cfff762fb59cb91db708ad81b0b2773cf6e0ef200ecbb3bf9859f51c4fbeb04023547b9eac4e2e042

diff --git a/dev-python/redis-py/redis-py-4.3.5.ebuild 
b/dev-python/redis-py/redis-py-4.3.5.ebuild
new file mode 100644
index ..5be327fc0a51
--- /dev/null
+++ b/dev-python/redis-py/redis-py-4.3.5.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for Redis key-value store"
+HOMEPAGE="
+   https://github.com/redis/redis-py/
+   https://pypi.org/project/redis/
+"
+SRC_URI="
+   https://github.com/redis/redis-py/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/async-timeout-4.0.2[${PYTHON_USEDEP}]
+   >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   

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

2022-11-23 Thread Miroslav Šulc
commit: 60113e8f197e1d84d3b7dbc58850c052d620
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Nov 23 09:06:45 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 09:08:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60113e8f

media-sound/snd: bump to 22.9

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/snd/Manifest|   1 +
 media-sound/snd/snd-22.9.ebuild | 106 
 2 files changed, 107 insertions(+)

diff --git a/media-sound/snd/Manifest b/media-sound/snd/Manifest
index 16ecf311c777..b45cb3f7574f 100644
--- a/media-sound/snd/Manifest
+++ b/media-sound/snd/Manifest
@@ -1,2 +1,3 @@
 DIST snd-17.4.tar.gz 15096338 BLAKE2B 
ca054977caacd2ea4c1b14f50c31d3b4cc6b206a58529ee5537ec80e51acb72c1b8baad6db9729270fe07067c097f16e630e1f7a81521ac0532f5b5689fb963c
 SHA512 
cbbc546fe4a3ef758c5372edbdae4db29457c559eafa08854819917e153ce850f5ab302da68dee826f99c26f10769aae8c6df6ea8434614f084f21d0dbbc5c88
 DIST snd-22.8.tar.gz 14696217 BLAKE2B 
6d90e1a51f862d17985831f676a01e61c9cce44f623c8db5d8a0a30cb3909823b5361a20ce5a19bfdb846c0d5237fcd9183be0a9970cfa6e9e02c69911090e6f
 SHA512 
a6c007a1c17973f6bc4badcca72b310b4e53d3a8b1831f026fca230ae9925ab3c53eb6a97015220fd929b7ecb14c7922ba2113d6c7a6626406ec4d361b7b228d
+DIST snd-22.9.tar.gz 14704873 BLAKE2B 
788a0d77571b13cac0bb191bd88e0d18d5a6808fbee170c8cb3237a2bdc8b20a72cd3a4360cf0632c1746bec317b367ebf6344ac05d9a5485d54a77268ab96cf
 SHA512 
641f49438dd71285249d2da6f36f30ca52ec8f8fc8189af7815abff054db7651d8da54798509c77d93d542d09bb11e3ad6662aec51e9ba1c7a6a1672bb0eba48

diff --git a/media-sound/snd/snd-22.9.ebuild b/media-sound/snd/snd-22.9.ebuild
new file mode 100644
index ..cf4a5df234b2
--- /dev/null
+++ b/media-sound/snd/snd-22.9.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic
+
+DESCRIPTION="Snd is a sound editor"
+HOMEPAGE="https://ccrma.stanford.edu/software/snd/";
+SRC_URI="https://ccrma.stanford.edu/software/${PN}/${P}.tar.gz";
+
+LICENSE="Snd 0BSD BSD-2 HPND GPL-2+ LGPL-2.1+ LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="alsa doc fftw gmp gsl gui jack ladspa notcurses opengl oss portaudio 
pulseaudio readline ruby +s7"
+
+RDEPEND="
+   alsa? ( media-libs/alsa-lib )
+   fftw? ( sci-libs/fftw:3.0= )
+   gmp? (
+   dev-libs/gmp:=
+   dev-libs/mpc
+   dev-libs/mpfr:=
+   )
+   gsl? ( sci-libs/gsl:= )
+   gui? ( x11-libs/motif:0 )
+   jack? ( virtual/jack )
+   ladspa? ( media-libs/ladspa-sdk )
+   notcurses? ( dev-cpp/notcurses )
+   opengl? ( virtual/opengl )
+   portaudio? ( media-libs/portaudio )
+   pulseaudio? ( media-sound/pulseaudio )
+   readline? ( sys-libs/readline:= )
+   ruby? ( dev-lang/ruby:* )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+REQUIRED_USE="
+   ?? ( portaudio pulseaudio )
+   ?? ( ruby s7 )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-22.8-undefined-oss_sample_types.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i -e "s:-O2 ::" configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   # Workaround executable sections QA warning (bug #348754)
+   append-ldflags -Wl,-z,noexecstack
+
+   local myeconfargs=(
+   $(use_with alsa)
+   $(use_with fftw)
+   $(use_with gmp)
+   $(use_with gsl)
+   $(use_with gui)
+   $(use_with jack)
+   $(use_with ladspa)
+   $(use_with notcurses)
+   $(use_with oss)
+   $(use_with portaudio)
+   $(use_with pulseaudio)
+   $(use_with ruby)
+   $(use_with s7)
+   )
+
+   if ! use ruby && ! use s7 ; then
+   myeconfargs+=( --without-extension-language )
+   fi
+
+   econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   emake snd
+
+   # Do not compile ruby extensions for command line programs since they 
fail
+   sed -i -e "s:HAVE_RUBY 1:HAVE_RUBY 0:" mus-config.h || die
+
+   emake sndplay sndinfo
+}
+
+src_install() {
+   dobin snd sndplay sndinfo
+
+   if use ruby ; then
+   insinto /usr/share/snd
+   doins *.rb
+   fi
+
+   if use s7 ; then
+   insinto /usr/share/snd
+   doins *.scm
+   fi
+
+   use doc && HTML_DOCS=( *.html pix/*.png )
+   einstalldocs
+   dodoc HISTORY.Snd
+}



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

2022-11-23 Thread Miroslav Šulc
commit: efe5d971e321e7eeccb9c50288f275d99925a2f7
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Nov 23 09:08:40 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Nov 23 09:08:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe5d971

media-sound/snd: dropped obsolete 17.4 & 22.8

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/snd/Manifest   |   2 -
 media-sound/snd/files/snd-17.4-portaudio.patch |  49 -
 .../snd-17.4-undefined-oss_sample_types.patch  |  21 
 media-sound/snd/snd-17.4-r2.ebuild | 119 -
 media-sound/snd/snd-22.8.ebuild| 106 --
 5 files changed, 297 deletions(-)

diff --git a/media-sound/snd/Manifest b/media-sound/snd/Manifest
index b45cb3f7574f..5f1766d25c89 100644
--- a/media-sound/snd/Manifest
+++ b/media-sound/snd/Manifest
@@ -1,3 +1 @@
-DIST snd-17.4.tar.gz 15096338 BLAKE2B 
ca054977caacd2ea4c1b14f50c31d3b4cc6b206a58529ee5537ec80e51acb72c1b8baad6db9729270fe07067c097f16e630e1f7a81521ac0532f5b5689fb963c
 SHA512 
cbbc546fe4a3ef758c5372edbdae4db29457c559eafa08854819917e153ce850f5ab302da68dee826f99c26f10769aae8c6df6ea8434614f084f21d0dbbc5c88
-DIST snd-22.8.tar.gz 14696217 BLAKE2B 
6d90e1a51f862d17985831f676a01e61c9cce44f623c8db5d8a0a30cb3909823b5361a20ce5a19bfdb846c0d5237fcd9183be0a9970cfa6e9e02c69911090e6f
 SHA512 
a6c007a1c17973f6bc4badcca72b310b4e53d3a8b1831f026fca230ae9925ab3c53eb6a97015220fd929b7ecb14c7922ba2113d6c7a6626406ec4d361b7b228d
 DIST snd-22.9.tar.gz 14704873 BLAKE2B 
788a0d77571b13cac0bb191bd88e0d18d5a6808fbee170c8cb3237a2bdc8b20a72cd3a4360cf0632c1746bec317b367ebf6344ac05d9a5485d54a77268ab96cf
 SHA512 
641f49438dd71285249d2da6f36f30ca52ec8f8fc8189af7815abff054db7651d8da54798509c77d93d542d09bb11e3ad6662aec51e9ba1c7a6a1672bb0eba48

diff --git a/media-sound/snd/files/snd-17.4-portaudio.patch 
b/media-sound/snd/files/snd-17.4-portaudio.patch
deleted file mode 100644
index 8bdb1af01e8a..
--- a/media-sound/snd/files/snd-17.4-portaudio.patch
+++ /dev/null
@@ -1,49 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -521,8 +521,9 @@
-   
-   if test "$with_portaudio" = yes ; then
- AC_DEFINE(MUS_PORTAUDIO)
-+PKG_CHECK_MODULES([PORTAUDIO], [portaudio-2.0])
- AUDIO_SYSTEM=portaudio
--AUDIO_LIB="-lportaudio"
-+AUDIO_LIB="${PORTAUDIO_LIBS}"
-   fi
- 
-   if test "$with_jack" = yes ; then
 a/makefile.in
-+++ b/makefile.in
-@@ -11,6 +11,7 @@
- GL_FLAGS = @GL_FLAGS@
- GSL_FLAGS = @GSL_CFLAGS@
- JACK_FLAGS = @JACK_FLAGS@
-+PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@
- 
- ORIGINAL_LDFLAGS = @ORIGINAL_LDFLAGS@
- LDFLAGS = @LDFLAGS@
-@@ -28,6 +29,7 @@
- WEBSERVER_FILES = @WEBSERVER_FILES@
- JACK_LIBS = @JACK_LIBS@
- GMP_LIBS = @GMP_LIBS@
-+PORTAUDIO_LIBS = @PORTAUDIO_LIBS@
- 
- LDSO_FLAGS = @LDSO_FLAGS@
- SO_FLAGS = @SO_FLAGS@
-@@ -53,7 +55,7 @@
- .SUFFIXES: .c .o
- 
- .c.o:
--  $(CC) -c $(DEFS) $(GTK_CFLAGS) $(CAIRO_CFLAGS) $(CFLAGS) $(XEN_CFLAGS) 
$(GSL_FLAGS) $(GL_FLAGS) $(JACK_FLAGS) $(FFTW_CFLAGS) $<
-+  $(CC) -c $(DEFS) $(GTK_CFLAGS) $(CAIRO_CFLAGS) $(CFLAGS) $(XEN_CFLAGS) 
$(GSL_FLAGS) $(GL_FLAGS) $(JACK_FLAGS) $(FFTW_CFLAGS) $(PORTAUDIO_CFLAGS) $<
- 
- SND_SCRIPTS = *.scm *.fs *.rb *.fsm
- SNDLIB_HEADERS = mus-config.h sndlib.h _sndlib.h sndlib-strings.h clm.h vct.h 
sndlib2xen.h clm2xen.h xen.h clm-strings.h
-@@ -84,7 +86,7 @@
- main_target: @MAKE_TARGET@
- 
- snd: $(SNDLIB_HEADERS) $(SND_HEADERS) $(GX_HEADERS) $(S7_HEADERS) 
$(S7_O_FILES) $(SNDLIB_O_FILES) $(O_FILES) $(GX_FILES) $(GL_FILES) 
$(WEBSERVER_FILES)
--  $(CC) $(LDFLAGS) $(CFLAGS) $(S7_O_FILES) $(SNDLIB_O_FILES) $(O_FILES) 
$(GX_FILES) $(GL_FILES)  $(WEBSERVER_FILES) -o snd $(SNDLIB_LIB) $(XEN_LIBS) 
$(GTK_LIBS) $(GL_LIBS) $(WEBSERVER_LIBS) $(JACK_LIBS) $(AUDIO_LIB) $(FFTW_LIBS) 
$(GSL_LIBS) $(GMP_LIBS) $(LIBS)
-+  $(CC) $(LDFLAGS) $(CFLAGS) $(S7_O_FILES) $(SNDLIB_O_FILES) $(O_FILES) 
$(GX_FILES) $(GL_FILES)  $(WEBSERVER_FILES) -o snd $(SNDLIB_LIB) $(XEN_LIBS) 
$(GTK_LIBS) $(GL_LIBS) $(WEBSERVER_LIBS) $(JACK_LIBS) $(AUDIO_LIB) $(FFTW_LIBS) 
$(GSL_LIBS) $(GMP_LIBS) $(PORTAUDIO_LIBS) $(LIBS)
- 
- xm:   xen.h mus-config.h $(S7_HEADERS)
-   $(CC) -c xm.c -DUSE_SND=0 $(DEFS) $(SO_FLAGS) $(GTK_CFLAGS) 
$(CAIRO_CFLAGS) $(CFLAGS) $(XEN_CFLAGS) $(GSL_FLAGS) $(JACK_FLAGS) $(GL_FLAGS)

diff --git a/media-sound/snd/files/snd-17.4-undefined-oss_sample_types.patch 
b/media-sound/snd/files/snd-17.4-undefined-oss_sample_types.patch
deleted file mode 100644
index 6199a7b183fd..
--- a/media-sound/snd/files/snd-17.4-undefined-oss_sample_types.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Always compile the `oss_sample_types` function
-Bug: https://bugs.gentoo.org/show_bug.cgi?id=621758
-
 a/audio.c
-+++ b/audio.c
-@@ -743,7 +743,6 @@
- }
- 
- 
--#if (!HAVE_ALSA)
- static int oss_sample_types(int ur_dev, mus_sample_t *val)
- {
-   int fd, samp_types = 0, sys, ind;
-@@ -774,7 +773,6 @@
-   val[0] = (mus_sample

[gentoo-commits] repo/gentoo:master commit in: x11-libs/motif/

2022-11-23 Thread Ulrich Müller
commit: af0fe7b8933f09dbb41227b43c7d4d831b3c162d
Author: Ulrich Müller  gentoo  org>
AuthorDate: Wed Nov 23 09:23:02 2022 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Wed Nov 23 09:24:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0fe7b8

x11-libs/motif: Fix some function declarations

Closes: https://bugs.gentoo.org/864533
Closes: https://bugs.gentoo.org/870799
Signed-off-by: Ulrich Müller  gentoo.org>

 x11-libs/motif/Manifest  |   1 +
 x11-libs/motif/motif-2.3.8-r4.ebuild | 112 +++
 2 files changed, 113 insertions(+)

diff --git a/x11-libs/motif/Manifest b/x11-libs/motif/Manifest
index 72c74a1b5d51..6610f8cf27ff 100644
--- a/x11-libs/motif/Manifest
+++ b/x11-libs/motif/Manifest
@@ -1,2 +1,3 @@
 DIST motif-2.3.8-patches-2.tar.xz 4068 BLAKE2B 
5466f824d71edd1d787eebe5b1fa09de5b52ffa20cdf733301722c4f1d7509af8084f226d68dcba14c2e8d15d5b1ea7d49e408eea8f710af3c0b27c86aba444c
 SHA512 
27e10c2a5b3dec8597acb04940bb8e000fc43c325e5b6f578246ab4187ef34264940369bff1e9c999ba967e85e093434e16a447f1d4da805d0a5ab1576e5ef80
+DIST motif-2.3.8-patches-3.tar.xz 4520 BLAKE2B 
23c9814422ef66dd21d0175aa0d180bf0563ad3e67ef9a18121658231392902005afa94e990853b570fb80ef62cf09f1b5dfc62594db4beea1808933d1e9edbe
 SHA512 
46c3177f0d9d12701a4ca7a33b6792c545d61f41421abc911c21e17842e88576d37bfa86dc882e55b50e7c73122c49f5d6bc32f42dc72b3f5f4feacd37857de8
 DIST motif-2.3.8.tar.gz 5704328 BLAKE2B 
3755b7f46e50240e1e9e7046aa439fa89872e54ae5d03860383f509b6d0f09edf85bd7d92ea4d37925efd2e44401028aa2752d940c42d9cccb652b2bd1d85459
 SHA512 
1ab8e8eece25ef97e948592b5fa3e19d98e932695290a18b7a8e90f1aa2766bc4f082bdbc3999dff5660e684821178a149040f76bb477163e53ca06474d02b55

diff --git a/x11-libs/motif/motif-2.3.8-r4.ebuild 
b/x11-libs/motif/motif-2.3.8-r4.ebuild
new file mode 100644
index ..36c24b444eab
--- /dev/null
+++ b/x11-libs/motif/motif-2.3.8-r4.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic toolchain-funcs multilib-minimal
+
+DESCRIPTION="The Motif user interface component toolkit"
+HOMEPAGE="https://sourceforge.net/projects/motif/
+   https://motif.ics.com/";
+SRC_URI="mirror://sourceforge/project/motif/Motif%20${PV}%20Source%20Code/${P}.tar.gz
+   https://dev.gentoo.org/~ulm/distfiles/${P}-patches-3.tar.xz";
+
+LICENSE="LGPL-2.1+ MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+IUSE="examples jpeg +motif22-compatibility png static-libs unicode xft"
+
+RDEPEND=">=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
+   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
+   jpeg? ( >=media-libs/libjpeg-turbo-1.5.3-r2:0=[${MULTILIB_USEDEP}] )
+   png? ( >=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}] )
+   unicode? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] )
+   xft? (
+   >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}]
+   >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}]
+   )"
+
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto
+   x11-misc/xbitmaps"
+
+BDEPEND="sys-devel/flex
+   dev-util/byacc"
+
+src_prepare() {
+   eapply ../patch
+   eapply_user
+
+   # remove files generated by flex #864533
+   rm tools/wml/{wmllex,wmluiltok}.c || die
+
+   AT_M4DIR=. eautoreconf
+
+   # get around some LANG problems in make (#15119)
+   LANG=C
+
+   # bug #80421
+   filter-flags -ftracer
+
+   # feel free to fix properly if you care
+   append-flags -fno-strict-aliasing
+
+   # for Solaris Xos_r.h :(
+   [[ ${CHOST} == *-solaris2.11 ]] \
+   && append-cppflags -DNEED_XOS_R_H -DHAVE_READDIR_R_3
+
+   if use !elibc_glibc && use !elibc_musl && use unicode; then
+   # libiconv detection in configure script doesn't always work
+   # http://bugs.motifzone.net/show_bug.cgi?id=1423
+   export LIBS="${LIBS} -liconv"
+   fi
+
+   # "bison -y" causes runtime crashes #355795
+   export YACC=byacc
+
+   # remember the name of the C compiler for the native ABI
+   MY_NATIVE_CC=$(tc-getCC)
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   --with-x \
+   --disable-printing \
+   $(use_enable static-libs static) \
+   $(use_enable motif22-compatibility) \
+   $(use_enable unicode utf8) \
+   $(use_enable xft) \
+   $(use_enable jpeg) \
+   $(use_enable png)
+}
+
+multilib_src_compile() {
+   # The wmluiltok build tool is linked with libfl.a, so always
+   # compile it for the native ABI
+  

[gentoo-commits] proj/linux-patches:4.19 commit in: /

2022-11-23 Thread Alice Ferrazzi
commit: a0fc2f9aa9f5ae283ce73d8b3b9b7e735c01132e
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Wed Nov 23 09:36:49 2022 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Wed Nov 23 09:38:49 2022 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=a0fc2f9a

Linux patch 4.19.266

Signed-off-by: Alice Ferrazzi  gentoo.org>

 _README   |4 +
 1265_linux-4.19.266.patch | 2018 +
 2 files changed, 2022 insertions(+)

diff --git a/_README b/_README
index 31133058..557fb8e3 100644
--- a/_README
+++ b/_README
@@ -1103,6 +1103,10 @@ Patch:  1264_linux-4.19.265.patch
 From:   https://www.kernel.org
 Desc:   Linux 4.19.265
 
+Patch:  1265_linux-4.19.266.patch
+From:   https://www.kernel.org
+Desc:   Linux 4.19.266
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1265_linux-4.19.266.patch b/1265_linux-4.19.266.patch
new file mode 100644
index ..03ca9ba1
--- /dev/null
+++ b/1265_linux-4.19.266.patch
@@ -0,0 +1,2018 @@
+diff --git a/Documentation/admin-guide/kernel-parameters.txt 
b/Documentation/admin-guide/kernel-parameters.txt
+index 500032af01927..68f31b6660323 100644
+--- a/Documentation/admin-guide/kernel-parameters.txt
 b/Documentation/admin-guide/kernel-parameters.txt
+@@ -4132,6 +4132,18 @@
+ 
+   retain_initrd   [RAM] Keep initrd memory after extraction
+ 
++  retbleed=   [X86] Control mitigation of RETBleed (Arbitrary
++  Speculative Code Execution with Return Instructions)
++  vulnerability.
++
++  off - unconditionally disable
++  auto- automatically select a migitation
++
++  Selecting 'auto' will choose a mitigation method at run
++  time according to the CPU.
++
++  Not specifying this option is equivalent to 
retbleed=auto.
++
+   rfkill.default_state=
+   0   "airplane mode".  All wifi, bluetooth, wimax, gps, fm,
+   etc. communication is blocked by default.
+@@ -4377,6 +4389,7 @@
+   eibrs - enhanced IBRS
+   eibrs,retpoline   - enhanced IBRS + Retpolines
+   eibrs,lfence  - enhanced IBRS + LFENCE
++  ibrs  - use IBRS to protect kernel
+ 
+   Not specifying this option is equivalent to
+   spectre_v2=auto.
+diff --git a/Makefile b/Makefile
+index 592e6928e0203..a0cfded5d0cc9 100644
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 4
+ PATCHLEVEL = 19
+-SUBLEVEL = 265
++SUBLEVEL = 266
+ EXTRAVERSION =
+ NAME = "People's Front"
+ 
+diff --git a/arch/x86/entry/calling.h b/arch/x86/entry/calling.h
+index 993dd06c8923c..806729a7172fc 100644
+--- a/arch/x86/entry/calling.h
 b/arch/x86/entry/calling.h
+@@ -6,6 +6,8 @@
+ #include 
+ #include 
+ #include 
++#include 
++#include 
+ 
+ /*
+ 
+@@ -146,27 +148,19 @@ For 32-bit we have the following conventions - kernel is 
built with
+ 
+ .endm
+ 
+-.macro POP_REGS pop_rdi=1 skip_r11rcx=0
++.macro POP_REGS pop_rdi=1
+   popq %r15
+   popq %r14
+   popq %r13
+   popq %r12
+   popq %rbp
+   popq %rbx
+-  .if \skip_r11rcx
+-  popq %rsi
+-  .else
+   popq %r11
+-  .endif
+   popq %r10
+   popq %r9
+   popq %r8
+   popq %rax
+-  .if \skip_r11rcx
+-  popq %rsi
+-  .else
+   popq %rcx
+-  .endif
+   popq %rdx
+   popq %rsi
+   .if \pop_rdi
+@@ -316,6 +310,62 @@ For 32-bit we have the following conventions - kernel is 
built with
+ 
+ #endif
+ 
++/*
++ * IBRS kernel mitigation for Spectre_v2.
++ *
++ * Assumes full context is established (PUSH_REGS, CR3 and GS) and it clobbers
++ * the regs it uses (AX, CX, DX). Must be called before the first RET
++ * instruction (NOTE! UNTRAIN_RET includes a RET instruction)
++ *
++ * The optional argument is used to save/restore the current value,
++ * which is used on the paranoid paths.
++ *
++ * Assumes x86_spec_ctrl_{base,current} to have SPEC_CTRL_IBRS set.
++ */
++.macro IBRS_ENTER save_reg
++  ALTERNATIVE "jmp .Lend_\@", "", X86_FEATURE_KERNEL_IBRS
++  movl$MSR_IA32_SPEC_CTRL, %ecx
++
++.ifnb \save_reg
++  rdmsr
++  shl $32, %rdx
++  or  %rdx, %rax
++  mov %rax, \save_reg
++  test$SPEC_CTRL_IBRS, %eax
++  jz  .Ldo_wrmsr_\@
++  lfence
++  jmp .Lend_\@
++.Ldo_wrmsr_\@:
++.endif
++
++  movqPER_CPU_VAR(x86_spec_ctrl_current), %rdx
++  movl%edx, %eax
++  shr $32, %rdx
++  wrmsr
++.Lend_\@:
++.endm
++
++/*
++ * Similar to IBRS_ENTER, requires KERNEL GS,CR3 and clobbers (AX, CX, DX)
++ * regs. Must be called

[gentoo-commits] proj/linux-patches: New tag: 4.19-265

2022-11-23 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Wed Nov 23 10:00:44 2022 +

New tag: 4.19-265




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

2022-11-23 Thread Alice Ferrazzi
commit: 52cda200a35bad31089b2896178270c34191567d
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Wed Nov 23 10:03:31 2022 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Wed Nov 23 10:04:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52cda200

sys-kernel/gentoo-sources: add 4.19.266

Signed-off-by: Alice Ferrazzi  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.19.266.ebuild  | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a1aa6eeb1760..8e217e793e8e 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -43,6 +43,9 @@ DIST genpatches-4.19-263.extras.tar.xz 3668 BLAKE2B 
faa0b311615e51f05d4096ad23f7
 DIST genpatches-4.19-264.base.tar.xz 5808548 BLAKE2B 
f52603f76f256f783adcbca7a0211d502ff4df87a6b5f0e48758bfb1d5cbdfd7eb43071d25e766d6bfa9e32f18ac4df5023776f5d4f139a939ebd61c0ad7b442
 SHA512 
46d03c03dbe0871573c5db3d43ae897fbaded92cf448cbde1b5e6d07b803287c917a459c247890711f2075e9a2824aebb38036a2a1a3942e66ee90370b60c46c
 DIST genpatches-4.19-264.experimental.tar.xz 5456 BLAKE2B 
ffe3a952d1883aa2c0600cdd1fef610f25e1e25a45109608a1574c3d76b34695ee42b3292109fcf4f3a99353d05b116f6481081b758a3843bde0fc3c7d35cbeb
 SHA512 
35fff124cfcf03767d728536866254256ca1c18f30314cd72f683abd26202a2d6f4fd93861c129ad4359ae9318b22b4aff14afec6455b676d1cc24aeab29a66e
 DIST genpatches-4.19-264.extras.tar.xz 3664 BLAKE2B 
c5006a7db0a10de5f432f7d37318b94ce93b7789ebc26d72f0576940b8ca418ee7d46cf9b9d011d5ade4a343b8047767811edd9d81ebea3b7e587f24c46565da
 SHA512 
68a7a8d81dd2df7fe3dab504c3fb5f821b6bd88a6bc559195427fcd3468d0066091007ad735af5c1769c070eb7330c713eb16c07a79d0b3eda445ace51cfa5bb
+DIST genpatches-4.19-265.base.tar.xz 5820464 BLAKE2B 
9c9f67383f6c3722f5b32bd189654ba20b1571066857510c27a0f26131ef9c08a2f9a261a1a70d2f560bb642485fe6d365b5a48e550336a5a60b19875f32
 SHA512 
8232ed12cc9eb68c3deb065745b1537954845896a8b0c53f9847a63be3d3eb04d2a0423f2261ff9897c1a7562ba1044d69c8b63c154e8b6feb88589b5fc9832b
+DIST genpatches-4.19-265.experimental.tar.xz 5460 BLAKE2B 
70aebcc9790e66d6370103746fca30a9a0ba83816773a123bde14ca34db4c79134c75df67453eeecf58e76f91ce90da81457d3d30ac4afdf606d4e245cff5123
 SHA512 
4eab756cf8f1e441cc8ed23109d82edcb8e7bc266b3f30e21be806cc8b373485c588501f907c71440be5cefec44f6551426e1cbb9fe7cea5896a670d4a84c79a
+DIST genpatches-4.19-265.extras.tar.xz 3664 BLAKE2B 
b7d39ee97bc53fe2774aa75988845554bf3ee35eba6e5a4d1dbc4639e3e82657ae08ba1bb1169d1be24861ee0b7c2ac8778e1737caaad3359134670c43e68003
 SHA512 
8b09dba1db78e095831921301a90495fa06c4edb55df663e4f678f6e64e7c7f14adc87fe02dff9072daf3c5a46bbe2ce2f3e7a98442fe3a27614cf7e8625f0dd
 DIST genpatches-4.9-324.base.tar.xz 5256552 BLAKE2B 
e264347c300df06aba685dc116100b82cd5f611971aacb22fb2832467cba51bcb6379b5543cbb89bbe05a94966cd12960996de3df8338bd30272e15dd54513a9
 SHA512 
1a93982191932dfd3ccc3bd80727a6c00e7a6326b196725468b1740f19c50ae7020afc67cde474c5e0ca0ce4c6cabbbfbddca980752bf5f22c7782ce76efd97b
 DIST genpatches-4.9-324.experimental.tar.xz 106360 BLAKE2B 
6453e139134cb068f59d2c855c2d74cfb09fb450fcd0061c92d8951a45b85bf2b69dc9777649e183b463a86b3c4cba9bbb6ff7d53e9bdebe341a2cada4f57900
 SHA512 
aef60a9b2235487775790fc799749aaba052bc5325e2a1f328dbdc09e42857bfb73995c9de66067fbceb028588716201c023edbe30156ca3f9a7329b5ce63987
 DIST genpatches-4.9-324.extras.tar.xz 3672 BLAKE2B 
a0fa11eb759f5ef643c17a31ca86ad2e68d78de9e038664508fe0ee598057c351735aed675aa7e8aadaa1358e79fc860ccd357dd6811befccab02da0a18a226c
 SHA512 
78eb0ada42db6ec736556c55910587fc6ee05f18a185a48532e2db3910d8da407243fe07a547b33607aca626e1ef948dda513457e71798df2210a9e1649a2771

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.266.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.266.ebuild
new file mode 100644
index ..288413902aa2
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.266.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="265"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches";
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



[gentoo-commits] proj/releng:master commit in: releases/specs/arm/armv4tl/, releases/specs/arm/armv7a/, tools/, ...

2022-11-23 Thread Andreas K. Hüttel
commit: 557a127419847dd0213665a20a539b417e7a476e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Nov 23 11:18:10 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Nov 23 11:18:10 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=557a1274

Move arm merged-usr builds to separate build types

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

 releases/specs/arm/armv4tl/stage1-systemd-mu.spec  |  4 +--
 releases/specs/arm/armv4tl/stage3-systemd-mu.spec  |  4 +--
 releases/specs/arm/armv5tel/stage1-systemd-mu.spec |  4 +--
 releases/specs/arm/armv5tel/stage3-systemd-mu.spec |  4 +--
 .../arm/armv6j/stage1-hardfloat-systemd-mu.spec|  4 +--
 releases/specs/arm/armv6j/stage1-systemd-mu.spec   |  4 +--
 .../arm/armv6j/stage3-hardfloat-systemd-mu.spec|  4 +--
 releases/specs/arm/armv6j/stage3-systemd-mu.spec   |  4 +--
 .../arm/armv7a/stage1-hardfloat-systemd-mu.spec|  4 +--
 releases/specs/arm/armv7a/stage1-systemd-mu.spec   |  4 +--
 .../arm/armv7a/stage3-hardfloat-systemd-mu.spec|  4 +--
 releases/specs/arm/armv7a/stage3-systemd-mu.spec   |  4 +--
 tools/catalyst-auto-arm.conf   | 42 --
 13 files changed, 47 insertions(+), 43 deletions(-)

diff --git a/releases/specs/arm/armv4tl/stage1-systemd-mu.spec 
b/releases/specs/arm/armv4tl/stage1-systemd-mu.spec
index 327e3fe6..784943f3 100644
--- a/releases/specs/arm/armv4tl/stage1-systemd-mu.spec
+++ b/releases/specs/arm/armv4tl/stage1-systemd-mu.spec
@@ -1,10 +1,10 @@
 subarch: armv4tl
 version_stamp: systemd-mergedusr-@TIMESTAMP@
 target: stage1
-rel_type: default
+rel_type: mergedusr
 profile: default/linux/arm/17.0/armv4t/systemd/merged-usr
 snapshot: @TIMESTAMP@
-source_subpath: default/stage3-armv4tl-systemd-mergedusr-latest.tar.xz
+source_subpath: mergedusr/stage3-armv4tl-systemd-mergedusr-latest.tar.xz
 compression_mode: pixz
 update_seed: no
 update_seed_command: -uDN @world

diff --git a/releases/specs/arm/armv4tl/stage3-systemd-mu.spec 
b/releases/specs/arm/armv4tl/stage3-systemd-mu.spec
index dd9d375d..9319254c 100644
--- a/releases/specs/arm/armv4tl/stage3-systemd-mu.spec
+++ b/releases/specs/arm/armv4tl/stage3-systemd-mu.spec
@@ -1,10 +1,10 @@
 subarch: armv4tl
 version_stamp: systemd-mergedusr-@TIMESTAMP@
 target: stage3
-rel_type: default
+rel_type: mergedusr
 profile: default/linux/arm/17.0/armv4t/systemd/merged-usr
 snapshot: @TIMESTAMP@
-source_subpath: default/stage1-armv4tl-systemd-mergedusr-@timest...@.tar.xz
+source_subpath: mergedusr/stage1-armv4tl-systemd-mergedusr-@timest...@.tar.xz
 compression_mode: pixz
 portage_confdir: @REPO_DIR@/releases/portage/stages
 portage_prefix: releng

diff --git a/releases/specs/arm/armv5tel/stage1-systemd-mu.spec 
b/releases/specs/arm/armv5tel/stage1-systemd-mu.spec
index 0b0a5c1e..1d2d1c68 100644
--- a/releases/specs/arm/armv5tel/stage1-systemd-mu.spec
+++ b/releases/specs/arm/armv5tel/stage1-systemd-mu.spec
@@ -1,10 +1,10 @@
 subarch: armv5tel
 version_stamp: systemd-mergedusr-@TIMESTAMP@
 target: stage1
-rel_type: default
+rel_type: mergedusr
 profile: default/linux/arm/17.0/armv5te/systemd/merged-usr
 snapshot: @TIMESTAMP@
-source_subpath: default/stage3-armv5tel-systemd-mergedusr-latest.tar.xz
+source_subpath: mergedusr/stage3-armv5tel-systemd-mergedusr-latest.tar.xz
 compression_mode: pixz
 update_seed: no
 update_seed_command: -uDN @world

diff --git a/releases/specs/arm/armv5tel/stage3-systemd-mu.spec 
b/releases/specs/arm/armv5tel/stage3-systemd-mu.spec
index 07a5d2a7..04dacd84 100644
--- a/releases/specs/arm/armv5tel/stage3-systemd-mu.spec
+++ b/releases/specs/arm/armv5tel/stage3-systemd-mu.spec
@@ -1,10 +1,10 @@
 subarch: armv5tel
 version_stamp: systemd-mergedusr-@TIMESTAMP@
 target: stage3
-rel_type: default
+rel_type: mergedusr
 profile: default/linux/arm/17.0/armv5te/systemd/merged-usr
 snapshot: @TIMESTAMP@
-source_subpath: default/stage1-armv5tel-systemd-mergedusr-@timest...@.tar.xz
+source_subpath: mergedusr/stage1-armv5tel-systemd-mergedusr-@timest...@.tar.xz
 compression_mode: pixz
 portage_confdir: @REPO_DIR@/releases/portage/stages
 portage_prefix: releng

diff --git a/releases/specs/arm/armv6j/stage1-hardfloat-systemd-mu.spec 
b/releases/specs/arm/armv6j/stage1-hardfloat-systemd-mu.spec
index 2b7bd2fc..3f5ffcbf 100644
--- a/releases/specs/arm/armv6j/stage1-hardfloat-systemd-mu.spec
+++ b/releases/specs/arm/armv6j/stage1-hardfloat-systemd-mu.spec
@@ -1,10 +1,10 @@
 subarch: armv6j_hardfp
 version_stamp: systemd-mergedusr-@TIMESTAMP@
 target: stage1
-rel_type: default
+rel_type: mergedusr
 profile: default/linux/arm/17.0/armv6j/systemd/merged-usr
 snapshot: @TIMESTAMP@
-source_subpath: default/stage3-armv6j_hardfp-systemd-mergedusr-latest.tar.xz
+source_subpath: mergedusr/stage3-armv6j_hardfp-systemd-mergedusr-latest.tar.xz
 compression_mode: pixz
 update_seed: no
 update_seed_command: -uDN @world

diff --git a/releases/specs/arm/armv6j/stage1-systemd-mu.spec 
b/releases/specs/

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

2022-11-23 Thread David Seifert
commit: 3891a4e1a94bc69b2dcd5f8b6c6d937d24b486e4
Author: David Seifert  gentoo  org>
AuthorDate: Wed Nov 23 11:22:26 2022 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Nov 23 11:22:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3891a4e1

package.mask: Last rite dev-libs/boost-mpl-cartesian_product

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 12015111be8d..a411070ed818 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,11 @@
 
 #--- END OF EXAMPLES ---
 
+# David Seifert  (2022-11-23)
+# EAPI 6, no revdeps in tree, never made it into upstream boost, library
+# only, last release 6 years ago. Removal on 2022-12-23.
+dev-libs/boost-mpl-cartesian_product
+
 # Matt Turner  (2022-11-16)
 # Packages or their dependencies have not been ported to libsoup:3.0, while
 # other non-slotted dependencies have been.



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

2022-11-23 Thread Michał Górny
commit: 160424d2088712e79f6d01fc88f745b1312738e4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 23 08:44:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 23 11:26:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160424d2

dev-python/pandas: Bump to 1.5.2

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

 dev-python/pandas/Manifest|   1 +
 dev-python/pandas/pandas-1.5.2.ebuild | 210 ++
 2 files changed, 211 insertions(+)

diff --git a/dev-python/pandas/Manifest b/dev-python/pandas/Manifest
index e48fb491fe6a..36dd46c62a78 100644
--- a/dev-python/pandas/Manifest
+++ b/dev-python/pandas/Manifest
@@ -1,2 +1,3 @@
 DIST pandas-1.5.0.tar.gz 5191537 BLAKE2B 
c7dec1d0197e6ac860667177f0f255bb327dbd48fe4501280d578b93f4496e61c0847dc478effeb8c5729d7a9d3e8a643c01db095a9843d6d211a9420f94d42c
 SHA512 
8d340da1e0dff9b64c8993359b35ddcfc796fa15fee1bf1a27ea5a12e33f8b20d45bfac0ff9275b16ff0d4f7855a73962629e06c62bc08ca5e21b4ef1ea29ec2
 DIST pandas-1.5.1.tar.gz 5199286 BLAKE2B 
17d98870f3397d7a9289a18708021a614b1d456e2ea99dae8927727aabb8aab73bd31f25c3035947f8f4c38404e7d971bf999500b300307b19a2cf6029763d0e
 SHA512 
e5f25f21f17f36c6488f14fbfa391beb9f1989652de01cb8346d2826dead9331fea27295ee1e6f42d0875f2f1a91fcd23d606edd339432589bca5ba8d89e5ecd
+DIST pandas-1.5.2.tar.gz 5201551 BLAKE2B 
c6a8156a6c116f1b576837882e4ad4ada6cf21bf72acd673d74bdb1dda4f97f88a5e6422e8f8ad2fbbb85a334cd68cb0abae316d5826c54a85baf8b325ab6183
 SHA512 
1e6b653ff418c839895946123f90fffcfafd57f24dfbd6bae4e9988893b7d57d6276ed101112c8f9730af53f600d006fe3a53bbed597c0376856f2cfc90c1f05

diff --git a/dev-python/pandas/pandas-1.5.2.ebuild 
b/dev-python/pandas/pandas-1.5.2.ebuild
new file mode 100644
index ..9b507e23b10b
--- /dev/null
+++ b/dev-python/pandas/pandas-1.5.2.ebuild
@@ -0,0 +1,210 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_REQ_USE="threads(+)"
+
+VIRTUALX_REQUIRED="manual"
+
+inherit distutils-r1 multiprocessing optfeature virtualx
+
+DESCRIPTION="Powerful data structures for data analysis and statistics"
+HOMEPAGE="
+   https://pandas.pydata.org/
+   https://github.com/pandas-dev/pandas/
+   https://pypi.org/project/pandas/
+"
+SRC_URI="
+   
https://github.com/pandas-dev/pandas/releases/download/v${PV}/${P}.tar.gz
+"
+S=${WORKDIR}/${P/_/}
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="doc full-support minimal test X"
+RESTRICT="!test? ( test )"
+
+RECOMMENDED_DEPEND="
+   >=dev-python/bottleneck-1.2.1[${PYTHON_USEDEP}]
+   >=dev-python/numexpr-2.7.0[${PYTHON_USEDEP}]
+"
+
+# TODO: add pandas-gbq to the tree
+# TODO: Re-add dev-python/statsmodel[python3_11] dep once it supports 
python3_11
+# https://github.com/statsmodels/statsmodels/issues/8287
+OPTIONAL_DEPEND="
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/blosc[${PYTHON_USEDEP}]
+   || (
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   )
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   || (
+   dev-python/openpyxl[${PYTHON_USEDEP}]
+   dev-python/xlsxwriter[${PYTHON_USEDEP}]
+   )
+   >=dev-python/pytables-3.2.1[${PYTHON_USEDEP}]
+   >=dev-python/xarray-0.12.3[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-1.3.0[${PYTHON_USEDEP}]
+   >=dev-python/xlrd-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/xlwt-1.3.0[${PYTHON_USEDEP}]
+   !hppa? (
+   $(python_gen_cond_dep '
+   dev-python/statsmodels[${PYTHON_USEDEP}]
+   ' python3_{8..10} )
+   >=dev-python/scipy-1.1[${PYTHON_USEDEP}]
+   )
+   X? (
+   || (
+   dev-python/PyQt5[${PYTHON_USEDEP}]
+   x11-misc/xclip
+   x11-misc/xsel
+   )
+   )
+"
+COMMON_DEPEND="
+   >=dev-python/numpy-1.21.0[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.1-r3[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2020.1[${PYTHON_USEDEP}]
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   >=dev-python/cython-0.29.32[${PYTHON_USEDEP}]
+   doc? (
+   ${VIRTUALX_DEPEND}
+   app-text/pandoc
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/html5lib[${PYTHON_USEDEP}]
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/nbsphinx[${PYTHON_USEDEP}]
+   >=dev-python/numpydoc-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/openpyxl-1.6.1[${PYTHON_USEDEP}]
+   >=dev-python/pytab

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

2022-11-23 Thread Arthur Zamarin
commit: 438fc6a740f1e4a23197878e142a0569aa979e71
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 23 12:03:13 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 23 12:03:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=438fc6a7

net-misc/rsync: Keyword 3.2.7-r1 ppc64, #882593

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

 net-misc/rsync/rsync-3.2.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/rsync/rsync-3.2.7-r1.ebuild 
b/net-misc/rsync/rsync-3.2.7-r1.ebuild
index 0eda11f3670f..1d3949bb8f9e 100644
--- a/net-misc/rsync/rsync-3.2.7-r1.ebuild
+++ b/net-misc/rsync/rsync-3.2.7-r1.ebuild
@@ -27,7 +27,7 @@ else
SRC_DIR="src-previews"
else
SRC_DIR="src"
-   KEYWORDS="~alpha ~amd64 ~loong ~m68k ~mips ~riscv ~x86 
~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~loong ~m68k ~mips ~ppc64 ~riscv ~x86 
~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 
SRC_URI="https://rsync.samba.org/ftp/rsync/${SRC_DIR}/${P/_/}.tar.gz



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

2022-11-23 Thread Arthur Zamarin
commit: 9214fbbd8f4c724782960e8fc3e250d0d503ef71
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 23 12:03:13 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 23 12:03:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9214fbbd

dev-python/bracex: Keyword 2.3_p1 ppc64, #882593

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

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

diff --git a/dev-python/bracex/bracex-2.3_p1.ebuild 
b/dev-python/bracex/bracex-2.3_p1.ebuild
index 8ac52e0eef59..a3775d62639c 100644
--- a/dev-python/bracex/bracex-2.3_p1.ebuild
+++ b/dev-python/bracex/bracex-2.3_p1.ebuild
@@ -32,7 +32,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~riscv x86"
+KEYWORDS="amd64 ~ppc64 ~riscv x86"
 
 BDEPEND="
test? (



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

2022-11-23 Thread Arthur Zamarin
commit: 456a0c5d4a60987f70ad47a0df064a04f7a95dc6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 23 12:03:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 23 12:03:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=456a0c5d

net-misc/rsync: Keyword 3.2.7-r1 ppc, #882593

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

 net-misc/rsync/rsync-3.2.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/rsync/rsync-3.2.7-r1.ebuild 
b/net-misc/rsync/rsync-3.2.7-r1.ebuild
index 1d3949bb8f9e..82811728c290 100644
--- a/net-misc/rsync/rsync-3.2.7-r1.ebuild
+++ b/net-misc/rsync/rsync-3.2.7-r1.ebuild
@@ -27,7 +27,7 @@ else
SRC_DIR="src-previews"
else
SRC_DIR="src"
-   KEYWORDS="~alpha ~amd64 ~loong ~m68k ~mips ~ppc64 ~riscv ~x86 
~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv 
~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 
SRC_URI="https://rsync.samba.org/ftp/rsync/${SRC_DIR}/${P/_/}.tar.gz



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

2022-11-23 Thread Arthur Zamarin
commit: e2dd0f2459976ce2240d7f25e5556c99fa2fb7ff
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Nov 23 12:03:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Nov 23 12:03:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2dd0f24

dev-python/bracex: Keyword 2.3_p1 ppc, #882593

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

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

diff --git a/dev-python/bracex/bracex-2.3_p1.ebuild 
b/dev-python/bracex/bracex-2.3_p1.ebuild
index a3775d62639c..15c37af48db7 100644
--- a/dev-python/bracex/bracex-2.3_p1.ebuild
+++ b/dev-python/bracex/bracex-2.3_p1.ebuild
@@ -32,7 +32,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~riscv x86"
 
 BDEPEND="
test? (



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/desktop-notifier/

2022-11-23 Thread Viorel Munteanu
commit: 9c9657ee2cc18ef31679b7bba401a54c6ef231e1
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Wed Nov 23 12:41:57 2022 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Wed Nov 23 12:42:07 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c9657ee

dev-python/desktop-notifier: drop 3.4.1

Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-python/desktop-notifier/Manifest   |  1 -
 .../desktop-notifier/desktop-notifier-3.4.1.ebuild | 31 --
 2 files changed, 32 deletions(-)

diff --git a/dev-python/desktop-notifier/Manifest 
b/dev-python/desktop-notifier/Manifest
index defeddab0..e87196e9b 100644
--- a/dev-python/desktop-notifier/Manifest
+++ b/dev-python/desktop-notifier/Manifest
@@ -1,3 +1,2 @@
 DIST desktop-notifier-3.3.2.gh.tar.gz 4595234 BLAKE2B 
c53383b8f15c36acb21a77695b8a76e782f912078ba7c5946fe55c2e8c3c950ece7581a81a69dbee12553be7155364c9165336d7f2b814ccb0e3076dc082cf85
 SHA512 
d93825ea4880428e9eb41f0adff27e963ebeae23aa5cdc8c77e4a60aecee69aa1448f9aca8b12520597b52df531580e29e3458c2ea7b4f2e60eda68de5dfbe9f
-DIST desktop-notifier-3.4.1.gh.tar.gz 4598112 BLAKE2B 
8370f92d30bd2f761859890bca8c144237081f973da41a0c259da15c8581f720d34a24793a964985d14c40cb08b9d2871f75667b4d8828376687f7d0d24d9d19
 SHA512 
ce97b62e9a0ece97c8453e162cb0fd25876e42f4e5d8c5422e1ca896d37541e9c68b01f6d26fb7250f7d991343710ee085550ed0f82318eb5c67914a13399eb6
 DIST desktop-notifier-3.4.2.gh.tar.gz 4598129 BLAKE2B 
61f2b7386e351e3f5bb936af147a127e66e16520b92aaedbe2c2570ffb33ca15e13ba3f46f2953c8fafd2e01c9d85bad00505f1e071f63a2412f39828204a6a2
 SHA512 
e00f3a33f2e6d719b8c293640049ad7238fb071cd2bc73d8b5bde538f761868d1498de110f052764b5be5bf8f42d6055e6364db2fdfaebdeeb0f608bf74dd511

diff --git a/dev-python/desktop-notifier/desktop-notifier-3.4.1.ebuild 
b/dev-python/desktop-notifier/desktop-notifier-3.4.1.ebuild
deleted file mode 100644
index 85836ef8e..0
--- a/dev-python/desktop-notifier/desktop-notifier-3.4.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..11} )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1
-
-DESCRIPTION="desktop-notifier is a Python library for cross-platform desktop 
notifications"
-HOMEPAGE="
-   https://desktop-notifier.readthedocs.io
-   https://pypi.org/project/desktop-notifier/
-   https://github.com/samschott/desktop-notifier
-"
-SRC_URI="https://github.com/samschott/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-python/wheel[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   dev-python/python-dbus-next[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'dev-python/importlib_resources[${PYTHON_USEDEP}]' python3_8)
-"
-BDEPEND="
-   dev-python/build[${PYTHON_USEDEP}]
-"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/desktop-notifier/

2022-11-23 Thread Viorel Munteanu
commit: 5c019a84a7f9b9a839cdc42e0557ed3322ce0568
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Wed Nov 23 12:41:34 2022 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Wed Nov 23 12:42:07 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5c019a84

dev-python/desktop-notifier: add 3.4.2

Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-python/desktop-notifier/Manifest   |  1 +
 .../desktop-notifier/desktop-notifier-3.4.2.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/desktop-notifier/Manifest 
b/dev-python/desktop-notifier/Manifest
index da5b9a9c9..defeddab0 100644
--- a/dev-python/desktop-notifier/Manifest
+++ b/dev-python/desktop-notifier/Manifest
@@ -1,2 +1,3 @@
 DIST desktop-notifier-3.3.2.gh.tar.gz 4595234 BLAKE2B 
c53383b8f15c36acb21a77695b8a76e782f912078ba7c5946fe55c2e8c3c950ece7581a81a69dbee12553be7155364c9165336d7f2b814ccb0e3076dc082cf85
 SHA512 
d93825ea4880428e9eb41f0adff27e963ebeae23aa5cdc8c77e4a60aecee69aa1448f9aca8b12520597b52df531580e29e3458c2ea7b4f2e60eda68de5dfbe9f
 DIST desktop-notifier-3.4.1.gh.tar.gz 4598112 BLAKE2B 
8370f92d30bd2f761859890bca8c144237081f973da41a0c259da15c8581f720d34a24793a964985d14c40cb08b9d2871f75667b4d8828376687f7d0d24d9d19
 SHA512 
ce97b62e9a0ece97c8453e162cb0fd25876e42f4e5d8c5422e1ca896d37541e9c68b01f6d26fb7250f7d991343710ee085550ed0f82318eb5c67914a13399eb6
+DIST desktop-notifier-3.4.2.gh.tar.gz 4598129 BLAKE2B 
61f2b7386e351e3f5bb936af147a127e66e16520b92aaedbe2c2570ffb33ca15e13ba3f46f2953c8fafd2e01c9d85bad00505f1e071f63a2412f39828204a6a2
 SHA512 
e00f3a33f2e6d719b8c293640049ad7238fb071cd2bc73d8b5bde538f761868d1498de110f052764b5be5bf8f42d6055e6364db2fdfaebdeeb0f608bf74dd511

diff --git a/dev-python/desktop-notifier/desktop-notifier-3.4.2.ebuild 
b/dev-python/desktop-notifier/desktop-notifier-3.4.2.ebuild
new file mode 100644
index 0..85836ef8e
--- /dev/null
+++ b/dev-python/desktop-notifier/desktop-notifier-3.4.2.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+DESCRIPTION="desktop-notifier is a Python library for cross-platform desktop 
notifications"
+HOMEPAGE="
+   https://desktop-notifier.readthedocs.io
+   https://pypi.org/project/desktop-notifier/
+   https://github.com/samschott/desktop-notifier
+"
+SRC_URI="https://github.com/samschott/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/wheel[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/python-dbus-next[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/importlib_resources[${PYTHON_USEDEP}]' python3_8)
+"
+BDEPEND="
+   dev-python/build[${PYTHON_USEDEP}]
+"



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

2022-11-23 Thread Craig Andrews
commit: 9851c1beff92a96d5935bd72eff257c3c72250e2
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed Nov 23 13:21:18 2022 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed Nov 23 13:21:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9851c1be

media-tv/kodi: fix kodi-19.4-dav1d-1.0.0.patch

Signed-off-by: Craig Andrews  gentoo.org>

Closes: https://github.com/gentoo/gentoo/pull/28398

 media-tv/kodi/files/kodi-19.4-dav1d-1.0.0.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-tv/kodi/files/kodi-19.4-dav1d-1.0.0.patch 
b/media-tv/kodi/files/kodi-19.4-dav1d-1.0.0.patch
index e1d69a983c35..b37ace0f31ec 100644
--- a/media-tv/kodi/files/kodi-19.4-dav1d-1.0.0.patch
+++ b/media-tv/kodi/files/kodi-19.4-dav1d-1.0.0.patch
@@ -6,7 +6,7 @@ diff -Nur a/cmake/modules/FindFFMPEG.cmake 
b/cmake/modules/FindFFMPEG.cmake
  
${CMAKE_SOURCE_DIR}/tools/depends/target/ffmpeg/CMakeLists.txt
   &&
 +  # patch internal ffmpeg, fix build against 
dav1d 1.0.0
-+  patch -p1 < 
${CMAKE_SOURCE_DIR}/tools/depends/target/ffmpeg/build-fix-for-dav1d-1.0.0.patch
++  patch -p1 < 
${CMAKE_SOURCE_DIR}/tools/depends/target/ffmpeg/build-fix-for-dav1d-1.0.0.patch 
&&
  ${CMAKE_COMMAND} -E copy
  
${CMAKE_SOURCE_DIR}/tools/depends/target/ffmpeg/FindGnuTls.cmake
  )



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

2022-11-23 Thread Jakov Smolić
commit: 72c7a774c2596f82d1614b028cf7189562c1c4ff
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 13:54:47 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 13:54:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72c7a774

net-misc/ntp: Stabilize 4.2.8_p15-r1 amd64, #881761

Signed-off-by: Jakov Smolić  gentoo.org>

 net-misc/ntp/ntp-4.2.8_p15-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/ntp/ntp-4.2.8_p15-r1.ebuild 
b/net-misc/ntp/ntp-4.2.8_p15-r1.ebuild
index c8160600149c..ca3cb8b2eaac 100644
--- a/net-misc/ntp/ntp-4.2.8_p15-r1.ebuild
+++ b/net-misc/ntp/ntp-4.2.8_p15-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${PV:0:3}/${MY_P}.tar
 
 LICENSE="HPND BSD ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="caps debug ipv6 openntpd parse-clocks readline samba selinux snmp ssl 
+threads vim-syntax zeroconf"
 
 COMMON_DEPEND="readline? ( >=sys-libs/readline-4.1:0= )



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

2022-11-23 Thread Jakov Smolić
commit: 4f9aea07a1261d67f8902cdaec57402e32b7ce93
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 13:54:38 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 13:54:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f9aea07

app-crypt/gnupg: Stabilize 2.2.40 amd64, #881743

Signed-off-by: Jakov Smolić  gentoo.org>

 app-crypt/gnupg/gnupg-2.2.40.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/gnupg/gnupg-2.2.40.ebuild 
b/app-crypt/gnupg/gnupg-2.2.40.ebuild
index 690780e00b5e..2e8be8918b25 100644
--- a/app-crypt/gnupg/gnupg-2.2.40.ebuild
+++ b/app-crypt/gnupg/gnupg-2.2.40.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 doc ldap nls readline selinux +smartcard ssl test tofu tools usb 
user-socket wks-server"
 RESTRICT="!test? ( test )"
 



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

2022-11-23 Thread Jakov Smolić
commit: 2c0a5e046595b8614a21943e5d746a9258ba8410
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 13:56:59 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 13:56:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c0a5e04

app-text/a2ps: Stabilize 4.14-r8 amd64, #882325

Signed-off-by: Jakov Smolić  gentoo.org>

 app-text/a2ps/a2ps-4.14-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/a2ps/a2ps-4.14-r8.ebuild 
b/app-text/a2ps/a2ps-4.14-r8.ebuild
index f99cb9cdc64a..6db6238b1d72 100644
--- a/app-text/a2ps/a2ps-4.14-r8.ebuild
+++ b/app-text/a2ps/a2ps-4.14-r8.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${PV:0:4}"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="cjk emacs latex nls static-libs vanilla"
 
 RESTRICT="test"



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

2022-11-23 Thread Jakov Smolić
commit: 0d02c40deb75bf557cdb4a6123d11b40562058b3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 13:54:04 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 13:54:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d02c40d

dev-libs/libffi: Stabilize 3.4.4 amd64, #881739

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-libs/libffi/libffi-3.4.4.ebuild 
b/dev-libs/libffi/libffi-3.4.4.ebuild
index b6efd0caa3cc..2d8af71b8a7c 100644
--- a/dev-libs/libffi/libffi-3.4.4.ebuild
+++ b/dev-libs/libffi/libffi-3.4.4.ebuild
@@ -19,7 +19,7 @@ LICENSE="MIT"
 # with FEATURES="-preserved-libs" or another package manager if SONAME
 # changes.
 SLOT="0/8" # SONAME=libffi.so.8
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug exec-static-trampoline pax-kernel static-libs test"
 
 RESTRICT="!test? ( test )"



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

2022-11-23 Thread Jakov Smolić
commit: fb3dffe952bbe82afdf8745fc2aebbb472e49d5c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 13:55:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 13:55:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb3dffe9

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

Signed-off-by: Jakov Smolić  gentoo.org>

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

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



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

2022-11-23 Thread Jakov Smolić
commit: 5e9b816ba59ccd355bb8ad20bd1c39823ce65a0d
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:19 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e9b816b

dev-perl/GraphViz: Keyword 2.240.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/GraphViz/GraphViz-2.240.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/GraphViz/GraphViz-2.240.0-r1.ebuild 
b/dev-perl/GraphViz/GraphViz-2.240.0-r1.ebuild
index 48d363417357..f002d250aa34 100644
--- a/dev-perl/GraphViz/GraphViz-2.240.0-r1.ebuild
+++ b/dev-perl/GraphViz/GraphViz-2.240.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Interface to AT&T's GraphViz"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~riscv x86"
 
 RDEPEND="
media-gfx/graphviz



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

2022-11-23 Thread Jakov Smolić
commit: 488d487177dcb151202fc75664f75ae17d0d688b
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:19 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=488d4871

dev-perl/GnuPG-Interface: Keyword 1.20.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/GnuPG-Interface/GnuPG-Interface-1.20.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/GnuPG-Interface/GnuPG-Interface-1.20.0.ebuild 
b/dev-perl/GnuPG-Interface/GnuPG-Interface-1.20.0.ebuild
index 40a8f873c5ba..99d31566ad2f 100644
--- a/dev-perl/GnuPG-Interface/GnuPG-Interface-1.20.0.ebuild
+++ b/dev-perl/GnuPG-Interface/GnuPG-Interface-1.20.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Perl interface to GnuPG"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86"
+KEYWORDS="amd64 ~hppa ppc ~riscv x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-23 Thread Jakov Smolić
commit: 81ff9562a8fea64e88ced92384d961c85c89bdf2
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:19 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81ff9562

dev-perl/MooX-late: Keyword 0.100.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/MooX-late/MooX-late-0.100.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/MooX-late/MooX-late-0.100.0.ebuild 
b/dev-perl/MooX-late/MooX-late-0.100.0.ebuild
index 9b69b45e59f7..bd5637712be8 100644
--- a/dev-perl/MooX-late/MooX-late-0.100.0.ebuild
+++ b/dev-perl/MooX-late/MooX-late-0.100.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Easily translate Moose code to Moo"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86"
+KEYWORDS="amd64 ~hppa ppc ~riscv x86"
 
 RDEPEND="
>=dev-perl/Moo-2.0.0



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

2022-11-23 Thread Jakov Smolić
commit: 6d1c30b3384a251ddab4271e98145b97d10c3539
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:20 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d1c30b3

dev-perl/Alien-LibGumbo: Keyword 0.50.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r2.ebuild 
b/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r2.ebuild
index 01d42d5301fe..d1497e90d761 100644
--- a/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r2.ebuild
+++ b/dev-perl/Alien-LibGumbo/Alien-LibGumbo-0.50.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ inherit perl-module toolchain-funcs
 DESCRIPTION="Gumbo parser library"
 
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 # Alien-Build for Alien::Base
 RDEPEND="



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

2022-11-23 Thread Jakov Smolić
commit: 0510d09d0db67d3c9df0252f1acc1ae180cb6315
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:20 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0510d09d

dev-perl/HTML-Gumbo: Keyword 0.180.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/HTML-Gumbo/HTML-Gumbo-0.180.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/HTML-Gumbo/HTML-Gumbo-0.180.0-r1.ebuild 
b/dev-perl/HTML-Gumbo/HTML-Gumbo-0.180.0-r1.ebuild
index ca9bd50a45a8..fb9671ff17c5 100644
--- a/dev-perl/HTML-Gumbo/HTML-Gumbo-0.180.0-r1.ebuild
+++ b/dev-perl/HTML-Gumbo/HTML-Gumbo-0.180.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="HTML5 parser based on gumbo C library"
 
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 RDEPEND="
>=dev-perl/Alien-LibGumbo-0.30.0



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

2022-11-23 Thread Jakov Smolić
commit: c218d6d95c3498baf59494ffe86877ba21a020ff
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c218d6d9

dev-perl/Test-DiagINC: Keyword 0.8.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Test-DiagINC/Test-DiagINC-0.8.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Test-DiagINC/Test-DiagINC-0.8.0.ebuild 
b/dev-perl/Test-DiagINC/Test-DiagINC-0.8.0.ebuild
index b60d0bed964b..a6ebbe02da35 100644
--- a/dev-perl/Test-DiagINC/Test-DiagINC-0.8.0.ebuild
+++ b/dev-perl/Test-DiagINC/Test-DiagINC-0.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="List modules and versions loaded if tests fail"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 
 RDEPEND="
virtual/perl-File-Spec



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

2022-11-23 Thread Jakov Smolić
commit: 213197c8b1ff7437b170e5f06e15e82119d4c87f
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:21 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=213197c8

dev-perl/HTML-Quoted: Keyword 0.40.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/HTML-Quoted/HTML-Quoted-0.40.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/HTML-Quoted/HTML-Quoted-0.40.0-r1.ebuild 
b/dev-perl/HTML-Quoted/HTML-Quoted-0.40.0-r1.ebuild
index 1dd693582739..651bb124f460 100644
--- a/dev-perl/HTML-Quoted/HTML-Quoted-0.40.0-r1.ebuild
+++ b/dev-perl/HTML-Quoted/HTML-Quoted-0.40.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Extract structure of quoted HTML mail message"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 
 RDEPEND="
>=dev-perl/HTML-Parser-3.0.0



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

2022-11-23 Thread Jakov Smolić
commit: c363a7d2c5fe7aa53fb7d9baa5a0ee4ca52f4b6c
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:21 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c363a7d2

dev-perl/HTML-RewriteAttributes: Keyword 0.50.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 .../HTML-RewriteAttributes/HTML-RewriteAttributes-0.50.0-r2.ebuild| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/HTML-RewriteAttributes/HTML-RewriteAttributes-0.50.0-r2.ebuild 
b/dev-perl/HTML-RewriteAttributes/HTML-RewriteAttributes-0.50.0-r2.ebuild
index c6785d438467..d4eed8d72fc1 100644
--- a/dev-perl/HTML-RewriteAttributes/HTML-RewriteAttributes-0.50.0-r2.ebuild
+++ b/dev-perl/HTML-RewriteAttributes/HTML-RewriteAttributes-0.50.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Perl module for concise attribute rewriting"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 
 RDEPEND="
dev-perl/URI



[gentoo-commits] repo/gentoo:master commit in: dev-perl/JavaScript-Minifier-XS/

2022-11-23 Thread Jakov Smolić
commit: 8aef8cef866425f8d740d0f7f0bddba430eccf38
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aef8cef

dev-perl/JavaScript-Minifier-XS: Keyword 0.150.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/JavaScript-Minifier-XS/JavaScript-Minifier-XS-0.150.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/JavaScript-Minifier-XS/JavaScript-Minifier-XS-0.150.0.ebuild 
b/dev-perl/JavaScript-Minifier-XS/JavaScript-Minifier-XS-0.150.0.ebuild
index 2f7cc976d08c..a8a0dc17d1de 100644
--- a/dev-perl/JavaScript-Minifier-XS/JavaScript-Minifier-XS-0.150.0.ebuild
+++ b/dev-perl/JavaScript-Minifier-XS/JavaScript-Minifier-XS-0.150.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="XS based JavaScript minifier"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 
 RDEPEND=""
 BDEPEND="${RDEPEND}



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

2022-11-23 Thread Jakov Smolić
commit: 6d26c302ccd9a94b91551ab076f2f6f5c7ccdb18
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:24 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d26c302

dev-perl/Text-Wrapper: Keyword 1.50.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Text-Wrapper/Text-Wrapper-1.50.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Text-Wrapper/Text-Wrapper-1.50.0-r1.ebuild 
b/dev-perl/Text-Wrapper/Text-Wrapper-1.50.0-r1.ebuild
index 274ef216b448..237f620b4ff4 100644
--- a/dev-perl/Text-Wrapper/Text-Wrapper-1.50.0-r1.ebuild
+++ b/dev-perl/Text-Wrapper/Text-Wrapper-1.50.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Word wrap text by breaking long lines"
 
 SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 x86"
+KEYWORDS="amd64 ~hppa ppc ppc64 ~riscv x86"
 IUSE="minimal"
 
 RDEPEND="virtual/perl-Carp"



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

2022-11-23 Thread Jakov Smolić
commit: d4f08ec8aa278983dc5e086bd9aa4c75ce57c350
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:24 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4f08ec8

dev-perl/Time-ParseDate: Keyword 2015.103.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Time-ParseDate/Time-ParseDate-2015.103.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Time-ParseDate/Time-ParseDate-2015.103.0-r1.ebuild 
b/dev-perl/Time-ParseDate/Time-ParseDate-2015.103.0-r1.ebuild
index 49c639387554..08a12ef83e30 100644
--- a/dev-perl/Time-ParseDate/Time-ParseDate-2015.103.0-r1.ebuild
+++ b/dev-perl/Time-ParseDate/Time-ParseDate-2015.103.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ DESCRIPTION="A Date/Time Parsing Perl Module"
 
 LICENSE="Time-modules public-domain"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 ~riscv x86"
 
 RDEPEND=""
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTML-FormatText-WithLinks-AndTables/

2022-11-23 Thread Jakov Smolić
commit: 258188cae4eae00486566b02d4ec51bf93f7d5c2
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:20 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=258188ca

dev-perl/HTML-FormatText-WithLinks-AndTables: Keyword 0.70.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 .../HTML-FormatText-WithLinks-AndTables-0.70.0-r2.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/HTML-FormatText-WithLinks-AndTables/HTML-FormatText-WithLinks-AndTables-0.70.0-r2.ebuild
 
b/dev-perl/HTML-FormatText-WithLinks-AndTables/HTML-FormatText-WithLinks-AndTables-0.70.0-r2.ebuild
index b2214081c702..0f8a1b956edf 100644
--- 
a/dev-perl/HTML-FormatText-WithLinks-AndTables/HTML-FormatText-WithLinks-AndTables-0.70.0-r2.ebuild
+++ 
b/dev-perl/HTML-FormatText-WithLinks-AndTables/HTML-FormatText-WithLinks-AndTables-0.70.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Converts HTML to text with tables intact"
 
 SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~riscv"
 
 RDEPEND="
dev-perl/HTML-Formatter



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

2022-11-23 Thread Jakov Smolić
commit: 399c76c175360f7dd4e7e4db9e32c758a296a873
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:26 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=399c76c1

dev-perl/Linux-Pid: Keyword 0.40.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Linux-Pid/Linux-Pid-0.40.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Linux-Pid/Linux-Pid-0.40.0-r2.ebuild 
b/dev-perl/Linux-Pid/Linux-Pid-0.40.0-r2.ebuild
index dd9b63f51ca1..cea70285af64 100644
--- a/dev-perl/Linux-Pid/Linux-Pid-0.40.0-r2.ebuild
+++ b/dev-perl/Linux-Pid/Linux-Pid-0.40.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,4 +10,4 @@ inherit perl-module
 DESCRIPTION="Interface to Linux getpp?id functions"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Locale-Maketext-Fuzzy/

2022-11-23 Thread Jakov Smolić
commit: a10da812b6e211dd3639a7b590f51661a228f686
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:24 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a10da812

dev-perl/Locale-Maketext-Fuzzy: Keyword 0.110.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 .../Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r2.ebuild 
b/dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r2.ebuild
index c90e0931f682..b3886ab5cabd 100644
--- a/dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r2.ebuild
+++ b/dev-perl/Locale-Maketext-Fuzzy/Locale-Maketext-Fuzzy-0.110.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ DESCRIPTION="Maketext from already interpolated strings"
 
 SLOT="0"
 LICENSE="CC0-1.0"
-KEYWORDS="amd64 ~hppa ppc x86"
+KEYWORDS="amd64 ~hppa ppc ~riscv x86"
 
 src_prepare() {
sed -i -e 's/use inc::Module::Package/use lib q[.];\nuse 
inc::Module::Package/' Makefile.PL ||



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

2022-11-23 Thread Jakov Smolić
commit: bb09c766c2c3875210d1f561af10a095cdb03b60
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:25 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb09c766

dev-perl/Apache-DBI: Keyword 1.120.0-r3 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Apache-DBI/Apache-DBI-1.120.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Apache-DBI/Apache-DBI-1.120.0-r3.ebuild 
b/dev-perl/Apache-DBI/Apache-DBI-1.120.0-r3.ebuild
index 39a9379ae0b0..880b605015b8 100644
--- a/dev-perl/Apache-DBI/Apache-DBI-1.120.0-r3.ebuild
+++ b/dev-perl/Apache-DBI/Apache-DBI-1.120.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Authentication and Authorization via Perl's DBI"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ppc ppc64 x86"
+KEYWORDS="~alpha amd64 ppc ppc64 ~riscv x86"
 
 RDEPEND="
>=dev-perl/Digest-SHA1-2.10.0



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

2022-11-23 Thread Jakov Smolić
commit: 2c5227421c0986ab9f4ff91c56185e69012d4e83
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:25 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c522742

dev-perl/Apache-Reload: Keyword 0.130.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Apache-Reload/Apache-Reload-0.130.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Apache-Reload/Apache-Reload-0.130.0-r2.ebuild 
b/dev-perl/Apache-Reload/Apache-Reload-0.130.0-r2.ebuild
index c50e6b88247a..ca7a4543247a 100644
--- a/dev-perl/Apache-Reload/Apache-Reload-0.130.0-r2.ebuild
+++ b/dev-perl/Apache-Reload/Apache-Reload-0.130.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ DESCRIPTION="Automatically reload changed modules without 
restarting Apache"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86"
 
 RDEPEND="www-apache/mod_perl"
 BDEPEND="${RDEPEND}



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

2022-11-23 Thread Jakov Smolić
commit: a8d5803e3e8a4685f4184a331dd7fee80fea7a09
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:25 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8d5803e

www-apps/rt: Keyword 4.4.4-r3 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 www-apps/rt/rt-4.4.4-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/rt/rt-4.4.4-r3.ebuild b/www-apps/rt/rt-4.4.4-r3.ebuild
index f346018e2508..4466e39d6e62 100644
--- a/www-apps/rt/rt-4.4.4-r3.ebuild
+++ b/www-apps/rt/rt-4.4.4-r3.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="RT is an enterprise-grade ticketing system"
 HOMEPAGE="https://www.bestpractical.com/rt/";
 SRC_URI="https://download.bestpractical.com/pub/${PN}/release/${P}.tar.gz";
 
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 LICENSE="GPL-2"
 IUSE="mysql +postgres fastcgi lighttpd"
 REQUIRED_USE="^^ ( mysql postgres )"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Regexp-Common-net-CIDR/

2022-11-23 Thread Jakov Smolić
commit: ad970c101c350efcbf4378df1d3a66a7ce75198b
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad970c10

dev-perl/Regexp-Common-net-CIDR: Keyword 0.30.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 .../Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.30.0-r1.ebuild| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.30.0-r1.ebuild 
b/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.30.0-r1.ebuild
index eaeb975e1c31..d33a2de3230e 100644
--- a/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.30.0-r1.ebuild
+++ b/dev-perl/Regexp-Common-net-CIDR/Regexp-Common-net-CIDR-0.30.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Provides patterns for CIDR blocks"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 
 RDEPEND="
dev-perl/Regexp-Common



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

2022-11-23 Thread Jakov Smolić
commit: 9a321fc1e2da9f29ac4a77d61adf978bf4dc1728
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:26 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a321fc1

dev-perl/Apache-SizeLimit: Keyword 0.970.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28019
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r2.ebuild 
b/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r2.ebuild
index fd7fb3630dbf..3f10608eebeb 100644
--- a/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r2.ebuild
+++ b/dev-perl/Apache-SizeLimit/Apache-SizeLimit-0.970.0-r2.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Graceful exit for large children"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86"
 LICENSE="Apache-2.0"
 IUSE="test"
 RESTRICT="!test? ( test )"



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

2022-11-23 Thread Jakov Smolić
commit: 0c68c2c554fb7c87ffa90b31071bb5d597f351ba
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:23 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c68c2c5

dev-perl/Regexp-IPv6: Keyword 0.30.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Regexp-IPv6/Regexp-IPv6-0.30.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Regexp-IPv6/Regexp-IPv6-0.30.0-r2.ebuild 
b/dev-perl/Regexp-IPv6/Regexp-IPv6-0.30.0-r2.ebuild
index b0a2fa6617d2..37257d8cd561 100644
--- a/dev-perl/Regexp-IPv6/Regexp-IPv6-0.30.0-r2.ebuild
+++ b/dev-perl/Regexp-IPv6/Regexp-IPv6-0.30.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,4 +10,4 @@ inherit perl-module
 DESCRIPTION="Regular expression for IPv6 addresses"
 
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"



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

2022-11-23 Thread Jakov Smolić
commit: 4b85b0e4ebc790a5b760d6404c2a84eeafdc7321
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b85b0e4

dev-perl/PerlIO-eol: Keyword 0.170.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/PerlIO-eol/PerlIO-eol-0.170.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/PerlIO-eol/PerlIO-eol-0.170.0.ebuild 
b/dev-perl/PerlIO-eol/PerlIO-eol-0.170.0.ebuild
index ffe780112200..7341d92be44d 100644
--- a/dev-perl/PerlIO-eol/PerlIO-eol-0.170.0.ebuild
+++ b/dev-perl/PerlIO-eol/PerlIO-eol-0.170.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PerlIO layer for normalizing line endings"
 
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris"
+KEYWORDS="amd64 ~ia64 ~ppc ~riscv sparc x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris"
 
 RDEPEND="
virtual/perl-Exporter



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

2022-11-23 Thread Jakov Smolić
commit: da8b5fafc121df1c08f87d370c429edd6f02b62a
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:23 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da8b5faf

dev-perl/Scope-Upper: Keyword 0.320.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Scope-Upper/Scope-Upper-0.320.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Scope-Upper/Scope-Upper-0.320.0.ebuild 
b/dev-perl/Scope-Upper/Scope-Upper-0.320.0.ebuild
index 7e454b3fb61e..2e2ec3ba61a3 100644
--- a/dev-perl/Scope-Upper/Scope-Upper-0.320.0.ebuild
+++ b/dev-perl/Scope-Upper/Scope-Upper-0.320.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,4 +11,4 @@ inherit perl-module
 DESCRIPTION="Act on upper scopes"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/HTML-Mason-PSGIHandler/

2022-11-23 Thread Jakov Smolić
commit: 9567236d83da627d26fc23c1f020b9e4bc9ae9e0
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:21 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9567236d

dev-perl/HTML-Mason-PSGIHandler: Keyword 0.530.0-r1 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 .../HTML-Mason-PSGIHandler/HTML-Mason-PSGIHandler-0.530.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/HTML-Mason-PSGIHandler/HTML-Mason-PSGIHandler-0.530.0-r1.ebuild 
b/dev-perl/HTML-Mason-PSGIHandler/HTML-Mason-PSGIHandler-0.530.0-r1.ebuild
index 2996491b9176..5a58a9cb927d 100644
--- a/dev-perl/HTML-Mason-PSGIHandler/HTML-Mason-PSGIHandler-0.530.0-r1.ebuild
+++ b/dev-perl/HTML-Mason-PSGIHandler/HTML-Mason-PSGIHandler-0.530.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="PSGI handler for HTML::Mason"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Text-Password-Pronounceable/

2022-11-23 Thread Jakov Smolić
commit: 518f5552bf3964558eacffda0fd6c0969036e943
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:23 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=518f5552

dev-perl/Text-Password-Pronounceable: Keyword 0.300.0-r2 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 .../Text-Password-Pronounceable-0.300.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/Text-Password-Pronounceable/Text-Password-Pronounceable-0.300.0-r2.ebuild
 
b/dev-perl/Text-Password-Pronounceable/Text-Password-Pronounceable-0.300.0-r2.ebuild
index a920fab3be8d..11e1c5f9b149 100644
--- 
a/dev-perl/Text-Password-Pronounceable/Text-Password-Pronounceable-0.300.0-r2.ebuild
+++ 
b/dev-perl/Text-Password-Pronounceable/Text-Password-Pronounceable-0.300.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Generate pronounceable passwords"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 ~riscv ~x86"
 
 src_prepare() {
sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||



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

2022-11-23 Thread Jakov Smolić
commit: 4fd8dcd94f9f498c8e12b3d02625c690351bea88
Author: Yu Gu  gmail  com>
AuthorDate: Sat Oct 29 11:07:26 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:02:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd8dcd9

dev-perl/Linux-Smaps: Keyword 0.140.0 riscv, #878483

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-perl/Linux-Smaps/Linux-Smaps-0.140.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Linux-Smaps/Linux-Smaps-0.140.0.ebuild 
b/dev-perl/Linux-Smaps/Linux-Smaps-0.140.0.ebuild
index 63c250cf1f69..64d13256fdf6 100644
--- a/dev-perl/Linux-Smaps/Linux-Smaps-0.140.0.ebuild
+++ b/dev-perl/Linux-Smaps/Linux-Smaps-0.140.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module linux-info
 DESCRIPTION="Perl interface to /proc/PID/smaps"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86"
 
 BDEPEND="
virtual/perl-ExtUtils-MakeMaker



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

2022-11-23 Thread Jakov Smolić
commit: 3d2db5542b398c63e52f00b0d3c3366be7196588
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:10:53 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:10:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d2db554

dev-libs/libffi: Stabilize 3.4.4 x86, #881739

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-libs/libffi/libffi-3.4.4.ebuild 
b/dev-libs/libffi/libffi-3.4.4.ebuild
index 2d8af71b8a7c..c9b3f53e8ea0 100644
--- a/dev-libs/libffi/libffi-3.4.4.ebuild
+++ b/dev-libs/libffi/libffi-3.4.4.ebuild
@@ -19,7 +19,7 @@ LICENSE="MIT"
 # with FEATURES="-preserved-libs" or another package manager if SONAME
 # changes.
 SLOT="0/8" # SONAME=libffi.so.8
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug exec-static-trampoline pax-kernel static-libs test"
 
 RESTRICT="!test? ( test )"



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

2022-11-23 Thread Jakov Smolić
commit: 2a996c3c9d216a3167087796e03a08c66f44eb69
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:11:33 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:11:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a996c3c

dev-python/pyglet: Stabilize 1.5.27 x86, #881923

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pyglet/pyglet-1.5.27.ebuild 
b/dev-python/pyglet/pyglet-1.5.27.ebuild
index 9686fa818993..1808ce4c5d33 100644
--- a/dev-python/pyglet/pyglet-1.5.27.ebuild
+++ b/dev-python/pyglet/pyglet-1.5.27.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/pyglet/pyglet/archive/v${PV}.tar.gz -> ${P}.gh.tar.g
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="examples image +sound"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/

2022-11-23 Thread Jakov Smolić
commit: 6599d91105190cdc0996d95246e68e5de7dd893f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:10:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:10:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6599d911

dev-lisp/sbcl: Stabilize 2.2.9 x86, #880869

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-lisp/sbcl/sbcl-2.2.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lisp/sbcl/sbcl-2.2.9.ebuild b/dev-lisp/sbcl/sbcl-2.2.9.ebuild
index 82e289d11953..0038a9e2 100644
--- a/dev-lisp/sbcl/sbcl-2.2.9.ebuild
+++ b/dev-lisp/sbcl/sbcl-2.2.9.ebuild
@@ -39,7 +39,7 @@ SRC_URI="mirror://sourceforge/sbcl/${P}-source.tar.bz2
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="-* amd64 ppc ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-solaris"
+KEYWORDS="-* amd64 ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos 
~x86-solaris"
 IUSE="capstone debug doc source +threads +unicode +zstd"
 
 CDEPEND=">=dev-lisp/asdf-3.3:=



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

2022-11-23 Thread Jakov Smolić
commit: 996fbe2bed51b545744c1d3d1841b6cb6d063f38
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:11:08 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:11:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=996fbe2b

dev-cpp/tbb: Stabilize 2021.7.0 x86, #881847

Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-cpp/tbb/tbb-2021.7.0.ebuild b/dev-cpp/tbb/tbb-2021.7.0.ebuild
index 439a0b99a71c..e64bd851162c 100644
--- a/dev-cpp/tbb/tbb-2021.7.0.ebuild
+++ b/dev-cpp/tbb/tbb-2021.7.0.ebuild
@@ -14,7 +14,7 @@ LICENSE="Apache-2.0"
 # https://github.com/oneapi-src/oneTBB/blob/master/CMakeLists.txt#L53
 # libtbb-libtbbmalloc-libtbbbind
 SLOT="0/12.5-2.5-3.5"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-11-23 Thread Jakov Smolić
commit: 5f8d2008f21939cb15846ee7c8b6c7a6dfb69d50
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:10:59 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:10:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f8d2008

sys-libs/readline: Stabilize 8.1_p2-r1 x86, #881747

Signed-off-by: Jakov Smolić  gentoo.org>

 sys-libs/readline/readline-8.1_p2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/readline/readline-8.1_p2-r1.ebuild 
b/sys-libs/readline/readline-8.1_p2-r1.ebuild
index e3eea90c37ef..21cc3483f2e8 100644
--- a/sys-libs/readline/readline-8.1_p2-r1.ebuild
+++ b/sys-libs/readline/readline-8.1_p2-r1.ebuild
@@ -54,7 +54,7 @@ esac
 LICENSE="GPL-3"
 SLOT="0/8"  # subslot matches SONAME major
 [[ ${PV} == *_rc* ]] || \
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs +unicode utils"
 
 
RDEPEND=">=sys-libs/ncurses-5.9-r3:=[static-libs?,unicode(+)?,${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-java/icu4j/

2022-11-23 Thread Jakov Smolić
commit: 05d6c56f880a5c20cc4470b939b57c8251bada94
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:12:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:12:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05d6c56f

dev-java/icu4j: Stabilize 72.1 x86, #882083

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-java/icu4j/icu4j-72.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/icu4j/icu4j-72.1.ebuild b/dev-java/icu4j/icu4j-72.1.ebuild
index aa0053c39bc3..6c36773ab3b6 100644
--- a/dev-java/icu4j/icu4j-72.1.ebuild
+++ b/dev-java/icu4j/icu4j-72.1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/unicode-org/icu/archive/refs/tags/release-${PV/./-}.
 
 LICENSE="icu"
 SLOT="70"
-KEYWORDS="amd64 ~arm arm64 ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 x86"
 
 DEPEND=">=virtual/jdk-1.8:*
test? ( dev-java/junitparams:0 )"



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

2022-11-23 Thread Jakov Smolić
commit: 712796fe7b71d1511ef7b184d4002ae0d8145b9e
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:12:29 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:12:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=712796fe

dev-libs/libfilezilla: Stabilize 0.39.1-r1 x86, #882003

Signed-off-by: Jakov Smolić  gentoo.org>

 dev-libs/libfilezilla/libfilezilla-0.39.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libfilezilla/libfilezilla-0.39.1-r1.ebuild 
b/dev-libs/libfilezilla/libfilezilla-0.39.1-r1.ebuild
index 48e9a6b76de4..2e9c6bff9ffc 100644
--- a/dev-libs/libfilezilla/libfilezilla-0.39.1-r1.ebuild
+++ b/dev-libs/libfilezilla/libfilezilla-0.39.1-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://download.filezilla-project.org/${PN}/${P}.tar.bz2";
 
 LICENSE="GPL-2+"
 SLOT="0/31" # libfilezilla.so version
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



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

2022-11-23 Thread Jakov Smolić
commit: 52954356b170ebc8b0e5229b1e5351ab00c1aa5d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:12:30 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:12:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52954356

net-ftp/filezilla: Stabilize 3.61.0 x86, #882003

Signed-off-by: Jakov Smolić  gentoo.org>

 net-ftp/filezilla/filezilla-3.61.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/filezilla/filezilla-3.61.0.ebuild 
b/net-ftp/filezilla/filezilla-3.61.0.ebuild
index 1696ceb647d4..803b78834864 100644
--- a/net-ftp/filezilla/filezilla-3.61.0.ebuild
+++ b/net-ftp/filezilla/filezilla-3.61.0.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv x86"
 IUSE="dbus nls test"
 RESTRICT="!test? ( test )"
 



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

2022-11-23 Thread Jakov Smolić
commit: ad84ba5feb76bbc6cde32d26a3771cfc182c96d5
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Nov 23 14:12:36 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Nov 23 14:12:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad84ba5f

app-text/a2ps: Stabilize 4.14-r8 x86, #882325

Signed-off-by: Jakov Smolić  gentoo.org>

 app-text/a2ps/a2ps-4.14-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/a2ps/a2ps-4.14-r8.ebuild 
b/app-text/a2ps/a2ps-4.14-r8.ebuild
index 6db6238b1d72..023fd9226403 100644
--- a/app-text/a2ps/a2ps-4.14-r8.ebuild
+++ b/app-text/a2ps/a2ps-4.14-r8.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${PV:0:4}"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="cjk emacs latex nls static-libs vanilla"
 
 RESTRICT="test"



  1   2   3   4   >