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

2022-09-25 Thread Michał Górny
commit: b641558fa4cac15e6ff72b02a685853fd1f3bfdf
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep 26 05:58:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep 26 05:58:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b641558f

dev-libs/expat: Remove old

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

 dev-libs/expat/Manifest   |  3 --
 dev-libs/expat/expat-2.4.6.ebuild | 94 ---
 dev-libs/expat/expat-2.4.7.ebuild | 94 ---
 dev-libs/expat/expat-2.4.8.ebuild | 94 ---
 4 files changed, 285 deletions(-)

diff --git a/dev-libs/expat/Manifest b/dev-libs/expat/Manifest
index 89d84195a7b6..1874c7a26cc7 100644
--- a/dev-libs/expat/Manifest
+++ b/dev-libs/expat/Manifest
@@ -1,4 +1 @@
-DIST expat-2.4.6.tar.xz 452468 BLAKE2B 
8b30acc2628e3ce67ee57a4c9bee232f89f49ee70901588f7f5a34844e459cbc447fd225a734078100e52c96a73aa1f016e4f2d51d9a079128d661d97b2213c0
 SHA512 
830b00dbdfb92ef5cab69d783762a78443cd7d834bccda072d103c6178327cf480bde579089b1c3be884e67ddb862178fa734bd7e1f992f6f0ca29d83e21d737
-DIST expat-2.4.7.tar.xz 454136 BLAKE2B 
441616f44ce585f75a67a3ebc2264e5723df55975dbfa9a9279039d3773d9e5a4b37c70a8e26787bbc8742fbc66a077e6845b540df6fede936d98065587fe3ac
 SHA512 
e1a16cd48fcd6c4974dc7058d2e0284e0f91565835ec93f16d3f2c79647124470e5edb9f88f1ab9df5f403883a527750a4d63b941bd26fd43c05cd6f42bdcc48
-DIST expat-2.4.8.tar.xz 454428 BLAKE2B 
25da91fdcdefe81740cc8129fa52bf4ceb0bbbee11f0d750485424dbc638f5fba8c30007d0f0b0e3ff5c84fe197b9b220852976272dfe5d6cc451d114297c2d7
 SHA512 
d19b0d6469537aed20c54bd9cfa4089d39e4acaaddde57809de7c6aec55dc870677c02480e7f65dac5620bd5454b889370453613518f9da647c74a831a2a1b7b
 DIST expat-2.4.9.tar.xz 459284 BLAKE2B 
105fef732e26b691f6c212341b7377b518d693aa67f106d0ff2f0fbccd798b7526473ed21e22b6d2b6f1ca8aa7d0eb0adc62ffdefc3c2cb81a6af5a379e64de9
 SHA512 
8508379b4915d84d50f3638678a90792179c98247d1cb5e6e6387d117af4dc148ac7031c1debea8b96e7b710ef436cf0dd5da91f3d22b8186a00cfafe1201169

diff --git a/dev-libs/expat/expat-2.4.6.ebuild 
b/dev-libs/expat/expat-2.4.6.ebuild
deleted file mode 100644
index 8db61e9898d3..
--- a/dev-libs/expat/expat-2.4.6.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-AUTOTOOLS_AUTO_DEPEND=no
-AT_NOEAUTOHEADER=yes  # because expat_config.h.in would need post-processing
-inherit autotools multilib-minimal
-
-DESCRIPTION="Stream-oriented XML parser library"
-HOMEPAGE="https://libexpat.github.io/;
-SRC_URI="https://github.com/libexpat/libexpat/releases/download/R_${PV//\./_}/expat-${PV}.tar.xz;
-
-LICENSE="MIT"
-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 ~x86-winnt"
-IUSE="examples static-libs unicode"
-BDEPEND="unicode? ( ${AUTOTOOLS_DEPEND} )"
-
-DOCS=( README.md )
-
-src_prepare() {
-   default
-
-   # fix interpreter to be a recent/good shell
-   sed -i -e "1s:/bin/sh:${BASH}:" conftools/get-version.sh || die
-   if use unicode; then
-   cp -R "${S}" "${S}"w || die
-   pushd "${S}"w >/dev/null
-   find -name Makefile.am \
-   -exec sed \
-   -e 's,libexpat\.la,libexpatw.la,' \
-   -e 's,libexpat_la,libexpatw_la,' \
-   -i {} + || die
-   eautoreconf
-   popd >/dev/null
-   fi
-}
-
-multilib_src_configure() {
-   local myconf="$(use_enable static-libs static) --without-docbook"
-
-   mkdir -p "${BUILD_DIR}"w || die
-
-   if use unicode; then
-   pushd "${BUILD_DIR}"w >/dev/null
-   CPPFLAGS="${CPPFLAGS} -DXML_UNICODE" ECONF_SOURCE="${S}"w econf 
${myconf}
-   popd >/dev/null
-   fi
-
-   ECONF_SOURCE="${S}" econf ${myconf}
-}
-
-multilib_src_compile() {
-   emake
-
-   if use unicode; then
-   pushd "${BUILD_DIR}"w >/dev/null
-   emake -C lib
-   popd >/dev/null
-   fi
-}
-
-multilib_src_install() {
-   emake install DESTDIR="${D}"
-
-   if use unicode; then
-   pushd "${BUILD_DIR}"w >/dev/null
-   emake -C lib install DESTDIR="${D}"
-   popd >/dev/null
-
-   pushd "${ED}"/usr/$(get_libdir)/pkgconfig >/dev/null
-   cp expat.pc expatw.pc
-   sed -i -e '/^Libs/s:-lexpat::' expatw.pc || die
-   popd >/dev/null
-   fi
-}
-
-multilib_src_install_all() {
-   einstalldocs
-
-   doman doc/xmlwf.1
-
-   # Note: Use of HTML_DOCS would add unwanted "doc" subfolder
-   docinto html
-   dodoc doc/*.{css,html}
-
-   if use examples; then
-   docinto 

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

2022-09-25 Thread Joonas Niilola
commit: 1d1dbdf709eaa1d40bdfef774433c26215684dc8
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Sep 26 05:50:18 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep 26 05:50:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d1dbdf7

x11-misc/rofi: Stabilize 1.7.5 amd64, #872791

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

 x11-misc/rofi/rofi-1.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/rofi/rofi-1.7.5.ebuild b/x11-misc/rofi/rofi-1.7.5.ebuild
index b51884994242..ebeef196f431 100644
--- a/x11-misc/rofi/rofi-1.7.5.ebuild
+++ b/x11-misc/rofi/rofi-1.7.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/davatorium/rofi/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm64 ~x86"
+KEYWORDS="amd64 arm64 ~x86"
 IUSE="+drun test +windowmode"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Joonas Niilola
commit: 9e75d8e10928317e424675858d37db7aac32919e
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Sep 26 05:51:01 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Sep 26 05:51:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e75d8e1

x11-misc/rofi: Stabilize 1.7.5 x86, #872791

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

 x11-misc/rofi/rofi-1.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/rofi/rofi-1.7.5.ebuild b/x11-misc/rofi/rofi-1.7.5.ebuild
index ebeef196f431..83071b30f34a 100644
--- a/x11-misc/rofi/rofi-1.7.5.ebuild
+++ b/x11-misc/rofi/rofi-1.7.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/davatorium/rofi/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm64 ~x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="+drun test +windowmode"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Arthur Zamarin
commit: 08b9e496c2f3485f66e7e296d96d39aba4de1c84
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:19:13 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 05:05:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b9e496

dev-python/greenlet: drop 1.1.2-r1

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

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

diff --git a/dev-python/greenlet/Manifest b/dev-python/greenlet/Manifest
index e240b2dcad84..390f4d088b36 100644
--- a/dev-python/greenlet/Manifest
+++ b/dev-python/greenlet/Manifest
@@ -1,2 +1 @@
-DIST greenlet-1.1.2.tar.gz 91224 BLAKE2B 
1430f96acfba3c184b9ac0f51acde7c48aa5d2e648a155cadf16399c878f527a4bafcb547d2b28835095ba2fd21c33096ee6fb51ce5feda0a8c5915be521b32a
 SHA512 
e7bcc1bfffc80fcaee735ee69f6f53e8f68bd4d3ab8ad6ed813684ffad72340a347e4810f18cc32d9c3948b5c995aefc3a53ce4ae60324093dae12042d33183b
 DIST greenlet-1.1.3.tar.gz 91624 BLAKE2B 
88ba03f7a5acc7de2ab757a04667de9774ec8979b0f3d45131f8174a4ea9a608e359e4d8ce2f7e57c58ce4844e58a082d35d983fd583fc6f53ffa38363fb7863
 SHA512 
9ece4a4e758de963c96c7cbd33aec33fa11ddd3d46b8dc4194e14d534f8f68787df551cb1e3be57fc8a65fbd8d5daf8fee59567927f6f272535dd7c720baa4f4

diff --git a/dev-python/greenlet/greenlet-1.1.2-r1.ebuild 
b/dev-python/greenlet/greenlet-1.1.2-r1.ebuild
deleted file mode 100644
index 794ee971d35b..
--- a/dev-python/greenlet/greenlet-1.1.2-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-# Note: greenlet is built-in in pypy
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Lightweight in-process concurrent programming"
-HOMEPAGE="
-   https://greenlet.readthedocs.io/en/latest/
-   https://github.com/python-greenlet/greenlet/
-   https://pypi.org/project/greenlet/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 -hppa -ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-
-PATCHES=(
-   "${FILESDIR}/${P}-fix-py3.11.patch"
-)
-
-distutils_enable_sphinx docs
-distutils_enable_tests unittest
-
-python_test() {
-   eunittest greenlet.tests
-}



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

2022-09-25 Thread Arthur Zamarin
commit: e9302595ac833c9a6afa60d5092e1efe60c5ee77
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:20:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 05:05:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9302595

dev-python/reportlab: drop 3.6.7, 3.6.11

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

 dev-python/reportlab/Manifest|  1 -
 dev-python/reportlab/reportlab-3.6.11.ebuild | 62 
 dev-python/reportlab/reportlab-3.6.7.ebuild  | 58 --
 3 files changed, 121 deletions(-)

diff --git a/dev-python/reportlab/Manifest b/dev-python/reportlab/Manifest
index 2a8ea9c69900..a2c365c94910 100644
--- a/dev-python/reportlab/Manifest
+++ b/dev-python/reportlab/Manifest
@@ -1,3 +1,2 @@
 DIST pfbfer-20070710.zip 677333 BLAKE2B 
100214476a361a5e5d1f3da0999591345f6e3a3f8c6bc3f6a3e9eca734190c6259758a43302c6e41254d33491fe535eb7d5dd07aa9727c912424bebc31fc18df
 SHA512 
6fd4a5d955464b10d13a7b748703450c1fe120d5ed09e8cfa1b4dfa9c183c59fe001df29433af551796b0df62544b7ddc364f9bb1bdcc2cd300434340ffcc4f2
 DIST reportlab-3.6.11.tar.gz 4519404 BLAKE2B 
a099a4adcaf7186cbb558ba708abf47019cff33c6a5335b27bb1eb1377c3276ae9ecdf33e66f614880de2f72e195333f3a7839ce776b8946431e2d23872fb13b
 SHA512 
2ef81850f4e30e78ef9e923d3aea7efac6c98dce83f90c0edd47384febd68eb6ac81e05c7038e7d67458bdae16d1b19b75e9aeb8da6a5283e9173e27e4369251
-DIST reportlab-3.6.7.tar.gz 4504447 BLAKE2B 
3e691294d20f94850840ddc70565d2235bdcb37d47b5e869e34e5fea93dc9ba017d09f088e18b6479266354076b89461849dd1eb7d1d4e8b12a9c4a95706bf66
 SHA512 
51f98900ccf7ef34fefc237bf1c787931a525cd82284685bda26f411760b97d1b85fce5bffa59b133705f6c1769a8d3616ef85ea368ed59dfc72f24d5faf6e88

diff --git a/dev-python/reportlab/reportlab-3.6.11.ebuild 
b/dev-python/reportlab/reportlab-3.6.11.ebuild
deleted file mode 100644
index 68cb5f083af0..
--- a/dev-python/reportlab/reportlab-3.6.11.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Tools for generating printable PDF documents from any data source"
-HOMEPAGE="
-   https://www.reportlab.com/
-   https://pypi.org/project/reportlab/
-"
-SRC_URI="
-   mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
-   https://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
-
-DEPEND="
-   media-libs/freetype
-   media-libs/libart_lgpl
-   sys-libs/zlib:=
-"
-RDEPEND="
-   ${DEPEND}
-   dev-python/pillow[tiff,truetype,jpeg(+),${PYTHON_USEDEP}]
-"
-BDEPEND="
-   app-arch/unzip
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.6.9-paths.patch
-)
-
-distutils_enable_sphinx docs/source
-
-src_unpack() {
-   unpack ${P}.tar.gz
-   cd ${P}/src/reportlab/fonts || die
-   unpack pfbfer-20070710.zip
-}
-
-src_configure() {
-   cat > local-setup.cfg <<-EOF || die
-   [OPTIONS]
-   no-download-t1-files = 1
-   use-system-libart = 1
-   EOF
-}
-
-python_test() {
-   pushd tests >/dev/null || die
-   "${EPYTHON}" runAll.py -v || die "Testing failed with ${EPYTHON}"
-   popd >/dev/null || die
-}

diff --git a/dev-python/reportlab/reportlab-3.6.7.ebuild 
b/dev-python/reportlab/reportlab-3.6.7.ebuild
deleted file mode 100644
index 39cae44658d1..
--- a/dev-python/reportlab/reportlab-3.6.7.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Tools for generating printable PDF documents from any data source"
-HOMEPAGE="
-   https://www.reportlab.com/
-   https://pypi.org/project/reportlab/;
-SRC_URI="
-   mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz
-   https://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
-
-DEPEND="
-   media-libs/freetype
-   media-libs/libart_lgpl
-   sys-libs/zlib:="
-RDEPEND="
-   ${DEPEND}
-   dev-python/pillow[tiff,truetype,jpeg(+),${PYTHON_USEDEP}]"
-BDEPEND="
-   app-arch/unzip"
-
-distutils_enable_sphinx docs/source
-
-PATCHES=(
-   # bug 738312, remove -L/usr/lib from link line
-   "${FILESDIR}"/${PN}-3.5.48-usr-lib-LLD.patch
-)
-
-src_unpack() {
-   unpack ${P}.tar.gz
-   cd ${P}/src/reportlab/fonts || die
-   unpack pfbfer-20070710.zip
-}
-
-src_configure() {
-   cat > local-setup.cfg <<-EOF || die
-   [OPTIONS]
-   no-download-t1-files = 

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

2022-09-25 Thread Arthur Zamarin
commit: 9bd33405e5df5877fe07d044a1a5a52294799cb6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:18:04 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 05:05:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd33405

dev-python/wsproto: drop 1.1.0

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

 dev-python/wsproto/Manifest |  1 -
 dev-python/wsproto/wsproto-1.1.0.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/wsproto/Manifest b/dev-python/wsproto/Manifest
index 6a8de2285c39..74eba910df29 100644
--- a/dev-python/wsproto/Manifest
+++ b/dev-python/wsproto/Manifest
@@ -1,2 +1 @@
-DIST wsproto-1.1.0.tar.gz 52928 BLAKE2B 
837f5d8411a55b026d8c5df8b03b44c92f71fe2856884e5199e639a5c060fabbe8eec39cb6861e8f88ae7fc366cbeef4f9d62dade2c95857d27339fa73e90638
 SHA512 
0cd726bc62ca4d11e96f470f51511008bd43dbb9e99a17633d2a40da7bdaf19716e0a1c995350f5c8f418f906848dd6f2b9b0a853c1b6858ddafa1cc02fab710
 DIST wsproto-1.2.0.tar.gz 53425 BLAKE2B 
0b6bafb5d67be54a9b9c77a9682caf1071e82321fb9112ff977b643956ef5d2d5dcc7e523c6e3038c4548adb7b4f022fe2664112b7a10ab0e183d578158b0711
 SHA512 
43270687a1cfb5f35423c527de5b9db7ee2ddf27d416f47358386c1c94dc3f836a601f300bf66441c4b90130e6e6f502fb29dfeb2374dd76aefa19cfbb70a372

diff --git a/dev-python/wsproto/wsproto-1.1.0.ebuild 
b/dev-python/wsproto/wsproto-1.1.0.ebuild
deleted file mode 100644
index 77b63c9f278c..
--- a/dev-python/wsproto/wsproto-1.1.0.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="WebSockets state-machine based protocol implementation"
-HOMEPAGE="
-   https://github.com/python-hyper/wsproto/
-   https://pypi.org/project/wsproto/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
-
-RDEPEND="
-   >=dev-python/h11-0.9[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest



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

2022-09-25 Thread Miroslav Šulc
commit: d4da5b9edb3e87ac214609b5b0f3bb8f1f323dd5
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Sep 26 05:02:29 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Sep 26 05:02:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4da5b9e

media-sound/patchage: dropped obsolete 1.0.6

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

 media-sound/patchage/Manifest  |  1 -
 media-sound/patchage/patchage-1.0.6.ebuild | 43 --
 2 files changed, 44 deletions(-)

diff --git a/media-sound/patchage/Manifest b/media-sound/patchage/Manifest
index 92f04e2ecfbf..4fcfc17257db 100644
--- a/media-sound/patchage/Manifest
+++ b/media-sound/patchage/Manifest
@@ -1,3 +1,2 @@
 DIST patchage-1.0.10.tar.xz 341164 BLAKE2B 
db7e17acc483b1fec27c80a3bedf3b546d303d8ce4f90f7f7669a4e4e1dcb526881d949d91edfdd6283dff3d9382c4c3534972065e2769a43e9e4b982b0dfbec
 SHA512 
c6c43afc50978db02517282c1e8c7aad131e30f6255e79e65ea17edcee0b470ec3172da2c057abe4cf4bb12a081a92165ac322cfc4ec77382bb992e74827831b
-DIST patchage-1.0.6.tar.bz2 664841 BLAKE2B 
72d0de6d12e07ec160f4c59c51f138e1220a1b8994bdab90f56dd715bf16b6f561836d184ec5d5077de3bc7bb5c6778ea2b7bcbf0b33230be662f2b729eac568
 SHA512 
b7aedcb07da0c81842929833ab93a0b20c08e465bf05ebb4e47670d295c0d4d0d50f0f74001d9264c2c23ef08d3881232e7622ecf101d1d53ffcae2f8c0f31d3
 DIST patchage-1.0.8.tar.xz 334888 BLAKE2B 
d6bac04a3a6880c7758a01c60b4f4c907e7ae191ef8956fb6ad6f039d9bf40e973ff6e38fc6a5af5b4b4ce5386496282ab5cb06573b0e091e24b7c80fae73ac3
 SHA512 
af2e43c53ce80ab59416745e85cd7fc524fd3b21ae259d171f15998566cfa067a84a7406e78f5b50bc3ff339363b3ed9cacc9790f08cc6189e4919fc43d041dc

diff --git a/media-sound/patchage/patchage-1.0.6.ebuild 
b/media-sound/patchage/patchage-1.0.6.ebuild
deleted file mode 100644
index d32bc3586aef..
--- a/media-sound/patchage/patchage-1.0.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..11} )
-PYTHON_REQ_USE='threads(+)'
-inherit waf-utils python-any-r1 xdg
-
-DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems"
-HOMEPAGE="https://drobilla.net/software/patchage;
-SRC_URI="https://download.drobilla.net/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="alsa debug jack-dbus"
-
-BDEPEND="
-   ${PYTHON_DEPS}
-   virtual/pkgconfig
-"
-RDEPEND="dev-cpp/glibmm:2
-   dev-cpp/gtkmm:2.4
-   media-libs/ganv
-   virtual/jack
-   alsa? ( media-libs/alsa-lib )
-   jack-dbus? (
-   dev-libs/dbus-glib
-   sys-apps/dbus
-   )"
-DEPEND="${RDEPEND}
-   dev-libs/boost
-   

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

2022-09-25 Thread Arthur Zamarin
commit: 693edb30e21419f13a9aa6c30a0b8fb85df4eb16
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:17:24 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:17:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=693edb30

dev-python/pydantic: drop 1.9.1, 1.9.2, 1.10.0_beta1

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

 dev-python/pydantic/Manifest |  3 -
 dev-python/pydantic/pydantic-1.10.0_beta1.ebuild | 77 
 dev-python/pydantic/pydantic-1.9.1.ebuild| 77 
 dev-python/pydantic/pydantic-1.9.2.ebuild| 77 
 4 files changed, 234 deletions(-)

diff --git a/dev-python/pydantic/Manifest b/dev-python/pydantic/Manifest
index ea7f79125c0c..1d7121b0583e 100644
--- a/dev-python/pydantic/Manifest
+++ b/dev-python/pydantic/Manifest
@@ -1,5 +1,2 @@
-DIST pydantic-1.10.0b1.gh.tar.gz 886824 BLAKE2B 
f5ae306cf27143723bc2cb87608cdef3eee29ea9e45cde3f61412820858e7b8ab290ba74329317ac916dddb6bd03d011205a1f0d8cd9ba266e4a8655f24b9b61
 SHA512 
6f962e2983bd13bcd79da06d1a663da8c2cae39b7f80184d70e61a23a55661fe79f3bc7d00656f4e14f2aa5746cb889c8463473688dd7572ea825f461e263ec2
 DIST pydantic-1.10.1.gh.tar.gz 887019 BLAKE2B 
5ca8d11528c7a7666136224c97dd0b078cf6f936a23227aa9dcd62af3c6a0af8f07c4c92751bd2c203497a626d4f93a78fd594bfc71dd0c43886c2dacc257af4
 SHA512 
2be3f10a82d655a94b3f250ed4c78439b4195dde3f7f6aa66028105b5c9b0e56aa8176701d563e5372533ae34e0b6d0fe2254df9429b04815607bcfc94e40370
 DIST pydantic-1.10.2.gh.tar.gz 888288 BLAKE2B 
9aac69ace185ccc56255cf36f9af472caf4c6bcbdcbb81eec66353f755673e9a240e7713c0a2ecff00a02e07b0069e4b3f1edda41f345698a979b79dd54b354a
 SHA512 
dc2acfb271cd62b6de08bbaa48dbc76ec8d3a3f3142778ffa2cb9a2a1cad62dbdb3c7470a50e9a2825837b65a48c6aefb8736411f32c398aa9ca779841b53ac5
-DIST pydantic-1.9.1.tar.gz 306846 BLAKE2B 
c22e892f403b6ca5eff7f888c68f9df5c198fa03c8dab833edc556b3b1a4819fc28c9818a649bf5d9c4bb745b0bde826e164eda7760cd26f88e278c86776ad84
 SHA512 
19d2a50ef054b76cc7e8756759f3d67a14a58614dd6ff1b4f60e73354b0028e08743aa3bb5944da7ae357ab279134d3685c454d6affa6524b267c7cd9a40375e
-DIST pydantic-1.9.2.tar.gz 307957 BLAKE2B 
ee3b188dcf058fc81b5f8491a5e757114a3b39db4d9aee3265051559f6ac25cff01bfb3b0536d0f0425534bd9a5a6444b6e6f2ef84b91a6c11085e15ac25265a
 SHA512 
524595aea9401e82d2e985fdb5aa9b4a8b39edfed856d08e057695c786d65c3455991e4f57ce326902ff9cbed328bcb5e6f4133bda769fecea5affb68f3b4345

diff --git a/dev-python/pydantic/pydantic-1.10.0_beta1.ebuild 
b/dev-python/pydantic/pydantic-1.10.0_beta1.ebuild
deleted file mode 100644
index c666dfdb266a..
--- a/dev-python/pydantic/pydantic-1.10.0_beta1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{8..11} )
-
-inherit distutils-r1
-
-MY_P=${P/_beta/b}
-DESCRIPTION="Data parsing and validation using Python type hints"
-HOMEPAGE="
-   https://github.com/pydantic/pydantic/
-   https://pypi.org/project/pydantic/
-"
-SRC_URI="
-   https://github.com/pydantic/pydantic/archive/v${PV/_beta/b}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
-
-RDEPEND="
-   >=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   dev-python/cython[${PYTHON_USEDEP}]
-   test? (
-   dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   dev-python/python-dotenv[${PYTHON_USEDEP}]
-   >=dev-python/python-email-validator-1.2.1[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e '/CFLAGS/d' setup.py || die
-   distutils-r1_src_prepare
-}
-
-python_compile() {
-   if [[ ${EPYTHON} == pypy3 ]]; then
-   # do not build extensions on PyPy to workaround
-   # https://github.com/cython/cython/issues/4763
-   local -x SKIP_CYTHON=1
-   fi
-   distutils-r1_python_compile
-}
-
-python_test() {
-   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-   local -x PYTEST_PLUGINS=pytest_mock
-
-   local EPYTEST_DESELECT=(
-   # flaky test, known upstream
-   
tests/test_hypothesis_plugin.py::test_can_construct_models_with_all_fields
-   )
-   case ${EPYTHON} in
-   pypy3)
-   EPYTEST_DESELECT+=(
-   
tests/test_private_attributes.py::test_private_attribute
-   
tests/test_private_attributes.py::test_private_attribute_annotation
-   
tests/test_private_attributes.py::test_private_attribute_factory
-   

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

2022-09-25 Thread Arthur Zamarin
commit: 433043c5b1f930acaae84df997d6aa4ac084a950
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433043c5

sys-devel/flex: Stabilize 2.6.4-r2 hppa, #872734

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

 sys-devel/flex/flex-2.6.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/flex/flex-2.6.4-r2.ebuild 
b/sys-devel/flex/flex-2.6.4-r2.ebuild
index 2754b8fda7fb..81df61f3d33f 100644
--- a/sys-devel/flex/flex-2.6.4-r2.ebuild
+++ b/sys-devel/flex/flex-2.6.4-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/westes/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="FLEX"
 SLOT="0"
-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="nls static test"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Arthur Zamarin
commit: 71558dc7ee55fb1a5f67345e9b6017a7a90e35cc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:58 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71558dc7

dev-python/pydantic: Stabilize 1.10.1 hppa, #872893

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

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

diff --git a/dev-python/pydantic/pydantic-1.10.1.ebuild 
b/dev-python/pydantic/pydantic-1.10.1.ebuild
index 62273e504d27..4d31d79722de 100644
--- a/dev-python/pydantic/pydantic-1.10.1.ebuild
+++ b/dev-python/pydantic/pydantic-1.10.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]



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

2022-09-25 Thread Arthur Zamarin
commit: edc575145211109f165d10ee3d49aaa7d068638d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:54 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edc57514

dev-libs/userspace-rcu: Stabilize 0.13.2 hppa, #872755

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

 dev-libs/userspace-rcu/userspace-rcu-0.13.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/userspace-rcu/userspace-rcu-0.13.2.ebuild 
b/dev-libs/userspace-rcu/userspace-rcu-0.13.2.ebuild
index 277df9cdd9b6..329e3a0718f5 100644
--- a/dev-libs/userspace-rcu/userspace-rcu-0.13.2.ebuild
+++ b/dev-libs/userspace-rcu/userspace-rcu-0.13.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://lttng.org/files/urcu/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0/8" # subslot = soname version
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Arthur Zamarin
commit: 4a639852e17b56ed497020a3a91db30da6925b83
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:53 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a639852

net-libs/libtirpc: Stabilize 1.3.3 hppa, #872740

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

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

diff --git a/net-libs/libtirpc/libtirpc-1.3.3.ebuild 
b/net-libs/libtirpc/libtirpc-1.3.3.ebuild
index ba194697d531..ea1e6e5c3106 100644
--- a/net-libs/libtirpc/libtirpc-1.3.3.ebuild
+++ b/net-libs/libtirpc/libtirpc-1.3.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
 
 LICENSE="BSD BSD-2 BSD-4 LGPL-2.1+"
 SLOT="0/3" # subslot matches SONAME major
-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="ipv6 kerberos static-libs"
 
 RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )"



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

2022-09-25 Thread Arthur Zamarin
commit: 3c6d6fd0d4e21f3c7546ca7ac7d781b7e5bc04be
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:52 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6d6fd0

sys-apps/logwatch: Stabilize 7.7 hppa, #872737

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

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

diff --git a/sys-apps/logwatch/logwatch-7.7.ebuild 
b/sys-apps/logwatch/logwatch-7.7.ebuild
index b7591acfd434..fccb662cdbe6 100644
--- a/sys-apps/logwatch/logwatch-7.7.ebuild
+++ b/sys-apps/logwatch/logwatch-7.7.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-r3
 else
SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86"
 fi
 
 DESCRIPTION="Analyzes and Reports on system logs"



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

2022-09-25 Thread Arthur Zamarin
commit: c363d22c59ae5cfe4518dd7e27aa956fd840de05
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:57 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c363d22c

dev-python/wsproto: Stabilize 1.2.0 hppa, #872851

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

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

diff --git a/dev-python/wsproto/wsproto-1.2.0.ebuild 
b/dev-python/wsproto/wsproto-1.2.0.ebuild
index 39bfdcf48f5a..77b63c9f278c 100644
--- a/dev-python/wsproto/wsproto-1.2.0.ebuild
+++ b/dev-python/wsproto/wsproto-1.2.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 sparc 
x86"
 
 RDEPEND="
>=dev-python/h11-0.9[${PYTHON_USEDEP}]



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

2022-09-25 Thread Arthur Zamarin
commit: 77820859262cf3ffaa23f77a9e32d09ce25cacff
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:56 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77820859

sys-devel/crossdev: Stabilize 20220818 hppa, #872776

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

 sys-devel/crossdev/crossdev-20220818.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/crossdev/crossdev-20220818.ebuild 
b/sys-devel/crossdev/crossdev-20220818.ebuild
index 50718f6bf60d..7859b332e9ce 100644
--- a/sys-devel/crossdev/crossdev-20220818.ebuild
+++ b/sys-devel/crossdev/crossdev-20220818.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == "" ]] ; then
 else

SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.tar.xz
https://dev.gentoo.org/~vapier/dist/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 fi
 
 DESCRIPTION="Gentoo Cross-toolchain generator"



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

2022-09-25 Thread Arthur Zamarin
commit: 5df40ced4c3c28dc640eecc0566da14f4f80f90e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:55 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df40ced

app-editors/nano: Stabilize 6.4 hppa, #872758

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

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

diff --git a/app-editors/nano/nano-6.4.ebuild b/app-editors/nano/nano-6.4.ebuild
index 87f70a074bed..35beea35766e 100644
--- a/app-editors/nano/nano-6.4.ebuild
+++ b/app-editors/nano/nano-6.4.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]] ; then
 else
MY_P="${PN}-${PV/_}"
SRC_URI="https://www.nano-editor.org/dist/v${PV:0:1}/${MY_P}.tar.xz;
-   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"
+   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"
 fi
 
 DESCRIPTION="GNU GPL'd Pico clone with more functionality"



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

2022-09-25 Thread Arthur Zamarin
commit: f24a1417f91d43e9f313de19fe3098176ee593fa
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:50 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f24a1417

sys-apps/lsb-release: Stabilize 3.2 hppa, #872590

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

 sys-apps/lsb-release/lsb-release-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/lsb-release/lsb-release-3.2.ebuild 
b/sys-apps/lsb-release/lsb-release-3.2.ebuild
index 9d461bae7912..2f34ab2f0b36 100644
--- a/sys-apps/lsb-release/lsb-release-3.2.ebuild
+++ b/sys-apps/lsb-release/lsb-release-3.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/${PN}_os-release-${PV}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 
 # Perl isn't needed at runtime, it is just used to generate the man page.
 BDEPEND="dev-lang/perl"



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

2022-09-25 Thread Arthur Zamarin
commit: 77a2c40526ab83ace27cc7a70aa6a0bb6275ea5f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:51 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77a2c405

sys-libs/gpm: Stabilize 1.20.7-r5 hppa, #872731

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

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

diff --git a/sys-libs/gpm/gpm-1.20.7-r5.ebuild 
b/sys-libs/gpm/gpm-1.20.7-r5.ebuild
index bc8646c9801b..dfc17a6f05f2 100644
--- a/sys-libs/gpm/gpm-1.20.7-r5.ebuild
+++ b/sys-libs/gpm/gpm-1.20.7-r5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
 IUSE="selinux"
 
 RDEPEND="



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

2022-09-25 Thread Arthur Zamarin
commit: 9b6ee2f1c749eb7271399827b09bd81542108e08
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:49 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b6ee2f1

app-arch/xz-utils: Stabilize 5.2.6 hppa, #872446

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

 app-arch/xz-utils/xz-utils-5.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/xz-utils/xz-utils-5.2.6.ebuild 
b/app-arch/xz-utils/xz-utils-5.2.6.ebuild
index b71985098e23..e2fc3bcfe2f8 100644
--- a/app-arch/xz-utils/xz-utils-5.2.6.ebuild
+++ b/app-arch/xz-utils/xz-utils-5.2.6.ebuild
@@ -23,7 +23,7 @@ else
SRC_URI+=" verify-sig? ( https://tukaani.org/xz/${MY_P}.tar.gz.sig )"
 
if [[ ${PV} != *_alpha* && ${PV} != *_beta* ]] ; then
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips 
ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips 
ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
fi
 
S="${WORKDIR}/${MY_P}"



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

2022-09-25 Thread Arthur Zamarin
commit: 5bf3a34c7b7be91531cab55ccd99c13c773f4e83
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Sep 26 04:15:48 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:15:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf3a34c

app-text/xmlto: Stabilize 0.0.28-r9 hppa, #872443

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

 app-text/xmlto/xmlto-0.0.28-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xmlto/xmlto-0.0.28-r9.ebuild 
b/app-text/xmlto/xmlto-0.0.28-r9.ebuild
index e7701f5f5f84..953366daa3ee 100644
--- a/app-text/xmlto/xmlto-0.0.28-r9.ebuild
+++ b/app-text/xmlto/xmlto-0.0.28-r9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="latex text"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/hatch-fancy-pypi-readme/

2022-09-25 Thread Arthur Zamarin
commit: 5d673af6ceddce1d345a67118f455abe511f6519
Author: matoro  users  noreply  github  com>
AuthorDate: Sun Sep 25 22:38:38 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:13:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d673af6

dev-python/hatch-fancy-pypi-readme: Keyword 22.7.0 mips, #865739

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

 .../hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild 
b/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild
index f954065f6873..20270b009332 100644
--- a/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild
+++ b/dev-python/hatch-fancy-pypi-readme/hatch-fancy-pypi-readme-22.7.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 
 RDEPEND="
dev-python/hatchling[${PYTHON_USEDEP}]



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

2022-09-25 Thread Arthur Zamarin
commit: 4b83d02d9e88d23cb1ff38d361ce8c188d4e66c5
Author: matoro  users  noreply  github  com>
AuthorDate: Sun Sep 25 22:38:40 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Sep 26 04:13:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b83d02d

dev-python/jsonschema: Keyword 4.16.0 mips, #865739

Closes: https://github.com/gentoo/gentoo/pull/27461
Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/jsonschema/jsonschema-4.16.0.ebuild 
b/dev-python/jsonschema/jsonschema-4.16.0.ebuild
index 1d7382e8cb60..0b7b0c82673e 100644
--- a/dev-python/jsonschema/jsonschema-4.16.0.ebuild
+++ b/dev-python/jsonschema/jsonschema-4.16.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+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}]



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

2022-09-25 Thread Andrey Grozin
commit: cdfb085fdcb671a5b883cd7347700c9aa7f4fda9
Author: Andrey Grozin  gentoo  org>
AuthorDate: Mon Sep 26 03:43:18 2022 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Mon Sep 26 03:43:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdfb085f

app-text/pdfarranger: bump to 1.9.1

Closes: https://bugs.gentoo.org/872722
Signed-off-by: Andrey Grozin  gentoo.org>

 app-text/pdfarranger/Manifest |  1 +
 app-text/pdfarranger/pdfarranger-1.9.1.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/app-text/pdfarranger/Manifest b/app-text/pdfarranger/Manifest
index 03630e69ae7c..d007ffa7c0b6 100644
--- a/app-text/pdfarranger/Manifest
+++ b/app-text/pdfarranger/Manifest
@@ -1 +1,2 @@
 DIST pdfarranger-1.8.2.tar.gz 258995 BLAKE2B 
019d41e6c89ee4e7a93bd4be9aa593bebf00c3489bae5db46f201e519e7dbd6c011ac5b15ba6450906a8e8ef8610dc9083c32b01fb88828281c0206e32c9d601
 SHA512 
e0b1ed59158681766e6b707a207363a8ccd38bdc76311600d338ef443e0ee79405af6afb65b878a68d7e52d2ea35f6a7aa700d9aaf46b31bcf64fd863c8784f2
+DIST pdfarranger-1.9.1.tar.gz 279138 BLAKE2B 
18ac9a63eff5455e395b3c126adea590b230b1884ee64e08eeaf4951c663787a827e42db9475632210b2ca3875a23e1718fdfc1b4309c5babc7ce31b6e188829
 SHA512 
ba60744f1b7c96ca9f86ed75cc5ea1b3df41af162048550a916a96972b0e987acfbdc3c46693adc239fdad5569369f24555e157a2f56936374ba132ffc8cbde6

diff --git a/app-text/pdfarranger/pdfarranger-1.9.1.ebuild 
b/app-text/pdfarranger/pdfarranger-1.9.1.ebuild
new file mode 100644
index ..9f1c50faa734
--- /dev/null
+++ b/app-text/pdfarranger/pdfarranger-1.9.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{7..10} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+inherit distutils-r1 optfeature xdg desktop
+
+DESCRIPTION="Merge or split pdfs; rearrange, rotate, crop pages"
+HOMEPAGE="https://github.com/jeromerobert/pdfarranger;
+SRC_URI="https://github.com/jeromerobert/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   app-text/poppler[introspection,cairo]
+   >=dev-python/pikepdf-6.0.0[${PYTHON_USEDEP}]
+   dev-python/pycairo[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP},cairo]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/pango[introspection]
+"
+DEPEND="${RDEPEND}
+   dev-python/python-distutils-extra[${PYTHON_USEDEP}]
+"
+
+src_install() {
+   distutils-r1_src_install
+   for x in 16 32 48 256 scalable
+   do doicon -s ${x} data/icons/hicolor/${x}*/*
+   done
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   optfeature "image file import" media-gfx/img2pdf
+}



