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

2021-12-24 Thread Miroslav Šulc
commit: edfa0c6107c064403608eec06ff8417db9f0c7f3
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Sat Dec 25 07:56:07 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Sat Dec 25 07:56:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edfa0c61

media-sound/fluidsynth: removed obsolete 2.2.3

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/fluidsynth/Manifest|   1 -
 media-sound/fluidsynth/fluidsynth-2.2.3.ebuild | 119 -
 2 files changed, 120 deletions(-)

diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
index 33eb4007d74f..6761f25c4eb6 100644
--- a/media-sound/fluidsynth/Manifest
+++ b/media-sound/fluidsynth/Manifest
@@ -1,2 +1 @@
-DIST fluidsynth-2.2.3.tar.gz 1745344 BLAKE2B 
0d08c67532392d32501a71f1e6fac6d55a0a0a607dae914106e1674df0a96869041530f75669193305a091ec40177e2925345df24d75a369c87e738ec1f4eb2e
 SHA512 
67f8da02714350cc0439fbdce763d00cb08d01301a6aaa3e2655e67935048b43e18968c9a52aa64c702b5e30ae2b2b4946f69e8be4af5889fa414c654d4eb13e
 DIST fluidsynth-2.2.4.tar.gz 1746638 BLAKE2B 
28a2a8048ad3f652afd424358b1b268d42672eb8fba0bdb30c72c06041617844fb5b90bc922e905d80ca2818eac03e9e5ce7f9a57b4cf68a43f60ed4bfddcd49
 SHA512 
46c3f0759cc011f34e5ba80684df4e8b593315d564da2341aaea14a5f0ba9cf732933f6ebc8712506f194b044a8e2b198b9e50879ff4221e6a9ab8051e79b48f

diff --git a/media-sound/fluidsynth/fluidsynth-2.2.3.ebuild 
b/media-sound/fluidsynth/fluidsynth-2.2.3.ebuild
deleted file mode 100644
index 57dcd76a5287..
--- a/media-sound/fluidsynth/fluidsynth-2.2.3.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_ECLASS=cmake
-inherit cmake-multilib systemd
-
-DESCRIPTION="Software real-time synthesizer based on the Soundfont 2 
specifications"
-HOMEPAGE="https://www.fluidsynth.org;
-SRC_URI="https://github.com/FluidSynth/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0/3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
-IUSE="alsa dbus debug examples ipv6 jack ladspa lash network oss portaudio 
pulseaudio +readline sdl +sndfile systemd threads"
-
-BDEPEND="
-   virtual/pkgconfig
-"
-DEPEND="
-   dev-libs/glib:2[${MULTILIB_USEDEP}]
-   alsa? (
-   media-libs/alsa-lib[${MULTILIB_USEDEP}]
-   lash? ( media-sound/lash[${MULTILIB_USEDEP}] )
-   )
-   dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
-   jack? ( virtual/jack[${MULTILIB_USEDEP}] )
-   ladspa? (
-   media-libs/ladspa-sdk[${MULTILIB_USEDEP}]
-   media-plugins/cmt-plugins[${MULTILIB_USEDEP}]
-   )
-   portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
-   pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
-   readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
-   sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] )
-   sndfile? ( media-libs/libsndfile[${MULTILIB_USEDEP}] )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog README.md THANKS TODO doc/fluidsynth-v20-devdoc.txt )
-
-src_configure() {
-   local mycmakeargs=(
-   -Denable-alsa=$(usex alsa)
-   -Denable-aufile=ON
-   -Denable-dbus=$(usex dbus)
-   -Denable-debug=$(usex debug)
-   -Denable-dsound=OFF # Windows
-   -Denable-floats=OFF # loat instead of double for DSP samples
-   -Denable-fpe-check=$(usex debug)
-   -Denable-ipv6=$(usex ipv6)
-   -Denable-jack=$(usex jack)
-   -Denable-ladspa=$(usex ladspa)
-   -Denable-libinstpatch=ON # https://github.com/swami/libinstpatch
-   -Denable-midishare=OFF # http://midishare.sourceforge.net/
-   -Denable-network=$(usex network)
-   -Denable-opensles=OFF
-   -Denable-oboe=OFF # requires OpenSLES and/or AAudio
-   -Denable-oss=$(usex oss)
-   -Denable-libsndfile=$(usex sndfile)
-   -Denable-pkgconfig=ON
-   -Denable-portaudio=$(usex portaudio)
-   -Denable-profiling=$(usex debug)
-   -Denable-pulseaudio=$(usex pulseaudio)
-   -Denable-readline=$(usex readline)
-   -Denable-sdl2=$(usex sdl)
-   -Denable-systemd=$(usex systemd)
-   -Denable-threads=$(usex threads)
-   -Denable-trap-on-fpe=$(usex debug)
-   -Denable-ubsan=OFF # compile and link against UBSan (for 
debugging fluidsynth internals)
-   -Denable-waveout=OFF # Windows
-   -Denable-winmidi=OFF # Windows
-   )
-
-   if use alsa; then
-   mycmakeargs+=( -Denable-lash=$(usex lash) )
-   else
-   mycmakeargs+=( -Denable-lash=OFF )
-   fi
-
-   if use systemd; then
- 

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/git/

2021-12-24 Thread Hans de Graaff
commit: 574f71d82512ff1d018f9ff32934148360380c7b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Dec 25 07:40:04 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Dec 25 07:42:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=574f71d8

dev-ruby/git: add 1.10.0

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/git/Manifest  |  1 +
 dev-ruby/git/git-1.10.0.ebuild | 41 +
 2 files changed, 42 insertions(+)

diff --git a/dev-ruby/git/Manifest b/dev-ruby/git/Manifest
index fda25fd1cec0..e06213505893 100644
--- a/dev-ruby/git/Manifest
+++ b/dev-ruby/git/Manifest
@@ -1,2 +1,3 @@
+DIST git-1.10.0.tar.gz 207412 BLAKE2B 
e18406a9690d4c0fc3009b57629515e701f41113592fd7533b6b2ae659b90ec1b635410deb7bcb3bd711ce291aaec2010bfcfb4bfb812b9fffdafac167d33bb9
 SHA512 
717ae5df3cf2b700395df91e8f6e9632062c804955c8f18215c5220ec373a33c2a991534f2a63155111643a867f45f2e7056e2dd6e297340372143770bb70021
 DIST git-1.7.0.tar.gz 142017 BLAKE2B 
cb05ef711582b98b420c143dce8fcc3d932c7509ab8c5577a46d70f180ee37d865d7268f56c133d3327ed27058a4c5cd7b03a6c602c665d2f574bdec476c6eec
 SHA512 
c90cd3fe46767a4db5391eb85534e3801f1bd2f345a324ee89d3c04c4348aef09a5424760c59a079d51f3fa003c3b31d30907bfcff4b854adf3b96339d25a8a0
 DIST git-1.9.1.tar.gz 206509 BLAKE2B 
3f8739286f3197fa86a3fccfab357510d562415f568726126cf96c8b74c716c4fbb592f854cafda26cf2f0371e4bc9b52a9f5efdea860d0ea6836198ca48b887
 SHA512 
ee1df3e704b8bf0687c9fce83d73502d3d46e7f3291da90906961dda057d8e6ec3a0fda5b68c258dd8542559055f1bfabf8915a7e594edafa4b3f267f302f397

diff --git a/dev-ruby/git/git-1.10.0.ebuild b/dev-ruby/git/git-1.10.0.ebuild
new file mode 100644
index ..48659e920ef8
--- /dev/null
+++ b/dev-ruby/git/git-1.10.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="git.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Library for using Git in Ruby"
+HOMEPAGE="https://github.com/schacon/ruby-git;
+SRC_URI="https://github.com/schacon/ruby-git/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RUBY_S="ruby-git-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="test"
+
+DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )"
+RDEPEND+=">=dev-vcs/git-1.6.0.0"
+
+ruby_add_rdepend ">=dev-ruby/rchardet-1.8:1"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/minitar 
dev-ruby/test-unit:2 )"
+
+all_ruby_prepare() {
+   # Don't use hardcoded /tmp directory.
+   sed -i -e "s:/tmp:${TMPDIR}:" tests/units/test_archive.rb 
tests/test_helper.rb || die
+
+   sed -i -e 's/__dir__/"."/' -e 's/git ls-files -z/find * -print0/' 
${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+   git config --global user.email "g...@example.com" || die
+   git config --global user.name "GitExample" || die
+   ${RUBY} -Ilib:.:test -e 'Dir["tests/**/test_*.rb"].each {|f| require 
f}' || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/git/

2021-12-24 Thread Hans de Graaff
commit: 00e13aad45e2b2e47feb04a84f8cf87944e6e84e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Dec 25 07:41:53 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Dec 25 07:42:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00e13aad

dev-ruby/git: amd64 stable

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/git/git-1.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/git/git-1.9.1.ebuild b/dev-ruby/git/git-1.9.1.ebuild
index bf7218a9f551..caa61b6460d3 100644
--- a/dev-ruby/git/git-1.9.1.ebuild
+++ b/dev-ruby/git/git-1.9.1.ebuild
@@ -17,7 +17,7 @@ RUBY_S="ruby-git-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 DEPEND+="test? ( >=dev-vcs/git-1.6.0.0 app-arch/tar )"



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

2021-12-24 Thread Michał Górny
commit: 2deb3ae7fada1faf6b6b56dacc8e0141bf964435
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Dec 25 07:36:45 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Dec 25 07:37:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2deb3ae7

profiles/base: Fix llvm/clang target force

Thanks to Arfrever for noticing.

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

 profiles/base/package.use.force | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/profiles/base/package.use.force b/profiles/base/package.use.force
index 6d117b75b924..4ca682d365f3 100644
--- a/profiles/base/package.use.force
+++ b/profiles/base/package.use.force
@@ -14,16 +14,16 @@
 >=sys-devel/clang-13.0.1_rc llvm_targets_MSP430 llvm_targets_Mips
 >=sys-devel/clang-13.0.1_rc llvm_targets_NVPTX llvm_targets_PowerPC
 >=sys-devel/clang-13.0.1_rc llvm_targets_RISCV llvm_targets_Sparc
->=sys-devel/clang-13.0.1_rc llvm_targets_SystemZ llvm_targets_XCore
->=sys-devel/clang-13.0.1_rc llvm_targets_WebAssembly
+>=sys-devel/clang-13.0.1_rc llvm_targets_SystemZ llvm_targets_WebAssembly
+>=sys-devel/clang-13.0.1_rc llvm_targets_X86 llvm_targets_XCore
 >=sys-devel/llvm-13.0.1_rc llvm_targets_AArch64 llvm_targets_AMDGPU
 >=sys-devel/llvm-13.0.1_rc llvm_targets_ARM llvm_targets_AVR llvm_targets_BPF
 >=sys-devel/llvm-13.0.1_rc llvm_targets_Hexagon llvm_targets_Lanai
 >=sys-devel/llvm-13.0.1_rc llvm_targets_MSP430 llvm_targets_Mips
 >=sys-devel/llvm-13.0.1_rc llvm_targets_NVPTX llvm_targets_PowerPC
 >=sys-devel/llvm-13.0.1_rc llvm_targets_RISCV llvm_targets_Sparc
->=sys-devel/llvm-13.0.1_rc llvm_targets_SystemZ llvm_targets_XCore
->=sys-devel/llvm-13.0.1_rc llvm_targets_WebAssembly
+>=sys-devel/llvm-13.0.1_rc llvm_targets_SystemZ llvm_targets_WebAssembly
+>=sys-devel/llvm-13.0.1_rc llvm_targets_X86 llvm_targets_XCore
 
 # Sam James  (2021-03-08)
 # Broken without USE=unicode



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

2021-12-24 Thread Andrey Grozin
commit: 95880637676ff4e11a4c7d0928aeb04d725d18d7
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sat Dec 25 07:33:45 2021 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sat Dec 25 07:33:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95880637

app-text/pdfarranger: remove old versions

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrey Grozin  gentoo.org>

 app-text/pdfarranger/Manifest |  2 --
 app-text/pdfarranger/pdfarranger-1.6.2.ebuild | 50 --
 app-text/pdfarranger/pdfarranger-1.7.0.ebuild | 51 ---
 3 files changed, 103 deletions(-)

diff --git a/app-text/pdfarranger/Manifest b/app-text/pdfarranger/Manifest
index fe65ce3ba40c..95f58ef71860 100644
--- a/app-text/pdfarranger/Manifest
+++ b/app-text/pdfarranger/Manifest
@@ -1,4 +1,2 @@
-DIST pdfarranger-1.6.2.tar.gz 197726 BLAKE2B 
aee8ee7d32603f20bc01d9f5f77290390e8a038bf79e3c4f689a71ec1c3e454784b2225b43d33bdfd7897785827141cfe1770dcf41d233c4ec1f3865d6f1e3c0
 SHA512 
610c4dfaa141cfb8caebfc72b524cda05455ed4a5c1e336772655bd02ceac25fafedb439dbe83e87c88da189147eaf91149e9af92ec745a52f8a24fcee5fd390
-DIST pdfarranger-1.7.0.tar.gz 236125 BLAKE2B 
f16eb23fb597a22a48f075ee6435c74d51a4c45d35e03ec02b2b2353c29ad327f36f6af9ef028ddc53777ecae069e62437728308cda2a6296bd520c2a54e1220
 SHA512 
8f3c804119d5e4aa78cdae1964757be3404977a68dacccddea0e3e598c531a0ae163567709358ccd60764bebf3a55b5ed1bfbd2e0392c97569ffd9a18f549552
 DIST pdfarranger-1.7.1.tar.gz 236699 BLAKE2B 
b82a1f2309cc326bfba33458aaccee5396597a5c937c67baba767632cadddfae4f7ad21e0c86300c889f8e6d5f7dba9c6483b11bc97c83077e5ab01596b76617
 SHA512 
1adb5700b6497db95c3f727d1c18fc7b98ecc382cf15bc58bb7ce784d094e0d8cd45a26241e06a593eeb7601aa9f32ebba7d7f0f3a816e9384be09102eb0b4db
 DIST pdfarranger-1.8.1.tar.gz 258488 BLAKE2B 
e595735fceb156a9fb0dd1221e290f990dc2ee57b623278d9adac69308d0a3258849366d04541d5e7fc4db3605c4478f3e822274de4291286e888d7ae0b8f603
 SHA512 
de2d48816a362b082b66853f8a7bdc0f3aab78ca4a033ce44752ad755c22b23bcc6ecb796d7e2f3dd29525450807821b55b396dc2922e4092c79c84b8a703425

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

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

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

2021-12-24 Thread Andrey Grozin
commit: 5ebe5295f0047b7421cffb417b2b9d0e56265266
Author: Andrey Grozin  gentoo  org>
AuthorDate: Sat Dec 25 07:32:05 2021 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Sat Dec 25 07:32:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ebe5295

app-text/pdfarranger: bump to 1.8.1

Closes: https://bugs.gentoo.org/829927
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andrey Grozin  gentoo.org>

 app-text/pdfarranger/Manifest |  1 +
 app-text/pdfarranger/pdfarranger-1.8.1.ebuild | 51 +++
 2 files changed, 52 insertions(+)

diff --git a/app-text/pdfarranger/Manifest b/app-text/pdfarranger/Manifest
index 035901446ec3..fe65ce3ba40c 100644
--- a/app-text/pdfarranger/Manifest
+++ b/app-text/pdfarranger/Manifest
@@ -1,3 +1,4 @@
 DIST pdfarranger-1.6.2.tar.gz 197726 BLAKE2B 
aee8ee7d32603f20bc01d9f5f77290390e8a038bf79e3c4f689a71ec1c3e454784b2225b43d33bdfd7897785827141cfe1770dcf41d233c4ec1f3865d6f1e3c0
 SHA512 
610c4dfaa141cfb8caebfc72b524cda05455ed4a5c1e336772655bd02ceac25fafedb439dbe83e87c88da189147eaf91149e9af92ec745a52f8a24fcee5fd390
 DIST pdfarranger-1.7.0.tar.gz 236125 BLAKE2B 
f16eb23fb597a22a48f075ee6435c74d51a4c45d35e03ec02b2b2353c29ad327f36f6af9ef028ddc53777ecae069e62437728308cda2a6296bd520c2a54e1220
 SHA512 
8f3c804119d5e4aa78cdae1964757be3404977a68dacccddea0e3e598c531a0ae163567709358ccd60764bebf3a55b5ed1bfbd2e0392c97569ffd9a18f549552
 DIST pdfarranger-1.7.1.tar.gz 236699 BLAKE2B 
b82a1f2309cc326bfba33458aaccee5396597a5c937c67baba767632cadddfae4f7ad21e0c86300c889f8e6d5f7dba9c6483b11bc97c83077e5ab01596b76617
 SHA512 
1adb5700b6497db95c3f727d1c18fc7b98ecc382cf15bc58bb7ce784d094e0d8cd45a26241e06a593eeb7601aa9f32ebba7d7f0f3a816e9384be09102eb0b4db
+DIST pdfarranger-1.8.1.tar.gz 258488 BLAKE2B 
e595735fceb156a9fb0dd1221e290f990dc2ee57b623278d9adac69308d0a3258849366d04541d5e7fc4db3605c4478f3e822274de4291286e888d7ae0b8f603
 SHA512 
de2d48816a362b082b66853f8a7bdc0f3aab78ca4a033ce44752ad755c22b23bcc6ecb796d7e2f3dd29525450807821b55b396dc2922e4092c79c84b8a703425

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



[gentoo-commits] repo/gentoo:master commit in: gui-wm/sway/

2021-12-24 Thread Matthew Thode
commit: 89984a22bb9cbb29bd8a2550331efd13d15e8d30
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Dec 25 04:31:11 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Dec 25 04:31:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89984a22

gui-wm/sway:  bump deps for 1.7.0 prep

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Matthew Thode  gentoo.org>

 gui-wm/sway/sway-.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gui-wm/sway/sway-.ebuild b/gui-wm/sway/sway-.ebuild
index 799f71a6a9dc..966fdddfa29c 100644
--- a/gui-wm/sway/sway-.ebuild
+++ b/gui-wm/sway/sway-.ebuild
@@ -27,7 +27,7 @@ DEPEND="
>=dev-libs/libinput-1.6.0:0=
sys-auth/seatd:=
dev-libs/libpcre
-   dev-libs/wayland
+   >=dev-libs/wayland-1.20.0
x11-libs/cairo
x11-libs/libxkbcommon
x11-libs/pango
@@ -53,8 +53,8 @@ RDEPEND="
${DEPEND}
 "
 BDEPEND="
-   >=dev-libs/wayland-protocols-1.14
-   >=dev-util/meson-0.59.0
+   >=dev-libs/wayland-protocols-1.24
+   >=dev-util/meson-0.60.0
virtual/pkgconfig
 "
 if [[ ${PV} ==  ]]; then



[gentoo-commits] repo/gentoo:master commit in: gui-libs/wlroots/

2021-12-24 Thread Matthew Thode
commit: dd4aec11a447420af39486b1076f3e67eec06051
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Dec 25 04:24:39 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Sat Dec 25 04:24:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd4aec11

gui-libs/wlroots: 0.15.0 bump

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Matthew Thode  gentoo.org>

 gui-libs/wlroots/Manifest   | 1 +
 gui-libs/wlroots/{wlroots-.ebuild => wlroots-0.15.0.ebuild} | 6 +++---
 gui-libs/wlroots/wlroots-.ebuild| 6 +++---
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/gui-libs/wlroots/Manifest b/gui-libs/wlroots/Manifest
index cf82c80ca68a..a5eb3396cd01 100644
--- a/gui-libs/wlroots/Manifest
+++ b/gui-libs/wlroots/Manifest
@@ -1,2 +1,3 @@
 DIST wlroots-0.14.0.tar.gz 505461 BLAKE2B 
d2fa28f64014ef9d840838cb5938af23f6f6b211b62dc352d0d5bb824ccaa7d7a85531e1eca14feeb06d31d59955ff9a913e40a73cad21ed1ebfe76ada39d558
 SHA512 
83f001133cb4b11a72bb9532b7321655428826662848f67de8e3220a33d9dff4d37c859602bdc319929949d387d014a257b0347039a6649944d7b084c76bb611
 DIST wlroots-0.14.1.tar.gz 505840 BLAKE2B 
fca4d259cdde62da0c196344ce1d0f5dd679d012ff33e3ceb5385b9374667e16d91059a2ba6a318153e79ac2f0a6464e3066e614a13398f8c433f442560d84d2
 SHA512 
4f557c827f9673eccf208a3644954de80e7355b95cc374cc5e851a47087b227f196e0936c0913d21a6c776c29b74de2d028a100931264e41934c747568d8ebe0
+DIST wlroots-0.15.0.tar.gz 565059 BLAKE2B 
d98529b4548e3b751a505a26af143be585ed42fb9617bc67b4a10747bb494f1359d7bdb75d1730a72396e7c550fe481e858a5ac88621d61671698439e3656920
 SHA512 
730b1e0cf003dabae23101664c6d1993636bd3a8ecbdb3c165eef415a92811c4d5228f48e0275f75361d8528f118dfb8a2298cfb05dbf6364539224ceedca447

diff --git a/gui-libs/wlroots/wlroots-.ebuild 
b/gui-libs/wlroots/wlroots-0.15.0.ebuild
similarity index 90%
copy from gui-libs/wlroots/wlroots-.ebuild
copy to gui-libs/wlroots/wlroots-0.15.0.ebuild
index df7d512ad5c5..395649f12eb2 100644
--- a/gui-libs/wlroots/wlroots-.ebuild
+++ b/gui-libs/wlroots/wlroots-0.15.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
SLOT="0/"
 else
-   SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz 
-> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
SLOT="0/14"
 fi
@@ -23,7 +23,7 @@ IUSE="vulkan x11-backend X"
 
 DEPEND="
>=dev-libs/libinput-1.14.0:0=
-   >=dev-libs/wayland-1.19.0
+   >=dev-libs/wayland-1.20.0
>=dev-libs/wayland-protocols-1.24
media-libs/mesa[egl(+),gles2,gbm(+)]
sys-auth/seatd:=
@@ -33,7 +33,7 @@ DEPEND="
dev-util/vulkan-headers:0=
media-libs/vulkan-loader:0=
)
-   x11-libs/libdrm
+   >=x11-libs/libdrm-2.4.109:0=
x11-libs/libxkbcommon
x11-libs/pixman
x11-backend? ( x11-libs/libxcb:0= )

