[gentoo-commits] repo/gentoo:master commit in: app-containers/earthly/

2024-03-12 Thread Maciej Barć
commit: 7df7313cd3038c9d20bf1af6d1e7ec331452d707
Author: Maciej Barć  gentoo  org>
AuthorDate: Tue Mar 12 16:41:14 2024 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Tue Mar 12 17:03:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7df7313c

app-containers/earthly: bump to 0.8.5

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

 app-containers/earthly/Manifest |  2 +
 app-containers/earthly/earthly-0.8.5.ebuild | 73 +
 2 files changed, 75 insertions(+)

diff --git a/app-containers/earthly/Manifest b/app-containers/earthly/Manifest
index dfde7814bec4..9c5a9aa9798a 100644
--- a/app-containers/earthly/Manifest
+++ b/app-containers/earthly/Manifest
@@ -2,3 +2,5 @@ DIST earthly-0.8.3-deps.tar.xz 158480860 BLAKE2B 
4b875ef1ab7a244e2b92f13bc3dc557
 DIST earthly-0.8.3.tar.gz 8034636 BLAKE2B 
f61133eda18d81588d35a1b4916bdc72e3a037007d4872e093be035dc25f502a8947e2610af49f8339835cc2fd607ee2bc813ad19124625f0fa55aa3e183bed8
 SHA512 
a2880e0b1c8d2646b70ae21557f5e05f00b31667ae10fcd124d9519b1e9a75386b7f7be3867a2ac96b3381cefa6ea1ff560844df0ae098e7ae5acc11eaa93f97
 DIST earthly-0.8.4-deps.tar.xz 158470344 BLAKE2B 
c3ec6369f8b397abd9b76dc77461c628e14ecc5866c8b66d094c3fe3194b18330be78454b57f211a717785210da40dc3c83e7d9769c62d621ca42a9d70f7be7f
 SHA512 
d9b0960e02cf288b933a8da954e597957b2e8dc0920e2dca208a17d41c84bc1bcff789ee1c02fa930d5d0a816cb03437b091375168e0f46f3d3cf330a643b308
 DIST earthly-0.8.4.tar.gz 8041021 BLAKE2B 
66057e29d4b287a220d8799efb4a1c5c43ea7641029e3af59bf8556125df28f9eafddc20d515fd20fab8c09bbb6278af4ea525f4bbe38d0e24ee031fc65c7336
 SHA512 
b663a10feb255329dfca30d5d70cb5c36ad5f96ed2b0cd30c46dd1b4ad087ab15b941fe6d3be3e32b1eee8199b5ee8ae50d61739c290b8967b6fcfd4126327db
+DIST earthly-0.8.5-deps.tar.xz 157843872 BLAKE2B 
aade314abdcd8aaf18737908df1a90d71c907f286df463c9f8ce9654d5e212387b7107070225bf85f54d6e4688a741b7838b5c70d9f1a09ac15e904b83d4d2b8
 SHA512 
557b3477c1773c27934429677a53efbdc104230fcbd536cb73e8cd631ccf2af488731acc484298fc579e08b8e52031191b49ef0610595b2b67cc987232e3
+DIST earthly-0.8.5.tar.gz 8051712 BLAKE2B 
b9310a28d79bec7a59525a541cdd51960762b0695ccf15fd33be8a9917a7e52b2251a4ebf202c4f02036b3c178b8d26fc9bc4802b9d6a73a5bfc39623c5075d7
 SHA512 
206dc95c2ef4b89ea7dd65b2b04f4ac7606d63891cea708f7d7dcdff8f3e9ed113b090b65c0285175412cd76fca18852bf77eeddc2e0f2782f390e5bce1f8b86

diff --git a/app-containers/earthly/earthly-0.8.5.ebuild 
b/app-containers/earthly/earthly-0.8.5.ebuild
new file mode 100644
index ..5b4f4944a279
--- /dev/null
+++ b/app-containers/earthly/earthly-0.8.5.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Git commit SHA is needed at runtime by earthly to pull and bootstrap images.
+if [[ "${PV}" == 0.8.5 ]] ; then
+   COMMIT_SHA=a6b5b8dca64fdae64f089ac48cefa60ab39974c4
+else
+   die 'Could not detect "COMMIT_SHA", please update the ebuild.'
+fi
+
+inherit go-module
+
+DESCRIPTION="Build automation tool that executes in containers"
+HOMEPAGE="https://earthly.dev/
+   https://github.com/earthly/earthly/;
+SRC_URI="
+   https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz
+   https://dev.gentoo.org/~xgqt/distfiles/deps/${P}-deps.tar.xz
+"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   || (
+   app-containers/docker
+   app-containers/podman
+   )
+"
+
+DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
+
+src_compile() {
+   # mkdir -p bin || die
+
+   local 
go_tags="dfrunmount,dfrunsecurity,dfsecrets,dfssh,dfrunnetwork,dfheredoc,forceposix"
+   local go_ldflags="
+   -X main.DefaultBuildkitdImage=docker.io/earthly/buildkitd:v${PV}
+   -X main.GitSha=${COMMIT_SHA}
+   -X main.Version=v${PV}
+   "
+   local -a go_buildargs=(
+   -tags "${go_tags}"
+   -ldflags "${go_ldflags}"
+   -o ./bin/
+   )
+   ego build "${go_buildargs[@]}" ./cmd/...
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe bin/earthly
+   newexe bin/debugger earthly-debugger
+
+   einstalldocs
+}
+
+pkg_postinst() {
+   if has_version "app-containers/podman" ; then
+   ewarn "Podman is supported but not recommended."
+   ewarn "If issues arise, then please try running earthly with 
docker."
+   fi
+
+   if has_version "app-containers/podman[rootless]" ; then
+   ewarn "Running podman in rootless mode is not supported because"
+   ewarn "earthly/dind and earthly/buildkit require privileged 
access."
+   ewarn "For more info see: 
https://docs.earthly.dev/docs/guides/podman/;
+   fi
+}



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

2024-03-12 Thread Michał Górny
commit: 1fa64a0a6cc32874df48de8e15124ef70db6aa7b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:18:11 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fa64a0a

dev-python/dask: Bump to 2024.3.0

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

 dev-python/dask/Manifest |  1 +
 dev-python/dask/dask-2024.3.0.ebuild | 96 
 2 files changed, 97 insertions(+)

diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index 23e0283d0fb7..38033fcec0ee 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,2 +1,3 @@
 DIST dask-2024.2.0.gh.tar.gz 9335533 BLAKE2B 
c23bf3da4624b187f30cf0ca5fe885a705e8e4be9b9d919ff491399d1029d43c4343159acf9bd6a61611af7ecacd8c00bd1cb199176b742ad3c556e2a5da65c9
 SHA512 
8a0b5c17aa34b309aed370852ddfb25cde220de87fe9c1afd8d88f7a4abad9f4523c90424f8a5cc1d7186850f35071ee10e7a33396ca2c4c4be975783cc5fe2e
 DIST dask-2024.2.1.gh.tar.gz 9341330 BLAKE2B 
f5d02fd7389711c5d7b048e541c28af87a8425931277ce035163c16699d7275b802afc90c71256ac268f67390afc9dd4a393df2ddeedac6e378bf787edf43e41
 SHA512 
3863ec9126ba9fa0cf067a62d3d763d7cf52c6e49cdbfc258336b4536922c46f23443ff8aa4eb49176a38d2a70e03e2d5ca8a2c4b96c98d474654eec4e44c9c5
+DIST dask-2024.3.0.gh.tar.gz 9342813 BLAKE2B 
d71d3ed2531517a1d01ab72862484b86a1080ecff056c11041ab723e67369794ca3c1f486cd18019f38e49deda65f25acb566e4431c6a1121ddfb930669b20b1
 SHA512 
be56244c7a96cf43062e7e3658befb73bf318729a2bb906d78ee8ba91a1f4fcfab22e6b01c00cda9bfb8de3f74adf8fc1a5dfb6681e51deb00ba5011dd1dc325

diff --git a/dev-python/dask/dask-2024.3.0.ebuild 
b/dev-python/dask/dask-2024.3.0.ebuild
new file mode 100644
index ..01faac965d1d
--- /dev/null
+++ b/dev-python/dask/dask-2024.3.0.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
+HOMEPAGE="
+   https://www.dask.org/
+   https://github.com/dask/dask/
+   https://pypi.org/project/dask/
+"
+SRC_URI="
+   https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/click-8.1[${PYTHON_USEDEP}]
+   >=dev-python/cloudpickle-1.5.0[${PYTHON_USEDEP}]
+   >=dev-python/fsspec-2021.9.0[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.21[${PYTHON_USEDEP}]
+   >=dev-python/pandas-1.3[${PYTHON_USEDEP}]
+   >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
+   >=dev-python/partd-1.2.0[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
+   >=dev-python/toolz-0.10.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib-metadata-4.13.0[${PYTHON_USEDEP}]
+   ' 3.{10..11})
+"
+BDEPEND="
+   dev-python/toolz[${PYTHON_USEDEP}]
+   >=dev-python/versioneer-0.28[${PYTHON_USEDEP}]
+   test? (
+   dev-python/dask-expr[${PYTHON_USEDEP}]
+   dev-python/moto[${PYTHON_USEDEP}]
+   dev-python/numexpr[${PYTHON_USEDEP}]
+   dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+   # fails with sqlalchemy-2.0, even though we don't use it x_x
+   sed -i -e '/RemovedIn20Warning/d' pyproject.toml || die
+   sed -i -e 's:--cov-config=pyproject.toml::' pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # more tests relying on -Werror
+   
"dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
+   dask/array/tests/test_random.py::test_RandomState_only_funcs
+   dask/dataframe/tests/test_dataframe.py::test_view
+   
dask/dataframe/tests/test_shuffle.py::test_npartitions_auto_raises_deprecation_warning
+   # TODO
+   
dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
+   dask/tests/test_config.py::test__get_paths
+   dask/array/tests/test_linalg.py::test_solve_assume_a
+   
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[0-float-5-1-True]"
+   
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[1-float-5-1-True]"
+   dask/array/tests/test_image.py::test_preprocess
+   dask/tests/test_system.py::test_cpu_count_cgroups_v2
+   # require sqlalchemy<2.0
+   dask/dataframe/io/tests/test_sql.py
+   # crashes
+ 

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

2024-03-12 Thread Michał Górny
commit: 78d0452d48984926f5ebc5102dfc1539a264f3bc
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:54:51 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:46 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78d0452d

sys-libs/libomp: Block calling nvptx-arch

Block calling nvptx-arch as well as amdgpu-arch.  Upstream is using
this executable to determine the GPU architecture and implement
the "native" card selection.  However, it is called even if the option
is not used (we are following upstream in building support for all GPUs)
and it may cause sandbox violations.

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

 sys-libs/libomp/libomp-18.1.0.ebuild | 6 --
 sys-libs/libomp/libomp-19.0.0..ebuild| 6 --
 sys-libs/libomp/libomp-19.0.0_pre20240309.ebuild | 6 --
 3 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/sys-libs/libomp/libomp-18.1.0.ebuild 
b/sys-libs/libomp/libomp-18.1.0.ebuild
index b61e605f2abd..79490dd692cb 100644
--- a/sys-libs/libomp/libomp-18.1.0.ebuild
+++ b/sys-libs/libomp/libomp-18.1.0.ebuild
@@ -114,8 +114,6 @@ multilib_src_configure() {
-DLIBOMP_INSTALL_ALIASES=OFF
# disable unnecessary hack copying stuff back to srcdir
-DLIBOMP_COPY_EXPORTS=OFF
-   # prevent trying to access the GPU
-   -DLIBOMPTARGET_AMDGPU_ARCH=LIBOMPTARGET_AMDGPU_ARCH-NOTFOUND
)
 
if [[ ${build_omptarget} == ON ]]; then
@@ -130,6 +128,10 @@ multilib_src_configure() {
mycmakeargs+=(
-DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=$(usex 
llvm_targets_AMDGPU)
-DLIBOMPTARGET_BUILD_CUDA_PLUGIN=$(usex 
llvm_targets_NVPTX)
+
+   # prevent trying to access the GPU
+   
-DLIBOMPTARGET_AMDGPU_ARCH=LIBOMPTARGET_AMDGPU_ARCH-NOTFOUND
+   
-DLIBOMPTARGET_NVPTX_ARCH=LIBOMPTARGET_NVPTX_ARCH-NOTFOUND
)
else
mycmakeargs+=(

diff --git a/sys-libs/libomp/libomp-19.0.0..ebuild 
b/sys-libs/libomp/libomp-19.0.0..ebuild
index ce432b31535d..a40d0aed1c41 100644
--- a/sys-libs/libomp/libomp-19.0.0..ebuild
+++ b/sys-libs/libomp/libomp-19.0.0..ebuild
@@ -113,8 +113,6 @@ multilib_src_configure() {
-DLIBOMP_INSTALL_ALIASES=OFF
# disable unnecessary hack copying stuff back to srcdir
-DLIBOMP_COPY_EXPORTS=OFF
-   # prevent trying to access the GPU
-   -DLIBOMPTARGET_AMDGPU_ARCH=LIBOMPTARGET_AMDGPU_ARCH-NOTFOUND
)
 
if [[ ${build_omptarget} == ON ]]; then
@@ -129,6 +127,10 @@ multilib_src_configure() {
mycmakeargs+=(
-DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=$(usex 
llvm_targets_AMDGPU)
-DLIBOMPTARGET_BUILD_CUDA_PLUGIN=$(usex 
llvm_targets_NVPTX)
+
+   # prevent trying to access the GPU
+   
-DLIBOMPTARGET_AMDGPU_ARCH=LIBOMPTARGET_AMDGPU_ARCH-NOTFOUND
+   
-DLIBOMPTARGET_NVPTX_ARCH=LIBOMPTARGET_NVPTX_ARCH-NOTFOUND
)
else
mycmakeargs+=(

diff --git a/sys-libs/libomp/libomp-19.0.0_pre20240309.ebuild 
b/sys-libs/libomp/libomp-19.0.0_pre20240309.ebuild
index ce432b31535d..a40d0aed1c41 100644
--- a/sys-libs/libomp/libomp-19.0.0_pre20240309.ebuild
+++ b/sys-libs/libomp/libomp-19.0.0_pre20240309.ebuild
@@ -113,8 +113,6 @@ multilib_src_configure() {
-DLIBOMP_INSTALL_ALIASES=OFF
# disable unnecessary hack copying stuff back to srcdir
-DLIBOMP_COPY_EXPORTS=OFF
-   # prevent trying to access the GPU
-   -DLIBOMPTARGET_AMDGPU_ARCH=LIBOMPTARGET_AMDGPU_ARCH-NOTFOUND
)
 
if [[ ${build_omptarget} == ON ]]; then
@@ -129,6 +127,10 @@ multilib_src_configure() {
mycmakeargs+=(
-DLIBOMPTARGET_BUILD_AMDGPU_PLUGIN=$(usex 
llvm_targets_AMDGPU)
-DLIBOMPTARGET_BUILD_CUDA_PLUGIN=$(usex 
llvm_targets_NVPTX)
+
+   # prevent trying to access the GPU
+   
-DLIBOMPTARGET_AMDGPU_ARCH=LIBOMPTARGET_AMDGPU_ARCH-NOTFOUND
+   
-DLIBOMPTARGET_NVPTX_ARCH=LIBOMPTARGET_NVPTX_ARCH-NOTFOUND
)
else
mycmakeargs+=(



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

2024-03-12 Thread Michał Górny
commit: 9ccef18397b3d8ad402acad9abd35b8f70495844
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:16:52 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ccef183

dev-python/jupyter-client: Bump to 8.6.1

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

 dev-python/jupyter-client/Manifest |  1 +
 .../jupyter-client/jupyter-client-8.6.1.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/jupyter-client/Manifest 
b/dev-python/jupyter-client/Manifest
index 57f31a992f86..2e9ecc2a00d7 100644
--- a/dev-python/jupyter-client/Manifest
+++ b/dev-python/jupyter-client/Manifest
@@ -1 +1,2 @@
 DIST jupyter_client-8.6.0.tar.gz 339721 BLAKE2B 
80786453526899cfff2e5335009d90f0dd636da33a5778868ba8913be488e9c1512beffc1b5e658dee215bdee9e264c9a5c6621490c2efb8f4784557735f736e
 SHA512 
84e913c46f5e0298b699c4d1c6de27fd2b9861bc29f7a5a456c20c7100aaedf399eb6c09ff28bd3bb20945a3bea84bd0bda8688f32815fa7bdd375f091817e4a
+DIST jupyter_client-8.6.1.tar.gz 340957 BLAKE2B 
a9a7e7818a463927ec11a4adc6758addef38fae45e29be59b388951715898e5bc81e02035c33fa6e4a0208db47a87a2b793258f4a85739925827895ea357b8f8
 SHA512 
be70d1f250da6698998a5c523d733da386940952487335e615160e04600e00e7ff170cae7f0c03e3a000ecca2bac26855f100c95f2759983c0b50fde10ed8223

diff --git a/dev-python/jupyter-client/jupyter-client-8.6.1.ebuild 
b/dev-python/jupyter-client/jupyter-client-8.6.1.ebuild
new file mode 100644
index ..2361f98a8227
--- /dev/null
+++ b/dev-python/jupyter-client/jupyter-client-8.6.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Jupyter protocol implementation and client libraries"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter/jupyter_client/
+   https://pypi.org/project/jupyter-client/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+RDEPEND="
+   >=dev-python/jupyter-core-5.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
+   >=dev-python/pyzmq-23.0[${PYTHON_USEDEP}]
+   >=dev-python/tornado-6.0[${PYTHON_USEDEP}]
+   dev-python/traitlets[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib-metadata-4.8.3[${PYTHON_USEDEP}]
+   ' 3.{8,9})
+"
+BDEPEND="
+   test? (
+   >=dev-python/ipykernel-6.14[${PYTHON_USEDEP}]
+   >=dev-python/pytest-asyncio-0.18[${PYTHON_USEDEP}]
+   >=dev-python/pytest-jupyter-0.4.1[${PYTHON_USEDEP}]
+   dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO: times out
+   tests/test_client.py::TestAsyncKernelClient::test_input_request
+   # TODO
+   
tests/test_multikernelmanager.py::TestKernelManager::test_tcp_cinfo
+   )
+
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -o tmp_path_retention_policy=all \
+   -p asyncio -p rerunfailures --reruns=3 -p timeout
+}



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

2024-03-12 Thread Michał Górny
commit: 5dade2e3ef945bb01f41ea359686368cc0455bc9
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:03:45 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dade2e3

dev-python/terminado: Bump to 0.18.1

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

 dev-python/terminado/Manifest|  1 +
 dev-python/terminado/terminado-0.18.1.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/dev-python/terminado/Manifest b/dev-python/terminado/Manifest
index 0a4a312eb749..d8dca0603d8f 100644
--- a/dev-python/terminado/Manifest
+++ b/dev-python/terminado/Manifest
@@ -1 +1,2 @@
 DIST terminado-0.18.0.tar.gz 32250 BLAKE2B 
1993df502e0e54f78160aca91b475f989cd83a3ea6dedef3d70db7a2d2c7b4dd8ccbcb854302e665f079f4b12c91ad434c23407974ad18e8c6e1f47cf54179ec
 SHA512 
4cefaf34e00d4c22b01c2cfbd55e385df1c2ad6e812fb6f9a47d1af2126251028d633a40c20e9babec7de927a44fc580c5972f85d00fbdd32b895a4197346c90
+DIST terminado-0.18.1.tar.gz 32701 BLAKE2B 
136a4b8e9cd60c96d2e67c612bdcaa58c3e740d0782ecd9c15235d9a7b74ccab6e8f86502f6f73af355630446bcc3d4181b46922ae074bbb171be68bc04caaf6
 SHA512 
a7b5a420cef31926756fcfd6b7353868f9a5f169969940695348d7bd04501fc0f5e1e1814f8580f4e47edfc0218d29e145244102d66aaecb48fbe2afb39a7482

diff --git a/dev-python/terminado/terminado-0.18.1.ebuild 
b/dev-python/terminado/terminado-0.18.1.ebuild
new file mode 100644
index ..c4bfb93cd418
--- /dev/null
+++ b/dev-python/terminado/terminado-0.18.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Terminals served to term.js using Tornado websockets"
+HOMEPAGE="
+   https://github.com/jupyter/terminado/
+   https://pypi.org/project/terminado/
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   dev-python/ptyprocess[${PYTHON_USEDEP}]
+   dev-python/tornado[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_test() {
+   # workaround new readline defaults
+   echo "set enable-bracketed-paste off" > "${T}"/inputrc || die
+   local -x INPUTRC="${T}"/inputrc
+   distutils-r1_src_test
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -p timeout -p rerunfailures --reruns=3
+}



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

2024-03-12 Thread Michał Górny
commit: 44c985c21df546d89f4c3679175a3570d1afcc9c
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:10:45 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44c985c2

dev-python/fakeredis: Bump to 2.21.3

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

 dev-python/fakeredis/Manifest|  1 +
 dev-python/fakeredis/fakeredis-2.21.3.ebuild | 84 
 2 files changed, 85 insertions(+)

diff --git a/dev-python/fakeredis/Manifest b/dev-python/fakeredis/Manifest
index 92fd3d40ccae..c1e15263907d 100644
--- a/dev-python/fakeredis/Manifest
+++ b/dev-python/fakeredis/Manifest
@@ -1,2 +1,3 @@
 DIST fakeredis-2.21.1.tar.gz 128540 BLAKE2B 
042c7189f4437149f099eb2bed9dc93cfaea3eb582dd40aaad55bca6c6c4f679a108b3e36006e537be469a3879085f75e0f5c0c7272d2131c431a4483e15cefc
 SHA512 
ba51079896ca345805a0b2474922a41b7c1526123ac3ff0904d3448512b75515b6b11d7e8ec8fe7abdde94a9ac281aaf56d7344809c18c28ad081af4a542a57b
 DIST fakeredis-2.21.2.tar.gz 128965 BLAKE2B 
20891c5a34ac5697435a8b05578fc3ffc1a0b008726ed1836929d6e185aff22073382fd0b80d08f4045d85e3d0da9b682900de79b50864ff7682943a634b2970
 SHA512 
0ba5e31e403670e864a5364498e26e818641d0fbba59554b78bd0d82a2d944a730d519184c132bdb367761b830bb3a55b43a957770f833891cccd11d528ff540
+DIST fakeredis-2.21.3.tar.gz 129013 BLAKE2B 
9c56fadc1090cc886fe08b53404c21b1659f4f9c9f5c3c168f02a7ac71e7e660924aec8ad82dbc18d8c2c11245b4548e71ec68d5e83a0a9fd4e5503b85be0cc0
 SHA512 
aade7596729b7100ef58a2a87cbd011fd4e60970c0c310ca70748e03b787fd3e0ef6d5c54739e91c839f9451a12ec029d441e3cfb4ed3238425b2cce526d8030

diff --git a/dev-python/fakeredis/fakeredis-2.21.3.ebuild 
b/dev-python/fakeredis/fakeredis-2.21.3.ebuild
new file mode 100644
index ..916767f1330c
--- /dev/null
+++ b/dev-python/fakeredis/fakeredis-2.21.3.ebuild
@@ -0,0 +1,84 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=poetry
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Fake implementation of redis API for testing purposes"
+HOMEPAGE="
+   https://github.com/cunla/fakeredis-py/
+   https://pypi.org/project/fakeredis/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   dev-python/packaging[${PYTHON_USEDEP}]
+   >=dev-python/redis-4.2[${PYTHON_USEDEP}]
+   =dev-python/sortedcontainers-2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-db/redis
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # also lupa
+   test/test_aioredis2.py::test_failed_script_error
+   # TODO
+   "test/test_fakeredis.py::test_set_get_nx[StrictRedis]"
+   "test/test_fakeredis.py::test_lpop_count[StrictRedis]"
+   "test/test_fakeredis.py::test_rpop_count[StrictRedis]"
+   "test/test_fakeredis.py::test_zadd_minus_zero[StrictRedis]"
+   
"test/test_mixins/test_pubsub_commands.py::test_pubsub_channels[StrictRedis]"
+   
test/test_mixins/test_set_commands.py::test_smismember_wrong_type
+   # new redis-server?
+   
"test/test_mixins/test_pubsub_commands.py::test_pubsub_shardnumsub[StrictRedis]"
+   # json ext
+   test/test_json/test_json.py
+   test/test_json/test_json_arr_commands.py
+   )
+   local EPYTEST_IGNORE=(
+   # these tests fail a lot...
+   test/test_hypothesis.py
+   )
+   local args=(
+   # tests requiring lupa (lua support)
+   -k 'not test_eval and not test_lua and not test_script'
+   )
+   # Note: this package is not xdist-friendly
+   epytest "${args[@]}"
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<- EOF || die "Unable to start 
redis server"
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



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

2024-03-12 Thread Michał Górny
commit: 9db67264bc3cb49634be10c006fc0287b52e6bc9
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:33:05 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db67264

dev-python/dask-expr: New package, v1.0.1

New dependency of dev-python/dask.

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

 dev-python/dask-expr/Manifest   |  1 +
 dev-python/dask-expr/dask-expr-1.0.1.ebuild | 56 +
 dev-python/dask-expr/metadata.xml   | 12 +++
 3 files changed, 69 insertions(+)

diff --git a/dev-python/dask-expr/Manifest b/dev-python/dask-expr/Manifest
new file mode 100644
index ..271181fac6ae
--- /dev/null
+++ b/dev-python/dask-expr/Manifest
@@ -0,0 +1 @@
+DIST dask-expr-1.0.1.gh.tar.gz 233067 BLAKE2B 
8638c7f457aa7decdad71de95f4a1ebc2af32781a28ef6e76fc4f59cd2c417ce3f005e77b42553625e045c44c9574686a549c48a44acb7939da467bb5ef603d1
 SHA512 
6de85ee49c55f36e20b75c4df48b757e278e6e4dba85ee30ecf33644c5533e0424c55de03b4d37beef33d00bd52000f7d2ddbc3d762d31e8999e2657eea1778d

diff --git a/dev-python/dask-expr/dask-expr-1.0.1.ebuild 
b/dev-python/dask-expr/dask-expr-1.0.1.ebuild
new file mode 100644
index ..1d693e10092e
--- /dev/null
+++ b/dev-python/dask-expr/dask-expr-1.0.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="High Level Expressions for Dask"
+HOMEPAGE="
+   https://github.com/dask/dask-expr/
+   https://pypi.org/project/dask-expr/
+"
+# pypi tarball removes tests, as of 1.0.1
+SRC_URI="
+   https://github.com/dask/dask-expr/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/dask-2024.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pyarrow-7.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pandas-2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/versioneer[${PYTHON_USEDEP}]
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin
+   sed -i -e '/dask/s:==:>=:' pyproject.toml || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # requires distributed
+   
'dask_expr/tests/test_shuffle.py::test_respect_context_shuffle[shuffle]'
+   )
+   local EPYTEST_IGNORE=(
+   # requires distributed
+   dask_expr/io/tests/test_parquet.py
+   )
+
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}

diff --git a/dev-python/dask-expr/metadata.xml 
b/dev-python/dask-expr/metadata.xml
new file mode 100644
index ..b20b7197b52f
--- /dev/null
+++ b/dev-python/dask-expr/metadata.xml
@@ -0,0 +1,12 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   
+   
+   
+   dask/dask-expr
+   dask-expr
+   
+



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

2024-03-12 Thread Michał Górny
commit: 323e1bb09d6aaa6622e56aadfa2192ed4674e90a
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:18:45 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=323e1bb0

dev-python/hypothesis: Bump to 6.99.5

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

 dev-python/hypothesis/Manifest |  1 +
 dev-python/hypothesis/hypothesis-6.99.5.ebuild | 90 ++
 2 files changed, 91 insertions(+)

diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
index b143a4ef09d1..4f32172afbe3 100644
--- a/dev-python/hypothesis/Manifest
+++ b/dev-python/hypothesis/Manifest
@@ -5,3 +5,4 @@ DIST hypothesis-6.98.9.gh.tar.gz 9427046 BLAKE2B 
c3705e4c780b6e7f427943231ac056f
 DIST hypothesis-6.99.0.gh.tar.gz 9439501 BLAKE2B 
9f46cffaede22381a019a4f7c0b158015f245bf25bc3623090c45c177f57c1cb74fd09a0f01e98d06039a641e486e0cf1ccc10da6f79ebff13914c1197f0fbd7
 SHA512 
19500c9e0013d4ef4c6b3991d606860e819eb69e68a6975a0c4d225424fe12f44e05662eac0c94f54c6995b12bb73e48d936fc2342a92f3b26760db8ad279ba3
 DIST hypothesis-6.99.2.gh.tar.gz 9439856 BLAKE2B 
0e7b99ee43ae84b4536f687324c334d7846766ec3422712cc0e215ebed113a3ed270b2fee70322edd5931e6a57c04092566846846e8a2df8587a2d6bd7f33e34
 SHA512 
ad833e8e4e5a228d06723ba76e80b7e88b849b51b298c2c0b58e82e9409961a212f85530a8e3f06e9e09ca2ebcc8ebd2e1e4992e50a37ba9f692a398aef699fa
 DIST hypothesis-6.99.4.gh.tar.gz 9440865 BLAKE2B 
aa7e37077f59e0aa46c83067d9bda8aa72a9d5129c843fe170799c8bf0debee8bb5ff9a757ee67f6b9a858d186a92b3de978c21209a107d3f5ed44905c2cf2db
 SHA512 
bb1ac9d2881a3577a07cd396c01be5e96bfe45e2a0254a8dc2c51a86718fd225e04943a6e451a015378fe2f813621b2a7e9fd4b757d180bdae5cb3a6d7b7133b
+DIST hypothesis-6.99.5.gh.tar.gz 9441876 BLAKE2B 
ab1cce09dda83a89e63aaf6a995816bc82a8d2126d138626159c2f6263536cb477f8c2cb521034f59557b16de2a16e2e0934da34e21246043ad4374882616a5c
 SHA512 
00f72255a0db863c8beb73cbc2298170f600053f94198cd24c3bf276b580971328d9c1ea62b71a70e411005f4b99f5be20a6ef5f0b53f9e7c84042aa05e26fa6

diff --git a/dev-python/hypothesis/hypothesis-6.99.5.ebuild 
b/dev-python/hypothesis/hypothesis-6.99.5.ebuild
new file mode 100644
index ..f7f366381e4f
--- /dev/null
+++ b/dev-python/hypothesis/hypothesis-6.99.5.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+CLI_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( "${CLI_COMPAT[@]}" pypy3 )
+PYTHON_REQ_USE="threads(+),sqlite"
+
+inherit distutils-r1 multiprocessing optfeature
+
+TAG=hypothesis-python-${PV}
+MY_P=hypothesis-${TAG}
+DESCRIPTION="A library for property based testing"
+HOMEPAGE="
+   https://github.com/HypothesisWorks/hypothesis/
+   https://pypi.org/project/hypothesis/
+"
+SRC_URI="
+   https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/${MY_P}/hypothesis-python"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="cli"
+
+RDEPEND="
+   >=dev-python/attrs-22.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
+   ' 3.9 3.10)
+   cli? (
+   $(python_gen_cond_dep '
+   dev-python/black[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   ' "${CLI_COMPAT[@]}")
+   )
+"
+BDEPEND="
+   test? (
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   !!

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

2024-03-12 Thread Michał Górny
commit: 321a7cf03be2c17d8b11f229d7acc806b45db78f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:08:48 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=321a7cf0

dev-python/jupyter-events: Bump to 0.9.1

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

 dev-python/jupyter-events/Manifest |  1 +
 .../jupyter-events/jupyter-events-0.9.1.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/dev-python/jupyter-events/Manifest 
b/dev-python/jupyter-events/Manifest
index b142abbaa9c8..071e218ae4bf 100644
--- a/dev-python/jupyter-events/Manifest
+++ b/dev-python/jupyter-events/Manifest
@@ -1 +1,2 @@
 DIST jupyter_events-0.9.0.tar.gz 60502 BLAKE2B 
faf2c7b1b1403c809e98673dc2600750d5c18ff2578b7f1f6f569fa5ac5e955384eda69f0d281a8aa504a1bbeba639931b0fc01bd117b1621fdeb64d4c6881bb
 SHA512 
7b70edd79b80a3d73f0fedd21f0dba8060cb190b0dc8a6d7d9d11fdfd5b219c7a2f54438f0888c062e00b7def37fa0d7cfb0213bfa8d93737a83802079e4b103
+DIST jupyter_events-0.9.1.tar.gz 61082 BLAKE2B 
7a2b5ddac58a03656ac0dbe451fe6ebe947f63dcad5d652883d67aa9319deadcf6a5e12304d1c9042fb098e848e155ff7e4254d65c5db1113e8311be685e8b83
 SHA512 
2c3984165287391462386583f32f492f037bbcb778025420a5fc0c28699bbf01a2c55100e227b8a14c3a8797220b7a3cf644975ecc7a09ee80102f8ef815c91c

diff --git a/dev-python/jupyter-events/jupyter-events-0.9.1.ebuild 
b/dev-python/jupyter-events/jupyter-events-0.9.1.ebuild
new file mode 100644
index ..01a36fe1d77d
--- /dev/null
+++ b/dev-python/jupyter-events/jupyter-events-0.9.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Jupyter Event System library"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter/jupyter_events/
+   https://pypi.org/project/jupyter-events/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+# jsonschema[format-nongpl] deps are always on in our ebuild
+RDEPEND="
+   >=dev-python/jsonschema-4.18.0[${PYTHON_USEDEP}]
+   >=dev-python/python-json-logger-2.0.4[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.3[${PYTHON_USEDEP}]
+   dev-python/referencing[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-5.3[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   dev-python/pytest-console-scripts[${PYTHON_USEDEP}]
+   dev-python/rich[${PYTHON_USEDEP}]
+   )
+"
+
+# TODO: package jupyterlite-sphinx
+# distutils_enable_sphinx docs
+distutils_enable_tests pytest



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

2024-03-12 Thread Michał Górny
commit: 18762a3188b31612587971bee1ff0fc650ce1d98
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:11:10 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18762a31

dev-python/traitlets: Bump to 5.14.2

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

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

diff --git a/dev-python/traitlets/Manifest b/dev-python/traitlets/Manifest
index 9361d53ad73d..a42acae64479 100644
--- a/dev-python/traitlets/Manifest
+++ b/dev-python/traitlets/Manifest
@@ -1 +1,2 @@
 DIST traitlets-5.14.1.tar.gz 161107 BLAKE2B 
b247ce64383a6d677e426668cab844b8c476bd3bfaa6a1aa4d8325dd53c5c507aaa80b482e172771c491fea44de1568ca8455679a5fc915046d1d2bdba3b44d7
 SHA512 
c71f6a7825650eaf57d832e13c45b2526233082f371ab8ee035181c089558a11dc8ef4923b87a96cfdb80e83ba05d70d997686c031bde94c6bd523e032ba68fb
+DIST traitlets-5.14.2.tar.gz 161435 BLAKE2B 
63ffb85bb857f67bf986051a595294cc3ab541a9e410e4757d3d42c616f8605ca547f37f7e476b855e2060b5c8bef111bd5b0abc5a7e3d30f969802d94480b40
 SHA512 
44300ef05acfb243abd3005ab23699299fbe12a70e1aa88e05ffe3d5ef7e3e35107bf6bf55b652cb011e47e7e24191c1ca7967d9f0288078fda329be7107c771

diff --git a/dev-python/traitlets/traitlets-5.14.2.ebuild 
b/dev-python/traitlets/traitlets-5.14.2.ebuild
new file mode 100644
index ..9247ee0cd585
--- /dev/null
+++ b/dev-python/traitlets/traitlets-5.14.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A configuration system for Python applications"
+HOMEPAGE="
+   https://github.com/ipython/traitlets/
+   https://pypi.org/project/traitlets/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+BDEPEND="
+   test? (
+   >=dev-python/argcomplete-2.0[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   dev-python/myst-parser \
+   dev-python/pydata-sphinx-theme
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_IGNORE=(
+   tests/test_typing.py
+   )
+
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest -p pytest_mock
+}



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

2024-03-12 Thread Michał Górny
commit: 779c9f0b072e30e712e1928587b49f00faa97ee2
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:06:27 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=779c9f0b

dev-python/google-api-python-client: Bump to 2.122.0

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

 dev-python/google-api-python-client/Manifest   |  1 +
 .../google-api-python-client-2.122.0.ebuild| 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/google-api-python-client/Manifest 
b/dev-python/google-api-python-client/Manifest
index 69e4bb3fbb78..a5bbd9bed624 100644
--- a/dev-python/google-api-python-client/Manifest
+++ b/dev-python/google-api-python-client/Manifest
@@ -1,3 +1,4 @@
 DIST google-api-python-client-2.119.0.tar.gz 11704086 BLAKE2B 
ff7d2eb62559a042a272a4493ac9eb4e25f0a91dd085c172a6356e952e346d2d79d1818b57bc258725065bd19e72d9e787b021e17672361e8ff02b08b1be65cb
 SHA512 
2acd84b059f3500e45398d2de4d6cab0941c40d7c501414c358992d6f0b305349213a2f96372a4d8b091202c87692e337036c213425b0813cc9203c5d323d966
 DIST google-api-python-client-2.120.0.tar.gz 11753415 BLAKE2B 
27466bed3bfc473dc1ce8ab6d7e6834b5b5010d39afc20ba8204b379621146e9a1523e18a7d1073cdafd1e7f1840832e371cfedf43689fb825917a73dd64be6c
 SHA512 
303733940a2415e6e18ce4ba2c423ae0e85ce3746f4282698178cf7c2e70244b159fa4a22af6ce39cdeafb8d91db237cc40a1abfef33e1c8aa3add4f031aac23
 DIST google-api-python-client-2.121.0.tar.gz 11796461 BLAKE2B 
178665ad75d5e8fa2437c909b47cf93c566e4f47cfc2e6a0fd74d9f7de29dc4076bf86299c42341e3c32b3ab20723a89fc062629964dfc2cc02a2eeaa0a1fcb0
 SHA512 
2bb2d02b93656d349ed65ccaa85dc435aae0ebb7d45edf2dd9b6aecb56cd8866421f4359612830e5d32d0609df12252e550ed514bf3c6b63920a67ffe74f6299
+DIST google-api-python-client-2.122.0.tar.gz 11884905 BLAKE2B 
e22e9cc1b7e2afebbf0a1793e4d2c96d7e3d4b38e7266213d57b8db2eeedcc6c37a18bd0cc62c50fa84221dfea2bfc1ebd9c0cbe33fe4921662e50dd26ccde5d
 SHA512 
dc17be212b975d700ca8ea333d0b1b7207f48cd870190154e14b94d5ae3f835c8f1fe63ed1ac267b1a1ab8a6916a6d55c479d5728801bbc74f842231eef71049

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

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

2024-03-12 Thread Michał Górny
commit: 770c2a8eb23a7e1ee68502926ea964d82bdfdd97
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:02:52 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=770c2a8e

dev-python/hatch-jupyter-builder: Bump to 0.9.1

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

 dev-python/hatch-jupyter-builder/Manifest  |  1 +
 .../hatch-jupyter-builder-0.9.1.ebuild | 40 ++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/hatch-jupyter-builder/Manifest 
b/dev-python/hatch-jupyter-builder/Manifest
index 7fd144669a59..d354eec2c6e1 100644
--- a/dev-python/hatch-jupyter-builder/Manifest
+++ b/dev-python/hatch-jupyter-builder/Manifest
@@ -1 +1,2 @@
 DIST hatch_jupyter_builder-0.8.3.tar.gz 54754 BLAKE2B 
d64a90ba0e06dbbcfa3f2d27d88185f68bc6cadd885fd3691e01d129cb1d73d62efd2d230fe80dd2d8d1323b5efa4d3208f099663b2ed082a196a1b8fc39412e
 SHA512 
c4dc0605338bafeeba21cc7260005815654d3e4646296d91af6fb3199be8645a06b2226608e6b0558ee01c7eed682162eefcf686a7e20636031b95c3a11ae265
+DIST hatch_jupyter_builder-0.9.1.tar.gz 55953 BLAKE2B 
3239511a86465cb7a199b4e3cd3fa85d9d5501f564f666f296b6358eb766af13635abb47a2354e31788e6c78c5a74174f9844432264da1a9c2f544ac2d7a9ff0
 SHA512 
705b4e9c1d73f81f7a6962070d9893c32ce61ee49d658ac053f508125b21e425a21732cd9ea8d1e9e1f8c62c2a14c0e7507418c8f2a4f77a5951ee03bbed171d

diff --git 
a/dev-python/hatch-jupyter-builder/hatch-jupyter-builder-0.9.1.ebuild 
b/dev-python/hatch-jupyter-builder/hatch-jupyter-builder-0.9.1.ebuild
new file mode 100644
index ..c89b9f076a17
--- /dev/null
+++ b/dev-python/hatch-jupyter-builder/hatch-jupyter-builder-0.9.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A hatch plugin to help build Jupyter packages"
+HOMEPAGE="
+   https://pypi.org/project/hatch-jupyter-builder/
+   https://github.com/jupyterlab/hatch-jupyter-builder
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/hatchling-1.17[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/tomli[${PYTHON_USEDEP}]
+   ' 3.10)
+   dev-python/twine[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_DESELECT=(
+   # Calls pip, requires internet
+   tests/test_plugin.py::test_hatch_build
+)
+
+distutils_enable_tests pytest



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

2024-03-12 Thread Michał Górny
commit: 331dace64644483bb5ce40cf99563e7ac4fbd30f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 17:22:44 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331dace6

dev-python/numpy: Bump to 2.0.0_beta1

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

 dev-python/numpy/Manifest |   1 +
 dev-python/numpy/numpy-2.0.0_beta1.ebuild | 169 ++
 2 files changed, 170 insertions(+)

diff --git a/dev-python/numpy/Manifest b/dev-python/numpy/Manifest
index d3efe8e51057..be6d662e6b99 100644
--- a/dev-python/numpy/Manifest
+++ b/dev-python/numpy/Manifest
@@ -2,3 +2,4 @@ DIST numpy-1.26.1.tar.gz 15651806 BLAKE2B 
2b7fe13675b6f11b8f19c2dc671c84418fa959
 DIST numpy-1.26.2.tar.gz 15664248 BLAKE2B 
006e511e27c009f27bf4bf6c8c30c84a4bf0e8b1ff53f4e031089f28c1cfd168ec0d037952fe8f377f9a1d6e1ab642a84c095edeee5696b18053fd5cb7550586
 SHA512 
9986cd34dda921fbc152c3be0e39f003035787ea1e055452b9259d02c423d413080a0c7e4e19fd38d9e28f66d428719d6ebe784c24ae17249ff56494950daf4b
 DIST numpy-1.26.3.tar.gz 15679696 BLAKE2B 
4c063e1a495b187049b5604686c0411b056fd03a69b5044cff10693694a7f055c87a017334cf8d05aa4a4cb87896fdf9203f51742d3cf83dbaf611b0e6e4091a
 SHA512 
25556b41e2db9cfc52c1dfa61b05e4fc1b7b6df3b169f365375575d1146857fdb5ff91ca1508b968c296b7a06e5c6d95e82c41cdc3561587a46d3aa178f6305d
 DIST numpy-1.26.4.tar.gz 15786129 BLAKE2B 
ee759d3a857111bc494d5e989a7b005375d942b2a89cda69be4a3bd7c6cb195003fd2a8a0535f1858d8977ff688b0ec36360dcba9c3160206eedce5e28f191ef
 SHA512 
f7121ab4099fa0686f9c095d456baa4a5869d651d7b7a06385f885f329cf08f11024b5df5e7b4ee705970062a8102ec4f709512eabbfd5c9fccce4ef83b9c208
+DIST numpy-2.0.0b1.tar.gz 18310319 BLAKE2B 
62e3aee962f744bff4b3faa2427dbaa30d8012e76be383f3df5cd354a7d618cb6753940093413cb12928b971ee69d4f367e18e2c5c17cb41ee159d1f25540a99
 SHA512 
7072e64e954089df83384f45e2e5ac51ca647ab52a9552e7d2279a7d14853b3d17fb00ab33ed7c8c5987b87d33b44effa6e99c3e901209bcd8b16a2db539da45

diff --git a/dev-python/numpy/numpy-2.0.0_beta1.ebuild 
b/dev-python/numpy/numpy-2.0.0_beta1.ebuild
new file mode 100644
index ..ef4c58ca976f
--- /dev/null
+++ b/dev-python/numpy/numpy-2.0.0_beta1.ebuild
@@ -0,0 +1,169 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=meson-python
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+PYTHON_REQ_USE="threads(+)"
+FORTRAN_NEEDED=lapack
+
+inherit distutils-r1 flag-o-matic fortran-2 pypi toolchain-funcs
+
+DESCRIPTION="Fast array and numerical python library"
+HOMEPAGE="
+   https://numpy.org/
+   https://github.com/numpy/numpy/
+   https://pypi.org/project/numpy/
+"
+
+LICENSE="BSD"
+SLOT="0"
+# +lapack because the internal fallbacks are pretty slow. Building without blas
+# is barely supported anyway, see bug #914358.
+IUSE="+lapack"
+if [[ ${PV} != *_[rab]* ]] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+RDEPEND="
+   lapack? (
+   >=virtual/cblas-3.8
+   >=virtual/lapack-3.8
+   )
+"
+BDEPEND="
+   ${RDEPEND}
+   >=dev-build/meson-1.1.0
+   >=dev-python/cython-3.0.6[${PYTHON_USEDEP}]
+   lapack? (
+   virtual/pkgconfig
+   )
+   test? (
+   $(python_gen_cond_dep '
+   >=dev-python/cffi-1.14.0[${PYTHON_USEDEP}]
+   ' 'python*')
+   dev-python/charset-normalizer[${PYTHON_USEDEP}]
+   >=dev-python/hypothesis-5.8.0[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_XDIST=1
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   append-flags -fno-strict-aliasing
+
+   distutils-r1_python_prepare_all
+}
+
+python_configure_all() {
+   DISTUTILS_ARGS=(
+   -Dallow-noblas=$(usex !lapack true false)
+   -Dblas=$(usev lapack cblas)
+   -Dlapack=$(usev lapack lapack)
+   # TODO: cpu-* options
+   )
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # Very disk-and-memory-hungry
+   lib/tests/test_io.py::TestSaveTxt::test_large_zip
+   lib/tests/test_io.py::TestSavezLoad::test_closing_fid
+   
lib/tests/test_io.py::TestSavezLoad::test_closing_zipfile_after_load
+
+   # Precision problems
+   
_core/tests/test_umath_accuracy.py::TestAccuracy::test_validate_transcendentals
+
+   # Runs the whole test suite recursively, that's just crazy
+   core/tests/test_mem_policy.py::test_new_policy
+
+   typing/tests/test_typing.py
+   # Uses huge amount of memory
+   core/tests/test_mem_overlap.py
+   

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

2024-03-12 Thread Michał Górny
commit: 2d3e5f630cd76b25fa597cc7ae0938e6e979245b
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:00:35 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d3e5f63

app-editors/mousepad: Remove old

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

 app-editors/mousepad/Manifest  |  1 -
 app-editors/mousepad/mousepad-0.6.1.ebuild | 63 --
 2 files changed, 64 deletions(-)

diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest
index 9e6f409be290..c1b0861653a8 100644
--- a/app-editors/mousepad/Manifest
+++ b/app-editors/mousepad/Manifest
@@ -1,2 +1 @@
-DIST mousepad-0.6.1.tar.bz2 1405279 BLAKE2B 
db94c433ba6dc697906258942abd0bcaa5a0a244c30c6e344e737944e84688045319551ebd1512aba541d87beafe5a8a26bb1265a06619aad64c7155140f33b3
 SHA512 
cf6ee9e32ecb1be9f1f54c587c4e8f653eb949f1103e378bf27959b88d8d6f268fb796285c8077bcef97926288cf941b9fb9426bfeb680ee728bddefa2d77d23
 DIST mousepad-0.6.2.tar.bz2 1402314 BLAKE2B 
c783ec58317ca3c0eaa0023ade3043f4aa4f020a12c0258fe0cf1e2303aa07dfbc67b9aa0178ca9282da98754103fda6c90ba034fa4057dd855b400c0d371085
 SHA512 
086f60f6f405290ed76366f4c5195e9c8f9c5058d1892200a73e48d6378428efe47f2038e3eddb81186e22dd87d57580559a556b1b22f202b6f056c7f90b64ea

diff --git a/app-editors/mousepad/mousepad-0.6.1.ebuild 
b/app-editors/mousepad/mousepad-0.6.1.ebuild
deleted file mode 100644
index 5f5d41db5276..
--- a/app-editors/mousepad/mousepad-0.6.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome2-utils xdg-utils
-
-DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment"
-HOMEPAGE="
-   https://docs.xfce.org/apps/mousepad/start
-   https://gitlab.xfce.org/apps/mousepad/
-"
-SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv x86"
-IUSE="policykit spell +shortcuts"
-
-DEPEND="
-   >=dev-libs/glib-2.56.2
-   >=x11-libs/gtk+-3.22:3
-   >=x11-libs/gtksourceview-4.0.0:4
-   policykit? ( sys-auth/polkit )
-   spell? ( app-text/gspell )
-   shortcuts? ( >=xfce-base/libxfce4ui-4.17.5:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   dev-lang/perl
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   --enable-gtksourceview4
-   $(use_enable policykit polkit)
-   $(use_enable spell plugin-gspell)
-   $(use_enable shortcuts plugin-shortcuts)
-   )
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-}



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

2024-03-12 Thread Michał Górny
commit: 24e1108450b1b4c2694ecd13aee6d75c5aec839f
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 15:59:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24e11084

dev-python/sphinxcontrib-plantuml: Bump to 0.29

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

 dev-python/sphinxcontrib-plantuml/Manifest |  1 +
 .../sphinxcontrib-plantuml-0.29-pytest-8.patch | 53 ++
 .../sphinxcontrib-plantuml-0.29.ebuild | 50 
 3 files changed, 104 insertions(+)

diff --git a/dev-python/sphinxcontrib-plantuml/Manifest 
b/dev-python/sphinxcontrib-plantuml/Manifest
index cd0a3bae0dfd..fd1c41ea3d14 100644
--- a/dev-python/sphinxcontrib-plantuml/Manifest
+++ b/dev-python/sphinxcontrib-plantuml/Manifest
@@ -1 +1,2 @@
 DIST sphinxcontrib-plantuml-0.28.gh.tar.gz 19322 BLAKE2B 
b76166130ddcebc9312ea40d20dd0710403566a989dfdc40b906a724b32d8e3b53d50a4db1871e771eafb46f9cfea463f58348910c4bdeed0f25996269be8dea
 SHA512 
52553e8ee5a9dbb3644f28a26f6be48a910e2013673169a8a9f0776406f6453b2443967af1837056010b0621d681e7fd00ab590858b07665bb74699c81aa81e2
+DIST sphinxcontrib-plantuml-0.29.gh.tar.gz 19376 BLAKE2B 
c410be6af6364e347dd1b8e782e55d9cea1c799dc3e2d5055c893b37e437c5e300cafc79e70947447979fe4b11d97fab7cddd6e0894654e274cd05cb5d4abba3
 SHA512 
9bcec86db5956dd9cbad097ad52b5dc915598c3324662491229268689c3c57c5ce680b38e38ff3360a109f3fd50753c92252ecaf928b124f9a515f52d1da93b4

diff --git 
a/dev-python/sphinxcontrib-plantuml/files/sphinxcontrib-plantuml-0.29-pytest-8.patch
 
b/dev-python/sphinxcontrib-plantuml/files/sphinxcontrib-plantuml-0.29-pytest-8.patch
new file mode 100644
index ..2f10e1fae51d
--- /dev/null
+++ 
b/dev-python/sphinxcontrib-plantuml/files/sphinxcontrib-plantuml-0.29-pytest-8.patch
@@ -0,0 +1,53 @@
+From 74e31ad4dd8f4fefd5b9e430e4d9caea3002fd97 Mon Sep 17 00:00:00 2001
+From: Yuya Nishihara 
+Date: Sun, 10 Mar 2024 19:30:21 +0900
+Subject: [PATCH] tests: rename setup/teardown functions for pytest 8.1.1
+ compatibility
+
+I don't know if that's intended, but nose-style setup() is no longer called.
+---
+ tests/test_functional.py | 4 ++--
+ tests/test_svgstyle.py   | 4 ++--
+ 2 files changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/tests/test_functional.py b/tests/test_functional.py
+index 697b01d..8ef6a3d 100644
+--- a/tests/test_functional.py
 b/tests/test_functional.py
+@@ -12,7 +12,7 @@
+ _fakecmd = os.path.join(os.path.dirname(__file__), 'fakecmd.py')
+ 
+ 
+-def setup():
++def setup_module():
+ global _tempdir, _srcdir, _outdir
+ _tempdir = tempfile.mkdtemp()
+ _srcdir = os.path.join(_tempdir, 'src')
+@@ -20,7 +20,7 @@ def setup():
+ os.mkdir(_srcdir)
+ 
+ 
+-def teardown():
++def teardown_module():
+ shutil.rmtree(_tempdir)
+ 
+ 
+diff --git a/tests/test_svgstyle.py b/tests/test_svgstyle.py
+index c62e1ed..a25901f 100644
+--- a/tests/test_svgstyle.py
 b/tests/test_svgstyle.py
+@@ -5,12 +5,12 @@
+ from sphinxcontrib import plantuml
+ 
+ 
+-def setup():
++def setup_module():
+ global _tempdir
+ _tempdir = tempfile.mkdtemp()
+ 
+ 
+-def teardown():
++def teardown_module():
+ shutil.rmtree(_tempdir)
+ 
+ 

diff --git 
a/dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.29.ebuild 
b/dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.29.ebuild
new file mode 100644
index ..c3b27de3b09c
--- /dev/null
+++ b/dev-python/sphinxcontrib-plantuml/sphinxcontrib-plantuml-0.29.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Sphinx extensions for PlantUML"
+HOMEPAGE="
+   https://github.com/sphinx-contrib/plantuml/
+   https://pypi.org/project/sphinxcontrib-plantuml/
+"
+SRC_URI="
+   
https://github.com/sphinx-contrib/plantuml/archive/refs/tags/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/${P#sphinxcontrib-}"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+BDEPEND="
+   test? (
+   app-text/texlive
+   dev-python/sphinxcontrib-applehelp[${PYTHON_USEDEP}]
+   dev-tex/latexmk
+   dev-texlive/texlive-fontutils
+   dev-texlive/texlive-latexextra
+   )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   # 
https://github.com/sphinx-contrib/plantuml/commit/74e31ad4dd8f4fefd5b9e430e4d9caea3002fd97
+   "${FILESDIR}/${P}-pytest-8.patch"
+)
+
+python_test() {
+   # Fix for sphinx.errors.ExtensionError: Could not import extension 
sphinxcontrib.applehelp
+   # See 
https://projects.gentoo.org/python/guide/test.html#importerrors-for-c-extensions,
 thanks to mgorny.
+   rm -rf sphinxcontrib || die
+
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-panel/

2024-03-12 Thread Michał Górny
commit: 1a327bf0849acf2acc849a6662886fbf91cf32e1
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 15:54:25 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a327bf0

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 71 -
 2 files changed, 72 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 4173d4cd2097..5cfb926e1b0c 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,3 @@
-DIST xfce4-panel-4.18.5.tar.bz2 1591758 BLAKE2B 
c0ea27d10d66f6a8abd5beef539063036885cfd627f3a2686d4df0d27e9499a0fc814189aa8df1b51d4ea016ceb48f98805e0492ba288653ed1bea12b4154fd7
 SHA512 
6d3fcf7d56cad2d5f6aa083937c912fe131bd5838a074c4fc9477a01d2c2ceab75fe53edf3681c266f659c6dac7466df38ec2ad3554a1e14267cc62e6c02d818
 DIST xfce4-panel-4.18.6.tar.bz2 1595352 BLAKE2B 
e4f4eb2f3838cde69a2614021be184ba7281910e595cc868180eba5ce40898fb538cb82ef5317f8316273b6a926553e051730e4918f3d2d339e03729ac8c2a85
 SHA512 
a1c459772d2f3ef90abe0082abe3404e0ea7fa6027e26ca50e31e03645464ce3e0a72f4d927e84c5775a775e3a70f70e25bd3d2e4358da869f9c474e6174
 DIST xfce4-panel-4.19.2.tar.bz2 2192543 BLAKE2B 
67fb4732f15160df9f54d1ad84a73ebc280b7e57e518b0032b008586fca521fb686b4fdb02f226e4a4c9ee3c0cdbd0b8ebbe88825bd89ac18ccb6f49f8266759
 SHA512 
c5db0cf3565e471c9099c97e913de23e1a3038a37fc960397bab5a8ff2908e88a424fcea5aa86b5fbcf903403f972b16cbf7d26386c30408ba4a7d0fc45895c0
 DIST xfce4-panel-4.19.3.tar.bz2 2187643 BLAKE2B 
d6b597a8abb1d8a079315ccb386797fb98c4bdd332bbafacfcdc5965f528eeb34ff99a08f4c9abaa57be60bc642d164ef11a69b7a847cdeeebfded3ca2ccdedc
 SHA512 
4d7912052bc4dae50fe1d32503987636d8579baa75313f038c647ba3c4662da63c4317ffa9cda3d0188d3e05357df038f739217f2a3f64d7151d8f8c9af261b7

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
deleted file mode 100644
index 6556210ea537..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
-   >=dev-libs/glib-2.66.0
-   >=x11-libs/cairo-1.16.0
-   >=x11-libs/gtk+-3.24.0:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2024-03-12 Thread Michał Górny
commit: 54c6face72fce2ffa2a401cfcd2e869e782ed369
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:01:10 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c6face

xfce-extra/xfce4-notifyd: Remove old

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

 xfce-extra/xfce4-notifyd/Manifest  |  1 -
 .../xfce4-notifyd/xfce4-notifyd-0.9.2.ebuild   | 74 --
 2 files changed, 75 deletions(-)

diff --git a/xfce-extra/xfce4-notifyd/Manifest 
b/xfce-extra/xfce4-notifyd/Manifest
index 70394643d688..ab53fbfd909e 100644
--- a/xfce-extra/xfce4-notifyd/Manifest
+++ b/xfce-extra/xfce4-notifyd/Manifest
@@ -1,2 +1 @@
-DIST xfce4-notifyd-0.9.2.tar.bz2 728345 BLAKE2B 
bcca7ea3afc8bf421fb7e48f4f9c171a7ffd772189a614e9114a5514b1a34f3aee109b40894f75053f36d0d5b6e8bdb43a7bdffb091852cc30ef7bdcb2ed91e9
 SHA512 
7c65111d888f4aeee7d36f3c44ca35fb7c4b0f433dd77cb9c1ae03472fd31a2b36f5bba7f6f6fafb5dbf8c60a14a09b05443f3e8ffa737fced1e8bc67278b30d
 DIST xfce4-notifyd-0.9.4.tar.bz2 732160 BLAKE2B 
d0c47875acf638f44ae8188c7a39f1785a9e3c489f4fad209e9c591780a91b0439037a0c62351619f71d2765dacf11a786d5678c03ec846f4aa0a0bc0b823166
 SHA512 
d3339ec3555f27e624e643b52ce4de2a0834d38f675b286976abcb4e143cbbb32665b1f36fbff23791c152e1f0616b752a7f049045fc32829c27c0a87d82df94

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



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

2024-03-12 Thread Michał Górny
commit: a9089ecf7132e27cf361092b850f80c95953e2d7
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:00:45 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9089ecf

dev-python/sqlglot: Bump to 22.4.0

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

 dev-python/sqlglot/Manifest  |   1 +
 dev-python/sqlglot/sqlglot-22.4.0.ebuild | 121 +++
 2 files changed, 122 insertions(+)

diff --git a/dev-python/sqlglot/Manifest b/dev-python/sqlglot/Manifest
index c20bf2fb3a0f..bcbef08a4f72 100644
--- a/dev-python/sqlglot/Manifest
+++ b/dev-python/sqlglot/Manifest
@@ -22,6 +22,7 @@ DIST smallvec-1.11.2.crate 34801 BLAKE2B 
58645e99db8f02db64d02c75860c7ea41836c42
 DIST sqlglot-22.2.1.tar.gz 17761904 BLAKE2B 
67cfb6333f9f4d00ed7ac4cd1c3eedfd7f374e98b63474464e01937eeae1a978fa9dc1f948cb90e26f39a4e27efc1f5c57c9a82697076f46d8c1c67bcb0d7785
 SHA512 
3894f1c3924c6830822788e22f6b271ac47d555a6a1d264221fba15dcfa67dc27496944568bdb202bdb7a53fc67ee8f9afc25c1ef4cc624cab144e2d49de032a
 DIST sqlglot-22.3.0.tar.gz 12723662 BLAKE2B 
301c2590d91c274e038d0fcce467cc6991af4a36300ae8ec9196f189d275195deb85bee11bc168ef6e979507618f73b96eb07c9f5de9d77ac06e0c291f6f2965
 SHA512 
21c2bb9b63b44fb6813253ac382512d45e5f6a109449b28c4ab468055217b8402fd0a2d9f39cfc09f37f7bcd7ea43828d5138a6012a5230254417d5ad1cbb32f
 DIST sqlglot-22.3.1.tar.gz 12763515 BLAKE2B 
b4f3eba750ed44153d0032fa698b25580625cae4857ffac3fdc675304ae50cb89c576c32233982d80cae0b4cd3ad7b94e1eafd431bbaf3d5f2d1915446c49136
 SHA512 
511868ae992f037a0a844a940f3ccbd8b482fc6aad422bd060ab695d580504626248de8c71413c40745dedcb43020a56098d8fdadd83d649d78c33734a236a2a
+DIST sqlglot-22.4.0.tar.gz 12770391 BLAKE2B 
c9695cd2241b5003ea3b3dee22ea53cc690f8444f168cbca627c9993792d68addccf8e86ad95c97bc553fb886f54b6a9932a890913cf2bb220403509cb243217
 SHA512 
6225722ab46aadbf01f1f24b5bd4fbeedbf97a6db6262365a08ea188d9cff1eecb380c4629a69065a0e2e5a1c397969d855b8bd3553527b6b36653ac60a8c66d
 DIST syn-2.0.41.crate 246016 BLAKE2B 
9d389f2e2a0acb4c84c309456e8ffcc88c5d4d541535ed136832d7a6054dde45a598bb68e8a6f3062ca2a96e1ceae947d54b3aec9bad65b0c51d6733aa6c80db
 SHA512 
6bbaf69ca783025dfb81ac3612ac60bfbed31b2d87792909b35c12892dadebdaff2ddf9463105e536b671dce5870610ab90fe29471284bbd3014dca8d6993f1a
 DIST target-lexicon-0.12.12.crate 25156 BLAKE2B 
f3803596c75f6c89438592a1176c3748fc2c0524d7d50a20056de1cd26d40c572b05bafcdf6dd702752864bea37c8b4f28f96dadc12a5b3bb1d279b25e489f85
 SHA512 
6147295c43ba1b7b087a3c5ab51534b2985e4e77e5e15687978cfb9d07e21c4fd9bc7191576d6cabd268d08a44dc733c4a957e59dba8b948c2055d8bb433aeca
 DIST unicode-ident-1.0.12.crate 42168 BLAKE2B 
4cede03c08758ccd6bf53a0d0057d7542dfdd0c93d342e89f3b90460be85518a9fd24958d8b1da2b5a09b5ddbee8a4263982194158e171c2bba3e394d88d6dac
 SHA512 
bc1824e1e4452a40732fc69874d7e1a66f7803717a314790dcf48867eba34bc9441331ef031e386912e52c385645c25b6ed39d4f149973b5b97371b1b96b1920

diff --git a/dev-python/sqlglot/sqlglot-22.4.0.ebuild 
b/dev-python/sqlglot/sqlglot-22.4.0.ebuild
new file mode 100644
index ..058fa81df816
--- /dev/null
+++ b/dev-python/sqlglot/sqlglot-22.4.0.ebuild
@@ -0,0 +1,121 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+CARGO_OPTIONAL=1
+CRATES="
+   autocfg@1.1.0
+   bitflags@1.3.2
+   cfg-if@1.0.0
+   heck@0.4.1
+   indoc@2.0.4
+   libc@0.2.150
+   lock_api@0.4.11
+   memoffset@0.9.0
+   once_cell@1.19.0
+   parking_lot@0.12.1
+   parking_lot_core@0.9.9
+   proc-macro2@1.0.70
+   pyo3-build-config@0.20.0
+   pyo3-ffi@0.20.0
+   pyo3-macros-backend@0.20.0
+   pyo3-macros@0.20.0
+   pyo3@0.20.0
+   quote@1.0.33
+   redox_syscall@0.4.1
+   scopeguard@1.2.0
+   smallvec@1.11.2
+   syn@2.0.41
+   target-lexicon@0.12.12
+   unicode-ident@1.0.12
+   unindent@0.2.3
+   windows-targets@0.48.5
+   windows_aarch64_gnullvm@0.48.5
+   windows_aarch64_msvc@0.48.5
+   windows_i686_gnu@0.48.5
+   windows_i686_msvc@0.48.5
+   windows_x86_64_gnu@0.48.5
+   windows_x86_64_gnullvm@0.48.5
+   windows_x86_64_msvc@0.48.5
+"
+
+inherit cargo distutils-r1 pypi optfeature
+
+DESCRIPTION="An easily customizable SQL parser and transpiler"
+HOMEPAGE="
+   https://sqlglot.com/
+   https://github.com/tobymao/sqlglot/
+   https://pypi.org/project/sqlglot/
+"
+SRC_URI+="
+   native-extensions? (
+   ${CARGO_CRATE_URIS}
+   )
+"
+
+LICENSE="MIT"
+LICENSE+=" native-extensions? ("
+# Dependent crate licenses
+LICENSE+=" Apache-2.0-with-LLVM-exceptions MIT Unicode-DFS-2016"
+LICENSE+=" )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+   native-extensions? (
+   

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

2024-03-12 Thread Michał Górny
commit: a5759bd5d358886b5e28655367004bd354cfa63d
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:05:46 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5759bd5

dev-python/nbformat: Bump to 5.10.2

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

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

diff --git a/dev-python/nbformat/Manifest b/dev-python/nbformat/Manifest
index 2854d2600c5d..1547499d24aa 100644
--- a/dev-python/nbformat/Manifest
+++ b/dev-python/nbformat/Manifest
@@ -1 +1,2 @@
+DIST nbformat-5.10.2.tar.gz 142443 BLAKE2B 
7089b27f2ed05e2240e12f583ed6d73aeace54939f235cdd41dede0f410a15927dd4223af0f9a8072bdaef15c3c737941c69313ee27abf69784df302677624b1
 SHA512 
a68e3261bd5a3126bb31a99fce3e85daad3651a39844f1fadf499c25af76b3b544188a7ece4d248534c4b3f3d3eca7a1caff17f0beaec9b866e989e76c666316
 DIST nbformat-5.9.2.tar.gz 141264 BLAKE2B 
71f5bb447d675b10276565cb53ac193963e5161fd27e925d639e7aa63f1e69db8903974d2f924ad5456940c4b904aba33d8ab10772fdb70e7e67974a90d1f3d6
 SHA512 
886a03cf95b39cdca48ae46d4946cee0f3dc1f5fa0e9dac7c6184b4c3e326adb739bd9da28032868a973577aa949feb5ae95a84017755948610ef7f208ebc5db

diff --git a/dev-python/nbformat/nbformat-5.10.2.ebuild 
b/dev-python/nbformat/nbformat-5.10.2.ebuild
new file mode 100644
index ..0bf953fb87b2
--- /dev/null
+++ b/dev-python/nbformat/nbformat-5.10.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_REQ_USE='sqlite'
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Reference implementation of the Jupyter Notebook format"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter/nbformat/
+   https://pypi.org/project/nbformat/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/fastjsonschema[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-2.6[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-5.1[${PYTHON_USEDEP}]
+   dev-python/jupyter-core[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/testpath[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs \
+   dev-python/myst-parser \
+   dev-python/pydata-sphinx-theme \
+   dev-python/sphinxcontrib-github-alt \
+   dev-python/sphinxcontrib-spelling
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}/nbformat-5.7.1-no-node.patch"
+)
+
+EPYTEST_IGNORE=(
+   # requires pep440 package, which is not really relevant for us
+   tests/test_api.py
+)



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

2024-03-12 Thread Michał Górny
commit: 276a2d8cad8a2ebb8629f31f29402929340687cf
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:03:12 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=276a2d8c

dev-python/jupyter-server-terminals: Bump to 0.5.3

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

 dev-python/jupyter-server-terminals/Manifest   |  1 +
 .../jupyter-server-terminals-0.5.3.ebuild  | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/jupyter-server-terminals/Manifest 
b/dev-python/jupyter-server-terminals/Manifest
index e7d430d0a2ed..c0e554fca55e 100644
--- a/dev-python/jupyter-server-terminals/Manifest
+++ b/dev-python/jupyter-server-terminals/Manifest
@@ -1 +1,2 @@
 DIST jupyter_server_terminals-0.5.2.tar.gz 31168 BLAKE2B 
9a99f15b801b3a347ed694ee5c2ed91118d95683523645f326a851c65c7cdb389d5343cd992bbcdde49fe495fbcfd88088ebe5a35350a164313adcfe5d7a08e6
 SHA512 
333a19e647767e800d93376b45850263350400eed77036ca42637bef48a753696b3d3d3ad5153da40d858a623bb2ee616e636caa77e484a45da46f5f5eb32df0
+DIST jupyter_server_terminals-0.5.3.tar.gz 31430 BLAKE2B 
1633bd67b775a5d76870530705d13adea49bd5f583cf93a7cf7e713d8fa75e50012ff5c1bdd9b23ad0f3636347618cf01c04e1c546172dbe1031b507b597fb25
 SHA512 
dcb9d460b9f2fde1a2614dd202c25329bea5870846d0431af21659ab4fef2ea1671beea73c8f61bffb224984a39eb0b69bac12244426f940d9bc6a82202393c9

diff --git 
a/dev-python/jupyter-server-terminals/jupyter-server-terminals-0.5.3.ebuild 
b/dev-python/jupyter-server-terminals/jupyter-server-terminals-0.5.3.ebuild
new file mode 100644
index ..ca60468dcee9
--- /dev/null
+++ b/dev-python/jupyter-server-terminals/jupyter-server-terminals-0.5.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A Jupyter Server Extension Providing Terminals"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter-server/jupyter_server_terminals/
+   https://pypi.org/project/jupyter-server-terminals/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/terminado[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/jupyter-server[${PYTHON_USEDEP}]
+   dev-python/pytest-jupyter[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_DESELECT=(
+   # Fails if shell is not bash
+   tests/test_terminal.py::test_terminal_create_with_cwd
+   tests/test_terminal.py::test_terminal_create_with_relative_cwd
+)
+
+distutils_enable_tests pytest
+
+python_install_all() {
+   distutils-r1_python_install_all
+   mv "${ED}/usr/etc" "${ED}/etc" || die
+}



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

2024-03-12 Thread Michał Górny
commit: 82fc8e8644741820f2c8d68d6b6c5c6eb72bd3a4
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:09:37 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:39 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82fc8e86

dev-python/pydantic: Bump to 2.6.4

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

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

diff --git a/dev-python/pydantic/Manifest b/dev-python/pydantic/Manifest
index 04e12b0d04b8..93a7542f48f3 100644
--- a/dev-python/pydantic/Manifest
+++ b/dev-python/pydantic/Manifest
@@ -3,3 +3,4 @@ DIST pydantic-2.5.2.tar.gz 652158 BLAKE2B 
d3a7eeb4e1933d4893df69d2600437a4df1a64
 DIST pydantic-2.5.3.tar.gz 651797 BLAKE2B 
9494bd7a243d5cda762d916b10120861870b5f3112f581aa33b888eab7b605adcd3eb861853467e2d021b88b1c2583bbaf6ace8e96154543c6946e13722ed345
 SHA512 
bfc2f9704688815dbf418e2a7c72e193de80f279ac578fdaefe763f7cd8a9dce6c9152bd950d013f7fa48ea743468ae588adf61e277924536637590b63792779
 DIST pydantic-2.6.1.tar.gz 679826 BLAKE2B 
d1915b20200a9a3a3e1c854ecc2c760eba7b672cb336b07426475072da08090a6adbe6d674019d314b01c92d69aa6caecb52f8f45bdf6d81bde1a1bff6230a3f
 SHA512 
89a202165950ab741eac8441eb6c014dab50474bd4d001f90a32cff55b1b6bf36433d4ae11df8ab5e51bbcf68efb9674cece9a512c1d85f428e13fb59e2ae2c0
 DIST pydantic-2.6.3.tar.gz 680427 BLAKE2B 
28d8d4edcfeeae4f0ba70ed09987e26ba569c38b2c511b6d0b4277b830173302228c964f4c086ac4412a331afa3fba16d9581bd31446fb1dfb43065eb29dfc59
 SHA512 
2eca898328beb1f33e343d3aa7edf8847baae0569d078507a58bbe0fcf355250c72b70a33f6b79cef697f41ced91eaeee1ffc4a7712fd6fd251fd64557e390d0
+DIST pydantic-2.6.4.tar.gz 680828 BLAKE2B 
264698f21e4d57656f5a28651019956349a018f16b11099d4afd796329a8ad12847e45250372e5c7b189493e9c73efa624006cb2e6b5a7d77b2c45973a0d813f
 SHA512 
9386c2e04ff71bc182be4892d1cdb910ca60ee68b7cc5c6e86a58529b51707094532dc5315bf152b147979bace3d2e4f6bb4fed546e16fe27b5ecd35c7d0541a

diff --git a/dev-python/pydantic/pydantic-2.6.4.ebuild 
b/dev-python/pydantic/pydantic-2.6.4.ebuild
new file mode 100644
index ..50a75801255f
--- /dev/null
+++ b/dev-python/pydantic/pydantic-2.6.4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Data parsing and validation using Python type hints"
+HOMEPAGE="
+   https://github.com/pydantic/pydantic/
+   https://pypi.org/project/pydantic/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/annotated-types-0.4.0[${PYTHON_USEDEP}]
+   ~dev-python/pydantic-core-2.16.3[${PYTHON_USEDEP}]
+   >=dev-python/typing-extensions-4.6.1[${PYTHON_USEDEP}]
+"
+# pytest-8: https://github.com/pydantic/pydantic/issues/8674
+BDEPEND="
+   >=dev-python/hatch-fancy-pypi-readme-22.5.0[${PYTHON_USEDEP}]
+   test? (
+   dev-python/cloudpickle[${PYTHON_USEDEP}]
+   dev-python/dirty-equals[${PYTHON_USEDEP}]
+   >=dev-python/email-validator-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/Faker-18.13.0[${PYTHON_USEDEP}]
+   

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

2024-03-12 Thread Michał Górny
commit: a0ae707f3e139a495ead28bd0fcd31cda651ea02
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:16:09 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0ae707f

dev-python/jupyter-core: Bump to 5.7.2

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

 dev-python/jupyter-core/Manifest  |  1 +
 dev-python/jupyter-core/jupyter-core-5.7.2.ebuild | 40 +++
 2 files changed, 41 insertions(+)

diff --git a/dev-python/jupyter-core/Manifest b/dev-python/jupyter-core/Manifest
index ca3b2b86a659..8ddabec39ae5 100644
--- a/dev-python/jupyter-core/Manifest
+++ b/dev-python/jupyter-core/Manifest
@@ -1 +1,2 @@
 DIST jupyter_core-5.7.1.tar.gz 87137 BLAKE2B 
c1ec5a5fd079b50c12559bb1f5dfd54b43e530142d0062b48b3bbbccf8e560907f8c150206ce5f3b510b89d64ae87e4e81b908aaa7a6a17c3a6775b59fef42fd
 SHA512 
e7042eadc2b3b8254a9a728bb3549c744a74c10cbdcc1dda493a6d2c0a2d9c8496edc2c787c78104f93a871879015d411d5260eda470f7a7d087b5cf5dce44cb
+DIST jupyter_core-5.7.2.tar.gz 87629 BLAKE2B 
b8d460f239419c7f648a856e55e1570646b6a6cd38ee900bbeac0aa64965f8868a88be20f6b890f2f424f0752f0da44d79abd0b3d18d275ac3f9c574ad7d18b4
 SHA512 
1eb4766dbc10afdcbc469853b391a88a2551a0ee2b2a3f93a316b407371ca10f546746aa4a327f8c0423cc10e4de022630c04ca7547dcf7ee8d9a911e9a0e572

diff --git a/dev-python/jupyter-core/jupyter-core-5.7.2.ebuild 
b/dev-python/jupyter-core/jupyter-core-5.7.2.ebuild
new file mode 100644
index ..0f5aa60a25ca
--- /dev/null
+++ b/dev-python/jupyter-core/jupyter-core-5.7.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Core common functionality of Jupyter projects"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter/jupyter_core/
+   https://pypi.org/project/jupyter-core/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
+
+RDEPEND="
+   >=dev-python/platformdirs-2.5[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-5.11.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-python/ipython-4.0.1[${PYTHON_USEDEP}]
+   dev-python/pip[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs \
+   dev-python/myst-parser \
+   dev-python/pydata-sphinx-theme \
+   dev-python/sphinx-autodoc-typehints \
+   dev-python/sphinxcontrib-github-alt \
+   dev-python/sphinxcontrib-spelling \
+   dev-python/traitlets
+distutils_enable_tests pytest



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

2024-03-12 Thread Michał Górny
commit: f1bfc3c04af99159c429a8a1ce4847f28c5f0fae
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 16:16:29 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1bfc3c0

dev-python/pytest-jupyter: Bump to 0.9.1

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

 dev-python/pytest-jupyter/Manifest |  1 +
 .../pytest-jupyter/pytest-jupyter-0.9.1.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/pytest-jupyter/Manifest 
b/dev-python/pytest-jupyter/Manifest
index c0de1df2742c..f904705f3ea9 100644
--- a/dev-python/pytest-jupyter/Manifest
+++ b/dev-python/pytest-jupyter/Manifest
@@ -1 +1,2 @@
 DIST pytest_jupyter-0.9.0.tar.gz 15520 BLAKE2B 
59c80b3fc3a6a48c071a3fbf4068b5a3bbef888677f89db5f9e9a573a7de2ad34658a4543978bc747488fdc5f3720104af00fb2878b360bd503d01e851a5b65e
 SHA512 
46e223754f5c36df7783207e8d9589d6c5525adf22b2c476fb7017d5cfac50d9ecdeadf4a7fcfb58e418ba84ee1f966d2655100e5b1c65ed780d34a02580fb7e
+DIST pytest_jupyter-0.9.1.tar.gz 15519 BLAKE2B 
5826fec8c57bb979a66de83429dd9ed261506aa11f4737bb3e1ab2c00a81337b279b6052d4fc6996b02cfb40062d9707ec4ca5472f5a603b83a3602ecd0d
 SHA512 
bb513b4560fb4edcebfe3bef5f62544ec241de235a23cb644a6c9830d8284b7b22ac448e48ad48350dc17fa35a9117bcceabfdbeaa578a97be3db34fa3a5a1f8

diff --git a/dev-python/pytest-jupyter/pytest-jupyter-0.9.1.ebuild 
b/dev-python/pytest-jupyter/pytest-jupyter-0.9.1.ebuild
new file mode 100644
index ..ac7134dabd4e
--- /dev/null
+++ b/dev-python/pytest-jupyter/pytest-jupyter-0.9.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Pytest plugin for testing Jupyter libraries and extensions"
+HOMEPAGE="
+   https://jupyter.org/
+   https://github.com/jupyter-server/pytest-jupyter/
+   https://pypi.org/project/pytest-jupyter/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/ipykernel-6.14[${PYTHON_USEDEP}]
+   >=dev-python/jupyter-client-7.4.0[${PYTHON_USEDEP}]
+   >=dev-python/jupyter-core-5.7[${PYTHON_USEDEP}]
+   >=dev-python/jupyter-server-1.21[${PYTHON_USEDEP}]
+   >=dev-python/nbformat-5.3[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



[gentoo-commits] proj/fifo-cronolog: New tag: v1.2.1

2024-03-12 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Mar 12 18:14:59 2024 +

New tag: v1.2.1




[gentoo-commits] proj/fifo-cronolog:master commit in: /

2024-03-12 Thread Robin H. Johnson
commit: 81713dc3efcbec5ae3006580a97aef519bfc7c2b
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Mar 12 18:06:26 2024 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Mar 12 18:06:26 2024 +
URL:https://gitweb.gentoo.org/proj/fifo-cronolog.git/commit/?id=81713dc3

fix: bump version to ship docs

Signed-off-by: Robin H. Johnson  gentoo.org>

 fifo-cronolog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fifo-cronolog.c b/fifo-cronolog.c
index f7ff19f..c2875d6 100644
--- a/fifo-cronolog.c
+++ b/fifo-cronolog.c
@@ -14,7 +14,7 @@ SPDX-License-Identifier: BSD-2-Clause
 #include 
 #include 
 
-#define VERSION "1.2.0"
+#define VERSION "1.2.1"
 
 char *pidfile;
 



[gentoo-commits] proj/fifo-cronolog:master commit in: /

2024-03-12 Thread Robin H. Johnson
commit: 33db6ad55a866b9944d8038e036c7dce65e26eea
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Mar 12 18:05:47 2024 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Mar 12 18:05:47 2024 +
URL:https://gitweb.gentoo.org/proj/fifo-cronolog.git/commit/?id=33db6ad5

doc: add README & AUTHORS

Signed-off-by: Robin H. Johnson  gentoo.org>

 AUTHORS   |  2 ++
 README.md | 22 ++
 2 files changed, 24 insertions(+)

diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 000..2ca8fed
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+Christian Ruppert 
+Robin H. Johnson 

diff --git a/README.md b/README.md
new file mode 100644
index 000..7ec95e7
--- /dev/null
+++ b/README.md
@@ -0,0 +1,22 @@
+fifo-cronolog
+-
+This is a little tool that connects a named pipe/FIFO into the stdin of 
`cronolog`.
+
+This is useful for cases where the logging destination cannot be specified as a
+program. It was originally written to do logging from Squid, but later re-used
+for Nginx & other tools.
+
+Cronolog's canonical example, in an Apache configuration
+```
+TransferLog "|/www/sbin/cronolog /www/logs/%Y/%m/%d/access.log"
+```
+
+Is converted into:
+1. Fifo-cronolog as (via your init system, so it gets restarted):
+```
+fifo-cronolog /run/apache-access.pid /run/apache-access.fifo 
/www/logs/%Y/%m/%d/access.log
+```
+2. Apache configuration:
+```
+TransferLog "/run/apache-access.fifo"
+```



[gentoo-commits] proj/fifo-cronolog:master commit in: /

2024-03-12 Thread Robin H. Johnson
commit: a88407d7924b0f45947807981cc8d3327d2c56d4
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Mar 12 18:14:15 2024 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Mar 12 18:14:15 2024 +
URL:https://gitweb.gentoo.org/proj/fifo-cronolog.git/commit/?id=a88407d7

build: add simple install target

Signed-off-by: Robin H. Johnson  gentoo.org>

 Makefile | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/Makefile b/Makefile
index 3baecf8..7894e74 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,13 @@
 CFLAGS += -Wall
 BIN = fifo-cronolog
+HELPER = fifo-cronolog-setup
 SRC = $(BIN).c
 OBJ = $(patsubst %.c,%.o,$(SRC))
 
+BINDIR = /usr/sbin/
+SYSTEMD_TARGET = /usr/lib/systemd/system/
+SYSTEMD_UNIT = systemd/fifo-cronolog@.service
+
 all: $(BIN)
 
 $(BIN): $(OBJ)
@@ -14,4 +19,9 @@ $(BIN): $(OBJ)
 clean:
$(RM) $(BIN) $(OBJ)
 
+install:
+   mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(SYSTEMD_TARGET)
+   install -m0755 -D $(BIN) $(HELPER) $(DESTDIR)$(BINDIR)
+   install -m0644 -D $(SYSTEMD_UNIT) $(DESTDIR)$(SYSTEMD_TARGET)
+
 #  vim: set ts=4 sw=4 tw=80:



[gentoo-commits] proj/fifo-cronolog:master commit in: /

2024-03-12 Thread Robin H. Johnson
commit: 09b3b06ecff704b6b001d6398f506dce9456301f
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue Mar 12 18:05:24 2024 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue Mar 12 18:05:24 2024 +
URL:https://gitweb.gentoo.org/proj/fifo-cronolog.git/commit/?id=09b3b06e

build: cleanup Makefile

Signed-off-by: Robin H. Johnson  gentoo.org>

 Makefile | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index cca4e8b..3baecf8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,17 @@
 CFLAGS += -Wall
+BIN = fifo-cronolog
+SRC = $(BIN).c
+OBJ = $(patsubst %.c,%.o,$(SRC))
 
-all: fifo-cronolog
+all: $(BIN)
 
-fifo-cronolog: fifo-cronolog.o
+$(BIN): $(OBJ)
$(CC) $(LDFLAGS) -o $@ $<
 
-fifo-cronolog.o: fifo-cronolog.c
+.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
 
 clean:
-   $(RM) fifo-cronolog{,.o}
+   $(RM) $(BIN) $(OBJ)
 
 #  vim: set ts=4 sw=4 tw=80:



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

2024-03-12 Thread Arthur Zamarin
commit: f050ee9e5fc6547a843e4849550baf0a8e0a124a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 20:04:59 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 20:17:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f050ee9e

dev-util/pkgdev: drop 0.2.8-r1

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

 dev-util/pkgdev/Manifest   |  1 -
 dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild | 75 --
 2 files changed, 76 deletions(-)

diff --git a/dev-util/pkgdev/Manifest b/dev-util/pkgdev/Manifest
index 0491ae7b33a5..53ddebeb335e 100644
--- a/dev-util/pkgdev/Manifest
+++ b/dev-util/pkgdev/Manifest
@@ -1,2 +1 @@
-DIST pkgdev-0.2.8.tar.gz 80084 BLAKE2B 
a0f072d510d2b8c59088be9230f881aef0c1f4a98de42715ffaa4de442263a95f84e997fde84cc5c885b2d15d9d0ca12b8956fd4ba8193662f82a208b525b56a
 SHA512 
61926400ba210282612a695f59606cb0b4035442e79cb48606b2ad8095d7632b26ebc6b3f593d3e7bda52e8da1672d0c98de710a1e231c8b4b37e4bbaa1467b4
 DIST pkgdev-0.2.9.tar.gz 85237 BLAKE2B 
db50d7f29313830986443e8e3b3fe6ae202049b1a25b3537de407d13ef7b547a8bc25afe5b520ac29b616e9dba8029d0a50a917f84728473f53a7621b8b7dcc9
 SHA512 
ff534eaa3ad039998541d7e4bbe39d9bece0a2401652880826c7639829efec3db38bc37352ea1c901121a0092a83518b803e14b484b08ba62462046d51bc81c7

diff --git a/dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild 
b/dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild
deleted file mode 100644
index b4b8d009abf0..
--- a/dev-util/pkgdev/pkgdev-0.2.8-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=standalone
-PYTHON_COMPAT=( python3_{10..12} )
-inherit distutils-r1 optfeature
-
-if [[ ${PV} == * ]] ; then
-   EGIT_BRANCH="main"
-   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgdev.git
-   https://github.com/pkgcore/pkgdev.git;
-   inherit git-r3
-else
-   inherit pypi
-   KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 
~x64-macos"
-fi
-
-DESCRIPTION="Collection of tools for Gentoo development"
-HOMEPAGE="https://github.com/pkgcore/pkgdev;
-
-LICENSE="BSD MIT"
-SLOT="0"
-IUSE="doc"
-
-if [[ ${PV} == * ]] ; then
-   RDEPEND="
-   ~dev-python/snakeoil-[${PYTHON_USEDEP}]
-   ~dev-util/pkgcheck-[${PYTHON_USEDEP}]
-   ~sys-apps/pkgcore-[${PYTHON_USEDEP}]
-   "
-else
-   RDEPEND="
-   >=dev-python/snakeoil-0.10.4[${PYTHON_USEDEP}]
-   >=sys-apps/pkgcore-0.12.23[${PYTHON_USEDEP}]
-   >=dev-util/pkgcheck-0.10.16[${PYTHON_USEDEP}]
-   "
-fi
-
-RDEPEND+="
-   dev-vcs/git
-"
-BDEPEND="
-   >=dev-python/flit-core-3.8[${PYTHON_USEDEP}]
-   >=dev-python/snakeoil-0.10.4[${PYTHON_USEDEP}]
-   test? (
-   x11-misc/xdg-utils
-   )
-"
-
-distutils_enable_sphinx doc \
-   ">=dev-python/snakeoil-0.10.3" \
-   dev-python/tomli
-distutils_enable_tests pytest
-
-python_compile_all() {
-   use doc && emake PYTHON="${EPYTHON}" man
-
-   sphinx_compile_all # HTML pages only
-}
-
-python_install_all() {
-   # If USE=doc, there'll be newly generated docs which we install instead.
-   if use doc || [[ ${PV} != * ]]; then
-   doman build/sphinx/man/*
-   fi
-
-   distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-   optfeature "sending email support" x11-misc/xdg-utils
-   optfeature "tatt subcommand" "app-portage/nattka dev-python/jinja"
-}



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

2024-03-12 Thread Arthur Zamarin
commit: 7154aad5dd4ceb7ac3369a9fed36ab666abe3fc7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 20:15:50 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 20:17:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7154aad5

dev-util/pkgdev: add 0.2.10

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

 dev-util/pkgdev/Manifest |  1 +
 dev-util/pkgdev/pkgdev-0.2.10.ebuild | 75 
 2 files changed, 76 insertions(+)

diff --git a/dev-util/pkgdev/Manifest b/dev-util/pkgdev/Manifest
index 53ddebeb335e..dc366a851505 100644
--- a/dev-util/pkgdev/Manifest
+++ b/dev-util/pkgdev/Manifest
@@ -1 +1,2 @@
+DIST pkgdev-0.2.10.tar.gz 85476 BLAKE2B 
2002daa38d445f90cbc2f17ad0e42045b32b5dcefdd85a3485b6e253d9703ad7e59119873718259874de32e7c50e4f5acbacc6c3b40770d55f4d38dbbd7805c4
 SHA512 
aa9f6465ba44ff67f2b160bc9249583c355e7cc807ce4c797cc8b6d2a4858414a82e702e47ff5b87dc0f6ba70b9c83d515c59a732406437e5325aa3ae7ff95aa
 DIST pkgdev-0.2.9.tar.gz 85237 BLAKE2B 
db50d7f29313830986443e8e3b3fe6ae202049b1a25b3537de407d13ef7b547a8bc25afe5b520ac29b616e9dba8029d0a50a917f84728473f53a7621b8b7dcc9
 SHA512 
ff534eaa3ad039998541d7e4bbe39d9bece0a2401652880826c7639829efec3db38bc37352ea1c901121a0092a83518b803e14b484b08ba62462046d51bc81c7

diff --git a/dev-util/pkgdev/pkgdev-0.2.10.ebuild 
b/dev-util/pkgdev/pkgdev-0.2.10.ebuild
new file mode 100644
index ..95f7e4b830e8
--- /dev/null
+++ b/dev-util/pkgdev/pkgdev-0.2.10.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{10..12} )
+inherit distutils-r1 optfeature
+
+if [[ ${PV} == * ]] ; then
+   EGIT_BRANCH="main"
+   EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/pkgcore/pkgdev.git
+   https://github.com/pkgcore/pkgdev.git;
+   inherit git-r3
+else
+   inherit pypi
+   KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 
~x64-macos"
+fi
+
+DESCRIPTION="Collection of tools for Gentoo development"
+HOMEPAGE="https://github.com/pkgcore/pkgdev;
+
+LICENSE="BSD MIT"
+SLOT="0"
+IUSE="doc"
+
+if [[ ${PV} == * ]] ; then
+   RDEPEND="
+   ~dev-python/snakeoil-[${PYTHON_USEDEP}]
+   ~dev-util/pkgcheck-[${PYTHON_USEDEP}]
+   ~sys-apps/pkgcore-[${PYTHON_USEDEP}]
+   "
+else
+   RDEPEND="
+   >=dev-python/snakeoil-0.10.5[${PYTHON_USEDEP}]
+   >=sys-apps/pkgcore-0.12.23[${PYTHON_USEDEP}]
+   >=dev-util/pkgcheck-0.10.25[${PYTHON_USEDEP}]
+   "
+fi
+
+RDEPEND+="
+   dev-vcs/git
+"
+BDEPEND="
+   >=dev-python/flit-core-3.8[${PYTHON_USEDEP}]
+   >=dev-python/snakeoil-0.10.5[${PYTHON_USEDEP}]
+   test? (
+   x11-misc/xdg-utils
+   )
+"
+
+distutils_enable_sphinx doc \
+   ">=dev-python/snakeoil-0.10.5" \
+   dev-python/tomli
+distutils_enable_tests pytest
+
+python_compile_all() {
+   use doc && emake PYTHON="${EPYTHON}" man
+
+   sphinx_compile_all # HTML pages only
+}
+
+python_install_all() {
+   # If USE=doc, there'll be newly generated docs which we install instead.
+   if use doc || [[ ${PV} != * ]]; then
+   doman build/sphinx/man/*
+   fi
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   optfeature "sending email support" x11-misc/xdg-utils
+   optfeature "tatt subcommand" "app-portage/nattka dev-python/jinja"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-firmware/intel-microcode/

2024-03-12 Thread Mike Pagano
commit: d9b820aa1f77e0c3df7c9883684a0dcb67ee4ad5
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 20:25:17 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 20:25:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b820aa

sys-firmware/intel-microcode: add 20240312_p20240312

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

 sys-firmware/intel-microcode/Manifest  |   2 +
 .../intel-microcode-20240312_p20240312.ebuild  | 287 +
 2 files changed, 289 insertions(+)

diff --git a/sys-firmware/intel-microcode/Manifest 
b/sys-firmware/intel-microcode/Manifest
index bb6d032eb9c8..15207ee0441e 100644
--- a/sys-firmware/intel-microcode/Manifest
+++ b/sys-firmware/intel-microcode/Manifest
@@ -5,6 +5,7 @@ DIST intel-microcode-collection-20230520.tar.xz 12720520 
BLAKE2B 804579eb05c5b88
 DIST intel-microcode-collection-20230804.tar.xz 12972872 BLAKE2B 
b2d04ad679b537fbcff7327e4eb9de5d989a3bc6057f4ef339908921fb71275f8374d1db1234f36dd8b07587133c4d2e59f1910f854038253d4cd36d5e6d2dcf
 SHA512 
9e47ee898b5ea1da3fc115de6e8f9e5e6b2eeb74a178c3226cb2bbdf0b1677ac95c40f5d4d874c7e054bf8293e4c2457e32c953a371ab34dd16c43841412f71e
 DIST intel-microcode-collection-20231007.tar.xz 13997252 BLAKE2B 
fdd9f42c1b8945c4fdc9eed3b07959ac193df365dce7ff0f81c5f10916581914800701a57f9a57822369967a24cb092acb770f79815c5f595633f3e19a3e3fb5
 SHA512 
59fe08497c8c4a137c7212a8cc4bd038a740059059ae938dff7759c6797a29d008df7661c7f0fb20ea673f12df40479866d62278bb58a79e78789704a76cfc88
 DIST intel-microcode-collection-20231114.tar.xz 13782912 BLAKE2B 
65e2e8753e41fb140abdcc821b6fcdf9b930bcfcd24dcf523ab334c7cbfe1ce2f891b8c4385adb2a6ab4896a08215f140698a028265d0bfbc18b6fbd66720b3c
 SHA512 
c9e590053f2fcd8882727476ea08c7ff68d2f65487c87845513c0037f741e4548b56bee69b0c05b864f92f23e1453f638e5547f716319a861c4f0de8f51a39da
+DIST intel-microcode-collection-20240312.tar.xz 13484040 BLAKE2B 
947f78698211b372472629e7fdf076021db97f156d812ec2a84c5ab3d5ee374e04191f7881c956c261c6a6a5935b2c779b837879677ee98d44cf8c753a4393b8
 SHA512 
de577f232035a92ce563475edb4572c6fa40a0a2ee8e76b858de1ca42f905d366d107bf02e4968127ad6fe150baf37e11ed93191e40c1c5913ba34fe77184c00
 DIST intel-ucode-sig_0x406e3-rev_0xd6.bin 101376 BLAKE2B 
66d55867954d69dda1425febd93bb8c89f7aa836d504f8b5fee127f8505bcf2246f4fcc55cc245bc5e532528d60cca2eee278de7ab5174dc2862db7982a2b36f
 SHA512 
248066b521bf512b5d8e4a8c7e921464ce52169c954d6e4ca580d8c172cd789519e22b4cf56c212e452b4191741f0202019f7061d322c9433b5af9ce5413b567
 DIST microcode-20221108.tar.gz 6436305 BLAKE2B 
e149e001656f45e8da9a83817a6f83fc6663edbfc8a98b27ab4f9d326f021aea03f1ea3628d35978ad5534e017f2d394d1d00d0c992aee54a539a582abf2
 SHA512 
d86bee1269d31d3028f0d2b7d4886795b96d8f1f9d5dbd5149c2dd4cec3b0319fd869f8138f283e2135ecb0bb6387cfd3c2ef1f597b4194a250ac4f2df7f15a4
 DIST microcode-20230214.tar.gz 12088391 BLAKE2B 
d98d054a8cfd66e3d0549d1e8f4a4745cad342d45f36a82d2f2f51fedc29635125fdad95ee4970069e134facc1ab3092b97837c6f8744ffedf220a5d3d022dd5
 SHA512 
6456cd6719923eeacb1f9d6d7372efd2bcd0de9e04350c722543ff41e45c7715ba52a2d330ad5818fbf44ea9df6b2ac482d6f8bd420b191427881dcfe3bd81e2
@@ -12,3 +13,4 @@ DIST microcode-20230512.tar.gz 12654272 BLAKE2B 
302aedf0b57719d1009be0dea513da72
 DIST microcode-20230613.tar.gz 12338446 BLAKE2B 
56bffb26687fd3a20b79b4540ae10c98b2875e3edb84583b679ddc75e339193db4bddece25c7e5cb26b79f5e6ce2d10fcc318c55e13c05d8611198e4c571354b
 SHA512 
460e46d20f71df1247affa2ca397b961ce3d77e3456144c6b7358e48c3239e9c077ff4c512b0c4b7d9a86f33fed094db8b3ac65b1a4047bb853212848d929639
 DIST microcode-20230808.tar.gz 13011561 BLAKE2B 
400ba9b91a7048c780377d49ff6cb00458c60a9d53c2e5cef1eb99170ca8f0cad66336841d14869bd42d182f7d8df27a2fa9cb982b0df0c5fc9f62325b6acb69
 SHA512 
8316eb9d35b315e630c6c9fab1ba601b91e72cc42926ef14e7c2b77e7025d276ae06c143060f44cd1a873d3879c067d11ad82e1886c796e6be6bf466243ad85b
 DIST microcode-20231114.tar.gz 12466839 BLAKE2B 
e6084c92e9c3cc627af25a7f2f7fb26230b6ed117ddc197d19991df2816334132af92925f23af829bad005c32d0bd3afc362055ef223a599799d846216cf7612
 SHA512 
a68ef81e81687ff43b8255e95675eed1d728053bb1a483a60e94e2d2d43f10fc12522510b22daf90c4debd8f035e6b9a565813aa799c2e1e3a464124f59b
+DIST microcode-20240312.tar.gz 12825665 BLAKE2B 
43c771becef0f6dbfd41bf78a9a3cc8f6679a43ea48765d0e7f555c138dca6e3db42a4d33f743d8d51f38b0b6aa69322bba0c00ae9f1ff4c533b52166ee54747
 SHA512 
f5f3dfb1706675060b00057b5f017c2cb4ac0df74727139185fd167ca67fc6c611e205b1caeded23b006e4d8d314f87537007e7bafba2c87373f6d960988c911

diff --git 
a/sys-firmware/intel-microcode/intel-microcode-20240312_p20240312.ebuild 
b/sys-firmware/intel-microcode/intel-microcode-20240312_p20240312.ebuild
new file mode 100644
index ..418ab5cc22e2
--- /dev/null
+++ b/sys-firmware/intel-microcode/intel-microcode-20240312_p20240312.ebuild
@@ -0,0 +1,287 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inhe

[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwayland/

2024-03-12 Thread Ionen Wolkens
commit: 9876575e6970983a1830fddff5eae0da6c232d23
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Mar 12 20:25:15 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Mar 12 20:31:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9876575e

dev-qt/qtwayland: match accessibility IUSE with qtbase:6

Makes use of QT_CONFIG(accessibility) which can result in
undefined symbols if was enabled on qtbase then flipped off.

Like opengl/vulkan, this flag is typically enabled either
globally or not at all and should hopefully not cause conflicts
for most users.

Technically needed in non-live but given the low impact will
wait rather than let this trigger rebuilds (esp. given one
of the similarly affected package is qtwebengine).

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

 dev-qt/qtwayland/qtwayland-6.6..ebuild | 4 ++--
 dev-qt/qtwayland/qtwayland-6.7..ebuild | 4 ++--
 dev-qt/qtwayland/qtwayland-6..ebuild   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-qt/qtwayland/qtwayland-6.6..ebuild 
b/dev-qt/qtwayland/qtwayland-6.6..ebuild
index 03045fcde32a..3e85bb4f71bc 100644
--- a/dev-qt/qtwayland/qtwayland-6.6..ebuild
+++ b/dev-qt/qtwayland/qtwayland-6.6..ebuild
@@ -11,11 +11,11 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
-IUSE="compositor qml vulkan"
+IUSE="accessibility compositor qml vulkan"
 
 RDEPEND="
dev-libs/wayland
-   ~dev-qt/qtbase-${PV}:6[gui,opengl,vulkan=]
+   ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl,vulkan=]
media-libs/libglvnd
x11-libs/libxkbcommon
compositor? (

diff --git a/dev-qt/qtwayland/qtwayland-6.7..ebuild 
b/dev-qt/qtwayland/qtwayland-6.7..ebuild
index 005196d57b76..90842e7be4d0 100644
--- a/dev-qt/qtwayland/qtwayland-6.7..ebuild
+++ b/dev-qt/qtwayland/qtwayland-6.7..ebuild
@@ -11,11 +11,11 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
-IUSE="compositor qml vulkan"
+IUSE="accessibility compositor qml vulkan"
 
 RDEPEND="
dev-libs/wayland
-   ~dev-qt/qtbase-${PV}:6[gui,opengl,vulkan=,wayland]
+   ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl,vulkan=,wayland]
media-libs/libglvnd
x11-libs/libxkbcommon
compositor? (

diff --git a/dev-qt/qtwayland/qtwayland-6..ebuild 
b/dev-qt/qtwayland/qtwayland-6..ebuild
index 005196d57b76..90842e7be4d0 100644
--- a/dev-qt/qtwayland/qtwayland-6..ebuild
+++ b/dev-qt/qtwayland/qtwayland-6..ebuild
@@ -11,11 +11,11 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
-IUSE="compositor qml vulkan"
+IUSE="accessibility compositor qml vulkan"
 
 RDEPEND="
dev-libs/wayland
-   ~dev-qt/qtbase-${PV}:6[gui,opengl,vulkan=,wayland]
+   ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl,vulkan=,wayland]
media-libs/libglvnd
x11-libs/libxkbcommon
compositor? (



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtdeclarative/

2024-03-12 Thread Ionen Wolkens
commit: f9317406851545c19a05d65e6d5879c7a883f3c7
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Mar 12 20:28:32 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Mar 12 20:31:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9317406

dev-qt/qtdeclarative: match accessibility IUSE with qtbase:6

Makes use of QT_CONFIG(accessibility) which can result in
undefined symbols if was enabled on qtbase then flipped off.

Like opengl/vulkan, this flag is typically enabled either
globally or not at all and should hopefully not cause conflicts
for most users.

Technically needed in non-live but given the low impact will
wait rather than let this trigger rebuilds (esp. given one
of the similarly affected package is qtwebengine).

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

 dev-qt/qtdeclarative/qtdeclarative-6.6..ebuild | 4 ++--
 dev-qt/qtdeclarative/qtdeclarative-6.7..ebuild | 4 ++--
 dev-qt/qtdeclarative/qtdeclarative-6..ebuild   | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-qt/qtdeclarative/qtdeclarative-6.6..ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-6.6..ebuild
index 1eadca9fb01c..7c725f7cc737 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-6.6..ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-6.6..ebuild
@@ -11,13 +11,13 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
-IUSE="opengl +sql vulkan +widgets"
+IUSE="accessibility opengl +sql vulkan +widgets"
 
 # behaves very badly when qtdeclarative is not already installed, also
 # other more minor issues (installs junk, sandbox/offscreen issues)
 RESTRICT="test"
 
-RDEPEND="~dev-qt/qtbase-${PV}:6[gui,network,opengl=,sql?,vulkan=,widgets=]"
+RDEPEND="~dev-qt/qtbase-${PV}:6[accessibility=,gui,network,opengl=,sql?,vulkan=,widgets=]"
 DEPEND="
${RDEPEND}
vulkan? ( dev-util/vulkan-headers )

diff --git a/dev-qt/qtdeclarative/qtdeclarative-6.7..ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-6.7..ebuild
index a4e5c61fd98d..235c4f16520f 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-6.7..ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-6.7..ebuild
@@ -12,13 +12,13 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
-IUSE="+network opengl +sql +ssl vulkan +widgets"
+IUSE="accessibility +network opengl +sql +ssl vulkan +widgets"
 
 # behaves very badly when qtdeclarative is not already installed, also
 # other more minor issues (installs junk, sandbox/offscreen issues)
 RESTRICT="test"
 
-RDEPEND="~dev-qt/qtbase-${PV}:6[gui,network=,opengl=,sql?,ssl?,vulkan=,widgets=]"
+RDEPEND="~dev-qt/qtbase-${PV}:6[accessibility=,gui,network=,opengl=,sql?,ssl?,vulkan=,widgets=]"
 DEPEND="
${RDEPEND}
vulkan? ( dev-util/vulkan-headers )

diff --git a/dev-qt/qtdeclarative/qtdeclarative-6..ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-6..ebuild
index a4e5c61fd98d..235c4f16520f 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-6..ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-6..ebuild
@@ -12,13 +12,13 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
 fi
 
-IUSE="+network opengl +sql +ssl vulkan +widgets"
+IUSE="accessibility +network opengl +sql +ssl vulkan +widgets"
 
 # behaves very badly when qtdeclarative is not already installed, also
 # other more minor issues (installs junk, sandbox/offscreen issues)
 RESTRICT="test"
 
-RDEPEND="~dev-qt/qtbase-${PV}:6[gui,network=,opengl=,sql?,ssl?,vulkan=,widgets=]"
+RDEPEND="~dev-qt/qtbase-${PV}:6[accessibility=,gui,network=,opengl=,sql?,ssl?,vulkan=,widgets=]"
 DEPEND="
${RDEPEND}
vulkan? ( dev-util/vulkan-headers )



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/

2024-03-12 Thread Ionen Wolkens
commit: 5cb09adf7780486bbd2934d86b296e3ea8be4cfd
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Mar 12 16:30:03 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Mar 12 20:31:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cb09adf

dev-qt/qtwebengine: depend on gcc for libatomic in 6.7+

My llvm-musl test chroot did not keep gcc notably for finding
problems like this, and when I tried 6.7:

ld.lld: error: unable to find library -latomic

Have not dug further whether it's possible to be optional.
Thought it'd be with USE=-vulkan at first but no.

Not worth a revbump for 6.7.0_rc.

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

 dev-qt/qtwebengine/qtwebengine-6.7.0_rc.ebuild | 2 ++
 dev-qt/qtwebengine/qtwebengine-6.7..ebuild | 2 ++
 dev-qt/qtwebengine/qtwebengine-6..ebuild   | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/dev-qt/qtwebengine/qtwebengine-6.7.0_rc.ebuild 
b/dev-qt/qtwebengine/qtwebengine-6.7.0_rc.ebuild
index 225c6192d1bb..b9e05d3a0b1a 100644
--- a/dev-qt/qtwebengine/qtwebengine-6.7.0_rc.ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-6.7.0_rc.ebuild
@@ -27,6 +27,7 @@ REQUIRED_USE="
 "
 
 # dlopen: krb5, libva, pciutils, udev
+# gcc: for -latomic
 RDEPEND="
app-arch/snappy:=
dev-libs/expat
@@ -49,6 +50,7 @@ RDEPEND="
media-libs/tiff:=
sys-apps/dbus
sys-apps/pciutils
+   sys-devel/gcc:*
sys-libs/zlib:=[minizip]
virtual/libudev
x11-libs/libX11

diff --git a/dev-qt/qtwebengine/qtwebengine-6.7..ebuild 
b/dev-qt/qtwebengine/qtwebengine-6.7..ebuild
index 225c6192d1bb..b9e05d3a0b1a 100644
--- a/dev-qt/qtwebengine/qtwebengine-6.7..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-6.7..ebuild
@@ -27,6 +27,7 @@ REQUIRED_USE="
 "
 
 # dlopen: krb5, libva, pciutils, udev
+# gcc: for -latomic
 RDEPEND="
app-arch/snappy:=
dev-libs/expat
@@ -49,6 +50,7 @@ RDEPEND="
media-libs/tiff:=
sys-apps/dbus
sys-apps/pciutils
+   sys-devel/gcc:*
sys-libs/zlib:=[minizip]
virtual/libudev
x11-libs/libX11

diff --git a/dev-qt/qtwebengine/qtwebengine-6..ebuild 
b/dev-qt/qtwebengine/qtwebengine-6..ebuild
index 0bbfc95e92ec..0e04faa237c4 100644
--- a/dev-qt/qtwebengine/qtwebengine-6..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-6..ebuild
@@ -27,6 +27,7 @@ REQUIRED_USE="
 "
 
 # dlopen: krb5, libva, pciutils, udev
+# gcc: for -latomic
 RDEPEND="
app-arch/snappy:=
dev-libs/expat
@@ -49,6 +50,7 @@ RDEPEND="
media-libs/tiff:=
sys-apps/dbus
sys-apps/pciutils
+   sys-devel/gcc:*
sys-libs/zlib:=[minizip]
virtual/libudev
x11-libs/libX11



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/

2024-03-12 Thread Ionen Wolkens
commit: e35e384cbc147de7be5fb8014daeb56c1e4a261f
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Mar 12 20:29:03 2024 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Mar 12 20:31:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35e384c

dev-qt/qtwebengine: match accessibility IUSE with qtbase:6

Makes use of QT_CONFIG(accessibility) which can result in
undefined symbols if was enabled on qtbase then flipped off.

Like opengl/vulkan, this flag is typically enabled either
globally or not at all and should hopefully not cause conflicts
for most users.

Technically needed in non-live but given the low impact will
wait rather than let this trigger rebuilds which is not worth
it for qtwebengine.

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

 dev-qt/qtwebengine/qtwebengine-6.6..ebuild | 8 
 dev-qt/qtwebengine/qtwebengine-6.7..ebuild | 8 
 dev-qt/qtwebengine/qtwebengine-6..ebuild   | 8 
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev-qt/qtwebengine/qtwebengine-6.6..ebuild 
b/dev-qt/qtwebengine/qtwebengine-6.6..ebuild
index d21e533a2dbe..378b562a6fb0 100644
--- a/dev-qt/qtwebengine/qtwebengine-6.6..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-6.6..ebuild
@@ -18,9 +18,9 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
 fi
 
 IUSE="
-   +alsa bindist custom-cflags designer geolocation +jumbo-build
-   kerberos opengl pdfium pulseaudio qml screencast +system-icu
-   vaapi vulkan +widgets
+   accessibility +alsa bindist custom-cflags designer geolocation
+   +jumbo-build kerberos opengl pdfium pulseaudio qml screencast
+   +system-icu vaapi vulkan +widgets
 "
 REQUIRED_USE="
designer? ( qml widgets )
@@ -35,7 +35,7 @@ RDEPEND="
dev-libs/libxslt
dev-libs/nspr
dev-libs/nss
-   ~dev-qt/qtbase-${PV}:6[gui,opengl=,vulkan?,widgets?]
+   ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl=,vulkan?,widgets?]
~dev-qt/qtwebchannel-${PV}:6[qml?]
media-libs/fontconfig
media-libs/freetype

diff --git a/dev-qt/qtwebengine/qtwebengine-6.7..ebuild 
b/dev-qt/qtwebengine/qtwebengine-6.7..ebuild
index b9e05d3a0b1a..dcc7ec6d9b87 100644
--- a/dev-qt/qtwebengine/qtwebengine-6.7..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-6.7..ebuild
@@ -18,9 +18,9 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
 fi
 
 IUSE="
-   +alsa bindist custom-cflags designer geolocation +jumbo-build
-   kerberos opengl pdfium pulseaudio qml screencast +system-icu
-   vaapi vulkan webdriver +widgets
+   accessibility +alsa bindist custom-cflags designer geolocation
+   +jumbo-build kerberos opengl pdfium pulseaudio qml screencast
+   +system-icu vaapi vulkan webdriver +widgets
 "
 REQUIRED_USE="
designer? ( qml widgets )
@@ -36,7 +36,7 @@ RDEPEND="
dev-libs/libxslt
dev-libs/nspr
dev-libs/nss
-   ~dev-qt/qtbase-${PV}:6[gui,opengl=,vulkan?,widgets?]
+   ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl=,vulkan?,widgets?]
~dev-qt/qtwebchannel-${PV}:6[qml?]
media-libs/fontconfig
media-libs/freetype

diff --git a/dev-qt/qtwebengine/qtwebengine-6..ebuild 
b/dev-qt/qtwebengine/qtwebengine-6..ebuild
index 0e04faa237c4..1e77e0077e41 100644
--- a/dev-qt/qtwebengine/qtwebengine-6..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-6..ebuild
@@ -18,9 +18,9 @@ if [[ ${QT6_BUILD_TYPE} == release ]]; then
 fi
 
 IUSE="
-   +alsa bindist custom-cflags designer geolocation +jumbo-build
-   kerberos opengl pdfium pulseaudio qml screencast +system-icu
-   vaapi vulkan webdriver +widgets
+   accessibility +alsa bindist custom-cflags designer geolocation
+   +jumbo-build kerberos opengl pdfium pulseaudio qml screencast
+   +system-icu vaapi vulkan webdriver +widgets
 "
 REQUIRED_USE="
designer? ( qml widgets )
@@ -36,7 +36,7 @@ RDEPEND="
dev-libs/libxslt
dev-libs/nspr
dev-libs/nss
-   ~dev-qt/qtbase-${PV}:6[gui,opengl=,vulkan?,widgets?]
+   ~dev-qt/qtbase-${PV}:6[accessibility=,gui,opengl=,vulkan?,widgets?]
~dev-qt/qtwebchannel-${PV}:6[qml?]
media-libs/fontconfig
media-libs/freetype



[gentoo-commits] proj/tinderbox-cluster:master commit in: buildbot_gentoo_ci/utils/

2024-03-12 Thread Magnus Granberg
commit: 955e80294c70d1a47ab39b656e9d9357cf3f5f8d
Author: Magnus Granberg  gentoo  org>
AuthorDate: Tue Mar 12 20:39:02 2024 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Tue Mar 12 20:39:02 2024 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=955e8029

Fix finishTitle for path regex

Signed-off-by: Magnus Granberg  gentoo.org>

 buildbot_gentoo_ci/utils/regex.py | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/buildbot_gentoo_ci/utils/regex.py 
b/buildbot_gentoo_ci/utils/regex.py
index 29372e0..c8d19d0 100644
--- a/buildbot_gentoo_ci/utils/regex.py
+++ b/buildbot_gentoo_ci/utils/regex.py
@@ -5,18 +5,25 @@ import re
 
 # https://github.com/toralf/tinderbox/blob/main/bin/job.sh#L12
 def stripQuotesAndMore(word):
+word2 = word
 word = re.sub(r"b'", "", word)
 word = re.sub(r"'", "", word)
 word = re.sub(r'`', '', word)
 word = re.sub(r'"', '', word)
 word = re.sub(r'\\', '', word)
+print(f"Word: {word2} Finish Word: {word}")
 return word
 
 # strip away hex addresses, loong path names, line and time numbers and other 
stuff
 # https://github.com/toralf/tinderbox/blob/main/bin/job.sh#L469
 # FIXME: Add the needed line when needed
 def finishTitle(word):
-if word.startswith('/'):
+word2 = word
+# /usr/foo/baa/ghyk.c:67:69: -> ghyk.c:567:76:
+if '/' in word and word.endswith(':'):
 word = word.split('/')[-1]
-word = re.sub(":\d+:\d+:", "", word)
+# ghyfv.v:78:9876: -> ghyfv.v
+if word.endswith(':') and any(i.isdigit() for i in word):
+word = word.split(':')[0]
+print(f"Word: {word2} Finish Word: {word}")
 return word



[gentoo-commits] repo/proj/guru:dev commit in: sys-firmware/lenovolegionlinux/

2024-03-12 Thread Gonçalo Negrier Duarte
commit: e9ec4a0db0f62974d327d8bb1633667fd455a531
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Tue Mar 12 20:39:25 2024 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Tue Mar 12 20:40:00 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e9ec4a0d

sys-firmware/lenovolegionlinux: add new legiond daemon

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild 
b/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild
index 8507d75b41..672fcb964b 100644
--- a/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild
+++ b/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild
@@ -35,7 +35,7 @@ RDEPEND="
dev-python/darkdetect
)
downgrade-nvidia? ( <=x11-drivers/nvidia-drivers-525 )
-   acpi? ( sys-power/acpid )
+   sys-power/acpid
radeon-dgpu? ( dev-util/rocm-smi )
ryzenadj? ( sys-power/RyzenAdj )
undervolt-intel? ( dev-python/undervolt )
@@ -67,6 +67,8 @@ src_compile() {
#Define build dir (fix sandboxed)
cd "${WORKDIR}/${P}/python/legion_linux"
distutils-r1_src_compile --build-dir 
"${WORKDIR}/${P}/python/legion_linux/build"
+   cd "legion_linux/extra/service/legiond"
+   emake || die
fi
 }
 
@@ -84,7 +86,11 @@ src_install() {
cd "${WORKDIR}/${P}/extra"
 
if use systemd; then
-   systemd_dounit service/legion-linux.service 
service/legion-linux.path service/legion-linux-onresume.service
+   systemd_dounit service/legiond.service 
service/legiond-onresume.service
+   insinto /usr/share/legion_linux/acpi/events
+   doins acpi/events/{legion_ppd,legion_ac}
+   dobin service/legiond/legiond
+   dobin service/legiond/legiond-cli
fi
 
if use acpi; then



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

2024-03-12 Thread Arthur Zamarin
commit: e3dbc0912d99ef5296a59fe8e46af87f637196ed
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 20:42:03 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 20:42:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3dbc091

sys-block/zram-init: Stabilize 11.1 arm, #926855

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

 sys-block/zram-init/zram-init-11.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-block/zram-init/zram-init-11.1.ebuild 
b/sys-block/zram-init/zram-init-11.1.ebuild
index 5a98219d9bd6..d90e78958f98 100644
--- a/sys-block/zram-init/zram-init-11.1.ebuild
+++ b/sys-block/zram-init/zram-init-11.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git;
 else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86"
+   KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
 fi
 
 LICENSE="GPL-2"



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

2024-03-12 Thread Arthur Zamarin
commit: d5a63d53118403b848fe2162c903ba5bdfeed425
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 20:42:02 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 20:42:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a63d53

dev-lang/mujs: Stabilize 1.3.4 x86, #926848

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

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

diff --git a/dev-lang/mujs/mujs-1.3.4.ebuild b/dev-lang/mujs/mujs-1.3.4.ebuild
index 9a86af53de3b..baa603279e27 100644
--- a/dev-lang/mujs/mujs-1.3.4.ebuild
+++ b/dev-lang/mujs/mujs-1.3.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz;
 LICENSE="ISC"
 # The subslot matches the SONAME
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="sys-libs/readline:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: net-vpn/strongswan/

2024-03-12 Thread Arthur Zamarin
commit: 93567fe9e01e57ae975ccf3b01b5855c8a2e28b3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 20:54:51 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 20:54:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93567fe9

net-vpn/strongswan: Stabilize 5.9.13 arm, #926852

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

 net-vpn/strongswan/strongswan-5.9.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/strongswan/strongswan-5.9.13.ebuild 
b/net-vpn/strongswan/strongswan-5.9.13.ebuild
index e8b307487c03..6fa540ecd4a1 100644
--- a/net-vpn/strongswan/strongswan-5.9.13.ebuild
+++ b/net-vpn/strongswan/strongswan-5.9.13.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://download.strongswan.org/${P}.tar.bz2;
 
 LICENSE="GPL-2 RSA DES"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql 
networkmanager +non-root +openssl selinux sqlite systemd pam pkcs11"
 
 STRONGSWAN_PLUGINS_STD="gcm led lookip systime-fix unity vici"



[gentoo-commits] repo/gentoo:master commit in: x11-wm/cwm/

2024-03-12 Thread Arthur Zamarin
commit: 71d28e408fb88b9f00a87ca2795a351d70267a5e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 21:01:05 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 21:01:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71d28e40

x11-wm/cwm: Stabilize 7.4 amd64, #926854

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

 x11-wm/cwm/cwm-7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/cwm/cwm-7.4.ebuild b/x11-wm/cwm/cwm-7.4.ebuild
index 812218abf612..2890a6eac271 100644
--- a/x11-wm/cwm/cwm-7.4.ebuild
+++ b/x11-wm/cwm/cwm-7.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/leahneukirchen/cwm.git;
 else
SRC_URI="https://github.com/leahneukirchen/cwm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ~riscv ~x86"
 fi
 
 LICENSE="ISC"



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

2024-03-12 Thread Arthur Zamarin
commit: d4413dcef7dda84184940da245d9448657e5b190
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 21:02:18 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 21:02:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4413dce

app-text/mupdf: Stabilize 1.23.7-r1 arm64, #926846

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

 app-text/mupdf/mupdf-1.23.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mupdf/mupdf-1.23.7-r1.ebuild 
b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
index 04be45dd91cf..e4ec97978e1d 100644
--- a/app-text/mupdf/mupdf-1.23.7-r1.ebuild
+++ b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${P}-source
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-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="+javascript opengl ssl X"
 REQUIRED_USE="opengl? ( javascript )"
 



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

2024-03-12 Thread Arthur Zamarin
commit: 18eb5893b5a165a95c307966128eec9d20508382
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 21:03:33 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 21:03:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18eb5893

media-gfx/converseen: Stabilize 0.12.0.1 x86, #926849

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

 media-gfx/converseen/converseen-0.12.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/converseen/converseen-0.12.0.1.ebuild 
b/media-gfx/converseen/converseen-0.12.0.1.ebuild
index 92a8857d6b3e..4aead3a1992e 100644
--- a/media-gfx/converseen/converseen-0.12.0.1.ebuild
+++ b/media-gfx/converseen/converseen-0.12.0.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Faster3ck/Converseen/archive/v${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="graphicsmagick debug"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-vpn/strongswan/

2024-03-12 Thread Arthur Zamarin
commit: 39d4505404581f2131dfbd9c1910218795dc4f05
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 21:04:30 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 21:04:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39d45054

net-vpn/strongswan: Stabilize 5.9.13 amd64, #926852

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

 net-vpn/strongswan/strongswan-5.9.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/strongswan/strongswan-5.9.13.ebuild 
b/net-vpn/strongswan/strongswan-5.9.13.ebuild
index 6fa540ecd4a1..94bb03b5cd37 100644
--- a/net-vpn/strongswan/strongswan-5.9.13.ebuild
+++ b/net-vpn/strongswan/strongswan-5.9.13.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://download.strongswan.org/${P}.tar.bz2;
 
 LICENSE="GPL-2 RSA DES"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql 
networkmanager +non-root +openssl selinux sqlite systemd pam pkcs11"
 
 STRONGSWAN_PLUGINS_STD="gcm led lookip systime-fix unity vici"



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

2024-03-12 Thread Arthur Zamarin
commit: 29e4c0facbaabd9ec54e9862869d279b0f5cf169
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 21:13:24 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 21:13:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29e4c0fa

dev-lang/mujs: Stabilize 1.3.4 arm64, #926848

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

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

diff --git a/dev-lang/mujs/mujs-1.3.4.ebuild b/dev-lang/mujs/mujs-1.3.4.ebuild
index baa603279e27..58c892338be2 100644
--- a/dev-lang/mujs/mujs-1.3.4.ebuild
+++ b/dev-lang/mujs/mujs-1.3.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz;
 LICENSE="ISC"
 # The subslot matches the SONAME
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="sys-libs/readline:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: profiles/features/prefix/, sys-apps/debianutils/

2024-03-12 Thread Andrew Ammerlaan
commit: 80df7c19177b8333aae4e986a7fffb9d0a657b25
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Mon Feb 26 05:57:06 2024 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Mar 12 18:16:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80df7c19

sys-apps/debianutils: drop installkernel use flag

Random packages requiring some tool from Debian should not cause the kernel
installation process to change.

The dropping of the debianutils dependency in ca-certificates has already
caused some surprises due to installkernel being depcleaned. The origin of the
problem lies here in debianutils, users unknowingly use and rely on
installkernel but do not have it in their world file because it was implicitly
pulled in by some package that happens to use the run-parts command.

And also the other way around. If I am one of the users that wants to do
everything manually, I should not have my 'make install' unknowingly altered
by some package that I installed which pulled debianutils into the depgraph.

Drop this unused runtime dependency (which is against policy to begin with) and
its accompanying flag. A news item will be posted to notify users of this change
and instruct them to add installkernel to their world file.

Signed-off-by: Andrew Ammerlaan  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/35533
Signed-off-by: Andrew Ammerlaan  gentoo.org>

 profiles/features/prefix/package.use.mask   | 4 
 .../{debianutils-5.14.ebuild => debianutils-5.14-r1.ebuild} | 6 +-
 sys-apps/debianutils/metadata.xml   | 6 --
 3 files changed, 1 insertion(+), 15 deletions(-)

diff --git a/profiles/features/prefix/package.use.mask 
b/profiles/features/prefix/package.use.mask
index 9d5a82e0d829..12bba1c5f9e8 100644
--- a/profiles/features/prefix/package.use.mask
+++ b/profiles/features/prefix/package.use.mask
@@ -14,10 +14,6 @@ x11-base/xorg-server elogind
 # depends on systemd
 sys-apps/ipmitool openbmc
 
-# Fabian Groffen  (2020-06-07)
-# installing kernels has no business in Prefix
-sys-apps/debianutils installkernel
-
 # Benda Xu  (2019-08-20)
 # avoid gnome-extra/gnome-user-share, which depends on systemd.
 gnome-base/gnome-extra-apps share

diff --git a/sys-apps/debianutils/debianutils-5.14.ebuild 
b/sys-apps/debianutils/debianutils-5.14-r1.ebuild
similarity index 91%
rename from sys-apps/debianutils/debianutils-5.14.ebuild
rename to sys-apps/debianutils/debianutils-5.14-r1.ebuild
index ade4ad363a49..fc46992478ea 100644
--- a/sys-apps/debianutils/debianutils-5.14.ebuild
+++ b/sys-apps/debianutils/debianutils-5.14-r1.ebuild
@@ -12,11 +12,7 @@ 
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
 LICENSE="BSD GPL-2 SMAIL"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x86-linux"
-IUSE="+installkernel static"
-
-PDEPEND="
-   installkernel? ( sys-kernel/installkernel )
-"
+IUSE="static"
 
 PATCHES=( "${FILESDIR}"/${PN}-3.4.2-no-bs-namespace.patch )
 

diff --git a/sys-apps/debianutils/metadata.xml 
b/sys-apps/debianutils/metadata.xml
index 42573629d611..b0d83aa2e489 100644
--- a/sys-apps/debianutils/metadata.xml
+++ b/sys-apps/debianutils/metadata.xml
@@ -5,10 +5,4 @@
base-sys...@gentoo.org
Gentoo Base System

-   
-   
-   Install /sbin/installkernel script (for Linux).
-   installkernel is required whenever a kernel will be 
installed via make install
-   
-   
 



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

2024-03-12 Thread Mike Pagano
commit: bfac88c6ebfd32de79ab1f797ad4b79738e69ee4
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:14:37 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:14:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfac88c6

sys-kernel/linux-firmware: add 20240312

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

 sys-kernel/linux-firmware/Manifest |   1 +
 .../linux-firmware/linux-firmware-20240312.ebuild  | 405 +
 2 files changed, 406 insertions(+)

diff --git a/sys-kernel/linux-firmware/Manifest 
b/sys-kernel/linux-firmware/Manifest
index f195e0ce9cb8..8eb62357563e 100644
--- a/sys-kernel/linux-firmware/Manifest
+++ b/sys-kernel/linux-firmware/Manifest
@@ -1,2 +1,3 @@
 DIST linux-firmware-20240115.tar.xz 363994604 BLAKE2B 
00a0874cfbafe0fe57a841510c71e54e836efad65564b7fa30c334c2bcf909e235129035a6fa4ba090089492fb07beab945be82b3801ce8353fca20fa426ac85
 SHA512 
65100216a0dbe97ea0cdf3104dd59c95cafe883bd8c2a40f9369acb55d6f7260c1b51f233987d2f89cce93b2a952721a0484a6314cda49455986c597ff2050dd
 DIST linux-firmware-20240220.tar.xz 368128968 BLAKE2B 
6eefe70f8b55619d58b2ed538cd3eb85e013e231d1cb474fefc48f8af6a2f61a763ef73793eed30e17c67fd83a80b9c91f0af6c7b049861fa57c088dc9604d71
 SHA512 
faa4fbe3556b67e2adc9afebb8a3909ac853eeb0b9b43eafe1aa9144e633a6356e11af7c3ee008e654ae928dd2ffcd4261bee3e63a3bee4cae7cd3b442916299
+DIST linux-firmware-20240312.tar.xz 370815780 BLAKE2B 
576b1e9fe6a181e2ae6776272e8dae0fd5d2cf87c9333f27c1388641fe94c39ae2b546ec49930b105994103f86d9f6754929fecb713902c7e18fc887f955d56e
 SHA512 
8c71b035b276350274084a1a893e44839a9c6496626a09c07c5cbf26df80c695c611d97d2d310f3f3cbb8052d4ce79a1b7a85fbeb295d8bcba53d4ae78b17fa1

diff --git a/sys-kernel/linux-firmware/linux-firmware-20240312.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20240312.ebuild
new file mode 100644
index ..8ea7565f00ce
--- /dev/null
+++ b/sys-kernel/linux-firmware/linux-firmware-20240312.ebuild
@@ -0,0 +1,405 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit linux-info mount-boot savedconfig multiprocessing
+
+# In case this is a real snapshot, fill in commit below.
+# For normal, tagged releases, leave blank
+MY_COMMIT=""
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   
EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git;
+else
+   if [[ -n "${MY_COMMIT}" ]]; then
+   
SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/${MY_COMMIT}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/${MY_COMMIT}"
+   else
+   
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz;
+   fi
+
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
+
+DESCRIPTION="Linux firmware files"
+HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;
+
+LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
+   redistributable? ( linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT )
+   unknown-license? ( all-rights-reserved )"
+SLOT="0"
+IUSE="bindist compress-xz compress-zstd deduplicate initramfs +redistributable 
savedconfig unknown-license"
+REQUIRED_USE="initramfs? ( redistributable )
+   ?? ( compress-xz compress-zstd )
+   savedconfig? ( !deduplicate )"
+
+RESTRICT="binchecks strip test
+   !bindist? ( bindist )
+   unknown-license? ( bindist )"
+
+BDEPEND="initramfs? ( app-alternatives/cpio )
+   compress-xz? ( app-arch/xz-utils )
+   compress-zstd? ( app-arch/zstd )
+   deduplicate? ( app-misc/rdfind )"
+
+#add anything else that collides to this
+RDEPEND="!savedconfig? (
+   redistributable? (
+   !sys-firmware/alsa-firmware[alsa_cards_ca0132]
+   !sys-block/qla-fc-firmware
+   !sys-firmware/iwl1000-ucode
+   !sys-firmware/iwl6005-ucode
+   !sys-firmware/iwl6030-ucode
+   !sys-firmware/iwl3160-ucode
+   !sys-firmware/iwl7260-ucode
+   !sys-firmware/iwl3160-7260-bt-ucode
+   !sys-firmware/raspberrypi-wifi-ucode
+   )
+   unknown-license? (
+   !sys-firmware/alsa-firmware[alsa_cards_korg1212]
+   !sys-firmware/alsa-firmware[alsa_cards_maestro3]
+   !sys-firmware/alsa-firmware[alsa_cards_sb16]
+   !sys-firmware/alsa-firmware[alsa_cards_ymfpci]
+   )
+   )"
+
+QA_PREBUILT="*"
+PATCHES=( "${FILESDIR}"/${PN}-copy-firmwa

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

2024-03-12 Thread Mike Pagano
commit: 44ac87045f429e92165c20fab03eb5800fe85e9b
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:17:34 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:17:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44ac8704

sys-kernel/gentoo-sources: drop 5.10.210

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-5.10.210.ebuild  | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a5fe8ba130bc..47d054a7f363 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -1,9 +1,6 @@
 DIST genpatches-5.10-219.base.tar.xz 6357760 BLAKE2B 
a269d5841d3a4b959c6a5ac49cac174a619463ff0792218d2c9311b22b54202f594b5edfed6fda147cbcb20a9d11aa9b886538e898c1442f8eb456a95b6ef5ce
 SHA512 
4938bd81ccbb600e23a4d48096cfadf019e01324d8239a358cd1e0c506a16724ab7d4ec018bf48f6edd1f20d15e1db0c17bea98a349327fd51fb01384aeb2518
 DIST genpatches-5.10-219.experimental.tar.xz 16868 BLAKE2B 
c56d17b2584327058f46b9b7bdd052637200cf5cc80f843d31c437bb8abce1ee2ba3ef2ed8adb8716f9a86811f0ebecc18253cefdbc8524f6f73d399dffedc9b
 SHA512 
fc35b7ca02b6bdecc3a60839bb677e6ab64ac65f17b282be826d274584e8ffcd3c111bfca77f96c7d7fe7e5b71e194a4047c53807609dd4f8c453f9862dba520
 DIST genpatches-5.10-219.extras.tar.xz 3872 BLAKE2B 
e750906a1615f45077bba557296d5fbb41cffbb909e33b61280dd35846ce13cf3ecf2620404b348d17bd26cd588a7edffea97c3be3ab78fdbf9ab6737ca4f8e1
 SHA512 
17ec35b053139a93997b5a3c35a7ba61d6ef87c05aeef3ca06eea3bddf76ea5e2e10664d304a673780e3543791c46580548ba4dde40fbcb42a86a484408af57a
-DIST genpatches-5.10-221.base.tar.xz 6529836 BLAKE2B 
80524f1cb43bbe119bef0fec62feac75276aa3550c5b0f8e06e6305f57db6ec404a563c26445b7f37dba82d4c787a0414e14d5ccca3c6c88447725b8c7e5
 SHA512 
6003c9e3334ed3c94b32b7c34066690fe9fd30b9de9411786b5a1f14c26a25408dbea8f53270c53892d581fb0130382bc97971feae967c49702c96e55c876297
-DIST genpatches-5.10-221.experimental.tar.xz 11848 BLAKE2B 
5240c8b552aa7a078f41544b811bc2d1c20b6dbdf1462a549a3bc1bd2435da16d35d21a97adc1e1a273d1e0e3f2ad1cd92731b57cdc8e75b9ddb23e51cdd18ee
 SHA512 
f405d634ace8d514f6d58060d05dd9f1eeb50d54d358916eaca233e810945481f9c0dcbcff18652fb304efc2ebd9d0ef19759e887b4bed9ec694fa6d4c14b9a1
-DIST genpatches-5.10-221.extras.tar.xz 3876 BLAKE2B 
ac56b5468f4d8185b969da1994b2130910969b90f5717fbd6cb600549ae2ff36625e8887396fd37406cba3c805fe61885b35cd2a5d4cc4ff3ef8ce750d80bd4e
 SHA512 
3466cc36ced28964067ec83fd2c5febde70874b921cf4f9800f597d9757b283fab07ee548aeb4637003eab504dc6e85143436b9110fc3405c2fa9fbb3644e90f
 DIST genpatches-5.10-222.base.tar.xz 6576780 BLAKE2B 
8ebff676256f3694cda64863f17a38ca91b45dd70a441198b26488f52334b0091a0975619f8dc64ceaa8f11a09c2d251ccea535ce76a17d2674268f8dedcd724
 SHA512 
b9a60f9ae5fa4bd8be277a0e421efe2950aebcc026f72bc48ebe8f9a976171496cd429539fbc386e0b5d3108a78bdf1f34e39455f6ae961f6fb87028b204125a
 DIST genpatches-5.10-222.experimental.tar.xz 11852 BLAKE2B 
e8adc46dece14e7d168f5a622f4df30506b397a2bc9e55facebd6d9f69b90c4c222f70589842b9490be97e8da4fbbd35764615679d9aba1760dee0d4123006a1
 SHA512 
96a4addb367818c1774b92def8f11a9fa742209a3c13c74d4b07fd898f115a5878978b9f4e2ddf50084c4d3bbc9aae4a765c38a489c26744db588222a1e59013
 DIST genpatches-5.10-222.extras.tar.xz 3876 BLAKE2B 
fd8002a9b43af80fcf5cedc8166989ec7f4cf5d3586e48c6fcf057b4e2569687610d502c256b839bc148d9aec41f9dc0af9811a25b21fae43499455ff92d6a30
 SHA512 
13b7bb8c2d6e2f9ec660bcfcedd21b4b676026ceef6752d77b9d3a0fc553837dbb9f0a0ba291a73bdd4f469034ef29aadfcff21a8dc3fdd077dfa7b28daa5a35

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



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

2024-03-12 Thread Mike Pagano
commit: 4f977577be0821006f845252a56e30d950677ece
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:17:24 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:17:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f977577

sys-kernel/gentoo-sources: drop 5.10.209

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-5.10.209.ebuild  | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 746b095231f2..a5fe8ba130bc 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -1,9 +1,6 @@
 DIST genpatches-5.10-219.base.tar.xz 6357760 BLAKE2B 
a269d5841d3a4b959c6a5ac49cac174a619463ff0792218d2c9311b22b54202f594b5edfed6fda147cbcb20a9d11aa9b886538e898c1442f8eb456a95b6ef5ce
 SHA512 
4938bd81ccbb600e23a4d48096cfadf019e01324d8239a358cd1e0c506a16724ab7d4ec018bf48f6edd1f20d15e1db0c17bea98a349327fd51fb01384aeb2518
 DIST genpatches-5.10-219.experimental.tar.xz 16868 BLAKE2B 
c56d17b2584327058f46b9b7bdd052637200cf5cc80f843d31c437bb8abce1ee2ba3ef2ed8adb8716f9a86811f0ebecc18253cefdbc8524f6f73d399dffedc9b
 SHA512 
fc35b7ca02b6bdecc3a60839bb677e6ab64ac65f17b282be826d274584e8ffcd3c111bfca77f96c7d7fe7e5b71e194a4047c53807609dd4f8c453f9862dba520
 DIST genpatches-5.10-219.extras.tar.xz 3872 BLAKE2B 
e750906a1615f45077bba557296d5fbb41cffbb909e33b61280dd35846ce13cf3ecf2620404b348d17bd26cd588a7edffea97c3be3ab78fdbf9ab6737ca4f8e1
 SHA512 
17ec35b053139a93997b5a3c35a7ba61d6ef87c05aeef3ca06eea3bddf76ea5e2e10664d304a673780e3543791c46580548ba4dde40fbcb42a86a484408af57a
-DIST genpatches-5.10-220.base.tar.xz 6420640 BLAKE2B 
bc737c88f1e7eff80ccb12513ddbdbf9a2598477d691678c94ba3f261187d62af91dcb309b0a3d7b0ac97c1ef89d8aa774e179f97bd950bad022580447889492
 SHA512 
3b3b423b5f6ccfa0a74a567b1108c2027582b78409ca17f4044214fb3cb3586ec0cc0eab6bd2f5dd49f13fdbedb7d78a0ddcd596347ae0a26e7a6b6901ed10b4
-DIST genpatches-5.10-220.experimental.tar.xz 16872 BLAKE2B 
cdc5007199b208c9af05048fc7b1311fa9a7b275a5f4c2c631689510c5406af5359b1efd5737156634af226524e563834ac05d306ac25dd95fa26d759d2da389
 SHA512 
60ef113e0eec097a0eca83ff2993a9e92b5b663900c662e2ec1caee47fd567aacd1d28bfbfe24ff2c6a9ad5344203055ba53f33c7991b4e1aee54d8cb7744420
-DIST genpatches-5.10-220.extras.tar.xz 3872 BLAKE2B 
71384eeb192c4d3ef24e28cba7848a2e51ec6b582d0904593902f15d8f03c33bd4155e9ec8b52b601af399bccac2c52b3892109dff151a89f636d9f130306e02
 SHA512 
e8b61757336cd513bb7c49725c569218a749ebf6782515a30c63c1d9ac922f8781ceb6d5399437889a281ac393970c09fd8bf0327f0de45cb8de1d604d49fb0a
 DIST genpatches-5.10-221.base.tar.xz 6529836 BLAKE2B 
80524f1cb43bbe119bef0fec62feac75276aa3550c5b0f8e06e6305f57db6ec404a563c26445b7f37dba82d4c787a0414e14d5ccca3c6c88447725b8c7e5
 SHA512 
6003c9e3334ed3c94b32b7c34066690fe9fd30b9de9411786b5a1f14c26a25408dbea8f53270c53892d581fb0130382bc97971feae967c49702c96e55c876297
 DIST genpatches-5.10-221.experimental.tar.xz 11848 BLAKE2B 
5240c8b552aa7a078f41544b811bc2d1c20b6dbdf1462a549a3bc1bd2435da16d35d21a97adc1e1a273d1e0e3f2ad1cd92731b57cdc8e75b9ddb23e51cdd18ee
 SHA512 
f405d634ace8d514f6d58060d05dd9f1eeb50d54d358916eaca233e810945481f9c0dcbcff18652fb304efc2ebd9d0ef19759e887b4bed9ec694fa6d4c14b9a1
 DIST genpatches-5.10-221.extras.tar.xz 3876 BLAKE2B 
ac56b5468f4d8185b969da1994b2130910969b90f5717fbd6cb600549ae2ff36625e8887396fd37406cba3c805fe61885b35cd2a5d4cc4ff3ef8ce750d80bd4e
 SHA512 
3466cc36ced28964067ec83fd2c5febde70874b921cf4f9800f597d9757b283fab07ee548aeb4637003eab504dc6e85143436b9110fc3405c2fa9fbb3644e90f

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



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

2024-03-12 Thread Mike Pagano
commit: 821c276655134d1c6c02f547396b30e3e3d86997
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:20:48 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:20:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821c2766

sys-kernel/gentoo-sources: drop 6.6.14

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.6.14.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f354518d0479..96e0af24cabd 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -26,9 +26,6 @@ DIST genpatches-6.1-90.extras.tar.xz 3812 BLAKE2B 
466c0b796df7406c228fd4dbad20f8
 DIST genpatches-6.6-16.base.tar.xz 750868 BLAKE2B 
13af5286f51a69dd0ad7b2543bcf0d933865e14c4c865e495f3225a8740bd7579858cbbd72a2099333e8dc241900c166730d4c812183f2636bf3d4049156a71b
 SHA512 
70864a69f8bdb28f8fa3515a33be510a2c529a5c3bc767aede2dae1c290869491d776336be9983259685af9fee2d2bc61c821d0103c47e91b69078bf81fe2c63
 DIST genpatches-6.6-16.experimental.tar.xz 5756 BLAKE2B 
48c2224ae8759ebbd36f8fb31e720b2df2d8c0a519ae5990e5d5947b04c7a1d0bf515fa2cf4316f3c84885ee643734da2cd4ea80ed6ee0bbdc73d12025d1c132
 SHA512 
81438179ea1d3a202a8631400727f854f938182118dcafddf7faedb12f2b69df834ac349d75cfe0ed84da422d7613d4a45723668ead5f076780d2c3236145cd4
 DIST genpatches-6.6-16.extras.tar.xz 3704 BLAKE2B 
a33d9a80926abd8318f124fa6aa25f7181b88a6965c17908232ef2b866a27a5e856e464895994599265e0e57d8e1f81561758df4670f25ef5694e5d5f535ba95
 SHA512 
8ee1686a16886320b698ac0e3767804fc9bbaf595335203fb2899c727a0ca0f3e551ac13b3cbb97cec8d91e77257aa1da75669f1c41d263960875e9d31303b1a
-DIST genpatches-6.6-17.base.tar.xz 894152 BLAKE2B 
ff9c821916d3b1350ac30a44673eee52df18d5c7766ccfb7e682740889191080e947ca6f78b8f2af3b1b2b879326c0b530a53f7443a54ecd124b27e89e99e6bd
 SHA512 
45b6df20d995ceddbccf72db94062339e021eaa4a121d0591a936e39b1e56c8f2581dd1fde03505914adb787445b4cfd998f7847f640785dfa1c05e7959125aa
-DIST genpatches-6.6-17.experimental.tar.xz 5756 BLAKE2B 
b74f13c7166130b515c8617f1b8517b074639e0e7a150cf63c4575fe8412f039a85180c0746d14cd63db126494348a092e72c97e90715f4d8863b5bd49d2dd13
 SHA512 
eb568e2b5858008e25b39cea636acc4c6b38a192d2e5b019e4e71543f49cfbedd201d9145d9b0d1c24e3a1bf6e73115adae6201907e98365a1979824f1249d92
-DIST genpatches-6.6-17.extras.tar.xz 3704 BLAKE2B 
d85a68fe7bf6e4693a41958a053705e35b8829c236b8fad024f7332f89be277708dce2bc931c013b3bf51e14e3b11162342893b7d257541677b17efa918c86b7
 SHA512 
d53c369e9f54f6de450a41882626d74b22315b8ca7c7b381089b77a6b1b5a1b444109e8fc9c25bdf22afeb92af252c963c700e0e309cfa272caf39c1f5855a55
 DIST genpatches-6.6-18.base.tar.xz 1008124 BLAKE2B 
90cfa49d54e086a9fbaf20154f427def0097e76ba6ef5a0b41cd0004634a9d8dd5413e53ea80c340716f3d8dca3685e8aed5e7d8180a11b30e2893c084858092
 SHA512 
0c5c7d3ed4fb6594d075fd853a730023cbb1e2902377d59cc07d6ee0bc934b371d8a522405c63a0f90a8e0742aca4b770eb25311013c062e7484e5d6f33f1fda
 DIST genpatches-6.6-18.experimental.tar.xz 5752 BLAKE2B 
a03ef02a10f391b465c331327b92834f395fce7f362fb913ab990489ba06870a737c6bc0abe7469c169ad2eaad4d7034d79602bf76058325791517e7f70548b1
 SHA512 
7f605640ebf65182c20875e3a63243c2b8989b7f76bec6b402671d345fe661bd01c80f8fc24edd69235b4ce3900eb7e222fcc501ae8c0ebb1261214810cb4605
 DIST genpatches-6.6-18.extras.tar.xz 3704 BLAKE2B 
9ce8d2ab8cdd70100a0552648053df120ba52c3ae281a6f102e5982550d15d7096eb2efcf9f5f30da17c6f86b2aa75d903f014c7232366699c5d82d493be8415
 SHA512 
e6aaa51fa7e0d519c5c129f029461d7217ba57cd252dff5203b84f6b0f6fbffbd1c0db8d9a30096623e5d442a5307254a8384a2da7869eb0024cd6546dd48958

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



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

2024-03-12 Thread Mike Pagano
commit: 91ac495987122739416627dd417080bb7cf5a3db
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:21:05 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:21:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91ac4959

sys-kernel/gentoo-sources: drop 6.6.15

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.6.15.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 96e0af24cabd..093d49bba9b0 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -26,9 +26,6 @@ DIST genpatches-6.1-90.extras.tar.xz 3812 BLAKE2B 
466c0b796df7406c228fd4dbad20f8
 DIST genpatches-6.6-16.base.tar.xz 750868 BLAKE2B 
13af5286f51a69dd0ad7b2543bcf0d933865e14c4c865e495f3225a8740bd7579858cbbd72a2099333e8dc241900c166730d4c812183f2636bf3d4049156a71b
 SHA512 
70864a69f8bdb28f8fa3515a33be510a2c529a5c3bc767aede2dae1c290869491d776336be9983259685af9fee2d2bc61c821d0103c47e91b69078bf81fe2c63
 DIST genpatches-6.6-16.experimental.tar.xz 5756 BLAKE2B 
48c2224ae8759ebbd36f8fb31e720b2df2d8c0a519ae5990e5d5947b04c7a1d0bf515fa2cf4316f3c84885ee643734da2cd4ea80ed6ee0bbdc73d12025d1c132
 SHA512 
81438179ea1d3a202a8631400727f854f938182118dcafddf7faedb12f2b69df834ac349d75cfe0ed84da422d7613d4a45723668ead5f076780d2c3236145cd4
 DIST genpatches-6.6-16.extras.tar.xz 3704 BLAKE2B 
a33d9a80926abd8318f124fa6aa25f7181b88a6965c17908232ef2b866a27a5e856e464895994599265e0e57d8e1f81561758df4670f25ef5694e5d5f535ba95
 SHA512 
8ee1686a16886320b698ac0e3767804fc9bbaf595335203fb2899c727a0ca0f3e551ac13b3cbb97cec8d91e77257aa1da75669f1c41d263960875e9d31303b1a
-DIST genpatches-6.6-18.base.tar.xz 1008124 BLAKE2B 
90cfa49d54e086a9fbaf20154f427def0097e76ba6ef5a0b41cd0004634a9d8dd5413e53ea80c340716f3d8dca3685e8aed5e7d8180a11b30e2893c084858092
 SHA512 
0c5c7d3ed4fb6594d075fd853a730023cbb1e2902377d59cc07d6ee0bc934b371d8a522405c63a0f90a8e0742aca4b770eb25311013c062e7484e5d6f33f1fda
-DIST genpatches-6.6-18.experimental.tar.xz 5752 BLAKE2B 
a03ef02a10f391b465c331327b92834f395fce7f362fb913ab990489ba06870a737c6bc0abe7469c169ad2eaad4d7034d79602bf76058325791517e7f70548b1
 SHA512 
7f605640ebf65182c20875e3a63243c2b8989b7f76bec6b402671d345fe661bd01c80f8fc24edd69235b4ce3900eb7e222fcc501ae8c0ebb1261214810cb4605
-DIST genpatches-6.6-18.extras.tar.xz 3704 BLAKE2B 
9ce8d2ab8cdd70100a0552648053df120ba52c3ae281a6f102e5982550d15d7096eb2efcf9f5f30da17c6f86b2aa75d903f014c7232366699c5d82d493be8415
 SHA512 
e6aaa51fa7e0d519c5c129f029461d7217ba57cd252dff5203b84f6b0f6fbffbd1c0db8d9a30096623e5d442a5307254a8384a2da7869eb0024cd6546dd48958
 DIST genpatches-6.6-19.base.tar.xz 1118896 BLAKE2B 
2d94ffca6b8788df6fb9d8037ec7db0e2ae3b2b433e73e112e679a0a542d5f94afbcbb982d2279caeb20670ce03b5662cb9ab7108bfc5e470880db3a5f3c1306
 SHA512 
8795565efaf77d5cf9dba42e6aea216138192f0868d764e19f230e052ec656027d220b19a4c5d37814eb3c380c60358b529d0f40b40fab129bdb27318b86745e
 DIST genpatches-6.6-19.experimental.tar.xz 5756 BLAKE2B 
568b51ab5029ed1d543cea69500b57ebfaa75e515e4432ebad650ffcd7f4e65e808c1c5a1f87c1b5a786dbbf07c71b3c8d4c48bc6f5fd5b072060e543dc988a4
 SHA512 
4932ea3066362698287c457838defe377636aea7df42b75a46f2c024db9f9f8a35da4ff33469be2e2025d4e6f24d7238873e1ad271e59e49de90ba4bfafd01fb
 DIST genpatches-6.6-19.extras.tar.xz 3700 BLAKE2B 
88f3547af7522a28595c04006e01b5ba658bd7c0e89700fb4c6b0d76a39139cc4d97be10624038847f2de1d1c8e200455fe9b5bb18830da1354d8e4d4956b644
 SHA512 
a83e157d10149824632da6d3047aeccddff117de2aacbfd035547166fe549f8036087f1965c0bae723ecb4a1f6e665a34b7069636b4e2a3ecbc91405284781af

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



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

2024-03-12 Thread Mike Pagano
commit: 6cb54afe9f585bb59a765816d9c4d3d9590dd027
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:21:30 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:21:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb54afe

sys-kernel/gentoo-sources: drop 6.6.18

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.6.18.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 441141f565e3..e554bc969dfe 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -26,9 +26,6 @@ DIST genpatches-6.1-90.extras.tar.xz 3812 BLAKE2B 
466c0b796df7406c228fd4dbad20f8
 DIST genpatches-6.6-16.base.tar.xz 750868 BLAKE2B 
13af5286f51a69dd0ad7b2543bcf0d933865e14c4c865e495f3225a8740bd7579858cbbd72a2099333e8dc241900c166730d4c812183f2636bf3d4049156a71b
 SHA512 
70864a69f8bdb28f8fa3515a33be510a2c529a5c3bc767aede2dae1c290869491d776336be9983259685af9fee2d2bc61c821d0103c47e91b69078bf81fe2c63
 DIST genpatches-6.6-16.experimental.tar.xz 5756 BLAKE2B 
48c2224ae8759ebbd36f8fb31e720b2df2d8c0a519ae5990e5d5947b04c7a1d0bf515fa2cf4316f3c84885ee643734da2cd4ea80ed6ee0bbdc73d12025d1c132
 SHA512 
81438179ea1d3a202a8631400727f854f938182118dcafddf7faedb12f2b69df834ac349d75cfe0ed84da422d7613d4a45723668ead5f076780d2c3236145cd4
 DIST genpatches-6.6-16.extras.tar.xz 3704 BLAKE2B 
a33d9a80926abd8318f124fa6aa25f7181b88a6965c17908232ef2b866a27a5e856e464895994599265e0e57d8e1f81561758df4670f25ef5694e5d5f535ba95
 SHA512 
8ee1686a16886320b698ac0e3767804fc9bbaf595335203fb2899c727a0ca0f3e551ac13b3cbb97cec8d91e77257aa1da75669f1c41d263960875e9d31303b1a
-DIST genpatches-6.6-24.base.tar.xz 1263296 BLAKE2B 
16caebdd68cdf1d07c5f0e0429ee0fff5b95408a41bedd55c3e44b53fc242b73998020d781d51bdb35e42b680c4fd3f4cdbc6f5e65977ad099691ac2b25d5fc0
 SHA512 
f6cf1e79a6d9c4e050602a1bb5a41266129fa3b93250b158fce55a7df5eceb6134950816c055134310fa25f0d878afea11c9bce8950050f8723b1178896adcd5
-DIST genpatches-6.6-24.experimental.tar.xz 5752 BLAKE2B 
af597aecbd6dfd786287c05eb2d712957f6854a20aed8dfb3d2766fdc32f2d01608cc0c08617042980a306d554b74de5eaa5b6921cfe0d987a85b52444008db6
 SHA512 
26fc39dd1aa93165cb48217f95d5f552fe83b1841bc7e582282588b0d16046a2216c61380444c75e0a1a90ad33304aa1cf8b1566e3187dd46ea8f5b6a882c10a
-DIST genpatches-6.6-24.extras.tar.xz 3704 BLAKE2B 
2908fc01a54469d0b99c12b76e11a67af3251391e5f6cb7125a63d54abb681acd11f54ea26702e964a5785fa1a2557111ab9bea13c4e9a32cf4549c246b34edb
 SHA512 
f72cf8aadaad8cff309a6030e98e29534e86c75665895d53772d3fa783df2939d74e449e1e0adb136349f7e281cc158153380d862cbbf6a3ac4916ef4b8da6e0
 DIST genpatches-6.6-25.base.tar.xz 1351392 BLAKE2B 
e1f5df7796f7d50a244c37d2b5e4eecdeb1d46cf25f6dc51567c6abd729aad142266fa430350e7efdd3995c02d6f8cc6ff85429fa7a019f8f9ed1a9ca2fc9b7f
 SHA512 
a548b1552c6e89b0d9736a2d2e282eda7686a0cf781c8d3445d7394ffdabb2c16c69dcaea0341f51780181bf30a58696ea8fa2723f25b12fa6d7cfdc1effa810
 DIST genpatches-6.6-25.experimental.tar.xz 5756 BLAKE2B 
e15b7b7224015908e3a38937fe18d34119212ea82865f7cb2227693590e59fe075f29180862e63a8ae1f4fb55242e8eacd5fd2b9e03263448d058ccf2be492ef
 SHA512 
25525ee0b0829b56d8882794e08da22a944bfb4fdf4d4524c88cfaa24b870b017aa195a98cc6cd7ebe7540e11db4e5438a80566979c2da3781cbf7ca3ef12687
 DIST genpatches-6.6-25.extras.tar.xz 3704 BLAKE2B 
e7709d6dc9f02a24a5efff213e4357a25777364cce38387b5a12149915017cf229546993de40b4e2aaa6c107b1930f091e5399c14b660d07f3e73a1a6c4f287f
 SHA512 
babba6d4e397a1594d74dac9e588fe87ebc07523ddb5a8e4b23028043534a965d29a728cf7958da90e6544a3e1d0fc29de65542610f5ad513ca7d7edb5a89c5b

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



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

2024-03-12 Thread Mike Pagano
commit: ddba093142a14a6ed46d594f505c5ec59f99d905
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:21:22 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:21:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddba0931

sys-kernel/gentoo-sources: drop 6.6.17

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.6.17.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index add712e918ea..441141f565e3 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -26,9 +26,6 @@ DIST genpatches-6.1-90.extras.tar.xz 3812 BLAKE2B 
466c0b796df7406c228fd4dbad20f8
 DIST genpatches-6.6-16.base.tar.xz 750868 BLAKE2B 
13af5286f51a69dd0ad7b2543bcf0d933865e14c4c865e495f3225a8740bd7579858cbbd72a2099333e8dc241900c166730d4c812183f2636bf3d4049156a71b
 SHA512 
70864a69f8bdb28f8fa3515a33be510a2c529a5c3bc767aede2dae1c290869491d776336be9983259685af9fee2d2bc61c821d0103c47e91b69078bf81fe2c63
 DIST genpatches-6.6-16.experimental.tar.xz 5756 BLAKE2B 
48c2224ae8759ebbd36f8fb31e720b2df2d8c0a519ae5990e5d5947b04c7a1d0bf515fa2cf4316f3c84885ee643734da2cd4ea80ed6ee0bbdc73d12025d1c132
 SHA512 
81438179ea1d3a202a8631400727f854f938182118dcafddf7faedb12f2b69df834ac349d75cfe0ed84da422d7613d4a45723668ead5f076780d2c3236145cd4
 DIST genpatches-6.6-16.extras.tar.xz 3704 BLAKE2B 
a33d9a80926abd8318f124fa6aa25f7181b88a6965c17908232ef2b866a27a5e856e464895994599265e0e57d8e1f81561758df4670f25ef5694e5d5f535ba95
 SHA512 
8ee1686a16886320b698ac0e3767804fc9bbaf595335203fb2899c727a0ca0f3e551ac13b3cbb97cec8d91e77257aa1da75669f1c41d263960875e9d31303b1a
-DIST genpatches-6.6-23.base.tar.xz 1164692 BLAKE2B 
d42ccd9e636a413ffdbdb7dac699169f38b80617234b83b6ce49418f7dfd568f6d6718ce97a42b4df2f3ee1efa81df1a02102c123b88603dc558f72dd18af7e7
 SHA512 
1671b5d07294f73fe547a0cce8df38b5da78dc1596aa136190bae38d9eddc8b896c34e778eb80971336caa851c7d6c7640a59186cf1ecff26b89b69bdc9fb0da
-DIST genpatches-6.6-23.experimental.tar.xz 5756 BLAKE2B 
5fd9e6991b1fb7db932aac6cd9bdb19ea3f33d5249a4c55bced849dafbcba9cbe681e6d6bc328abb077fa4a7aad5be4bd8832561be58e356b178633feb061423
 SHA512 
d750cd39dba904c12d1b19b310c678a158a029eebd7fbd73b644973f8e6e3ddd9ad8aa2992ef84a3f838bdc1e0b85063b9e1e45d2fc139556e273bfd4abd7c0c
-DIST genpatches-6.6-23.extras.tar.xz 3704 BLAKE2B 
899c859be865bde37c41a2a24f1132f803404908002e0f01f28629ae0a03c2e1979f5239d495720c6de3ba7ba6032a5f74ae0e23bff10fe37f6f7ba31daab01c
 SHA512 
2ac88f95177413730b0668e0a33f8b27e04d9f7c42ee6fb2c9366efa06c95884e4b80ce3631105b73ae8b9ede0697b4859e92997e5059688698f96a0a2cbb129
 DIST genpatches-6.6-24.base.tar.xz 1263296 BLAKE2B 
16caebdd68cdf1d07c5f0e0429ee0fff5b95408a41bedd55c3e44b53fc242b73998020d781d51bdb35e42b680c4fd3f4cdbc6f5e65977ad099691ac2b25d5fc0
 SHA512 
f6cf1e79a6d9c4e050602a1bb5a41266129fa3b93250b158fce55a7df5eceb6134950816c055134310fa25f0d878afea11c9bce8950050f8723b1178896adcd5
 DIST genpatches-6.6-24.experimental.tar.xz 5752 BLAKE2B 
af597aecbd6dfd786287c05eb2d712957f6854a20aed8dfb3d2766fdc32f2d01608cc0c08617042980a306d554b74de5eaa5b6921cfe0d987a85b52444008db6
 SHA512 
26fc39dd1aa93165cb48217f95d5f552fe83b1841bc7e582282588b0d16046a2216c61380444c75e0a1a90ad33304aa1cf8b1566e3187dd46ea8f5b6a882c10a
 DIST genpatches-6.6-24.extras.tar.xz 3704 BLAKE2B 
2908fc01a54469d0b99c12b76e11a67af3251391e5f6cb7125a63d54abb681acd11f54ea26702e964a5785fa1a2557111ab9bea13c4e9a32cf4549c246b34edb
 SHA512 
f72cf8aadaad8cff309a6030e98e29534e86c75665895d53772d3fa783df2939d74e449e1e0adb136349f7e281cc158153380d862cbbf6a3ac4916ef4b8da6e0

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



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

2024-03-12 Thread Mike Pagano
commit: 14262a7fd1561bffd9ed0e721c3f9998da8e2242
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:21:40 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:21:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14262a7f

sys-kernel/gentoo-sources: drop 6.6.19

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.6.19.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index e554bc969dfe..0299ce8bf621 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -26,9 +26,6 @@ DIST genpatches-6.1-90.extras.tar.xz 3812 BLAKE2B 
466c0b796df7406c228fd4dbad20f8
 DIST genpatches-6.6-16.base.tar.xz 750868 BLAKE2B 
13af5286f51a69dd0ad7b2543bcf0d933865e14c4c865e495f3225a8740bd7579858cbbd72a2099333e8dc241900c166730d4c812183f2636bf3d4049156a71b
 SHA512 
70864a69f8bdb28f8fa3515a33be510a2c529a5c3bc767aede2dae1c290869491d776336be9983259685af9fee2d2bc61c821d0103c47e91b69078bf81fe2c63
 DIST genpatches-6.6-16.experimental.tar.xz 5756 BLAKE2B 
48c2224ae8759ebbd36f8fb31e720b2df2d8c0a519ae5990e5d5947b04c7a1d0bf515fa2cf4316f3c84885ee643734da2cd4ea80ed6ee0bbdc73d12025d1c132
 SHA512 
81438179ea1d3a202a8631400727f854f938182118dcafddf7faedb12f2b69df834ac349d75cfe0ed84da422d7613d4a45723668ead5f076780d2c3236145cd4
 DIST genpatches-6.6-16.extras.tar.xz 3704 BLAKE2B 
a33d9a80926abd8318f124fa6aa25f7181b88a6965c17908232ef2b866a27a5e856e464895994599265e0e57d8e1f81561758df4670f25ef5694e5d5f535ba95
 SHA512 
8ee1686a16886320b698ac0e3767804fc9bbaf595335203fb2899c727a0ca0f3e551ac13b3cbb97cec8d91e77257aa1da75669f1c41d263960875e9d31303b1a
-DIST genpatches-6.6-25.base.tar.xz 1351392 BLAKE2B 
e1f5df7796f7d50a244c37d2b5e4eecdeb1d46cf25f6dc51567c6abd729aad142266fa430350e7efdd3995c02d6f8cc6ff85429fa7a019f8f9ed1a9ca2fc9b7f
 SHA512 
a548b1552c6e89b0d9736a2d2e282eda7686a0cf781c8d3445d7394ffdabb2c16c69dcaea0341f51780181bf30a58696ea8fa2723f25b12fa6d7cfdc1effa810
-DIST genpatches-6.6-25.experimental.tar.xz 5756 BLAKE2B 
e15b7b7224015908e3a38937fe18d34119212ea82865f7cb2227693590e59fe075f29180862e63a8ae1f4fb55242e8eacd5fd2b9e03263448d058ccf2be492ef
 SHA512 
25525ee0b0829b56d8882794e08da22a944bfb4fdf4d4524c88cfaa24b870b017aa195a98cc6cd7ebe7540e11db4e5438a80566979c2da3781cbf7ca3ef12687
-DIST genpatches-6.6-25.extras.tar.xz 3704 BLAKE2B 
e7709d6dc9f02a24a5efff213e4357a25777364cce38387b5a12149915017cf229546993de40b4e2aaa6c107b1930f091e5399c14b660d07f3e73a1a6c4f287f
 SHA512 
babba6d4e397a1594d74dac9e588fe87ebc07523ddb5a8e4b23028043534a965d29a728cf7958da90e6544a3e1d0fc29de65542610f5ad513ca7d7edb5a89c5b
 DIST genpatches-6.6-26.base.tar.xz 1351444 BLAKE2B 
bd2e2537ac035b995af057c1ffebaaa92aeaf90114f97ceec5265f7ae6ea079b2343f91a43380d36a2ec6203825277d347c847ebb6618a416e99e5781d8cb152
 SHA512 
a6d5adcf5a200d084e7dd894f57c020df04f8706b2a2273456056746e685ac10b6aadd1c2689c865c43740ee67c2241459254549df1ba2894982c2b658e5783e
 DIST genpatches-6.6-26.experimental.tar.xz 5752 BLAKE2B 
14c448982a4c5698ef3ba9dd6a494740174a0ad3d1d2dba4e6969b7569a92fc48a6113602324bfb5566e057eddc06d1a3cd9cf5293601e4862a6e799cbb24d6b
 SHA512 
71f16b18d7e9534752b1239c9459802e1fbce0f149b502785b84984329c5e0aef1033777b1d4283c1beaff5c01eb04a55c24988b60f01456857cf7e1d67e9207
 DIST genpatches-6.6-26.extras.tar.xz 3704 BLAKE2B 
b6d1a4bc51f88b0fba94255616131cc32f2b0cc637f1dada7cd8276dc5e351f8da3a0e9d93005a6b98830569ad4396c49e0f4375f28e35fd94bd59140847b23a
 SHA512 
9e7c00f9a70caea318e25d239708b5236dde70551f99f9f5fda9d74c5978b9cfecc7e2720d04be739238e2b8ae579cc96fb01e1f7857ecb997a79784ee78e2ce

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



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pari/

2024-03-12 Thread Michael Orlitzky
commit: af573170eb7607085446887877552fd5de0f76d9
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Tue Mar 12 16:06:44 2024 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Tue Mar 12 18:39:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af573170

sci-mathematics/pari: add 2.15.5

Signed-off-by: Michael Orlitzky  gentoo.org>

 sci-mathematics/pari/Manifest   |   1 +
 sci-mathematics/pari/pari-2.15.5.ebuild | 137 
 2 files changed, 138 insertions(+)

diff --git a/sci-mathematics/pari/Manifest b/sci-mathematics/pari/Manifest
index c96e983220ff..ec03f2e00668 100644
--- a/sci-mathematics/pari/Manifest
+++ b/sci-mathematics/pari/Manifest
@@ -1 +1,2 @@
 DIST pari-2.15.4.tar.gz 5183685 BLAKE2B 
2e20b6dc073ce69bc098dd849e6ab43cb38b05d30ff5f72a31272cd24ef01aa515d4e2a4948264ca89169a6980cd9d76f86c7fbb9aad5be604680569950d9c25
 SHA512 
2b9f0c1fe7198406df8e6ceb3fcdc8bfb75f5c7ebfb963f023a1eebfff0bcc26e3b690941e188d6b9f8dfb6cddf4ce4c00f2cc320ebe47d42ae7596c774ed6cc
+DIST pari-2.15.5.tar.gz 5186798 BLAKE2B 
b253c6d8ad38462e81852d7bb364d06a7cbaae7b085672653da8d9f91f0173cfdef8f537ebc7313b6484f610d43e10fb0547f5d920789b95c8d0027dd52e8312
 SHA512 
59b2ebed43176f1ee750146053644bffbf673b4b4810134bc39132665941152772afb7a9332b842fc64e5ab8d5747a872c1b8ff327d3bd5eedaa1591691fff13

diff --git a/sci-mathematics/pari/pari-2.15.5.ebuild 
b/sci-mathematics/pari/pari-2.15.5.ebuild
new file mode 100644
index ..6c8fe6f9b29e
--- /dev/null
+++ b/sci-mathematics/pari/pari-2.15.5.ebuild
@@ -0,0 +1,137 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Computer-aided number theory C library and tools"
+HOMEPAGE="https://pari.math.u-bordeaux.fr/;
+SRC_URI="https://pari.math.u-bordeaux.fr/pub/${PN}/unix/${P}.tar.gz;
+
+# Their LICENSE file says "or (at your option) any later version"
+LICENSE="GPL-2+"
+
+# The subslot is the value of $soname_num obtained from
+# upstream's config/version script.
+SLOT="0/8"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+IUSE="data doc examples fltk gmp test threads X"
+REQUIRED_USE="fltk? ( !X )" # mutually exclusive plot implementations
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   virtual/pkgconfig
+   doc? ( virtual/latex-base )
+"
+DEPEND="
+   sys-libs/readline:0=
+   data? ( sci-mathematics/pari-data )
+   doc? ( X? ( x11-misc/xdg-utils ) )
+   fltk? ( x11-libs/fltk:1= )
+   gmp? ( dev-libs/gmp:0= )
+   X? ( x11-libs/libX11:0= )"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   # move doc dir to a gentoo doc dir and replace acroread by xdg-open
+   sed -i \
+   -e "s:\$d = \$0:\$d = '${EPREFIX}/usr/share/doc/${PF}':" \
+   -e 's:"acroread":"xdg-open":' \
+   doc/gphelp.in || die "Failed to fix doc dir"
+
+   # These tests fail when LaTeX is not installed (which we don't
+   # require without USE=doc), most likely due to output formatting
+   # issues but I haven't deleted my LaTeX installation to check.
+   # There's no real upstream support for enabling/disabling the LaTeX
+   # docs, so this is probably the correctest way to skip these tests.
+   if ! use doc; then
+   rm src/test/{in,32}/help || die
+   fi
+}
+
+src_configure() {
+   tc-export CC CXX PKG_CONFIG
+
+   # Workaraound to "asm operand has impossible constraints" as
+   # suggested in bug #46.
+   use x86 && append-cflags $(test-flags-CC -fno-stack-check)
+
+   # sysdatadir installs a pari.cfg stuff which is informative only.
+   # It is supposed to be for "architecture-dependent" data.  It needs
+   # to be easily discoverable for downstream packages such as gp2c.
+   # We set LD="" and DLLD="$CC" so that the "shared library linker"
+   # always gets set to the value of the compiler used. Pari's build
+   # system does not cope very well with a naked linker, it is
+   # expecting a compiler driver. See bugs 722090 and 871117.
+   # DLLDFLAGS, on the other hand, is used exactly like LDFLAGS would
+   # be in a less-weird build system.
+   #
+   # There's a lot of automagic involved in the graphics detection.  We
+   # first pass --graphic=none, which disables some of it. We then pass
+   # --graphic=fltk (or --graphic=X11) only if USE=fltk (or USE=X) is
+   # set. This is a stronger hint to the build system than --with-fltk
+   # would be, and importantly does not rely on the corresponding but
+   # nonexistent(!) option option for X11.
+   LD="" DLLD="$(tc-getCC)" DLLDFLAGS="${LDFLAGS}" ./Configure \
+   --prefix="${EPREFIX}"/usr \
+   --datadir="${EPREFIX}/usr/share/${PN}" \
+   --libdir="${EPREFIX}/usr/$(get_libdir)" \
+  

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

2024-03-12 Thread Florian Schmaus
commit: f38ed16bd83f84025945271f3a6d660ab0438bfa
Author: Florian Schmaus  gentoo  org>
AuthorDate: Tue Mar 12 19:26:57 2024 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Tue Mar 12 19:31:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f38ed16b

net-im/ejabberd: pass --with-rebar=rebar to use rebar 2

ejabberd 24.02 started to use rebar 3 as default build system. This
broke the ebuild, since rebar.eclass sill uses rebar 2. Passing
--with-rebar=rebar switches this back to rebar 2.

Thanks to Holger Weiß for pointing this out.

Closes: https://bugs.gentoo.org/926799
Signed-off-by: Florian Schmaus  gentoo.org>

 net-im/ejabberd/{ejabberd-24.02.ebuild => ejabberd-24.02-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-im/ejabberd/ejabberd-24.02.ebuild 
b/net-im/ejabberd/ejabberd-24.02-r1.ebuild
similarity index 99%
rename from net-im/ejabberd/ejabberd-24.02.ebuild
rename to net-im/ejabberd/ejabberd-24.02-r1.ebuild
index 1a918b3c7001..c6595ebb5cd8 100644
--- a/net-im/ejabberd/ejabberd-24.02.ebuild
+++ b/net-im/ejabberd/ejabberd-24.02-r1.ebuild
@@ -122,6 +122,7 @@ src_configure() {
--docdir="${EPREFIX}/usr/share/doc/${PF}/html" \
--localstatedir="${EPREFIX}/var" \
--enable-user=${PN} \
+   --with-rebar=rebar \
$(use_enable debug) \
$(use_enable full-xml) \
$(use_enable mssql) \



[gentoo-commits] proj/pkgcore/pkgdev:main commit in: src/pkgdev/scripts/

2024-03-12 Thread Arthur Zamarin
commit: e1646fa6ccf350b3dd030ca52208db1c458344c9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:48:46 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:48:46 2024 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgdev.git/commit/?id=e1646fa6

tatt: test run should be after the use combinations

Resolves: https://github.com/pkgcore/pkgdev/issues/174
Signed-off-by: Arthur Zamarin  gentoo.org>

 src/pkgdev/scripts/pkgdev_tatt.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/pkgdev/scripts/pkgdev_tatt.py 
b/src/pkgdev/scripts/pkgdev_tatt.py
index ff88d25..5a76b54 100644
--- a/src/pkgdev/scripts/pkgdev_tatt.py
+++ b/src/pkgdev/scripts/pkgdev_tatt.py
@@ -314,12 +314,12 @@ def _build_job(namespace, pkg, is_test: bool):
 
 def _build_jobs(namespace, pkgs):
 for pkg in pkgs:
-if namespace.test and "test" in pkg.defined_phases:
-yield pkg.versioned_atom, True, next(iter(_build_job(namespace, 
pkg, True)))
-
 for flags in islice(_build_job(namespace, pkg, False), 
namespace.use_combos):
 yield pkg.versioned_atom, False, flags
 
+if namespace.test and "test" in pkg.defined_phases:
+yield pkg.versioned_atom, True, next(iter(_build_job(namespace, 
pkg, True)))
+
 
 def _create_config_dir(directory: Path):
 if not directory.exists():



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

2024-03-12 Thread Craig Andrews
commit: edf3cb671fa5226f04bdaa6c4155732ab6275aad
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Mar 12 20:10:16 2024 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Mar 12 20:10:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edf3cb67

net-libs/quiche: drop 0.20.0

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

 net-libs/quiche/Manifest |  50 ---
 net-libs/quiche/quiche-0.20.0.ebuild | 263 ---
 2 files changed, 313 deletions(-)

diff --git a/net-libs/quiche/Manifest b/net-libs/quiche/Manifest
index 91cbfc511760..7e4e9b29a946 100644
--- a/net-libs/quiche/Manifest
+++ b/net-libs/quiche/Manifest
@@ -8,29 +8,21 @@ DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856
 DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 DIST backtrace-0.3.37.crate 67955 BLAKE2B 
af9deeda806a9c47084df102ed6f5e6d57a81db9ac410678684c7026069be43bc4efd15bbf4b042d5aea9d85d619168484396d1dfc2ed83a69eeb29d750b6158
 SHA512 
d32ef8fa11cffeee298f7468f8f9b6d3492cdd805679fa72600115df7dd7e0ae65378ed7aa767a75a90743e278018cfb9631842e7eb633869d77485405dc520b
 DIST backtrace-sys-0.1.31.crate 518877 BLAKE2B 
397f3c4053eeabd7216c4373e6457637e22ee124d8a864c2587a78ebd8d619745dece654357cb9cd970ee20d7c41d53c84ecb3ed92beefaacbcfddfaca804ce5
 SHA512 
6aa8c7a2694f4e953a0e9bbd07dc8b7e218719de5aef2adaecfae81beb919deffde6f184675dc6b6c1a330bb81dc9611c256f7f63caef5e301101dbe3bbaafe0
-DIST base64-0.21.5.crate 77134 BLAKE2B 
901cf92d7dd8af2bbb789ffbe60972c1fd295b16690ecebbcb500e4613afa057ab2b294bbafdcaa4007f46412825260a0711d89e55664418a503dde02c8afd1a
 SHA512 
40b1d8470a932c8b7f31717e33bf26742c1bf920caae639b8a992f77e64d5e6d287569742c1348daa25b7325f8ca8d8a312754a743dab3932181f37149d91b16
 DIST base64-0.21.7.crate 82576 BLAKE2B 
25cc8761c14220981ff4ed332058f6179948080cbfa2b225ec1d1602e4af14cd470c969e8b7049117e6fc51a5a24e06b1d27bab844486ecb76409d12e0581d5d
 SHA512 
c6986d88dd9aa081d914f35b4174be4ba874848657ac4b5e63b9b45af765d973289c548ccb5a01584edfc0d8d79ff5be25b51365295d6e7a311bd7f0ae3c0cb9
 DIST bindgen-0.68.1.crate 218997 BLAKE2B 
e3706a992c166c16cd8b8ef996b2eba6a0d67f493825e7257ba660f597de33002a32df7fea0fc2508fb47155f70ace0765e9ac4e4649d1f24b2bbac8ecf06d8f
 SHA512 
29520e30db93ef3e239273854c926eba7bbbe2ec70e5162a4722e03947461510732319bfcfc20d5dfc0df137d69e8c1ad97daa0236c5bd4da8a1679bfd696a90
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
-DIST bitflags-2.4.1.crate 37043 BLAKE2B 
f61c45b142265e9c2944c7054e01704de47510735e9ee5351cd02b98676cc4eb42d68b1fc4849ad5f54654617a74f20cb533b4207c2fe76516b724ba9318b414
 SHA512 
d3fd7abc95acc1cb5bf16d6acc12dbb8eadd250f069268df13c2e8dc3d5f5c15a929cd17ca931c77393b64dce0516ef8674c469789ed32d78e315b5faada062b
 DIST bitflags-2.4.2.crate 42602 BLAKE2B 
768d4ca52aca73d8acf2f494a66957ed2603eefd5a04332ed0880d230c2cc6ef3bfdc0792fa6f288a0eb132913dbb256793e580bc34f4a40e8200e1fbafe97a9
 SHA512 
ef4c20e6e78a2ecee97e17189b7100a504d8176c7c15d7f17d62157a116d66f83f8b2bba472a4acf02cd3edbd94b20a7047af918c3f3b371e2e04f7474be0214
-DIST boring-4.1.0.crate 173949 BLAKE2B 
2cf1d79e3cbe7903fad3a141300a54744d97f57a6278a6c44ff24c840a9b85e4c96538b11737b709afcd81f8aca4dffb50eecc5275f6bbd88fd76cfea9f6ca0d
 SHA512 
4f6815d1fb713a868300f0ce806c44f71e526c454f2181775018f6bac91bbfceaf78e3411570a6ae095835e941d6270f335d378f82d45794c34a3a69681cf548
 DIST boring-4.5.0.crate 187016 BLAKE2B 
3bf72d71a2abc4f8f0fc239cfb1feda5f605344d807c68c3f337ae5294bcb0838219bcdf127faa083ce47a573b57f45bb50f630af9031ceea74b556c0c290319
 SHA512 
a2b10dd2153e5e75517faf584d70a025ccea9b2fcca208b341f088c8f75eaca23e84ae9ce6e2d117a996d4da59e49d9acc965d8ea8b42425e706bf18aa121384
-DIST boring-sys-4.1.0.crate 7086189 BLAKE2B 
ec48b67e4b3a6b499cd58d9d26ac5a844028381b2a05a32b9f6e9abe8e1c0afa25f787310fa64789f1b892f927221e9b597d607d113ae32604ae30a0b49c2e42
 SHA512 
efa91f78cae42f7087cb4be150ab1487e6d3c076e2971541a0803ec86d6ac2ef59f53b7404028c518d06b26505a0cbeef71c42b11e61b147dcba2c436ca76794
 DIST boring-sys-4.5.0.crate 7087202 BLAKE2B 
8ca32a9a9a7e9407958c8a1c38de8ea989689695ed25e87ab10cd50d8e7a3db261ed5770038058e9956c1992a7d3492c25f5add6e66e2cc003aee48d6435401d
 SHA512 
9e3df2dc435e3a409fefe2d02d06674825c02981d312130d003381818891769094d798f9df1a47d0ef6192bbebb478bb1f630eea726875a7b05676146627a939
 DIST bstr-0.2.12.crate 344435 BLAKE2B 

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

2024-03-12 Thread Craig Andrews
commit: c1363a6635020bedd200c80e248424ab3cba0e8e
Author: Craig Andrews  gentoo  org>
AuthorDate: Tue Mar 12 20:09:52 2024 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Tue Mar 12 20:10:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1363a66

net-libs/quiche: add 0.20.1

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

 net-libs/quiche/Manifest   |  60 +++
 .../{quiche-.ebuild => quiche-0.20.1.ebuild}   | 110 +++--
 net-libs/quiche/quiche-.ebuild | 110 +++--
 3 files changed, 180 insertions(+), 100 deletions(-)

diff --git a/net-libs/quiche/Manifest b/net-libs/quiche/Manifest
index 5dd2e29efd90..91cbfc511760 100644
--- a/net-libs/quiche/Manifest
+++ b/net-libs/quiche/Manifest
@@ -9,21 +9,29 @@ DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c5
 DIST backtrace-0.3.37.crate 67955 BLAKE2B 
af9deeda806a9c47084df102ed6f5e6d57a81db9ac410678684c7026069be43bc4efd15bbf4b042d5aea9d85d619168484396d1dfc2ed83a69eeb29d750b6158
 SHA512 
d32ef8fa11cffeee298f7468f8f9b6d3492cdd805679fa72600115df7dd7e0ae65378ed7aa767a75a90743e278018cfb9631842e7eb633869d77485405dc520b
 DIST backtrace-sys-0.1.31.crate 518877 BLAKE2B 
397f3c4053eeabd7216c4373e6457637e22ee124d8a864c2587a78ebd8d619745dece654357cb9cd970ee20d7c41d53c84ecb3ed92beefaacbcfddfaca804ce5
 SHA512 
6aa8c7a2694f4e953a0e9bbd07dc8b7e218719de5aef2adaecfae81beb919deffde6f184675dc6b6c1a330bb81dc9611c256f7f63caef5e301101dbe3bbaafe0
 DIST base64-0.21.5.crate 77134 BLAKE2B 
901cf92d7dd8af2bbb789ffbe60972c1fd295b16690ecebbcb500e4613afa057ab2b294bbafdcaa4007f46412825260a0711d89e55664418a503dde02c8afd1a
 SHA512 
40b1d8470a932c8b7f31717e33bf26742c1bf920caae639b8a992f77e64d5e6d287569742c1348daa25b7325f8ca8d8a312754a743dab3932181f37149d91b16
+DIST base64-0.21.7.crate 82576 BLAKE2B 
25cc8761c14220981ff4ed332058f6179948080cbfa2b225ec1d1602e4af14cd470c969e8b7049117e6fc51a5a24e06b1d27bab844486ecb76409d12e0581d5d
 SHA512 
c6986d88dd9aa081d914f35b4174be4ba874848657ac4b5e63b9b45af765d973289c548ccb5a01584edfc0d8d79ff5be25b51365295d6e7a311bd7f0ae3c0cb9
 DIST bindgen-0.68.1.crate 218997 BLAKE2B 
e3706a992c166c16cd8b8ef996b2eba6a0d67f493825e7257ba660f597de33002a32df7fea0fc2508fb47155f70ace0765e9ac4e4649d1f24b2bbac8ecf06d8f
 SHA512 
29520e30db93ef3e239273854c926eba7bbbe2ec70e5162a4722e03947461510732319bfcfc20d5dfc0df137d69e8c1ad97daa0236c5bd4da8a1679bfd696a90
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
 DIST bitflags-2.4.1.crate 37043 BLAKE2B 
f61c45b142265e9c2944c7054e01704de47510735e9ee5351cd02b98676cc4eb42d68b1fc4849ad5f54654617a74f20cb533b4207c2fe76516b724ba9318b414
 SHA512 
d3fd7abc95acc1cb5bf16d6acc12dbb8eadd250f069268df13c2e8dc3d5f5c15a929cd17ca931c77393b64dce0516ef8674c469789ed32d78e315b5faada062b
+DIST bitflags-2.4.2.crate 42602 BLAKE2B 
768d4ca52aca73d8acf2f494a66957ed2603eefd5a04332ed0880d230c2cc6ef3bfdc0792fa6f288a0eb132913dbb256793e580bc34f4a40e8200e1fbafe97a9
 SHA512 
ef4c20e6e78a2ecee97e17189b7100a504d8176c7c15d7f17d62157a116d66f83f8b2bba472a4acf02cd3edbd94b20a7047af918c3f3b371e2e04f7474be0214
 DIST boring-4.1.0.crate 173949 BLAKE2B 
2cf1d79e3cbe7903fad3a141300a54744d97f57a6278a6c44ff24c840a9b85e4c96538b11737b709afcd81f8aca4dffb50eecc5275f6bbd88fd76cfea9f6ca0d
 SHA512 
4f6815d1fb713a868300f0ce806c44f71e526c454f2181775018f6bac91bbfceaf78e3411570a6ae095835e941d6270f335d378f82d45794c34a3a69681cf548
+DIST boring-4.5.0.crate 187016 BLAKE2B 
3bf72d71a2abc4f8f0fc239cfb1feda5f605344d807c68c3f337ae5294bcb0838219bcdf127faa083ce47a573b57f45bb50f630af9031ceea74b556c0c290319
 SHA512 
a2b10dd2153e5e75517faf584d70a025ccea9b2fcca208b341f088c8f75eaca23e84ae9ce6e2d117a996d4da59e49d9acc965d8ea8b42425e706bf18aa121384
 DIST boring-sys-4.1.0.crate 7086189 BLAKE2B 
ec48b67e4b3a6b499cd58d9d26ac5a844028381b2a05a32b9f6e9abe8e1c0afa25f787310fa64789f1b892f927221e9b597d607d113ae32604ae30a0b49c2e42
 SHA512 
efa91f78cae42f7087cb4be150ab1487e6d3c076e2971541a0803ec86d6ac2ef59f53b7404028c518d06b26505a0cbeef71c42b11e61b147dcba2c436ca76794
+DIST boring-sys-4.5.0.crate 7087202 BLAKE2B 
8ca32a9a9a7e9407958c8a1c38de8ea989689695ed25e87ab10cd50d8e7a3db261ed5770038058e9956c1992a7d3492c25f5add6e66e2cc003aee48d6435401d
 SHA512 
9e3df2dc435e3a409fefe2d02d06674825c02981d312130d003381818891769094d798f9df1a47d0ef6192bbebb478bb1f630eea726875a7b05676146627a939
 DIST bstr-0.2.12.crate 344435 BLAKE2B 
b55a55be4875d9aefcff0091be82d80a19c1c92d5d6e17b751dd41bebd37f6a5f72d884fa8a70e829905baf3526ce4d854b162d10d894573dd2801ed030460e9
 SHA512 
2d14ac85274814bb29439acf67c3aaf84ac32ad361dd6d2cbca58bf571c968f594eeb1443a632b625296929b84047652fc60ec39983c110737ba1950d88bce89
 DIST bumpalo-3.14.0.crate 82400 BLAKE2B 

[gentoo-commits] proj/pkgcore/pkgdev:main commit in: /

2024-03-12 Thread Arthur Zamarin
commit: e069b77efbebf617961a3b17690c3fd366b32ca9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 20:03:44 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 20:03:44 2024 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgdev.git/commit/?id=e069b77e

new release 0.2.10

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

 NEWS.rst | 15 +++
 1 file changed, 15 insertions(+)

diff --git a/NEWS.rst b/NEWS.rst
index 0278817..70e8399 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,21 @@
 Release Notes
 =
 
+pkgdev 0.2.10 (2024-03-12)
+-
+
+**Fixed bugs:**
+
+- bugs: don't crash when package isn't found in git history (Arthur Zamarin)
+
+- tatt: fix ``required_use`` for packages from bug's package list (Arthur
+  Zamarin)
+
+- tatt: test run should be after the use combinations (Arthur Zamarin, #174)
+
+- bash-completion: fix missing args for "bugs" and mistake for "mask" (Arthur
+  Zamarin)
+
 pkgdev 0.2.9 (2024-02-08)
 -
 



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

2024-03-12 Thread Mike Pagano
commit: f062c89f28bfff7c54cb71f13c919496cc24ba5e
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:16:38 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:16:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f062c89f

sys-kernel/linux-firmware: drop 20240115-r3

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

 sys-kernel/linux-firmware/Manifest |   1 -
 .../linux-firmware-20240115-r3.ebuild  | 401 -
 2 files changed, 402 deletions(-)

diff --git a/sys-kernel/linux-firmware/Manifest 
b/sys-kernel/linux-firmware/Manifest
index 8eb62357563e..65b6c7c1867f 100644
--- a/sys-kernel/linux-firmware/Manifest
+++ b/sys-kernel/linux-firmware/Manifest
@@ -1,3 +1,2 @@
-DIST linux-firmware-20240115.tar.xz 363994604 BLAKE2B 
00a0874cfbafe0fe57a841510c71e54e836efad65564b7fa30c334c2bcf909e235129035a6fa4ba090089492fb07beab945be82b3801ce8353fca20fa426ac85
 SHA512 
65100216a0dbe97ea0cdf3104dd59c95cafe883bd8c2a40f9369acb55d6f7260c1b51f233987d2f89cce93b2a952721a0484a6314cda49455986c597ff2050dd
 DIST linux-firmware-20240220.tar.xz 368128968 BLAKE2B 
6eefe70f8b55619d58b2ed538cd3eb85e013e231d1cb474fefc48f8af6a2f61a763ef73793eed30e17c67fd83a80b9c91f0af6c7b049861fa57c088dc9604d71
 SHA512 
faa4fbe3556b67e2adc9afebb8a3909ac853eeb0b9b43eafe1aa9144e633a6356e11af7c3ee008e654ae928dd2ffcd4261bee3e63a3bee4cae7cd3b442916299
 DIST linux-firmware-20240312.tar.xz 370815780 BLAKE2B 
576b1e9fe6a181e2ae6776272e8dae0fd5d2cf87c9333f27c1388641fe94c39ae2b546ec49930b105994103f86d9f6754929fecb713902c7e18fc887f955d56e
 SHA512 
8c71b035b276350274084a1a893e44839a9c6496626a09c07c5cbf26df80c695c611d97d2d310f3f3cbb8052d4ce79a1b7a85fbeb295d8bcba53d4ae78b17fa1

diff --git a/sys-kernel/linux-firmware/linux-firmware-20240115-r3.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20240115-r3.ebuild
deleted file mode 100644
index 248bf3895d8e..
--- a/sys-kernel/linux-firmware/linux-firmware-20240115-r3.ebuild
+++ /dev/null
@@ -1,401 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit linux-info mount-boot savedconfig multiprocessing
-
-# In case this is a real snapshot, fill in commit below.
-# For normal, tagged releases, leave blank
-MY_COMMIT=""
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   
EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git;
-else
-   if [[ -n "${MY_COMMIT}" ]]; then
-   
SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/${MY_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/${MY_COMMIT}"
-   else
-   
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz;
-   fi
-
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-DESCRIPTION="Linux firmware files"
-HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;
-
-LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
-   redistributable? ( linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT )
-   unknown-license? ( all-rights-reserved )"
-SLOT="0"
-IUSE="compress-xz compress-zstd deduplicate initramfs +redistributable 
savedconfig unknown-license"
-REQUIRED_USE="initramfs? ( redistributable )
-   ?? ( compress-xz compress-zstd )
-   savedconfig? ( !deduplicate )"
-
-RESTRICT="binchecks strip test
-   unknown-license? ( bindist )"
-
-BDEPEND="initramfs? ( app-alternatives/cpio )
-   compress-xz? ( app-arch/xz-utils )
-   compress-zstd? ( app-arch/zstd )
-   deduplicate? ( app-misc/rdfind )"
-
-#add anything else that collides to this
-RDEPEND="!savedconfig? (
-   redistributable? (
-   !sys-firmware/alsa-firmware[alsa_cards_ca0132]
-   !sys-block/qla-fc-firmware
-   !sys-firmware/iwl1000-ucode
-   !sys-firmware/iwl6005-ucode
-   !sys-firmware/iwl6030-ucode
-   !sys-firmware/iwl3160-ucode
-   !sys-firmware/iwl7260-ucode
-   !sys-firmware/iwl3160-7260-bt-ucode
-   !sys-firmware/raspberrypi-wifi-ucode
-   )
-   unknown-license? (
-   !sys-firmware/alsa-firmware[alsa_cards_korg1212]
-   !sys-firmware/alsa-firmware[alsa_cards_maestro3]
-   !sys-firmware/alsa-firmware[alsa_cards_sb16]
-   !sys-firmware/alsa-firmware[alsa_cards_ymfpci]
-   )
-   )"
-
-QA_PREBUILT="*"
-PATCHES=( "${FILESDIR}"/${PN}-copy-firmware-r3.patch )

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

2024-03-12 Thread Mike Pagano
commit: db3d68f8c8c874265ca345209874412a16f0975d
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:16:30 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:16:42 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3d68f8

sys-kernel/linux-firmware: drop 20240115

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

 .../linux-firmware/linux-firmware-20240115.ebuild  | 407 -
 1 file changed, 407 deletions(-)

diff --git a/sys-kernel/linux-firmware/linux-firmware-20240115.ebuild 
b/sys-kernel/linux-firmware/linux-firmware-20240115.ebuild
deleted file mode 100644
index c8c97f428164..
--- a/sys-kernel/linux-firmware/linux-firmware-20240115.ebuild
+++ /dev/null
@@ -1,407 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit linux-info mount-boot savedconfig multiprocessing
-
-# In case this is a real snapshot, fill in commit below.
-# For normal, tagged releases, leave blank
-MY_COMMIT=""
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   
EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/${PN}.git;
-else
-   if [[ -n "${MY_COMMIT}" ]]; then
-   
SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/${MY_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   S="${WORKDIR}/${MY_COMMIT}"
-   else
-   
SRC_URI="https://mirrors.edge.kernel.org/pub/linux/kernel/firmware/${P}.tar.xz;
-   fi
-
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Linux firmware files"
-HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git;
-
-LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 )
-   redistributable? ( linux-fw-redistributable BSD-2 BSD BSD-4 ISC MIT )
-   unknown-license? ( all-rights-reserved )"
-SLOT="0"
-IUSE="compress-xz compress-zstd deduplicate initramfs +redistributable 
savedconfig unknown-license"
-REQUIRED_USE="initramfs? ( redistributable )
-   ?? ( compress-xz compress-zstd )
-   savedconfig? ( !deduplicate )"
-
-RESTRICT="binchecks strip test
-   unknown-license? ( bindist )"
-
-BDEPEND="initramfs? ( app-alternatives/cpio )
-   compress-xz? ( app-arch/xz-utils )
-   compress-zstd? ( app-arch/zstd )
-   deduplicate? ( app-misc/rdfind )"
-
-#add anything else that collides to this
-RDEPEND="!savedconfig? (
-   redistributable? (
-   !sys-firmware/alsa-firmware[alsa_cards_ca0132]
-   !sys-block/qla-fc-firmware
-   !sys-firmware/iwl1000-ucode
-   !sys-firmware/iwl6005-ucode
-   !sys-firmware/iwl6030-ucode
-   !sys-firmware/iwl3160-ucode
-   !sys-firmware/iwl7260-ucode
-   !sys-firmware/iwl3160-7260-bt-ucode
-   !sys-firmware/raspberrypi-wifi-ucode
-   )
-   unknown-license? (
-   !sys-firmware/alsa-firmware[alsa_cards_korg1212]
-   !sys-firmware/alsa-firmware[alsa_cards_maestro3]
-   !sys-firmware/alsa-firmware[alsa_cards_sb16]
-   !sys-firmware/alsa-firmware[alsa_cards_ymfpci]
-   )
-   )"
-
-QA_PREBUILT="*"
-
-pkg_setup() {
-   if use compress-xz || use compress-zstd ; then
-   local CONFIG_CHECK
-
-   if kernel_is -ge 5 19; then
-   use compress-xz && CONFIG_CHECK="~FW_LOADER_COMPRESS_XZ"
-   use compress-zstd && 
CONFIG_CHECK="~FW_LOADER_COMPRESS_ZSTD"
-   else
-   use compress-xz && CONFIG_CHECK="~FW_LOADER_COMPRESS"
-   if use compress-zstd; then
-   eerror "Kernels <5.19 do not support 
ZSTD-compressed firmware files"
-   fi
-   fi
-   linux-info_pkg_setup
-   fi
-}
-
-pkg_pretend() {
-   use initramfs && mount-boot_pkg_pretend
-}
-
-src_unpack() {
-   if [[ ${PV} == * ]]; then
-   git-r3_src_unpack
-   else
-   default
-   # rename directory from git snapshot tarball
-   if [[ ${#GIT_COMMIT} -gt 8 ]]; then
-   mv ${PN}-*/ ${P} || die
-   fi
-   fi
-}
-
-src_prepare() {
-
-   default
-
-   find . -type f -not -perm 0644 -print0 \
-   | xargs --null --no-run-if-empty chmod 0644 \
-   || die
-
-   chmod +x copy-firmware.sh || die
-
-   if use initramfs; then
-   if [[ -d "${S}/amd-ucode" ]]; then
-   local UCODETMP="${T}/ucode_tmp"
-   local UCODEDIR="${UCODETMP}/kernel/x86/microcode"
-   mkdir 

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

2024-03-12 Thread Mike Pagano
commit: 85c963e466d50da05f559f80f94fcb6bf693f2cc
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:18:18 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:18:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85c963e4

sys-kernel/gentoo-sources: drop 5.15.148

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-5.15.148.ebuild  | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 47d054a7f363..747fa1121650 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -10,9 +10,6 @@ DIST genpatches-5.10-223.extras.tar.xz 3872 BLAKE2B 
26ea7a17b505ef6ba61301999d96
 DIST genpatches-5.15-156.base.tar.xz 6004636 BLAKE2B 
f70c2a3bfc3d65fea8d4764b953d147a1725162aeaf319701a3d4b1d47c846932c4c8cd009bf81b4ce33754e966dac4630e2f690c403ec5181e3cc122496db09
 SHA512 
4d2fd08626d433d7230b27fb1cbd8a3fec9a942ddbd01988dba8632f25b510353b5086f4db1d529b88770e579189fc7bf6a4d02828c662fcb230e51efbecad9c
 DIST genpatches-5.15-156.experimental.tar.xz 5420 BLAKE2B 
5cb4d75abca17c536532382c23491a5d4251a5508110aa41ff99df8f656060fabfad8d69a6e1629cd5f9793155cdf44ba602717b1e1f4c52772e9c5825e8276d
 SHA512 
423ff044bd344d3afd0280deed045287ab2fe2a78dba9ada6163eb3f2581f68704ca5ce23dfa893cf1f4e3197ae402adb819e4b14349cd945d8d9dc2c2d3ad85
 DIST genpatches-5.15-156.extras.tar.xz 3936 BLAKE2B 
ad08b5d93b943236326d333c627ae8cd279d78fd2b8f8df420ce75be815472dca9785b8eb14015ca2dbc92560a8589d31b9f9edbf81280c85d1ce6fe58aed0b1
 SHA512 
580ba97a039ff7417b448d4df13b67ed262b7a47be449515ca80125a89b5da3773757db6ff7389b501daee6ab708e19dc2713088ee118859e1e9d3f4b303
-DIST genpatches-5.15-157.base.tar.xz 6083340 BLAKE2B 
da2898a405bfd934e761180064107f4d87d144105ade4c825ff9299cb4a0b57324927cf34d3a55fc7a0227d9db053caf5b0f8159ca0ddbd946d31459b2683e1f
 SHA512 
04c2d322ec1f0946b7f0f551e0fc0342da749cade5f20f2da1a1e60fd0cd946593a797c053bbd0eb8121f70e69f6766f8c945a99fd77fca3eef89aeae6d5b871
-DIST genpatches-5.15-157.experimental.tar.xz 5424 BLAKE2B 
146f16bbfc049fabd87adcad9216e97949d0d25ac1d6ce0087b441dedee29611eaf5c20196c22a1f803d497e931c006bfc8a3d435d55b4ca61f55c9d0e9c6c0b
 SHA512 
3bce31759cce8ac4594be37748ae8517f13d0809aa10877646d10b5287643bae623fea1662106dedb24f02f7bf00586014f7d13737b53ff31e99b49037217c07
-DIST genpatches-5.15-157.extras.tar.xz 3936 BLAKE2B 
d559b4c240ab2b8a0b522d846c3d9707b0beacd800e137517c29b51253283b47caf05f7facbdd7be747255dc2485170ecfad04a3ba5293d749c8d22ae60886f7
 SHA512 
e99880adebd2d08067fbcc73bf01eb844c39cef7c06e99b95c9622949e38a2ed58045f27e71bde4d5321dc06212848c884c8f4added4c41a8a1197cd375091b8
 DIST genpatches-5.15-158.base.tar.xz 6218288 BLAKE2B 
04f37b07da08635e59afd941a96df1f55683bda62fc72258005c23fac7048995f670376b57a0d4dadaf2018d1f5819da5239c04bec6c12e0e50c3fcf24c451e8
 SHA512 
b7d29d8d1f58b3cf534494ace74091042834f6c237667d9b1ae4dce194e5fe7ccef1269560b5edf4fa4eb4c8b9dacdec7bd7cb96bf22e95a93be7946f7cc2b36
 DIST genpatches-5.15-158.extras.tar.xz 3940 BLAKE2B 
2ca5435d7d4399266b607653b0f884d02d19f216015ee93eb9fc03571ce20a712f50a50adc876823d97d3233da870afc3e7b6602ed885e333ddd178d63632810
 SHA512 
9718e9a9e1d41e444afd1c08524027ab63a95f9368a8a8f9fc38e9d40585384172e116a1a2362155501d2561fc9e42d3fce69509eac21daff02b89f83e351f38
 DIST genpatches-5.15-159.base.tar.xz 6297632 BLAKE2B 
104b3e6ccc068842ab71997f3421a507f67381414bfdc3f32ab0398f5a9786b843f20c132d5e265b57cafa4fb377a7b765438597d7b8d05eedf64a9c84cb5a8f
 SHA512 
c6a1cb2ae1ab256442c3f76b41eab243e22be37510ee5e051d40bd95ec716921ef07d6171e04f645305cb0b83fbd54e06250e6a0625b92f1a313cad4bb170f18

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



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

2024-03-12 Thread Mike Pagano
commit: fbb168234a8cecd5632690f9d3152860c17663cd
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:18:27 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:18:27 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbb16823

sys-kernel/gentoo-sources: drop 5.15.149

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

 sys-kernel/gentoo-sources/Manifest |  2 --
 .../gentoo-sources/gentoo-sources-5.15.149.ebuild  | 28 --
 2 files changed, 30 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 747fa1121650..1d4720323e00 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -10,8 +10,6 @@ DIST genpatches-5.10-223.extras.tar.xz 3872 BLAKE2B 
26ea7a17b505ef6ba61301999d96
 DIST genpatches-5.15-156.base.tar.xz 6004636 BLAKE2B 
f70c2a3bfc3d65fea8d4764b953d147a1725162aeaf319701a3d4b1d47c846932c4c8cd009bf81b4ce33754e966dac4630e2f690c403ec5181e3cc122496db09
 SHA512 
4d2fd08626d433d7230b27fb1cbd8a3fec9a942ddbd01988dba8632f25b510353b5086f4db1d529b88770e579189fc7bf6a4d02828c662fcb230e51efbecad9c
 DIST genpatches-5.15-156.experimental.tar.xz 5420 BLAKE2B 
5cb4d75abca17c536532382c23491a5d4251a5508110aa41ff99df8f656060fabfad8d69a6e1629cd5f9793155cdf44ba602717b1e1f4c52772e9c5825e8276d
 SHA512 
423ff044bd344d3afd0280deed045287ab2fe2a78dba9ada6163eb3f2581f68704ca5ce23dfa893cf1f4e3197ae402adb819e4b14349cd945d8d9dc2c2d3ad85
 DIST genpatches-5.15-156.extras.tar.xz 3936 BLAKE2B 
ad08b5d93b943236326d333c627ae8cd279d78fd2b8f8df420ce75be815472dca9785b8eb14015ca2dbc92560a8589d31b9f9edbf81280c85d1ce6fe58aed0b1
 SHA512 
580ba97a039ff7417b448d4df13b67ed262b7a47be449515ca80125a89b5da3773757db6ff7389b501daee6ab708e19dc2713088ee118859e1e9d3f4b303
-DIST genpatches-5.15-158.base.tar.xz 6218288 BLAKE2B 
04f37b07da08635e59afd941a96df1f55683bda62fc72258005c23fac7048995f670376b57a0d4dadaf2018d1f5819da5239c04bec6c12e0e50c3fcf24c451e8
 SHA512 
b7d29d8d1f58b3cf534494ace74091042834f6c237667d9b1ae4dce194e5fe7ccef1269560b5edf4fa4eb4c8b9dacdec7bd7cb96bf22e95a93be7946f7cc2b36
-DIST genpatches-5.15-158.extras.tar.xz 3940 BLAKE2B 
2ca5435d7d4399266b607653b0f884d02d19f216015ee93eb9fc03571ce20a712f50a50adc876823d97d3233da870afc3e7b6602ed885e333ddd178d63632810
 SHA512 
9718e9a9e1d41e444afd1c08524027ab63a95f9368a8a8f9fc38e9d40585384172e116a1a2362155501d2561fc9e42d3fce69509eac21daff02b89f83e351f38
 DIST genpatches-5.15-159.base.tar.xz 6297632 BLAKE2B 
104b3e6ccc068842ab71997f3421a507f67381414bfdc3f32ab0398f5a9786b843f20c132d5e265b57cafa4fb377a7b765438597d7b8d05eedf64a9c84cb5a8f
 SHA512 
c6a1cb2ae1ab256442c3f76b41eab243e22be37510ee5e051d40bd95ec716921ef07d6171e04f645305cb0b83fbd54e06250e6a0625b92f1a313cad4bb170f18
 DIST genpatches-5.15-159.extras.tar.xz 3936 BLAKE2B 
adb536a978a0ae1a2327142d7e7bde2871b1b42017d04b3302d40138b80a6fe72faa957c30437bc71c7eaaea1da0ccce1baa244ff62e71581c7775ff066dede9
 SHA512 
452d9370dc10481e2274261c01a5f9ec75086906158bd30f93314e2af8c095060d5a6760524c21412aa4752ca77d4818e1879c5d3bbd9378a63d56ab2cb9b3f2
 DIST genpatches-5.15-160.base.tar.xz 6317352 BLAKE2B 
ccee78c3ccba8755f0e9de9e62c870d7f85d5302d2cdafd178184bbbec51d1a69be990c49f58fe1a1f897ed7e59bba1cc5eacc7589b4476ee6fcac19a90b0e78
 SHA512 
e36a435f9e353cd48ee12322f998a2fb4e9cf29eeb9e6f6f95534a48524db17b6eb654aa514ddba1108135eb92da7ef6af54f532bf29ca89b566d8903c1456e6

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



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

2024-03-12 Thread Sam James
commit: f8d55c278e674000d4ed1511e23f4b93ab1a5684
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar 12 18:18:33 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 12 18:18:46 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8d55c27

app-text/ghostscript-gpl: add LFS flags

Been meaning to do this for a while...

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

 ...hostscript-gpl-10.03.0.ebuild => ghostscript-gpl-10.03.0-r1.ebuild} | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-10.03.0.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-10.03.0-r1.ebuild
similarity index 99%
rename from app-text/ghostscript-gpl/ghostscript-gpl-10.03.0.ebuild
rename to app-text/ghostscript-gpl/ghostscript-gpl-10.03.0-r1.ebuild
index 47f978bcfebf..191b93c50073 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-10.03.0.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-10.03.0-r1.ebuild
@@ -126,6 +126,9 @@ src_configure() {
# Unsupported upstream, bug #884841
filter-lto
 
+   # bug #899952
+   append-lfs-flags
+
local FONTPATH
for path in \
"${EPREFIX}"/usr/share/fonts/urw-fonts \



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

2024-03-12 Thread Mike Pagano
commit: 79b58b1a18a9112323616ce6d434aa4077853c5d
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:19:37 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:20:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b58b1a

sys-kernel/gentoo-sources: drop 6.1.78

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.1.78.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b5d7e5320457..f4ce23b16e63 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -17,9 +17,6 @@ DIST genpatches-5.15-160.extras.tar.xz 3936 BLAKE2B 
7b4d7802346372f862321837b1b5
 DIST genpatches-6.1-83.base.tar.xz 4358680 BLAKE2B 
0ef9de04e2bdbfd4cdf2942ad1e1b27b8a314b07409cd7c140d0cc2783679a135eedd7d08860ed9fb6256115dbfbcbab5cd3d15522733bd72ec3d4d918fdc96e
 SHA512 
544630385153defad073422da90ec6710d0b4e3444ca1843017b1f1b855add852045c0a1d7e8cd68c037746c4c23e8ec24df747469e177519384ca2e8185cfda
 DIST genpatches-6.1-83.experimental.tar.xz 17456 BLAKE2B 
1c87dd4cbe085c2cffdc63602b76a35971dca4bd710b257eed536d05377cd485de58b939290428006d770db60c851de5610e14be43f728d185fe80627927c7cd
 SHA512 
d9189c50f63889865747da485a8359cd8d08f461e37d4a408c26a50f4909b98e6548facfe711873f071768203e2ec1eeeb4ba91d2229c81c0553c151c68f15ef
 DIST genpatches-6.1-83.extras.tar.xz 3816 BLAKE2B 
d22ef26f4b321319ce84b7bac4b345759519ce1bf4b821fd85590021f93c80242506b4ebd3cfca6ad4c1e56dc8d3600e54a0b459f07eabe0e154b03a0a1bb37d
 SHA512 
086b04be251177d98038fc2aab2b4110aea45144996b3e50d7803e331a5660cef9e4c7d6fe794905dc8a22065ab8ecf4b5eb5f94e8db59df88a2c861c09c2505
-DIST genpatches-6.1-87.base.tar.xz 4590376 BLAKE2B 
03810f1354881a70c49256a9b71651016c78aadf9d29e82e6077fec4d3a46487c530a987ef6785e78b149fe7f9c1f235f877382cacee59f6239366d4ac3bc5b2
 SHA512 
dd828b301272d8d0d80a9f51ce0b9b31f493b482af2cac7ab66b1307e3df44d88c7df4b968178d876bb6770b8408346a307aa5f22118f2bac7a35a045659a195
-DIST genpatches-6.1-87.experimental.tar.xz 17448 BLAKE2B 
faf4a50e54a88eb137f3a56a36db6b4aa2e40b72d0e9ee4bae525d4c27e233dc689ff33817eeb78a7fd12f1da9acdfe83aecd816f7301aecc151a236cc9778e0
 SHA512 
be46108087d5f74d3d31ba93eb75459ef30922648ed0a6c8661369d95425f0146b5f8357fe74e7dbcba79a765661f81e17d7cfc3ae10a025ad19a39aeb1835b6
-DIST genpatches-6.1-87.extras.tar.xz 3816 BLAKE2B 
fd1c417c05893ce152db9bd88d6345ec6b17116a202e121e63f5ef4eb25341a87a11d66d19de6ef5355b7876ded0052c1fd3ee6d4847719e3671713135c216fe
 SHA512 
3e705f0ff695b0f9cec228820ef1c469c7a571bf3c24b223a169fa630abf0b96d4e3e8396e3a866defb9f2c435a6c21269cb62f1bfd2de4b27b1c8d5846fc4b9
 DIST genpatches-6.1-88.base.tar.xz 4653064 BLAKE2B 
4f97e2991c632a38a16175613f6c2d86e303e6e41d79763c19408b1ffa0345dacdb030de9ed1c101e78ade7dcf9bc68348ba8446b6086ece860b6abc89ea55fb
 SHA512 
ce94b5037088a23ac22213df20de4b9212dc54afb29a725736642641a6c7a63c4dbc3739c9cd84f8d2b4da202d30fb2b1d5847779a51cabbdd058a29833d1bbd
 DIST genpatches-6.1-88.experimental.tar.xz 17448 BLAKE2B 
b5125f5f1d4e7442afc37400a0abf49561660f67e1d0a9ae20155162bed3fe11d294a03c8486c93ba5c776f49869db7ac63e0c66651654a3dfbb6c747004d37f
 SHA512 
e61cb0b443722c20fffc6ddcc7bbe1eb1dd271e14bcb30eea8ce300f2cd46adf63ec88aa4b75f4995861588924c1540861836c741327fba8c4d2f76f2473b5c9
 DIST genpatches-6.1-88.extras.tar.xz 3816 BLAKE2B 
5d1aae241a64b9f1dfba85746b70dd1af5a96263f9385d5b264956239c2dd9237d6022819b61cc927177e10721c59e6b4c254e95ac9de771547f0a4c6e7e7960
 SHA512 
d083e6384786114c05ed5e4198ea90bd84b9959651f20f5c3f7786889583a60845f4e377a8ad7a6684b91e97ee06cbb524e5827b46684872467eca6354b6

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



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

2024-03-12 Thread Mike Pagano
commit: 1715abb0d66bd502cc77c357217dbe312ca059cf
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:19:12 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:20:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1715abb0

sys-kernel/gentoo-sources: drop 6.1.75

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.1.75.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 1d4720323e00..060df328b944 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -17,9 +17,6 @@ DIST genpatches-5.15-160.extras.tar.xz 3936 BLAKE2B 
7b4d7802346372f862321837b1b5
 DIST genpatches-6.1-83.base.tar.xz 4358680 BLAKE2B 
0ef9de04e2bdbfd4cdf2942ad1e1b27b8a314b07409cd7c140d0cc2783679a135eedd7d08860ed9fb6256115dbfbcbab5cd3d15522733bd72ec3d4d918fdc96e
 SHA512 
544630385153defad073422da90ec6710d0b4e3444ca1843017b1f1b855add852045c0a1d7e8cd68c037746c4c23e8ec24df747469e177519384ca2e8185cfda
 DIST genpatches-6.1-83.experimental.tar.xz 17456 BLAKE2B 
1c87dd4cbe085c2cffdc63602b76a35971dca4bd710b257eed536d05377cd485de58b939290428006d770db60c851de5610e14be43f728d185fe80627927c7cd
 SHA512 
d9189c50f63889865747da485a8359cd8d08f461e37d4a408c26a50f4909b98e6548facfe711873f071768203e2ec1eeeb4ba91d2229c81c0553c151c68f15ef
 DIST genpatches-6.1-83.extras.tar.xz 3816 BLAKE2B 
d22ef26f4b321319ce84b7bac4b345759519ce1bf4b821fd85590021f93c80242506b4ebd3cfca6ad4c1e56dc8d3600e54a0b459f07eabe0e154b03a0a1bb37d
 SHA512 
086b04be251177d98038fc2aab2b4110aea45144996b3e50d7803e331a5660cef9e4c7d6fe794905dc8a22065ab8ecf4b5eb5f94e8db59df88a2c861c09c2505
-DIST genpatches-6.1-84.base.tar.xz 4453064 BLAKE2B 
195ca4777d311b883d335ae7e2320d9d7c73d02c54c7a0410804bd363f1e1eeccda64a5514d8575622cdcfcd54b0821157286fc09f5e85303d72aa1a4f26
 SHA512 
67dc650cd38fa9cfefadd1592673955e112f4d8a43625d89690395b6eb59a4cad2d0af53ea2d482e163bdd9a8a047582a24054d074c512562b180176d9c8cc77
-DIST genpatches-6.1-84.experimental.tar.xz 17456 BLAKE2B 
12409fedcfae3831b5a56031d8fe93ee65d69fefc2f411b4901dfb58eaeacc8088bc2fc1ae7bf95a2f1fa0f74ef567261828fb8d7331d6a47810aef52b44919a
 SHA512 
bc0799d0549dc02dd1d7ed8a9f6efc87eaf5cece9c6a2bdcbb6bd62683dc15cc0bc55c0d4637b838fd904772711cacc912b8be79bc1ddf0787ffc89ebd957982
-DIST genpatches-6.1-84.extras.tar.xz 3816 BLAKE2B 
961081e49ae29d6127eba299282c1bd3e3b4d78778b03da6bae6a6be8cba5efba3bf17d40fee02c6923f8536042d3c4ae82b93046536d81e4873fcdb5dc5c8f1
 SHA512 
77f05bb5082a95e503e07936a2fd8868f202539a844bbca84bd4e0a692006cf4dcec1dccf35a17064f58c40fdf3a6c44fde80cfbb8e8b2bafdba1d950f0b28bf
 DIST genpatches-6.1-85.base.tar.xz 4505468 BLAKE2B 
cb674a16ea9f1729844507b358684b655e68c3b701ee470be8ae9314b8cd4b7edfa6b4e79381faf2b0a1af0f3ee6a703f204b54e239d98bb5e8eb1c4c3c3325c
 SHA512 
148a3fcc14c225f95b111d7c4e0f79e3a20dfe51556cbf24428d40e5082e1d5056a6bb93cffc78daa4a8c9d126030982370e85b8768b0c1f3487064a1d6519cb
 DIST genpatches-6.1-85.experimental.tar.xz 17452 BLAKE2B 
8a6b03610623dbf6e85952d03178e9efbe3518f81279fd7e1faa9b340a55ab3f88a3be695e26a0f1deb1cc4452b91935e0ea14cd66d5e948a284a267bacaa81f
 SHA512 
7af9c712f0bb0b34bff6d069640a86dfad0c7312aae470859b464746093408661f32884bd0a7925f86632db6bb04e6bc2a8097cc9eb8b3e21c6ea1f56ceed4b3
 DIST genpatches-6.1-85.extras.tar.xz 3812 BLAKE2B 
9b51a2d050fd8dece5f64d5d9c82ebd9231c702e93aed6374fbc4a13138fc1c3b67fd516bfa50b234e9e0aeabb582e7e3939f0464f0188d352b311997b131413
 SHA512 
4fc490e4ad0e2c652f5542c7c4b043d68999b6eecbe48ab7f6168ae202de7a0f0bd7f24af1535b0f588bca84e35aaf2f574241543067ddd96224b85387ff8de3

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



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

2024-03-12 Thread Mike Pagano
commit: da277bfa8c9bf29c24b9932a163b74153a1fa814
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:19:29 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:20:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da277bfa

sys-kernel/gentoo-sources: drop 6.1.77

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.1.77.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 94167ac456a6..b5d7e5320457 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -17,9 +17,6 @@ DIST genpatches-5.15-160.extras.tar.xz 3936 BLAKE2B 
7b4d7802346372f862321837b1b5
 DIST genpatches-6.1-83.base.tar.xz 4358680 BLAKE2B 
0ef9de04e2bdbfd4cdf2942ad1e1b27b8a314b07409cd7c140d0cc2783679a135eedd7d08860ed9fb6256115dbfbcbab5cd3d15522733bd72ec3d4d918fdc96e
 SHA512 
544630385153defad073422da90ec6710d0b4e3444ca1843017b1f1b855add852045c0a1d7e8cd68c037746c4c23e8ec24df747469e177519384ca2e8185cfda
 DIST genpatches-6.1-83.experimental.tar.xz 17456 BLAKE2B 
1c87dd4cbe085c2cffdc63602b76a35971dca4bd710b257eed536d05377cd485de58b939290428006d770db60c851de5610e14be43f728d185fe80627927c7cd
 SHA512 
d9189c50f63889865747da485a8359cd8d08f461e37d4a408c26a50f4909b98e6548facfe711873f071768203e2ec1eeeb4ba91d2229c81c0553c151c68f15ef
 DIST genpatches-6.1-83.extras.tar.xz 3816 BLAKE2B 
d22ef26f4b321319ce84b7bac4b345759519ce1bf4b821fd85590021f93c80242506b4ebd3cfca6ad4c1e56dc8d3600e54a0b459f07eabe0e154b03a0a1bb37d
 SHA512 
086b04be251177d98038fc2aab2b4110aea45144996b3e50d7803e331a5660cef9e4c7d6fe794905dc8a22065ab8ecf4b5eb5f94e8db59df88a2c861c09c2505
-DIST genpatches-6.1-86.base.tar.xz 4574456 BLAKE2B 
905d051daa077a0aa697ae78187ccb149c5e14dd2d171e451d85559b68ac0a4e8a80a3b13332bc2c8b58d8be182b12853b9e784adb307987faaac5d2ef43ebf3
 SHA512 
7d28fedd6a157a680de9c69d11f5d243c02b5714e0570bbac9d429ed1e5937bf7250cf5825d6365debb0b0621301cd4999dafd0680e4815e47ea1452ace3e406
-DIST genpatches-6.1-86.experimental.tar.xz 17448 BLAKE2B 
c513398c5b2a616d172bed3d0b243c1590440235e71e4f52079cd29a8e7143eeb25e8a3916a0c0cfd8bb3fe008e94d9f9e8ad62fdc66cada7f3b272e1477c186
 SHA512 
be557ba264b4ac3ff62279edba6933010688e03c4f2e11e2d2534cac47267d3055643c7193b0dbb472a565e611f2674787efd86e39dc1df51f8966e6a7c301ae
-DIST genpatches-6.1-86.extras.tar.xz 3812 BLAKE2B 
6e0dfca04eea9e737e68e8bd94f246628ac5a3e1ad911c41c7c61ce33baaf27b42805af53b0e7969d902078fe989e2b3122d92445b721f92209f5fa5a79eddbc
 SHA512 
4daa5eeccb39c9c033541bb5dd123f16358f0a67f0b087ed0ed22243d46d429a7695f05bdaf84a229f3f483eb73b688b5dcb18110a87f9ad22b84eff24f765fa
 DIST genpatches-6.1-87.base.tar.xz 4590376 BLAKE2B 
03810f1354881a70c49256a9b71651016c78aadf9d29e82e6077fec4d3a46487c530a987ef6785e78b149fe7f9c1f235f877382cacee59f6239366d4ac3bc5b2
 SHA512 
dd828b301272d8d0d80a9f51ce0b9b31f493b482af2cac7ab66b1307e3df44d88c7df4b968178d876bb6770b8408346a307aa5f22118f2bac7a35a045659a195
 DIST genpatches-6.1-87.experimental.tar.xz 17448 BLAKE2B 
faf4a50e54a88eb137f3a56a36db6b4aa2e40b72d0e9ee4bae525d4c27e233dc689ff33817eeb78a7fd12f1da9acdfe83aecd816f7301aecc151a236cc9778e0
 SHA512 
be46108087d5f74d3d31ba93eb75459ef30922648ed0a6c8661369d95425f0146b5f8357fe74e7dbcba79a765661f81e17d7cfc3ae10a025ad19a39aeb1835b6
 DIST genpatches-6.1-87.extras.tar.xz 3816 BLAKE2B 
fd1c417c05893ce152db9bd88d6345ec6b17116a202e121e63f5ef4eb25341a87a11d66d19de6ef5355b7876ded0052c1fd3ee6d4847719e3671713135c216fe
 SHA512 
3e705f0ff695b0f9cec228820ef1c469c7a571bf3c24b223a169fa630abf0b96d4e3e8396e3a866defb9f2c435a6c21269cb62f1bfd2de4b27b1c8d5846fc4b9

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



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

2024-03-12 Thread Mike Pagano
commit: 58cce8f4bb712cc11ca950b53233d341f1ac7a14
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:19:21 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:20:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58cce8f4

sys-kernel/gentoo-sources: drop 6.1.76

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.1.76.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 060df328b944..94167ac456a6 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -17,9 +17,6 @@ DIST genpatches-5.15-160.extras.tar.xz 3936 BLAKE2B 
7b4d7802346372f862321837b1b5
 DIST genpatches-6.1-83.base.tar.xz 4358680 BLAKE2B 
0ef9de04e2bdbfd4cdf2942ad1e1b27b8a314b07409cd7c140d0cc2783679a135eedd7d08860ed9fb6256115dbfbcbab5cd3d15522733bd72ec3d4d918fdc96e
 SHA512 
544630385153defad073422da90ec6710d0b4e3444ca1843017b1f1b855add852045c0a1d7e8cd68c037746c4c23e8ec24df747469e177519384ca2e8185cfda
 DIST genpatches-6.1-83.experimental.tar.xz 17456 BLAKE2B 
1c87dd4cbe085c2cffdc63602b76a35971dca4bd710b257eed536d05377cd485de58b939290428006d770db60c851de5610e14be43f728d185fe80627927c7cd
 SHA512 
d9189c50f63889865747da485a8359cd8d08f461e37d4a408c26a50f4909b98e6548facfe711873f071768203e2ec1eeeb4ba91d2229c81c0553c151c68f15ef
 DIST genpatches-6.1-83.extras.tar.xz 3816 BLAKE2B 
d22ef26f4b321319ce84b7bac4b345759519ce1bf4b821fd85590021f93c80242506b4ebd3cfca6ad4c1e56dc8d3600e54a0b459f07eabe0e154b03a0a1bb37d
 SHA512 
086b04be251177d98038fc2aab2b4110aea45144996b3e50d7803e331a5660cef9e4c7d6fe794905dc8a22065ab8ecf4b5eb5f94e8db59df88a2c861c09c2505
-DIST genpatches-6.1-85.base.tar.xz 4505468 BLAKE2B 
cb674a16ea9f1729844507b358684b655e68c3b701ee470be8ae9314b8cd4b7edfa6b4e79381faf2b0a1af0f3ee6a703f204b54e239d98bb5e8eb1c4c3c3325c
 SHA512 
148a3fcc14c225f95b111d7c4e0f79e3a20dfe51556cbf24428d40e5082e1d5056a6bb93cffc78daa4a8c9d126030982370e85b8768b0c1f3487064a1d6519cb
-DIST genpatches-6.1-85.experimental.tar.xz 17452 BLAKE2B 
8a6b03610623dbf6e85952d03178e9efbe3518f81279fd7e1faa9b340a55ab3f88a3be695e26a0f1deb1cc4452b91935e0ea14cd66d5e948a284a267bacaa81f
 SHA512 
7af9c712f0bb0b34bff6d069640a86dfad0c7312aae470859b464746093408661f32884bd0a7925f86632db6bb04e6bc2a8097cc9eb8b3e21c6ea1f56ceed4b3
-DIST genpatches-6.1-85.extras.tar.xz 3812 BLAKE2B 
9b51a2d050fd8dece5f64d5d9c82ebd9231c702e93aed6374fbc4a13138fc1c3b67fd516bfa50b234e9e0aeabb582e7e3939f0464f0188d352b311997b131413
 SHA512 
4fc490e4ad0e2c652f5542c7c4b043d68999b6eecbe48ab7f6168ae202de7a0f0bd7f24af1535b0f588bca84e35aaf2f574241543067ddd96224b85387ff8de3
 DIST genpatches-6.1-86.base.tar.xz 4574456 BLAKE2B 
905d051daa077a0aa697ae78187ccb149c5e14dd2d171e451d85559b68ac0a4e8a80a3b13332bc2c8b58d8be182b12853b9e784adb307987faaac5d2ef43ebf3
 SHA512 
7d28fedd6a157a680de9c69d11f5d243c02b5714e0570bbac9d429ed1e5937bf7250cf5825d6365debb0b0621301cd4999dafd0680e4815e47ea1452ace3e406
 DIST genpatches-6.1-86.experimental.tar.xz 17448 BLAKE2B 
c513398c5b2a616d172bed3d0b243c1590440235e71e4f52079cd29a8e7143eeb25e8a3916a0c0cfd8bb3fe008e94d9f9e8ad62fdc66cada7f3b272e1477c186
 SHA512 
be557ba264b4ac3ff62279edba6933010688e03c4f2e11e2d2534cac47267d3055643c7193b0dbb472a565e611f2674787efd86e39dc1df51f8966e6a7c301ae
 DIST genpatches-6.1-86.extras.tar.xz 3812 BLAKE2B 
6e0dfca04eea9e737e68e8bd94f246628ac5a3e1ad911c41c7c61ce33baaf27b42805af53b0e7969d902078fe989e2b3122d92445b721f92209f5fa5a79eddbc
 SHA512 
4daa5eeccb39c9c033541bb5dd123f16358f0a67f0b087ed0ed22243d46d429a7695f05bdaf84a229f3f483eb73b688b5dcb18110a87f9ad22b84eff24f765fa

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



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

2024-03-12 Thread Mike Pagano
commit: 1f73391136b055c32f9975c2ce689a0ab15c2887
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:19:52 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:20:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f733911

sys-kernel/gentoo-sources: drop 6.1.79

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.1.79.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f4ce23b16e63..f354518d0479 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -17,9 +17,6 @@ DIST genpatches-5.15-160.extras.tar.xz 3936 BLAKE2B 
7b4d7802346372f862321837b1b5
 DIST genpatches-6.1-83.base.tar.xz 4358680 BLAKE2B 
0ef9de04e2bdbfd4cdf2942ad1e1b27b8a314b07409cd7c140d0cc2783679a135eedd7d08860ed9fb6256115dbfbcbab5cd3d15522733bd72ec3d4d918fdc96e
 SHA512 
544630385153defad073422da90ec6710d0b4e3444ca1843017b1f1b855add852045c0a1d7e8cd68c037746c4c23e8ec24df747469e177519384ca2e8185cfda
 DIST genpatches-6.1-83.experimental.tar.xz 17456 BLAKE2B 
1c87dd4cbe085c2cffdc63602b76a35971dca4bd710b257eed536d05377cd485de58b939290428006d770db60c851de5610e14be43f728d185fe80627927c7cd
 SHA512 
d9189c50f63889865747da485a8359cd8d08f461e37d4a408c26a50f4909b98e6548facfe711873f071768203e2ec1eeeb4ba91d2229c81c0553c151c68f15ef
 DIST genpatches-6.1-83.extras.tar.xz 3816 BLAKE2B 
d22ef26f4b321319ce84b7bac4b345759519ce1bf4b821fd85590021f93c80242506b4ebd3cfca6ad4c1e56dc8d3600e54a0b459f07eabe0e154b03a0a1bb37d
 SHA512 
086b04be251177d98038fc2aab2b4110aea45144996b3e50d7803e331a5660cef9e4c7d6fe794905dc8a22065ab8ecf4b5eb5f94e8db59df88a2c861c09c2505
-DIST genpatches-6.1-88.base.tar.xz 4653064 BLAKE2B 
4f97e2991c632a38a16175613f6c2d86e303e6e41d79763c19408b1ffa0345dacdb030de9ed1c101e78ade7dcf9bc68348ba8446b6086ece860b6abc89ea55fb
 SHA512 
ce94b5037088a23ac22213df20de4b9212dc54afb29a725736642641a6c7a63c4dbc3739c9cd84f8d2b4da202d30fb2b1d5847779a51cabbdd058a29833d1bbd
-DIST genpatches-6.1-88.experimental.tar.xz 17448 BLAKE2B 
b5125f5f1d4e7442afc37400a0abf49561660f67e1d0a9ae20155162bed3fe11d294a03c8486c93ba5c776f49869db7ac63e0c66651654a3dfbb6c747004d37f
 SHA512 
e61cb0b443722c20fffc6ddcc7bbe1eb1dd271e14bcb30eea8ce300f2cd46adf63ec88aa4b75f4995861588924c1540861836c741327fba8c4d2f76f2473b5c9
-DIST genpatches-6.1-88.extras.tar.xz 3816 BLAKE2B 
5d1aae241a64b9f1dfba85746b70dd1af5a96263f9385d5b264956239c2dd9237d6022819b61cc927177e10721c59e6b4c254e95ac9de771547f0a4c6e7e7960
 SHA512 
d083e6384786114c05ed5e4198ea90bd84b9959651f20f5c3f7786889583a60845f4e377a8ad7a6684b91e97ee06cbb524e5827b46684872467eca6354b6
 DIST genpatches-6.1-89.base.tar.xz 4715392 BLAKE2B 
36ac5c1d92985dba061e3ea8d1e9a661c877061ba27382843e3db15912513fd093bf6095152fffe5fb3e546c1d47b77ad2f70c15b4b3832ef4a62450ca96ed77
 SHA512 
53472cdf94ef6d65d7c8bfa58c7666a4a727684dba0dfde02c956368bbca3cddf3b51901ed66830354ad73a18432e8fc2f508b2326234e35d5975f7d77ae3e17
 DIST genpatches-6.1-89.experimental.tar.xz 17444 BLAKE2B 
7355baf6aff19d27ec8a608cadc4881b799695ae13f1fb37fbeea6af0b502ff371096f3f91ae2b871e48a82485f22433f794c9aac88bc515eed8b9ceadd9eaa4
 SHA512 
2d8d067851389696941f8cffef302a147bbf45a09a8abde7e08662740c9ad2a62dc3f1cd8e65903c96fe2fc797a8e1fa983848fc2f2893d6cf82955aa7993116
 DIST genpatches-6.1-89.extras.tar.xz 3812 BLAKE2B 
e5ea7db0e68120d8dcc8cb04b670a4cbe4b9f6ef169eb7815f2956c9b5c9f3570d418b3913801cdfa2779483bb6c5c97baf0500dba96025aa1f84e10b7208b1e
 SHA512 
1d1b8860af0cdf6b31dfc596ea2d4662060f1c12f6661b9e3d5d127b0a001dcd2d4920d8b997f1bdbd47244d98a888986a6f3184054eaccf6bbb5bc3fcfacb3e

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



[gentoo-commits] repo/gentoo:master commit in: sci-visualization/dash/

2024-03-12 Thread Alfredo Tupone
commit: 08e79aa0349241b7d5e288d6d40d2f2114c4c2df
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Mar 12 18:19:33 2024 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Mar 12 18:19:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e79aa0

sci-visualization/dash: add 2.12.1, drop 2.10.2

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

 sci-visualization/dash/Manifest|  3 ++-
 .../{dash-2.10.2.ebuild => dash-2.12.1.ebuild} | 24 +-
 2 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/sci-visualization/dash/Manifest b/sci-visualization/dash/Manifest
index 8798b0062725..81d028509d11 100644
--- a/sci-visualization/dash/Manifest
+++ b/sci-visualization/dash/Manifest
@@ -1 +1,2 @@
-DIST dash-2.10.2.tar.gz 24196352 BLAKE2B 
8e95700756adac363e62d62f0bef6ca1559468f26a79fd8d1595f71ed930cd425cc7a102a32b09611f2def6a0a920772c07d810b598f65c97690f598343b44b4
 SHA512 
9e7ed9a65d374c32ace75eb9d124b017741ee8de8b115e0323ef4d9f2f6ff7de77bd1f6f083bc92268f29e389c7e2177ab97e5a859afc075be0f546ad820c1ed
+DIST dash-2.12.1.tar.gz 24239780 BLAKE2B 
bd46dc902555b9877651a3285a35b9ac5cbf2beff327e7689768a1257e0f7982ba3e497cb78c092faf59132702695b87601b585f6d55f4685b27965845aaf3d6
 SHA512 
88ba2ba078cbddfa0e322ed65afb89f376d0ff8654b34658e1889eca02e12de65ba06493dd01e15fd30e445af0cfe0779931a26e9ac3d88a1400d588036368db
+DIST dash-jupyterlab-2.12.1.tgz 2260 BLAKE2B 
4ce19390f58ab74e5a8c8a3926ba6d82db15b603f9123bcb1372bc6919bc5a48ffa0e9c97fa0ca654607a269d125e4e20b2e7e780cea6bb4d70fbed8bda05c75
 SHA512 
2bede3e1a3469b299bdfa900ca6c75b05c0ecc72d16ed510e8ee2ee0e5538584bedc43ff25cf0ae910ea60b35177fa33219383d8f3ab2cec3a69f0e3f9f7f43c

diff --git a/sci-visualization/dash/dash-2.10.2.ebuild 
b/sci-visualization/dash/dash-2.12.1.ebuild
similarity index 57%
rename from sci-visualization/dash/dash-2.10.2.ebuild
rename to sci-visualization/dash/dash-2.12.1.ebuild
index 99937d9520d1..10dc2e7c717a 100644
--- a/sci-visualization/dash/dash-2.10.2.ebuild
+++ b/sci-visualization/dash/dash-2.12.1.ebuild
@@ -10,7 +10,8 @@ inherit distutils-r1
 DESCRIPTION="Python framework for building ML & data science web apps"
 HOMEPAGE="https://github.com/plotly/dash;
 SRC_URI="https://github.com/plotly/${PN}/archive/refs/tags/v${PV}.tar.gz
-   -> ${P}.tar.gz"
+   -> ${P}.tar.gz
+   https://dev.gentoo.org/~tupone/distfiles/${PN}-jupyterlab-${PV}.tgz;
 
 LICENSE="MIT"
 SLOT="0"
@@ -22,9 +23,30 @@ KEYWORDS="~amd64"
 RESTRICT="test"
 
 RDEPEND="
+   dev-python/nest-asyncio[${PYTHON_USEDEP}]
dev-python/plotly[${PYTHON_USEDEP}]
dev-python/flask-compress[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
test? ( dev-python/beautifulsoup4 )"
 
 distutils_enable_tests pytest
+
+src_unpack() {
+   unpack ${P}.tar.gz
+}
+
+src_prepare() {
+   mkdir dash/labextension/dist || die
+   # cd @plotly/dash-jupyterlab
+   # jlpm install
+   # jlpm build:pack
+   cp "${DISTDIR}"/${PN}-jupyterlab-${PV}.tgz \
+   dash/labextension/dist/${PN}-jupyterlab.tgz \
+   || die
+   distutils-r1_src_prepare
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   mv "${ED}"/usr/etc "${ED}"/etc || die
+}



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

2024-03-12 Thread Mike Pagano
commit: a4f66ee08a3447665278c641059fecd55661d6b9
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:22:47 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:22:47 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f66ee0

sys-kernel/gentoo-sources: drop 6.7.6

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.7.6.ebuild | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index abc54e9d6044..5895b5b0e93d 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -32,9 +32,6 @@ DIST genpatches-6.6-26.extras.tar.xz 3704 BLAKE2B 
b6d1a4bc51f88b0fba94255616131c
 DIST genpatches-6.6-27.base.tar.xz 1392292 BLAKE2B 
46e3c354f7c27182c2f97bd20c165fa8bb79317bb136afbbe1e0906cd405e7cbcab1293e724cda38491f0d1cd9e9009146f18ad9b5ecf54526e69aae43fbc9e8
 SHA512 
363d26f9410e2d526f07c0831d36733999ec284ee01d684ad15aa5856b007a2d2a189ca414358da87a479dcbbea7ae24add9d8019b4c41c8bf1aae7b67a3b490
 DIST genpatches-6.6-27.experimental.tar.xz 5752 BLAKE2B 
5e1c08546bb3414638cce0040a2734229ec8cc25e76988520e147e94472ffb95441f05993f251df7e2b24045a7178cecbbebfc830927821f8d8da19efa9f0713
 SHA512 
f886c23ddb87599258baf06630874cf4b0a3b7b78a6bbcebf412e00a7390a6d880178521b1f770ed7510ce74f8e5751056b7ce54260a47374e844d543b283792
 DIST genpatches-6.6-27.extras.tar.xz 3700 BLAKE2B 
36a21c970dd2c8f72a4496b9f72faea3e94fba49342e00b7cdfc0ca6d4f3ab14fef161a7d02ad13b1c7db73af3c96b1c145453d0645791b46b34f599b3947582
 SHA512 
996a1b0a5c625043ececbeacc648f4dd71da2e239482ca515b680b146ba6041feeb0924929b1b2b6ee4f3ecc24c85926e54e28058d9401d4399282151332dfce
-DIST genpatches-6.7-10.base.tar.xz 599552 BLAKE2B 
952e3510f0e76381b0028179599e7bc05e6ad6a36a283abd4664cdc24d81d0ab287d6e1c077f489964608a86f3e7d8f4e2b9246bf01538b9d84cb80704f7474b
 SHA512 
ec30398a92414b83d719b9f805edef1a8796e8b988a7384f75454f930a5a31ba05f1ea6ad1f48b2fb6e6d183450cc5ca10cf5c9f5c6bb3c47de27eda668fb76b
-DIST genpatches-6.7-10.experimental.tar.xz 5760 BLAKE2B 
641dae0c4f30631c6aad88b356897a00b054551454dcb1bfce9060ec68781d00c6e9f5e443da09485c72d364091e8803eb59b5e36c1fec6c79807a52ea499960
 SHA512 
e620280b89334dd060bb8f73d623f02d2deb98be6e230bf1a1e078fc2d45573bc6fdd4ccb9b2df0a044ed48f152c613240fd61267e0c45a6ff7ec84aa5ebff05
-DIST genpatches-6.7-10.extras.tar.xz 3704 BLAKE2B 
a5264482e3081f585475897242e27707a0cb5cc838a17b25bf50632625d0bfe983c889603df6aac1ae2f96466d13ded9783d7d8c118c5cb8d6beea132d436d87
 SHA512 
5656a2daa02ef9148ca22faf9c4e64dd3c79cc4eea9a99c697b5e8de29550e0743782b60c00f2030fe8a7370931d86cd6bfd37339eb272e6dfc70d52ed125951
 DIST genpatches-6.7-11.base.tar.xz 699832 BLAKE2B 
22ff0e1ae4ab7fe8376b06ded03e482860055afb70b74badac3412376fbc7c8d700e226834f4f966cd187bf0a321a7d194e4d7138ec094188fb4b8ac60e3bb6f
 SHA512 
fbc948c6b7f1e8ce5c7eb3cfcd4ec65f93b20453751abbde0d02464db0ca1b8515aaddc0e61308c93f6726a41724c42db17dd23ffe7ac023ff07b42910d0a89f
 DIST genpatches-6.7-11.experimental.tar.xz 79096 BLAKE2B 
bf8be6a0a2e64f6e015a7a010319472d1c52617d81284e57ea96fc1cb29d796b668462af0ad5e0c2c1b671b842b9839a97210f945008634afd4df067f64d6b98
 SHA512 
ed6d55b410b7c37a0f72d13f3de5c2781a8cea743858c1b45631cb39f9ac2ee69cc8999f8e5ea230c585210606b05f02208d0eeafc0673f765018d00417e7023
 DIST genpatches-6.7-11.extras.tar.xz 3704 BLAKE2B 
1afd454ba83299605a573405732f41eda7a261f8cf524bfdaf329b4130849b0ff0895d39902360e3e4351fbf5ff1aeb2e378372d556bdf3c90b330a2195a7c89
 SHA512 
9d5b52bc1853f5cc41bc762ec023037ec25f22e13f1b098f7e7493b29645cdfbea14ebbac291330ae61a7c1a9b5f8291b7b2f88f61690cfe00a129693b98d035

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



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

2024-03-12 Thread Mike Pagano
commit: 3c6a7e26147b82d3f77ddf0b0edfa84910e29cd8
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:22:29 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:22:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6a7e26

sys-kernel/gentoo-sources: drop 6.7.4

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.7.4.ebuild | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 8b9d20597154..5d4467dd2fed 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -44,9 +44,6 @@ DIST genpatches-6.7-12.extras.tar.xz 3704 BLAKE2B 
4725e84823acafc4a028ae249f3369
 DIST genpatches-6.7-13.base.tar.xz 742864 BLAKE2B 
63b5326788da244f61d76327c346ec64e7916eb4e6163a4ec7a94f4c51a5ce4fe0a75a58a781f4536811897226213c5ec85dc93b7b63d8d7ca81a0edb8724a98
 SHA512 
2d283438c2c9c7fec82107455949f6e525d34cd0542cf28594773f1dabc7061034579d71dda4e386f63cf8cd7d7921070a9cdd59c6478077ef87cb4b8064b431
 DIST genpatches-6.7-13.experimental.tar.xz 79092 BLAKE2B 
643f69166d9f0208354abc62468ac2056ace23d53fb508520b0b23b36dcef55935dcf40f09b045402070c09d39cb2145ceb505271cfea8885073c9930413
 SHA512 
171c6390d76cadd374d95ba89a940aaaecb61ab9039a0cdf7c2df43d63c375f65b88ff7f3a07b930c65936623edd1896bb77ef9f58bdb1c385854355957ab5b5
 DIST genpatches-6.7-13.extras.tar.xz 3704 BLAKE2B 
3a8af901c0e76fa3fe36d9dea4e8f7d034553c705f608c365cc7d50050b45e5c13b6ff530cd63ffa51054fcc0fa20d9fa45680f24063d73773f1ca407a81e395
 SHA512 
201a6724e62e6abfe110a6051c5d73e1fcedddba37220916631dcdd470bf3414dd3b6d499058bbf288f8fdc9e87d7a01a667412815521d8489773d17db9a5c67
-DIST genpatches-6.7-8.base.tar.xz 460076 BLAKE2B 
367e038c6a8a02d8157b947f28c6b88b3053c2a491a0933f000f0e30af41bddc50b760b5918ccf1152de4d2e4a551983435f68c421d0cce6dc352c900bdf5d48
 SHA512 
d946201fb054810bc54bf73e4904df6deaa1b539623c5c77002fa95b49ce5d9e38fb3ac94e74a7b9d5ca57d7b21ea0dcf7785437fb216599202fff0d8d012b92
-DIST genpatches-6.7-8.experimental.tar.xz 5756 BLAKE2B 
e156ce5b54e76869f9e98182f2eb8a2c858a7c3d25d6b730883094aa79c411d78c8d62b8e5bbee66ef727516d41743752101353539e169befe7f0c1c51f99de1
 SHA512 
5c297c0254e72bc65c2d80e0c24e8e28c39158dff00fafb03c42fca6a3ccaf748b2fcea4998aa5e1614dcadc60ecb88b2c3ce620c5442e6a44d13dfcd88e7dcb
-DIST genpatches-6.7-8.extras.tar.xz 3704 BLAKE2B 
98589d74cef3e628d7a693a46f1f87845ca98faf8093c9e120320e107d8c1e76d82441ec6b1a3f12c9c5fc5d20cea2cab4d6cd5dda99b318bf31ec5ab7c8447e
 SHA512 
3e9a993586516e45d2fca24690b7ce001922732c20c5f52a7d954e5bdd1f8d7e91d4074b5128c085caeee49539dcb1a5a505424225c0100b8741f54d6ac3d095
 DIST genpatches-6.7-9.base.tar.xz 503176 BLAKE2B 
420c8e40d2abc26201b50197f3cf32f8a3cd2e3d49013e60b215fe567089e88bfeeac8bba1f8d95724c51dc1e72af86ea18c9b5f35133046f9f77059f0de3bb5
 SHA512 
23b636e3ab4bd81c509533cf76f96b7e5b10d4d9dfe57b5bb162d53991eab57043f3b935882e7643e1f1db39de4e18143785d0f65c65ed71e9b546a147dae4c6
 DIST genpatches-6.7-9.experimental.tar.xz 5760 BLAKE2B 
6c826ebee388536b3af88ef65405b3201ecad9e0ebdab1a640c044c1b93a43ea4d2b4709da09f8eb31e36dff9c72d13620984419fce6c86758001674e58824ba
 SHA512 
f52f509212b775be2ffd4040aae903b31292f32635958e0ede5856c2bcb7c7fdb1caca92f0a498cd2cea4917ccd7a92fc3b2f2c30f1c5454f11de81ea8367840
 DIST genpatches-6.7-9.extras.tar.xz 3700 BLAKE2B 
a535ebb75c26ea320af3ee4523d48c479e38acced934c09e6dd027df2c1ec281c8520d953b238b4a88c1ada82b5fadb77e7ddcade3ee112f50e1ae7b3eff5a79
 SHA512 
91dd0e05b3b14422d65752e6995858b68b75d155e498b89280cac776f29ef7805c74b9e46505a16d7644cf94b789cba7adf2bf18b453e93122c8c361ee22afcd

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



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

2024-03-12 Thread Mike Pagano
commit: 44ef69b1321540f71139ef8b7011ea5dd3ead492
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:22:22 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:22:22 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44ef69b1

sys-kernel/gentoo-sources: drop 6.7.3

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.7.3.ebuild | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 165d6059f879..8b9d20597154 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -44,9 +44,6 @@ DIST genpatches-6.7-12.extras.tar.xz 3704 BLAKE2B 
4725e84823acafc4a028ae249f3369
 DIST genpatches-6.7-13.base.tar.xz 742864 BLAKE2B 
63b5326788da244f61d76327c346ec64e7916eb4e6163a4ec7a94f4c51a5ce4fe0a75a58a781f4536811897226213c5ec85dc93b7b63d8d7ca81a0edb8724a98
 SHA512 
2d283438c2c9c7fec82107455949f6e525d34cd0542cf28594773f1dabc7061034579d71dda4e386f63cf8cd7d7921070a9cdd59c6478077ef87cb4b8064b431
 DIST genpatches-6.7-13.experimental.tar.xz 79092 BLAKE2B 
643f69166d9f0208354abc62468ac2056ace23d53fb508520b0b23b36dcef55935dcf40f09b045402070c09d39cb2145ceb505271cfea8885073c9930413
 SHA512 
171c6390d76cadd374d95ba89a940aaaecb61ab9039a0cdf7c2df43d63c375f65b88ff7f3a07b930c65936623edd1896bb77ef9f58bdb1c385854355957ab5b5
 DIST genpatches-6.7-13.extras.tar.xz 3704 BLAKE2B 
3a8af901c0e76fa3fe36d9dea4e8f7d034553c705f608c365cc7d50050b45e5c13b6ff530cd63ffa51054fcc0fa20d9fa45680f24063d73773f1ca407a81e395
 SHA512 
201a6724e62e6abfe110a6051c5d73e1fcedddba37220916631dcdd470bf3414dd3b6d499058bbf288f8fdc9e87d7a01a667412815521d8489773d17db9a5c67
-DIST genpatches-6.7-6.base.tar.xz 325824 BLAKE2B 
f95dbe909af13e4da2edbd37d320f077b4229fb16d5e63c7e81f8bb5ac0e7fc78740dc94071a86e9ceacc12833b78ac0809c112609843551960db0dafe14ecef
 SHA512 
307a2dc54dd4a176effc8f942a60d7a5516b8402a1255fb4e9d2ac34f2316f813741ce3c3fafe3900244504323aada4fe22a3980205c062e3235dd623305be66
-DIST genpatches-6.7-6.experimental.tar.xz 79088 BLAKE2B 
eb05e24526cce9b07ba679e92ef89e339c6dcd3b3a2ff90cfd37829537174e6728f0cf978a9e15e159fce3117af3b40045e32d3d190423d6dcd5408541375d49
 SHA512 
f6adad74e354aaba2e135e413849e1969185df5e715c313a9eca38b72da2a5020b7472b6c3f21e1d16f6b596b262b7591e7932d058cb335e2d712e0283f95f7b
-DIST genpatches-6.7-6.extras.tar.xz 3704 BLAKE2B 
1e9669edb016fcf24960bd678171eb5ad3f8ef6c3477d1f3a2ae4a1f3e0cfe1a9ed14e54d2316858c64c1f52702659e6c3ba2bfd5ce079f2bb04f1cfec01f329
 SHA512 
fb786fa90d0d979d867a7c5fa9c24f81d3c019403d8dc8bbaf5c72c105703ee5fdb5305974062d274cbd86b712f62b053b82fa34f4b8096247da944b5ae2cf58
 DIST genpatches-6.7-8.base.tar.xz 460076 BLAKE2B 
367e038c6a8a02d8157b947f28c6b88b3053c2a491a0933f000f0e30af41bddc50b760b5918ccf1152de4d2e4a551983435f68c421d0cce6dc352c900bdf5d48
 SHA512 
d946201fb054810bc54bf73e4904df6deaa1b539623c5c77002fa95b49ce5d9e38fb3ac94e74a7b9d5ca57d7b21ea0dcf7785437fb216599202fff0d8d012b92
 DIST genpatches-6.7-8.experimental.tar.xz 5756 BLAKE2B 
e156ce5b54e76869f9e98182f2eb8a2c858a7c3d25d6b730883094aa79c411d78c8d62b8e5bbee66ef727516d41743752101353539e169befe7f0c1c51f99de1
 SHA512 
5c297c0254e72bc65c2d80e0c24e8e28c39158dff00fafb03c42fca6a3ccaf748b2fcea4998aa5e1614dcadc60ecb88b2c3ce620c5442e6a44d13dfcd88e7dcb
 DIST genpatches-6.7-8.extras.tar.xz 3704 BLAKE2B 
98589d74cef3e628d7a693a46f1f87845ca98faf8093c9e120320e107d8c1e76d82441ec6b1a3f12c9c5fc5d20cea2cab4d6cd5dda99b318bf31ec5ab7c8447e
 SHA512 
3e9a993586516e45d2fca24690b7ce001922732c20c5f52a7d954e5bdd1f8d7e91d4074b5128c085caeee49539dcb1a5a505424225c0100b8741f54d6ac3d095

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



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

2024-03-12 Thread Mike Pagano
commit: cd3633a2cac3a20afbe44b744a692539b1618cf2
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:22:40 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:22:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3633a2

sys-kernel/gentoo-sources: drop 6.7.5

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.7.5.ebuild | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 5d4467dd2fed..abc54e9d6044 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -44,9 +44,6 @@ DIST genpatches-6.7-12.extras.tar.xz 3704 BLAKE2B 
4725e84823acafc4a028ae249f3369
 DIST genpatches-6.7-13.base.tar.xz 742864 BLAKE2B 
63b5326788da244f61d76327c346ec64e7916eb4e6163a4ec7a94f4c51a5ce4fe0a75a58a781f4536811897226213c5ec85dc93b7b63d8d7ca81a0edb8724a98
 SHA512 
2d283438c2c9c7fec82107455949f6e525d34cd0542cf28594773f1dabc7061034579d71dda4e386f63cf8cd7d7921070a9cdd59c6478077ef87cb4b8064b431
 DIST genpatches-6.7-13.experimental.tar.xz 79092 BLAKE2B 
643f69166d9f0208354abc62468ac2056ace23d53fb508520b0b23b36dcef55935dcf40f09b045402070c09d39cb2145ceb505271cfea8885073c9930413
 SHA512 
171c6390d76cadd374d95ba89a940aaaecb61ab9039a0cdf7c2df43d63c375f65b88ff7f3a07b930c65936623edd1896bb77ef9f58bdb1c385854355957ab5b5
 DIST genpatches-6.7-13.extras.tar.xz 3704 BLAKE2B 
3a8af901c0e76fa3fe36d9dea4e8f7d034553c705f608c365cc7d50050b45e5c13b6ff530cd63ffa51054fcc0fa20d9fa45680f24063d73773f1ca407a81e395
 SHA512 
201a6724e62e6abfe110a6051c5d73e1fcedddba37220916631dcdd470bf3414dd3b6d499058bbf288f8fdc9e87d7a01a667412815521d8489773d17db9a5c67
-DIST genpatches-6.7-9.base.tar.xz 503176 BLAKE2B 
420c8e40d2abc26201b50197f3cf32f8a3cd2e3d49013e60b215fe567089e88bfeeac8bba1f8d95724c51dc1e72af86ea18c9b5f35133046f9f77059f0de3bb5
 SHA512 
23b636e3ab4bd81c509533cf76f96b7e5b10d4d9dfe57b5bb162d53991eab57043f3b935882e7643e1f1db39de4e18143785d0f65c65ed71e9b546a147dae4c6
-DIST genpatches-6.7-9.experimental.tar.xz 5760 BLAKE2B 
6c826ebee388536b3af88ef65405b3201ecad9e0ebdab1a640c044c1b93a43ea4d2b4709da09f8eb31e36dff9c72d13620984419fce6c86758001674e58824ba
 SHA512 
f52f509212b775be2ffd4040aae903b31292f32635958e0ede5856c2bcb7c7fdb1caca92f0a498cd2cea4917ccd7a92fc3b2f2c30f1c5454f11de81ea8367840
-DIST genpatches-6.7-9.extras.tar.xz 3700 BLAKE2B 
a535ebb75c26ea320af3ee4523d48c479e38acced934c09e6dd027df2c1ec281c8520d953b238b4a88c1ada82b5fadb77e7ddcade3ee112f50e1ae7b3eff5a79
 SHA512 
91dd0e05b3b14422d65752e6995858b68b75d155e498b89280cac776f29ef7805c74b9e46505a16d7644cf94b789cba7adf2bf18b453e93122c8c361ee22afcd
 DIST genpatches-6.8-1.base.tar.xz 4136 BLAKE2B 
a5bda1bbbe2f1d772226661e15329f52a09166e049b2c7df259fcf4bdfce0585fdafe798ce15cfbe8d66e7fbd69a3fbd29abd1bc0e2f98cca89fd09c9bac2884
 SHA512 
a6a9bceb77afab73d2f7686b27079b6d294861408c1e7cae399e1a8ab6f7a4e31d196f73cce84aa81f38ee8a8880ff2bad81541c2b22503105f0f4198d2001a0
 DIST genpatches-6.8-1.extras.tar.xz 3700 BLAKE2B 
ba0d9f61231a6df70eec23c74d18343420f8ff8e04777a1e19b90b64f89bbe345647fc5df41636458ed567bcb2ebf42445013060caff604654c4d0b9c259c5f0
 SHA512 
56c7c8996afc570775d5341066614f815d0233ddfc9ae55689c0929758e39fc01427da59b973c102451776f63a98f95c54fc8801bc303c3f5c14fe2612ec27a8
 DIST linux-5.10.tar.xz 116606704 BLAKE2B 
b923d7b66309224f42f35f8a5fa219421b0a9362d2adacdadd8d96251f61f7230878ea297a269a7f3b3c56830f0b177e068691e1d7f88501a05653b0a13274d1
 SHA512 
95bc137d0cf9148da6a9d1f1a878698dc27b40f68e22c597544010a6c591ce1b256f083489d3ff45ff77753289b535135590194d88ef9f007d0ddab3d74de70e

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



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

2024-03-12 Thread Mike Pagano
commit: 2c31b55a71b0a6e3886928306965a6d832013e31
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:22:11 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:22:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c31b55a

sys-kernel/gentoo-sources: drop 6.7.2-r1

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.7.2-r1.ebuild  | 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 0299ce8bf621..165d6059f879 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -44,9 +44,6 @@ DIST genpatches-6.7-12.extras.tar.xz 3704 BLAKE2B 
4725e84823acafc4a028ae249f3369
 DIST genpatches-6.7-13.base.tar.xz 742864 BLAKE2B 
63b5326788da244f61d76327c346ec64e7916eb4e6163a4ec7a94f4c51a5ce4fe0a75a58a781f4536811897226213c5ec85dc93b7b63d8d7ca81a0edb8724a98
 SHA512 
2d283438c2c9c7fec82107455949f6e525d34cd0542cf28594773f1dabc7061034579d71dda4e386f63cf8cd7d7921070a9cdd59c6478077ef87cb4b8064b431
 DIST genpatches-6.7-13.experimental.tar.xz 79092 BLAKE2B 
643f69166d9f0208354abc62468ac2056ace23d53fb508520b0b23b36dcef55935dcf40f09b045402070c09d39cb2145ceb505271cfea8885073c9930413
 SHA512 
171c6390d76cadd374d95ba89a940aaaecb61ab9039a0cdf7c2df43d63c375f65b88ff7f3a07b930c65936623edd1896bb77ef9f58bdb1c385854355957ab5b5
 DIST genpatches-6.7-13.extras.tar.xz 3704 BLAKE2B 
3a8af901c0e76fa3fe36d9dea4e8f7d034553c705f608c365cc7d50050b45e5c13b6ff530cd63ffa51054fcc0fa20d9fa45680f24063d73773f1ca407a81e395
 SHA512 
201a6724e62e6abfe110a6051c5d73e1fcedddba37220916631dcdd470bf3414dd3b6d499058bbf288f8fdc9e87d7a01a667412815521d8489773d17db9a5c67
-DIST genpatches-6.7-5.base.tar.xz 195356 BLAKE2B 
64dc86eb0d86a4afb318c09593bf0be4e210dd61e02c66d8b71bb56c2da29ebe04aed1329f90b3c6a1adadfded7bffc3a02d055b72c12df7e5500084c106bf2f
 SHA512 
c24f66198ad33c2cd4f8bd62ed2f21bb482803e874427318443742a28577c907c83c00365e99fc123e708334ae76d6d5f7237e50d1f6d8969a7888aa5041f26f
-DIST genpatches-6.7-5.experimental.tar.xz 78860 BLAKE2B 
f1bd21917b8d5a1b67ab88d3204b1644cff30b3fd4c7d9e4cf0f6583d9066e20b4d32aeda5c0bfc685c99383a50e58be1a77baac7d946dfcaa521290adab
 SHA512 
ea9cc9c7013f907b04bb174fae0563b6057e1d99c453de4f3dbf29a8f07f9c81ee5457e519512224aecfa3ee90c1be54dfa2944e2ee8f9b34647a26dd41812ba
-DIST genpatches-6.7-5.extras.tar.xz 3700 BLAKE2B 
8d4dcde0675f4921e2c0e34dd7df63da281fdef2e670b050cee44ef8cd3b0040031491a8585e72d166dd00af3e278baa1c4df7f3386a1a946ae141b67d31b25b
 SHA512 
6654e57796aaa17275621dd91ac1b205e4fb645231aba99366a3fe4136e713cb5ba87fee7ab3b0f606b3a6a0c72f402764760a110ca7299b2faaca492ea5585b
 DIST genpatches-6.7-6.base.tar.xz 325824 BLAKE2B 
f95dbe909af13e4da2edbd37d320f077b4229fb16d5e63c7e81f8bb5ac0e7fc78740dc94071a86e9ceacc12833b78ac0809c112609843551960db0dafe14ecef
 SHA512 
307a2dc54dd4a176effc8f942a60d7a5516b8402a1255fb4e9d2ac34f2316f813741ce3c3fafe3900244504323aada4fe22a3980205c062e3235dd623305be66
 DIST genpatches-6.7-6.experimental.tar.xz 79088 BLAKE2B 
eb05e24526cce9b07ba679e92ef89e339c6dcd3b3a2ff90cfd37829537174e6728f0cf978a9e15e159fce3117af3b40045e32d3d190423d6dcd5408541375d49
 SHA512 
f6adad74e354aaba2e135e413849e1969185df5e715c313a9eca38b72da2a5020b7472b6c3f21e1d16f6b596b262b7591e7932d058cb335e2d712e0283f95f7b
 DIST genpatches-6.7-6.extras.tar.xz 3704 BLAKE2B 
1e9669edb016fcf24960bd678171eb5ad3f8ef6c3477d1f3a2ae4a1f3e0cfe1a9ed14e54d2316858c64c1f52702659e6c3ba2bfd5ce079f2bb04f1cfec01f329
 SHA512 
fb786fa90d0d979d867a7c5fa9c24f81d3c019403d8dc8bbaf5c72c105703ee5fdb5305974062d274cbd86b712f62b053b82fa34f4b8096247da944b5ae2cf58

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



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

2024-03-12 Thread Mike Pagano
commit: f2093456db276dc42697c263db561468586052e1
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue Mar 12 18:21:13 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue Mar 12 18:21:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2093456

sys-kernel/gentoo-sources: drop 6.6.16

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.6.16.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 093d49bba9b0..add712e918ea 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -26,9 +26,6 @@ DIST genpatches-6.1-90.extras.tar.xz 3812 BLAKE2B 
466c0b796df7406c228fd4dbad20f8
 DIST genpatches-6.6-16.base.tar.xz 750868 BLAKE2B 
13af5286f51a69dd0ad7b2543bcf0d933865e14c4c865e495f3225a8740bd7579858cbbd72a2099333e8dc241900c166730d4c812183f2636bf3d4049156a71b
 SHA512 
70864a69f8bdb28f8fa3515a33be510a2c529a5c3bc767aede2dae1c290869491d776336be9983259685af9fee2d2bc61c821d0103c47e91b69078bf81fe2c63
 DIST genpatches-6.6-16.experimental.tar.xz 5756 BLAKE2B 
48c2224ae8759ebbd36f8fb31e720b2df2d8c0a519ae5990e5d5947b04c7a1d0bf515fa2cf4316f3c84885ee643734da2cd4ea80ed6ee0bbdc73d12025d1c132
 SHA512 
81438179ea1d3a202a8631400727f854f938182118dcafddf7faedb12f2b69df834ac349d75cfe0ed84da422d7613d4a45723668ead5f076780d2c3236145cd4
 DIST genpatches-6.6-16.extras.tar.xz 3704 BLAKE2B 
a33d9a80926abd8318f124fa6aa25f7181b88a6965c17908232ef2b866a27a5e856e464895994599265e0e57d8e1f81561758df4670f25ef5694e5d5f535ba95
 SHA512 
8ee1686a16886320b698ac0e3767804fc9bbaf595335203fb2899c727a0ca0f3e551ac13b3cbb97cec8d91e77257aa1da75669f1c41d263960875e9d31303b1a
-DIST genpatches-6.6-19.base.tar.xz 1118896 BLAKE2B 
2d94ffca6b8788df6fb9d8037ec7db0e2ae3b2b433e73e112e679a0a542d5f94afbcbb982d2279caeb20670ce03b5662cb9ab7108bfc5e470880db3a5f3c1306
 SHA512 
8795565efaf77d5cf9dba42e6aea216138192f0868d764e19f230e052ec656027d220b19a4c5d37814eb3c380c60358b529d0f40b40fab129bdb27318b86745e
-DIST genpatches-6.6-19.experimental.tar.xz 5756 BLAKE2B 
568b51ab5029ed1d543cea69500b57ebfaa75e515e4432ebad650ffcd7f4e65e808c1c5a1f87c1b5a786dbbf07c71b3c8d4c48bc6f5fd5b072060e543dc988a4
 SHA512 
4932ea3066362698287c457838defe377636aea7df42b75a46f2c024db9f9f8a35da4ff33469be2e2025d4e6f24d7238873e1ad271e59e49de90ba4bfafd01fb
-DIST genpatches-6.6-19.extras.tar.xz 3700 BLAKE2B 
88f3547af7522a28595c04006e01b5ba658bd7c0e89700fb4c6b0d76a39139cc4d97be10624038847f2de1d1c8e200455fe9b5bb18830da1354d8e4d4956b644
 SHA512 
a83e157d10149824632da6d3047aeccddff117de2aacbfd035547166fe549f8036087f1965c0bae723ecb4a1f6e665a34b7069636b4e2a3ecbc91405284781af
 DIST genpatches-6.6-23.base.tar.xz 1164692 BLAKE2B 
d42ccd9e636a413ffdbdb7dac699169f38b80617234b83b6ce49418f7dfd568f6d6718ce97a42b4df2f3ee1efa81df1a02102c123b88603dc558f72dd18af7e7
 SHA512 
1671b5d07294f73fe547a0cce8df38b5da78dc1596aa136190bae38d9eddc8b896c34e778eb80971336caa851c7d6c7640a59186cf1ecff26b89b69bdc9fb0da
 DIST genpatches-6.6-23.experimental.tar.xz 5756 BLAKE2B 
5fd9e6991b1fb7db932aac6cd9bdb19ea3f33d5249a4c55bced849dafbcba9cbe681e6d6bc328abb077fa4a7aad5be4bd8832561be58e356b178633feb061423
 SHA512 
d750cd39dba904c12d1b19b310c678a158a029eebd7fbd73b644973f8e6e3ddd9ad8aa2992ef84a3f838bdc1e0b85063b9e1e45d2fc139556e273bfd4abd7c0c
 DIST genpatches-6.6-23.extras.tar.xz 3704 BLAKE2B 
899c859be865bde37c41a2a24f1132f803404908002e0f01f28629ae0a03c2e1979f5239d495720c6de3ba7ba6032a5f74ae0e23bff10fe37f6f7ba31daab01c
 SHA512 
2ac88f95177413730b0668e0a33f8b27e04d9f7c42ee6fb2c9366efa06c95884e4b80ce3631105b73ae8b9ede0697b4859e92997e5059688698f96a0a2cbb129

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



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

2024-03-12 Thread Alfredo Tupone
commit: 90122667c4203020fe82245bcef962c3c86b278d
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Mar 12 18:43:25 2024 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Mar 12 18:44:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90122667

profiles: last rite sci-visualization/jupyter-dash

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 90ca40ece1ed..5772e8cac83e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Alfredo Tupone  (2024-03-12)
+# Not more needed, >=sci-visualization/dash-2.11 provide
+# direct integration with jupyter nodebook
+# Removal on 2024-04-11.
+sci-visualization/jupyter-dash
+
 # Volkmar W. Pogatzki  (2024-03-12)
 # Unused java libraries. Removal on 2024-04-11.
 dev-java/ant-eclipse-ecj



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

2024-03-12 Thread Matt Turner
commit: 6185edf6e05f15cbe702789fb5ab51f0e4965159
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 12 18:38:15 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 12 18:56:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6185edf6

media-libs/gmmlib: Update live ebuild

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/gmmlib/gmmlib-.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-libs/gmmlib/gmmlib-.ebuild 
b/media-libs/gmmlib/gmmlib-.ebuild
index 88b7feadef4d..2a09f24b8f3d 100644
--- a/media-libs/gmmlib/gmmlib-.ebuild
+++ b/media-libs/gmmlib/gmmlib-.ebuild
@@ -1,10 +1,8 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-CMAKE_BUILD_TYPE="Release"
-
 inherit cmake-multilib
 
 if [[ ${PV} == * ]] ; then
@@ -13,15 +11,18 @@ if [[ ${PV} == * ]] ; then
: ${EGIT_BRANCH:="release/${PV%.}"}
fi
inherit git-r3
+else
+   KEYWORDS="~amd64"
+   SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz;
+   S="${WORKDIR}/${PN}-intel-${P}"
 fi
 
 DESCRIPTION="Intel Graphics Memory Management Library"
 HOMEPAGE="https://github.com/intel/gmmlib;
-SRC_URI=""
 
 LICENSE="MIT"
 SLOT="0/12.3"
-IUSE="test +custom-cflags"
+IUSE="+custom-cflags test"
 RESTRICT="!test? ( test )"
 
 PATCHES=(
@@ -33,7 +34,6 @@ PATCHES=(
 multilib_src_configure() {
local mycmakeargs=(
-DBUILD_TESTING="$(usex test)"
-   -DBUILD_TYPE="Release"
-DOVERRIDE_COMPILER_FLAGS="$(usex !custom-cflags)"
)
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/libva-intel-media-driver/files/, media-libs/libva-intel-media-driver/

2024-03-12 Thread Matt Turner
commit: b3e39753ba5a7be293189a72c2556934ba6cf82c
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 12 18:55:50 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 12 18:57:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3e39753

media-libs/libva-intel-media-driver: Apply newer patches to live ebuild

Signed-off-by: Matt Turner  gentoo.org>

 ...va-intel-media-driver-20.2.0_x11_optional.patch | 16 
 ...l-media-driver-20.4.5_testing_in_src_test.patch | 46 --
 ...edia-driver-21.4.2-Remove-unwanted-CFLAGS.patch | 43 
 .../libva-intel-media-driver-.ebuild   |  9 ++---
 4 files changed, 4 insertions(+), 110 deletions(-)

diff --git 
a/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-20.2.0_x11_optional.patch
 
b/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-20.2.0_x11_optional.patch
deleted file mode 100644
index 81c80d80f902..
--- 
a/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-20.2.0_x11_optional.patch
+++ /dev/null
@@ -1,16 +0,0 @@
 a/media_driver/media_top_cmake.cmake
-+++ b/media_driver/media_top_cmake.cmake
-@@ -21,7 +21,12 @@
- project( media )
- 
- find_package(PkgConfig)
-+if(NOT DEFINED USE_X11 OR USE_X11)
- find_package(X11)
-+endif(NOT DEFINED USE_X11 OR USE_X11)
-+if(USE_X11 AND NOT X11_FOUND)
-+message(FATAL_ERROR "Usage of X11 is required by USE_X11 variable, but 
X11 package is not found")
-+endif(USE_X11 AND NOT X11_FOUND)
- 
- bs_set_if_undefined(LIB_NAME iHD_drv_video)
- 
-

diff --git 
a/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-20.4.5_testing_in_src_test.patch
 
b/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-20.4.5_testing_in_src_test.patch
deleted file mode 100644
index 3c6d500f2fbf..
--- 
a/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-20.4.5_testing_in_src_test.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Run tests in src_test() instead of src_compile() and src_install()
-
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -37,6 +37,8 @@ if("${os_name}" STREQUAL "clear-linux-os")
- set(CMAKE_INSTALL_SYSCONFDIR "usr/share/defaults/etc")
- endif()
- 
-+include(CTest)
-+
- include(CMakeDependentOption)
- 
- option (ENABLE_KERNELS "Build driver with shaders (kernels) support" ON)
 a/media_driver/linux/ult/CMakeLists.txt
-+++ b/media_driver/linux/ult/CMakeLists.txt
-@@ -52,9 +52,3 @@ endif ()
- add_subdirectory(libdrm_mock)
- add_subdirectory(ult_app)
- 
--enable_testing()
--add_test(NAME test_devult COMMAND devult ${UMD_PATH})
--set_tests_properties(test_devult
--PROPERTIES PASS_REGULAR_EXPRESSION "PASS")
--set_tests_properties(test_devult
--PROPERTIES FAIL_REGULAR_EXPRESSION "FAIL")
 a/media_driver/linux/ult/ult_app/CMakeLists.txt
-+++ b/media_driver/linux/ult/ult_app/CMakeLists.txt
-@@ -68,13 +68,11 @@ if (DEFINED BYPASS_MEDIA_ULT AND "${BYPASS_MEDIA_ULT}" 
STREQUAL "yes")
- message("-- media -- BYPASS_MEDIA_ULT = ${BYPASS_MEDIA_ULT}")
- else ()
- if (ENABLE_NONFREE_KERNELS)
--add_custom_target(RunULT ALL DEPENDS ${LIB_NAME} devult)
- 
--add_custom_command(
--TARGET RunULT
--POST_BUILD
--COMMAND LD_PRELOAD=../libdrm_mock/libdrm_mock.so ./devult 
../../../${LIB_NAME}.so
-+add_test(
-+NAME RunULT
-+COMMAND "${CMAKE_COMMAND}" -E env 
"LD_PRELOAD=${CMAKE_CURRENT_BINARY_DIR}/../libdrm_mock/libdrm_mock.so" 
"${CMAKE_CURRENT_BINARY_DIR}/devult" 
"${CMAKE_CURRENT_BINARY_DIR}/../../../${LIB_NAME}.so"
- WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
--COMMENT "Running devult...")
-+)
- endif ()
- endif ()
-

diff --git 
a/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-21.4.2-Remove-unwanted-CFLAGS.patch
 
b/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-21.4.2-Remove-unwanted-CFLAGS.patch
deleted file mode 100644
index 288fe2d7f517..
--- 
a/media-libs/libva-intel-media-driver/files/libva-intel-media-driver-21.4.2-Remove-unwanted-CFLAGS.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From f1c5c12d866783f7a3079be440c06fdb8a931ed2 Mon Sep 17 00:00:00 2001
-From: Matt Turner 
-Date: Tue, 23 Nov 2021 12:28:05 -0800
-Subject: [PATCH] Remove unwanted CFLAGS
-

- media_driver/cmake/linux/media_compile_flags_linux.cmake | 7 ---
- 1 file changed, 7 deletions(-)
-
-diff --git a/media_driver/cmake/linux/media_compile_flags_linux.cmake 
b/media_driver/cmake/linux/media_compile_flags_linux.cmake
-index 512ef17b..e8ade76d 100755
 a/media_driver/cmake/linux/media_compile_flags_linux.cmake
-+++ b/media_driver/cmake/linux/media_compile_flags_linux.cmake
-@@ -52,16 +52,12 @@ set(MEDIA_COMPILER_FLAGS_COMMON
- -ffunction-sections
- -Wl,--gc-sections
- 
--# -m32 or -m64
---m${ARCH}
--
- # Global defines
- -DLINUX=1
- 

[gentoo-commits] repo/gentoo:master commit in: media-libs/libva-intel-media-driver/

2024-03-12 Thread Matt Turner
commit: 3feff8553797b9d6c49d9bc6c17342c359a5ca11
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 12 18:52:03 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 12 18:57:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3feff855

media-libs/libva-intel-media-driver: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libva-intel-media-driver/Manifest   |  2 -
 .../libva-intel-media-driver-23.4.3.ebuild | 57 --
 .../libva-intel-media-driver-24.1.1.ebuild | 57 --
 3 files changed, 116 deletions(-)

diff --git a/media-libs/libva-intel-media-driver/Manifest 
b/media-libs/libva-intel-media-driver/Manifest
index e354a5a3e183..686af388b7b9 100644
--- a/media-libs/libva-intel-media-driver/Manifest
+++ b/media-libs/libva-intel-media-driver/Manifest
@@ -1,4 +1,2 @@
-DIST intel-media-23.4.3.tar.gz 25805389 BLAKE2B 
ecb766bc3316e7cda338cc0b279ee31455596d004c11282dd1cad94f85f36c7711077648ae78c9b24e02198f8cc00746161fef119b86b10da52ddb2bf2949de5
 SHA512 
f28967d5474d43878ce6bf3e793c1a129fa0cd0240a2478d5d56ceb1fba3171ee8389c328818d90f914cabdd26caf1e7185dc9b38cd911a799b1fe2d8bc1ddfb
-DIST intel-media-24.1.1.tar.gz 25814687 BLAKE2B 
b9d721c17f7caa594668c2221cb730fe7e2b8f7a8ccef85b3f174012d76500c5f890a1abc8a0b0ca893cc80314044321b5e965e72dac4ed357197bc426b493d0
 SHA512 
42c30d24aab0d73510069dd83e59e0e9a29484b98969e94078681cfa2a832a3c44fac3942535a57db8c75db75d47e3a76c7b7d919fcff292fe6455eede418198
 DIST intel-media-24.1.3.tar.gz 25817697 BLAKE2B 
683c22c484b5b10ad392e98bb75e85652f8e3b0ca9d06ab08d8c23fe71f46cb34804722405c70727b97a9bdf13c7610518a093a674996e35affed7a327ed9d83
 SHA512 
4f1844422ebad74f698ae5d14fd8e0bf7d9b2c4e98edb8f7c0a36957f8ebb43bc0191fab36b9b7b57d96f44ec3bb1f3dcba7b2c74f51786164d9380fb3523c3e
 DIST intel-media-24.1.4.tar.gz 25821533 BLAKE2B 
9c9d18f7c5a9b2016daa1df8e208f6ba2670fc353f72faec5f57f82bef69fcc9987cd81b4913e831e19930692631648fe9bc7a364486e51aa165f722af8c2e0b
 SHA512 
ca590c1ffe5c38959717d48fdee893aab5896df45e3e80618cb63fa9cfc502688e68b5cc45d6e20ddd496b546906829852dfdb296f5fe4b1fec396878417fe23

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-23.4.3.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-23.4.3.ebuild
deleted file mode 100644
index 724fb1822753..
--- a/media-libs/libva-intel-media-driver/libva-intel-media-driver-23.4.3.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib flag-o-matic
-
-if [[ ${PV} == * ]] ; then
-   : ${EGIT_REPO_URI:="https://github.com/intel/media-driver"}
-   if [[ ${PV%} != "" ]] ; then
-   : ${EGIT_BRANCH:="release/${PV%.}"}
-   fi
-   inherit git-r3
-else
-   MY_PV="${PV%_pre}"
-   
SRC_URI="https://github.com/intel/media-driver/archive/intel-media-${MY_PV}.tar.gz;
-   S="${WORKDIR}/media-driver-intel-media-${MY_PV}"
-   if [[ ${PV} != *_pre* ]] ; then
-   KEYWORDS="amd64"
-   fi
-fi
-
-DESCRIPTION="Intel Media Driver for VA-API (iHD)"
-HOMEPAGE="https://github.com/intel/media-driver;
-
-LICENSE="MIT BSD redistributable? ( no-source-code )"
-SLOT="0"
-IUSE="+redistributable test X"
-
-RESTRICT="!test? ( test )"
-
-DEPEND=">=media-libs/gmmlib-22.3.14:=[${MULTILIB_USEDEP}]
-   >=media-libs/libva-2.20.0[X?,${MULTILIB_USEDEP}]
-"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-23.3.4-Remove-unwanted-CFLAGS.patch
-   "${FILESDIR}"/${PN}-23.3.4_testing_in_src_test.patch
-)
-
-multilib_src_configure() {
-   # https://github.com/intel/media-driver/issues/356
-   append-cxxflags -D_FILE_OFFSET_BITS=64
-
-   local mycmakeargs=(
-   -DMEDIA_BUILD_FATAL_WARNINGS=OFF
-   -DMEDIA_RUN_TEST_SUITE=$(usex test)
-   -DBUILD_TYPE=Release
-   -DPLATFORM=linux
-   -DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)
-   -DENABLE_NONFREE_KERNELS=$(usex redistributable)
-   -DLATEST_CPP_NEEDED=ON # Seems to be the best option for now
-   )
-   local CMAKE_BUILD_TYPE="Release"
-   cmake_src_configure
-}

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.1.1.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.1.1.ebuild
deleted file mode 100644
index c39052ca1e08..
--- a/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.1.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib flag-o-matic
-
-if [[ ${PV} == * ]] ; then
-   : ${EGIT_REPO_URI:="https://github.com/intel/media-driver"}
-   if [[ ${PV%} != "" ]] ; then
-   : ${EGIT_BRANCH:="release/${PV%.}"}

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

2024-03-12 Thread Matt Turner
commit: e317cda42e045d35dfd852bca8025a8efca7d0d6
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 12 18:01:27 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 12 18:56:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e317cda4

media-libs/gmmlib: Version bump to 22.3.18

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/gmmlib/Manifest  |  1 +
 media-libs/gmmlib/gmmlib-22.3.18.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/media-libs/gmmlib/Manifest b/media-libs/gmmlib/Manifest
index 0450985420d5..2963309adc53 100644
--- a/media-libs/gmmlib/Manifest
+++ b/media-libs/gmmlib/Manifest
@@ -1,2 +1,3 @@
 DIST intel-gmmlib-22.3.14.tar.gz 845841 BLAKE2B 
b766ab36aa24d226a2299c68f4741341ae9f4d2a6366b68ee7b82669ac78f41097c572e28aa9cac69d06a5d7a246fd0f9cfacc33213423209b8c708e8075
 SHA512 
7474f3a4899bd4474e2856ff98dd434ee73a1f53b836224cb6fccaace48bd26940d7c907ce00ae5c6d31af9378f33460a9df4299cabdec6c9c233b5730bf31a6
 DIST intel-gmmlib-22.3.17.tar.gz 845954 BLAKE2B 
d01a3b86c539fdeb4d2d66d81590b71dfca045f976f100ff53e0bc8da354c2311ff4c0ff6c371fa63ed97fba387611670a7a8d48eccdf0494824f4c48e4e4c43
 SHA512 
073cb2e9ec025ae32e2f33f51547083cd8425b0c7297e361b037c71b55a8d2322cd36ac7cabbf8c7a325f80f1cc97947c0aa8aa833dc5fbae5abe28e9c04451a
+DIST intel-gmmlib-22.3.18.tar.gz 846277 BLAKE2B 
79485dfe33537053b9986f2f97771c551757da0f9ba721f82f5ff057bf230aa7ad79818d6915fb26cd354cb49d4da27c770c5adb61e530bdd39b51469fc4f9af
 SHA512 
6dab0522a4d15bd5147cb72899a48170f441d5160dc11224809477380b3762ade845e7498a54df7de6673c0ad44bd037db754713697794e26106837f69eb0636

diff --git a/media-libs/gmmlib/gmmlib-22.3.18.ebuild 
b/media-libs/gmmlib/gmmlib-22.3.18.ebuild
new file mode 100644
index ..2a09f24b8f3d
--- /dev/null
+++ b/media-libs/gmmlib/gmmlib-22.3.18.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib
+
+if [[ ${PV} == * ]] ; then
+   : ${EGIT_REPO_URI:="https://github.com/intel/gmmlib"}
+   if [[ ${PV%} != "" ]] ; then
+   : ${EGIT_BRANCH:="release/${PV%.}"}
+   fi
+   inherit git-r3
+else
+   KEYWORDS="~amd64"
+   SRC_URI="https://github.com/intel/gmmlib/archive/intel-${P}.tar.gz;
+   S="${WORKDIR}/${PN}-intel-${P}"
+fi
+
+DESCRIPTION="Intel Graphics Memory Management Library"
+HOMEPAGE="https://github.com/intel/gmmlib;
+
+LICENSE="MIT"
+SLOT="0/12.3"
+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
+)
+
+multilib_src_configure() {
+   local mycmakeargs=(
+   -DBUILD_TESTING="$(usex test)"
+   -DOVERRIDE_COMPILER_FLAGS="$(usex !custom-cflags)"
+   )
+
+   cmake_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: media-libs/libva-intel-media-driver/

2024-03-12 Thread Matt Turner
commit: 90294aad03ef9bd2356bb5f1ba9ff6dd2687455b
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 12 18:45:11 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 12 18:57:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90294aad

media-libs/libva-intel-media-driver: Version bump to 24.1.4

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/libva-intel-media-driver/Manifest   |  1 +
 .../libva-intel-media-driver-24.1.4.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/media-libs/libva-intel-media-driver/Manifest 
b/media-libs/libva-intel-media-driver/Manifest
index 636a7e112d39..e354a5a3e183 100644
--- a/media-libs/libva-intel-media-driver/Manifest
+++ b/media-libs/libva-intel-media-driver/Manifest
@@ -1,3 +1,4 @@
 DIST intel-media-23.4.3.tar.gz 25805389 BLAKE2B 
ecb766bc3316e7cda338cc0b279ee31455596d004c11282dd1cad94f85f36c7711077648ae78c9b24e02198f8cc00746161fef119b86b10da52ddb2bf2949de5
 SHA512 
f28967d5474d43878ce6bf3e793c1a129fa0cd0240a2478d5d56ceb1fba3171ee8389c328818d90f914cabdd26caf1e7185dc9b38cd911a799b1fe2d8bc1ddfb
 DIST intel-media-24.1.1.tar.gz 25814687 BLAKE2B 
b9d721c17f7caa594668c2221cb730fe7e2b8f7a8ccef85b3f174012d76500c5f890a1abc8a0b0ca893cc80314044321b5e965e72dac4ed357197bc426b493d0
 SHA512 
42c30d24aab0d73510069dd83e59e0e9a29484b98969e94078681cfa2a832a3c44fac3942535a57db8c75db75d47e3a76c7b7d919fcff292fe6455eede418198
 DIST intel-media-24.1.3.tar.gz 25817697 BLAKE2B 
683c22c484b5b10ad392e98bb75e85652f8e3b0ca9d06ab08d8c23fe71f46cb34804722405c70727b97a9bdf13c7610518a093a674996e35affed7a327ed9d83
 SHA512 
4f1844422ebad74f698ae5d14fd8e0bf7d9b2c4e98edb8f7c0a36957f8ebb43bc0191fab36b9b7b57d96f44ec3bb1f3dcba7b2c74f51786164d9380fb3523c3e
+DIST intel-media-24.1.4.tar.gz 25821533 BLAKE2B 
9c9d18f7c5a9b2016daa1df8e208f6ba2670fc353f72faec5f57f82bef69fcc9987cd81b4913e831e19930692631648fe9bc7a364486e51aa165f722af8c2e0b
 SHA512 
ca590c1ffe5c38959717d48fdee893aab5896df45e3e80618cb63fa9cfc502688e68b5cc45d6e20ddd496b546906829852dfdb296f5fe4b1fec396878417fe23

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.1.4.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.1.4.ebuild
new file mode 100644
index ..c39052ca1e08
--- /dev/null
+++ b/media-libs/libva-intel-media-driver/libva-intel-media-driver-24.1.4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib flag-o-matic
+
+if [[ ${PV} == * ]] ; then
+   : ${EGIT_REPO_URI:="https://github.com/intel/media-driver"}
+   if [[ ${PV%} != "" ]] ; then
+   : ${EGIT_BRANCH:="release/${PV%.}"}
+   fi
+   inherit git-r3
+else
+   MY_PV="${PV%_pre}"
+   
SRC_URI="https://github.com/intel/media-driver/archive/intel-media-${MY_PV}.tar.gz;
+   S="${WORKDIR}/media-driver-intel-media-${MY_PV}"
+   if [[ ${PV} != *_pre* ]] ; then
+   KEYWORDS="~amd64"
+   fi
+fi
+
+DESCRIPTION="Intel Media Driver for VA-API (iHD)"
+HOMEPAGE="https://github.com/intel/media-driver;
+
+LICENSE="MIT BSD redistributable? ( no-source-code )"
+SLOT="0"
+IUSE="+redistributable test X"
+
+RESTRICT="!test? ( test )"
+
+DEPEND=">=media-libs/gmmlib-22.3.14:=[${MULTILIB_USEDEP}]
+   >=media-libs/libva-2.20.0[X?,${MULTILIB_USEDEP}]
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-23.3.4-Remove-unwanted-CFLAGS.patch
+   "${FILESDIR}"/${PN}-23.3.4_testing_in_src_test.patch
+)
+
+multilib_src_configure() {
+   # https://github.com/intel/media-driver/issues/356
+   append-cxxflags -D_FILE_OFFSET_BITS=64
+
+   local mycmakeargs=(
+   -DMEDIA_BUILD_FATAL_WARNINGS=OFF
+   -DMEDIA_RUN_TEST_SUITE=$(usex test)
+   -DBUILD_TYPE=Release
+   -DPLATFORM=linux
+   -DCMAKE_DISABLE_FIND_PACKAGE_X11=$(usex !X)
+   -DENABLE_NONFREE_KERNELS=$(usex redistributable)
+   -DLATEST_CPP_NEEDED=ON # Seems to be the best option for now
+   )
+   local CMAKE_BUILD_TYPE="Release"
+   cmake_src_configure
+}



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

2024-03-12 Thread Matt Turner
commit: 6d85c4e7e48c18dba1fa69d218ffc3365de2bdcc
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Mar 12 18:43:28 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Mar 12 18:57:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d85c4e7

media-libs/gmmlib: Drop old versions

Signed-off-by: Matt Turner  gentoo.org>

 media-libs/gmmlib/Manifest  |  1 -
 media-libs/gmmlib/gmmlib-22.3.14.ebuild | 35 -
 2 files changed, 36 deletions(-)

diff --git a/media-libs/gmmlib/Manifest b/media-libs/gmmlib/Manifest
index 2963309adc53..7806218511ee 100644
--- a/media-libs/gmmlib/Manifest
+++ b/media-libs/gmmlib/Manifest
@@ -1,3 +1,2 @@
-DIST intel-gmmlib-22.3.14.tar.gz 845841 BLAKE2B 
b766ab36aa24d226a2299c68f4741341ae9f4d2a6366b68ee7b82669ac78f41097c572e28aa9cac69d06a5d7a246fd0f9cfacc33213423209b8c708e8075
 SHA512 
7474f3a4899bd4474e2856ff98dd434ee73a1f53b836224cb6fccaace48bd26940d7c907ce00ae5c6d31af9378f33460a9df4299cabdec6c9c233b5730bf31a6
 DIST intel-gmmlib-22.3.17.tar.gz 845954 BLAKE2B 
d01a3b86c539fdeb4d2d66d81590b71dfca045f976f100ff53e0bc8da354c2311ff4c0ff6c371fa63ed97fba387611670a7a8d48eccdf0494824f4c48e4e4c43
 SHA512 
073cb2e9ec025ae32e2f33f51547083cd8425b0c7297e361b037c71b55a8d2322cd36ac7cabbf8c7a325f80f1cc97947c0aa8aa833dc5fbae5abe28e9c04451a
 DIST intel-gmmlib-22.3.18.tar.gz 846277 BLAKE2B 
79485dfe33537053b9986f2f97771c551757da0f9ba721f82f5ff057bf230aa7ad79818d6915fb26cd354cb49d4da27c770c5adb61e530bdd39b51469fc4f9af
 SHA512 
6dab0522a4d15bd5147cb72899a48170f441d5160dc11224809477380b3762ade845e7498a54df7de6673c0ad44bd037db754713697794e26106837f69eb0636

diff --git a/media-libs/gmmlib/gmmlib-22.3.14.ebuild 
b/media-libs/gmmlib/gmmlib-22.3.14.ebuild
deleted file mode 100644
index 0afd5902192b..
--- a/media-libs/gmmlib/gmmlib-22.3.14.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CMAKE_BUILD_TYPE="Release"
-
-inherit cmake-multilib
-
-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.3"
-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
-)
-
-multilib_src_configure() {
-   local mycmakeargs=(
-   -DBUILD_TESTING="$(usex test)"
-   -DBUILD_TYPE="Release"
-   -DOVERRIDE_COMPILER_FLAGS="$(usex !custom-cflags)"
-   )
-
-   cmake_src_configure
-}



[gentoo-commits] repo/proj/guru:dev commit in: x11-misc/gromit-mpx/files/, x11-misc/gromit-mpx/

2024-03-12 Thread Oliver Freyermuth
commit: 098f7ccd10e3442e6d253122bc5f69dbfa06d672
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Tue Mar 12 19:19:46 2024 +
Commit: Oliver Freyermuth  googlemail  com>
CommitDate: Tue Mar 12 19:19:46 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=098f7ccd

x11-misc/gromit-mpx: drop 1.4.3, 1.5.0

Signed-off-by: Oliver Freyermuth  googlemail.com>

 x11-misc/gromit-mpx/Manifest   |  2 -
 ...omit-mpx-1.4.3-fwd-declare-app_parse_args.patch | 16 
 x11-misc/gromit-mpx/gromit-mpx-1.4.3.ebuild| 44 --
 x11-misc/gromit-mpx/gromit-mpx-1.5.0.ebuild| 40 
 4 files changed, 102 deletions(-)

diff --git a/x11-misc/gromit-mpx/Manifest b/x11-misc/gromit-mpx/Manifest
index 77a00b0326..ed9c45ffc3 100644
--- a/x11-misc/gromit-mpx/Manifest
+++ b/x11-misc/gromit-mpx/Manifest
@@ -1,4 +1,2 @@
-DIST gromit-mpx-1.4.3.tar.gz 1861824 BLAKE2B 
f8337adf400b40e10dd32dfc702be73039e2cc3da9430b4d911794b6e0a9f16b6862948c9573d189445f47ec23a6bde2126765cf8df61af0a46b7dcb94c951d4
 SHA512 
9da94c3aed4d9c52c62317373ae1ca6dd6ece1adf3c48b95126b6f40ebe6ae8ede45c7c8c93732bcaafbb7ba85b66677b100cb0115fa989661e1e9c8f489ae25
-DIST gromit-mpx-1.5.0.tar.gz 1878498 BLAKE2B 
db4e7ef12dd9abad7968d412b221d6a48348a1eb5bcd791787cb99bdb400674126bb9902b77825d260ddd26731bd9b674bf806d7a856ece2bd5f417ad45323f7
 SHA512 
5da359c1d25dcb8797096a905072c59f1fc7aafd60b3624908e90a5388bdd928f81bde615c46acfe2d51c0b869ee70c271c561396cd992d3a18e389ba6b281a7
 DIST gromit-mpx-1.5.1.tar.gz 1879207 BLAKE2B 
1c4a74bad52547ac5c37de8ad7cae1d8b5fdf8b17dd1f7d0e5ce6ffbbd1610e719bf26172d53967951e7083a4a0405763c4e650a7a521a06b105bbc96ecc8e18
 SHA512 
42b27a2753b5345d791a4b67e6746de7f2225c823c048c5cbbea86f4c3499bb373eb97e2f7e93f098e6657c551db6053698ce73aec648d62341071c8100c6455
 DIST gromit-mpx-1.6.0.tar.gz 1883341 BLAKE2B 
184b6f70e620325f23213c38782e808f90e6b4bad0c786a586df854cf3a391037a3d3b56e504a7261120682b2119e535fcc7af9b87022fb280d34900c0655ed8
 SHA512 
6afac0f1c0cf0b4ef62b8811b6903b2fdfbc41f1377abd582fee606e90ce66abaf5d9ab2b34cb4797795f40cca6043334ca71bfdc8a5547551aa480d489ecbc7

diff --git 
a/x11-misc/gromit-mpx/files/gromit-mpx-1.4.3-fwd-declare-app_parse_args.patch 
b/x11-misc/gromit-mpx/files/gromit-mpx-1.4.3-fwd-declare-app_parse_args.patch
deleted file mode 100644
index 90367cfb48..00
--- 
a/x11-misc/gromit-mpx/files/gromit-mpx-1.4.3-fwd-declare-app_parse_args.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Fixes compilation with -Werror,-Wimplicit-function-declaration.
-
-Bug: https://bugs.gentoo.org/888149
-Bug: https://github.com/bk138/gromit-mpx/pull/173
-
 gromit-mpx-1.4.3/src/gromit-mpx.c  2022-09-25 14:43:43.0 +0200
-+++ gromit-mpx-1.4.3/src/gromit-mpx.c  2022-12-24 18:32:23.629233288 +0100
-@@ -696,7 +696,7 @@
- }
- 
- 
--
-+int app_parse_args (int argc, char **argv, GromitData *data);
- 
- 
- void setup_main_app (GromitData *data, int argc, char ** argv)

diff --git a/x11-misc/gromit-mpx/gromit-mpx-1.4.3.ebuild 
b/x11-misc/gromit-mpx/gromit-mpx-1.4.3.ebuild
deleted file mode 100644
index 1d64637ab5..00
--- a/x11-misc/gromit-mpx/gromit-mpx-1.4.3.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="Gromit-MPX is a multi-pointer GTK3 port of the Gromit desktop 
annotation tool"
-HOMEPAGE="https://github.com/bk138/gromit-mpx;
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/bk138/${PN}.git;
-else
-   SRC_URI="https://github.com/bk138/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-SLOT="0"
-LICENSE="GPL-2"
-
-RDEPEND="
-   x11-libs/gtk+:3
-   dev-libs/libappindicator:3
-   x11-libs/libX11
-   >=x11-apps/xinput-1.3
-"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.4.3-fwd-declare-app_parse_args.patch
-)
-
-src_prepare () {
-   cmake_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc
-   )
-
-   cmake_src_configure
-}

diff --git a/x11-misc/gromit-mpx/gromit-mpx-1.5.0.ebuild 
b/x11-misc/gromit-mpx/gromit-mpx-1.5.0.ebuild
deleted file mode 100644
index 95600ede05..00
--- a/x11-misc/gromit-mpx/gromit-mpx-1.5.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
-
-inherit cmake xdg
-
-DESCRIPTION="Gromit-MPX is a multi-pointer GTK3 port of the Gromit desktop 
annotation tool"
-HOMEPAGE="https://github.com/bk138/gromit-mpx;
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/bk138/${PN}.git;
-else
-   SRC_URI="https://github.com/bk138/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-SLOT="0"

[gentoo-commits] repo/proj/guru:dev commit in: x11-misc/gromit-mpx/

2024-03-12 Thread Oliver Freyermuth
commit: 4f5bc62c59da59234550327b8b09bb59a8a28a5c
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Tue Mar 12 19:18:57 2024 +
Commit: Oliver Freyermuth  googlemail  com>
CommitDate: Tue Mar 12 19:18:57 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f5bc62c

x11-misc/gromit-mpx: add 1.6.0

Signed-off-by: Oliver Freyermuth  googlemail.com>

 x11-misc/gromit-mpx/Manifest|  1 +
 x11-misc/gromit-mpx/gromit-mpx-1.6.0.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/x11-misc/gromit-mpx/Manifest b/x11-misc/gromit-mpx/Manifest
index 568e0ffb1d..77a00b0326 100644
--- a/x11-misc/gromit-mpx/Manifest
+++ b/x11-misc/gromit-mpx/Manifest
@@ -1,3 +1,4 @@
 DIST gromit-mpx-1.4.3.tar.gz 1861824 BLAKE2B 
f8337adf400b40e10dd32dfc702be73039e2cc3da9430b4d911794b6e0a9f16b6862948c9573d189445f47ec23a6bde2126765cf8df61af0a46b7dcb94c951d4
 SHA512 
9da94c3aed4d9c52c62317373ae1ca6dd6ece1adf3c48b95126b6f40ebe6ae8ede45c7c8c93732bcaafbb7ba85b66677b100cb0115fa989661e1e9c8f489ae25
 DIST gromit-mpx-1.5.0.tar.gz 1878498 BLAKE2B 
db4e7ef12dd9abad7968d412b221d6a48348a1eb5bcd791787cb99bdb400674126bb9902b77825d260ddd26731bd9b674bf806d7a856ece2bd5f417ad45323f7
 SHA512 
5da359c1d25dcb8797096a905072c59f1fc7aafd60b3624908e90a5388bdd928f81bde615c46acfe2d51c0b869ee70c271c561396cd992d3a18e389ba6b281a7
 DIST gromit-mpx-1.5.1.tar.gz 1879207 BLAKE2B 
1c4a74bad52547ac5c37de8ad7cae1d8b5fdf8b17dd1f7d0e5ce6ffbbd1610e719bf26172d53967951e7083a4a0405763c4e650a7a521a06b105bbc96ecc8e18
 SHA512 
42b27a2753b5345d791a4b67e6746de7f2225c823c048c5cbbea86f4c3499bb373eb97e2f7e93f098e6657c551db6053698ce73aec648d62341071c8100c6455
+DIST gromit-mpx-1.6.0.tar.gz 1883341 BLAKE2B 
184b6f70e620325f23213c38782e808f90e6b4bad0c786a586df854cf3a391037a3d3b56e504a7261120682b2119e535fcc7af9b87022fb280d34900c0655ed8
 SHA512 
6afac0f1c0cf0b4ef62b8811b6903b2fdfbc41f1377abd582fee606e90ce66abaf5d9ab2b34cb4797795f40cca6043334ca71bfdc8a5547551aa480d489ecbc7

diff --git a/x11-misc/gromit-mpx/gromit-mpx-1.6.0.ebuild 
b/x11-misc/gromit-mpx/gromit-mpx-1.6.0.ebuild
new file mode 100644
index 00..3b827169fc
--- /dev/null
+++ b/x11-misc/gromit-mpx/gromit-mpx-1.6.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="Gromit-MPX is a multi-pointer GTK3 port of the Gromit desktop 
annotation tool"
+HOMEPAGE="https://github.com/bk138/gromit-mpx;
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/bk138/${PN}.git;
+else
+   SRC_URI="https://github.com/bk138/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+SLOT="0"
+LICENSE="GPL-2"
+
+RDEPEND="
+   x11-libs/gtk+:3
+   dev-libs/libappindicator:3
+   x11-libs/libX11
+   >=x11-apps/xinput-1.3
+"
+DEPEND="${RDEPEND}"
+
+src_prepare () {
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}"/etc
+   )
+
+   cmake_src_configure
+}



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

2024-03-12 Thread Arthur Zamarin
commit: c4ea419fd463d9d659c24f893cd2a032e8688983
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:52 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4ea419f

app-text/mupdf: Stabilize 1.23.7-r1 ppc, #926846

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

 app-text/mupdf/mupdf-1.23.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mupdf/mupdf-1.23.7-r1.ebuild 
b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
index d54e9d7dbaad..04be45dd91cf 100644
--- a/app-text/mupdf/mupdf-1.23.7-r1.ebuild
+++ b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${P}-source
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-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="+javascript opengl ssl X"
 REQUIRED_USE="opengl? ( javascript )"
 



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

2024-03-12 Thread Arthur Zamarin
commit: 4e91b92285fd9f0e2b2a2a062d77678402c66ade
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:52 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e91b922

app-text/mupdf: Stabilize 1.23.7-r1 ppc64, #926846

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

 app-text/mupdf/mupdf-1.23.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mupdf/mupdf-1.23.7-r1.ebuild 
b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
index 3fbdc777442c..d54e9d7dbaad 100644
--- a/app-text/mupdf/mupdf-1.23.7-r1.ebuild
+++ b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${P}-source
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-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="+javascript opengl ssl X"
 REQUIRED_USE="opengl? ( javascript )"
 



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

2024-03-12 Thread Arthur Zamarin
commit: 63a536845b44acfe40fb021fd9f7f2f39cfaf03b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:51 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:51 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63a53684

app-text/mupdf: Stabilize 1.23.7-r1 arm, #926846

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

 app-text/mupdf/mupdf-1.23.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mupdf/mupdf-1.23.7-r1.ebuild 
b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
index 355cabb0620f..3fbdc777442c 100644
--- a/app-text/mupdf/mupdf-1.23.7-r1.ebuild
+++ b/app-text/mupdf/mupdf-1.23.7-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${P}-source
 
 LICENSE="AGPL-3"
 SLOT="0/${PV}"
-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="+javascript opengl ssl X"
 REQUIRED_USE="opengl? ( javascript )"
 



[gentoo-commits] repo/gentoo:master commit in: app-text/zathura-pdf-mupdf/

2024-03-12 Thread Arthur Zamarin
commit: f6b58ae4bc3ae5c120624b1c4c60c4106d6aa28d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:53 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:53 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b58ae4

app-text/zathura-pdf-mupdf: Stabilize 0.4.1 arm, #926847

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

 app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.4.1.ebuild 
b/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.4.1.ebuild
index 53bd172f9007..18b48d45a5d8 100644
--- a/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.4.1.ebuild
+++ b/app-text/zathura-pdf-mupdf/zathura-pdf-mupdf-0.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://git.pwmt.org/pwmt/zathura-pdf-mupdf.git;
EGIT_BRANCH="develop"
 else
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="~amd64 arm ~x86"
SRC_URI="https://git.pwmt.org/pwmt/${PN}/-/archive/${PV}/${P}.tar.gz;
 fi
 



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

2024-03-12 Thread Arthur Zamarin
commit: 0efaeff75915b4f52a94f3fc45e1b0a39b4614dc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:54 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0efaeff7

dev-lang/mujs: Stabilize 1.3.4 arm, #926848

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

 dev-lang/mujs/mujs-1.3.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/mujs/mujs-1.3.4.ebuild b/dev-lang/mujs/mujs-1.3.4.ebuild
index 01af3eb22a5b..9c49258b2d86 100644
--- a/dev-lang/mujs/mujs-1.3.4.ebuild
+++ b/dev-lang/mujs/mujs-1.3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz;
 LICENSE="ISC"
 # The subslot matches the SONAME
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="sys-libs/readline:="
 DEPEND="${RDEPEND}"



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

2024-03-12 Thread Arthur Zamarin
commit: e425ee8dc6a938c7be5150dd62fd1833a5aebbe5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:55 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e425ee8d

dev-lang/mujs: Stabilize 1.3.4 ppc64, #926848

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

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

diff --git a/dev-lang/mujs/mujs-1.3.4.ebuild b/dev-lang/mujs/mujs-1.3.4.ebuild
index 9c49258b2d86..a8f6a627d935 100644
--- a/dev-lang/mujs/mujs-1.3.4.ebuild
+++ b/dev-lang/mujs/mujs-1.3.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz;
 LICENSE="ISC"
 # The subslot matches the SONAME
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="sys-libs/readline:="
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: x11-wm/cwm/

2024-03-12 Thread Arthur Zamarin
commit: d0cfce45fa6effa6fc6710ed0e4f4e98dad4b29f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:57 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0cfce45

x11-wm/cwm: Stabilize 7.4 arm, #926854

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

 x11-wm/cwm/cwm-7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/cwm/cwm-7.4.ebuild b/x11-wm/cwm/cwm-7.4.ebuild
index 43e81a32050f..812218abf612 100644
--- a/x11-wm/cwm/cwm-7.4.ebuild
+++ b/x11-wm/cwm/cwm-7.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/leahneukirchen/cwm.git;
 else
SRC_URI="https://github.com/leahneukirchen/cwm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~riscv ~x86"
 fi
 
 LICENSE="ISC"



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

2024-03-12 Thread Arthur Zamarin
commit: 1cab4de2049c4d82c3c49a9efc70ab6c9446976d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:56 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cab4de2

dev-lang/mujs: Stabilize 1.3.4 sparc, #926848

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

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

diff --git a/dev-lang/mujs/mujs-1.3.4.ebuild b/dev-lang/mujs/mujs-1.3.4.ebuild
index 306f95cea62b..9a86af53de3b 100644
--- a/dev-lang/mujs/mujs-1.3.4.ebuild
+++ b/dev-lang/mujs/mujs-1.3.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz;
 LICENSE="ISC"
 # The subslot matches the SONAME
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="sys-libs/readline:="
 DEPEND="${RDEPEND}"



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

2024-03-12 Thread Arthur Zamarin
commit: 2c5f5079374e6964eab253eb974d19abd8b3a164
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:28:55 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:28:55 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5f5079

dev-lang/mujs: Stabilize 1.3.4 ppc, #926848

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

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

diff --git a/dev-lang/mujs/mujs-1.3.4.ebuild b/dev-lang/mujs/mujs-1.3.4.ebuild
index a8f6a627d935..306f95cea62b 100644
--- a/dev-lang/mujs/mujs-1.3.4.ebuild
+++ b/dev-lang/mujs/mujs-1.3.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://mujs.com/downloads/${P}.tar.gz;
 LICENSE="ISC"
 # The subslot matches the SONAME
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~ppc-macos ~x64-macos"
 
 RDEPEND="sys-libs/readline:="
 DEPEND="${RDEPEND}"



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

2024-03-12 Thread Arthur Zamarin
commit: 8de7dee5c2af1c775416e475c6f3d5630d0ca2f8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:29:31 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:29:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8de7dee5

media-gfx/tuxpaint-stamps: Stabilize 20230402 amd64, #926851

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

 media-gfx/tuxpaint-stamps/tuxpaint-stamps-20230402.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/tuxpaint-stamps/tuxpaint-stamps-20230402.ebuild 
b/media-gfx/tuxpaint-stamps/tuxpaint-stamps-20230402.ebuild
index f3bf7e03560c..cc07fb0e3fc7 100644
--- a/media-gfx/tuxpaint-stamps/tuxpaint-stamps-20230402.ebuild
+++ b/media-gfx/tuxpaint-stamps/tuxpaint-stamps-20230402.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 
 RDEPEND="media-gfx/tuxpaint"
 DEPEND="${RDEPEND}"



[gentoo-commits] proj/pkgcore/pkgdev:main commit in: src/pkgdev/scripts/

2024-03-12 Thread Arthur Zamarin
commit: d3ca0833690ec26f5ddcb0d3157fc85c69dc8d5e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 19:34:51 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 19:34:51 2024 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgdev.git/commit/?id=d3ca0833

tatt: fix required_use for packages from bug

When invoked on bug's package list, we use nattka to find matches in the
repo. Nattka requires configured repo, which we were passing beforehand.
But this results in a case where we have a configured packages, without
source ebuild's "required_use" (it was "configured" by the domain).

While somewhat ugly, fix it by performing a second iteration, this time
over the source repo, and get the expected package object we can use.

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

 src/pkgdev/scripts/pkgdev_tatt.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/pkgdev/scripts/pkgdev_tatt.py 
b/src/pkgdev/scripts/pkgdev_tatt.py
index 79624cd..ff88d25 100644
--- a/src/pkgdev/scripts/pkgdev_tatt.py
+++ b/src/pkgdev/scripts/pkgdev_tatt.py
@@ -234,9 +234,9 @@ def _get_bugzilla_packages(namespace):
 bug = next(iter(nattka_bugzilla.find_bugs(bugs=[namespace.bug]).values()))
 namespace.keywording = bug.category == BugCategory.KEYWORDREQ
 repo = namespace.domain.repos["gentoo"].raw_repo
-return dict(
-match_package_list(repo, bug, only_new=True, 
filter_arch=[namespace.domain.arch])
-).keys()
+src_repo = namespace.domain.source_repos_raw
+for pkg, _ in match_package_list(repo, bug, only_new=True, 
filter_arch=[namespace.domain.arch]):
+yield src_repo.match(pkg.versioned_atom)[0]
 
 
 def _get_cmd_packages(namespace):



[gentoo-commits] repo/gentoo:master commit in: app-emulation/virt-firmware/

2024-03-12 Thread Andrew Ammerlaan
commit: 24fcae37ac96a5a8470f739d8631df6dce179fbe
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Tue Mar 12 19:55:53 2024 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Mar 12 20:00:52 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24fcae37

app-emulation/virt-firmware: new package, add 24.2

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 app-emulation/virt-firmware/Manifest   |  1 +
 app-emulation/virt-firmware/metadata.xml   | 19 +
 .../virt-firmware/virt-firmware-24.2.ebuild| 47 ++
 3 files changed, 67 insertions(+)

diff --git a/app-emulation/virt-firmware/Manifest 
b/app-emulation/virt-firmware/Manifest
new file mode 100644
index ..bc81330a6c0a
--- /dev/null
+++ b/app-emulation/virt-firmware/Manifest
@@ -0,0 +1 @@
+DIST virt-firmware-24.2.tar.gz 110844 BLAKE2B 
db7ad7663678a313bdd0e23de7e374547e5dbc1a04b37a65e366ae042410a3a6c21ccfef3747a2534cb76906868caaf1364ac1ecd1443c1c1053a5b7687da50b
 SHA512 
8583420acb31fb32e4c195c0c1816b36248ec2e486ded0795e51180e2690b2bcdc10eb8707f4fc9fa36da5b24082737c5c3b2e3988f6c5455e08a5d2a0ff92e7

diff --git a/app-emulation/virt-firmware/metadata.xml 
b/app-emulation/virt-firmware/metadata.xml
new file mode 100644
index ..1059efa31d78
--- /dev/null
+++ b/app-emulation/virt-firmware/metadata.xml
@@ -0,0 +1,19 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+andrewammerl...@gentoo.org
+Andrew Ammerlaan
+  
+  
+  
+This is a small collection of tools for edk2 firmware images.  They
+support decoding and printing the content of firmware volumes.
+Variable stores (OVMF_VARS.fd) can be modified, for example to enroll
+secure boot certificates.
+  
+  
+virt-firmware
+kraxel/virt-firmware
+  
+

diff --git a/app-emulation/virt-firmware/virt-firmware-24.2.ebuild 
b/app-emulation/virt-firmware/virt-firmware-24.2.ebuild
new file mode 100644
index ..9fd059ab7234
--- /dev/null
+++ b/app-emulation/virt-firmware/virt-firmware-24.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+
+inherit distutils-r1 optfeature pypi systemd
+
+DESCRIPTION="Tools for ovmf/armvirt firmware volumes"
+HOMEPAGE="
+   https://gitlab.com/kraxel/virt-firmware
+   https://pypi.org/project/virt-firmware/
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/pefile[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests unittest
+
+python_test() {
+   eunittest tests
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   doman man/*.1
+
+   systemd_dounit systemd/kernel-bootcfg-boot-successful.service
+
+   exeinto /usr/lib/kernel/install.d
+   doexe systemd/99-uki-uefi-setup.install
+}
+
+pkg_postinst() {
+   optfeature "managing UEFI entries on Unified Kernel Image installation 
and removal" \
+   "sys-boot/shim sys-kernel/installkernel[systemd]"
+}



[gentoo-commits] repo/proj/libressl:master commit in: dev-lang/python/files/

2024-03-12 Thread orbea
commit: 0a55b7dac06b5210c67d328456e27e17b2eed681
Author: orbea  riseup  net>
AuthorDate: Tue Mar 12 20:08:45 2024 +
Commit: orbea  riseup  net>
CommitDate: Tue Mar 12 20:08:45 2024 +
URL:https://gitweb.gentoo.org/repo/proj/libressl.git/commit/?id=0a55b7da

dev-lang/python: update 2.7 patch for libressl-3.9

Signed-off-by: orbea  riseup.net>

 dev-lang/python/files/python-2.7.18-libressl.patch | 15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/files/python-2.7.18-libressl.patch 
b/dev-lang/python/files/python-2.7.18-libressl.patch
index 2f74202..159d329 100644
--- a/dev-lang/python/files/python-2.7.18-libressl.patch
+++ b/dev-lang/python/files/python-2.7.18-libressl.patch
@@ -1,7 +1,6 @@
 
https://cvsweb.openbsd.org/cgi-bin/cvsweb/ports/lang/python/2.7/patches/patch-Modules__hashopenssl_c
 
-Index: Modules/_hashopenssl.c
 a/Modules/_hashopenssl.c.orig
+--- a/Modules/_hashopenssl.c
 +++ b/Modules/_hashopenssl.c
 @@ -56,7 +56,8 @@
  #define _OPENSSL_SUPPORTS_SHA2
@@ -13,3 +12,15 @@ Index: Modules/_hashopenssl.c
  /* OpenSSL < 1.1.0 */
  #define EVP_MD_CTX_new EVP_MD_CTX_create
  #define EVP_MD_CTX_free EVP_MD_CTX_destroy
+--- a/Modules/_ssl.c
 b/Modules/_ssl.c
+@@ -596,7 +596,9 @@
+ Py_INCREF(sslctx);
+ 
+ /* Make sure the SSL error state is initialized */
++#if !defined(LIBRESSL_VERSION_NUMBER) || (LIBRESSL_VERSION_NUMBER < 
0x309fL)
+ (void) ERR_get_state();
++#endif
+ ERR_clear_error();
+ 
+ PySSL_BEGIN_ALLOW_THREADS



<    1   2   3   4