[gentoo-commits] repo/gentoo:master commit in: app-emulation/distrobox/, app-containers/distrobox/, profiles/updates/

2022-09-25 Thread Maciej Barć
commit: 207599796d46b101a0ed571078ebee4c2f4600f8
Author: Maciej Barć  gentoo  org>
AuthorDate: Mon Sep 26 01:43:15 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Mon Sep 26 01:43:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20759979

app-containers/distrobox: rename from app-emulation/distrobox

Signed-off-by: Maciej Barć  gentoo.org>

 {app-emulation => app-containers}/distrobox/Manifest   | 0
 {app-emulation => app-containers}/distrobox/distrobox-1.4.1.ebuild | 0
 {app-emulation => app-containers}/distrobox/distrobox-.ebuild  | 0
 {app-emulation => app-containers}/distrobox/metadata.xml   | 0
 profiles/updates/3Q-2022   | 1 +
 5 files changed, 1 insertion(+)

diff --git a/app-emulation/distrobox/Manifest 
b/app-containers/distrobox/Manifest
similarity index 100%
rename from app-emulation/distrobox/Manifest
rename to app-containers/distrobox/Manifest

diff --git a/app-emulation/distrobox/distrobox-1.4.1.ebuild 
b/app-containers/distrobox/distrobox-1.4.1.ebuild
similarity index 100%
rename from app-emulation/distrobox/distrobox-1.4.1.ebuild
rename to app-containers/distrobox/distrobox-1.4.1.ebuild

diff --git a/app-emulation/distrobox/distrobox-.ebuild 
b/app-containers/distrobox/distrobox-.ebuild
similarity index 100%
rename from app-emulation/distrobox/distrobox-.ebuild
rename to app-containers/distrobox/distrobox-.ebuild

diff --git a/app-emulation/distrobox/metadata.xml 
b/app-containers/distrobox/metadata.xml
similarity index 100%
rename from app-emulation/distrobox/metadata.xml
rename to app-containers/distrobox/metadata.xml

diff --git a/profiles/updates/3Q-2022 b/profiles/updates/3Q-2022
index 1cc2a9bd58d9..1a55dc36c036 100644
--- a/profiles/updates/3Q-2022
+++ b/profiles/updates/3Q-2022
@@ -17,3 +17,4 @@ slotmove =dev-ruby/rack-test-2.0.2 1.0 2
 move app-office/gnome-todo app-office/endeavour
 move dev-python/python-levenshtein dev-python/Levenshtein
 move mail-mta/protonmail-bridge mail-mta/proton-mail-bridge
+move app-emulation/distrobox app-containers/distrobox



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

2022-09-25 Thread Anthony G. Basile
commit: 0e47c7fdca046db5ec0b34553ba103f2ae26e92b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Sep 26 01:19:25 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Sep 26 01:19:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e47c7fd

app-text/xapian-omega: version bump 1.4.21

Signed-off-by: Anthony G. Basile  gentoo.org>

 app-text/xapian-omega/Manifest   |  1 +
 app-text/xapian-omega/xapian-omega-1.4.21.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
index 8fb023090246..b8778a8c7620 100644
--- a/app-text/xapian-omega/Manifest
+++ b/app-text/xapian-omega/Manifest
@@ -2,3 +2,4 @@ DIST xapian-omega-1.4.17.tar.xz 547372 BLAKE2B 
d164ee2f96d395e2a45919aea821d1bae
 DIST xapian-omega-1.4.18.tar.xz 549892 BLAKE2B 
440f7ac93acca5803c80d905a90db854f36a5fb1e486d5178c25db0490bc01812f2173feb8abb97a2e399449950524db7b557b303c671d1e9a50f062f332008a
 SHA512 
35da36bdaa6997353554604db5ced3f3a05d0862ce5cf357fae639ca88a65ea83bf0be039629e6aedd67f8cb369a7eaeba7f279980c9e2f585083c737c61ea43
 DIST xapian-omega-1.4.19.tar.xz 553680 BLAKE2B 
1008376d2ba6d72d3cc267ee3bda78a1d37491d706417010e0f4ca7dddf78ddd3d9ad07108874eabfffd0280016ce1fad49c86ee89eed9b37ae571586f838c9b
 SHA512 
82b682bc9d244256afffc2ab1b12b0f577184296a979dc42b2865b689c6d46eca6b838b95a5d040dc228de0c2e2261e81279e0a748eaff2d018732ce4bc07fae
 DIST xapian-omega-1.4.20.tar.xz 563324 BLAKE2B 
3836cc1f219f228edbd910dd92eb5bf7f91c6e0e5a1be2fad271dc9246ef0e5dd68d99d48f15c8ac9c449112d492e3becd501413a8c190d0b611d2506f8d82cb
 SHA512 
026ca234d072da39a29d47b5b53033ec7677d51f93a6fedffb2a57ff5b788cc08d94d1dc43ff8c0062639470b8fe3150781008e4b50abd3ec5526b2b98a3a676
+DIST xapian-omega-1.4.21.tar.xz 568440 BLAKE2B 
445152c23f58471402d8017906083123c0a0e55eb8feed8908dae46680148471a65c51ef146c693cbbb807ce7a70d6589c0a77c2508c39417b95f292d5e8b9f1
 SHA512 
a313725084c3c336655a3beaa2c1e6c9186027bf6c90f0c5261f748a08e1e8d1ef9d43b0c6bad5bbd5a5af9d1f3db49b915435e5e815f9e97d452590522e85ec

diff --git a/app-text/xapian-omega/xapian-omega-1.4.21.ebuild 
b/app-text/xapian-omega/xapian-omega-1.4.21.ebuild
new file mode 100644
index ..91ff25791e25
--- /dev/null
+++ b/app-text/xapian-omega/xapian-omega-1.4.21.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI 
search frontend"
+SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.xz;
+HOMEPAGE="https://xapian.org/;
+S="${WORKDIR}/xapian-omega-${PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+DEPEND="~dev-libs/xapian-${PV}:0/30
+   dev-lang/perl
+   dev-libs/libpcre
+   sys-libs/zlib"
+RDEPEND="${DEPEND}"
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}" install
+
+   # Protect /etc/omega.conf
+   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
+   doenvd "${T}"/20xapian-omega
+   dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
+
+   # Directory containing Xapian databases:
+   keepdir /var/lib/omega/data
+
+   # Directory containing OmegaScript templates:
+   keepdir /var/lib/omega/templates
+   mv "${S}"/templates/* "${ED}"/var/lib/omega/templates || die
+
+   # Directory to write Omega logs to:
+   keepdir /var/log/omega
+
+   # Directory containing any cdb files for the $lookup OmegaScript 
command:
+   keepdir /var/lib/omega/cdb
+}



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

2022-09-25 Thread Anthony G. Basile
commit: bcf3c6db66547617042a7f5b4a2b94973098877a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Sep 26 01:16:39 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Sep 26 01:16:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf3c6db

dev-libs/xapian-bindings: version bump 1.4.21

Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-libs/xapian-bindings/Manifest  |   1 +
 .../xapian-bindings/xapian-bindings-1.4.21.ebuild  | 346 +
 2 files changed, 347 insertions(+)

diff --git a/dev-libs/xapian-bindings/Manifest 
b/dev-libs/xapian-bindings/Manifest
index 7698edab3086..d1e579516729 100644
--- a/dev-libs/xapian-bindings/Manifest
+++ b/dev-libs/xapian-bindings/Manifest
@@ -1,3 +1,4 @@
 DIST xapian-bindings-1.4.18.tar.xz 1135644 BLAKE2B 
7120c42d73794f8212bf15afb4566119e44cd39c711d50aab4fcc4320419babc440d4dd732af9e739c68397e740da192fa80cd08c5d2b59e1ae13afff3d6
 SHA512 
e965384febaa83c28fd63b82192bfa4d5d34b4eb7cfacf1ddfc1201deada4f0498df8e50a191713dc95feb8edb0b1a4e9d6983a639c564f086ee305b8a05397e
 DIST xapian-bindings-1.4.19.tar.xz 1137596 BLAKE2B 
46004a3449a3137db42164a8b4c5b8684d2eaf0edfa60fe7ca41d5565d1cc16b110ca8204100c9e654baa323a4c73536f80550b17989ce3ee4a132315c31a50e
 SHA512 
c3e353a192822be5d86d448b9d5e4c5eb15d5eb2d079560f7c457f8f7ca85d42e2b933891e784d384c188577f427ca1929c2b47732b9d637e36543e8b5b704d6
 DIST xapian-bindings-1.4.20.tar.xz 1143304 BLAKE2B 
3ab6a9be536d10b0dd369c1c638acbdd7fdf855f6dc8726db9c3791a8369cd83196214771b923aa538e5dda320d2b417f5f0944181b5691cfe5d8e7ddc97dd96
 SHA512 
bdc876b8e1b946d27673122de6d298112c82fa41e19090a2bcbe0954905ddf66171d36e6753a1e8d46578b128edd729e2fd252311d60ff40a2aec9a4d57796ed
+DIST xapian-bindings-1.4.21.tar.xz 1151620 BLAKE2B 
5596d0784110b6b73efce4b330ad7c0750a7173c94c37d80b4c75865b949b16f32957ff7ca0d67c08592b85874a5b19e57a11d32ef26976fb3cae38f542f5ba0
 SHA512 
86cbdc8ba73be8aa947e209106dd49d111d264f0b00b5831356e19ba3299eb8f87f2c57ab051ea54c54fb5f1b8cc6a1175ee18f89094f5c7345b820ea805ad33

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.4.21.ebuild 
b/dev-libs/xapian-bindings/xapian-bindings-1.4.21.ebuild
new file mode 100644
index ..cd70cb26aeb5
--- /dev/null
+++ b/dev-libs/xapian-bindings/xapian-bindings-1.4.21.ebuild
@@ -0,0 +1,346 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1,3,4} luajit )
+
+PYTHON_COMPAT=( python3_{7,8,9,10} )
+PYTHON_REQ_USE="threads(+)"
+
+USE_PHP="php7-4 php8-0"
+
+PHP_EXT_NAME="xapian"
+PHP_EXT_INI="yes"
+PHP_EXT_OPTIONAL_USE="php"
+
+USE_RUBY="ruby26 ruby27 ruby30"
+RUBY_OPTIONAL="yes"
+
+inherit java-pkg-opt-2 lua mono-env multibuild php-ext-source-r3 python-r1 
ruby-ng
+
+DESCRIPTION="SWIG and JNI bindings for Xapian"
+HOMEPAGE="https://www.xapian.org/;
+SRC_URI="https://oligarchy.co.uk/xapian/${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="java lua mono perl php python ruby tcl"
+REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )
+   lua? ( ${LUA_REQUIRED_USE} )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   ruby? ( || ( $(ruby_get_use_targets) ) )"
+
+COMMONDEPEND=">=dev-libs/xapian-1.4.21
+   lua? ( ${LUA_DEPS} )
+   perl? ( dev-lang/perl:= )
+   php? ( dev-lang/php:=[-threads] )
+   python? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   ${PYTHON_DEPS}
+   )
+   ruby? ( $(ruby_implementations_depend) )
+   tcl? ( dev-lang/tcl:= )
+   mono? ( dev-lang/mono )"
+DEPEND="${COMMONDEPEND}
+   virtual/pkgconfig
+   java? ( >=virtual/jdk-1.8:* )"
+RDEPEND="${COMMONDEPEND}
+   java? ( >=virtual/jre-1.8:* )"
+
+S="${WORKDIR}/${P}"
+
+has_basic_bindings() {
+   # Update this list if new bindings are added that are not built
+   # multiple times for multiple versions like lua, php, python and ruby 
are
+   return $(use mono || use java || use perl || use tcl)
+}
+
+php_copy_sources() {
+   local MULTIBUILD_VARIANTS=($(php_get_slots))
+   multibuild_copy_sources
+}
+
+php_foreach_impl() {
+   local MULTIBUILD_VARIANTS=($(php_get_slots))
+   multibuild_foreach_variant "$@"
+}
+
+ruby_copy_sources() {
+   local MULTIBUILD_VARIANTS=($(ruby_get_use_implementations))
+   multibuild_copy_sources
+}
+
+ruby_foreach_impl() {
+   local MULTIBUILD_VARIANTS=($(ruby_get_use_implementations))
+   multibuild_foreach_variant "$@"
+}
+
+pkg_setup() {
+   use mono && mono-env_pkg_setup
+   use java && java-pkg-opt-2_pkg_setup
+}
+
+src_unpack() {
+   default
+
+   if use php; then
+   local php_slot
+   for php_slot in $(php_get_slots); do
+   # Unfortunately required for 
php-ext-source-r3_createinifiles().
+   mkdir "${WORKDIR}/${php_slot}"
+  

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

2022-09-25 Thread Marek Szuba
commit: 261e10c33ab718ec4c509f0edeb611d48aaab609
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:43:19 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=261e10c3

dev-python/ansible-compat: drop 2.1.0

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/ansible-compat/Manifest |  1 -
 .../ansible-compat/ansible-compat-2.1.0.ebuild | 62 --
 2 files changed, 63 deletions(-)

diff --git a/dev-python/ansible-compat/Manifest 
b/dev-python/ansible-compat/Manifest
index c63286ee0e16..ffe6159bd51c 100644
--- a/dev-python/ansible-compat/Manifest
+++ b/dev-python/ansible-compat/Manifest
@@ -1,3 +1,2 @@
-DIST ansible-compat-2.1.0.tar.gz 37840 BLAKE2B 
5ac74cdaef1c932094996f331ed94418836b3351cbd376ae35ef22046b68dad0a8ab68fd293015db9954e0a5e1df4b5c529b3845cee5778daed2bb207733ca4f
 SHA512 
a85681aff3d34ef4a4cdad8f419017a174bf315034495bc032a7e33d586cbcf72de74d163b6faf3cd21988704e5dbb922872b83a23981891311dbb18e53797a3
 DIST ansible-compat-2.2.0.tar.gz 38772 BLAKE2B 
dbe74d23d2f2e4275bd9df2303417ea83517e780e65c6a34bd6ae1022be265ac816b50b309fc45f88e0c7fac7d7a22c83a826cc15be050698a6f35b267a36ac3
 SHA512 
3bd199431659ecba52743c6c985d2cdc6ee55396444241ba2456bc5430bbc87e26087dffbfff62ac341fa854e19baa0d7052cf79f20511222fd9e001dd020136
 DIST ansible-compat-2.2.1.tar.gz 39126 BLAKE2B 
c4d0512606c99ba8f07e0287620c94af6b46d7bf0077f12dcbfd9689fc7106f164a87db25de1625249ac2930858bfa655bd93d83aba0d85ed4f8bdd42cd345dc
 SHA512 
3e941eb2c5303f83b7e7c057d08801f192889b636d9c6e56a2ac21cf75144a52ba2916eaedeba7bf848dd268387bf4d3261541d75145b213cc3f6baca6a06e5e

diff --git a/dev-python/ansible-compat/ansible-compat-2.1.0.ebuild 
b/dev-python/ansible-compat/ansible-compat-2.1.0.ebuild
deleted file mode 100644
index 438acfa7dc99..
--- a/dev-python/ansible-compat/ansible-compat-2.1.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Contains functions that facilitate working with various versions 
of Ansible"
-HOMEPAGE="
-   https://pypi.org/project/ansible-compat/
-   https://github.com/ansible/ansible-compat/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="
-   >=app-admin/ansible-core-2.9.0[${PYTHON_USEDEP}]
-   >=dev-python/jsonschema-4.5.1[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >=dev-python/subprocess-tee-0.3.5[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/setuptools_scm-6.3.1[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm_git_archive-1.0[${PYTHON_USEDEP}]
-   test? (
-   dev-python/flaky[${PYTHON_USEDEP}]
-   dev-python/pytest-markdown[${PYTHON_USEDEP}]
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   dev-python/pytest-plus[${PYTHON_USEDEP}]
-   )
-"
-
-# All these tests attempt to connect to galaxy.ansible.com
-EPYTEST_DESELECT=(
-   test/test_runtime.py::test_install_collection
-   test/test_runtime.py::test_install_collection_dest
-   test/test_runtime.py::test_prepare_environment_with_collections
-   test/test_runtime.py::test_prerun_reqs_v1
-   test/test_runtime.py::test_prerun_reqs_v2
-   test/test_runtime.py::test_require_collection_no_cache_dir
-   test/test_runtime.py::test_require_collection_wrong_version
-   test/test_runtime.py::test_require_collection
-   test/test_runtime.py::test_upgrade_collection
-   test/test_runtime_example.py::test_runtime
-)
-
-distutils_enable_sphinx docs \
-   dev-python/ansible-pygments \
-   dev-python/myst_parser \
-   dev-python/sphinx_ansible_theme
-
-distutils_enable_tests pytest
-
-python_test() {
-   epytest -p pytest_markdown.plugin
-}



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

2022-09-25 Thread Marek Szuba
commit: 433041b351280e52c64f15863e37baae83c68bf4
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:59:34 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433041b3

x11-misc/i3lock: drop 2.14

Signed-off-by: Marek Szuba  gentoo.org>

 x11-misc/i3lock/Manifest   |  1 -
 x11-misc/i3lock/i3lock-2.14.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/x11-misc/i3lock/Manifest b/x11-misc/i3lock/Manifest
index 0f8105b71e02..d497d592cb07 100644
--- a/x11-misc/i3lock/Manifest
+++ b/x11-misc/i3lock/Manifest
@@ -1,2 +1 @@
 DIST i3lock-2.14.1.tar.xz 28756 BLAKE2B 
b38a3fafeebb5f8cebb643baeb875922659b556a5f919c2a837923e45e8f91a5f3ce297a424414ec9f05255e5888b91723617d837e5ffdbdf81aded42edc34cb
 SHA512 
63b6bd73f66654fe52639434f7d3da64006144ec2ed685ba8683186730d4cc2c10d5aa66174f965030030243f59afaf6def3ff732f710ae441410218f84d6deb
-DIST i3lock-2.14.tar.xz 28648 BLAKE2B 
ef315c4d1175a692b8ea2ac1a6a9cefdaa642fc28cfcc28cbf0c637f9d0cf0ea47738447cf0d90c3c2f869819c178a416aabc44dbfe93ab938e48da2a0143d0a
 SHA512 
85f755333739e61a8ac90447410c48cf54345740bb6c6977efa88500e2b66dfd7fe3338e4fe38f817773219e5994ef6375010fdb3cf711e2ad42045874e39e20

diff --git a/x11-misc/i3lock/i3lock-2.14.ebuild 
b/x11-misc/i3lock/i3lock-2.14.ebuild
deleted file mode 100644
index 4bd709873c4b..
--- a/x11-misc/i3lock/i3lock-2.14.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Simple screen locker"
-HOMEPAGE="https://i3wm.org/i3lock/;
-SRC_URI="https://i3wm.org/${PN}/${P}.tar.xz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
-
-RDEPEND="dev-libs/libev
-   sys-libs/pam
-   x11-libs/cairo[X,xcb(+)]
-   x11-libs/libxcb[xkb]
-   x11-libs/libxkbcommon[X]
-   x11-libs/xcb-util
-   x11-libs/xcb-util-xrm"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
-   default
-
-   sed -i -e 's:login:system-auth:g' pam/${PN} || die
-}



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

2022-09-25 Thread Marek Szuba
commit: f3368555cb18f8e3d6394e0b667d7a40b6779afb
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:57:24 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3368555

sys-fs/ddrescue: drop 1.25

Signed-off-by: Marek Szuba  gentoo.org>

 sys-fs/ddrescue/Manifest |  1 -
 sys-fs/ddrescue/ddrescue-1.25.ebuild | 39 
 2 files changed, 40 deletions(-)

diff --git a/sys-fs/ddrescue/Manifest b/sys-fs/ddrescue/Manifest
index 3c389a7e0746..ea44f87243f9 100644
--- a/sys-fs/ddrescue/Manifest
+++ b/sys-fs/ddrescue/Manifest
@@ -1,2 +1 @@
-DIST ddrescue-1.25.tar.lz 87001 BLAKE2B 
45054ecb6ca12f8fe27d6b783f7e339fc11a9a3425160012e0682e39644fd3c91362ecd568a2a0b93f9f0af87fae2415b33a7c3fcd8fff2262898e8474818a00
 SHA512 
90e344a618e385730836218817588f6854db6d1acdf357bf60bdba04c76382e73041dfc367ba4de60062992ee74b2da58417f6e464ffbeed10ec89fac110f4b8
 DIST ddrescue-1.26.tar.lz 91930 BLAKE2B 
c545499e380587729eb3fcc90a7baf66288348dc88027dfc14401ec72254cc786d8ab7be076a346964327668ff719048dada916c9f1514a765a255f02c5666c7
 SHA512 
bbe414563d459a1ad1c4e55848214d195e01f8bc455104eddbeff7046623f5bc21d961457d27ace2605d13dff68c7948182706b8afe6755e5c363e8cad86a1cc

diff --git a/sys-fs/ddrescue/ddrescue-1.25.ebuild 
b/sys-fs/ddrescue/ddrescue-1.25.ebuild
deleted file mode 100644
index 61ffa9c9ef9d..
--- a/sys-fs/ddrescue/ddrescue-1.25.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs flag-o-matic unpacker
-
-DESCRIPTION="Copy data from one file or block device to another with 
read-error recovery"
-HOMEPAGE="https://www.gnu.org/software/ddrescue/ddrescue.html;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux"
-IUSE="static"
-
-DEPEND="$(unpacker_src_uri_depends)"
-RDEPEND=""
-
-src_configure() {
-   use static && append-ldflags -static
-
-   # not a normal configure script
-   econf \
-   --prefix="${EPREFIX}"/usr \
-   CXX="$(tc-getCXX)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CXXFLAGS="${CXXFLAGS}" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_test() {
-   ./testsuite/check.sh "${S}"/testsuite || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" install install-man
-   einstalldocs
-}



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

2022-09-25 Thread Marek Szuba
commit: 56e798f499c27a535f183d5829bf553b64eb0cab
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:53:49 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56e798f4

net-misc/linuxptp: drop 2.0-r1

Signed-off-by: Marek Szuba  gentoo.org>

 net-misc/linuxptp/Manifest |  1 -
 .../files/linuxptp-2.0_nettstamp-systypes.patch| 52 --
 net-misc/linuxptp/linuxptp-2.0-r1.ebuild   | 48 
 3 files changed, 101 deletions(-)

diff --git a/net-misc/linuxptp/Manifest b/net-misc/linuxptp/Manifest
index 0691344ced65..bd6d2da1cdd6 100644
--- a/net-misc/linuxptp/Manifest
+++ b/net-misc/linuxptp/Manifest
@@ -1,2 +1 @@
-DIST linuxptp-2.0.tgz 184942 BLAKE2B 
79ef9d3c379769a71e652a77f05ab661db444a76a339e72106055cf900de9cabfe303c48760f11701fefe5e641d07b73fc5a250078bedf7faa3ae995ace24da3
 SHA512 
c33487a803f8cc461f790d9a137d5cf8b35cb6d292bdd2cf7a16aa666359d8c5e24667473be843182bef1e9f8d5c6af8aab8918978f10bf08257dd408bba66d6
 DIST linuxptp-3.1.1.tgz 218784 BLAKE2B 
5b46580a0e1b6e003f5f03e512c4f9b348c086f356fd47d3480da5e8223ba291fdb213798c696c37759896a99bccf21cd7e7daddce5aa5ed5701afb0e622a755
 SHA512 
c3c40987fe68480a8473097ebc3c506fb4f8f3b6456bbe637b2b3cb0b3e0182f1513b511fdc04b3607d5f7d8bd1bd22502bb86eb13f9fa4fa63a3331846b33ec

diff --git a/net-misc/linuxptp/files/linuxptp-2.0_nettstamp-systypes.patch 
b/net-misc/linuxptp/files/linuxptp-2.0_nettstamp-systypes.patch
deleted file mode 100644
index d3f8e5d92906..
--- a/net-misc/linuxptp/files/linuxptp-2.0_nettstamp-systypes.patch
+++ /dev/null
@@ -1,52 +0,0 @@
-net_tstamp.h needs clockid_t to be defined, so must include
- before including 
-
-
 a/clock.c
-+++ b/clock.c
-@@ -17,6 +17,7 @@
-  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-  */
- #include 
-+#include 
- #include 
- #include 
- #include 
 a/hwstamp_ctl.c2018-08-12 23:08:43.0 +0200