diff --git a/gui-libs/wlroots/wlroots-.ebuild 
b/gui-libs/wlroots/wlroots-.ebuild
index df7d512ad5c5..395649f12eb2 100644
--- a/gui-libs/wlroots/wlroots-.ebuild
+++ b/gui-libs/wlroots/wlroots-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
SLOT="0/"
 else
-   SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz 
-> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
SLOT="0/14"
 fi
@@ -23,7 +23,7 @@ IUSE="vulkan x11-backend X"
 
 DEPEND="
>=dev-libs/libinput-1.14.0:0=
-   >=dev-libs/wayland-1.19.0
+   >=dev-libs/wayland-1.20.0
>=dev-libs/wayland-protocols-1.24
media-libs/mesa[egl(+),gles2,gbm(+)]
sys-auth/seatd:=
@@ -33,7 +33,7 @@ DEPEND="
dev-util/vulkan-headers:0=
media-libs/vulkan-loader:0=
)
-   x11-libs/libdrm
+   >=x11-libs/libdrm-2.4.109:0=
x11-libs/libxkbcommon
x11-libs/pixman
x11-backend? ( x11-libs/libxcb:0= )



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

2021-12-24 Thread Sam James
commit: 1747900c5bde35aa83c73c7da73414bbcfa47fb5
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1747900c

dev-util/spirv-tools: Stabilize 1.2.198 x86, #829937

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

 dev-util/spirv-tools/spirv-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild 
b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
index 0246288a2d2a..2ab3b2d2fcb4 100644
--- a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
+++ b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
EGIT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT}
 fi
 



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

2021-12-24 Thread Sam James
commit: 0970a7a0851b2caa495968ffd48f95b903c328e8
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:23:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:23:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0970a7a0

dev-util/spirv-headers: Stabilize 1.2.198 amd64, #829937

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

 dev-util/spirv-headers/spirv-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild 
b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
index 240c72518daf..1f606c98b24a 100644
--- a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
@@ -12,6 +12,6 @@ 
SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
 
 S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}"



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

2021-12-24 Thread Sam James
commit: 5e3b919a1e9cb79b5c3a1ce646f1189d836875c7
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e3b919a

media-libs/vulkan-layers: Stabilize 1.2.198-r1 x86, #829937

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

 media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild 
b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
index 0af4e27c97e9..6ca6078764ca 100644
--- a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
+++ b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 2127a9036517f345a97dba4494c8c3a6e33b0d2d
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2127a903

dev-util/glslang: Stabilize 1.2.198 x86, #829937

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

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

diff --git a/dev-util/glslang/glslang-1.2.198.ebuild 
b/dev-util/glslang/glslang-1.2.198.ebuild
index c30106d770c7..9237cc4d59c0 100644
--- a/dev-util/glslang/glslang-1.2.198.ebuild
+++ b/dev-util/glslang/glslang-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
 else
SNAPSHOT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}"
 fi
 



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

2021-12-24 Thread Sam James
commit: c2477cdc00ec6d0ca503281535890d51a4d43f02
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:23:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:23:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2477cdc

dev-util/spirv-tools: Stabilize 1.2.198 amd64, #829937

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

 dev-util/spirv-tools/spirv-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild 
b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
index a0cf331f54dc..0246288a2d2a 100644
--- a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
+++ b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
EGIT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT}
 fi
 



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

2021-12-24 Thread Sam James
commit: 4a48b3470287138a8da104f15c3c46d2bd162820
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a48b347

media-libs/vulkan-loader: Stabilize 1.2.198 amd64, #829937

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

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

diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild 
b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
index 2b44379c8066..4cabdeae248d 100644
--- a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
+++ b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 717eee35b51b29f2c125147c463871db6d3ae18e
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=717eee35

media-libs/shaderc: Stabilize 2021.3 x86, #829937

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

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

diff --git a/media-libs/shaderc/shaderc-2021.3.ebuild 
b/media-libs/shaderc/shaderc-2021.3.ebuild
index 42c57ac7b4ba..542b6fc9b649 100644
--- a/media-libs/shaderc/shaderc-2021.3.ebuild
+++ b/media-libs/shaderc/shaderc-2021.3.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 x86"
 IUSE="doc test"
 
 RDEPEND="



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

2021-12-24 Thread Sam James
commit: b6dddb2c4b55b98e43585a6eb7f2f86ba512c132
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6dddb2c

media-libs/vulkan-loader: Stabilize 1.2.198 x86, #829937

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

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

diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild 
b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
index 4cabdeae248d..1b2c59c8ab39 100644
--- a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
+++ b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 5cd9336a9c2799d4b2c059193294a6649468f3dc
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cd9336a

dev-util/spirv-headers: Stabilize 1.2.198 x86, #829937

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

 dev-util/spirv-headers/spirv-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild 
b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
index 1f606c98b24a..05a2f1c30dce 100644
--- a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
@@ -12,6 +12,6 @@ 
SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
 
 S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}"



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

2021-12-24 Thread Sam James
commit: a0b438eccfd34c69f9756605df0764ef502aeb2c
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b438ec

dev-util/vulkan-headers: Stabilize 1.2.198 x86, #829937

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

 dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild 
b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
index 7aaf7de6d1d7..8acdd9f6a4b1 100644
--- a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
+++ b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 841b8c9f613ace56ddd54196ff08198f2efdd7a4
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=841b8c9f

dev-util/vulkan-tools: Stabilize 1.2.198 amd64, #829937

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

 dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
index b555fb8a9f1c..e83e2b8cd8d1 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 312288928e1b2f03b3e14ee48cab93260832cdfd
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:23:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:23:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31228892

dev-util/vulkan-headers: Stabilize 1.2.198 amd64, #829937

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

 dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild 
b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
index 60bfd18a07bc..7aaf7de6d1d7 100644
--- a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
+++ b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 5df24ebf9d56be2486012aeafbbc63eb00868167
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:23:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:23:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df24ebf

dev-util/glslang: Stabilize 1.2.198 amd64, #829937

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

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

diff --git a/dev-util/glslang/glslang-1.2.198.ebuild 
b/dev-util/glslang/glslang-1.2.198.ebuild
index 9c7f241bad8a..c30106d770c7 100644
--- a/dev-util/glslang/glslang-1.2.198.ebuild
+++ b/dev-util/glslang/glslang-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
 else
SNAPSHOT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}"
 fi
 



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

2021-12-24 Thread Sam James
commit: df92dc540bc5e0c9101ff65ae5cb40e31a80c047
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:24:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:24:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df92dc54

media-libs/shaderc: Stabilize 2021.3 amd64, #829937

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

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

diff --git a/media-libs/shaderc/shaderc-2021.3.ebuild 
b/media-libs/shaderc/shaderc-2021.3.ebuild
index 51aeec38015a..42c57ac7b4ba 100644
--- a/media-libs/shaderc/shaderc-2021.3.ebuild
+++ b/media-libs/shaderc/shaderc-2021.3.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 ~x86"
 IUSE="doc test"
 
 RDEPEND="



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

2021-12-24 Thread Sam James
commit: bf9912075c8482fac916a200e54b84ac92361395
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:23:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:23:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf991207

media-libs/vulkan-layers: Stabilize 1.2.198-r1 amd64, #829937

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

 media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild 
b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
index 99af0abaa5bd..0af4e27c97e9 100644
--- a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
+++ b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 2dc8b710ce40252c91811e81bb381ff13401a798
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc8b710

media-libs/vulkan-loader: Stabilize 1.2.198 ppc, #829937

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

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

diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild 
b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
index 05ce3ba6726d..2b44379c8066 100644
--- a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
+++ b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 89f2d15f8044a4c80d714f31ad67e0cde22b94d0
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f2d15f

dev-util/vulkan-tools: Stabilize 1.2.198 ppc, #829937

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

 dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
index a889d628b43d..b555fb8a9f1c 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv"
+   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 8c1d6ce0a5faa2b26a93e63c1afc1460287ec5fe
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1d6ce0

media-libs/shaderc: Stabilize 2021.3 ppc64, #829937

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

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

diff --git a/media-libs/shaderc/shaderc-2021.3.ebuild 
b/media-libs/shaderc/shaderc-2021.3.ebuild
index 65900468121c..51aeec38015a 100644
--- a/media-libs/shaderc/shaderc-2021.3.ebuild
+++ b/media-libs/shaderc/shaderc-2021.3.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ppc64 ~x86"
 IUSE="doc test"
 
 RDEPEND="



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

2021-12-24 Thread Sam James
commit: e1400323b2b66dcb857a7484f7abd1f8ddd288c1
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1400323

dev-util/spirv-headers: Stabilize 1.2.198 ppc, #829937

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

 dev-util/spirv-headers/spirv-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild 
b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
index 252777cad457..240c72518daf 100644
--- a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
@@ -12,6 +12,6 @@ 
SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
 
 S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}"



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

2021-12-24 Thread Sam James
commit: 32c01ee94940eec5e0f037ef5a8258c055378bb2
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32c01ee9

media-libs/vulkan-layers: Stabilize 1.2.198-r1 ppc, #829937

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

 media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild 
b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
index 25888ea6cb11..99af0abaa5bd 100644
--- a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
+++ b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: cd9361e04fc52896915c0a52284edaf4c7c40c0b
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd9361e0

dev-util/vulkan-tools: Stabilize 1.2.198 ppc64, #829937

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

 dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild 
b/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
index f221c2759690..a889d628b43d 100644
--- a/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
+++ b/dev-util/vulkan-tools/vulkan-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv"
+   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 67b868e24f1955242e19040d7bf43cf79b354807
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b868e2

dev-util/vulkan-headers: Stabilize 1.2.198 ppc, #829937

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

 dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild 
b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
index b515991969e6..60bfd18a07bc 100644
--- a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
+++ b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 3a20e283fb437b7a6d3532b279c8e6457f389da9
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a20e283

dev-util/glslang: Stabilize 1.2.198 ppc, #829937

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

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

diff --git a/dev-util/glslang/glslang-1.2.198.ebuild 
b/dev-util/glslang/glslang-1.2.198.ebuild
index 2219a17dab9e..9c7f241bad8a 100644
--- a/dev-util/glslang/glslang-1.2.198.ebuild
+++ b/dev-util/glslang/glslang-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
 else
SNAPSHOT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}"
 fi
 



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

2021-12-24 Thread Sam James
commit: dcfb41ed9cb52e9ec897644d17304b97784ea5ac
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcfb41ed

dev-util/spirv-tools: Stabilize 1.2.198 ppc, #829937

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

 dev-util/spirv-tools/spirv-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild 
b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
index 39a9e8376726..a0cf331f54dc 100644
--- a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
+++ b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
EGIT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT}
 fi
 



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

2021-12-24 Thread Sam James
commit: 8ce51535ec1f4e987464f84596bf4c33f8f78aa7
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce51535

dev-util/spirv-headers: Stabilize 1.2.198 ppc64, #829937

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

 dev-util/spirv-headers/spirv-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild 
b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
index 2c68a5d0e55c..252777cad457 100644
--- a/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
+++ b/dev-util/spirv-headers/spirv-headers-1.2.198.ebuild
@@ -12,6 +12,6 @@ 
SRC_URI="https://github.com/KhronosGroup/SPIRV-Headers/archive/${EGIT_COMMIT}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
 
 S="${WORKDIR}/SPIRV-Headers-${EGIT_COMMIT}"



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

2021-12-24 Thread Sam James
commit: 64a0dc76c8080dbb6131f6b4a247e21fe28b3925
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64a0dc76

dev-util/vulkan-headers: Stabilize 1.2.198 ppc64, #829937

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

 dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild 
b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
index e103871e226d..b515991969e6 100644
--- a/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
+++ b/dev-util/vulkan-headers/vulkan-headers-1.2.198.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 35fa758f7d8466ec9f9a556f8e3c6aee3f80f237
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35fa758f

media-libs/vulkan-loader: Stabilize 1.2.198 ppc64, #829937

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

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

diff --git a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild 
b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
index e20740be3646..05ce3ba6726d 100644
--- a/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
+++ b/media-libs/vulkan-loader/vulkan-loader-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Sam James
commit: 4b0ce1f1c98b7fc2e4b99ebef6347f637ebaedbe
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b0ce1f1

dev-util/spirv-tools: Stabilize 1.2.198 ppc64, #829937

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

 dev-util/spirv-tools/spirv-tools-1.2.198.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild 
b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
index f06b16519653..39a9e8376726 100644
--- a/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
+++ b/dev-util/spirv-tools/spirv-tools-1.2.198.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
 else
EGIT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-${EGIT_COMMIT}
 fi
 



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

2021-12-24 Thread Sam James
commit: bf8c9e006a6aae23b456a683f1a53ac95de841bf
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf8c9e00

dev-util/glslang: Stabilize 1.2.198 ppc64, #829937

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

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

diff --git a/dev-util/glslang/glslang-1.2.198.ebuild 
b/dev-util/glslang/glslang-1.2.198.ebuild
index 4567be68ba15..2219a17dab9e 100644
--- a/dev-util/glslang/glslang-1.2.198.ebuild
+++ b/dev-util/glslang/glslang-1.2.198.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == ** ]]; then
 else
SNAPSHOT_COMMIT="sdk-${PV}.0"

SRC_URI="https://github.com/KhronosGroup/${PN}/archive/${SNAPSHOT_COMMIT}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
S="${WORKDIR}/${PN}-${SNAPSHOT_COMMIT}"
 fi
 



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

2021-12-24 Thread Sam James
commit: 2e6f51c31df2fb196510e9edf91180d60bc8732a
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:22:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:22:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e6f51c3

media-libs/vulkan-layers: Stabilize 1.2.198-r1 ppc64, #829937

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

 media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild 
b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
index cc047f186a8e..25888ea6cb11 100644
--- a/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
+++ b/media-libs/vulkan-layers/vulkan-layers-1.2.198-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == ** ]]; then
inherit git-r3
 else

SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/sdk-${PV}.0.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~ppc ppc64 ~riscv ~x86"
S="${WORKDIR}"/${MY_PN}-sdk-${PV}.0
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 0324edea46544810d30b3b8af702afda5bc4dd8c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:07:00 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:07:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0324edea

sys-kernel/linux-headers: Stabilize 5.15-r1 ppc, #829939

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

 sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild 
b/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
index f5b76500dffb..9f163bb829e4 100644
--- a/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
+++ b/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="${KERNEL_URI}