-+++ b/hwstamp_ctl.c2020-02-07 13:49:53.256859722 +0100
-@@ -23,6 +23,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include 
- #include 
 a/sk.c 2018-08-12 23:08:43.0 +0200
-+++ b/sk.c 2020-02-07 13:50:12.334599236 +0100
-@@ -18,6 +18,7 @@
-  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-  */
- #include 
-+#include 
- #include 
- #include 
- #include 
 a/timemaster.c 2018-08-12 23:08:43.0 +0200
-+++ b/timemaster.c 2020-02-07 13:50:19.848500949 +0100
-@@ -22,7 +22,6 @@
- #include 
- #include 
- #include 
--#include 
- #include 
- #include 
- #include 
-@@ -34,6 +33,7 @@
- #include 
- #include 
- #include 
-+#include 
- 
- #include "print.h"
- #include "rtnl.h"

diff --git a/net-misc/linuxptp/linuxptp-2.0-r1.ebuild 
b/net-misc/linuxptp/linuxptp-2.0-r1.ebuild
deleted file mode 100644
index e979ea289cb2..
--- a/net-misc/linuxptp/linuxptp-2.0-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info systemd toolchain-funcs
-
-DESCRIPTION="The Linux Precision Time Protocol (PTP) implementation"
-HOMEPAGE="http://linuxptp.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/v${PV}/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
-IUSE=""
-
-DEPEND="elibc_musl? ( sys-libs/queue-standalone )"
-RDEPEND=""
-
-CONFIG_CHECK="~PPS ~NETWORK_PHY_TIMESTAMPING ~PTP_1588_CLOCK"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.0_nettstamp-systypes.patch
-)
-
-pkg_setup() {
-   linux-info_pkg_setup
-}
-
-src_compile() {
-   # parse needed additional CFLAGS
-   export MY_FLAGS=$(./incdefs.sh)
-   export EXTRA_CFLAGS="${CFLAGS} ${MY_FLAGS}"
-   emake CC="$(tc-getCC)" prefix=/usr mandir=/usr/share/man
-}
-
-src_install() {
-   emake \
-   prefix="${D}"/usr \
-   mandir="${D}"/usr/share/man \
-   infodir="${D}"/usr/share/info \
-   libdir="${D}"/usr/$(get_libdir) \
-   install
-
-   systemd_dounit "${FILESDIR}"/timemaster.service
-
-   dodoc README.org
-}



[gentoo-commits] repo/gentoo:master commit in: dev-games/irrlicht-mt/

2022-09-25 Thread Marek Szuba
commit: e7e34373978eff5f5218b61378e96c582cd73561
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:47:48 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e34373

dev-games/irrlicht-mt: drop 1.9.0.7

Signed-off-by: Marek Szuba  gentoo.org>

 dev-games/irrlicht-mt/Manifest   |  1 -
 dev-games/irrlicht-mt/irrlicht-mt-1.9.0.7.ebuild | 38 
 2 files changed, 39 deletions(-)

diff --git a/dev-games/irrlicht-mt/Manifest b/dev-games/irrlicht-mt/Manifest
index 33fa0a497605..17491df99e22 100644
--- a/dev-games/irrlicht-mt/Manifest
+++ b/dev-games/irrlicht-mt/Manifest
@@ -1,2 +1 @@
-DIST irrlicht-mt-1.9.0.7.tar.gz 909510 BLAKE2B 
15552612e6cd01d35e48a02e7faa6db521bee2472c68c3a0a0696ae8578cd9cf272d30b953ed4e64a4e233638b6e99a77da301c4cbd9d6c65c634d9a7fdf274b
 SHA512 
5b533efde6bca5ff2a6041d88fcf405c3452c0ccc52ca2d5e03072b0b31c16830cf5fe2af06573c71b29022b590f3082fc8997537c73a7e1981911083e7bf855
 DIST irrlicht-mt-1.9.0.8.tar.gz 909733 BLAKE2B 
6c85377b5e426a9f4ba06ea60fb0414fb9598c3b66d01d80da8461d53b16bc1c74ea5f949d0419d01f2d4dccabff20410840dc9380cac3cf5b656b2e073a4636
 SHA512 
3a5cbcd8d13730e08f24a72b4ceb2a6d3ba1cfa4292475915da6413ab8084d0b7f0b5dc34edc152d5bf516730faf43d983433619b0a1fb15540adb5cab00ca10

diff --git a/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.7.ebuild 
b/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.7.ebuild
deleted file mode 100644
index e5bc5eda8416..
--- a/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.7.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-MY_PN="${PN%-mt}"
-MY_PV="$(ver_rs 3 'mt')"
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="Minetest's fork of dev-games/irrlicht"
-HOMEPAGE="https://github.com/minetest/irrlicht;
-SRC_URI="https://github.com/minetest/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="~dev-games/irrlicht-mt-headers-${PV}
-   media-libs/libpng:0=
-   sys-libs/zlib
-   media-libs/libjpeg-turbo
-   virtual/opengl
-   x11-libs/libX11
-   x11-libs/libXi
-   x11-libs/libXxf86vm"
-DEPEND="${RDEPEND}
-   x11-base/xorg-proto"
-
-S="${WORKDIR}"/${MY_P}
-
-src_install() {
-   cmake_src_install
-
-   # We package these separately
-   rm -r "${ED}"/usr/include/${PN/-/} || die "Failed to exclude header 
files from installation"
-}



[gentoo-commits] repo/gentoo:master commit in: mail-mta/msmtp/

2022-09-25 Thread Marek Szuba
commit: 50dc41aaf2616510a79e03d54fb92ea6471512de
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:46:30 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50dc41aa

mail-mta/msmtp: drop 1.8.20

Signed-off-by: Marek Szuba  gentoo.org>

 mail-mta/msmtp/Manifest|   1 -
 mail-mta/msmtp/msmtp-1.8.20.ebuild | 145 -
 2 files changed, 146 deletions(-)

diff --git a/mail-mta/msmtp/Manifest b/mail-mta/msmtp/Manifest
index aab1f135fe30..65c763f92eba 100644
--- a/mail-mta/msmtp/Manifest
+++ b/mail-mta/msmtp/Manifest
@@ -1,2 +1 @@
-DIST msmtp-1.8.20.tar.xz 385696 BLAKE2B 
cf75715538a65ac0f6fb3b8407e5b7cec865d552b6ecc5a450f5e35d4e42581cfb9f15bb7edc67dae1846018a834769d4e3be5da60ae0e52390cb61531a29a87
 SHA512 
cc5ad4ab21d05f24bac75ab25607d1ede50f5ac24ce40d72cf1b61f9cdfc48e9af477f9975d799a93f1990d0c2e24b651e5a3b3aa6b71279b37a4a43fce11f11
 DIST msmtp-1.8.22.tar.xz 390692 BLAKE2B 
9bb6b7a7afbcc191ed2b45418d968c9b2176ec3d2d423cb9ff13b7afbb0b34978ce954f923f785281b5bca9c36d881a912d1b00c2ce102487df40228066b8e09
 SHA512 
13307bd8004bb7e229193b74f4e736c8462624a4aa1aedbb57421098efb2aa6b8cf1358ebc874a2db48aa6266414b4c6a1673d631356e92c1c538391533e098a

diff --git a/mail-mta/msmtp/msmtp-1.8.20.ebuild 
b/mail-mta/msmtp/msmtp-1.8.20.ebuild
deleted file mode 100644
index 8eb6da2b8159..
--- a/mail-mta/msmtp/msmtp-1.8.20.ebuild
+++ /dev/null
@@ -1,145 +0,0 @@
-# Copyright 2004-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit fcaps
-
-DESCRIPTION="An SMTP client and SMTP plugin for mail user agents such as Mutt"
-HOMEPAGE="https://marlam.de/msmtp/;
-SRC_URI="https://marlam.de/msmtp/releases/${P}.tar.xz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="daemon doc gnome-keyring idn +mta nls sasl ssl vim-syntax"
-
-# fcaps.eclass unconditionally defines "filecaps" USE flag which we need for
-# USE="daemon" in order to set the caps we need.
-REQUIRED_USE="daemon? ( filecaps )"
-
-# Upstream discourages usage of openssl. See also
-# https://marlam.de/msmtp/news/openssl-discouraged/
-DEPEND="
-   gnome-keyring? ( app-crypt/libsecret )
-   idn? ( net-dns/libidn2:= )
-   nls? ( virtual/libintl )
-   sasl? ( virtual/gsasl )
-   ssl? ( net-libs/gnutls[idn?] )
-"
-
-RDEPEND="${DEPEND}
-   net-mail/mailbase
-   daemon? (
-   acct-group/msmtpd
-   acct-user/msmtpd
-   )
-   mta? (
-   !mail-mta/courier
-   !mail-mta/esmtp
-   !mail-mta/exim
-   !mail-mta/mini-qmail
-   !mail-mta/netqmail
-   !mail-mta/nullmailer
-   !mail-mta/postfix
-   !mail-mta/qmail-ldap
-   !mail-mta/sendmail
-   !mail-mta/opensmtpd
-   !=mail-mta/ssmtp-2.64-r2[mta]
-   )
-"
-
-BDEPEND="
-   doc? ( virtual/texi2dvi )
-   nls? ( sys-devel/gettext )
-   virtual/pkgconfig
-"
-
-DOCS="AUTHORS ChangeLog NEWS README THANKS doc/msmtprc*"
-
-src_prepare() {
-   # Use default Gentoo location for mail aliases
-   sed 's:/etc/aliases:/etc/mail/aliases:' \
-   -i scripts/find_alias/find_alias_for_msmtp.sh || die
-
-   default
-}
-
-src_configure() {
-   local myeconfargs=(
-   --disable-gai-idn
-   $(use_enable nls)
-   $(use_with daemon msmtpd)
-   $(use_with gnome-keyring libsecret)
-   $(use_with idn libidn)
-   $(use_with sasl libgsasl)
-   $(use_with ssl tls gnutls)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-   default
-
-   if use doc ; then
-   cd doc || die
-   emake html pdf
-   fi
-}
-
-src_install() {
-   default
-
-   if use daemon ; then
-   fcaps CAP_NET_BIND_SERVICE usr/bin/msmtpd
-   newinitd "${FILESDIR}"/msmtpd.init msmtpd
-   newconfd "${FILESDIR}"/msmtpd.confd msmtpd
-   fi
-
-   if use doc ; then
-   dodoc doc/msmtp.{html,pdf}
-   fi
-
-   if use mta ; then
-   dosym ../bin/msmtp /usr/sbin/sendmail
-   dosym ../bin/msmtp /usr/$(get_libdir)/sendmail
-   fi
-
-   if use vim-syntax ; then
-   insinto /usr/share/vim/vimfiles/syntax
-   doins scripts/vim/msmtp.vim
-   fi
-
-   insinto /etc
-   newins doc/msmtprc-system.example msmtprc
-
-   src_install_contrib find_alias find_alias_for_msmtp.sh
-   src_install_contrib msmtpqueue "*.sh" "README ChangeLog"
-   src_install_contrib msmtpq "msmtpq msmtp-queue" README.msmtpq
-   src_install_contrib set_sendmail set_sendmail.sh set_sendmail.conf
-}
-
-pkg_postinst() {
-   

[gentoo-commits] repo/gentoo:master commit in: sys-auth/yubico-piv-tool/files/, sys-auth/yubico-piv-tool/

2022-09-25 Thread Marek Szuba
commit: 49a886b5b1edaf072997429f3664695932e05381
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:58:36 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a886b5

sys-auth/yubico-piv-tool: drop 2.2.1

Signed-off-by: Marek Szuba  gentoo.org>

 sys-auth/yubico-piv-tool/Manifest  |  1 -
 .../files/yubico-piv-tool-2.1.1-no-Werror.patch| 11 -
 .../files/yubico-piv-tool-2.2.1-openssl3.patch | 32 -
 .../yubico-piv-tool/yubico-piv-tool-2.2.1.ebuild   | 53 --
 4 files changed, 97 deletions(-)

diff --git a/sys-auth/yubico-piv-tool/Manifest 
b/sys-auth/yubico-piv-tool/Manifest
index a255bd8c44b4..6ed18642fc2e 100644
--- a/sys-auth/yubico-piv-tool/Manifest
+++ b/sys-auth/yubico-piv-tool/Manifest
@@ -1,2 +1 @@
-DIST yubico-piv-tool-2.2.1.tar.gz 1310253 BLAKE2B 
f5e5d2c351200b2fc57aafdd02a604ee5f15cd8f1a0cb552133a367da2cbf7fe248ec9eba649427b30e8322126be1f9677fd471b38db1f00cda37ccb0ac413c9
 SHA512 
495a269194d8d9d8957542611959b3fc8e0ae54d1cab5c041f2604590cc740e89e0956b9d595f8a06f138e92b8804def52aae797f199479a81fc1fc3d57bfb96
 DIST yubico-piv-tool-2.3.0.tar.gz 1329085 BLAKE2B 
b084982139012b4993a023078fd8ce7c106cb5c1e71475f26398012b86fc65e985a7c51300b3b122884e35327293737ed48b31bfdc83326dda9c9c05f2eb984d
 SHA512 
72125df922e32322563e95286e04d19e56db9c6e66ae9003ae7dfffac47425b8b2bc7c71ecfa603f96f3a24c985fca1f436580dc579ff44196dcde7aeceee7f3

diff --git 
a/sys-auth/yubico-piv-tool/files/yubico-piv-tool-2.1.1-no-Werror.patch 
b/sys-auth/yubico-piv-tool/files/yubico-piv-tool-2.1.1-no-Werror.patch
deleted file mode 100644
index a177395bc751..
--- a/sys-auth/yubico-piv-tool/files/yubico-piv-tool-2.1.1-no-Werror.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -97,7 +97,7 @@
- find_package (PkgConfig REQUIRED)
- 
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w") # -g -O2
--set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Werror")
-+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wshadow")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wwrite-strings")
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-prototypes")

diff --git 
a/sys-auth/yubico-piv-tool/files/yubico-piv-tool-2.2.1-openssl3.patch 
b/sys-auth/yubico-piv-tool/files/yubico-piv-tool-2.2.1-openssl3.patch
deleted file mode 100644
index 5ba807ea0c6c..
--- a/sys-auth/yubico-piv-tool/files/yubico-piv-tool-2.2.1-openssl3.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From 81b063f53db8a3d74077522a6ff4f1640cc3fe70 Mon Sep 17 00:00:00 2001
-From: Clemens Lang 
-Date: Sun, 14 Nov 2021 18:21:28 +0100
-Subject: [PATCH] Avoid header include guard conflict with OpenSSL 3
-
-OpenSSL 3.x ships an openssl/types.h header that's protected with an
-OPENSSL_TYPES_H include guard macro. OpenSSL's headers fail to parse
-when ykcs11/openssl_types.h defines this symbol.
-
-Switch the include guard for the file to YKCS11_OPENSSL_TYPES_H to
-prevent this from happening.
-
-Signed-off-by: Clemens Lang 

- ykcs11/openssl_types.h | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/ykcs11/openssl_types.h b/ykcs11/openssl_types.h
-index c526d815..f3e1a7c0 100644
 a/ykcs11/openssl_types.h
-+++ b/ykcs11/openssl_types.h
-@@ -28,8 +28,8 @@
-  *
-  */
- 
--#ifndef OPENSSL_TYPES_H
--#define OPENSSL_TYPES_H
-+#ifndef YKCS11_OPENSSL_TYPES_H
-+#define YKCS11_OPENSSL_TYPES_H
- 
- #include 
- #include 

diff --git a/sys-auth/yubico-piv-tool/yubico-piv-tool-2.2.1.ebuild 
b/sys-auth/yubico-piv-tool/yubico-piv-tool-2.2.1.ebuild
deleted file mode 100644
index c50d506fb8d8..
--- a/sys-auth/yubico-piv-tool/yubico-piv-tool-2.2.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Command-line tool and p11-kit module for the YubiKey PIV 
application"
-HOMEPAGE="https://developers.yubico.com/yubico-piv-tool/ 
https://github.com/Yubico/yubico-piv-tool;
-SRC_URI="https://github.com/Yubico/${PN}/archive/${P}.tar.gz;
-
-LICENSE="BSD-2"
-SLOT="0/2"
-KEYWORDS="amd64 ~riscv"
-IUSE="test"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="sys-apps/pcsc-lite
-   dev-libs/openssl:=[-bindist(-)]"
-DEPEND="${RDEPEND}
-   test? ( dev-libs/check )"
-BDEPEND="dev-util/gengetopt
-   sys-apps/help2man
-   virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.1.1-no-Werror.patch
-   "${FILESDIR}"/${PN}-2.1.1-tests-optional.patch
-   "${FILESDIR}"/${PN}-2.1.1-ykcs11-threads.patch
-   "${FILESDIR}"/${PN}-2.2.1-openssl3.patch
-)
-
-S="${WORKDIR}/${PN}-${P}"
-
-src_configure() {
-   # As of 2.2.0, man pages end up in /usr/usr/... without the MANDIR 
override
-   local mycmakeargs=(
-   -DBUILD_STATIC_LIB=OFF
-   

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

2022-09-25 Thread Marek Szuba
commit: 1dfff0bff91c4a320b2bc4ec3113eb6a9f9c9131
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:54:17 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dfff0bf

media-gfx/darktable: drop 3.8.1-r1

Signed-off-by: Marek Szuba  gentoo.org>

 media-gfx/darktable/Manifest  |   1 -
 media-gfx/darktable/darktable-3.8.1-r1.ebuild | 179 --
 2 files changed, 180 deletions(-)

diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest
index 570f3b076365..b670e7d532eb 100644
--- a/media-gfx/darktable/Manifest
+++ b/media-gfx/darktable/Manifest
@@ -1,5 +1,4 @@
 DIST darktable-3.8.0.tar.xz 5415532 BLAKE2B 
a2295d9145806720c702d30a334f4d1c483fc651dfda8a39617daed4a71a436bfaa5b6b379f5ec0ee4bbec5f6f5eabbcb589b63644b5698100dd1672710d1531
 SHA512 
ce95983cbe3ca899103b4f5ee560fdbeeb441dccd453ac4d858b14a25050229e1e780595c66bfb491c88db35c128054f649b365d701ef4b19cf252bd847ffa59
-DIST darktable-3.8.1.tar.xz 5514756 BLAKE2B 
e17bf4cc8f8d3f3fd6649c66c56777aa1e946a91cec1bc3b4c59ba1285aa16c608f725f549622b740417a8040a7bb5d63b2378997a05c2095f1b6814c05815de
 SHA512 
8b1b0c9e1a0bd9b327d34d28fe33dd1a2c7255864f6fa0c15af364a029aaa3cff5e039ff6461e48d3b4327b7656efe70ad9da12245d3a01d7566545d191448ba
 DIST darktable-4.0.0.tar.xz 5829684 BLAKE2B 
91198a47c4dab3368c934815425f430ae5b23e35f585a6c2b70322932cfd7fff19db76bd5f1dd50da81be1b8c9b82b12cb2c6c349e4808432f2ed195a015ecc2
 SHA512 
16b1cce589bdcd9c47685c9bd4705d35a739cfbad35ec7f414ce38848decc2e156bcbc7fe40f15026851927171072219ee0435e7cc64ca6fd763e479be5b5156
 DIST darktable-4.0.1.tar.xz 5958392 BLAKE2B 
677ee85d8b353e9e4fa015226e7383b98b90b319f99142ce8c146c75b3a65a6f057412e8f2a4741d03c5e0a1bd60156245328380e1446c511ab2fb810077b0a3
 SHA512 
f7107024e52cedeb7775b410329e15a667c97f115d5722530add7d3d542974df1ceabeb7f33161d31e0388a682825941947fb9da2546ea2865a090acb7448729
 DIST darktable-usermanual-3.8.de.pdf 32795040 BLAKE2B 
f8669e1982be19bc739add60d125a5818894a7a4a6414ba15aae5e5df41ec6729c99f907e3008c42acbd6f60bc4a5d33e20d7180621d135f9fd342e6190ae6a5
 SHA512 
ff77afcc9a20fec36891d4487d167e40d30a1deef6418dc6bb73c94d8171b42e5edc5420457c96e08ab8581175e691f8adf91ef5259367edba55f1441d4a86d3

diff --git a/media-gfx/darktable/darktable-3.8.1-r1.ebuild 
b/media-gfx/darktable/darktable-3.8.1-r1.ebuild
deleted file mode 100644
index bd7a6924df88..
--- a/media-gfx/darktable/darktable-3.8.1-r1.ebuild
+++ /dev/null
@@ -1,179 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-4 )
-
-inherit cmake flag-o-matic lua-single toolchain-funcs xdg
-
-DESCRIPTION="A virtual lighttable and darkroom for photographers"
-HOMEPAGE="https://www.darktable.org/;
-LICENSE="GPL-3 CC-BY-3.0"
-SLOT="0"
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/darktable-org/${PN}.git;
-
-   LANGS=" af ca cs da de el es fi fr gl he hu it ja nb nl pl pt-BR pt-PT 
ro ru sk sl sq sv th uk zh-CN zh-TW"
-else
-   DOC_PV=$(ver_cut 1-2)
-   MY_PV="${PV/_/}"
-   MY_P="${P/_/.}"
-
-   
SRC_URI="https://github.com/darktable-org/${PN}/releases/download/release-${MY_PV}/${MY_P}.tar.xz
-   doc? (
-   
https://docs.darktable.org/usermanual/${DOC_PV}/en/${PN}_user_manual.pdf -> 
${PN}-usermanual-${DOC_PV}.en.pdf
-   l10n_de? ( 
https://docs.darktable.org/usermanual/${DOC_PV}/de/${PN}_user_manual.pdf -> 
${PN}-usermanual-${DOC_PV}.de.pdf )
-   l10n_fr? ( 
https://docs.darktable.org/usermanual/${DOC_PV}/fr/${PN}_user_manual.pdf -> 
${PN}-usermanual-${DOC_PV}.fr.pdf )
-   l10n_pt-BR? ( 
https://docs.darktable.org/usermanual/${DOC_PV}/pt_br/${PN}_user_manual.pdf -> 
${PN}-usermanual-${DOC_PV}.pt_br.pdf )
-   l10n_uk? ( 
https://docs.darktable.org/usermanual/${DOC_PV}/uk/${PN}_user_manual.pdf -> 
${PN}-usermanual-${DOC_PV}.uk.pdf )
-   )"
-
-   KEYWORDS="amd64 ~arm64 -x86"
-   LANGS=" de eo es fi fr he hu it ja pl pt-BR sl uk zh-CN"
-fi
-
-IUSE="avif colord cpu_flags_x86_avx cpu_flags_x86_sse3 cups doc flickr gamepad 
geolocation gmic gnome-keyring gphoto2 graphicsmagick jpeg2k kwallet lto lua 
midi nls opencl openmp openexr test tools webp
-   ${LANGS// / l10n_}"
-
-REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="dev-util/intltool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-   test? ( >=dev-python/jsonschema-3.2.0 )"
-DEPEND="dev-db/sqlite:3
-   dev-libs/icu:=
-   dev-libs/json-glib
-   dev-libs/libxml2:2
-   >=dev-libs/pugixml-1.8:0=
-   gnome-base/librsvg:2
-   >=media-gfx/exiv2-0.25-r2:0=[xmp]
-   media-libs/lcms:2
-   >=media-libs/lensfun-0.2.3:0=
-   media-libs/libjpeg-turbo:=
-  

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

2022-09-25 Thread Marek Szuba
commit: 1a57fe648eee0db5bbd79cacda28b41d950ddaeb
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:42:54 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a57fe64

dev-cpp/prometheus-cpp: drop 1.0.0

Signed-off-by: Marek Szuba  gentoo.org>

 dev-cpp/prometheus-cpp/Manifest|  1 -
 dev-cpp/prometheus-cpp/prometheus-cpp-1.0.0.ebuild | 41 --
 2 files changed, 42 deletions(-)

diff --git a/dev-cpp/prometheus-cpp/Manifest b/dev-cpp/prometheus-cpp/Manifest
index 699cad4a7e1f..f91fbfd5bb6b 100644
--- a/dev-cpp/prometheus-cpp/Manifest
+++ b/dev-cpp/prometheus-cpp/Manifest
@@ -1,2 +1 @@
-DIST prometheus-cpp-1.0.0.tar.gz 56244 BLAKE2B 
51ff199c0cd09367de873310a835b7a4a5893de11a6115b3de8ef142eb12b326ea7498a8adc155f3bbea6389da41eef91b5ef23cb0227ef1d1ceb64e4d7eac2e
 SHA512 
baeb12725dd47b170e1ac94c23b2b18ba8aa11dedd95af7adee8fdf9ddebaddfca1ef75c30b1d65c94e1cfbcba2c41e0f4686f1a1de66beaba7dcd70ab190164
 DIST prometheus-cpp-1.0.1.tar.gz 56673 BLAKE2B 
2f2396de0c3c544e92ecdf9f973941f7b61784db690bf3811841a522d3c40cb885e273ce62e66721674f8911fea7b58dc6ae5f0dc10cfdca803054445ca18250
 SHA512 
eb81b92de986853401f8900d19dfc58d68227d49c74be294b408adc0374292fb462b1f7f7aee522fb03d6fc2ea56f3187fa6ec182aeea169b8bdce38054ee805

diff --git a/dev-cpp/prometheus-cpp/prometheus-cpp-1.0.0.ebuild 
b/dev-cpp/prometheus-cpp/prometheus-cpp-1.0.0.ebuild
deleted file mode 100644
index 07f8033472af..
--- a/dev-cpp/prometheus-cpp/prometheus-cpp-1.0.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Prometheus Client Library for Modern C++"
-HOMEPAGE="https://github.com/jupp0r/prometheus-cpp;
-SRC_URI="https://github.com/jupp0r/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
-IUSE="test zlib"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="net-misc/curl
-   sys-libs/zlib
-   www-servers/civetweb[cxx]"
-DEPEND="${RDEPEND}
-   test? (
-   dev-cpp/benchmark
-   dev-cpp/gtest
-   )"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
-   local mycmakeargs=(
-   -DENABLE_PULL=yes
-   -DENABLE_PUSH=yes
-   -DENABLE_COMPRESSION=$(usex zlib)
-   -DENABLE_TESTING=$(usex test)
-   -DUSE_THIRDPARTY_LIBRARIES=OFF
-   -DGENERATE_PKGCONFIG=ON
-   -DRUN_IWYU=OFF
-   )
-
-   cmake_src_configure
-}



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

2022-09-25 Thread Marek Szuba
commit: 16567a9cc5011ba18b6016fb4bcc579b6cec6264
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:50:06 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16567a9c

dev-util/opencl-headers: drop 2021.06.30

Signed-off-by: Marek Szuba  gentoo.org>

 dev-util/opencl-headers/Manifest   |  1 -
 .../opencl-headers-2021.06.30.ebuild   | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-util/opencl-headers/Manifest b/dev-util/opencl-headers/Manifest
index c927a1a4b4d9..69b9883ef3ff 100644
--- a/dev-util/opencl-headers/Manifest
+++ b/dev-util/opencl-headers/Manifest
@@ -1,3 +1,2 @@
-DIST opencl-headers-2021.06.30.tar.gz 59866 BLAKE2B 
7bf7b7d6f69178ae14d4ba5b012d134e0d0005acd8aa6c1c09c6d34b531ccf74381af072aaf85fa41ab1d8cb783b8c3c5fc528ddef078ba8dbb91708849fb0d0
 SHA512 
9d3ddf3a02ff4de00686f7e8cc7eef9f75e3c0e68920e787941c2d8a3ad895ae46d7c717894527a56144febf19ccc25ed733018d3d683509b1d8cc368d99b8ba
 DIST opencl-headers-2022.01.04.tar.gz 62719 BLAKE2B 
6791a679a09248746dd6b23d46001a8b6fcb3efc0a5d7c35be14463543ca08e57d24d1a4ab3ec765c315f44e849aa9c52d574f521ee1f660f9232979e511a9b3
 SHA512 
7c47486f40db16b8264f7e1febedd09c0481308eb15b5f4c4b5ff37c4ffb7697ae79427d221babe921704681942cd152b676b3bed660ba79d2901a48228d14ae
 DIST opencl-headers-2022.05.18.tar.gz 64518 BLAKE2B 
c1e0c3011e4ef226a5fc4601a65c78dfae20e86f9327e7cbda23bb16fbd95a450a28d5dbe3b90332ce9ebdbc3b108dbae3433b8e79883f777f8d5e9e6add375c
 SHA512 
36a8637d22379eb7f83d44152cb34ff955134b9efb66a2d0973596b4cc38e1690a53972bee86f460350e80f13dbc775d24708960bf9e828f8e2c6e3d6358946e

diff --git a/dev-util/opencl-headers/opencl-headers-2021.06.30.ebuild 
b/dev-util/opencl-headers/opencl-headers-2021.06.30.ebuild
deleted file mode 100644
index 8ad07c4d0f42..
--- a/dev-util/opencl-headers/opencl-headers-2021.06.30.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="OpenCL-Headers"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Unified C language headers for the OpenCL API"
-HOMEPAGE="https://github.com/KhronosGroup/OpenCL-Headers;
-SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
-   insinto /usr/include
-   doins -r "${S}"/CL
-}



[gentoo-commits] repo/gentoo:master commit in: games-action/minetest/

2022-09-25 Thread Marek Szuba
commit: 7b34fcd9b3a3ff6ec14c07dbf609cccbcc46ad96
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:47:33 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b34fcd9

games-action/minetest: drop 5.6.0-r1

Signed-off-by: Marek Szuba  gentoo.org>

 games-action/minetest/Manifest |   1 -
 games-action/minetest/minetest-5.6.0-r1.ebuild | 144 -
 2 files changed, 145 deletions(-)

diff --git a/games-action/minetest/Manifest b/games-action/minetest/Manifest
index d0e808804a78..2032f7e2d163 100644
--- a/games-action/minetest/Manifest
+++ b/games-action/minetest/Manifest
@@ -1,2 +1 @@
-DIST minetest-5.6.0.tar.gz 9922682 BLAKE2B 
10787b9bbc397d3d214b22640a830fc429bd8292541e0b71b50d05d483f87469cedf03fcf7a898bd83486c55911439a9804eab2bca58cd464a69adaa76b4f820
 SHA512 
e87c4036f17a61d3e623b2f48e3611ba1bc0177b5d58330fe6e64a74075c78ab7cd5eb7b855097ce98819112a54857324237f7d3b81ec504a1f608444e74a630
 DIST minetest-5.6.1.tar.gz 9924663 BLAKE2B 
509b8073a4e82ecff008f692ebdd7a8f35ff5222ba1095937d24870404cca848b80891887837e03d86c117568f9bbee1f92fb958640e06107230673e79d7f813
 SHA512 
15d2ce3b1150f077ff933a04f0ba8e02c71ee60a0edb636d1511d4e90244a34a14d7e5c4b47bee4de96cd179249a5a6963d7a092084f46c0fa54c9ff431a5265

diff --git a/games-action/minetest/minetest-5.6.0-r1.ebuild 
b/games-action/minetest/minetest-5.6.0-r1.ebuild
deleted file mode 100644
index 6d626a4d0046..
--- a/games-action/minetest/minetest-5.6.0-r1.ebuild
+++ /dev/null
@@ -1,144 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CMAKE_BUILD_TYPE="Release"
-LUA_COMPAT=( lua5-1 luajit )
-
-inherit cmake flag-o-matic lua-single systemd xdg
-
-DESCRIPTION="A free open-source voxel game engine with easy modding and game 
creation"
-HOMEPAGE="https://www.minetest.net;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1+ CC-BY-SA-3.0 OFL-1.1 Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-IUSE="+client +curl doc leveldb ncurses nls postgres prometheus redis +server 
+sound spatial test"
-
-REQUIRED_USE="${LUA_REQUIRED_USE}
-   || ( client server )"
-
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}
-   $(lua_gen_impl_dep 'deprecated' lua5-1)
-   app-arch/zstd
-   dev-db/sqlite:3
-   dev-libs/gmp:0=
-   dev-libs/jsoncpp:=
-   sys-libs/zlib
-   client? (
-   >=dev-games/irrlicht-mt-1.9.0.7
-   media-libs/freetype:2
-   media-libs/libpng:0=
-   media-libs/libjpeg-turbo
-   virtual/opengl
-   x11-libs/libX11
-   x11-libs/libXxf86vm
-   sound? (
-   media-libs/libvorbis
-   media-libs/openal
-   )
-   )
-   curl? ( net-misc/curl )
-   leveldb? ( dev-libs/leveldb:= )
-   ncurses? ( sys-libs/ncurses:0= )
-   nls? ( virtual/libintl )
-   postgres? ( >=dev-db/postgresql-9.5:= )
-   prometheus? ( dev-cpp/prometheus-cpp )
-   redis? ( dev-libs/hiredis:= )
-   server? (
-   acct-group/minetest
-   acct-user/minetest
-   >=dev-games/irrlicht-mt-headers-1.9.0.7
-   )
-   spatial? ( sci-libs/libspatialindex:= )"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   doc? (
-   app-doc/doxygen
-   media-gfx/graphviz
-   )
-   nls? ( sys-devel/gettext )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-5.4.1-system_puc_lua.patch
-   "${FILESDIR}"/${PN}-5.6.0-no_upstream_optflags.patch
-)
-
-src_prepare() {
-   cmake_src_prepare
-
-   # remove bundled libraries other than bitop
-   rm -rf lib/{gmp,jsoncpp,lua} || die
-
-   # To avoid TEXTRELs on riscv
-   append-flags -fPIC
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_CLIENT=$(usex client)
-   -DBUILD_SERVER=$(usex server)
-   -DBUILD_UNITTESTS=$(usex test)
-   -DCUSTOM_BINDIR="${EPREFIX}/usr/bin"
-   -DCUSTOM_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
-   -DCUSTOM_EXAMPLE_CONF_DIR="${EPREFIX}/usr/share/doc/${PF}"
-   -DCUSTOM_LOCALEDIR="${EPREFIX}/usr/share/${PN}/locale"
-   -DCUSTOM_MANDIR="${EPREFIX}/usr/share/man"
-   -DCUSTOM_SHAREDIR="${EPREFIX}/usr/share/${PN}"
-   -DENABLE_CURL=$(usex curl)
-   -DENABLE_CURSES=$(usex ncurses)
-   -DENABLE_GETTEXT=$(usex nls)
-   -DENABLE_GLES=no
-   -DENABLE_LEVELDB=$(usex leveldb)
-   -DENABLE_LUAJIT=$(usex lua_single_target_luajit)
-   -DENABLE_POSTGRESQL=$(usex postgres)
-   -DENABLE_PROMETHEUS=$(usex prometheus)
-   -DENABLE_REDIS=$(usex redis)
-   -DENABLE_SPATIAL=$(usex 

[gentoo-commits] repo/gentoo:master commit in: dev-games/irrlicht-mt-headers/

2022-09-25 Thread Marek Szuba
commit: 54841098ca79f7278c53e1d931454d6891119765
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:48:00 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54841098

dev-games/irrlicht-mt-headers: drop 1.9.0.7

Signed-off-by: Marek Szuba  gentoo.org>

 dev-games/irrlicht-mt-headers/Manifest |  1 -
 .../irrlicht-mt-headers-1.9.0.7.ebuild | 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-games/irrlicht-mt-headers/Manifest 
b/dev-games/irrlicht-mt-headers/Manifest
index 33fa0a497605..17491df99e22 100644
--- a/dev-games/irrlicht-mt-headers/Manifest
+++ b/dev-games/irrlicht-mt-headers/Manifest
@@ -1,2 +1 @@
-DIST irrlicht-mt-1.9.0.7.tar.gz 909510 BLAKE2B 
15552612e6cd01d35e48a02e7faa6db521bee2472c68c3a0a0696ae8578cd9cf272d30b953ed4e64a4e233638b6e99a77da301c4cbd9d6c65c634d9a7fdf274b
 SHA512 
5b533efde6bca5ff2a6041d88fcf405c3452c0ccc52ca2d5e03072b0b31c16830cf5fe2af06573c71b29022b590f3082fc8997537c73a7e1981911083e7bf855
 DIST irrlicht-mt-1.9.0.8.tar.gz 909733 BLAKE2B 
6c85377b5e426a9f4ba06ea60fb0414fb9598c3b66d01d80da8461d53b16bc1c74ea5f949d0419d01f2d4dccabff20410840dc9380cac3cf5b656b2e073a4636
 SHA512 
3a5cbcd8d13730e08f24a72b4ceb2a6d3ba1cfa4292475915da6413ab8084d0b7f0b5dc34edc152d5bf516730faf43d983433619b0a1fb15540adb5cab00ca10

diff --git a/dev-games/irrlicht-mt-headers/irrlicht-mt-headers-1.9.0.7.ebuild 
b/dev-games/irrlicht-mt-headers/irrlicht-mt-headers-1.9.0.7.ebuild
deleted file mode 100644
index 684ebba730ab..
--- a/dev-games/irrlicht-mt-headers/irrlicht-mt-headers-1.9.0.7.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_PN="${PN%-mt-headers}"
-MY_PV="$(ver_rs 3 'mt')"
-MY_P="${MY_PN}-${MY_PV}"
-# These two should be kept in sync with dev-games/irrlicht-mt
-SRC_PN="${PN%-headers}"
-SRC_P="${SRC_PN}-${PV}"
-
-DESCRIPTION="Header files for Minetest's fork of dev-games/irrlicht"
-HOMEPAGE="https://github.com/minetest/irrlicht;
-SRC_URI="https://github.com/minetest/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz
 -> ${SRC_P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="!

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

2022-09-25 Thread Marek Szuba
commit: 8ced92eaa9ad57e74212918f3d20a9f0c8d3d2b4
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:44:38 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ced92ea

dev-python/pytest-testinfra: drop 6.7.0

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/pytest-testinfra/Manifest   |  1 -
 .../pytest-testinfra/pytest-testinfra-6.7.0.ebuild | 40 --
 2 files changed, 41 deletions(-)

diff --git a/dev-python/pytest-testinfra/Manifest 
b/dev-python/pytest-testinfra/Manifest
index 6ae69cbb4836..678fe70ff03e 100644
--- a/dev-python/pytest-testinfra/Manifest
+++ b/dev-python/pytest-testinfra/Manifest
@@ -1,2 +1 @@
-DIST pytest-testinfra-6.7.0.tar.gz 79187 BLAKE2B 
08678f381392fe8a1fe335adc90ac6dc67c5bfa33c87f4e9d81b439eaabd29c393b8dc80cc79625784e76e5b0e264cdfc272cddb531acefbac9a8327be46f7be
 SHA512 
d11f30da0eae9f215173d3f84e6ba7965d926b8ef6c49619c2ccae3d3ff215f351b950eea019e6516a56de0aa7bc533658af978d827a3ad3d1c50e37902b6f91
 DIST pytest-testinfra-6.8.0.tar.gz 78611 BLAKE2B 
ab1f9732db6a5d88730f4989cc47dc2086844f9809754d9f7811a8f0f092cf3d1e6f48fac2596200bf8e354cfd4aa3dc767bc21139267813141c9522d2116453
 SHA512 
e0c044430ffae1772b937b405572ef05b6177a645aff7b96e1f779d4f68449241757efae137a03ea8aec28db5f91c0e71574ab52aebef0052ca99ea0ca08db23

diff --git a/dev-python/pytest-testinfra/pytest-testinfra-6.7.0.ebuild 
b/dev-python/pytest-testinfra/pytest-testinfra-6.7.0.ebuild
deleted file mode 100644
index 86657537b3ec..
--- a/dev-python/pytest-testinfra/pytest-testinfra-6.7.0.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Write unit tests in Python to test actual state of your servers"
-HOMEPAGE="
-   https://github.com/pytest-dev/pytest-testinfra/
-"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="
-   dev-python/pytest[${PYTHON_USEDEP}]
-"
-# Ansible is called via its CLI
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   https://testinfra.readthedocs.io/en/latest/backends.html;
-}



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

2022-09-25 Thread Marek Szuba
commit: ebf3b33e0ae681897377ed7ed6f15135a1e21599
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:42:41 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebf3b33e

dev-python/sphinx_ansible_theme: drop 0.8.0

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/sphinx_ansible_theme/Manifest   |  1 -
 .../sphinx_ansible_theme-0.8.0.ebuild  | 28 --
 2 files changed, 29 deletions(-)

diff --git a/dev-python/sphinx_ansible_theme/Manifest 
b/dev-python/sphinx_ansible_theme/Manifest
index f22dd7a3afce..a36db7889bfa 100644
--- a/dev-python/sphinx_ansible_theme/Manifest
+++ b/dev-python/sphinx_ansible_theme/Manifest
@@ -1,2 +1 @@
-DIST sphinx-ansible-theme-0.8.0.tar.gz 34401 BLAKE2B 
493663331e593da8d56683991762452419fd5fdb48e2c59ee3a38b6242216bccf56e047e59294ae73cccfb48a66606e55fac6c9a19d91e6ea778920f9919dbd1
 SHA512 
399af992428dd3212681efa66036af9ae7dbd9a9dd507452686cc76aa3e365aabee0ba7b599fbbed85f1f252075d5158ade9a816a9aad17b4e5ed696be1c962e
 DIST sphinx-ansible-theme-0.9.1.tar.gz 34505 BLAKE2B 
533e665b30f5aa450e4a2240c55c4992340b9f6ee03d27758bf119dfe2eef987fbd4b98136349af376557d8e9a78e5391a648b9886136995d05410b0c26561f2
 SHA512 
f78602af8affe7be59988f466cf6a2aa67e174086f338cad855369a7bbee5a76d07bcffa8406dea5a819127b26d69e29b0d90dab38b82524b3e317f9082d0379

diff --git a/dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.8.0.ebuild 
b/dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.8.0.ebuild
deleted file mode 100644
index d2a23da1d80f..
--- a/dev-python/sphinx_ansible_theme/sphinx_ansible_theme-0.8.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-MY_PN="${PN//_/-}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A reusable Ansible Sphinx theme"
-HOMEPAGE="https://github.com/ansible-community/sphinx_ansible_theme;
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-RDEPEND="dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]"
-BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm_git_archive[${PYTHON_USEDEP}]
-   doc? ( dev-python/ansible-pygments[${PYTHON_USEDEP}] )"
-
-distutils_enable_sphinx docs 'dev-python/sphinx-notfound-page'
-
-S="${WORKDIR}"/${MY_P}



[gentoo-commits] repo/gentoo:master commit in: app-admin/ansible-molecule/, app-admin/ansible-molecule/files/

2022-09-25 Thread Marek Szuba
commit: 5ba994476880e08472fc4569583de5ceb72d6352
Author: Marek Szuba  gentoo  org>
AuthorDate: Mon Sep 26 00:40:59 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Mon Sep 26 01:01:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba99447

app-admin/ansible-molecule: drop 3.5.2-r1

Signed-off-by: Marek Szuba  gentoo.org>

 app-admin/ansible-molecule/Manifest|  1 -
 .../ansible-molecule-3.5.2-r1.ebuild   | 90 --
 .../files/ansible-molecule-3.5.2_pyyaml6.patch | 11 ---
 3 files changed, 102 deletions(-)

diff --git a/app-admin/ansible-molecule/Manifest 
b/app-admin/ansible-molecule/Manifest
index 838c6e6b4a11..e3f14924e7cc 100644
--- a/app-admin/ansible-molecule/Manifest
+++ b/app-admin/ansible-molecule/Manifest
@@ -1,2 +1 @@
 DIST ansible-molecule-4.0.1.tar.gz 301517 BLAKE2B 
73cf7a2257368c737b9003236bf77011de167dd6f692166702e7948c136202b33bcce1c70893b61a95af9baa90e7b5266a5fa889e3bba0e5a8c9c1e6f48fec9a
 SHA512 
7515e07bf791d5586e1f5fb4ce0d2f731c94c8268c589155340b2bdc1528534084870e66e492b2d883f9e9764293c93799a4c75478523502a2f37ad0642a472d
-DIST molecule-3.5.2.tar.gz 290964 BLAKE2B 
b6c6bb8ecdb4230d23161e25fa003c8979f48fc1705bfba7d14204fbaa3e9c235a71db0c4ccbab5c4328ddb8a0725d3c2ba7cb4b624afda21c6453c8be824f3e
 SHA512 
04a7d1f7e7e098c0ada71d8dc9a3e3a94320033942d8ee03f2c51ec185405d2ee13fcb44000a4942ec66923f0426717ab7e2c3a785ddda7a23515096474dc3c3

diff --git a/app-admin/ansible-molecule/ansible-molecule-3.5.2-r1.ebuild 
b/app-admin/ansible-molecule/ansible-molecule-3.5.2-r1.ebuild
deleted file mode 100644
index 2a2c00db61e6..
--- a/app-admin/ansible-molecule/ansible-molecule-3.5.2-r1.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1 optfeature
-
-MY_PN="${PN#ansible-}"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A toolkit designed to aid in the development and testing of 
Ansible roles"
-HOMEPAGE="https://pypi.org/project/molecule/ 
https://github.com/ansible-community/molecule/;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-IUSE="selinux"
-
-RDEPEND="$(python_gen_cond_dep '
-   >=dev-python/ansible-compat-0.5.0[${PYTHON_USEDEP}]
-   =dev-python/click-8.0[${PYTHON_USEDEP}]
-   >=dev-python/click-help-colors-0.9[${PYTHON_USEDEP}]
-   >=dev-python/enrich-1.2.5[${PYTHON_USEDEP}]
-   >=dev-python/jinja-2.11.3[${PYTHON_USEDEP}]
-   dev-python/packaging[${PYTHON_USEDEP}]
-   =dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
-   >=dev-python/rich-9.5.1[${PYTHON_USEDEP}]
-   >=dev-python/subprocess-tee-0.3.5[${PYTHON_USEDEP}]
-   >=dev-util/cookiecutter-1.7.3[${PYTHON_USEDEP}]
-   selinux? ( sys-libs/libselinux[python,${PYTHON_USEDEP}] )
-')"
-BDEPEND="$(python_gen_cond_dep '
-   >=dev-python/setuptools_scm-3.5.0[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm_git_archive-1.1[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/ansible-pygments[${PYTHON_USEDEP}]
-   >=dev-python/simplejson-3.17.2[${PYTHON_USEDEP}]
-   )
-   test? (
-   >=dev-python/ansi2html-1.6.0[${PYTHON_USEDEP}]
-   =dev-python/pytest-html-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/pytest-mock-3.3.1[${PYTHON_USEDEP}]
-   >=dev-python/pytest-plus-0.2[${PYTHON_USEDEP}]
-   >=dev-python/pytest-testinfra-6.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pytest-xdist-2.1.0[${PYTHON_USEDEP}]
-   dev-util/yamllint
-   )
-')"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.5.2_pyyaml6.patch
-)
-
-S="${WORKDIR}"/${MY_P}
-
-distutils_enable_sphinx docs '>=dev-python/sphinx-notfound-page-0.7.1' 
'= 2.5.0, < 3
-   pluggy >= 0.7.1, < 2.0
--  PyYAML >= 5.1, < 6
-+  PyYAML >= 5.1
-   rich >= 9.5.1
-   subprocess-tee >= 0.3.5
-   selinux; sys_platform=="linux2"



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

2022-09-25 Thread Anthony G. Basile
commit: 18be51c7f17c65b4404af4832ba910456bdbb9b4
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Mon Sep 26 00:52:56 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Mon Sep 26 00:53:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18be51c7

dev-libs/xapian: version bump 1.4.21

Signed-off-by: Anthony G. Basile  gentoo.org>

 dev-libs/xapian/Manifest |  1 +
 dev-libs/xapian/xapian-1.4.21.ebuild | 75 
 2 files changed, 76 insertions(+)

diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
index 65047553d905..0f9014cd8f3f 100644
--- a/dev-libs/xapian/Manifest
+++ b/dev-libs/xapian/Manifest
@@ -3,3 +3,4 @@ DIST xapian-core-1.4.17.tar.xz 2997700 BLAKE2B 
882bc28c9a55731212a5c3ac6da3ad208
 DIST xapian-core-1.4.18.tar.xz 2984508 BLAKE2B 
e5d680578e0a4605a8e99470921fba29cdd3d137d017608b8bf571951726055d2a1d49e9649829f0df92af3d27d0565f90baaca5a4eb5c67cb368f5d1e592d28
 SHA512 
ba6240054c0d2f92b9f1059aa934cdf35388ee7c7e05f4ef6f9856bdaed8ad821095a348ed9a892afdf18c3c0ad20e163028ad0ed3a9934bd69b861e814678ef
 DIST xapian-core-1.4.19.tar.xz 2994860 BLAKE2B 
9566df1646192370e346c1b0d1e1cda68034fe5d3ab94835709f969df643fd36da49a58a2d3b4177a42faf5af2e71df771277848169ae62f94fe0bb0378ba6aa
 SHA512 
d596058d7f9bfa0b73c5b6354331a799936b45f27012894f6792872ade8656bb0387b504aea8c1c3edfbd48787190452e7a49d2b62d181cb050c46edd3e67346
 DIST xapian-core-1.4.20.tar.xz 3003788 BLAKE2B 
c4bfa4af9112a206b14c8c2f4a76eb4c1267a752130287b6623233d3a09783b903a3275b2ec275f38f1d195119c730565a31ed303b8e2dedefc42cae10387600
 SHA512 
e2f62eebc946cc5d0641db85d2966e6ad9e84c6a23606e705f0461ab80b012933b46ed5b7e0691fe2070ca1c0755e99895c18bc055eaad0a9376def410aa7f35
+DIST xapian-core-1.4.21.tar.xz 3018384 BLAKE2B 
61a25ee381c84e0a9f20650d94aa097225f2e947dafad7f6b5497db74f383f5b0fcf277a35ea27ff461b34cd2a9a0b6333f88264c5817cff09a2caf42fa3b398
 SHA512 
4071791daf47f5ae77f32f358c6020fcfa9aa81c15c8da25489b055eef30383695e449ab1cb73670f2f5db2b2a5f78056da0e8eea89d83aaad91dfe340a6b13a

diff --git a/dev-libs/xapian/xapian-1.4.21.ebuild 
b/dev-libs/xapian/xapian-1.4.21.ebuild
new file mode 100644
index ..d50c34543512
--- /dev/null
+++ b/dev-libs/xapian/xapian-1.4.21.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit multilib-minimal
+
+MY_P="${PN}-core-${PV}"
+
+DESCRIPTION="Xapian Probabilistic Information Retrieval library"
+HOMEPAGE="https://www.xapian.org/;
+SRC_URI="https://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0/30" # ABI version of libxapian.so
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris"
+IUSE="doc static-libs cpu_flags_x86_sse cpu_flags_x86_sse2 +inmemory +remote"
+
+DEPEND="sys-apps/util-linux[${MULTILIB_USEDEP}]
+   sys-libs/zlib[${MULTILIB_USEDEP}]"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+multilib_src_configure() {
+   local myconf=""
+
+   if use cpu_flags_x86_sse2; then
+   myconf="${myconf} --enable-sse=sse2"
+   else
+   if use cpu_flags_x86_sse; then
+   myconf="${myconf} --enable-sse=sse"
+   else
+   myconf="${myconf} --disable-sse"
+   fi
+   fi
+
+   myconf="${myconf} $(use_enable static-libs static)"
+
+   use inmemory || myconf="${myconf} --disable-backend-inmemory"
+   use remote || myconf="${myconf} --disable-backend-remote"
+
+   myconf="${myconf} --enable-backend-glass --enable-backend-chert 
--program-suffix="
+
+   ECONF_SOURCE=${S} econf ${myconf}
+}
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/xapian/postingsource.h
+   /usr/include/xapian/attributes.h
+   /usr/include/xapian/valuesetmatchdecider.h
+   /usr/include/xapian/version.h
+   /usr/include/xapian/version.h
+   /usr/include/xapian/types.h
+   /usr/include/xapian/positioniterator.h
+   /usr/include/xapian/registry.h
+)
+
+multilib_src_test() {
+   emake check VALGRIND=
+}
+
+multilib_src_install() {
+   emake DESTDIR="${D}" install
+}
+
+multilib_src_install_all() {
+   if use doc; then
+   rm -rf "${ED}/usr/share/doc/xapian-core-${PV}" || die
+   fi
+
+   dodoc AUTHORS HACKING PLATFORMS README NEWS
+
+   find "${ED}" -name "*.la" -type f -delete || die
+}



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