${PATCH_VER:+https://dev.gentoo.org/~${PATCH_DEV}/distfiles/sys-kernel/linux-headers/gentoo-headers-${PATCH_PV}-${PATCH_VER}.tar.xz};
 S="${WORKDIR}/linux-${PV}"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="app-arch/xz-utils
dev-lang/perl"



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

2021-12-24 Thread Georgy Yakovlev
commit: 7c6d2f73659aaa0edaf234fd720499d041273395
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:06:10 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:06:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c6d2f73

sys-kernel/linux-headers: Stabilize 5.15-r1 ppc64, #829939

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

 sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild 
b/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
index 20fdf9c5c445..f5b76500dffb 100644
--- a/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
+++ b/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="${KERNEL_URI}

${PATCH_VER:+https://dev.gentoo.org/~${PATCH_DEV}/distfiles/sys-kernel/linux-headers/gentoo-headers-${PATCH_PV}-${PATCH_VER}.tar.xz};
 S="${WORKDIR}/linux-${PV}"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="app-arch/xz-utils
dev-lang/perl"



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

2021-12-24 Thread Georgy Yakovlev
commit: 5fff462af6137869795a72e7dc94ec81a5241722
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:44 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fff462a

sys-kernel/gentoo-sources: Stabilize 4.9.294 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild
index 1abdde6fde87..9c802641c98e 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: f4151a8843621537a9a7b1380abf67e62fb7a4ac
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:43 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4151a88

sys-kernel/gentoo-sources: Stabilize 4.14.259 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild
index 62bdaeae4003..3fee9d60469c 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: bd99d0f9b039547e041c7737bf491b88533cd158
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:45 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd99d0f9

sys-kernel/gentoo-sources: Stabilize 4.4.296 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild
index 1abdde6fde87..9c802641c98e 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: d5fcd1c4b628a3de8307098ac9b890759f11c9cd
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:39 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5fcd1c4

sys-kernel/gentoo-sources: Stabilize 5.15.11 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild
index 36ddd2690d81..64f996788fdb 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 80388d9ad03ee3b9c8ebd1a54a40e7d40225b932
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:41 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80388d9a

sys-kernel/gentoo-sources: Stabilize 5.4.168 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild
index a90aed00ab8f..b40f88f22d26 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 36595291ef4614009ced9d7e5a8bc4084121cd64
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:42 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36595291

sys-kernel/gentoo-sources: Stabilize 4.19.222 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild
index c80e3d1fdf66..bfa91a51b551 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: ed29ad94aa55d078797a6ccd65daa8b1ce564e10
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:05:40 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:05:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed29ad94

sys-kernel/gentoo-sources: Stabilize 5.10.88 ppc, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild
index b7582a2aa92f..0b72b26a150d 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 20f32074c29278259bcecf684dfe7c1465006f1d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:12 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f32074

sys-kernel/gentoo-sources: Stabilize 4.14.259 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild
index c7be168de8da..62bdaeae4003 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.259.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: e1bdd4f593784ee0e6f4cd463f3a3b4f2bce0874
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:13 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1bdd4f5

sys-kernel/gentoo-sources: Stabilize 4.9.294 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild
index 3017550ea948..1abdde6fde87 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.294.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: b3850600698f9fcdddbf870e676c4bad53994090
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:11 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3850600

sys-kernel/gentoo-sources: Stabilize 4.19.222 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild
index 29090ed7a283..c80e3d1fdf66 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.222.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 9cfefce8f0f6f18847a48a32b53700d4a4789d91
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:14 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cfefce8

sys-kernel/gentoo-sources: Stabilize 4.4.296 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild
index 3017550ea948..1abdde6fde87 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.296.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: f1795959879e6c0c4fd3f33252d1e088636abfaa
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:02:50 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1795959

sys-kernel/gentoo-kernel: Stabilize 5.15.11 ppc64, #829938

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

 sys-kernel/gentoo-kernel/gentoo-kernel-5.15.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.11.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.11.ebuild
index 62cbd27a4521..f6954db073c9 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.11.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.11.ebuild
@@ -37,7 +37,7 @@ SRC_URI+=" https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.x
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~x86"
 IUSE="debug hardened"
 REQUIRED_USE="arm? ( savedconfig )"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: beebe4a8ccb91792575f1509519bfdd340f66df8
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:08 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beebe4a8

sys-kernel/gentoo-sources: Stabilize 5.15.11 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild
index 9d9fe6eca0ec..36ddd2690d81 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.15.11.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 2ce6adc64c4aaa77c2aa169ffe28c3713841d5b3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:09 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce6adc6

sys-kernel/gentoo-sources: Stabilize 5.10.88 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild
index dec1ec38dc94..b7582a2aa92f 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.10.88.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 749ecb29db446a91029d36a9b099d5ded65bf3be
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:03:10 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:03:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749ecb29

sys-kernel/gentoo-sources: Stabilize 5.4.168 ppc64, #829926

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

 sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild
index fafb02a65d14..a90aed00ab8f 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.168.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: virtual/dist-kernel/

2021-12-24 Thread Georgy Yakovlev
commit: 74717a6da7dc88986bc029afc785ba105846f36c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 01:02:49 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74717a6d

virtual/dist-kernel: Stabilize 5.15.11 ppc64, #829938

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

 virtual/dist-kernel/dist-kernel-5.15.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/dist-kernel/dist-kernel-5.15.11.ebuild 
b/virtual/dist-kernel/dist-kernel-5.15.11.ebuild
index 01fb722059bc..415ac7f16e6a 100644
--- a/virtual/dist-kernel/dist-kernel-5.15.11.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.15.11.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~x86"
 
 RDEPEND="
|| (



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

2021-12-24 Thread Georgy Yakovlev
commit: b4b616a0655fee8c1a47464ed4c4fffa35287896
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:56:49 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b616a0

sys-fs/zfs-kmod: stabilize 2.0.7 for ppc64

Bug: https://bugs.gentoo.org/829803
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
index e1480e4db236..154ef6022aef 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
@@ -26,7 +26,7 @@ else
ZFS_KERNEL_DEP="${ZFS_KERNEL_DEP%%.*}.$(( ${ZFS_KERNEL_DEP##*.} + 1))"
 
if [[ ${PV} != *_rc* ]]; then
-   KEYWORDS="amd64 arm64 ~ppc64"
+   KEYWORDS="amd64 arm64 ppc64"
fi
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 3972b04cf058090a8ad06bab3027a6bdebef6538
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:59:37 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3972b04c

sys-fs/zfs: stabilize 2.0.7 for arm64

Bug: https://bugs.gentoo.org/829803
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs/zfs-2.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs/zfs-2.0.7.ebuild b/sys-fs/zfs/zfs-2.0.7.ebuild
index da1bfe9b7ce8..31a52fae5b35 100644
--- a/sys-fs/zfs/zfs-2.0.7.ebuild
+++ b/sys-fs/zfs/zfs-2.0.7.ebuild
@@ -25,7 +25,7 @@ else
S="${WORKDIR}/${P%_rc?}"
 
if [[ ${PV} != *_rc* ]]; then
-   KEYWORDS="amd64 ~arm64 ~ppc64"
+   KEYWORDS="amd64 arm64 ~ppc64"
fi
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 89013b056ae662d5a8429da437bfd5bd73c37106
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:59:55 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89013b05

sys-fs/zfs: stabilize 2.0.7 for ppc64

Closes: https://bugs.gentoo.org/829803
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs/zfs-2.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs/zfs-2.0.7.ebuild b/sys-fs/zfs/zfs-2.0.7.ebuild
index 31a52fae5b35..49a33456ec22 100644
--- a/sys-fs/zfs/zfs-2.0.7.ebuild
+++ b/sys-fs/zfs/zfs-2.0.7.ebuild
@@ -25,7 +25,7 @@ else
S="${WORKDIR}/${P%_rc?}"
 
if [[ ${PV} != *_rc* ]]; then
-   KEYWORDS="amd64 arm64 ~ppc64"
+   KEYWORDS="amd64 arm64 ppc64"
fi
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 7854ccf4ecbd44edb3489745ccfc6b6a304a82b3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:56:11 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7854ccf4

sys-fs/zfs-kmod: stabilize 2.0.7 for amd64, 5.15 compat

Bug: https://bugs.gentoo.org/829803
Bug: https://bugs.gentoo.org/829938
Bug: https://bugs.gentoo.org/829926
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
index 2c8562fe5c61..9b88cd0ed22b 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
@@ -26,7 +26,7 @@ else
ZFS_KERNEL_DEP="${ZFS_KERNEL_DEP%%.*}.$(( ${ZFS_KERNEL_DEP##*.} + 1))"
 
if [[ ${PV} != *_rc* ]]; then
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   KEYWORDS="amd64 ~arm64 ~ppc64"
fi
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 7f6bdaf3f32dcdbedb609794892185c46506a7c8
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:56:35 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f6bdaf3

sys-fs/zfs-kmod: stabilize 2.0.7 for arm64

Bug: https://bugs.gentoo.org/829803
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
index 9b88cd0ed22b..e1480e4db236 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-2.0.7.ebuild
@@ -26,7 +26,7 @@ else
ZFS_KERNEL_DEP="${ZFS_KERNEL_DEP%%.*}.$(( ${ZFS_KERNEL_DEP##*.} + 1))"
 
if [[ ${PV} != *_rc* ]]; then
-   KEYWORDS="amd64 ~arm64 ~ppc64"
+   KEYWORDS="amd64 arm64 ~ppc64"
fi
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: 611f0462e38fb934815cb910fb96a09aefd9d17c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:57:08 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611f0462

sys-fs/zfs: stabilize 2.0.7 for amd64

Bug: https://bugs.gentoo.org/829803
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs/zfs-2.0.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs/zfs-2.0.7.ebuild b/sys-fs/zfs/zfs-2.0.7.ebuild
index 52e731767cc5..da1bfe9b7ce8 100644
--- a/sys-fs/zfs/zfs-2.0.7.ebuild
+++ b/sys-fs/zfs/zfs-2.0.7.ebuild
@@ -25,7 +25,7 @@ else
S="${WORKDIR}/${P%_rc?}"
 
if [[ ${PV} != *_rc* ]]; then
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   KEYWORDS="amd64 ~arm64 ~ppc64"
fi
 fi
 



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

2021-12-24 Thread Georgy Yakovlev
commit: f762eb3f936d13e2a7d30b2f113127d5e2829372
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Dec 25 00:58:23 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sat Dec 25 01:02:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f762eb3f

profiles/base: stable-mask zfs[test-suite]

Bug: https://bugs.gentoo.org/829803
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/base/package.use.stable.mask 
b/profiles/base/package.use.stable.mask
index 51e9cd66d9aa..a6daffedef1f 100644
--- a/profiles/base/package.use.stable.mask
+++ b/profiles/base/package.use.stable.mask
@@ -4,6 +4,10 @@
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in package.use.mask
 
+# Georgy Yakovlev  (2021-12-24)
+# test deps are not stable
+>=sys-fs/zfs-2.0.7 test-suite
+
 # Georgy Yakovlev  (2021-12-19)
 # test deps are not stable and tests do not work
 # due to network access issues #829430



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

2021-12-24 Thread Ionen Wolkens
commit: 1cd358908fbef1fba93671435c3477e5fab7c934
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Sat Dec 25 00:59:40 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Sat Dec 25 01:01:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd35890

net-misc/yt-dlp: add 2021.12.25

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

 net-misc/yt-dlp/Manifest |  1 +
 net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild | 74 
 2 files changed, 75 insertions(+)

diff --git a/net-misc/yt-dlp/Manifest b/net-misc/yt-dlp/Manifest
index 4ec3c0e3076d..9c7bf287e6d1 100644
--- a/net-misc/yt-dlp/Manifest
+++ b/net-misc/yt-dlp/Manifest
@@ -1 +1,2 @@
 DIST yt-dlp-2021.12.1.tar.gz 2064958 BLAKE2B 
d97bf6bc5d6a97aec05be73dcc00aac6b1aff011c307abcbf604a3bfab06dadfd28401eab8ad26d42b7ec3db778c66e9fa2de09d3e6c28304fd28791532509d9
 SHA512 
d04e9e5ae36e73923ac79bb98af6e402ba0b4403430cbcc0517e7f446d42b6c637846b11489c0159faf667ab798b937abb9597fb5fba76b6f7b6e2b379bae328
+DIST yt-dlp-2021.12.25.tar.gz 2096136 BLAKE2B 
b40e35f8e7f644051ca80d7d6eeb5d7963e5d0b0c5ffbbc10ed2e4d1f7133a43ec19a715e2ca131fb95ce31c322b952cb13b40adcfe1d8f655e1bd2162ec8329
 SHA512 
826abb5654527e37454424a949607d2c9934328228566ab0baa89df23ea081c3feb01584a25d0154d30d389d4c10cc7203ad530ddf8472ae70d6e782e3ded490

diff --git a/net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild 
b/net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild
new file mode 100644
index ..449b50847e09
--- /dev/null
+++ b/net-misc/yt-dlp/yt-dlp-2021.12.25.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit bash-completion-r1 distutils-r1 optfeature
+
+DESCRIPTION="youtube-dl fork with additional features and fixes"
+HOMEPAGE="https://github.com/yt-dlp/yt-dlp;
+SRC_URI="mirror://pypi/${P::1}/${PN}/${P}.tar.gz"
+
+LICENSE="Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   !net-misc/youtube-dl"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+
+   # adjust requires for pycryptodome and optional dependencies (bug 
#828466)
+   sed -ri setup.py \
+   -e "s/'(pycryptodome)x'/'\1'/" \
+   -e "s/'(mutagen|websockets)',?//g" || die
+}
+
+python_test() {
+   epytest -m 'not download' -p no:markdown
+}
+
+python_install() {
+   distutils-r1_python_install
+
+   local sitedir=$(python_get_sitedir)
+   dosym yt_dlp "${sitedir#${EPREFIX}}"/youtube_dl
+}
+
+python_install_all() {
+   dodoc README.md Changelog.md supportedsites.md
+   doman yt-dlp.1
+
+   dobashcomp completions/bash/yt-dlp
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins completions/fish/yt-dlp.fish
+
+   insinto /usr/share/zsh/site-functions
+   doins completions/zsh/_yt-dlp
+
+   rm -r "${ED}"/usr/share/doc/yt_dlp || die
+
+   newbin - youtube-dl <<-EOF
+   #!/usr/bin/env sh
+   exec yt-dlp --compat-options youtube-dl "\${@}"
+   EOF
+}
+
+pkg_postinst() {
+   optfeature "various features (merging tracks, streamed content)" 
media-video/ffmpeg
+   has_version media-video/atomicparsley || # allow fallback but don't 
advertise
+   optfeature "embedding metadata thumbnails in MP4/M4A files" 
media-libs/mutagen
+
+   if [[ ! ${REPLACING_VERSIONS} ]] ||
+   ver_test ${REPLACING_VERSIONS} -lt 2021.10.22-r2; then
+   elog 'A wrapper using "yt-dlp --compat-options youtube-dl" was 
installed'
+   elog 'as "youtube-dl". This is strictly for compatibility and 
it is'
+   elog 'recommended to use "yt-dlp" directly, it may be removed 
in the future.'
+   fi
+}



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

2021-12-24 Thread Sam James
commit: 7b0c570ec60a1571021b04c4c4a0faf1806dfd43
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:00:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:00:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0c570e

sys-apps/systemd: Stabilize 249.7 arm64, #829887

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

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

diff --git a/sys-apps/systemd/systemd-249.7.ebuild 
b/sys-apps/systemd/systemd-249.7.ebuild
index 4fd3369b939b..0d9a1792bad8 100644
--- a/sys-apps/systemd/systemd-249.7.ebuild
+++ b/sys-apps/systemd/systemd-249.7.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2021-12-24 Thread Sam James
commit: 2ac53ff8a0ab2ddb844c254f119a2fda1bd9fcb2
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 01:00:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 01:00:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ac53ff8

sys-apps/systemd: Stabilize 249.7 arm, #829887

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

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

diff --git a/sys-apps/systemd/systemd-249.7.ebuild 
b/sys-apps/systemd/systemd-249.7.ebuild
index 800830d33dd8..4fd3369b939b 100644
--- a/sys-apps/systemd/systemd-249.7.ebuild
+++ b/sys-apps/systemd/systemd-249.7.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2021-12-24 Thread Sam James
commit: 724252effcc498ab5ef75178d13f382946387d1a
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 00:59:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 00:59:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=724252ef

app-containers/podman: Stabilize 3.4.4 amd64, #829942

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

 app-containers/podman/podman-3.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/podman/podman-3.4.4.ebuild 
b/app-containers/podman/podman-3.4.4.ebuild
index 419c47b5d16f..b23c43e83eb5 100644
--- a/app-containers/podman/podman-3.4.4.ebuild
+++ b/app-containers/podman/podman-3.4.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> ${MY_P}.t
 LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
-KEYWORDS="~amd64 ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm64 ~ppc64"
 IUSE="apparmor btrfs +fuse +rootless selinux"
 RESTRICT+=" test"
 



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

2021-12-24 Thread Sam James
commit: c801c350b6c6099eb10ecddb1a485403c0425a66
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 00:59:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 00:59:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c801c350

sys-kernel/linux-headers: Stabilize 5.15-r1 x86, #829939

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

 sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild 
b/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
index 716a1ec4f095..20fdf9c5c445 100644
--- a/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
+++ b/sys-kernel/linux-headers/linux-headers-5.15-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="${KERNEL_URI}

${PATCH_VER:+https://dev.gentoo.org/~${PATCH_DEV}/distfiles/sys-kernel/linux-headers/gentoo-headers-${PATCH_PV}-${PATCH_VER}.tar.xz};
 S="${WORKDIR}/linux-${PV}"
 
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 
 BDEPEND="app-arch/xz-utils
dev-lang/perl"



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

2021-12-24 Thread Sam James
commit: 50c6e017f1c91978046c43c57e1673e3cce36a8f
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 00:57:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 00:57:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c6e017

sys-apps/systemd: Stabilize 249.7 ppc, #829887

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

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

diff --git a/sys-apps/systemd/systemd-249.7.ebuild 
b/sys-apps/systemd/systemd-249.7.ebuild
index 9544163fc686..ea9376bcd35f 100644
--- a/sys-apps/systemd/systemd-249.7.ebuild
+++ b/sys-apps/systemd/systemd-249.7.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2021-12-24 Thread Sam James
commit: b5a736a59280778efab4f88c0122e13224cb6dfb
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 00:57:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 00:57:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5a736a5

sys-apps/systemd: Stabilize 249.7 ppc64, #829887

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

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

diff --git a/sys-apps/systemd/systemd-249.7.ebuild 
b/sys-apps/systemd/systemd-249.7.ebuild
index ea9376bcd35f..800830d33dd8 100644
--- a/sys-apps/systemd/systemd-249.7.ebuild
+++ b/sys-apps/systemd/systemd-249.7.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv 
~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2021-12-24 Thread Sam James
commit: 1519aa840338c7389befc3079dd7b7df24a68b97
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 00:52:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 00:52:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1519aa84

sys-apps/systemd: Stabilize 249.7 x86, #829887

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

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

diff --git a/sys-apps/systemd/systemd-249.7.ebuild 
b/sys-apps/systemd/systemd-249.7.ebuild
index 5f4dc1168d11..8ee7f379416b 100644
--- a/sys-apps/systemd/systemd-249.7.ebuild
+++ b/sys-apps/systemd/systemd-249.7.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2021-12-24 Thread Sam James
commit: 597426e2ab8084d98319feb311c61984ce1ed442
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 25 00:54:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 25 00:54:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597426e2

sys-apps/systemd: Stabilize 249.7 amd64, #829887

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

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

diff --git a/sys-apps/systemd/systemd-249.7.ebuild 
b/sys-apps/systemd/systemd-249.7.ebuild
index 8ee7f379416b..9544163fc686 100644
--- a/sys-apps/systemd/systemd-249.7.ebuild
+++ b/sys-apps/systemd/systemd-249.7.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~sparc x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2021-12-24 Thread Andreas Sturmlechner
commit: 1ed997118916a829d4d149cb933bb64232ad87c7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Dec 25 00:09:46 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Dec 25 00:10:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ed99711

dev-qt/qtwebengine: Drop 5.15.2_p20211210

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtwebengine/Manifest|   1 -
 .../qtwebengine-5.15.2_p20211210.ebuild| 228 -
 2 files changed, 229 deletions(-)

diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest
index 3288fa450f84..9ee52fe9cdbc 100644
--- a/dev-qt/qtwebengine/Manifest
+++ b/dev-qt/qtwebengine/Manifest
@@ -1,5 +1,4 @@
 DIST qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz 28784 BLAKE2B 
aa101d14446f3282fda8932cc75a249d88b79319f0886d95777292776d94ac5f4fc114c3893b2801fbba6abb14f381172bb14b15b5ffef12413db3a16e4d1ca6
 SHA512 
3324e0076eb18e2ae2248428d2730cfb3413761514b2bb57e25b8db792488098d9f7cebfa08f1a3b39b1d0a382aafed75c5ae8273918909335957921305e
 DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B 
fca1d1406874d04eafb64bb4d8730512a6307ba44fb99d76f428ca1bd4a303758e0c3bd8f92a59f7bcf62e5b767c5a8ed239028bdb74ad7a8b62abf88d38c101
 SHA512 
61cbfbe4ff340b75ea8d356e031e932ac03fe65dd00ff897ca4b0185d1d989490daf75ffeaaabb3e92c870c11c7ff8ad2cd6372f5363b3d774b8ecca6d89
 DIST qtwebengine-5.15.2_p20211019.tar.xz 320325744 BLAKE2B 
fac2f2a44e0f443a2642c0a0b3888ff15d047ce5b2de6673213db308e60f3e26b12adf98ad1dcf305630f0bc55abff078942711fbd10d05dc5a4095faadead25
 SHA512 
4abd2ca416228bbafa31aad9deae1466748930c02bcc08b55921fda598f720137e2af0cfa176dd534c8da97934d76e59b72c124b73564378fda0deaddaee
-DIST qtwebengine-5.15.2_p20211210.tar.xz 318959420 BLAKE2B 
84296cb89af428018485860cff026b374ae876038ce7eb75edb8dca7416ef8c541ad50b942dec1c7fbf59010f22a2b70452b29e35b2237054e08332f92a2d016
 SHA512 
d7afeed45db0a4bc7bcbc74837b1b32953114fc0afb62aeb969ef7361792313179f428d7ff43a14140b222d02c18f5118022037b1a9f9cd8852a93a4f34f545e
 DIST qtwebengine-5.15.2_p20211216.tar.xz 318953468 BLAKE2B 
65b1bc5be8d08d10b75fee20f78a9a783f878874907335818cddde500e80633e91a999e92fd3de69d004c3621a8337c9bef2c949e03e552cab1d89d901e0dae2
 SHA512 
f72db4b6dcbdaa171bf2997ab3a77325f9845ef1d72cd994e6152f0f92d350de348ff15b1cde1140ab98b7eb10d6e2d2a3ac6b7d773ab43de37144faad37c3f3

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211210.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211210.ebuild
deleted file mode 100644
index 0db381b9e6e0..
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211210.ebuild
+++ /dev/null
@@ -1,228 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="xml(+)"
-inherit estack flag-o-matic multiprocessing python-any-r1 qt5-build
-
-DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML 
applications"
-HOMEPAGE="https://www.qt.io/;
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-   if [[ ${PV} == ${QT5_PV}_p* ]]; then
-   SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}.tar.xz;
-   SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2;
-   S="${WORKDIR}/${P}"
-   QT5_BUILD_DIR="${S}_build"
-   fi
-else
-   EGIT_BRANCH="5.15"
-   EGIT_REPO_URI=(
-   "https://code.qt.io/qt/${QT5_MODULE}.git;
-   "https://github.com/qt/${QT5_MODULE}.git;
-   )
-   inherit git-r3
-fi
-
-# patchset based on https://github.com/chromium-ppc64le releases
-SRC_URI+=" ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz
 )"
-
-IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio 
+system-ffmpeg +system-icu widgets"
-REQUIRED_USE="designer? ( widgets )"
-
-RDEPEND="
-   app-arch/snappy:=
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   dev-libs/expat
-   dev-libs/libevent:=
-   dev-libs/libxml2[icu]
-   dev-libs/libxslt
-   dev-libs/re2:=
-   =dev-qt/qtcore-${QT5_PV}*
-   =dev-qt/qtdeclarative-${QT5_PV}*
-   =dev-qt/qtgui-${QT5_PV}*
-   =dev-qt/qtnetwork-${QT5_PV}*
-   =dev-qt/qtprintsupport-${QT5_PV}*
-   =dev-qt/qtwebchannel-${QT5_PV}*[qml]
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/harfbuzz:=
-   media-libs/lcms:2
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:0=
-   >=media-libs/libvpx-1.5:=[svc(+)]
-   media-libs/libwebp:=
-   media-libs/opus
-   sys-apps/dbus
-   sys-apps/pciutils
-   sys-libs/zlib[minizip]
-   virtual/libudev
-   x11-libs/libdrm
-   x11-libs/libX11
-  

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

2021-12-24 Thread Andreas Sturmlechner
commit: 24cfbf9a44c750b6b1f47d56981c4df58c581911
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Dec 25 00:07:21 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Dec 25 00:10:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24cfbf9a

dev-qt/qtwebengine: 5.15.2_p20211216 snapshot bump

Patched with security patches up to Chromium version: 96.0.4664.110

Snapshotted at:
Branch: 5.15
Commit: 1c9785bf7eee038f6f0b8e2d73dcb9588f6d60c1

Submodule qtwebengine-chromium.git:
Branch: 87-based
Commit: 0ad2814370799a2161057d92231fe3ee00e2fe98

Bug: https://bugs.gentoo.org/829161
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtwebengine/Manifest|   1 +
 ...qtwebengine-5.15.2_p20210521-clang-libc++.patch |  10 +
 .../qtwebengine-5.15.2_p20211216.ebuild| 233 +
 3 files changed, 244 insertions(+)

diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest
index 10ebdc5d5c7d..3288fa450f84 100644
--- a/dev-qt/qtwebengine/Manifest
+++ b/dev-qt/qtwebengine/Manifest
@@ -2,3 +2,4 @@ DIST qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz 28784 
BLAKE2B aa101d14446f3
 DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B 
fca1d1406874d04eafb64bb4d8730512a6307ba44fb99d76f428ca1bd4a303758e0c3bd8f92a59f7bcf62e5b767c5a8ed239028bdb74ad7a8b62abf88d38c101
 SHA512 
61cbfbe4ff340b75ea8d356e031e932ac03fe65dd00ff897ca4b0185d1d989490daf75ffeaaabb3e92c870c11c7ff8ad2cd6372f5363b3d774b8ecca6d89
 DIST qtwebengine-5.15.2_p20211019.tar.xz 320325744 BLAKE2B 
fac2f2a44e0f443a2642c0a0b3888ff15d047ce5b2de6673213db308e60f3e26b12adf98ad1dcf305630f0bc55abff078942711fbd10d05dc5a4095faadead25
 SHA512 
4abd2ca416228bbafa31aad9deae1466748930c02bcc08b55921fda598f720137e2af0cfa176dd534c8da97934d76e59b72c124b73564378fda0deaddaee
 DIST qtwebengine-5.15.2_p20211210.tar.xz 318959420 BLAKE2B 
84296cb89af428018485860cff026b374ae876038ce7eb75edb8dca7416ef8c541ad50b942dec1c7fbf59010f22a2b70452b29e35b2237054e08332f92a2d016
 SHA512 
d7afeed45db0a4bc7bcbc74837b1b32953114fc0afb62aeb969ef7361792313179f428d7ff43a14140b222d02c18f5118022037b1a9f9cd8852a93a4f34f545e
+DIST qtwebengine-5.15.2_p20211216.tar.xz 318953468 BLAKE2B 
65b1bc5be8d08d10b75fee20f78a9a783f878874907335818cddde500e80633e91a999e92fd3de69d004c3621a8337c9bef2c949e03e552cab1d89d901e0dae2
 SHA512 
f72db4b6dcbdaa171bf2997ab3a77325f9845ef1d72cd994e6152f0f92d350de348ff15b1cde1140ab98b7eb10d6e2d2a3ac6b7d773ab43de37144faad37c3f3

diff --git 
a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-clang-libc++.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-clang-libc++.patch
new file mode 100644
index ..fdcc787971ca
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-clang-libc++.patch
@@ -0,0 +1,10 @@
+--- a/src/buildtools/gn.pro
 b/src/buildtools/gn.pro
+@@ -25,6 +25,7 @@
+ msvc:!clang_cl: gn_gen_args += --use-lto
+
+ gn_configure = $$system_quote($$gn_bootstrap) $$gn_gen_args
++gn_configure += --no-static-libstdc++
+ macos {
+ gn_configure += --isysroot \"$$QMAKE_MAC_SDK_PATH\"
+ }

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211216.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211216.ebuild
new file mode 100644
index ..381ae49128b7
--- /dev/null
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.2_p20211216.ebuild
@@ -0,0 +1,233 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="xml(+)"
+inherit estack flag-o-matic multiprocessing python-any-r1 qt5-build
+
+DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML 
applications"
+HOMEPAGE="https://www.qt.io/;
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+   if [[ ${PV} == ${QT5_PV}_p* ]]; then
+   SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}.tar.xz;
+   S="${WORKDIR}/${P}"
+   QT5_BUILD_DIR="${S}_build"
+   fi
+else
+   EGIT_BRANCH="5.15"
+   EGIT_REPO_URI=(
+   "https://code.qt.io/qt/${QT5_MODULE}.git;
+   "https://github.com/qt/${QT5_MODULE}.git;
+   )
+   inherit git-r3
+fi
+
+# ppc64 patchset based on https://github.com/chromium-ppc64le releases
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2
+   ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz
 )"