2022-09-25 Thread Sam James
commit: 8c3e549ed467ab7ecfe345bdbe2e575e2846d97e
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 26 00:18:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 26 00:18:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3e549e

dev-python/pydantic: Stabilize 1.10.1 arm64, #872893

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

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

diff --git a/dev-python/pydantic/pydantic-1.10.1.ebuild 
b/dev-python/pydantic/pydantic-1.10.1.ebuild
index f5ba666e4c7c..62273e504d27 100644
--- a/dev-python/pydantic/pydantic-1.10.1.ebuild
+++ b/dev-python/pydantic/pydantic-1.10.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: efebc3d56e13b7b51c096031c7b8433930560a79
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 26 00:18:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 26 00:18:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efebc3d5

dev-db/redis: Stabilize 7.0.5 arm64, #872713

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

 dev-db/redis/redis-7.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/redis/redis-7.0.5.ebuild b/dev-db/redis/redis-7.0.5.ebuild
index 3d284a0f1a87..ca38a7a33bf3 100644
--- a/dev-db/redis/redis-7.0.5.ebuild
+++ b/dev-db/redis/redis-7.0.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~loong ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="+jemalloc selinux ssl systemd tcmalloc test"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Sam James
commit: 2ab5699138fdd5e05636d76f47d0873d6062fb4d
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 26 00:18:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 26 00:18:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ab56991

net-misc/linuxptp: Stabilize 3.1.1-r1 amd64, #872968

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

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

diff --git a/net-misc/linuxptp/linuxptp-3.1.1-r1.ebuild 
b/net-misc/linuxptp/linuxptp-3.1.1-r1.ebuild
index df701b773917..de162a29e0a7 100644
--- a/net-misc/linuxptp/linuxptp-3.1.1-r1.ebuild
+++ b/net-misc/linuxptp/linuxptp-3.1.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/project/${PN}/v$(ver_cut 
1-2)/${P}.tgz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 
 DEPEND="elibc_musl? ( sys-libs/queue-standalone )"
 



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

2022-09-25 Thread Ionen Wolkens
commit: 22f3bc395c3c520417568e31e0d103edf0adfef8
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Sep 25 23:59:37 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Mon Sep 26 00:05:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22f3bc39

profiles: adjust nvidia-drivers mask message

On second thought, this version has fixes for kernel-6.0 so it does
have some uses and wouldn't hurt to note. Not that 6.0 is released
yet and I consider users getting a broken system more relevant than
not building with bleeding edge kernels even if it was released.

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

 profiles/package.mask | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 87d80f2da834..6460c3440170 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -34,9 +34,10 @@
 #--- END OF EXAMPLES ---
 
 # Ionen Wolkens  (2022-09-25)
-# This version been causing issues for some RTX 30xx users and
-# does not bring much of interest for others, best stick to
-# 515.65.01 for now (but feel free to unmask if it's been fine).
+# This version been causing major issues for some RTX 30xx users and
+# no real reason not to stick to 515.65.01 for now (but feel free to
+# unmask if it's been fine and need it, notably has fixes to build
+# with upcoming 6.0 linux kernels).
 # https://bugs.archlinux.org/task/75995
 # 
https://forums.developer.nvidia.com/t/bug-report-black-x11-screen-and-partial-lockup-when-upgraded-to-515-76-and-dual-rtx3060
 ~x11-drivers/nvidia-drivers-515.76



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

2022-09-25 Thread Sam James
commit: 08ec69bf8f62e8a7f1a985802ad659ad08da0b38
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:55:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08ec69bf

dev-python/reportlab: Stabilize 3.6.11-r1 amd64, #872878

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

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

diff --git a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild 
b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
index 80413922f619..fdafa9e0916d 100644
--- a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
+++ b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
 
 DEPEND="
media-libs/freetype



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

2022-09-25 Thread Sam James
commit: cc0e5acdb3400085d4048bbf2d66d84d5e7bd012
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:58:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:58:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc0e5acd

x11-misc/rofi: Stabilize 1.7.5 arm64, #872791

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

 x11-misc/rofi/rofi-1.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/rofi/rofi-1.7.5.ebuild b/x11-misc/rofi/rofi-1.7.5.ebuild
index 4fe9af652772..b51884994242 100644
--- a/x11-misc/rofi/rofi-1.7.5.ebuild
+++ b/x11-misc/rofi/rofi-1.7.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/davatorium/rofi/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 arm64 ~x86"
 IUSE="+drun test +windowmode"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Sam James
commit: d3b9ee70d633edf7d19707e8db4eff3ade2519f7
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:58:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:58:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3b9ee70

dev-python/greenlet: Stabilize 1.1.3 arm64, #872935

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

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

diff --git a/dev-python/greenlet/greenlet-1.1.3.ebuild 
b/dev-python/greenlet/greenlet-1.1.3.ebuild
index cb29744848ff..24c8a2f0bebb 100644
--- a/dev-python/greenlet/greenlet-1.1.3.ebuild
+++ b/dev-python/greenlet/greenlet-1.1.3.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 -hppa -ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 -hppa -ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 distutils_enable_sphinx docs
 distutils_enable_tests unittest



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

2022-09-25 Thread Sam James
commit: bb052e2bf735cab155d3ff63366d307546cc3bad
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:57:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:57:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb052e2b

dev-python/pydantic: Stabilize 1.10.1 x86, #872893

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

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

diff --git a/dev-python/pydantic/pydantic-1.10.1.ebuild 
b/dev-python/pydantic/pydantic-1.10.1.ebuild
index 60bdcea655fa..f5ba666e4c7c 100644
--- a/dev-python/pydantic/pydantic-1.10.1.ebuild
+++ b/dev-python/pydantic/pydantic-1.10.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: c3b07c323675d28a3cc92b096dd27e0b1397d55c
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:58:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:58:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3b07c32

dev-python/reportlab: Stabilize 3.6.11-r1 arm64, #872878

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

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

diff --git a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild 
b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
index a3cfb7a58fd1..3e1d8c5d7ec3 100644
--- a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
+++ b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux"
 
 DEPEND="
media-libs/freetype



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

2022-09-25 Thread Sam James
commit: 7f89472247cc77dba30d2f5e90780887b4c7e793
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:57:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:57:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f894722

dev-python/pyudev: Stabilize 0.24.0 x86, #872881

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

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

diff --git a/dev-python/pyudev/pyudev-0.24.0.ebuild 
b/dev-python/pyudev/pyudev-0.24.0.ebuild
index f9687fc2bf39..00bd94e9adcc 100644
--- a/dev-python/pyudev/pyudev-0.24.0.ebuild
+++ b/dev-python/pyudev/pyudev-0.24.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
 IUSE="qt5"
 
 # Known to fail on test system that aren't exactly the same devices as on CI



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

2022-09-25 Thread Sam James
commit: 083cdf5fabafd25ab7cc1e7775bf55bcb3884cd7
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:58:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:58:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=083cdf5f

dev-python/wsproto: Stabilize 1.2.0 arm64, #872851

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

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