+
+IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio 
+system-ffmpeg +system-icu widgets"
+REQUIRED_USE="designer? ( widgets )"
+
+RDEPEND="
+   app-arch/snappy:=
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   

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

2021-12-24 Thread Mike Gilbert
commit: 770425c16478720886a36b4af1fec9fbda6f05dd
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 25 00:05:57 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:05:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=770425c1

profiles: fix removal year for sys-apps/hwids

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

 profiles/package.mask | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 4b6762372fd5..772a96c9f80d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -34,7 +34,7 @@
 #--- END OF EXAMPLES ---
 
 # Mike Gilbert  (2021-12-24)
-# Replaced by sys-apps/hwdata. Removal on 2021-01-23.
+# Replaced by sys-apps/hwdata. Removal on 2022-01-23.
 sys-apps/hwids
 
 # Jonas Stein  (2021-12-24)



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

2021-12-24 Thread Andreas Sturmlechner
commit: c9c71f30735cb1f4618fb09781e15ee1a4ec6888
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Dec 25 00:02:50 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Dec 25 00:02:50 2021 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=c9c71f30

dev-qt/qtwebengine: Add missing space delimiter in SRC_URI

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
index d7d70f98..381ae491 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
@@ -27,7 +27,7 @@ else
 fi
 
 # ppc64 patchset based on https://github.com/chromium-ppc64le releases
-SRC_URI+="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2
ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz
 )"
 
 IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio 
+system-ffmpeg +system-icu widgets"



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

2021-12-24 Thread Mike Gilbert
commit: e566736f171d0362c31d78cd2cb33155bf6cb8af
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:47:19 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e566736f

sys-libs/libosinfo: drop 1.9.0

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

 sys-libs/libosinfo/libosinfo-1.9.0.ebuild | 60 ---
 1 file changed, 60 deletions(-)

diff --git a/sys-libs/libosinfo/libosinfo-1.9.0.ebuild 
b/sys-libs/libosinfo/libosinfo-1.9.0.ebuild
deleted file mode 100644
index c4d25968cc5c..
--- a/sys-libs/libosinfo/libosinfo-1.9.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_USE_DEPEND="vapigen"
-
-inherit meson udev vala xdg
-
-DESCRIPTION="GObject library for managing information about real and virtual 
OSes"
-HOMEPAGE="https://libosinfo.org/;
-SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-
-IUSE="gtk-doc +introspection +vala test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
-
-# Unsure about osinfo-db-tools rdep, but at least fedora does it too
-RDEPEND="
-   >=dev-libs/glib-2.44:2
-   net-libs/libsoup:2.4
-   >=dev-libs/libxml2-2.6.0
-   >=dev-libs/libxslt-1.0.0
-   sys-apps/hwids[pci,usb]
-   sys-apps/osinfo-db-tools
-   sys-apps/osinfo-db
-   introspection? ( >=dev-libs/gobject-introspection-1.56:= )
-"
-DEPEND="${RDEPEND}"
-# perl dep is for pod2man for automagic manpage building
-BDEPEND="
-   dev-lang/perl
-   dev-util/glib-utils
-   gtk-doc? ( >=dev-util/gtk-doc-1.10
-   app-text/docbook-xml-dtd:4.3 )
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-src_prepare() {
-   xdg_src_prepare
-   use vala && vala_src_prepare
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use gtk-doc enable-gtk-doc)
-   $(meson_feature introspection enable-introspection)
-   $(meson_use test enable-tests)
-   $(meson_feature vala enable-vala)
-   -Dwith-pci-ids-path=/usr/share/misc/pci.ids
-   -Dwith-usb-ids-path=/usr/share/misc/usb.ids
-   )
-   meson_src_configure
-}



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

2021-12-24 Thread Mike Gilbert
commit: c6cb7ef2cc023ca42b642c97a8a9aae3585ce3b0
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:45:46 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6cb7ef2

sys-apps/lshw: drop 02.19.2b_p20210121

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

 sys-apps/lshw/lshw-02.19.2b_p20210121.ebuild | 81 
 1 file changed, 81 deletions(-)

diff --git a/sys-apps/lshw/lshw-02.19.2b_p20210121.ebuild 
b/sys-apps/lshw/lshw-02.19.2b_p20210121.ebuild
deleted file mode 100644
index 1d03cec797f2..
--- a/sys-apps/lshw/lshw-02.19.2b_p20210121.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PLOCALES='fr'
-
-inherit desktop flag-o-matic plocale toolchain-funcs xdg
-
-MY_COMMIT="fdab06ac0b190ea0aa02cd468f904ed69ce0d9f1"
-MY_PV=$(ver_cut 3 PV/b/B).$(ver_cut 1-3)_$(ver_cut 5-6)
-
-DESCRIPTION="Hardware Lister"
-HOMEPAGE="https://www.ezix.org/project/wiki/HardwareLiSter;
-SRC_URI="https://ezix.org/src/pkg/lshw/archive/${MY_COMMIT}.tar.gz -> 
${P}-${MY_PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
-IUSE="gtk sqlite static"
-
-REQUIRED_USE="static? ( !gtk !sqlite )"
-
-DEPEND="${RDEPEND}"
-RDEPEND="sys-apps/hwids
-   gtk? ( x11-libs/gtk+:3 )
-   sqlite? ( dev-db/sqlite:3 )"
-BDEPEND="gtk? ( virtual/pkgconfig )
-   sqlite? ( virtual/pkgconfig )"
-
-S=${WORKDIR}/${PN}
-
-DOCS=( COPYING README.md 
docs/{Changelog,TODO,IODC.txt,lshw.xsd,proc_usb_info.txt} )
-
-src_prepare() {
-   default
-
-   plocale_find_changes "src/po" "" ".po" || die
-   sed -i \
-   -e "/^LANGUAGES =/ s/=.*/= $(plocale_get_locales)/" \
-   src/po/Makefile || die
-   sed -i \
-   -e 's:\:${PKG_CONFIG}:' \
-   -e 's:+\?make -C:${MAKE} -C:' \
-   -e '/^CXXFLAGS/s:=-g: +=:' \
-   -e '/^CXXFLAGS/s:-g ::' \
-   -e '/^LDFLAGS/s: -g::' \
-   -e '/^all:/s: $(DATAFILES)::' \
-   -e '/^install:/s: all::' \
-   src/Makefile src/gui/Makefile || die
-   sed -i \
-   -e '/^CXXFLAGS/s:\?=-g: +=:' \
-   -e '/^LDFLAGS=/d' \
-   src/core/Makefile || die
-   sed -i \
-   -e '/^#define 
PCIID_PATH/s:DATADIR"\/pci.ids.*:"/usr/share/misc/pci.ids":' \
-   src/core/pci.cc || die
-   sed -i \
-   -e '/^#define 
USBID_PATH/s:DATADIR"\/usb.ids.*:"/usr/share/misc/usb.ids":' \
-   src/core/usb.cc || die
-}
-
-src_compile() {
-   tc-export CC CXX AR PKG_CONFIG
-   use static && append-ldflags -static
-
-   # Need two sep make statements to avoid parallel build issues. #588174
-   local sqlite=$(usex sqlite 1 0)
-   emake VERSION=${MY_PV} SQLITE=${sqlite} all
-   use gtk && emake SQLITE=${sqlite} gui
-}
-
-src_install() {
-   emake VERSION=${MY_PV} DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install 
$(usex gtk 'install-gui' '')
-   if use gtk ; then
-   newicon -s scalable src/gui/artwork/logo.svg gtk-lshw.svg
-   make_desktop_entry \
-   "${EPREFIX}"/usr/sbin/gtk-lshw \
-   "${DESCRIPTION}"
-   fi
-}



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

2021-12-24 Thread Mike Gilbert
commit: 65870053ec411056eefe286d150b3707bc68d539
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:44:35 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65870053

net-misc/spice-gtk: drop 0.37-r3, 0.38-r2, 0.38-r3

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

 net-misc/spice-gtk/Manifest|   2 -
 .../spice-gtk-0.37-adjust-to-window-scaling.patch  | 132 ---
 net-misc/spice-gtk/spice-gtk-0.37-r3.ebuild| 140 -
 net-misc/spice-gtk/spice-gtk-0.38-r2.ebuild| 110 
 net-misc/spice-gtk/spice-gtk-0.38-r3.ebuild| 125 --
 5 files changed, 509 deletions(-)

diff --git a/net-misc/spice-gtk/Manifest b/net-misc/spice-gtk/Manifest
index 4be76f585699..5de070645502 100644
--- a/net-misc/spice-gtk/Manifest
+++ b/net-misc/spice-gtk/Manifest
@@ -1,3 +1 @@
-DIST spice-gtk-0.37.tar.bz2 1303111 BLAKE2B 
cf4b6664ac86d126cf14f1a31b1df93079e15fc0a0af69bfaf61cb84284daa7b6b8cb2a2ee3345f6a475838ffc0fb2a2b0bdd61301e2c1479fb5f5e0c28babbe
 SHA512 
a0a20bc6f25337d86e57fe1fc9586c4cc84457fc8c38cdcc5a728990a69018da0fca3ab5aa63349786b5a7508c82b716c94803eefb3495cffb7df4526db2d029
-DIST spice-gtk-0.38.tar.xz 796112 BLAKE2B 
c1542b5b76f9e23ffd1910273f358f656198829b1f615c6a8e0931a79d14920132c861facd534f4cf05f03c4f64a50f628f7daa93be581d5ac815f224b81fe16
 SHA512 
27b44ac9f0cee2737ce03bb3f47c62fc0ee2402c291c49fc56cffc4ccb63e2cab001a68ba865a6375d82cb3808d59c68469783ee4279fa818d8682e902f3
 DIST spice-gtk-0.39.tar.xz 845528 BLAKE2B 
c886c4c9f0e51d7f2bf6dbfe574f1a2bcab249f863cb7da1f009410572cdaa7a35ef98fc370a7e74f7e490ad3bfe8ffa832601f8bb0b0894b90ec1de76495ce9
 SHA512 
ff0f3ca6b10a2c415f2fa8d61464c5710aaa2a46c2c83909f146fa45f01151e756d9c3d79cb162dd3d0c1279b6ef55a67fc5c1266af2cb5b46ac1eaa0254c8d2

diff --git 
a/net-misc/spice-gtk/files/spice-gtk-0.37-adjust-to-window-scaling.patch 
b/net-misc/spice-gtk/files/spice-gtk-0.37-adjust-to-window-scaling.patch
deleted file mode 100644
index 504cb7c4848b..
--- a/net-misc/spice-gtk/files/spice-gtk-0.37-adjust-to-window-scaling.patch
+++ /dev/null
@@ -1,132 +0,0 @@
-From 262c84081fbd3cfc3d92e6ae9a60a780549d6c2f Mon Sep 17 00:00:00 2001
-From: Snir Sheriber 
-Date: Thu, 28 Feb 2019 11:44:34 +0200
-Subject: [PATCH] Adjust to window scaling
-
-When GDK_SCALE is != 1 and egl is used, the image presented does not
-fit to the window (scale of 2 is often used with hidpi monitors).
-Usually this is not a problem since all components are adjusted by
-gdk/gtk but with egl, pixel-based data is not being scaled. In this
-case window's scale value can be used in order to determine whether
-to use a pixel resource with higher resolution data.
-
-In order to reproduce the problem set spice with virgl/Intel-vGPU
-and run spice-gtk with GDK_SCALE=2
-
-This issue was also reported at freedesktop gitlab repo:
-https://gitlab.freedesktop.org/spice/spice-gtk/issues/99
-
-Signed-off-by: Snir Sheriber 
-Acked-by: Victor Toso 

- src/spice-widget-egl.c |  7 ---
- src/spice-widget.c | 27 +++
- 2 files changed, 23 insertions(+), 11 deletions(-)
-
-diff --git a/src/spice-widget-egl.c b/src/spice-widget-egl.c
-index 43fccd7..7bae4e5 100644
 a/src/spice-widget-egl.c
-+++ b/src/spice-widget-egl.c
-@@ -360,9 +360,9 @@ gboolean spice_egl_realize_display(SpiceDisplay *display, 
GdkWindow *win, GError
- DISPLAY_DEBUG(display, "egl realize");
- if (!spice_widget_init_egl_win(display, win, err))
- return FALSE;
--
--spice_egl_resize_display(display, gdk_window_get_width(win),
-- gdk_window_get_height(win));
-+gint scale_factor = gtk_widget_get_scale_factor(GTK_WIDGET(display));
-+spice_egl_resize_display(display, gdk_window_get_width(win) * 
scale_factor,
-+ gdk_window_get_height(win) * scale_factor);
- 
- return TRUE;
- }
-@@ -426,6 +426,7 @@ void spice_egl_unrealize_display(SpiceDisplay *display)
- #endif
- }
- 
-+/* w and h should be adjusted to gdk scaling */
- G_GNUC_INTERNAL
- void spice_egl_resize_display(SpiceDisplay *display, int w, int h)
- {
-diff --git a/src/spice-widget.c b/src/spice-widget.c
-index 1f2a154..a9ba1f1 100644
 a/src/spice-widget.c
-+++ b/src/spice-widget.c
-@@ -1382,7 +1382,8 @@ static void set_egl_enabled(SpiceDisplay *display, bool 
enabled)
- }
- 
- if (enabled && d->egl.context_ready) {
--spice_egl_resize_display(display, d->ww, d->wh);
-+gint scale_factor = gtk_widget_get_scale_factor(GTK_WIDGET(display));
-+spice_egl_resize_display(display, d->ww * scale_factor, d->wh * 
scale_factor);
- }
- 
- d->egl.enabled = enabled;
-@@ -1978,11 +1979,14 @@ static void transform_input(SpiceDisplay *display,
- SpiceDisplayPrivate *d = display->priv;
- int display_x, display_y, display_w, display_h;
-

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

2021-12-24 Thread Mike Gilbert
commit: bb4fcefc0f4830a3349a46a3a4601f3e57572ec7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:46:24 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4fcefc

sys-apps/pciutils: drop 3.7.0-r1

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

 sys-apps/pciutils/pciutils-3.7.0-r1.ebuild | 118 -
 1 file changed, 118 deletions(-)

diff --git a/sys-apps/pciutils/pciutils-3.7.0-r1.ebuild 
b/sys-apps/pciutils/pciutils-3.7.0-r1.ebuild
deleted file mode 100644
index 56a6825079f8..
--- a/sys-apps/pciutils/pciutils-3.7.0-r1.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib toolchain-funcs multilib-minimal flag-o-matic
-
-DESCRIPTION="Various utilities dealing with the PCI bus"
-HOMEPAGE="https://mj.ucw.cz/sw/pciutils/ 
https://git.kernel.org/?p=utils/pciutils/pciutils.git;
-SRC_URI="https://mj.ucw.cz/download/linux/pci/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
-IUSE="dns +kmod static-libs +udev zlib"
-REQUIRED_USE="static-libs? ( !udev )"
-
-# Have the sub-libs in RDEPEND with [static-libs] since, logically,
-# our libpci.a depends on libz.a/etc... at runtime.
-LIB_DEPEND="
-   zlib? ( >=sys-libs/zlib-1.2.8-r1[static-libs(+),${MULTILIB_USEDEP}] )
-"
-DEPEND="
-   kmod? ( sys-apps/kmod )
-   udev? ( >=virtual/libudev-208[${MULTILIB_USEDEP}] )
-   static-libs? ( ${LIB_DEPEND} )
-   !static-libs? ( ${LIB_DEPEND//static-libs([+-]),} )
-"
-RDEPEND="
-   ${DEPEND}
-   sys-apps/hwids
-"
-BDEPEND="kmod? ( virtual/pkgconfig )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-3.1.9-static-pc.patch
-)
-
-MULTILIB_WRAPPED_HEADERS=( /usr/include/pci/config.h )
-
-switch_config() {
-   [[ $# -ne 2 ]] && return 1
-   local opt=$1 val=$2
-
-   sed "s@^\(${opt}=\).*\$@\1${val}@" -i Makefile || die
-   return 0
-}
-
-src_prepare() {
-   default
-
-   if use static-libs ; then
-   cp -pPR "${S}" "${S}.static" || die
-   mv "${S}.static" "${S}/static" || die
-   fi
-
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   append-lfs-flags #471102
-}
-
-pemake() {
-   emake \
-   HOST="${CHOST}" \
-   CROSS_COMPILE="${CHOST}-" \
-   CC="$(tc-getCC)" \
-   AR="$(tc-getAR)" \
-   PKG_CONFIG="$(tc-getPKG_CONFIG)" \
-   RANLIB="$(tc-getRANLIB)" \
-   DNS=$(usex dns) \
-   IDSDIR='$(SHAREDIR)/misc' \
-   MANDIR='$(SHAREDIR)/man' \
-   PREFIX="${EPREFIX}/usr" \
-   SHARED="yes" \
-   STRIP="" \
-   ZLIB=$(usex zlib) \
-   PCI_COMPRESSED_IDS=0 \
-   PCI_IDS=pci.ids \
-   LIBDIR="\${PREFIX}/$(get_libdir)" \
-   LIBKMOD=$(multilib_native_usex kmod) \
-   HWDB=$(usex udev) \
-   "$@"
-}
-
-multilib_src_compile() {
-   pemake OPT="${CFLAGS}" all
-   if use static-libs ; then
-   pemake \
-   -C "${BUILD_DIR}/static" \
-   OPT="${CFLAGS}" \
-   SHARED="no" \
-   lib/libpci.a
-   fi
-}
-
-multilib_src_install() {
-   pemake DESTDIR="${D}" install install-lib
-   use static-libs && dolib.a "${BUILD_DIR}/static/lib/libpci.a"
-}
-
-multilib_src_install_all() {
-   dodoc ChangeLog README TODO
-
-   rm "${ED}"/usr/sbin/update-pciids "${ED}"/usr/share/misc/pci.ids \
-   "${ED}"/usr/share/man/man8/update-pciids.8*
-
-   newinitd "${FILESDIR}"/init.d-pciparm pciparm
-   newconfd "${FILESDIR}"/conf.d-pciparm pciparm
-}
-
-pkg_postinst() {
-   if [[ ${REPLACING_VERSIONS} ]] && ver_test ${REPLACING_VERSIONS} -lt 
3.2.0 ; then
-   elog "The 'network-cron' USE flag is gone; if you want a more 
up-to-date"
-   elog "pci.ids file, you should use sys-apps/hwids- 
(live ebuild)."
-   fi
-}



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

2021-12-24 Thread Mike Gilbert
commit: 40b99136a253c97fbe969514d74bae41ba8b7924
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:46:00 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b99136

sys-apps/lsvpd: drop 1.7.12

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

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

diff --git a/sys-apps/lsvpd/Manifest b/sys-apps/lsvpd/Manifest
index 62a5ac3f608d..a3ef48f0461b 100644
--- a/sys-apps/lsvpd/Manifest
+++ b/sys-apps/lsvpd/Manifest
@@ -1,2 +1 @@
-DIST lsvpd-1.7.12.tar.gz 90806 BLAKE2B 
1b55c463602105c36654f7baaf5d7c8f27ec045f35a648e87327f5b0b1c19ec62f5701a48d51114435dc5edfc503b78c35eb109a7982d6e6c10df4dd0d20e4a1
 SHA512 
0a37a580432004c359080edd2b07ea44a68dcf81621e0ec3a89cf7c4ca0f64a29143cee154a8d39c1411f64bf229a8a19f10d9f2c95971374b97a4c05b1c1523
 DIST lsvpd-1.7.13.tar.gz 93269 BLAKE2B 
9b92de69b810314dd8c84e300fabcce2117b16373b68c7e414cd6035f1b64f90fec2e2c4f0b623263d0f7de1e499464139e7b8ffa30e2e13b76fce50ea67ff4c
 SHA512 
99039b622051a24d1d17a014a81c6909a403c4b3746c2e4e62b0822f1d14319b3fcd5c82c13ec240ef2110c8a08de5b74a39ed0dea8a482977a475566cd83d3b

diff --git a/sys-apps/lsvpd/lsvpd-1.7.12.ebuild 
b/sys-apps/lsvpd/lsvpd-1.7.12.ebuild
deleted file mode 100644
index cc68314bdd30..
--- a/sys-apps/lsvpd/lsvpd-1.7.12.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Utility to List Device Vital Product Data (VPD)"
-HOMEPAGE="https://github.com/power-ras/lsvpd;
-SRC_URI="https://github.com/power-ras/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="ppc64"
-IUSE=""
-
-RDEPEND="
-   dev-db/sqlite:3
-   sys-apps/hwids
-   sys-apps/sg3_utils:0=
-   sys-libs/librtas
-   sys-libs/libvpd
-   sys-libs/zlib
-"
-
-DEPEND="${RDEPEND}
-   virtual/os-headers
-"
-
-BDEPEND=""
-
-src_prepare() {
-   default
-   eautoreconf
-}



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

2021-12-24 Thread Mike Gilbert
commit: 40377bb2c91a705a57460090087807afaf0c0857
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 20:00:08 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40377bb2

sys-apps/systemd: drop 249.6

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

 sys-apps/systemd/metadata.xml |   1 -
 sys-apps/systemd/systemd-249.6.ebuild | 514 --
 2 files changed, 515 deletions(-)

diff --git a/sys-apps/systemd/metadata.xml b/sys-apps/systemd/metadata.xml
index cd0754d004d6..1197a68cfdd0 100644
--- a/sys-apps/systemd/metadata.xml
+++ b/sys-apps/systemd/metadata.xml
@@ -22,7 +22,6 @@
Enable portable home directories
Enable setting hostname with 
networkd/hostnamed without polkit (requires running 
sys-apps/dbus-broker)
Enable embedded HTTP server in journald
-   Enable support for the hardware 
database
Enable import daemon
Enable kernel module loading via 
sys-apps/kmod
Enable lz4 compression for the journal

diff --git a/sys-apps/systemd/systemd-249.6.ebuild 
b/sys-apps/systemd/systemd-249.6.ebuild
deleted file mode 100644
index 3604e181f993..
--- a/sys-apps/systemd/systemd-249.6.ebuild
+++ /dev/null
@@ -1,514 +0,0 @@
-# Copyright 2011-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-
-# Avoid QA warnings
-TMPFILES_OPTIONAL=1
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/systemd/systemd.git;
-   inherit git-r3
-else
-   if [[ ${PV} == *.* ]]; then
-   MY_PN=systemd-stable
-   else
-   MY_PN=systemd
-   fi
-   MY_PV=${PV/_/-}
-   MY_P=${MY_PN}-${MY_PV}
-   S=${WORKDIR}/${MY_P}
-   
SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
-fi
-
-inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript
-
-DESCRIPTION="System and service manager for Linux"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd;
-
-LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
-SLOT="0/2"
-IUSE="acl apparmor audit build cgroup-hybrid cryptsetup curl dns-over-tls 
elfutils fido2 +gcrypt gnuefi homed http +hwdb idn importd +kmod +lz4 lzma nat 
pam pcre pkcs11 policykit pwquality qrcode repart +resolvconf +seccomp selinux 
split-usr +sysv-utils test tpm vanilla xkb +zstd"
-
-REQUIRED_USE="
-   homed? ( cryptsetup pam )
-   importd? ( curl gcrypt lzma )
-   pwquality? ( homed )
-"
-RESTRICT="!test? ( test )"
-
-MINKV="3.11"
-
-OPENSSL_DEP=">=dev-libs/openssl-1.1.0:0="
-
-COMMON_DEPEND=">=sys-apps/util-linux-2.30:0=[${MULTILIB_USEDEP}]
-   sys-libs/libcap:0=[${MULTILIB_USEDEP}]
-   virtual/libcrypt:=[${MULTILIB_USEDEP}]
-   acl? ( sys-apps/acl:0= )
-   apparmor? ( sys-libs/libapparmor:0= )
-   audit? ( >=sys-process/audit-2:0= )
-   cryptsetup? ( >=sys-fs/cryptsetup-2.0.1:0= )
-   curl? ( net-misc/curl:0= )
-   dns-over-tls? ( >=net-libs/gnutls-3.6.0:0= )
-   elfutils? ( >=dev-libs/elfutils-0.158:0= )
-   fido2? ( dev-libs/libfido2:0= )
-   gcrypt? ( >=dev-libs/libgcrypt-1.4.5:0=[${MULTILIB_USEDEP}] )
-   homed? ( ${OPENSSL_DEP} )
-   http? (
-   >=net-libs/libmicrohttpd-0.9.33:0=[epoll(+)]
-   >=net-libs/gnutls-3.1.4:0=
-   )
-   idn? ( net-dns/libidn2:= )
-   importd? (
-   app-arch/bzip2:0=
-   sys-libs/zlib:0=
-   )
-   kmod? ( >=sys-apps/kmod-15:0= )
-   lz4? ( >=app-arch/lz4-0_p131:0=[${MULTILIB_USEDEP}] )
-   lzma? ( >=app-arch/xz-utils-5.0.5-r1:0=[${MULTILIB_USEDEP}] )
-   nat? ( net-firewall/iptables:0= )
-   pam? ( sys-libs/pam:=[${MULTILIB_USEDEP}] )
-   pkcs11? ( app-crypt/p11-kit:0= )
-   pcre? ( dev-libs/libpcre2 )
-   pwquality? ( dev-libs/libpwquality:0= )
-   qrcode? ( media-gfx/qrencode:0= )
-   repart? ( ${OPENSSL_DEP} )
-   seccomp? ( >=sys-libs/libseccomp-2.3.3:0= )
-   selinux? ( sys-libs/libselinux:0= )
-   tpm? ( app-crypt/tpm2-tss:0= )
-   xkb? ( >=x11-libs/libxkbcommon-0.4.1:0= )
-   zstd? ( >=app-arch/zstd-1.4.0:0=[${MULTILIB_USEDEP}] )
-"
-
-# Newer linux-headers needed by ia64, bug #480218
-DEPEND="${COMMON_DEPEND}
-   >=sys-kernel/linux-headers-${MINKV}
-   gnuefi? ( >=sys-boot/gnu-efi-3.0.2 )
-"
-
-# baselayout-2.2 has /run
-RDEPEND="${COMMON_DEPEND}
-   >=acct-group/adm-0-r1
-   >=acct-group/wheel-0-r1
-   >=acct-group/kmem-0-r1
-   >=acct-group/tty-0-r1
-   >=acct-group/utmp-0-r1
-   >=acct-group/audio-0-r1
-   >=acct-group/cdrom-0-r1
-   >=acct-group/dialout-0-r1
-   

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

2021-12-24 Thread Mike Gilbert
commit: 4c4e573f5221eac896886a548dd93448bac2ca27
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:47:45 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4e573f

x11-libs/libpciaccess: drop 0.16

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

 x11-libs/libpciaccess/libpciaccess-0.16.ebuild | 31 --
 1 file changed, 31 deletions(-)

diff --git a/x11-libs/libpciaccess/libpciaccess-0.16.ebuild 
b/x11-libs/libpciaccess/libpciaccess-0.16.ebuild
deleted file mode 100644
index 7355b217f897..
--- a/x11-libs/libpciaccess/libpciaccess-0.16.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-XORG_MULTILIB=yes
-XORG_EAUTORECONF=yes
-inherit xorg-3
-
-DESCRIPTION="Library providing generic access to the PCI bus and devices"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="zlib"
-
-DEPEND="
-   zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] )"
-RDEPEND="${DEPEND}
-   sys-apps/hwids"
-
-src_prepare() {
-   # Let autotools install scanpci (#765706)
-   sed 's@^noinst_@bin_@' -i scanpci/Makefile.am || die
-   xorg-3_src_prepare
-}
-
-src_configure() {
-   local XORG_CONFIGURE_OPTIONS=(
-   $(use_with zlib)
-   --with-pciids-path="${EPREFIX}"/usr/share/misc
-   )
-   xorg-3_src_configure
-}



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

2021-12-24 Thread Mike Gilbert
commit: 1db3706229bc70f78a566ef5aab851c844a10e7d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:46:59 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1db37062

sys-apps/usbutils: drop 013-r1, 014

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

 sys-apps/usbutils/Manifest   |  1 -
 sys-apps/usbutils/usbutils-013-r1.ebuild | 53 --
 sys-apps/usbutils/usbutils-014.ebuild| 56 
 3 files changed, 110 deletions(-)

diff --git a/sys-apps/usbutils/Manifest b/sys-apps/usbutils/Manifest
index 91d8db1aaa15..ccd382febf6b 100644
--- a/sys-apps/usbutils/Manifest
+++ b/sys-apps/usbutils/Manifest
@@ -1,2 +1 @@
-DIST usbutils-013.tar.xz 98056 BLAKE2B 
d6e7925e180ba90f27ca12f13ed985f34e51b230ec08188c91bf39bb8e64baa319aa63d473318e1a4cb21b53808e8610f837ea0bb85657072f1c70107d037873
 SHA512 
eb1751e5b82f7a1bdffc667662cebee6fd42f466e59d4eb4c98f0d3723d740305377da1df1ba5831402fddbbd1697bbfa2abd22d9ed175e2dee55d6d007e9e54
 DIST usbutils-014.tar.xz 165884 BLAKE2B 
aea4f8edd3c7d7bc400fd63a8702b6d0bb50b8ed07196c4a0ed20a615eacf6373794afb9e7d5d81408dc3382848e965ecf8bc1bbec20837e4d1f96ba47cc40b5
 SHA512 
43c9f6ed14f8d01e014ef39a5d50b3b09031c6bda8261e0945b4cb4287c9107104175b386c2adc61dc7f9f476afb30f9a647a6ece6dee26b4133a4f10af72792

diff --git a/sys-apps/usbutils/usbutils-013-r1.ebuild 
b/sys-apps/usbutils/usbutils-013-r1.ebuild
deleted file mode 100644
index 18fefda1788a..
--- a/sys-apps/usbutils/usbutils-013-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{7,8,9} )
-
-inherit autotools python-single-r1
-
-DESCRIPTION="USB enumeration utilities"
-HOMEPAGE="https://www.kernel.org/pub/linux/utils/usb/usbutils/
-   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils.git/;
-SRC_URI="https://www.kernel.org/pub/linux/utils/usb/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86 ~amd64-linux ~x86-linux"
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="virtual/libusb:1=
-   virtual/libudev:="
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig"
-RDEPEND="${DEPEND}
-   sys-apps/hwids
-   python? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-   eautoreconf
-   use python && python_fix_shebang lsusb.py.in
-}
-
-src_configure() {
-   local myeconfargs=(
-   --datarootdir="${EPREFIX}/usr/share"
-   --datadir="${EPREFIX}/usr/share/misc"
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-   newdoc usbhid-dump/NEWS NEWS.usbhid-dump
-   dobin usbreset # noinst_PROGRAMS, but installed by other distros
-
-   use python || rm -f "${ED}"/usr/bin/lsusb.py
-}

diff --git a/sys-apps/usbutils/usbutils-014.ebuild 
b/sys-apps/usbutils/usbutils-014.ebuild
deleted file mode 100644
index adc0efbb6dea..
--- a/sys-apps/usbutils/usbutils-014.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8,9} )
-
-inherit autotools python-single-r1
-
-DESCRIPTION="USB enumeration utilities"
-HOMEPAGE="https://www.kernel.org/pub/linux/utils/usb/usbutils/
-   https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils.git/;
-SRC_URI="https://www.kernel.org/pub/linux/utils/usb/${PN}/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DEPEND="virtual/libusb:1=
-   virtual/libudev:="
-BDEPEND="
-   app-arch/xz-utils
-   virtual/pkgconfig
-   python? ( ${PYTHON_DEPS} )"
-RDEPEND="${DEPEND}
-   sys-apps/hwids
-   python? ( ${PYTHON_DEPS} )"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-   eautoreconf
-   use python && python_fix_shebang lsusb.py.in
-}
-
-src_configure() {
-   local myeconfargs=(
-   --datarootdir="${EPREFIX}/usr/share"
-   --datadir="${EPREFIX}/usr/share/misc"
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-   newdoc usbhid-dump/NEWS NEWS.usbhid-dump
-   dobin usbreset # noinst_PROGRAMS, but installed by other distros
-
-   if ! use python ; then
-   rm -f "${ED}"/usr/bin/lsusb.py || die
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: sys-fs/udev/, sys-fs/udev/files/

2021-12-24 Thread Mike Gilbert
commit: 14ca519cc16eee5cb7b7c0eda524ac8d98fa36c3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 19:59:34 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ca519c

sys-fs/udev: drop 249-r3, 249.6

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

 sys-fs/udev/Manifest   |   2 -
 sys-fs/udev/files/249-libudev-static.patch |  26 --
 sys-fs/udev/files/249-sys-include-posix.patch  |  67 -
 .../udev/files/249-udev-linux-headers-5-15.patch   |  22 --
 sys-fs/udev/udev-249-r3.ebuild | 300 
 sys-fs/udev/udev-249.6.ebuild  | 303 -
 6 files changed, 720 deletions(-)

diff --git a/sys-fs/udev/Manifest b/sys-fs/udev/Manifest
index c58cfe1e2b1a..8ce148c0811d 100644
--- a/sys-fs/udev/Manifest
+++ b/sys-fs/udev/Manifest
@@ -1,4 +1,2 @@
-DIST systemd-249.tar.gz 10588828 BLAKE2B 
f7896dea0bdec25125188b94ee84270b972649b1eb16599bed1967ced79f62dbfd1494e22362934f418823c054b342fb24dc57706b49520814beb95b6956bf27
 SHA512 
0810d09cc32e4aaa4425ee5b7ddf129262b061ce159cbd43571fabda48285243d8f80b566379ece9215d531b9407ee45e1e72c71935644fea31c7bca1bbf540c
-DIST systemd-musl-patches-249.1-r1.tar.xz 24536 BLAKE2B 
25135519112b2a1c638046addb6971ea1997fc7dd8626de90d162a4beb6383b5724df78a14c73be1283df58632fb4a0fcb32f90f50f1886f31a1aded15e9567c
 SHA512 
4655f2a06e1b3310cb27b839360353dfbfdbdaa86f4392aeebf63f63efd441d1953f7ac108be7fed7ea721596d191988ed999e34443e47922afca92db779175a
 DIST systemd-musl-patches-249.5-r1.tar.xz 25148 BLAKE2B 
6717291b5335997dcc327764beffc4ded50a5ac0e777bb3c540b5e355bee419c3d9b4a5605c239392d4c1b0e70792bc87282fa15dc9c09a0465b5608f2909006
 SHA512 
4bb7566437c280e75402fc435a3437aedad127f7b94c9bd54b94e9e1e7507409ad0898681f23e813b9b47414f58e4ca413b6d4e520bbbf578faec09054bf7f9b
 DIST systemd-stable-249.6.tar.gz 10599611 BLAKE2B 
9c0cbaa4319f2ce9a78dbe820d1b6df5191e6c632e2eac9f71f9ff9817564d9b3fc177d2aec0c0daea8ac33bbdc2066ad68a8967cf8857f4af3668b9a3e7d3bf
 SHA512 
7a7791dfe4923c00987b924adcb1cd08c4d17af2b17b4c6c6c701856c6810cfda61f06821c39787339fc05293853c0ea61b9973fcf4495c7bf4f8054ecfae66f

diff --git a/sys-fs/udev/files/249-libudev-static.patch 
b/sys-fs/udev/files/249-libudev-static.patch
deleted file mode 100644
index 73375b716e9b..
--- a/sys-fs/udev/files/249-libudev-static.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From f2c57d4f3805775e0ffdc80ce578eaa737017d31 Mon Sep 17 00:00:00 2001
-From: Mike Gilbert 
-Date: Fri, 9 Jul 2021 13:05:23 -0400
-Subject: [PATCH] libudev: add "Libs.private: -lrt -pthread" to libudev.pc
-
-This resolves a failure when linking cryptsetup.static against libudev.a.
-
-```
-libtool: link: x86_64-pc-linux-gnu-gcc -Wall -O2 -pipe -march=amdfam10 -static 
-O2 -o cryptsetup.static lib/utils_crypt.o lib/utils_loop.o lib/utils_io.o 
lib/utils_blkid.o src/utils_tools.o src/utils_password.o src/utils_luks2.o 
src/utils_blockdev.o src/cryptsetup.o -pthread -pthread  -Wl,--as-needed 
./.libs/libcryptsetup.a -largon2 -lrt -ljson-c -lpopt -luuid -lblkid -lssl 
-lcrypto -lz -ldl -ldevmapper -lm -lpthread -ludev -pthread
-/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../x86_64-pc-linux-gnu/bin/ld:
 
/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/../../../../lib64/libudev.a(src_libsystemd_sd-daemon_sd-daemon.c.o):
 in function `sd_is_mq':
-(.text.sd_is_mq+0x3a): undefined reference to `mq_getattr'
-```

- src/libudev/libudev.pc.in | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/libudev/libudev.pc.in b/src/libudev/libudev.pc.in
-index 89028aaa6bf2..1d6487fa4084 100644
 a/src/libudev/libudev.pc.in
-+++ b/src/libudev/libudev.pc.in
-@@ -16,4 +16,5 @@ Name: libudev
- Description: Library to access udev device information
- Version: {{PROJECT_VERSION}}
- Libs: -L${libdir} -ludev
-+Libs.private: -lrt -pthread
- Cflags: -I${includedir}

diff --git a/sys-fs/udev/files/249-sys-include-posix.patch 
b/sys-fs/udev/files/249-sys-include-posix.patch
deleted file mode 100644
index 6d9e0039b9c9..
--- a/sys-fs/udev/files/249-sys-include-posix.patch
+++ /dev/null
@@ -1,67 +0,0 @@
-Silence annoying #warning's on musl
-
-https://github.com/systemd/systemd/pull/20362
-https://github.com/systemd/systemd/pull/20364
-
-From f8d54f7810aeea5ff27a5db03e1aab7ea54c8268 Mon Sep 17 00:00:00 2001
-From: David Seifert 
-Date: Mon, 2 Aug 2021 12:41:38 +0200
-Subject: [PATCH] Use correct `` include
-
-* `` is not specified in POSIX

- src/basic/fileio.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/basic/fileio.h b/src/basic/fileio.h
-index af797cfafdbf..4295b84a85c5 100644
 a/src/basic/fileio.h
-+++ b/src/basic/fileio.h
-@@ -2,11 +2,11 @@
- #pragma once
- 
- #include 
-+#include 
- #include 
- #include 
- #include 
- #include 
--#include 
- #include 
- 
- #include "macro.h"
-From 2b6c0bb2a341c95223ce672249e43c743b03d78c Mon Sep 

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

2021-12-24 Thread Mike Gilbert
commit: db2a0a269158f31b1b9661f9bbb2109ac68a8448
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:44:59 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db2a0a26

net-wireless/aircrack-ng: drop 1.6_p20200722

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

 .../aircrack-ng/aircrack-ng-1.6_p20200722.ebuild   | 118 -
 1 file changed, 118 deletions(-)

diff --git a/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722.ebuild 
b/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722.ebuild
deleted file mode 100644
index e3c69ec22df6..
--- a/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722.ebuild
+++ /dev/null
@@ -1,118 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-DISTUTILS_OPTIONAL=1
-
-inherit toolchain-funcs distutils-r1 flag-o-matic autotools
-
-DESCRIPTION="WLAN tools for breaking 802.11 WEP/WPA keys"
-HOMEPAGE="http://www.aircrack-ng.org;
-
-if [[ ${PV} == "" ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/aircrack-ng/aircrack-ng.git;
-else
-   #SRC_URI="https://download.aircrack-ng.org/${P}.tar.gz;
-   COMMIT="5a02ac4818b30d2e87b3e18e497a5f9e5319394f"
-   
SRC_URI="https://github.com/aircrack-ng/aircrack-ng/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${COMMIT}"
-   KEYWORDS="amd64 arm ~arm64 ~ppc x86 ~amd64-linux ~x86-linux"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-IUSE="+airdrop-ng +airgraph-ng kernel_linux kernel_FreeBSD +netlink +pcre 
+sqlite +experimental"
-
-DEPEND="net-libs/libpcap
-   sys-apps/hwloc:0=
-   dev-libs/openssl:0=
-   netlink? ( dev-libs/libnl:3 )
-   pcre? ( dev-libs/libpcre )
-   airdrop-ng? ( ${PYTHON_DEPS} )
-   airgraph-ng? ( ${PYTHON_DEPS} )
-   experimental? ( sys-libs/zlib )
-   sqlite? ( >=dev-db/sqlite-3.4 )"
-RDEPEND="${DEPEND}
-   kernel_linux? (
-   net-wireless/iw
-   net-wireless/wireless-tools
-   sys-apps/ethtool
-   sys-apps/usbutils
-   sys-apps/pciutils )
-   sys-apps/hwids
-   airdrop-ng? ( net-wireless/lorcon[python,${PYTHON_USEDEP}] )"
-
-REQUIRED_USE="
-   airdrop-ng? ( ${PYTHON_REQUIRED_USE} )
-   airgraph-ng? ( ${PYTHON_REQUIRED_USE} )"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   STATIC_LIBDIR_NAME="$(get_libdir)" \
-   --disable-asan \
-   --enable-shared \
-   --disable-static \
-   --without-opt \
-   $(use_enable netlink libnl) \
-   $(use_with experimental) \
-   $(use_with sqlite sqlite3)
-}
-
-src_compile() {
-   if [[ $($(tc-getCC) --version) == clang* ]] ; then
-   #https://bugs.gentoo.org/show_bug.cgi?id=472890
-   filter-flags -frecord-gcc-switches
-   fi
-
-   default
-
-   if use airgraph-ng; then
-   cd "${S}/scripts/airgraph-ng"
-   distutils-r1_src_compile
-   fi
-   if use airdrop-ng; then
-   cd "${S}/scripts/airdrop-ng"
-   distutils-r1_src_compile
-   fi
-}
-
-src_install() {
-   default
-
-   if use airgraph-ng; then
-   cd "${S}/scripts/airgraph-ng"
-   distutils-r1_src_install
-   fi
-   if use airdrop-ng; then
-   cd "${S}/scripts/airdrop-ng"
-   distutils-r1_src_install
-   fi
-
-   # we don't need aircrack-ng's oui updater, we have our own
-   rm "${ED}"/usr/sbin/airodump-ng-oui-update
-   find "${D}" -xtype f -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   # Message is (c) FreeBSD
-   # 
http://www.freebsd.org/cgi/cvsweb.cgi/ports/net-mgmt/aircrack-ng/files/pkg-message.in?rev=1.5
-   if use kernel_FreeBSD ; then
-   einfo "Contrary to Linux, it is not necessary to use airmon-ng 
to enable the monitor"
-   einfo "mode of your wireless card.  So do not care about what 
the manpages say about"
-   einfo "airmon-ng, airodump-ng sets monitor mode automatically."
-   echo
-   einfo "To return from monitor mode, issue the following 
command:"
-   einfo "ifconfig \${INTERFACE} -mediaopt monitor"
-   einfo
-   einfo "For aireplay-ng you need FreeBSD >= 7.0."
-   fi
-}



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

2021-12-24 Thread Mike Gilbert
commit: 479fa67e2404790878521e4dbc725f390a639df9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 21:43:21 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=479fa67e

dev-libs/libgusb: drop 0.3.7

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

 dev-libs/libgusb/libgusb-0.3.7.ebuild | 63 ---
 1 file changed, 63 deletions(-)

diff --git a/dev-libs/libgusb/libgusb-0.3.7.ebuild 
b/dev-libs/libgusb/libgusb-0.3.7.ebuild
deleted file mode 100644
index 6c27baebffaa..
--- a/dev-libs/libgusb/libgusb-0.3.7.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_USE_DEPEND="vapigen"
-
-PYTHON_COMPAT=( python3_{7,8,9} )
-PYTHON_REQ_USE="xml(+)"
-
-inherit meson-multilib python-any-r1 vala
-
-DESCRIPTION="GObject wrapper for libusb"
-HOMEPAGE="https://github.com/hughsie/libgusb;
-SRC_URI="https://people.freedesktop.org/~hughsient/releases/${P}.tar.xz;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
-
-IUSE="gtk-doc +introspection static-libs test +vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.44.0:2[${MULTILIB_USEDEP}]
-   virtual/libusb:1[udev,${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-   sys-apps/hwids
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   $(python_gen_any_dep 'dev-python/setuptools[${PYTHON_USEDEP}]')
-   gtk-doc? (
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/docbook-xml-dtd:4.4
-   dev-util/gtk-doc
-   )
-   vala? ( $(vala_depend) )
-   virtual/pkgconfig
-"
-
-RESTRICT="!test? ( test )"
-
-python_check_deps() {
-   has_version -b "dev-python/setuptools[${PYTHON_USEDEP}]"
-}
-
-src_prepare() {
-   use vala && vala_src_prepare
-   default
-}
-
-multilib_src_configure() {
-   local emesonargs=(
-   -Ddefault_library=$(usex static-libs both shared)
-   $(meson_use test tests)
-   $(meson_native_use_bool vala vapi)
-   -Dusb_ids="${EPREFIX}"/usr/share/misc/usb.ids
-   $(meson_native_use_bool gtk-doc docs)
-   $(meson_native_use_bool introspection)
-
-   )
-   meson_src_configure
-}



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

2021-12-24 Thread Mike Gilbert
commit: 8e60c077853fe5178e46c0ce4a50adbae83c7852
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 20:02:07 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e60c077

profiles: mask sys-apps/hwids for removal

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index bf3792e9221a..4b6762372fd5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Mike Gilbert  (2021-12-24)
+# Replaced by sys-apps/hwdata. Removal on 2021-01-23.
+sys-apps/hwids
+
 # Jonas Stein  (2021-12-24)
 # Alpha version
 =app-editors/ghex-4.0.0_alpha



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

2021-12-24 Thread Mike Gilbert
commit: d97e27eba0bcc78cb1ed0d6918a476f19e5976e7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Dec 24 19:57:28 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 25 00:02:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d97e27eb

sys-fs/eudev: drop 3.2.10-r1

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

 sys-fs/eudev/Manifest   |   1 -
 sys-fs/eudev/eudev-3.2.10-r1.ebuild | 236 
 sys-fs/eudev/metadata.xml   |   1 -
 3 files changed, 238 deletions(-)

diff --git a/sys-fs/eudev/Manifest b/sys-fs/eudev/Manifest
index 96e53cf784d9..e963c842d82f 100644
--- a/sys-fs/eudev/Manifest
+++ b/sys-fs/eudev/Manifest
@@ -1,2 +1 @@
-DIST eudev-3.2.10.tar.gz 1961960 BLAKE2B 
3708c78fad3abad6aa4b2beaaa325e25e118621aa2e6cb351732f6d8349dc17da9be852cab79045c7a513e927c2d1266c6443814fd264943765d98fb5b404e75
 SHA512 
d0a076d8a54e9d4ca9ca48cf885d082965144b322950d351b7ead4a5035c2dad6fd66b7f137d7281982876c3c50330cdd5e599788f23e1369388181dd178941d
 DIST eudev-3.2.11.tar.gz 2254373 BLAKE2B 
cfa6235d6509b751fde93ff2b0961b93c3741458e561a7ad9b07b49a57779627532cff25ad3519e5f79320854fcedfcdc23642ef542505cebcd6b2803067389a
 SHA512 
17b328365913af3e434abe667dd0498c3702a41c6cb66f3793ca2c195b05ac06397b0a401077f81df7dd25193e4eeea13657a221ca6cb3d237c4d91e31e30b33

diff --git a/sys-fs/eudev/eudev-3.2.10-r1.ebuild 
b/sys-fs/eudev/eudev-3.2.10-r1.ebuild
deleted file mode 100644
index 32609688f692..
--- a/sys-fs/eudev/eudev-3.2.10-r1.ebuild
+++ /dev/null
@@ -1,236 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-KV_min=2.6.39
-
-inherit autotools linux-info multilib multilib-minimal toolchain-funcs
-
-if [[ ${PV} = * ]]; then
-   EGIT_REPO_URI="https://github.com/gentoo/eudev.git;
-   inherit git-r3
-else
-   SRC_URI="https://dev.gentoo.org/~blueness/${PN}/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"
-HOMEPAGE="https://github.com/gentoo/eudev;
-
-LICENSE="LGPL-2.1 MIT GPL-2"
-SLOT="0"
-IUSE="+hwdb +kmod introspection rule-generator selinux static-libs test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND=">=sys-apps/util-linux-2.20
-   virtual/libcrypt:=
-   introspection? ( >=dev-libs/gobject-introspection-1.38 )
-   kmod? ( >=sys-apps/kmod-16 )
-   selinux? ( >=sys-libs/libselinux-2.1.9 )
-   !https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames;
-   ewarn
-   ewarn "This functionality is enabled BY DEFAULT because eudev has no 
means of synchronizing"
-   ewarn "between the default or user-modified choice of sys-fs/udev.  If 
you wish to disable"
-   ewarn "this new iface naming, please be sure that 
/etc/udev/rules.d/80-net-name-slot.rules"
-   ewarn "exists: touch /etc/udev/rules.d/80-net-name-slot.rules"
-   ewarn
-}
-
-pkg_setup() {
-   CONFIG_CHECK="~BLK_DEV_BSG ~DEVTMPFS ~!IDE ~INOTIFY_USER 
~!SYSFS_DEPRECATED ~!SYSFS_DEPRECATED_V2 ~SIGNALFD ~EPOLL ~FHANDLE ~NET ~UNIX"
-   linux-info_pkg_setup
-   get_running_version
-
-   # These are required kernel options, but we don't error out on them
-   # because you can build under one kernel and run under another.
-   if kernel_is lt ${KV_min//./ }; then
-   ewarn
-   ewarn "Your current running kernel version ${KV_FULL} is too 
old to run ${P}."
-   ewarn "Make sure to run udev under kernel version ${KV_min} or 
above."
-   ewarn
-   fi
-}
-
-src_prepare() {
-   # change rules back to group uucp instead of dialout for now
-   sed -e 's/GROUP="dialout"/GROUP="uucp"/' -i rules/*.rules \
-   || die "failed to change group dialout to uucp"
-
-   eapply_user
-   eautoreconf
-}
-
-multilib_src_configure() {
-   tc-export CC #463846
-   export cc_cv_CFLAGS__flto=no #502950
-
-   # Keep sorted by ./configure --help and only pass --disable flags
-   # when *required* to avoid external deps or unnecessary compile
-   local econf_args
-   econf_args=(
-   ac_cv_search_cap_init=
-   ac_cv_header_sys_capability_h=yes
-   DBUS_CFLAGS=' '
-   DBUS_LIBS=' '
-   --with-rootprefix=
-   --with-rootrundir=/run
-   --exec-prefix="${EPREFIX}"
-   --bindir="${EPREFIX}"/bin
-   --includedir="${EPREFIX}"/usr/include
-   --libdir="${EPREFIX}"/usr/$(get_libdir)
-   --with-rootlibexecdir="${EPREFIX}"/lib/udev
-   --enable-split-usr
-   --enable-manpages
-   --disable-hwdb
-   )
-
-   # Only build libudev for non-native_abi, and only install it to libdir,
-   # that means all 

[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebengine/, dev-qt/qtwebengine/files/

2021-12-24 Thread Andreas Sturmlechner
commit: a6c5e4451941cb87c1fdd3121f36e2ba5f132648
Author: James Beddek  posteo  de>
AuthorDate: Sat Jun 19 22:32:36 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Dec 24 23:44:47 2021 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=a6c5e445

dev-qt/qtwebengine: fix build with sys-devel/clang[default-libcxx]

See also: https://github.com/gentoo/gentoo/pull/21337

Signed-off-by: James Beddek  posteo.de>
Signed-off-by: Sam James  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/qtwebengine-5.15.2_p20210521-clang-libc++.patch  | 10 ++
 dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild  |  5 +
 2 files changed, 15 insertions(+)

diff --git 
a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-clang-libc++.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-clang-libc++.patch
new file mode 100644
index ..fdcc7879
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-clang-libc++.patch
@@ -0,0 +1,10 @@
+--- a/src/buildtools/gn.pro
 b/src/buildtools/gn.pro
+@@ -25,6 +25,7 @@
+ msvc:!clang_cl: gn_gen_args += --use-lto
+
+ gn_configure = $$system_quote($$gn_bootstrap) $$gn_gen_args
++gn_configure += --no-static-libstdc++
+ macos {
+ gn_configure += --isysroot \"$$QMAKE_MAC_SDK_PATH\"
+ }

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
index c8411e17..f2b7c789 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
@@ -170,6 +170,11 @@ src_prepare() {
done < <(find src/3rdparty/chromium/third_party/icu -type f "(" 
-name "*.c" -o -name "*.cpp" -o -name "*.h" ")" 2>/dev/null)
fi
 
+   # src/3rdparty/gn fails with libc++ due to passing of 
`-static-libstdc++`
+   if tc-is-clang && has_version 'sys-devel/clang[default-libcxx]'; then
+   eapply "${FILESDIR}/${PN}-5.15.2_p20210521-clang-libc++.patch"
+   fi
+
qt_use_disable_config alsa webengine-alsa 
src/buildtools/config/linux.pri
qt_use_disable_config pulseaudio webengine-pulseaudio 
src/buildtools/config/linux.pri
 



[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebengine/, dev-qt/qtwebengine/files/

2021-12-24 Thread Andreas Sturmlechner
commit: 83411b823ced34db7cad8f19b7c4212b4af5ffe7
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Oct 17 06:43:59 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Dec 24 23:55:51 2021 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=83411b82

dev-qt/qtwebengine: Sync patches from Gentoo ebuild repo

- pdfium-system-lcms2 patch
- supposed systemwide-clang w/ glibc-2.34 fix

Bug: https://bugs.gentoo.org/828099
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 ...gine-5.15.2_p20211015-pdfium-system-lcms2.patch | 79 ++
 ...ngine-5.15.2_p20211210-sandbox-glibc-2.34.patch | 27 
 dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild  |  2 +
 3 files changed, 108 insertions(+)

diff --git 
a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20211015-pdfium-system-lcms2.patch
 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20211015-pdfium-system-lcms2.patch
new file mode 100644
index ..b3c2ffb3
--- /dev/null
+++ 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20211015-pdfium-system-lcms2.patch
@@ -0,0 +1,79 @@
+Description: Use system lcms2
+Author: Sandro Knauß 
+Origin: Debian
+Forwarded: https://bugreports.qt.io/browse/QTBUG-61746
+Reviewed-by: Sandro Knauß 
+Last-Update: 2021-03-08
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- a/src/3rdparty/chromium/third_party/pdfium/third_party/BUILD.gn
 b/src/3rdparty/chromium/third_party/pdfium/third_party/BUILD.gn
+@@ -239,58 +239,19 @@ if (!pdf_use_skia && !pdf_use_skia_paths
+   }
+ }
+ 
+-config("fx_lcms2_warnings") {
+-  visibility = [ ":*" ]
+-  if (is_clang) {
+-cflags = [
+-  # cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this
+-  # library doesn't appear to have this problem.
+-  "-Wno-missing-braces",
+-]
+-  }
++import("//build/shim_headers.gni")
++
++shim_headers("lcms2_shim") {
++  root_path = "lcms/include"
++  headers = [
++"lcms2.h",
++"lcms2_plugin.h",
++  ]
+ }
+ 
+ source_set("fx_lcms2") {
+-  configs -= [ "//build/config/compiler:chromium_code" ]
+-  configs += [
+-"//build/config/compiler:no_chromium_code",
+-"//build/config/sanitizers:cfi_icall_generalize_pointers",
+-":pdfium_third_party_config",
+-
+-# Must be after no_chromium_code for warning flags to be ordered 
correctly.
+-":fx_lcms2_warnings",
+-  ]
+-  sources = [
+-"lcms/include/lcms2.h",
+-"lcms/include/lcms2_plugin.h",
+-"lcms/src/cmsalpha.c",
+-"lcms/src/cmscam02.c",
+-"lcms/src/cmscgats.c",
+-"lcms/src/cmscnvrt.c",
+-"lcms/src/cmserr.c",
+-"lcms/src/cmsgamma.c",
+-"lcms/src/cmsgmt.c",
+-"lcms/src/cmshalf.c",
+-"lcms/src/cmsintrp.c",
+-"lcms/src/cmsio0.c",
+-"lcms/src/cmsio1.c",
+-"lcms/src/cmslut.c",
+-"lcms/src/cmsmd5.c",
+-"lcms/src/cmsmtrx.c",
+-"lcms/src/cmsnamed.c",
+-"lcms/src/cmsopt.c",
+-"lcms/src/cmspack.c",
+-"lcms/src/cmspcs.c",
+-"lcms/src/cmsplugin.c",
+-"lcms/src/cmsps2.c",
+-"lcms/src/cmssamp.c",
+-"lcms/src/cmssm.c",
+-"lcms/src/cmstypes.c",
+-"lcms/src/cmsvirt.c",
+-"lcms/src/cmswtpnt.c",
+-"lcms/src/cmsxform.c",
+-  ]
+-  deps = [ "../core/fxcrt" ]
++  deps = [ ":lcms2_shim" ]
++  libs = ["lcms2"]
+ }
+ 
+ if (!build_with_chromium) {

diff --git 
a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20211210-sandbox-glibc-2.34.patch
 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20211210-sandbox-glibc-2.34.patch
new file mode 100644
index ..aac512a3
--- /dev/null
+++ 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20211210-sandbox-glibc-2.34.patch
@@ -0,0 +1,27 @@
+Patch taken from www-client/chromium:
+https://gitweb.gentoo.org/repo/gentoo.git/plain/www-client/chromium/files/chromium-glibc-2.34.patch
+
+Dropped parts already upstream.
+
+diff --git a/src/3rdparty/chromium/sandbox/linux/services/credentials.cc 
b/src/3rdparty/chromium/sandbox/linux/services/credentials.cc
+index ca6b595..1c1ee42 100644
+--- a/src/3rdparty/chromium/sandbox/linux/services/credentials.cc
 b/src/3rdparty/chromium/sandbox/linux/services/credentials.cc
+@@ -11,6 +11,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+@@ -100,7 +101,8 @@ bool ChrootToSafeEmptyDir() {
+   // TODO(crbug.com/1247458) Broken in MSan builds after LLVM f1bb30a4956f.
+   clone_flags |= CLONE_VM | CLONE_VFORK | CLONE_SETTLS;
+ 
+-  char tls_buf[PTHREAD_STACK_MIN] = {0};
++  char tls_buf[PTHREAD_STACK_MIN];
++  memset(tls_buf, 0, PTHREAD_STACK_MIN);
+   tls = tls_buf;
+ #endif
+ 

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
index f2b7c789..d7d70f98 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
@@ -105,6 +105,8 @@ PATCHES=(
"${FILESDIR}/${PN}-5.15.2-extra_gn.patch" # downstream, 

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

2021-12-24 Thread Andreas Sturmlechner
commit: 5a5e656f6ad20d963eaf5d6f47f4fcc78e220899
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Fri Nov  5 06:55:18 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Dec 24 23:39:15 2021 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=5a5e656f

dev-qt/qtwebengine: add jumbo-build patch

* asturm 2021-12-25: Fix SRC_URI - always add patch, not just in release

Bug: https://bugs.gentoo.org/813957
Thanks-to: Marco Genasci  gmail.com> (enhancing patch)
Signed-off-by: Sam James  gentoo.org>
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtwebengine/Manifest   | 1 +
 dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild | 6 --
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest
index 9c826ec1..8405203a 100644
--- a/dev-qt/qtwebengine/Manifest
+++ b/dev-qt/qtwebengine/Manifest
@@ -1,2 +1,3 @@
 DIST qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz 28784 BLAKE2B 
aa101d14446f3282fda8932cc75a249d88b79319f0886d95777292776d94ac5f4fc114c3893b2801fbba6abb14f381172bb14b15b5ffef12413db3a16e4d1ca6
 SHA512 
3324e0076eb18e2ae2248428d2730cfb3413761514b2bb57e25b8db792488098d9f7cebfa08f1a3b39b1d0a382aafed75c5ae8273918909335957921305e
+DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B 
fca1d1406874d04eafb64bb4d8730512a6307ba44fb99d76f428ca1bd4a303758e0c3bd8f92a59f7bcf62e5b767c5a8ed239028bdb74ad7a8b62abf88d38c101
 SHA512 
61cbfbe4ff340b75ea8d356e031e932ac03fe65dd00ff897ca4b0185d1d989490daf75ffeaaabb3e92c870c11c7ff8ad2cd6372f5363b3d774b8ecca6d89
 DIST qtwebengine-everywhere-src-6.2.2.tar.xz 369695600 BLAKE2B 
93affc7039e45429060ba35db10131a8873f19fa1188fecf3f28e83afc0e6f25f6ac5b6ad8e3dd6a65216a9e5f7b831ea21b431d652db16d7aff62bb26c365e0
 SHA512 
7bc7a6ada9125d02995a71a962ae464ae3f452e30b409a004aed245c4636af4b6e6736fbeb9349ecc4ecfeec7328ac96bc9193ed53221de322ebc913ea2a833f

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
index 61b7a1f3..c8411e17 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild
@@ -26,8 +26,9 @@ else
inherit git-r3
 fi
 
-# patchset based on https://github.com/chromium-ppc64le releases
-SRC_URI+=" ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz
 )"
+# ppc64 patchset based on https://github.com/chromium-ppc64le releases
+SRC_URI+="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2
+   ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz
 )"
 
 IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio 
+system-ffmpeg +system-icu widgets"
 REQUIRED_USE="designer? ( widgets )"
@@ -104,6 +105,7 @@ PATCHES=(
"${FILESDIR}/${PN}-5.15.2-extra_gn.patch" # downstream, bug 774186
"${FILESDIR}/${PN}-5.15.2_p20210224-chromium-87-v8-icu68.patch" # 
downstream, bug 757606
"${FILESDIR}/${PN}-5.15.2_p20210224-disable-git.patch" # downstream 
snapshot fix
+   "${WORKDIR}/${PN}-5.15.2_p20211019-jumbo-build.patch" # bug 813957
 )
 
 pkg_preinst() {



[gentoo-commits] proj/catalyst:dilfridge-containers commit in: catalyst/base/, containers/config/

2021-12-24 Thread Andreas K. Hüttel
commit: e28156df62eb77b89822e88eba9099a5b1ce229a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Dec 24 23:53:51 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Dec 24 23:56:19 2021 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e28156df

Add some markers in the code for myself

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

 catalyst/base/stagebase.py| 17 +
 containers/config/chroot.toml |  3 ++-
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 4a1b4eb6..a1042182 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -67,6 +67,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 "cflags",
 "common_flags",
 "compression_mode",
+"container",
 "cxxflags",
 "decompressor_search_order",
 "fcflags",
@@ -87,6 +88,9 @@ class StageBase(TargetBase, ClearBase, GenBase):
 self.setup_confdir,
 self.process_repos,
 ]
+
+   # CO-MARK
+   # we need to make self.bind configurable here
 self.build_sequence = [
 self.bind,
 self.chroot_setup,
@@ -139,6 +143,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 else:
 raise CatalystError("Unknown host machine type " + host)
 
+## CO-MARK
 if setarch.get('if_build', '') == platform.machine():
 chroot = f'setarch {setarch["arch"]} chroot'
 else:
@@ -468,6 +473,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 "/tmp/*",
 ]
 
+# CO-MARK
 def set_chroot_path(self):
 """
 NOTE: the trailing slash has been removed
@@ -895,6 +901,9 @@ class StageBase(TargetBase, ClearBase, GenBase):
 env=self.env)
 
 def bind(self):
+# CO-MARK
+# we need to be able to disable this step completely (e.g. bubblewrap, 
qemu-system)
+#
 for x in [x for x in self.mount if self.mount[x]['enable']]:
 if str(self.mount[x]['source']) == 'config':
 raise CatalystError(f'"{x}" bind mount source is not 
configured')
@@ -1012,6 +1021,10 @@ class StageBase(TargetBase, ClearBase, GenBase):
 raise CatalystError('Could not write %s: %s' % (
 normpath(self.settings["chroot_path"] +
  self.settings["make_conf"]), e)) from e
+
+# CO-MARK
+# here we need to copy in additional required files
+
 self.resume.enable("chroot_setup")
 
 def write_make_conf(self, setup=True):
@@ -1165,6 +1178,9 @@ class StageBase(TargetBase, ClearBase, GenBase):
 log.notice("Clearing portage_prefix target: %s", target)
 clear_path(target)
 
+# CO-MARK
+# clean up here additional support files (e.g. /linuxrc)
+
 # Remove hacks that should *never* go into stages
 target = pjoin(self.settings["stage_path"], "etc/portage/patches")
 if os.path.exists(target):
@@ -1353,6 +1369,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 chroot = command('chroot')
 bash = command('bash')
 
+# CO-MARK
 log.notice("Entering chroot")
 try:
 cmd([chroot, self.settings['chroot_path'], bash, '-l'],

diff --git a/containers/config/chroot.toml b/containers/config/chroot.toml
index a766069c..b53d0648 100644
--- a/containers/config/chroot.toml
+++ b/containers/config/chroot.toml
@@ -10,12 +10,13 @@ setup_mounts = true
 # does catalyst have to provide process isolation (i.e. unshare)?
 # setup_namespaces = false
 
-
 # do we need to copy files *beyond* the stage definition specific 
 # ones into the isolated filesystem (e.g. /linuxrc)?
 # support_files =
 
 # do we need to convert the filesystem into an image file and back?
+# note that making catalyst work with an image-based container /
+# emulator will be very, very hard
 setup_image = false
 
 # image pack and unpack commands, if setup_image = true



[gentoo-commits] proj/catalyst:dilfridge-containers commit in: containers/config/

2021-12-24 Thread Andreas K. Hüttel
commit: b8a4d55542002bd83d514a1ffe3aeffca417eb4c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Dec 24 17:05:12 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Dec 24 17:05:12 2021 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b8a4d555

containers: Start with a mock config what we target

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

 containers/config/chroot.toml | 42 ++
 1 file changed, 42 insertions(+)

diff --git a/containers/config/chroot.toml b/containers/config/chroot.toml
new file mode 100644
index ..a766069c
--- /dev/null
+++ b/containers/config/chroot.toml
@@ -0,0 +1,42 @@
+#
+# we always have a section [xxx] where xxx equals the filename
+# this describes properties of all containers using this method
+#
+[chroot]
+
+# does catalyst have to provide bind mounts (e.g. /proc /dev ...)?
+setup_mounts = true
+
+# does catalyst have to provide process isolation (i.e. unshare)?
+# setup_namespaces = false
+
+
+# do we need to copy files *beyond* the stage definition specific 
+# ones into the isolated filesystem (e.g. /linuxrc)?
+# support_files =
+
+# do we need to convert the filesystem into an image file and back?
+setup_image = false
+
+# image pack and unpack commands, if setup_image = true
+#   %c : catalyst support script directory (containers/support)
+#   %D : the root directory of the file system
+#   %F : the filesystem image (i.e., qcow2)
+# image_pack = ...
+# image_unpack = ...
+
+# does catalyst have to call setarch?
+use_setarch = true
+
+# which program call starts up the process?
+#   %c : catalyst support script directory (containers/support)
+#   %D : the root directory of the file system, OR
+#   %F : the filesystem image (i.e., qcow2)
+#   %@ : the command line which is started inside the container
+command = chroot %D %@
+
+
+
+# how precisely further sections should look like is still unclear
+# * maybe subcases: [chroot.linux32]?
+# * maybe stage-specific: [chroot.stage1]?



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

2021-12-24 Thread Sam James
commit: 4e9f81acf8843b3b22a3a640402b0ae2ee1c30af
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 24 23:54:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 24 23:55:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e9f81ac

app-text/ronn-ng: keyword 0.9.1 for hppa, bug #828125

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 app-text/ronn-ng/ronn-ng-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild 
b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
index 4858edf7a04f..d25040770266 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc"
 
 IUSE=""
 



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

2021-12-24 Thread Sam James
commit: d1a44cced8a7ade7db64bbba5dc768eb08bb49b4
Author: Sam James  gentoo  org>
AuthorDate: Fri Dec 24 23:27:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 24 23:55:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1a44cce

dev-lang/crystal: add 1.2.2

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

 dev-lang/crystal/Manifest |   2 +
 dev-lang/crystal/crystal-1.2.2.ebuild | 104 ++
 2 files changed, 106 insertions(+)

diff --git a/dev-lang/crystal/Manifest b/dev-lang/crystal/Manifest
index 73d79d1f5055..318e44303475 100644
--- a/dev-lang/crystal/Manifest
+++ b/dev-lang/crystal/Manifest
@@ -6,3 +6,5 @@ DIST crystal-1.1.1-1-linux-x86_64.tar.gz 27999355 BLAKE2B 
115d9002973d9e0e1ad2ed
 DIST crystal-1.1.1.tar.gz 2477825 BLAKE2B 
4e1b06c831a22447a4d1f065be64b12642ee4b4a75f24b0b73b990944afe6e2a6fca95189b46ea0656b8d13bd7c6a83a23452779b494822803a0264e02b9d4ce
 SHA512 
6e9e977792c863d17ae94aa285a65a453da581a71c3fd9c57cc606ae20813504d675faffa74f78e7c4cf863b6334c4a63ab5356c04fb11d3267dd516e060fe74
 DIST crystal-1.2.1-1-linux-x86_64.tar.gz 28586682 BLAKE2B 
4d7847cdc6263c369de0926055569986cece1302d2251e4b2d25308609e45c0aa3afe7cdfecba3b7909d7568b1e81aafe69f9976a90c8980684a92231cc3857c
 SHA512 
23cfb2389c65202dc70ebadb85cf0390ba2366520fbfd4b7bb0683c5194cd2b5c87b6b4142dd251471ec4146a5c1046ec86bcafa50c66389a41c9cb394ee6f5d
 DIST crystal-1.2.1.tar.gz 2618956 BLAKE2B 
e9ffd8b9114af419ee433093066dcf69f86e2f3293a6eeafee20f00c982dcd78774b3faf64d1e2568ba3141e24ef751cb2b5e0b2a2c57dac92d0039e6e224971
 SHA512 
a6acfac36a8a0d93e39947f2e35238f9cfc43485994fd6caf102f1d62ebc4d71d13d96801e998dbbff9541b76a8eb4fade7b998b179807ed49c1c338207a4720
+DIST crystal-1.2.2-1-linux-x86_64.tar.gz 28611412 BLAKE2B 
95593120b00b09b0a250917cbfd0841a77ead5e768ad483a900452678be5b231408017c4ac668df4de675612a008a385ed0dbf6ea216aec0343f8b5e8ede3e98
 SHA512 
7fdb247074723f52f8dfb9d2e18eef1ceb6fcf595bd12ec7304eb292716c4462ee34d2d87eac56302053dd4d8cd2beccde3dc5bfa3c75e6e832813afecfadcde
+DIST crystal-1.2.2.tar.gz 2621720 BLAKE2B 
abd196aab8d874e7a26116b92b046893c5f03d3ad7a28902fd2bbc3fe8e801f4c5d6766397583864bc3b7642f5c508e7ea0beb82661f87943c8a9914e014e71b
 SHA512 
855f9c103f05d1ebb03d146d93362849a15ea67a64c993219f7c66438585b590caa53a9482daf81810920b39795c9f5c3e2a0caf316b3d62826e2540fd5fb60e

diff --git a/dev-lang/crystal/crystal-1.2.2.ebuild 
b/dev-lang/crystal/crystal-1.2.2.ebuild
new file mode 100644
index ..6e531f8dcf46
--- /dev/null
+++ b/dev-lang/crystal/crystal-1.2.2.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LLVM_MAX_SLOT=13
+inherit bash-completion-r1 llvm multiprocessing toolchain-funcs
+
+BV=${PV}-1
+BV_AMD64=${BV}-linux-x86_64
+
+DESCRIPTION="The Crystal Programming Language"
+HOMEPAGE="https://crystal-lang.org;
+SRC_URI="https://github.com/crystal-lang/crystal/archive/${PV}.tar.gz -> 
${P}.tar.gz
+   amd64? ( 
https://github.com/crystal-lang/crystal/releases/download/${BV/-*}/crystal-${BV_AMD64}.tar.gz
 )"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc debug llvm-libunwind"
+
+# Upstream test suite not reliable
+RESTRICT=test
+
+DEPEND="
+   dev-libs/boehm-gc[static-libs,threads]
+   dev-libs/gmp:=
+   dev-libs/libatomic_ops
+   dev-libs/libevent
+   dev-libs/libpcre
+   dev-libs/pcl:=
+   

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/kramdown/

2021-12-24 Thread Sam James
commit: a9b9e4adde8e39f301cbcfd746e541382c81383b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 24 23:53:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 24 23:55:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9b9e4ad

dev-ruby/kramdown: keyword 2.3.1-r1 for hppa, bug #828125

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-ruby/kramdown/kramdown-2.3.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/kramdown/kramdown-2.3.1-r1.ebuild 
b/dev-ruby/kramdown/kramdown-2.3.1-r1.ebuild
index 0823e197d546..41edbe1a022c 100644
--- a/dev-ruby/kramdown/kramdown-2.3.1-r1.ebuild
+++ b/dev-ruby/kramdown/kramdown-2.3.1-r1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://kramdown.gettalong.org/;
 LICENSE="MIT"
 
 SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc"
 IUSE="latex"
 
 LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra 
)"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-power_assert/

2021-12-24 Thread Sam James
commit: 16f6cb7f134552b5b9f2b9a05f00e04b419dd235
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 24 23:25:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 24 23:55:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f6cb7f

dev-ruby/minitest-power_assert: keyword 0.3.1 for hppa, bug #828125

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-ruby/minitest-power_assert/minitest-power_assert-0.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-power_assert/minitest-power_assert-0.3.1.ebuild 
b/dev-ruby/minitest-power_assert/minitest-power_assert-0.3.1.ebuild
index 713228ccc22b..1bb2220cc12d 100644
--- a/dev-ruby/minitest-power_assert/minitest-power_assert-0.3.1.ebuild
+++ b/dev-ruby/minitest-power_assert/minitest-power_assert-0.3.1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/hsbt/minitest-power_assert;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
 IUSE=""
 
 ruby_add_rdepend "



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/rouge/

2021-12-24 Thread Sam James
commit: 784d7a5806e834536701242430aa862d6dac7059
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Fri Dec 24 23:51:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Dec 24 23:55:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=784d7a58

dev-ruby/rouge: keyword 3.26.1 for hppa, bug #828125

Package-Manager: Portage-3.0.28, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-ruby/rouge/rouge-3.26.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rouge/rouge-3.26.1.ebuild 
b/dev-ruby/rouge/rouge-3.26.1.ebuild
index 6b510c11b4fc..ed8b79f76129 100644
--- a/dev-ruby/rouge/rouge-3.26.1.ebuild
+++ b/dev-ruby/rouge/rouge-3.26.1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 LICENSE="MIT"
 
 SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE=""
 
 ruby_add_bdepend "doc? ( dev-ruby/redcarpet )



[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebengine/files/, dev-qt/qtwebengine/

2021-12-24 Thread Andreas Sturmlechner
commit: cce023e39dd7138573d426d5d407a17dde3986f0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Dec 24 23:32:55 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Dec 24 23:32:55 2021 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=cce023e3

dev-qt/qtwebengine: Drop obsolete patches

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../files/qtwebengine-5.15.2_p20210521-gcc11.patch | 74 --
 ...ne-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch | 72 -
 ...gine-5.15.2_p20210824-breakpad-glibc-2.34.patch | 72 -
 dev-qt/qtwebengine/qtwebengine-5.15.2..ebuild  |  3 -
 4 files changed, 221 deletions(-)

diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-gcc11.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-gcc11.patch
deleted file mode 100644
index 0014ec13..
--- a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210521-gcc11.patch
+++ /dev/null
@@ -1,74 +0,0 @@
-diff --git 
a/src/3rdparty/chromium/third_party/angle/src/libANGLE/HandleAllocator.cpp 
b/src/3rdparty/chromium/third_party/angle/src/libANGLE/HandleAllocator.cpp
-index 013f1dfb2..3ce63c192 100644
 a/src/3rdparty/chromium/third_party/angle/src/libANGLE/HandleAllocator.cpp
-+++ b/src/3rdparty/chromium/third_party/angle/src/libANGLE/HandleAllocator.cpp
-@@ -9,6 +9,7 @@
- 
- #include "libANGLE/HandleAllocator.h"
- 
-+#include 
- #include 
- #include 
- 
-diff --git 
a/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_atk_hyperlink.cc 
b/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_atk_hyperlink.cc
-index be91def6b..73f202356 100644
 
a/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_atk_hyperlink.cc
-+++ 
b/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_atk_hyperlink.cc
-@@ -245,7 +245,7 @@ static void 
AXPlatformAtkHyperlinkInit(AXPlatformAtkHyperlink* self, gpointer) {
- }
- 
- GType ax_platform_atk_hyperlink_get_type() {
--  static volatile gsize type_volatile = 0;
-+  static gsize type_volatile = 0;
- 
-   AXPlatformNodeAuraLinux::EnsureGTypeInit();
- 
-diff --git 
a/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_node_auralinux.cc 
b/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_node_auralinux.cc
-index 04125c6fd..6c64e5d8e 100644
 
a/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_node_auralinux.cc
-+++ 
b/src/3rdparty/chromium/ui/accessibility/platform/ax_platform_node_auralinux.cc
-@@ -2274,7 +2274,7 @@ void ClassInit(gpointer class_pointer, gpointer /* 
class_data */) {
- GType GetType() {
-   AXPlatformNodeAuraLinux::EnsureGTypeInit();
- 
--  static volatile gsize type_volatile = 0;
-+  static gsize type_volatile = 0;
-   if (g_once_init_enter(_volatile)) {
- static const GTypeInfo type_info = {
- sizeof(AXPlatformNodeAuraLinuxClass),  // class_size
-diff --git a/src/3rdparty/chromium/ui/gtk/gtk_key_bindings_handler.cc 
b/src/3rdparty/chromium/ui/gtk/gtk_key_bindings_handler.cc
-index c663a2074..38a342484 100644
 a/src/3rdparty/chromium/ui/gtk/gtk_key_bindings_handler.cc
-+++ b/src/3rdparty/chromium/ui/gtk/gtk_key_bindings_handler.cc
-@@ -141,7 +141,7 @@ void GtkKeyBindingsHandler::HandlerClassInit(HandlerClass* 
klass) {
- }
- 
- GType GtkKeyBindingsHandler::HandlerGetType() {
--  static volatile gsize type_id_volatile = 0;
-+  static gsize type_id_volatile = 0;
-   if (g_once_init_enter(_id_volatile)) {
- GType type_id = g_type_register_static_simple(
- GTK_TYPE_TEXT_VIEW, g_intern_static_string("GtkKeyBindingsHandler"),
 
a/src/3rdparty/chromium/components/bookmarks/browser/bookmark_expanded_state_tracker.cc
-+++ 
b/src/3rdparty/chromium/components/bookmarks/browser/bookmark_expanded_state_tracker.cc
-@@ -2,6 +2,7 @@
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file.
- 
-+#include 
- #include "components/bookmarks/browser/bookmark_expanded_state_tracker.h"
- 
- #include 
-diff --git 
a/src/3rdparty/chromium/components/bookmarks/browser/base_bookmark_model_observer.cc
 
b/src/3rdparty/chromium/components/bookmarks/browser/base_bookmark_model_observer.cc
-index 657a3c96b..ad641a082 100644
 
a/src/3rdparty/chromium/components/bookmarks/browser/base_bookmark_model_observer.cc
-+++ 
b/src/3rdparty/chromium/components/bookmarks/browser/base_bookmark_model_observer.cc
-@@ -2,6 +2,8 @@
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file.
- 
-+#include 
-+
- #include "components/bookmarks/browser/base_bookmark_model_observer.h"
- 
- namespace bookmarks {

diff --git 
a/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch
 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2_p20210824-abseil-cpp-glibc-2.34.patch
deleted file mode 100644
index dfaa634b..
--- 

  1   2   3   4   >