diff --git a/dev-python/wsproto/wsproto-1.2.0.ebuild 
b/dev-python/wsproto/wsproto-1.2.0.ebuild
index dcbf2ab75933..39bfdcf48f5a 100644
--- a/dev-python/wsproto/wsproto-1.2.0.ebuild
+++ b/dev-python/wsproto/wsproto-1.2.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/h11-0.9[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: 1910ac091db54cceb6cbff3da0e6c89bfbdf1001
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:58:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:58:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1910ac09

net-libs/libtirpc: Stabilize 1.3.3 arm64, #872740

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

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

diff --git a/net-libs/libtirpc/libtirpc-1.3.3.ebuild 
b/net-libs/libtirpc/libtirpc-1.3.3.ebuild
index 97d71e6e9593..ba194697d531 100644
--- a/net-libs/libtirpc/libtirpc-1.3.3.ebuild
+++ b/net-libs/libtirpc/libtirpc-1.3.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2
 
 LICENSE="BSD BSD-2 BSD-4 LGPL-2.1+"
 SLOT="0/3" # subslot matches SONAME major
-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="ipv6 kerberos static-libs"
 
 RDEPEND="kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )"



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

2022-09-25 Thread Sam James
commit: 56a5139e91def0c3a4ae371cfa9c0d2e5322a51b
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:56:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56a5139e

dev-python/peewee: Stabilize 3.15.2 x86, #872896

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

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

diff --git a/dev-python/peewee/peewee-3.15.2.ebuild 
b/dev-python/peewee/peewee-3.15.2.ebuild
index 8f7c4de3509e..f02e5148a095 100644
--- a/dev-python/peewee/peewee-3.15.2.ebuild
+++ b/dev-python/peewee/peewee-3.15.2.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~riscv ~x86"
+KEYWORDS="amd64 ~riscv x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Sam James
commit: 8d948afb2c27dd9d3aec1f210912808b832f5c25
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:56:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d948afb

dev-python/yara-python: Stabilize 4.2.3 x86, #872845

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

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

diff --git a/dev-python/yara-python/yara-python-4.2.3.ebuild 
b/dev-python/yara-python/yara-python-4.2.3.ebuild
index 31d956a381a0..e9485f5ed382 100644
--- a/dev-python/yara-python/yara-python-4.2.3.ebuild
+++ b/dev-python/yara-python/yara-python-4.2.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/virustotal/yara-python/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 
 RDEPEND="${PYTHON_DEPS}
=app-forensics/yara-$(ver_cut 1-2)*"



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

2022-09-25 Thread Sam James
commit: d6b27c62fb5bd2e8d52c6edb2c530a0ee47bba98
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:57:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:57:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6b27c62

dev-python/reportlab: Stabilize 3.6.11-r1 x86, #872878

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

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

diff --git a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild 
b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
index fdafa9e0916d..a3cfb7a58fd1 100644
--- a/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
+++ b/dev-python/reportlab/reportlab-3.6.11-r1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 
~amd64-linux ~x86-linux"
 
 DEPEND="
media-libs/freetype



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

2022-09-25 Thread Sam James
commit: 2458d18bb85cddce9f2c178f815623f04f9a846f
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:56:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2458d18b

dev-python/wsproto: Stabilize 1.2.0 x86, #872851

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

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

diff --git a/dev-python/wsproto/wsproto-1.2.0.ebuild 
b/dev-python/wsproto/wsproto-1.2.0.ebuild
index a0932f897032..dcbf2ab75933 100644
--- a/dev-python/wsproto/wsproto-1.2.0.ebuild
+++ b/dev-python/wsproto/wsproto-1.2.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND="
>=dev-python/h11-0.9[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: 635fd1e9cb3c355891761ce40fa251e6f9726a3a
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:56:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635fd1e9

dev-python/elasticsearch-py: Stabilize 7.17.6 x86, #872944

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

 dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild 
b/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild
index 0876c93ca635..4af0a255c2e1 100644
--- a/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild
+++ b/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="async doc"
 
 PROPERTIES="test_network"



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

2022-09-25 Thread Sam James
commit: fb1ba3ea171cf3433d9896fe2ea75f18ee59295a
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:56:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1ba3ea

dev-python/openapi-schema-validator: Stabilize 0.3.1 x86, #872908

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

 .../openapi-schema-validator/openapi-schema-validator-0.3.1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/openapi-schema-validator/openapi-schema-validator-0.3.1.ebuild 
b/dev-python/openapi-schema-validator/openapi-schema-validator-0.3.1.ebuild
index 003dd3e79e61..24015e17c437 100644
--- a/dev-python/openapi-schema-validator/openapi-schema-validator-0.3.1.ebuild
+++ b/dev-python/openapi-schema-validator/openapi-schema-validator-0.3.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
 
 RDEPEND="
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: 797ca921131f57484e6678a8933bec8cd979b230
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:55:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=797ca921

dev-python/python-gnupg: Stabilize 0.5.0 ALLARCHES, #872884

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

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

diff --git a/dev-python/python-gnupg/python-gnupg-0.5.0.ebuild 
b/dev-python/python-gnupg/python-gnupg-0.5.0.ebuild
index 8e1e818cf84e..9ce2e727de23 100644
--- a/dev-python/python-gnupg/python-gnupg-0.5.0.ebuild
+++ b/dev-python/python-gnupg/python-gnupg-0.5.0.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://docs.red-dove.com/python-gnupg/;
 
SRC_URI="https://github.com/vsajip/python-gnupg/releases/download/${PV}/${P}.tar.gz;
 SRC_URI+=" verify-sig? ( 
https://github.com/vsajip/python-gnupg/releases/download/${PV}/${P}.tar.gz.asc 
)"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86"
 LICENSE="BSD"
 SLOT="0"
 



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

2022-09-25 Thread Sam James
commit: dd1eb57fcd3c877f017a9fe678e10d47623c8756
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:56:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1eb57f

dev-python/greenlet: Stabilize 1.1.3 x86, #872935

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

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

diff --git a/dev-python/greenlet/greenlet-1.1.3.ebuild 
b/dev-python/greenlet/greenlet-1.1.3.ebuild
index ecca225d6c2b..cb29744848ff 100644
--- a/dev-python/greenlet/greenlet-1.1.3.ebuild
+++ b/dev-python/greenlet/greenlet-1.1.3.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 -hppa -ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 -hppa -ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 distutils_enable_sphinx docs
 distutils_enable_tests unittest



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

2022-09-25 Thread Sam James
commit: a1685dc783d1711d85661dc3bd1703b0a4f87150
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:55:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1685dc7

dev-python/textdistance: Stabilize 4.4.0 ALLARCHES, #872866

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

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

diff --git a/dev-python/textdistance/textdistance-4.4.0.ebuild 
b/dev-python/textdistance/textdistance-4.4.0.ebuild
index 427ee9e48841..fb039fa7c401 100644
--- a/dev-python/textdistance/textdistance-4.4.0.ebuild
+++ b/dev-python/textdistance/textdistance-4.4.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="amd64 ~riscv x86"
 
 BDEPEND="
test? (



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

2022-09-25 Thread Sam James
commit: bfb9bf2ca23676388e43b278ea03bfd786fa507e
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:55:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfb9bf2c

dev-python/rpy: Stabilize 3.5.4 amd64, #872875

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

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

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



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

2022-09-25 Thread Sam James
commit: 68c8908c06380f05c5cc33259f5d1fbeaf132797
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:55:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c8908c

dev-python/pydantic: Stabilize 1.10.1 amd64, #872893

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

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

diff --git a/dev-python/pydantic/pydantic-1.10.1.ebuild 
b/dev-python/pydantic/pydantic-1.10.1.ebuild
index dcf64256c714..60bdcea655fa 100644
--- a/dev-python/pydantic/pydantic-1.10.1.ebuild
+++ b/dev-python/pydantic/pydantic-1.10.1.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 RDEPEND="
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: ba2c45c224a326a7d8bfd8ee0dfbcdc59a6055e6
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:54:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba2c45c2

dev-python/trimesh: Stabilize 3.14.1 ALLARCHES, #872863

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

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

diff --git a/dev-python/trimesh/trimesh-3.14.1.ebuild 
b/dev-python/trimesh/trimesh-3.14.1.ebuild
index 11e1a73dfac5..40922f106994 100644
--- a/dev-python/trimesh/trimesh-3.14.1.ebuild
+++ b/dev-python/trimesh/trimesh-3.14.1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 RDEPEND="
dev-python/chardet[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: a2bbaa0e21dbc299fb0ead4ab509fc59d1f29f44
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:54:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2bbaa0e

dev-python/elasticsearch-py: Stabilize 7.17.6 amd64, #872944

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

 dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild 
b/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild
index bbcb13d1ca57..0876c93ca635 100644
--- a/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild
+++ b/dev-python/elasticsearch-py/elasticsearch-py-7.17.6.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="async doc"
 
 PROPERTIES="test_network"



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

2022-09-25 Thread Sam James
commit: e9049f862d15abc39429e2b29b834ae7386ff471
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:54:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9049f86

dev-python/wsproto: Stabilize 1.2.0 amd64, #872851

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

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

diff --git a/dev-python/wsproto/wsproto-1.2.0.ebuild 
b/dev-python/wsproto/wsproto-1.2.0.ebuild
index 4f285bdefd6e..a0932f897032 100644
--- a/dev-python/wsproto/wsproto-1.2.0.ebuild
+++ b/dev-python/wsproto/wsproto-1.2.0.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86"
 
 RDEPEND="
>=dev-python/h11-0.9[${PYTHON_USEDEP}]



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

2022-09-25 Thread Sam James
commit: 750f2f00f6b2c3570de1a2b54c71fc7456f60ebe
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:55:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=750f2f00

dev-python/pyudev: Stabilize 0.24.0 amd64, #872881

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

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

diff --git a/dev-python/pyudev/pyudev-0.24.0.ebuild 
b/dev-python/pyudev/pyudev-0.24.0.ebuild
index 558b604e2843..f9687fc2bf39 100644
--- a/dev-python/pyudev/pyudev-0.24.0.ebuild
+++ b/dev-python/pyudev/pyudev-0.24.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc ~x86"
 IUSE="qt5"
 
 # Known to fail on test system that aren't exactly the same devices as on CI



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

2022-09-25 Thread Sam James
commit: 10c2079ced16229b542758f7feb79bf882bd646c
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:54:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c2079c

dev-python/google-api-python-client: Stabilize 2.58.0 ALLARCHES, #872938

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

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

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



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

2022-09-25 Thread Sam James
commit: 209795f6b1a5490bcdabf84d95a6a228e98517d7
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 25 23:54:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 25 23:56:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=209795f6

dev-python/yara-python: Stabilize 4.2.3 amd64, #872845

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

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

diff --git a/dev-python/yara-python/yara-python-4.2.3.ebuild 
b/dev-python/yara-python/yara-python-4.2.3.ebuild
index e4fa379a2709..31d956a381a0 100644
--- a/dev-python/yara-python/yara-python-4.2.3.ebuild
+++ b/dev-python/yara-python/yara-python-4.2.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/virustotal/yara-python/archive/v${PV}.tar.gz -> ${P}
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 
 RDEPEND="${PYTHON_DEPS}
=app-forensics/yara-$(ver_cut 1-2)*"



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

2022-09-25 Thread Ionen Wolkens
commit: bcc585e635b43dc58f37554275cab109b3a06ea4
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Sep 25 23:51:19 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Sep 25 23:54:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcc585e6

profiles: package.mask x11-drivers/nvidia-drivers-515.76

Most users are likely fine with it, but there's little reason to
use 515.76 over 515.65.01 at the moment and if it's going to cause
issues for some may as well mask it.

If not fixed by next release, likely won't keep the new one masked
as well though.

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 77eeb06796df..87d80f2da834 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Ionen Wolkens  (2022-09-25)
+# This version been causing issues for some RTX 30xx users and
+# does not bring much of interest for others, best stick to
+# 515.65.01 for now (but feel free to unmask if it's been fine).
+# https://bugs.archlinux.org/task/75995
+# 
https://forums.developer.nvidia.com/t/bug-report-black-x11-screen-and-partial-lockup-when-upgraded-to-515-76-and-dual-rtx3060
+~x11-drivers/nvidia-drivers-515.76
+
 # Piotr Karbowski  (2022-09-25)
 # No package in tree depends on dev-python/ssh2-python. Masked for removal.
 # Removal on 2022-10-25.



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

2022-09-25 Thread Mike Gilbert
commit: 4acbbca51159320d9a5efce6945725211cc487c5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Sep 25 23:26:22 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 25 23:26:22 2022 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4acbbca5

Add a83507be to .git-blame-ignore-revs

Signed-off-by: Mike Gilbert  gentoo.org>

 .git-blame-ignore-revs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs
index b612f6b32..cfa2e1607 100644
--- a/.git-blame-ignore-revs
+++ b/.git-blame-ignore-revs
@@ -8,3 +8,5 @@ baf79da44e543cc0fd12f64a2c99b49b66727f39
 9fe091668c8a1d988c02c849ac1bece6eb764d0b
 # bin: style tweaks
 cb8eda531dad92bec9293c89f93db9b581245fd3
+# chore(bintree): removed useless ``if True:``
+a83507be7ce04d3ac421f9cbe8b63816809b0f4e



[gentoo-commits] repo/gentoo:master commit in: dev-lua/busted/

2022-09-25 Thread Conrad Kostecki
commit: 54c8f012254b36ba8b18e3868791306598dcdd83
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:26:54 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c8f012

dev-lua/busted: drop 2.0.0-r1

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lua/busted/Manifest   |  1 -
 dev-lua/busted/busted-2.0.0-r1.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/dev-lua/busted/Manifest b/dev-lua/busted/Manifest
index 37e6ec7016f0..5451f6c9f54f 100644
--- a/dev-lua/busted/Manifest
+++ b/dev-lua/busted/Manifest
@@ -1,2 +1 @@
-DIST busted-2.0.0.tar.gz 55002 BLAKE2B 
39a3b7bf156911e25f94020f9e56b3f43b9f02b910a9d1c1f288dbdb83e5d53253d5b40d73df655844ed683cff7959d42c330c0d061db918385df07870e16da3
 SHA512 
3151694b1fba1acc52e3bcfee0231008b14934e89da5885d7e063c6f023479c42040c42a8c0aa6ff1f8303ad6b2a70f0687c8a218830de7231007ef8748457bf
 DIST busted-2.1.1.tar.gz 62594 BLAKE2B 
3afd49dd70b27243e32f69d5d5a0a0ee13e46fdbe46fe6921e1b854abddaa45dba098f19c5994d5656eca871beacd654cac20abe0662c21f6e7efaff19984753
 SHA512 
80a362094398b85f2783ca11adfae1f7ead38b9de7d11d2c2f8234f2d8f1289dc853f58c11c375b8edd6ea87807a65cc8bce01ebcf7cdf75701796ee528a75a0

diff --git a/dev-lua/busted/busted-2.0.0-r1.ebuild 
b/dev-lua/busted/busted-2.0.0-r1.ebuild
deleted file mode 100644
index 4a11ad485569..
--- a/dev-lua/busted/busted-2.0.0-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-LUA_COMPAT=( lua5-{1..4} luajit )
-
-inherit lua
-
-DESCRIPTION="Elegant Lua unit testing"
-HOMEPAGE="https://lunarmodules.github.io/busted/;
-SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86"
-IUSE="test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   dev-lua/lua_cliargs[${LUA_USEDEP}]
-   dev-lua/luafilesystem[${LUA_USEDEP}]
-   dev-lua/luasystem[${LUA_USEDEP}]
-   dev-lua/dkjson[${LUA_USEDEP}]
-   dev-lua/say[${LUA_USEDEP}]
-   dev-lua/luassert[${LUA_USEDEP}]
-   dev-lua/lua-term[${LUA_USEDEP}]
-   dev-lua/penlight[${LUA_USEDEP}]
-   dev-lua/mediator_lua[${LUA_USEDEP}]
-   ${LUA_DEPS}
-"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="
-   virtual/pkgconfig
-   test? (
-   dev-lua/busted
-   ${RDEPEND}
-   )
-"
-
-lua_src_test() {
-   busted --lua=${ELUA} || die
-}
-
-src_test() {
-   lua_foreach_impl lua_src_test
-}
-
-lua_src_install() {
-   insinto $(lua_get_lmod_dir)
-   doins -r busted
-}
-
-src_install() {
-   dobin bin/busted
-
-   lua_foreach_impl lua_src_install
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luassert/

2022-09-25 Thread Conrad Kostecki
commit: ceae6e27148bf06356f3e7d0cc491bd8c7fd8d1e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:27:54 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceae6e27

dev-lua/luassert: stabilize all-arches

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lua/luassert/luassert-1.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luassert/luassert-1.9.0.ebuild 
b/dev-lua/luassert/luassert-1.9.0.ebuild
index 3bfe540696f0..f60fbc483d39 100644
--- a/dev-lua/luassert/luassert-1.9.0.ebuild
+++ b/dev-lua/luassert/luassert-1.9.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86"
 IUSE="test"
 REQUIRED_USE="${LUA_REQUIRED_USE}"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luassert/files/, dev-lua/luassert/

2022-09-25 Thread Conrad Kostecki
commit: 68076b1d9310f0680c331a1f9d611ee76988adf5
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:28:25 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68076b1d

dev-lua/luassert: drop 1.8.0-r1

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lua/luassert/Manifest  |  1 -
 ...uassert-1.8.0-disable-highlightcolor-test.patch | 57 --
 dev-lua/luassert/luassert-1.8.0-r1.ebuild  | 56 -
 3 files changed, 114 deletions(-)

diff --git a/dev-lua/luassert/Manifest b/dev-lua/luassert/Manifest
index c111573a5e69..eeadb92638ca 100644
--- a/dev-lua/luassert/Manifest
+++ b/dev-lua/luassert/Manifest
@@ -1,2 +1 @@
-DIST luassert-1.8.0.tar.gz 38874 BLAKE2B 
ebc4aab1de5dc830d0b9266726ca6bf361e03000f3a8acd27c04805a6c963373755c8e163b187714f64178acc5d755c05493d745b55c785e3254dd41aa4bef31
 SHA512 
18b296fececa6b0d5950b2a20c4d30da3bbf9b0932c568bbb8ca212b5c82a1047b73c52ee72b4505a41a393d41dd21321189367e038dd029152d177e11bafc93
 DIST luassert-1.9.0.tar.gz 42645 BLAKE2B 
2541184bb5ee7a6a7e0c8e2fead8c4926a5d8384345dc173d60c9b52bb4cffe9f50e90980293465e1e5cadee337823abf77421d1cfc423eb32d9d73a7594a306
 SHA512 
267d31f0061376a4766c7e978bda9e4a2396c8bf959d4aaa347ad40bd286a3873441e38983e1e86ea07a1be7cf7c92d91248c4ba70d6dd4ec82f02c7f7638e9f

diff --git 
a/dev-lua/luassert/files/luassert-1.8.0-disable-highlightcolor-test.patch 
b/dev-lua/luassert/files/luassert-1.8.0-disable-highlightcolor-test.patch
deleted file mode 100644
index fe3f7815a04e..
--- a/dev-lua/luassert/files/luassert-1.8.0-disable-highlightcolor-test.patch
+++ /dev/null
@@ -1,57 +0,0 @@
 a/spec/formatters_spec.lua
-+++ b/spec/formatters_spec.lua
-@@ -102,18 +102,6 @@
- assert.is.equal(expected, formatted)
-   end)
- 
--  it("Checks to see if TableErrorHighlightColor changes error color", 
function()
--local ok, colors = pcall(require, "term.colors")
--if not ok then pending("lua term.colors not available") end
--
--assert:set_parameter("TableErrorHighlightColor", "red")
--local t = {1,2,3}
--local fmtargs = { {crumbs = {2}} }
--local formatted = assert:format({t, n = 1, fmtargs = fmtargs})[1]
--local expected = string.format("("..tostring(t)..") {\n  [1] = 1\n %s[2] 
= 2\n  [3] = 3 }", colors.red("*"))
--assert.is.equal(expected, formatted)
--  end)
--
-   it("Checks to see if self referencing tables can be formatted", function()
- local t = {1,2}
- t[3] = t
 a/spec/assertions_spec.lua
-+++ b/spec/assertions_spec.lua
-@@ -472,17 +472,6 @@
- assert.no_error_matches(t_ok, ".*")
-   end)
- 
--  it("Checks error_matches compares error strings with pattern", function()
--assert.error_matches(function() error() end, nil)
--assert.no_error_matches(function() end, nil)
--assert.does_error_match(function() error(123) end, "^%d+$")
--assert.error.matches(function() error("string") end, "^%w+$")
--assert.matches.error(function() error("string") end, "str", nil, true)
--assert.matches_error(function() error("123string") end, "^[^0-9]+", 4)
--assert.has_no_error.match(function() error("123string") end, "123", 4, 
true)
--assert.does_not.match_error(function() error("string") end, "^%w+$", nil, 
true)
--  end)
--
-   it("Checks error_matches does not compare error objects", function()
- local func = function() end
- assert.no_error_matches(function() error({ "table" }) end, "table")
-@@ -557,15 +546,6 @@
- assert.is_same({}, {assert.has_no_match("%d+", "string", nil, true, 
"message")})
-   end)
- 
--  it("Checks assert.has_error returns thrown error on success", function()
--assert.is_same({"err message", "err message"}, 
{assert.has_error(function() error("err message") end, "err message")})
--assert.is_same({"err", "err"}, {assert.has_error(function() 
error(setmetatable({},{__tostring = function() return "err" end})) end, "err")})
--assert.is_same({{}, {}}, {assert.has_error(function() error({}) end, {})})
--assert.is_same({'0', 0}, {assert.has_error(function() error(0) end, 0)})
--assert.is_same({nil, nil}, {assert.has_error(function() error(nil) end, 
nil)})
--assert.is_same({nil, "string"}, {assert.has_no_error(function() end, 
"string")})
--  end)
--
-   it("Checks assert.error_matches returns captures of thrown error on 
success", function()
- assert.is_same({"err", "message"}, {assert.error_matches(function() 
error("err message") end, "(err) (%w+)$")})
- assert.is_same({"err"}, {assert.error_matches(function() 
error(setmetatable({},{__tostring = function() return "err" end})) end, "err", 
nil, true)})

diff --git a/dev-lua/luassert/luassert-1.8.0-r1.ebuild 
b/dev-lua/luassert/luassert-1.8.0-r1.ebuild
deleted file mode 100644
index 9310edd6efbd..
--- a/dev-lua/luassert/luassert-1.8.0-r1.ebuild
+++ /dev/null
@@ -1,56 

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

2022-09-25 Thread Conrad Kostecki
commit: b99c81e345b29e7537d355e71d8639d5d4578674
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:44:44 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b99c81e3

media-libs/gmmlib: add 22.2.0

Signed-off-by: Conrad Kostecki  gentoo.org>

 media-libs/gmmlib/Manifest |  1 +
 media-libs/gmmlib/gmmlib-22.2.0.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/media-libs/gmmlib/Manifest b/media-libs/gmmlib/Manifest
index fc04dc498418..9fbb8dfb2b0e 100644
--- a/media-libs/gmmlib/Manifest
+++ b/media-libs/gmmlib/Manifest
@@ -1,2 +1,3 @@
 DIST intel-gmmlib-22.1.7.tar.gz 818408 BLAKE2B 
b7123b571bfdb2f363bb7824264b9c2ad85c5e58f2978c0fa20010c8a890157bf10da7c772b9ad987078784bf37192ec0e8e14b73980af15329609649e817fd6
 SHA512 
0dbf972ecd61f84b9932eb6735c73e424861f7841bee8a5e76cd4d8d28ebf7641e475f9cdb1015b4f20aca08591f8f52631ebc209efa339753b47b3a121a38fb
 DIST intel-gmmlib-22.1.8.tar.gz 818360 BLAKE2B 
5a7dadaead925eddfe52770c73eea92b8f071b498a2ed8d23928c93ba3d0284d9046339b7eb641918b17bf13bbcffc071ba71ba47cc53760258b1bb39f175e17
 SHA512 
4520105c7ceaae30e592acce7bae65841ecdb5d74c888cf03a2308a94a63d998941665794933c8247dbae841d13386ee99b365de0c6a5676acc960386c19ca2c
+DIST intel-gmmlib-22.2.0.tar.gz 820145 BLAKE2B 
6b7966c71a24344f4525cb676aae12c7947d1101bbe46938336deeb769f5728aec4a11ce2b346fc55bc3d752c67e2f375e7008f8bb11a7fc49e91231ed09a1a9
 SHA512 
57ed8bb08755befeb27e096249cc31afbae7ff0ccfb0eb2ae4de38b38e6c3454a1e145f11a509b6dcae45d1a8ee7b75021353f7b1857b3e32366e84310337e44

diff --git a/media-libs/gmmlib/gmmlib-22.2.0.ebuild 
b/media-libs/gmmlib/gmmlib-22.2.0.ebuild
new file mode 100644
index ..d811e64621f4
--- /dev/null
+++ b/media-libs/gmmlib/gmmlib-22.2.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_BUILD_TYPE="Release"
+
+inherit cmake
+
+DESCRIPTION="Intel Graphics Memory Management Library"
+HOMEPAGE="https://github.com/intel/gmmlib;
+SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz;
+S="${WORKDIR}/${PN}-intel-${P}"
+
+KEYWORDS="~amd64"
+LICENSE="MIT"
+SLOT="0/12.2"
+IUSE="+custom-cflags test"
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-20.2.2_conditional_testing.patch
+   "${FILESDIR}"/${PN}-20.3.2_cmake_project.patch
+   "${FILESDIR}"/${PN}-22.1.1_custom_cflags.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING="$(usex test)"
+   -DBUILD_TYPE="Release"
+   -DOVERRIDE_COMPILER_FLAGS="$(usex !custom-cflags)"
+   )
+
+   cmake_src_configure
+}



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

2022-09-25 Thread Conrad Kostecki
commit: ac704d2da00e60acae64301a14603f7ac9c6a2cb
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:45:11 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac704d2d

media-libs/gmmlib: update live ebuild

Signed-off-by: Conrad Kostecki  gentoo.org>

 media-libs/gmmlib/gmmlib-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/gmmlib/gmmlib-.ebuild 
b/media-libs/gmmlib/gmmlib-.ebuild
index d1d021ad0117..07dd695c5ff3 100644
--- a/media-libs/gmmlib/gmmlib-.ebuild
+++ b/media-libs/gmmlib/gmmlib-.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://github.com/intel/gmmlib;
 SRC_URI=""
 
 LICENSE="MIT"
-SLOT="0/12.1"
+SLOT="0/12.2"
 IUSE="test +custom-cflags"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/intel-graphics-compiler/

2022-09-25 Thread Conrad Kostecki
commit: 272e18b29c4c72e2f1b8519df8d02c8a740b39e9
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 23:02:07 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=272e18b2

dev-util/intel-graphics-compiler: add 1.0.12149.1

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-util/intel-graphics-compiler/Manifest  |  1 +
 .../intel-graphics-compiler-1.0.12149.1.ebuild | 85 ++
 2 files changed, 86 insertions(+)

diff --git a/dev-util/intel-graphics-compiler/Manifest 
b/dev-util/intel-graphics-compiler/Manifest
index d191cf9cf1d5..526224e9e7f5 100644
--- a/dev-util/intel-graphics-compiler/Manifest
+++ b/dev-util/intel-graphics-compiler/Manifest
@@ -1 +1,2 @@
 DIST intel-graphics-compiler-1.0.11702.1.tar.gz 8734601 BLAKE2B 
7cc8a4f9fc820d822c3b435d172ca27145d916fd25fedf20d13b2d7041cba36fc4416e17307ab0cbf6b9785f5958a53c58486fb6fb4776025b696f5dfb195161
 SHA512 
cd7d27a3a13462517c3e75c43d7d951afa53ef77875f479304da43b93fd40ae19680c11dc5bcf2ec3fecf6dbe56daa954ccb88b9f99f3af4c53d3141ef0b93f5
+DIST intel-graphics-compiler-1.0.12149.1.tar.gz 8874232 BLAKE2B 
b6195741282290561ee669574b19a9d96dd9695ea6358932f4c54946ff7b2a0315f905e9445419349131c2a424b630b8197a944bbd46a3232bd841be50f4f2e8
 SHA512 
1c9f2a6e119713173db527d8dc891269606db2a57a9c0043c82556e79a77d83bab31b732557e8130f36b99a54b551e8ff6d6104b3d75ef081d9f16811abbe8db

diff --git 
a/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.12149.1.ebuild 
b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.12149.1.ebuild
new file mode 100644
index ..40b31434451c
--- /dev/null
+++ 
b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.12149.1.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_BUILD_TYPE="Release"
+LLVM_MAX_SLOT="13"
+MY_PN="igc"
+MY_P="${MY_PN}-${PV}"
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit cmake flag-o-matic llvm python-any-r1
+
+DESCRIPTION="LLVM-based OpenCL compiler for OpenCL targetting Intel Gen 
graphics hardware"
+HOMEPAGE="https://github.com/intel/intel-graphics-compiler;
+SRC_URI="https://github.com/intel/${PN}/archive/${MY_P}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="debug"
+
+DEPEND="
+   dev-libs/opencl-clang:${LLVM_MAX_SLOT}=
+   dev-util/spirv-tools
+   =sys-devel/lld-${LLVM_MAX_SLOT}*
+   sys-devel/llvm:${LLVM_MAX_SLOT}=
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+   =sys-devel/lld-${LLVM_MAX_SLOT}*
+   ${PYTHON_DEPS}
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.0.9-no_Werror.patch"
+   "${FILESDIR}/${PN}-1.0.8173-opencl-clang_version.patch"
+   "${FILESDIR}/${PN}-1.0.8365-disable-git.patch"
+   "${FILESDIR}/${PN}-1.0.11485-include-opencl-c.patch"
+)
+
+pkg_setup() {
+   llvm_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+src_configure() {
+   # Get LLVM version
+   local llvm_version="$(best_version -d sys-devel/llvm:${LLVM_MAX_SLOT})"
+
+   # See https://github.com/intel/intel-graphics-compiler/issues/212
+   append-ldflags -Wl,-z,undefs
+
+   # See https://bugs.gentoo.org/718824
+   ! use debug && append-cppflags -DNDEBUG
+
+   local mycmakeargs=(
+   
-DCCLANG_INCLUDE_PREBUILDS_DIR="/usr/lib/clang/${llvm_version##*-}/include"
+   -DCCLANG_SONAME_VERSION="${LLVM_MAX_SLOT}"
+   -DCMAKE_LIBRARY_PATH="$(get_llvm_prefix 
${LLVM_MAX_SLOT})/$(get_libdir)"
+   -DIGC_OPTION__ARCHITECTURE_TARGET="Linux64"
+   -DIGC_OPTION__CLANG_MODE="Prebuilds"
+   -DIGC_OPTION__LINK_KHRONOS_SPIRV_TRANSLATOR="ON"
+   -DIGC_OPTION__LLD_MODE="Prebuilds"
+   -DIGC_OPTION__LLDELF_H_DIR="${EPREFIX}/usr/include/lld/Common"
+   -DIGC_OPTION__LLVM_MODE="Prebuilds"
+   -DIGC_OPTION__LLVM_PREFERRED_VERSION="${llvm_version##*-}"
+   -DIGC_OPTION__SPIRV_TOOLS_MODE="Prebuilds"
+   -DIGC_OPTION__SPIRV_TRANSLATOR_MODE="Prebuilds"
+   -DIGC_OPTION__USE_PREINSTALLED_SPRIV_HEADERS="ON"
+   -DINSTALL_GENX_IR="ON"
+   
-DSPIRVLLVMTranslator_INCLUDE_DIR="${EPREFIX}/usr/lib/llvm/${LLVM_MAX_SLOT}/include/LLVMSPIRVLib"
+   -Wno-dev
+
+   # Compilation with VectorCompiler causes currently a segfault.
+   # See 
https://github.com/intel/intel-graphics-compiler/issues/236
+   -DIGC_BUILD__VC_ENABLED="OFF"
+   # -DIGC_OPTION__VC_INTRINSICS_MODE="Prebuilds"
+   )
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-compute-runtime/

2022-09-25 Thread Conrad Kostecki
commit: 1fa73dc4b783684bf4307cd95e007eb220fd16d2
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:22:42 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fa73dc4

dev-libs/intel-compute-runtime: drop 22.31.23852, 22.32.23937, 22.34.24023

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/intel-compute-runtime/Manifest|  3 -
 .../intel-compute-runtime-22.31.23852.ebuild   | 79 --
 .../intel-compute-runtime-22.32.23937.ebuild   | 79 --
 .../intel-compute-runtime-22.34.24023.ebuild   | 79 --
 4 files changed, 240 deletions(-)

diff --git a/dev-libs/intel-compute-runtime/Manifest 
b/dev-libs/intel-compute-runtime/Manifest
index 60a5764b8c7a..b3247ec8d0b2 100644
--- a/dev-libs/intel-compute-runtime/Manifest
+++ b/dev-libs/intel-compute-runtime/Manifest
@@ -1,4 +1 @@
-DIST intel-compute-runtime-22.31.23852.tar.gz 5644386 BLAKE2B 
90eb629187d0aba7a713c600234f18a5472d7ad4e9a7c1130e61011970a9247165f17dab936abb875ee4dd9b4ba167135d158a1b19fce9f20d2bd1c23c9d065b
 SHA512 
66fae1c0e3173f45f0565906d455d4511d40bc392a966625f60315e6a72daa30c741dddc799c50b8e020092577af6aa03810cd5a5e3e729ab19815cdb5e6a27a
-DIST intel-compute-runtime-22.32.23937.tar.gz 5656306 BLAKE2B 
82cc631b69d24d2b845d6c9abc0525f06de8314c7915e651db3c800527244c94104eea6083acdde194cc51f9a68bdfcd39f3f4d296c96338e9f05c05d71cc21c
 SHA512 
729d29c09624ae81ca1e8a455d4e3665fcb31cac87e9776730c038a3393e91e1a00e2079e2587adf4b9ab1797179f49fafd48ac5b855dab722837f1f3b77e0f0
-DIST intel-compute-runtime-22.34.24023.tar.gz 5696775 BLAKE2B 
8a70751b54e2aaea51eb69d45ef1bed09198023b72b34354cbd87f73a91481f4c7c5a4e5d23815b8ab3d05d4525cb08136929c4b9c0c69b6bcb917b560d88c49
 SHA512 
592dbf4bad4898c2a5d7a95cd7f41d23cf2f7ab97a33d55f2322b8243a88a3b61ea28d0af1d853324456c5919082fa236fee5fa9cbfcebf248a791617e1533ad
 DIST intel-compute-runtime-22.35.24055.tar.gz 5710106 BLAKE2B 
a8efab3ab078b2bc3bc85110fc13f5f68cecd8e9e6978a0f6298d37eb470264303579a66a2bc840b8a8719ef03d67474f4d8959e6bf9442ffb997de1ad1af43b
 SHA512 
c6a238a238647ff79c8ac7a38ebba3e1913f3b6f2ec1adbdde9b8eb9536078de12eac8b35ba45e77eea156b3ec1bd55d8b1279b1fbe729be23429b88de5a757f

diff --git 
a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.31.23852.ebuild 
b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.31.23852.ebuild
deleted file mode 100644
index 6786aa838eae..
--- a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.31.23852.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CMAKE_BUILD_TYPE="Release"
-MY_PN="${PN/intel-/}"
-MY_P="${MY_PN}-${PV}"
-
-inherit cmake flag-o-matic
-
-DESCRIPTION="Intel Graphics Compute Runtime for oneAPI Level Zero and OpenCL 
Driver"
-HOMEPAGE="https://github.com/intel/compute-runtime;
-SRC_URI="https://github.com/intel/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64"
-IUSE="+l0 +vaapi"
-
-RDEPEND=">=media-libs/gmmlib-22.1.7:="
-
-DEPEND="
-   ${DEPEND}
-   >=dev-libs/intel-metrics-library-0_pre20220526:=
-   dev-libs/libnl:3
-   dev-libs/libxml2:2
-   >=dev-util/intel-graphics-compiler-1.0.11485
-   >=dev-util/intel-graphics-system-controller-0.8.0:=
-   media-libs/mesa
-   >=virtual/opencl-3
-   l0? ( >=dev-libs/level-zero-1.8.5:= )
-   vaapi? (
-   x11-libs/libdrm[video_cards_intel]
-   x11-libs/libva
-   )
-"
-
-BDEPEND="virtual/pkgconfig"
-
-DOCS=( "README.md" "FAQ.md" )
-
-PATCHES=( "${FILESDIR}/${PN}-22.24.23453-remove-fortify-sources.patch" )
-
-src_prepare() {
-   # Remove '-Werror' from default
-   sed -e '/Werror/d' -i CMakeLists.txt || die
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   # See https://github.com/intel/compute-runtime/issues/531
-   filter-flags -flto=* -flto
-
-   local mycmakeargs=(
-   -DCCACHE_ALLOWED="OFF"
-   -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
-   -DCMAKE_INSTALL_LIBDIR="$(get_libdir)"
-   -DBUILD_WITH_L0="$(usex l0)"
-   -DDISABLE_LIBVA="$(usex !vaapi)"
-   -DNEO__METRICS_LIBRARY_INCLUDE_DIR="${ESYSROOT}/usr/include"
-   -DKHRONOS_GL_HEADERS_DIR="${ESYSROOT}/usr/include"
-   -DOCL_ICD_VENDORDIR="${EPREFIX}/etc/OpenCL/vendors"
-   -DSUPPORT_DG1="ON"
-   -Wno-dev
-
-   # See 
https://github.com/intel/intel-graphics-compiler/issues/204
-   # -DNEO_DISABLE_BUILTINS_COMPILATION="ON"
-
-   # If enabled, tests are automatically run during
-   # the compile phase and we cannot run them because
-   # they require permissions to access the hardware.
-   

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

2022-09-25 Thread Conrad Kostecki
commit: 3ab8d8c4488ec05a8da036864083b8ca1c7b4c8b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:40:35 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ab8d8c4

dev-libs/opencl-clang: add 15.0.0

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/opencl-clang/Manifest   |  1 +
 dev-libs/opencl-clang/opencl-clang-15.0.0.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/dev-libs/opencl-clang/Manifest b/dev-libs/opencl-clang/Manifest
index ea3c06ec0152..9a6a9a53876a 100644
--- a/dev-libs/opencl-clang/Manifest
+++ b/dev-libs/opencl-clang/Manifest
@@ -1,2 +1,3 @@
 DIST opencl-clang-13.0.0.tar.gz 25299 BLAKE2B 
1aabb4a97ba0bfd6129ea2b821508457de9d8ab78b4456217d655239081f8547e87730f54f05511e1a3ca6c54836fad5cb0cf69f26ac5ffd86ff6ae930f5e2dc
 SHA512 
d346e51339060795d80bdf9d3e3b58e55b089d94ed3c0bc3c7e1e8f81a5f65238d90dacc95ec27e8db7d38a6a03b05df5c4120e9ba0ec72a7bbca28a59d697f7
 DIST opencl-clang-14.0.0.tar.gz 26109 BLAKE2B 
2ae5e6d69e2f13b867712d03b52fce893aeb70566f7f97d54858639786276f49b0b6b5768aebfedeb7fe50d95511178d7dd9df7e80d3fd27df1fb3fe1d2ab955
 SHA512 
ab9a3fd40542283bdd2646d9ef8d3217420c82a41b183d705e48f48949505ecadc1fa435e23a7ceadf5a335200f5f3752b42715e2ac7f63173fc09637c5c609a
+DIST opencl-clang-15.0.0.tar.gz 26212 BLAKE2B 
02d3a8eb3964b6882bd94b676b4459412c753ac38e1e3012662021e98a8219225eaf6af4f62f4e0e97de428f55b0b698374dc39babff09a0fcc73213d5daacfe
 SHA512 
a2ffce43493793524e9512be2e7bd46c0183b86b35a6f79018d355d07a83303a944e6dacebfb768e88ce75a7020a44939be872a2d4e754544198a9829f4febd4

diff --git a/dev-libs/opencl-clang/opencl-clang-15.0.0.ebuild 
b/dev-libs/opencl-clang/opencl-clang-15.0.0.ebuild
new file mode 100644
index ..d9682f8e0030
--- /dev/null
+++ b/dev-libs/opencl-clang/opencl-clang-15.0.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LLVM_MAX_SLOT="15"
+
+inherit cmake llvm
+
+DESCRIPTION="OpenCL-oriented thin wrapper library around clang"
+HOMEPAGE="https://github.com/intel/opencl-clang;
+SRC_URI="https://github.com/intel/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${PV}"
+
+LICENSE="UoI-NCSA"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-util/spirv-llvm-translator:${SLOT}=
+   sys-devel/clang:${SLOT}=[static-analyzer]
+   sys-devel/llvm:${SLOT}=
+"
+
+DEPEND="${RDEPEND}"
+
+PATCHES=( "${FILESDIR}"/${PN}-8.0.0-clang_library_dir.patch )
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_PREFIX="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
+   -DCLANG_LIBRARY_DIRS="${EPREFIX}"/usr/lib/clang
+   -Wno-dev
+   )
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/

2022-09-25 Thread Conrad Kostecki
commit: 473f39126774b3ab75c7bbbeba3c22364c5cf2b3
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:32:34 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=473f3912

games-server/bedrock-server: drop 1.19.21.01, 1.19.22.01

Signed-off-by: Conrad Kostecki  gentoo.org>

 games-server/bedrock-server/Manifest   |  2 -
 .../bedrock-server-1.19.21.01.ebuild   | 53 --
 .../bedrock-server-1.19.22.01.ebuild   | 53 --
 3 files changed, 108 deletions(-)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index cec06d1375b5..286131871170 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,4 +1,2 @@
 DIST bedrock-server-1.19.20.02.zip 75658923 BLAKE2B 
f137320f5785ddbdd1f4ff550f99448ad70455c0ab70bc8d9ec48c15487503313dd0e887cd8b9a4a1a73b5af82af0b548a6cd13180fdbbd3fb53291f3c5c6ee7
 SHA512 
f82e50e9180dadab76152bc7860c0306d3ee68091f39345749e4c4268b5c6d53692188373bb366a053abc352b50b1508eab8d662b10fe7ce96cf91485596c1d2
-DIST bedrock-server-1.19.21.01.zip 75658119 BLAKE2B 
96aabcc9a7aa1ba815a23b4bdc65e1465afcca5f59ebe24feaa06c88520da3473fffdca707d0af4d4b2467a872fc5e7556e6d90f07f310cd958bdae1b94dde7c
 SHA512 
98b6fbeda45945786a69aa78fa2bec896766abbc8e88aa2b08e039df3b9760a2daeaeeeaa5529f840ba6020f51e8f33511f0c34dba83f63d199387fe3c2a47ca
-DIST bedrock-server-1.19.22.01.zip 75658036 BLAKE2B 
3ace22cd15aad1ad4faf0f95ccc3e325629dd7a4876dff2711ad60b33a3c7f811fc225a59538135948352ccf6a11e97fb039b1eb5d18d29ebb35483859c57fe2
 SHA512 
bb138badcb91fa3eb5511aeadbe05e97e6fee8efa6888fde1c30a304d3549518385a49be2265496e9cfd6d5d305ebff2f515d63dfa2fe004decf70a03a5e66c7
 DIST bedrock-server-1.19.30.04.zip 77883277 BLAKE2B 
e92ecca1b3118e4045c4369b9d468566ed807c989851d30d546629652ffa83f52ebc48f1a4d47061b1073ba0672e4432c7f2ae71b07b27e5bf8260f91cbcaf02
 SHA512 
b1431d52b193c8198aa6d3ff015d4de8df551fc6d96210aa8745fc14021dcf655c7cada0e218a9b803ed1142ec952224751bea3acd9a778f7775992c80f1ddc9

diff --git a/games-server/bedrock-server/bedrock-server-1.19.21.01.ebuild 
b/games-server/bedrock-server/bedrock-server-1.19.21.01.ebuild
deleted file mode 100644
index 16dd14a8e660..
--- a/games-server/bedrock-server/bedrock-server-1.19.21.01.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
-HOMEPAGE="https://www.minecraft.net/;
-SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
-S="${WORKDIR}"
-
-LICENSE="Mojang"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-
-RDEPEND="
-   acct-group/bedrock
-   acct-user/bedrock
-   app-misc/dtach
-   dev-libs/openssl:0/1.1
-   sys-libs/zlib
-"
-
-BDEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-DOCS=(
-   "bedrock_server_how_to.html"
-   "release-notes.txt"
-)
-
-QA_PREBUILT="opt/bedrock-server/bedrock_server"
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   exeinto /opt/bedrock-server
-   doexe bedrock_server
-
-   insinto /opt/bedrock-server
-   doins {allowlist,permissions}.json server.properties
-   doins -r {behavior,resource}_packs definitions structures
-
-   dodir /opt/bin
-   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
-
-   newinitd "${FILESDIR}"/bedrock-server.initd-r4 bedrock-server
-   newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server
-
-   einstalldocs
-}

diff --git a/games-server/bedrock-server/bedrock-server-1.19.22.01.ebuild 
b/games-server/bedrock-server/bedrock-server-1.19.22.01.ebuild
deleted file mode 100644
index 16dd14a8e660..
--- a/games-server/bedrock-server/bedrock-server-1.19.22.01.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
-HOMEPAGE="https://www.minecraft.net/;
-SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
-S="${WORKDIR}"
-
-LICENSE="Mojang"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-
-RDEPEND="
-   acct-group/bedrock
-   acct-user/bedrock
-   app-misc/dtach
-   dev-libs/openssl:0/1.1
-   sys-libs/zlib
-"
-
-BDEPEND="app-arch/unzip"
-
-RESTRICT="bindist mirror"
-
-DOCS=(
-   "bedrock_server_how_to.html"
-   "release-notes.txt"
-)
-
-QA_PREBUILT="opt/bedrock-server/bedrock_server"
-
-src_compile() {
-   :;
-}
-
-src_install() {
-   exeinto /opt/bedrock-server
-   doexe bedrock_server
-
-   insinto /opt/bedrock-server
-   doins {allowlist,permissions}.json server.properties
-   doins -r {behavior,resource}_packs definitions structures

[gentoo-commits] repo/gentoo:master commit in: dev-util/spirv-llvm-translator/

2022-09-25 Thread Conrad Kostecki
commit: c9d315271b67c55dadec695981fc389b1d27ebf1
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:35:48 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9d31527

dev-util/spirv-llvm-translator: add 15.0.0

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-util/spirv-llvm-translator/Manifest|  1 +
 .../spirv-llvm-translator-15.0.0.ebuild| 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-util/spirv-llvm-translator/Manifest 
b/dev-util/spirv-llvm-translator/Manifest
index 79748e43f25a..d315944ddd39 100644
--- a/dev-util/spirv-llvm-translator/Manifest
+++ b/dev-util/spirv-llvm-translator/Manifest
@@ -1,3 +1,4 @@
 DIST spirv-llvm-translator-13.0.0-rename-OpConstFunctionPointerINTEL.patch.bz2 
3632 BLAKE2B 
b2c3ed9ff1040fef12cd5b7962c71f2e52febbf1e1d1d06bee079093940c32e67f7c246c92876207f296677bd655f91447d0ce837f191cd0d4cfb66adfb11a62
 SHA512 
bba6a9b838ebf0bd29f5fa906fefcecdb1b3832b15ac1af8a1ed86da0e988385172b1a51468a4d8d97352c4a57c3e224f12d7e24b7a202a38353e2dbd3a2c27c
 DIST spirv-llvm-translator-13.0.0.tar.gz 1436324 BLAKE2B 
254450f153a0f0d7c0a75005705f4a7d90effa1e6bcde0d6b931195e4a925ddc34896e66b686c55583d50ab99a9e1e45ad1c0600f7fa4eaa2039642460e9b711
 SHA512 
1ce7a38c2c3447249e19d50063a7a2acf32699905572950e4f102d8ce1680785433035154b7b55782d5a56211a50e042aef775836f37c33fe847b347a02b5a04
 DIST spirv-llvm-translator-14.0.0.tar.gz 1482704 BLAKE2B 
f88eb8f4cd652c448e465605ec8c34bb80f87f1269c244b33be542ae98ef97ea04a759b9cd9fed0814f4360733d7560d301d2b8d586706d1ca988b4524526aeb
 SHA512 
5659149a380ceef7acdcb274bcad9b23e4817bf88e795e0a8464dfe14fbd102dbf7199cbe67eb611a16d3a411c7a1b8afc6f0eef61fec5a2b8f9fba06748bcb1
+DIST spirv-llvm-translator-15.0.0.tar.gz 1515145 BLAKE2B 
1f93b55f8934ce7dbc9416b82f7bd544d16e95be795047e914d0c303ec90965eae03ab3522b3c92d6cffb1fe00bed78a4bb74085d3da21c14b68ad3fbe53113c
 SHA512 
8a6f326dad96c1c5749ebf03e63e6be60592dccd307f7a35be668cec2b4f58c2f089854aeefa37398c3a97dad6bf92a6ceb892da27b5cf9d4ae1aa41dd06

diff --git a/dev-util/spirv-llvm-translator/spirv-llvm-translator-15.0.0.ebuild 
b/dev-util/spirv-llvm-translator/spirv-llvm-translator-15.0.0.ebuild
new file mode 100644
index ..d46120e8f99d
--- /dev/null
+++ b/dev-util/spirv-llvm-translator/spirv-llvm-translator-15.0.0.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LLVM_MAX_SLOT="15"
+MY_PN="SPIRV-LLVM-Translator"
+MY_P="${MY_PN}-${PV}"
+
+inherit cmake flag-o-matic llvm
+
+DESCRIPTION="Bi-directional translator between SPIR-V and LLVM IR"
+HOMEPAGE="https://github.com/KhronosGroup/SPIRV-LLVM-Translator;
+SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="UoI-NCSA"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+IUSE="test +tools"
+REQUIRED_USE="test? ( tools )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-util/spirv-headers
+   sys-devel/clang:${SLOT}
+   sys-devel/llvm:${SLOT}
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+   virtual/pkgconfig
+   test? ( dev-python/lit )
+"
+
+src_prepare() {
+   append-flags -fPIC
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCCACHE_ALLOWED="OFF"
+   -DCMAKE_INSTALL_PREFIX="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
+   
-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR="${BROOT}/usr/include/spirv"
+   -DLLVM_BUILD_TOOLS=$(usex tools "ON" "OFF")
+   -DLLVM_SPIRV_INCLUDE_TESTS=$(usex test "ON" "OFF")
+   -Wno-dev
+   )
+
+   cmake_src_configure
+}
+
+src_test() {
+   lit "${BUILD_DIR}/test" || die
+}



[gentoo-commits] repo/gentoo:master commit in: games-server/bedrock-server/

2022-09-25 Thread Conrad Kostecki
commit: fca15222cf63379618157ae9d77a682cacb311b2
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:32:15 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fca15222

games-server/bedrock-server: add 1.19.30.04

Signed-off-by: Conrad Kostecki  gentoo.org>

 games-server/bedrock-server/Manifest   |  1 +
 .../bedrock-server-1.19.30.04.ebuild   | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/games-server/bedrock-server/Manifest 
b/games-server/bedrock-server/Manifest
index ea5614692b9c..cec06d1375b5 100644
--- a/games-server/bedrock-server/Manifest
+++ b/games-server/bedrock-server/Manifest
@@ -1,3 +1,4 @@
 DIST bedrock-server-1.19.20.02.zip 75658923 BLAKE2B 
f137320f5785ddbdd1f4ff550f99448ad70455c0ab70bc8d9ec48c15487503313dd0e887cd8b9a4a1a73b5af82af0b548a6cd13180fdbbd3fb53291f3c5c6ee7
 SHA512 
f82e50e9180dadab76152bc7860c0306d3ee68091f39345749e4c4268b5c6d53692188373bb366a053abc352b50b1508eab8d662b10fe7ce96cf91485596c1d2
 DIST bedrock-server-1.19.21.01.zip 75658119 BLAKE2B 
96aabcc9a7aa1ba815a23b4bdc65e1465afcca5f59ebe24feaa06c88520da3473fffdca707d0af4d4b2467a872fc5e7556e6d90f07f310cd958bdae1b94dde7c
 SHA512 
98b6fbeda45945786a69aa78fa2bec896766abbc8e88aa2b08e039df3b9760a2daeaeeeaa5529f840ba6020f51e8f33511f0c34dba83f63d199387fe3c2a47ca
 DIST bedrock-server-1.19.22.01.zip 75658036 BLAKE2B 
3ace22cd15aad1ad4faf0f95ccc3e325629dd7a4876dff2711ad60b33a3c7f811fc225a59538135948352ccf6a11e97fb039b1eb5d18d29ebb35483859c57fe2
 SHA512 
bb138badcb91fa3eb5511aeadbe05e97e6fee8efa6888fde1c30a304d3549518385a49be2265496e9cfd6d5d305ebff2f515d63dfa2fe004decf70a03a5e66c7
+DIST bedrock-server-1.19.30.04.zip 77883277 BLAKE2B 
e92ecca1b3118e4045c4369b9d468566ed807c989851d30d546629652ffa83f52ebc48f1a4d47061b1073ba0672e4432c7f2ae71b07b27e5bf8260f91cbcaf02
 SHA512 
b1431d52b193c8198aa6d3ff015d4de8df551fc6d96210aa8745fc14021dcf655c7cada0e218a9b803ed1142ec952224751bea3acd9a778f7775992c80f1ddc9

diff --git a/games-server/bedrock-server/bedrock-server-1.19.30.04.ebuild 
b/games-server/bedrock-server/bedrock-server-1.19.30.04.ebuild
new file mode 100644
index ..16dd14a8e660
--- /dev/null
+++ b/games-server/bedrock-server/bedrock-server-1.19.30.04.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="The official bedrock (non-java) based server for the sandbox 
video game"
+HOMEPAGE="https://www.minecraft.net/;
+SRC_URI="https://minecraft.azureedge.net/bin-linux/${P}.zip;
+S="${WORKDIR}"
+
+LICENSE="Mojang"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+   acct-group/bedrock
+   acct-user/bedrock
+   app-misc/dtach
+   dev-libs/openssl:0/1.1
+   sys-libs/zlib
+"
+
+BDEPEND="app-arch/unzip"
+
+RESTRICT="bindist mirror"
+
+DOCS=(
+   "bedrock_server_how_to.html"
+   "release-notes.txt"
+)
+
+QA_PREBUILT="opt/bedrock-server/bedrock_server"
+
+src_compile() {
+   :;
+}
+
+src_install() {
+   exeinto /opt/bedrock-server
+   doexe bedrock_server
+
+   insinto /opt/bedrock-server
+   doins {allowlist,permissions}.json server.properties
+   doins -r {behavior,resource}_packs definitions structures
+
+   dodir /opt/bin
+   dosym ../bedrock-server/bedrock_server /opt/bin/bedrock-server
+
+   newinitd "${FILESDIR}"/bedrock-server.initd-r4 bedrock-server
+   newconfd "${FILESDIR}"/bedrock-server.confd bedrock-server
+
+   einstalldocs
+}



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

2022-09-25 Thread Conrad Kostecki
commit: 31c0d86764879798e3a4c494dd2f9929b8c05e2f
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:30:52 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c0d867

sys-apps/cpuid: x86 stable

Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/sys-apps/cpuid/cpuid-20220812.ebuild 
b/sys-apps/cpuid/cpuid-20220812.ebuild
index 3181719cab64..eddf220e872c 100644
--- a/sys-apps/cpuid/cpuid-20220812.ebuild
+++ b/sys-apps/cpuid/cpuid-20220812.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="-* amd64 ~x86"
+KEYWORDS="-* amd64 x86"
 
 BDEPEND="
app-arch/gzip



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

2022-09-25 Thread Conrad Kostecki
commit: 34a71179054d7a564029ae79463904f4f2359aaa
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:30:20 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34a71179

sys-apps/cpuid: amd64 stable

Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/sys-apps/cpuid/cpuid-20220812.ebuild 
b/sys-apps/cpuid/cpuid-20220812.ebuild
index 0f77190b474c..3181719cab64 100644
--- a/sys-apps/cpuid/cpuid-20220812.ebuild
+++ b/sys-apps/cpuid/cpuid-20220812.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* amd64 ~x86"
 
 BDEPEND="
app-arch/gzip



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

2022-09-25 Thread Conrad Kostecki
commit: faa17100f6a13a8cdbc7953341000e6840b1d7f6
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:31:33 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faa17100

sys-apps/cpuid: drop 20220620

Signed-off-by: Conrad Kostecki  gentoo.org>

 sys-apps/cpuid/Manifest  |  1 -
 sys-apps/cpuid/cpuid-20220620.ebuild | 35 ---
 2 files changed, 36 deletions(-)

diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
index 1a58c8bfcc94..d19ce65d2cab 100644
--- a/sys-apps/cpuid/Manifest
+++ b/sys-apps/cpuid/Manifest
@@ -1,2 +1 @@
-DIST cpuid-20220620.src.tar.gz 134487 BLAKE2B 
37bf5bbeed47d762f093a568e18ac06b32b4c8c4d763656c5310c78b949c60aaf4e874b15485af15be1e31c389692a0ab277a95a0dcb0b66a7dbece50a52
 SHA512 
e06db43fb12efa1d112267993754965b8a2b07c914766a46a0fe6fdcf023606cfb132eac575726ad9ed7d0e6fc53d728a6d3d3d7abf2f484f002825c791da7b9
 DIST cpuid-20220812.src.tar.gz 137109 BLAKE2B 
158f152d55b0d8f8ca2df59fc19b9f91142296ef4657b6b2b39ca401abfb26db822be7eadb3a4010847483e75aa213b64756dec6cc625db8c96c8fe8e2a8c468
 SHA512 
f57c1bb78bad3a9a0d210d5da2a57ea6ffeca83c677f20423dc11af551684ba417b8e5641559cf1d5077567937bd2b2350f232e317ff7be388727983be2c1f6a

diff --git a/sys-apps/cpuid/cpuid-20220620.ebuild 
b/sys-apps/cpuid/cpuid-20220620.ebuild
deleted file mode 100644
index eddf220e872c..
--- a/sys-apps/cpuid/cpuid-20220620.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Linux tool to dump x86 CPUID information about the CPUs"
-HOMEPAGE="http://www.etallen.com/cpuid.html;
-SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-
-BDEPEND="
-   app-arch/gzip
-   dev-lang/perl
-"
-
-DOCS=( "ChangeLog" "FUTURE" )
-
-PATCHES=( "${FILESDIR}/${PN}-20220620-makefile.patch" )
-
-src_prepare() {
-   default
-
-   tc-export CC
-}
-
-src_install() {
-   emake BUILDROOT="${ED}" install
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: dev-util/intel-graphics-compiler/files/, dev-util/intel-graphics-compiler/

2022-09-25 Thread Conrad Kostecki
commit: 94cf195ebe7b78124863237f8452a6cc983a1778
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:29:54 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94cf195e

dev-util/intel-graphics-compiler: drop 1.0.11485-r2

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-util/intel-graphics-compiler/Manifest  |   1 -
 ...aphics-compiler-1.0.11485-fix-BiF-caching.patch |  49 --
 ...mpiler-1.0.11485-update-raytracing-llvm14.patch | 186 -
 ...compiler-1.0.11485-wrap-getNumArgOperands.patch |  24 ---
 .../intel-graphics-compiler-1.0.11485-r2.ebuild|  88 --
 5 files changed, 348 deletions(-)

diff --git a/dev-util/intel-graphics-compiler/Manifest 
b/dev-util/intel-graphics-compiler/Manifest
index e8fdf2d8233b..d191cf9cf1d5 100644
--- a/dev-util/intel-graphics-compiler/Manifest
+++ b/dev-util/intel-graphics-compiler/Manifest
@@ -1,2 +1 @@
-DIST intel-graphics-compiler-1.0.11485.tar.gz 8831925 BLAKE2B 
7e2bcb37b4c34bb01788a8d75fc42498223b6193421cb726c21ce7949181757a10d112ae151736cd9283ba6ed8f0625597fb1f2a61229a7352e7f1f5ec34d1d0
 SHA512 
03fb571fdd61daea3a5c61ff75a146bd98b9b92dfd8bc1957143fe127977f5111df680ac86769d3c1fa1801ba2012b600b1ff844b318ce64460f2d042c4ae65b
 DIST intel-graphics-compiler-1.0.11702.1.tar.gz 8734601 BLAKE2B 
7cc8a4f9fc820d822c3b435d172ca27145d916fd25fedf20d13b2d7041cba36fc4416e17307ab0cbf6b9785f5958a53c58486fb6fb4776025b696f5dfb195161
 SHA512 
cd7d27a3a13462517c3e75c43d7d951afa53ef77875f479304da43b93fd40ae19680c11dc5bcf2ec3fecf6dbe56daa954ccb88b9f99f3af4c53d3141ef0b93f5

diff --git 
a/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.11485-fix-BiF-caching.patch
 
b/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.11485-fix-BiF-caching.patch
deleted file mode 100644
index 7ad261e0aa6c..
--- 
a/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.11485-fix-BiF-caching.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-From 12c99343388eba6e6275856b25e0fa8978585dfb Mon Sep 17 00:00:00 2001
-From: Marcin Naczk 
-Date: Mon, 13 Jun 2022 08:28:24 +
-Subject: [PATCH]  Find OpenCl-c.h when clang is take from system.
-
-Find OpenCl-c.h when clang is take from system.

- IGC/cmake/igc_find_opencl_clang.cmake | 24 +++-
- 1 file changed, 15 insertions(+), 9 deletions(-)
-
-diff --git a/IGC/cmake/igc_find_opencl_clang.cmake 
b/IGC/cmake/igc_find_opencl_clang.cmake
-index dc8924fb7ee..0a54ac68249 100644
 a/IGC/cmake/igc_find_opencl_clang.cmake
-+++ b/IGC/cmake/igc_find_opencl_clang.cmake
-@@ -94,19 +94,25 @@ if(CCLANG_FROM_SYSTEM)
-   else()
- set_property(TARGET opencl-clang-lib PROPERTY "IMPORTED_LOCATION" 
"${SYSTEM_COMMON_CLANG}")
-   endif()
--  find_program(CLANG_GE7 clang-${LLVM_VERSION_MAJOR})
--  if(CLANG_GE7)
--message(STATUS "[IGC] Found clang-${LLVM_VERSION_MAJOR} executable: 
${CLANG_GE7}")
-+  find_program(CLANG_EXE clang-${LLVM_VERSION_MAJOR})
-+  if(CLANG_EXE)
-+message(STATUS "[IGC] Found clang-${LLVM_VERSION_MAJOR} executable: 
${CLANG_EXE}")
- 
- add_executable(clang-tool IMPORTED GLOBAL)
--set_property(TARGET clang-tool PROPERTY "IMPORTED_LOCATION" 
"${CLANG_GE7}")
-+set_property(TARGET clang-tool PROPERTY "IMPORTED_LOCATION" 
"${CLANG_EXE}")
- set(CL_OPTIONS "-finclude-default-header")
--if(LLVM_VERSION_MAJOR VERSION_EQUAL 7)
--  message(WARNING "[IGC] : clang-7 should be patched with VME patch 
(https://reviews.llvm.org/D51484). Assuming that it is. If not, please add 
-DVME_TYPES_DEFINED=FALSE.")
--endif()
--  else(CLANG_GE7)
-+
-+# Get parent dir of the location of CLANG_EXE
-+get_filename_component(CLANG_EXE_PARENT_DIR ${CLANG_EXE} DIRECTORY)
-+file(GLOB_RECURSE opencl-header ${CLANG_EXE_PARENT_DIR}/../*opencl-c.h)
-+if(opencl-header)
-+  message(STATUS "[IGC] Found opencl-c.h: ${opencl-header}")
-+else(opencl-header)
-+  message(FATAL_ERROR "[IGC] : Couldn't find opencl-c.h, please provide 
it.")
-+endif(opencl-header)
-+  else(CLANG_EXE)
- message(FATAL_ERROR "[IGC] : Couldn't find clang-${LLVM_VERSION_MAJOR} 
executable, please install it.")
--  endif(CLANG_GE7)
-+  endif(CLANG_EXE)
- ###
- #2. CCLANG_BUILD_PREBUILDS - use prebuilt opencl-clang toolchain
- elseif(${CCLANG_BUILD_PREBUILDS})

diff --git 
a/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.11485-update-raytracing-llvm14.patch
 
b/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.11485-update-raytracing-llvm14.patch
deleted file mode 100644
index 248f8244e32f..
--- 
a/dev-util/intel-graphics-compiler/files/intel-graphics-compiler-1.0.11485-update-raytracing-llvm14.patch
+++ /dev/null
@@ -1,186 +0,0 @@
-From d9535cc5c3e54b21d56c492d4e21cb13c80b9b7a Mon Sep 17 00:00:00 2001
-From: Artem Gindinson 
-Date: Wed, 22 Jun 2022 11:53:02 +
-Subject: 

[gentoo-commits] repo/gentoo:master commit in: dev-lua/busted/

2022-09-25 Thread Conrad Kostecki
commit: 09ad5482e19b2273eaaa83f23c961a57b0dc69e9
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:26:19 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09ad5482

dev-lua/busted: stable all-arches

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-lua/busted/busted-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/busted/busted-2.1.1.ebuild 
b/dev-lua/busted/busted-2.1.1.ebuild
index fb73e3cc1c03..f2f63b082566 100644
--- a/dev-lua/busted/busted-2.1.1.ebuild
+++ b/dev-lua/busted/busted-2.1.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/lunarmodules/${PN}/archive/refs/tags/v${PV}.tar.gz -
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86"
 IUSE="test"
 REQUIRED_USE="${LUA_REQUIRED_USE}"
 RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: dev-util/intel-graphics-compiler/

2022-09-25 Thread Conrad Kostecki
commit: 3e1052f83398fb83351caec4c0149fa20db7c3e2
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:28:58 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e1052f8

dev-util/intel-graphics-compiler: amd64 stable

Signed-off-by: Conrad Kostecki  gentoo.org>

 .../intel-graphics-compiler/intel-graphics-compiler-1.0.11702.1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.11702.1.ebuild 
b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.11702.1.ebuild
index 40b31434451c..63b90728f8c7 100644
--- 
a/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.11702.1.ebuild
+++ 
b/dev-util/intel-graphics-compiler/intel-graphics-compiler-1.0.11702.1.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${PN}-${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="debug"
 
 DEPEND="



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

2022-09-25 Thread Conrad Kostecki
commit: 675e5e069a8158d9af2c1e42eba66922eadb1c59
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:24:21 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=675e5e06

dev-libs/libmodbus: amd64 stable

Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/dev-libs/libmodbus/libmodbus-3.1.8.ebuild 
b/dev-libs/libmodbus/libmodbus-3.1.8.ebuild
index de8b52473bfe..a4525683b446 100644
--- a/dev-libs/libmodbus/libmodbus-3.1.8.ebuild
+++ b/dev-libs/libmodbus/libmodbus-3.1.8.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/stephane/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Conrad Kostecki
commit: 9e1947d86653d35e8d89cbe0ea042a75c7371354
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:25:08 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1947d8

dev-libs/libmodbus: x86 stable

Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/dev-libs/libmodbus/libmodbus-3.1.8.ebuild 
b/dev-libs/libmodbus/libmodbus-3.1.8.ebuild
index a4525683b446..aea80509522e 100644
--- a/dev-libs/libmodbus/libmodbus-3.1.8.ebuild
+++ b/dev-libs/libmodbus/libmodbus-3.1.8.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/stephane/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="static-libs test"
 RESTRICT="!test? ( test )"
 



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

2022-09-25 Thread Conrad Kostecki
commit: 795209a34e0fd572b64ff3abc42d915b697762fb
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:24:50 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795209a3

dev-libs/libmodbus: drop 3.1.7

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/libmodbus/Manifest   |  1 -
 dev-libs/libmodbus/libmodbus-3.1.7.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-libs/libmodbus/Manifest b/dev-libs/libmodbus/Manifest
index fbf6b94a5550..bd90ff635514 100644
--- a/dev-libs/libmodbus/Manifest
+++ b/dev-libs/libmodbus/Manifest
@@ -1,2 +1 @@
-DIST libmodbus-3.1.7.tar.gz 490162 BLAKE2B 
3ba8353fbf6849597b1affdb8dc318b8dc1e2f66b0c1bc9f5f3c8286d48609be6d85d84269d31510fe292a48010a72e7a678b748f3c03117a6230651fa80fe91
 SHA512 
e2c00bd06d0b4a16c8edbfd25a95695b782cf459cd69a7cefc1cfa5e4025f23b2896487b48876ccf2f8050e8cdef4a76d322c9752a43cd8dd2c634df9406bada
 DIST libmodbus-3.1.8.tar.gz 45 BLAKE2B 
e5cb17dd260f3d0a25aedb2cecaa35f21c116458b0a46c7fe3ecc51d6ceb162fa387bb3ad18ff78c89f39645184ecc5bb164ef7cef2d091d2727750bdb0e429a
 SHA512 
1158ac52cf92d3f8f8afaa23b67e841018f94c09521464a4c28ab724f7f2beb0eb567d574c2d81cfb1e3df9436cd2635b52a886656985b27df3a27693957d2df

diff --git a/dev-libs/libmodbus/libmodbus-3.1.7.ebuild 
b/dev-libs/libmodbus/libmodbus-3.1.7.ebuild
deleted file mode 100644
index 0cc9f045c687..
--- a/dev-libs/libmodbus/libmodbus-3.1.7.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Modbus library which supports RTU communication over a serial 
line or a TCP link"
-HOMEPAGE="https://libmodbus.org/;
-SRC_URI="https://libmodbus.org/releases/${P}.tar.gz;
-
-LICENSE="LGPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="static-libs test doc"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   doc? (
-   app-text/asciidoc
-   app-text/xmlto
-   )
-"
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable test tests)
-   $(use_enable static-libs static)
-   $(use_with doc documentation)
-   )
-
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   if ! use static-libs; then
-   find "${ED}" -name '*.la' -delete || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-compute-runtime/

2022-09-25 Thread Conrad Kostecki
commit: 0bd07279afb0c87e9048341c5e075c23be270e8b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sun Sep 25 22:22:09 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sun Sep 25 23:11:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bd07279

dev-libs/intel-compute-runtime: amd64 stable

Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/intel-compute-runtime/intel-compute-runtime-22.35.24055.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.35.24055.ebuild 
b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.35.24055.ebuild
index af9f16456a1e..6786aa838eae 100644
--- a/dev-libs/intel-compute-runtime/intel-compute-runtime-22.35.24055.ebuild
+++ b/dev-libs/intel-compute-runtime/intel-compute-runtime-22.35.24055.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE="+l0 +vaapi"
 
 RDEPEND=">=media-libs/gmmlib-22.1.7:="



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

2022-09-25 Thread Georgy Yakovlev
commit: af7da943576b946e583cc95c03a63b1e5b705ee3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Sep 25 22:46:16 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Sep 25 22:46:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af7da943

sys-apps/lsd: don't let cargo strip

Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-apps/lsd/lsd-0.23.1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/sys-apps/lsd/lsd-0.23.1.ebuild b/sys-apps/lsd/lsd-0.23.1.ebuild
index ab6398dc6910..46d879e0106d 100644
--- a/sys-apps/lsd/lsd-0.23.1.ebuild
+++ b/sys-apps/lsd/lsd-0.23.1.ebuild
@@ -139,6 +139,11 @@ KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
 
 QA_FLAGS_IGNORED="usr/bin/lsd"
 
+src_prepare() {
+   sed -i 's/strip = true/strip = false/' Cargo.toml || die
+   default
+}
+
 src_compile() {
export SHELL_COMPLETIONS_DIR="${T}/shell_completions"
cargo_src_compile



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

2022-09-25 Thread Georgy Yakovlev
commit: 99da163f1aa32fd2aa41ab6a3d03f1e557a0fe2a
Author: Dylan Wolf  protonmail  com>
AuthorDate: Fri Sep 23 19:45:38 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Sep 25 22:37:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99da163f

sys-apps/lsd: add 0.23.1

Signed-off-by: Dylan Wolf  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/27414
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-apps/lsd/Manifest  |  23 ++
 sys-apps/lsd/lsd-0.23.1.ebuild | 160 +
 2 files changed, 183 insertions(+)

diff --git a/sys-apps/lsd/Manifest b/sys-apps/lsd/Manifest
index 28383b563607..0d9dbd44c0a2 100644
--- a/sys-apps/lsd/Manifest
+++ b/sys-apps/lsd/Manifest
@@ -14,6 +14,7 @@ DIST autocfg-1.0.1.crate 12908 BLAKE2B 
40c53cab298e4f26634c3acff3ece6a3371188d91
 DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 DIST base64-0.12.3.crate 57545 BLAKE2B 
5ff7e888f6b750ddfe302438d52766f5d6281b8c8ce73827a9ad1d64641704414649e6c1e02bce6abbb2858b9f859fce54a0e0e793549a474c4b49a724c8663f
 SHA512 
ec6ad7cbd4980a12189690e9e24ec1db3c3def9e93672a415808904f68db2b5d8c5740e44207b2c629db5dd5d6ba6bd9dd342dd82367da6198e0313d86e54f02
 DIST bitflags-1.2.1.crate 16745 BLAKE2B 
0fa6d3ce44aad7616d5cd02aad8c1d0b0fed4022650eb43067c4a72e6fc88da05442674fa51826e4858a47c9de233e1ba2229820af094197cd11bb416ceffb2b
 SHA512 
ad89b3798845e23737a620bba581c2ff1ff3e15bac12555c765e201d2c0b90ecea0cdbc5b5b1a3fa9858c385e8e041f8226f5acfae5bbbe9925643fff2bf3f0b
+DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
 DIST blake2b_simd-0.5.10.crate 34093 BLAKE2B 
6e725c9399714d1e199277e3f9882d636c1737af5b0b290f853573575005d053d2ab3a34843461747914a0c25d370f0d5a5cbb46765fe99308c1fd7666d471c7
 SHA512 
7471e0347267a4b88e9eea932b3001c420da0a472b2ea0f20dff974789955d6d95e19d51e3a8a312516c7fc4c83b6af17cc59ea2b8fcd4ef879ebac22534307a
 DIST bstr-0.2.13.crate 345445 BLAKE2B 
9a17fa04d55e5d053b115aef2a075b58cab0fb84c574df61eec7c3ab6f06e17d156991b1c070ad357599de5455af78982eecb8632336d53792958800ecafe839
 SHA512 
f1f778262269dfea6ba1cf953a5177107c2e1e838248a67588283ee11efa81adfa30498c7cfb20422e0955544a07d2a8f86c4eefc78e9f407a92be9591e26fe5
 DIST bstr-0.2.16.crate 330346 BLAKE2B 
75a345f3a5d428ec7278cd10fa676f5bb72685c65c4fe68163943cf3142b43ac45d458bce9323447b201ffcc91aa82cd8c762cb1954c055e34b1a5cebc686ee8
 SHA512 
33e82e5637efdc2f404ab9405331ae135df12586785491c3e61e70ea8406c67e2109e550cc70a4ab8e95d054e8519c48257fd3b55ef0b67b2530914a9a0b0fac
@@ -26,12 +27,17 @@ DIST chrono-humanize-0.1.1.crate 11737 BLAKE2B 
7a4ba416febbec63ac4bc17948a6e5937
 DIST chrono-humanize-0.1.2.crate 11705 BLAKE2B 
e5d71ca290d3972e83bde0b635491d6129cac3a1d5eb2e38399ec36fc752f76dfc6327f81724a8e6b514793ee7584199bb8c789cffc35272080572d10463ba8c
 SHA512 
ce0788b08df11275adaf5dd1805a573b0560f0f706da5ab9af81378e93b0b0e442ecd1fb9b052d4a700313e3621e54fd5ef750d8570d0897e7f0122f3aa09a4a
 DIST clap-2.33.3.crate 201925 BLAKE2B 
bec9c866481c5b3fddeb314f68af9bce38fc421e42816182de3209e8ea3447b72cf033e6251eea27fe974eff8085b7d98cdd2911b5cc0ec6b4bf4c750deb8a25
 SHA512 
3eb0fd648e2e3f9e5ff69a5e6cf0d867304fe18523accd036f28a86de368e4774088a6936c108ccc045092c539fe7f7494ea96420ebf6b4bec16880cea84bedf
 DIST clap-2.33.4.crate 202085 BLAKE2B 
3b0a8d96e8e2d2d09a976d9d60ae507b1fff81131f02d6fdff0e6df0cd3560691542fe67881706fce882b0b2475d7471f32fd2af717ab2ef9a08c0bff45452b0
 SHA512 
63872fc740be7a29d87f3c118d8fb1f18d95eb57cc458d82e61f00e3b49e66ce7843583e57f21bc001e782286aa7e068220e12dd3deef7c0d73bd657dfa3fda8
+DIST clap-3.2.17.crate 213699 BLAKE2B 
d18204da5583f67b29646ee40f2784eb51e216eb750e24dbb4cf52421668a42e655443cf3e02cb18030422718aca73c6c0d577ca05a2c8ff1693bf5dfe85affc
 SHA512 
e1b19b1c5f862883e2e1cdab14d7ed74c2d0a6b91aafa5b227426a004ef91a8b6c4749e023554ef64c0636f02cff1530d321f934b708168ecf5e7dbad68d08c5
+DIST clap_complete-3.2.4.crate 31618 BLAKE2B 
f494ee6d1610b7ced42c5d3f5895c17a061522777573f43be525f362bc0398adf95b124130301972b0c4f366f55a9e07c41073405ae654862597a2ec63f07c08
 SHA512 
97382739fbf801193ec80762ed712d4642f2f6484ab3d8c6f773865d0914f9e43da4312693fa269c0fe055c2a4ec6f40ebd91e9f6f899859dfda30a13d02f31a
+DIST clap_lex-0.2.4.crate 9652 BLAKE2B 
5120b508dedf52507068c0c369a45ddfbe0369e5c05b65bc5a78c422b2a4bf488f9ef1e0bed4e335450f2c08b80148eb5f7efed678039b5a94b5bd666385939f
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2022-09-25 Thread Ionen Wolkens
commit: b936a2e117ce7f7be01fefa5cfda2de31bd5789d
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sun Sep 25 22:26:54 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sun Sep 25 22:34:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b936a2e1

x11-drivers/nvidia-drivers: adjust clang, recognize KERNEL_CC/LD

Still feels a bit crude (ideally this should be handled by the
linux-mod eclass), but recognizing some env var will let users
adjust themselves to some extend for now (e.g. to select different
clang version).

Also keep current CC value if it's clang, albeit not checking
tc-ld-is-lld given -fuse-ld=lld means nothing here.

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

 x11-drivers/nvidia-drivers/nvidia-drivers-390.154.ebuild| 8 +---
 x11-drivers/nvidia-drivers/nvidia-drivers-470.141.03.ebuild | 8 +---
 x11-drivers/nvidia-drivers/nvidia-drivers-510.85.02.ebuild  | 8 +---
 x11-drivers/nvidia-drivers/nvidia-drivers-515.49.15.ebuild  | 8 +---
 x11-drivers/nvidia-drivers/nvidia-drivers-515.65.01.ebuild  | 8 +---
 x11-drivers/nvidia-drivers/nvidia-drivers-515.76.ebuild | 8 +---
 6 files changed, 30 insertions(+), 18 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-390.154.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-390.154.ebuild
index 7a9cab0fed5d..2ad4e5070ba9 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-390.154.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-390.154.ebuild
@@ -118,17 +118,19 @@ pkg_setup() {
BUILD_TARGETS="modules"
 
if linux_chkconfig_present CC_IS_CLANG; then
-   ewarn "Warning: building ${PN} with a clang-built kernel is 
experimental"
+   ewarn "Warning: clang-built kernel detected, using clang for 
modules (experimental)"
+   ewarn "Can use KERNEL_CC and KERNEL_LD environment variables to 
override if needed."
 
-   BUILD_PARAMS+=' CC=${CHOST}-clang'
+   tc-is-clang || : "${KERNEL_CC:=${CHOST}-clang}"
if linux_chkconfig_present LD_IS_LLD; then
-   BUILD_PARAMS+=' LD=ld.lld'
+   : "${KERNEL_LD:=ld.lld}"
if linux_chkconfig_present LTO_CLANG_THIN; then
# kernel enables cache by default leading to 
sandbox violations
BUILD_PARAMS+=' ldflags-y=--thinlto-cache-dir= 
LDFLAGS_MODULE=--thinlto-cache-dir='
fi
fi
fi
+   BUILD_PARAMS+=' ${KERNEL_CC:+CC="${KERNEL_CC}"} 
${KERNEL_LD:+LD="${KERNEL_LD}"}'
 
if kernel_is -gt ${NV_KERNEL_MAX/./ }; then
ewarn "Kernel ${KV_MAJOR}.${KV_MINOR} is either known to break 
this version of ${PN}"

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-470.141.03.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-470.141.03.ebuild
index dbd9393ea0bf..1a33c461bb33 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-470.141.03.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-470.141.03.ebuild
@@ -120,17 +120,19 @@ pkg_setup() {
BUILD_TARGETS="modules"
 
if linux_chkconfig_present CC_IS_CLANG; then
-   ewarn "Warning: building ${PN} with a clang-built kernel is 
experimental"
+   ewarn "Warning: clang-built kernel detected, using clang for 
modules (experimental)"
+   ewarn "Can use KERNEL_CC and KERNEL_LD environment variables to 
override if needed."
 
-   BUILD_PARAMS+=' CC=${CHOST}-clang'
+   tc-is-clang || : "${KERNEL_CC:=${CHOST}-clang}"
if linux_chkconfig_present LD_IS_LLD; then
-   BUILD_PARAMS+=' LD=ld.lld'
+   : "${KERNEL_LD:=ld.lld}"
if linux_chkconfig_present LTO_CLANG_THIN; then
# kernel enables cache by default leading to 
sandbox violations
BUILD_PARAMS+=' ldflags-y=--thinlto-cache-dir= 
LDFLAGS_MODULE=--thinlto-cache-dir='
fi
fi
fi
+   BUILD_PARAMS+=' ${KERNEL_CC:+CC="${KERNEL_CC}"} 
${KERNEL_LD:+LD="${KERNEL_LD}"}'
 
if kernel_is -gt ${NV_KERNEL_MAX/./ }; then
ewarn "Kernel ${KV_MAJOR}.${KV_MINOR} is either known to break 
this version of ${PN}"

diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-510.85.02.ebuild 
b/x11-drivers/nvidia-drivers/nvidia-drivers-510.85.02.ebuild
index 50cb0bbc6344..f90467ba3060 100644
--- a/x11-drivers/nvidia-drivers/nvidia-drivers-510.85.02.ebuild
+++ b/x11-drivers/nvidia-drivers/nvidia-drivers-510.85.02.ebuild
@@ -123,17 +123,19 @@ pkg_setup() {
BUILD_TARGETS="modules"
 
if linux_chkconfig_present CC_IS_CLANG; then
-   ewarn "Warning: building ${PN} with a clang-built kernel is 
experimental"
+   ewarn "Warning: clang-built kernel detected, using clang for 

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

2022-09-25 Thread Craig Andrews
commit: 11bd0db57cd436be8a976e75b31a6b3a46343598
Author: Craig Andrews  gentoo  org>
AuthorDate: Sun Sep 25 22:27:59 2022 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sun Sep 25 22:28:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11bd0db5

www-apps/radarr: add 4.2.4.6635

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

 www-apps/radarr/Manifest |  3 ++
 www-apps/radarr/radarr-4.2.4.6635.ebuild | 56 
 2 files changed, 59 insertions(+)

diff --git a/www-apps/radarr/Manifest b/www-apps/radarr/Manifest
index acbef0562466..ecf3a7750301 100644
--- a/www-apps/radarr/Manifest
+++ b/www-apps/radarr/Manifest
@@ -10,3 +10,6 @@ DIST Radarr.develop.4.2.3.6575.linux-core-x64.tar.gz 98713183 
BLAKE2B 6fa50e3617
 DIST Radarr.master.4.1.0.6175.linux-core-arm.tar.gz 92189393 BLAKE2B 
4420ba558e7791b80d667adc08fd7d1cbbc9f2a3caac0e9ed79417a6325129e68f6bce262519ae1eafbb61046fd4aa011f36e9101a9b6d7023bf20469b983892
 SHA512 
13ef8a393c257a0bbd70c7b69ed9a768df69896e4d021af10262faea1508ec9ec9a129c9c9302bf6692ebadcdefb9270f8391668b09fbb16925f2c8ad6c24ab0
 DIST Radarr.master.4.1.0.6175.linux-core-arm64.tar.gz 91841527 BLAKE2B 
864330f1cc8f654bbf0f6cd6db903c2679a4e4d6857f7e844df0624d16790b845759558a6c013faee567aedd932cef27e04eca60c0fc0e6f7b7841970ca0
 SHA512 
02ba1440fe09ef5fc43263cbdbd546218ba4f7167b596a56edd510d05f9db382e8aa5901ad32c851c488492323e1351446e34a01d5b75638015879b5f3a598f9
 DIST Radarr.master.4.1.0.6175.linux-core-x64.tar.gz 97882876 BLAKE2B 
9d14649d5059afe2497be25b5514bffa48e4b762b6f0683b57a250ceb5723f1ffb4041d5510fcc8287e4b56083d34ebed083ec7c6454525773578769def39778
 SHA512 
b3d88b2eb58a4b8125704299ddd9aaec306e9119eaffa142504e96d4d77ccefd77c226e24d6f3811e5a0727194758940eae6890ad0927e2aa553777eaa60
+DIST Radarr.master.4.2.4.6635.linux-core-arm.tar.gz 93062345 BLAKE2B 
e12d1fe2ac5f45ee4f8add6469a3d600bbc601a000919ca3907f5f93271bc7f858cbdbb5b7a3fad1f5aebb936dbe06e0fed7f57db48954e5df4a6b255ffdbfc4
 SHA512 
8610dc86fdfa61a98fcd984dce60226b7747a76179c308d0cf41a614ff1747df3a290f8c69adacf1f1833f9ba42629734b5d2e3add333ac17ad1c254bc59d2f6
+DIST Radarr.master.4.2.4.6635.linux-core-arm64.tar.gz 92672723 BLAKE2B 
50c5b0dd3622805483f0e032a6dc8d6bf14432f4ba7edbb3f7c5559ffe195f608e20995a4589be820014b5e7d3566de81e31f81303feca0cc46bb4629a0610dc
 SHA512 
5ae2c7a7560cd92bb978952394f6fc42795c731ffc61183e02cd0c7bd2135aea046795612a4002031d9e6c2759b5a98abfa6953ea66712a45708dd9507dadd05
+DIST Radarr.master.4.2.4.6635.linux-core-x64.tar.gz 98726653 BLAKE2B 
2cdbb35913a97db51288e1535b4000977a9765dd1c2511b8330c58f8f353571e2bddf6542a68b383c601cec25126f8c4639dd34d21c3d78ea6beb4e373f8dcb7
 SHA512 
3afe6a43c4e41a5aa2b283a7616797023cccfa90d2e0eb3ecdea000c24a49391304b46ae0813c7153ac838e2a665c165412ed0a055a3815f536444a735653f8c

diff --git a/www-apps/radarr/radarr-4.2.4.6635.ebuild 
b/www-apps/radarr/radarr-4.2.4.6635.ebuild
new file mode 100644
index ..dbfdaf894fae
--- /dev/null
+++ b/www-apps/radarr/radarr-4.2.4.6635.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+SRC_URI="
+   amd64? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.master.${PV}.linux-core-x64.tar.gz
 )
+   arm? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.master.${PV}.linux-core-arm.tar.gz
 )
+   arm64? ( 
https://github.com/Radarr/Radarr/releases/download/v${PV}/Radarr.master.${PV}.linux-core-arm64.tar.gz
 )
+"
+
+DESCRIPTION="A fork of Sonarr to work with movies a la Couchpotato"
+HOMEPAGE="https://www.radarr.video;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="bindist strip test"
+
+RDEPEND="
+   acct-group/radarr
+   acct-user/radarr
+   media-video/mediainfo
+   dev-libs/icu
+   dev-util/lttng-ust:0
+   dev-db/sqlite"
+
+QA_PREBUILT="*"
+
+S="${WORKDIR}/Radarr"
+
+src_prepare() {
+   default
+
+   # https://github.com/dotnet/runtime/issues/57784
+   rm libcoreclrtraceptprovider.so 
Radarr.Update/libcoreclrtraceptprovider.so || die
+}
+
+src_install() {
+   newinitd "${FILESDIR}/${PN}.init" ${PN}
+
+   keepdir /var/lib/${PN}
+   fowners -R ${PN}:${PN} /var/lib/${PN}
+
+   insinto /etc/logrotate.d
+   insopts -m0644 -o root -g root
+   newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+   dodir  "/opt/${PN}"
+   cp -R "${S}/." "${D}/opt/radarr" || die "Install failed!"
+
+   systemd_dounit "${FILESDIR}/radarr.service"
+   systemd_newunit "${FILESDIR}/radarr.service" "${PN}@.service"
+}



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

2022-09-25 Thread Mike Pagano
commit: 5d54fa6f369cb8f9cc8cd7bd01dfd7fd504f458d
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Sep 25 22:02:55 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Sep 25 22:02:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d54fa6f

sys-kernel/git-sources: add 6.0_rc7

Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/git-sources/Manifest   |  1 +
 sys-kernel/git-sources/git-sources-6.0_rc7.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index b175d1ec9f69..8d2e445730b1 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -5,3 +5,4 @@ DIST patch-6.0-rc3.patch 107861796 BLAKE2B 
201851c3bb54d6af7a481b0b88067d738e0bb
 DIST patch-6.0-rc4.patch 108161851 BLAKE2B 
095c03da992f3b2ea26aaea3a10fa4efded546bb409e7580f689cd312dce77378397525776b9b138c158dbf59cd3061db99f48919afb003f3766965050b381ce
 SHA512 
1386f9ac2fdfc5fbf07e524ed573be4f0df00fd2c0add97289e3d98ce36441339f81bfd3106dabf79898de50b363eff2f7cc88d03746f578b299fa13a438
 DIST patch-6.0-rc5.patch 108427807 BLAKE2B 
44f625c28f292d3ba2c43ebc6e06059c3874f0a4a1a645bd4ebda483fcc52eb4fc5dc166bd5bfc4dce5cac809901d53c9235bb7fc8003db73bbe2307b41057c0
 SHA512 
f5e8a8c74738b996633748eb8c84eaca3a1635335de4528a6f5c5446107c96b55e3b89867bd05207818e67fa711ed841dbd459b2b76d24f783f4b160404977a4
 DIST patch-6.0-rc6.patch 108533829 BLAKE2B 
279b3deaf52c40c2e0325092fd5a88c7e10fd5a4e61fbaa562ab66f6a906adca45629093fe102ae4edaa4276d2d471c0ea74f80c45f888b91989d3020122a82f
 SHA512 
29f1b5cab76f41336416f462766c39655b1ba262293745273ed65df50848063cbc41386bb355165a84e4ddb1bbeaf559b818b6170521c5d16094deab008c9527
+DIST patch-6.0-rc7.patch 108721301 BLAKE2B 
d0765a518f737212ec29ddb675ed583eedd94677d82a0d53831ae19e060d7aef1e973f975b026bec3de8557f0c6c8a7a5403dbdddafd6103927d51ccba50e8f8
 SHA512 
c62ec2e6e385b62e9667c9c2b947a3090801a2b0bdd8f06374fdafa7e5f47f5c8bae5516abe8cedc9d78ef619033000c0d1c07fe65a533ac19f02dbab9f61511

diff --git a/sys-kernel/git-sources/git-sources-6.0_rc7.ebuild 
b/sys-kernel/git-sources/git-sources-6.0_rc7.ebuild
new file mode 100644
index ..6789923d7615
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-6.0_rc7.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="5.19"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+K_NODRYRUN="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release
+[ "${PV/_pre}" == "${PV}" ] && [ "${PV/_rc}" == "${PV}" ] && OKV="${PV}"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="The very latest -git version of the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE=""
+
+K_EXTRAEINFO="This kernel is not supported by Gentoo due to its unstable and
+experimental nature. If you have any issues, try a matching vanilla-sources
+ebuild -- if the problem is not there, please contact the upstream kernel
+developers at https://bugzilla.kernel.org and on the linux-kernel mailing list 
to
+report the problem so it can be fixed in time for the next kernel release."
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   >=sys-devel/patch-2.7.6-r4"
+
+pkg_postinst() {
+   postinst_sources
+}



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

2022-09-25 Thread Marek Szuba
commit: a4ff97f4f723dd554311a8295b60f38b020b43c8
Author: Marek Szuba  gentoo  org>
AuthorDate: Sun Sep 25 21:01:31 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sun Sep 25 21:03:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ff97f4

dev-python/ansible-compat: disable py3.11 on 2.2.0

Nattka seems to think stabilising this version with py3.11 in
PYTHON_COMPAT requires dev-lang/python:3.11 to be stabilised as well.

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/ansible-compat/ansible-compat-2.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ansible-compat/ansible-compat-2.2.0.ebuild 
b/dev-python/ansible-compat/ansible-compat-2.2.0.ebuild
index 0a8b7add6886..5abc44e6b8de 100644
--- a/dev-python/ansible-compat/ansible-compat-2.2.0.ebuild
+++ b/dev-python/ansible-compat/ansible-compat-2.2.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 



  1   2   3   4   >