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

2021-12-13 Thread Georgy Yakovlev
commit: 3201ae7ca56675d8114f7c688a316f7d2c38141c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Dec 14 07:34:07 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Dec 14 07:35:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3201ae7c

sys-kernel/gentoo-kernel: add vmlinux to QA_FLAGS_IGNORED

usr/src/linux-.*/vmlinux is a kernel on ppc64 platforms

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

 sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild | 5 -
 sys-kernel/gentoo-kernel/gentoo-kernel-5.15.7.ebuild  | 5 -
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild
index db5fa6be46e5..f6aaaf8f19ab 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild
@@ -50,7 +50,10 @@ BDEPEND="
 PDEPEND="
>=virtual/dist-kernel-${PV}"
 
-QA_FLAGS_IGNORED="usr/src/linux-.*/scripts/gcc-plugins/.*.so"
+QA_FLAGS_IGNORED="
+   usr/src/linux-.*/scripts/gcc-plugins/.*.so
+   usr/src/linux-.*/vmlinux
+"
 
 src_prepare() {
local PATCHES=(

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.7.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.7.ebuild
index afdca0ba9373..867935604206 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.7.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.15.7.ebuild
@@ -49,7 +49,10 @@ BDEPEND="
 PDEPEND="
>=virtual/dist-kernel-${PV}"
 
-QA_FLAGS_IGNORED="usr/src/linux-.*/scripts/gcc-plugins/.*.so"
+QA_FLAGS_IGNORED="
+   usr/src/linux-.*/scripts/gcc-plugins/.*.so
+   usr/src/linux-.*/vmlinux
+"
 
 src_prepare() {
local PATCHES=(



[gentoo-commits] repo/gentoo:master commit in: dev-ada/langkit/

2021-12-13 Thread Alfredo Tupone
commit: 6c8d8a66b233b67c58ce94f91175061ee6d9bd70
Author: Alfredo Tupone  gentoo  org>
AuthorDate: Tue Dec 14 07:18:58 2021 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Tue Dec 14 07:18:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c8d8a66

dev-ada/langkit: add USE static-libs & static-pic

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

 dev-ada/langkit/langkit-22.0.0-r2.ebuild | 84 
 dev-ada/langkit/metadata.xml |  4 ++
 2 files changed, 88 insertions(+)

diff --git a/dev-ada/langkit/langkit-22.0.0-r2.ebuild 
b/dev-ada/langkit/langkit-22.0.0-r2.ebuild
new file mode 100644
index ..ac883ef76f9f
--- /dev/null
+++ b/dev-ada/langkit/langkit-22.0.0-r2.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8,9} )
+
+DISTUTILS_USE_SETUPTOOLS=no
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="A Python framework to generate language parsers"
+HOMEPAGE="https://www.adacore.com/community;
+SRC_URI="https://github.com/AdaCore/${PN}/archive/refs/tags/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+shared static-libs static-pic"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-ada/gnatcoll-bindings[iconv,shared?,static-libs?,static-pic?]
+   dev-python/mako[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/funcy[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-ada/e3-core[${PYTHON_USEDEP}]"
+BDEPEND="${RDEPEND}"
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+   cd testsuite/tests
+
+   # missing gprbuild option to build libraries static/relocatable
+   rm -r {langkit_support,adalog,misc/link_two_libs} || die
+
+   # require railroad-diagrams
+   rm -r contrib/svg_railroad_diagrams || die
+}
+
+python_compile_all() {
+   build () {
+   gprbuild -j$(makeopts_jobs) -p -v \
+   -XLIBRARY_TYPE=$1 -P support/langkit_support.gpr 
-XBUILD_MODE=dev \
+   -cargs:Ada ${ADAFLAGS} -cargs:C ${CFLAGS} || die 
"gprbuild failed"
+   }
+   if use shared; then
+   build relocatable
+   fi
+   if use static-libs; then
+   build static
+   fi
+   if use static-pic; then
+   build static-pic
+   fi
+}
+
+python_test_all() {
+   ${EPYTHON} ./manage.py make --no-langkit-support || die
+   eval $(./manage.py setenv)
+   ${EPYTHON} ./manage.py test --verbose |& tee langkit.testOut
+   grep -qw FAIL langkit.testOut && die
+}
+
+python_install_all() {
+   build () {
+   gprinstall -v -P support/langkit_support.gpr -p 
-XBUILD_MODE=dev \
+   --prefix="${D}"/usr --build-var=LIBRARY_TYPE \
+   --build-var=LANGKIT_SUPPORT_LIBRARY_TYPE \
+   --sources-subdir=include/langkit_support \
+   -XLIBRARY_TYPE=$1 --build-name=$1 || die
+   }
+   if use shared; then
+   build relocatable
+   fi
+   if use static-libs; then
+   build static
+   fi
+   if use static-pic; then
+   build static-pic
+   fi
+}

diff --git a/dev-ada/langkit/metadata.xml b/dev-ada/langkit/metadata.xml
index 1d15b41d3ff8..09df5e8fc04c 100644
--- a/dev-ada/langkit/metadata.xml
+++ b/dev-ada/langkit/metadata.xml
@@ -4,6 +4,10 @@

a...@gentoo.org

+   
+   Build shared library
+   Build static library with pic 
code
+   

Langkit (nickname for language kit) is a tool whose purpose is 
to make
it easy to create syntactic and semantic analysis engines. 
Write a



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

2021-12-13 Thread Michał Górny
commit: 46f2d2fe3742e6fa0840880835d0d89df2f79c35
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Dec 13 20:33:03 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 14 07:08:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f2d2fe

dev-python/bandit: Remove old

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

 dev-python/bandit/Manifest|  1 -
 dev-python/bandit/bandit-1.7.0.ebuild | 49 ---
 2 files changed, 50 deletions(-)

diff --git a/dev-python/bandit/Manifest b/dev-python/bandit/Manifest
index 96c5a71f5342..4c4d06db5849 100644
--- a/dev-python/bandit/Manifest
+++ b/dev-python/bandit/Manifest
@@ -1,2 +1 @@
-DIST bandit-1.7.0.tar.gz 506225 BLAKE2B 
6e2383576b2091ab98757381bfd5915331fc7b08a251e817a6964d963de60b070f7c4dc7958dd366cf95333f4abc157e80433490ab8b923580cb45d855c13092
 SHA512 
c51af7ab4c667c376a11f142fa35881a776d420bd3ef41421bd29a713e0b56bbf1622e24cd878e24f57594f03d06b7c2b8258fcf34f57e3a68df4200a34becdc
 DIST bandit-1.7.1.tar.gz 503072 BLAKE2B 
1e88b662d8dda0d5c1a1fd7ee2eaa1787b8c4952acefb60c347aa98b3534d9ba212229b050dcf717169fb39132ef77d2d92af834392a0bcaa0b9fbc7d2a4804c
 SHA512 
6543bb0f69339a8d970cf0dd1bcec1392057c5c7fbf229fa4f4e6c9d21a39206f1f3fa17509ca2038cd1671d4b57316f92ee053c1beab102e8d20096d10b685d

diff --git a/dev-python/bandit/bandit-1.7.0.ebuild 
b/dev-python/bandit/bandit-1.7.0.ebuild
deleted file mode 100644
index c30765e91f50..
--- a/dev-python/bandit/bandit-1.7.0.ebuild
+++ /dev/null
@@ -1,49 +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
-
-DESCRIPTION="A security linter from OpenStack Security"
-HOMEPAGE="https://github.com/PyCQA/bandit;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~s390 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/coverage-4.5.4[${PYTHON_USEDEP}]
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/hacking-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/mock-3.0.5[${PYTHON_USEDEP}]
-   >=dev-python/stestr-2.5.0
-   >=dev-python/testscenarios-0.5.0[${PYTHON_USEDEP}]
-   >=dev-python/testtools-2.3.0[${PYTHON_USEDEP}]
-   >=dev-python/beautifulsoup4-4.8.0[${PYTHON_USEDEP}]
-   >=dev-python/pylint-1.9.4[${PYTHON_USEDEP}]
-   )"
-RDEPEND="
-   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/GitPython-1.0.1[${PYTHON_USEDEP}]
-   >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]"
-
-src_prepare() {
-   sed -i 's/yaml.load/yaml.safe_load/g' 
tests/unit/formatters/test_yaml.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   distutils_install_for_testing
-   stestr init
-   stestr run || die
-}



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

2021-12-13 Thread Sam James
commit: 0167861df501bb6ee289138253bf1c66f7c183e1
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 07:07:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 07:07:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0167861d

dev-perl/RPC-XML: stabilize 0.800.0 for x86

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

 dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild 
b/dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild
index 90f2ade1ff82..b2e4b975f562 100644
--- a/dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild
+++ b/dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="An implementation of XML-RPC"
 
 SLOT="0"
 LICENSE="|| ( Artistic-2 LGPL-2.1 )"
-KEYWORDS="amd64 ppc ~x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-12-13 Thread Hans de Graaff
commit: dca4135de510c85d8cac7c2221d01a149482a6a8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 14 06:55:51 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 14 06:55:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca4135d

dev-ruby/hiera: add 3.8.0

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

 dev-ruby/hiera/Manifest   |  1 +
 dev-ruby/hiera/hiera-3.8.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ruby/hiera/Manifest b/dev-ruby/hiera/Manifest
index 69b11f40e398..9821e515d55b 100644
--- a/dev-ruby/hiera/Manifest
+++ b/dev-ruby/hiera/Manifest
@@ -1,2 +1,3 @@
 DIST hiera-3.6.0.gem 40960 BLAKE2B 
1e49499ac5841d5fae884ffaf7ba7c72c55e3c04ee3023b2bee3e68e29d4827825e23ed4bb4a929d6337a1ff1d19dd1fbcad329495604c3171c3ab900e21b607
 SHA512 
6d76845e23732875c461d5b2df8599953f067ec84ea6648044e91822fea762118a108136e43ea9b7112511939978052f846d94e895b2b8f669df607fc90afbd0
 DIST hiera-3.7.0.gem 40960 BLAKE2B 
2cec1e8df126da1ca3e46015192cdd428b595084461d5bca92ad561ba7e3b2be5d6837b3565031f174b5ce7fc32f80e288ed12dd3d3cd5d9f3a369b7f2cc6dae
 SHA512 
583da6eb8fb30f9b1029861c7e539fa0e766bd3c4de06715225975d24e46f18cfea9b80f7e4f65535d22ae9bed70c29f999c160fe131aa0897dd70e61681d1b8
+DIST hiera-3.8.0.gem 40960 BLAKE2B 
b368ef92bca06081c99ec7e1a1e04b69f3c1cae285fcb17f9d1b89683fd679b037d2ef26af6912a776d73d3a553a8323c6820482383065927245898c9e78daa1
 SHA512 
0aa8d306cce33760eee9ca702f6d1f8a0137c551321c7553a25644a4097b8539945d5432e94ff83ed9c3392603dc962b33ab1e1702ed1ab5699d3ef179de9379

diff --git a/dev-ruby/hiera/hiera-3.8.0.ebuild 
b/dev-ruby/hiera/hiera-3.8.0.ebuild
new file mode 100644
index ..195450655c61
--- /dev/null
+++ b/dev-ruby/hiera/hiera-3.8.0.ebuild
@@ -0,0 +1,24 @@
+# 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_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A simple pluggable Hierarchical Database"
+HOMEPAGE="https://docs.puppet.com/hiera/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+ruby_add_bdepend "test? ( dev-ruby/mocha )"
+
+ruby_add_rdepend "dev-ruby/deep_merge"



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

2021-12-13 Thread Hans de Graaff
commit: f2ba3c5a939bf07674343891a4456f440d8aaa67
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 14 06:54:23 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 14 06:54:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ba3c5a

dev-ruby/css_parser: add 1.11.0

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

 dev-ruby/css_parser/Manifest |  1 +
 dev-ruby/css_parser/css_parser-1.11.0.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-ruby/css_parser/Manifest b/dev-ruby/css_parser/Manifest
index b8c5470ac5b1..9368d2574cfa 100644
--- a/dev-ruby/css_parser/Manifest
+++ b/dev-ruby/css_parser/Manifest
@@ -1,3 +1,4 @@
 DIST css_parser-1.10.0.tar.gz 38843 BLAKE2B 
8b611a270791e0f1e0b69d4ab0df3c119fc3f2631a7bcebab1030939e61d2799acfce0ca9f9b634d813c47c13a6c698f9449918fab1cdfb5aa4b14674b749c3f
 SHA512 
979855df651ab56da5736f6646f4b4f0be5718899c4f81ae514299566e874d2f7b414d87616e5fba7390730bba1f20966e01641a47dc2cbb3e20fd7536f38580
+DIST css_parser-1.11.0.tar.gz 38987 BLAKE2B 
e3420b635a7604dee4ca4c5f434dc3a8f3caf27310fb8d1a947e8d6aedb47e1130846afbe989f9d2c9c52b1db9e1266849fec09253c243a1f28a3bcb6ea58785
 SHA512 
9dfc1aff7f05dca82a10504c6e1c42011385e17db5f43faa5c83a2c2226b2f7a524fc626c6f7ce69e49d1919a6fc12baed35823d0da07940d41804bd1590ba50
 DIST css_parser-1.7.1.tar.gz 33667 BLAKE2B 
5732461958bb3abe7578c3898bd80c601fc957c38b3feda5092d89c4419cd64f0c6e4be296919c07bea5e9082cb03f32bfe9255244b56206caa7bab8e1a29765
 SHA512 
f1dba16fa18362e1b58d463a1f718c4c981170f3a7b0b719e5a309b74decded063cd3631540a4b76c1d78e5cfa92a35b56130979d7724d745eacdc372c69dd9b
 DIST css_parser-1.9.0.tar.gz 38201 BLAKE2B 
6d2042429f7347613b14649e7c205e88a26dec9759a1634a3805e79e3f8599ab6b1ab2c4283dee631476e16580f447c08cd41327a62c813eb006a7e435787f9e
 SHA512 
79ff06b471298f2fe82b096703c828122f1ae778b71fcac3f2eea1e243145729d3871c21eb1714777a2648ba91d05b9b973691b5ff41b2361eecb4170d3a2601

diff --git a/dev-ruby/css_parser/css_parser-1.11.0.ebuild 
b/dev-ruby/css_parser/css_parser-1.11.0.ebuild
new file mode 100644
index ..e2ae1feb1af3
--- /dev/null
+++ b/dev-ruby/css_parser/css_parser-1.11.0.ebuild
@@ -0,0 +1,43 @@
+# 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_DOC_DIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md "
+RUBY_FAKEGEM_TASK_TEST=""
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+GITHUB_USER="premailer"
+GITHUB_PROJECT="${PN}"
+inherit ruby-fakegem
+
+DESCRIPTION="Sass-based Stylesheet Framework"
+HOMEPAGE="https://github.com/premailer/css_parser/;
+LICENSE="MIT"
+
+SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz
 -> ${GITHUB_PROJECT}-${PV}.tar.gz"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="doc test"
+
+ruby_add_rdepend "dev-ruby/addressable
+   virtual/ruby-ssl"
+
+ruby_add_bdepend "test? ( dev-ruby/maxitest )"
+
+all_ruby_prepare() {
+   # get rid of bundler usage
+   rm Gemfile || die
+   sed -i -e '/bundler/d' -e '/bump/d' Rakefile || die
+   sed -i -e '/bundler/d' test/test_helper.rb || die
+   # Avoid tests using the network.
+   sed -i -e '/test_loading_a_remote_file_over_ssl/,/end/ s:^:#:' 
test/test_css_parser_loading.rb || die
+
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib test/*.rb || die
+}



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

2021-12-13 Thread Hans de Graaff
commit: 0d85e853df509897e6fe5ade3e1f38104d9e1f0b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Dec 14 06:54:58 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Dec 14 06:54:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d85e853

dev-ruby/css_parser: cleanup

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

 dev-ruby/css_parser/Manifest|  1 -
 dev-ruby/css_parser/css_parser-1.7.1.ebuild | 43 -
 2 files changed, 44 deletions(-)

diff --git a/dev-ruby/css_parser/Manifest b/dev-ruby/css_parser/Manifest
index 9368d2574cfa..f2995e901e08 100644
--- a/dev-ruby/css_parser/Manifest
+++ b/dev-ruby/css_parser/Manifest
@@ -1,4 +1,3 @@
 DIST css_parser-1.10.0.tar.gz 38843 BLAKE2B 
8b611a270791e0f1e0b69d4ab0df3c119fc3f2631a7bcebab1030939e61d2799acfce0ca9f9b634d813c47c13a6c698f9449918fab1cdfb5aa4b14674b749c3f
 SHA512 
979855df651ab56da5736f6646f4b4f0be5718899c4f81ae514299566e874d2f7b414d87616e5fba7390730bba1f20966e01641a47dc2cbb3e20fd7536f38580
 DIST css_parser-1.11.0.tar.gz 38987 BLAKE2B 
e3420b635a7604dee4ca4c5f434dc3a8f3caf27310fb8d1a947e8d6aedb47e1130846afbe989f9d2c9c52b1db9e1266849fec09253c243a1f28a3bcb6ea58785
 SHA512 
9dfc1aff7f05dca82a10504c6e1c42011385e17db5f43faa5c83a2c2226b2f7a524fc626c6f7ce69e49d1919a6fc12baed35823d0da07940d41804bd1590ba50
-DIST css_parser-1.7.1.tar.gz 33667 BLAKE2B 
5732461958bb3abe7578c3898bd80c601fc957c38b3feda5092d89c4419cd64f0c6e4be296919c07bea5e9082cb03f32bfe9255244b56206caa7bab8e1a29765
 SHA512 
f1dba16fa18362e1b58d463a1f718c4c981170f3a7b0b719e5a309b74decded063cd3631540a4b76c1d78e5cfa92a35b56130979d7724d745eacdc372c69dd9b
 DIST css_parser-1.9.0.tar.gz 38201 BLAKE2B 
6d2042429f7347613b14649e7c205e88a26dec9759a1634a3805e79e3f8599ab6b1ab2c4283dee631476e16580f447c08cd41327a62c813eb006a7e435787f9e
 SHA512 
79ff06b471298f2fe82b096703c828122f1ae778b71fcac3f2eea1e243145729d3871c21eb1714777a2648ba91d05b9b973691b5ff41b2361eecb4170d3a2601

diff --git a/dev-ruby/css_parser/css_parser-1.7.1.ebuild 
b/dev-ruby/css_parser/css_parser-1.7.1.ebuild
deleted file mode 100644
index 579238d3defe..
--- a/dev-ruby/css_parser/css_parser-1.7.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_DOC_DIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md "
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-GITHUB_USER="premailer"
-GITHUB_PROJECT="${PN}"
-inherit ruby-fakegem
-
-DESCRIPTION="Sass-based Stylesheet Framework"
-HOMEPAGE="https://github.com/premailer/css_parser/;
-LICENSE="MIT"
-
-SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_PROJECT}/archive/v${PV}.tar.gz
 -> ${GITHUB_PROJECT}-${PV}.tar.gz"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc test"
-
-ruby_add_rdepend "dev-ruby/addressable
-   virtual/ruby-ssl"
-
-ruby_add_bdepend "test? ( dev-ruby/maxitest )"
-
-all_ruby_prepare() {
-   # get rid of bundler usage
-   rm Gemfile || die
-   sed -i -e '/bundler/d' -e '/bump/d' Rakefile || die
-   sed -i -e '/bundler/d' test/test_helper.rb || die
-   # Avoid tests using the network.
-   sed -i -e '/test_loading_a_remote_file_over_ssl/,/end/ s:^:#:' 
test/test_css_parser_loading.rb || die
-
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib test/*.rb || die
-}



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

2021-12-13 Thread Sam James
commit: b182ad9ddb367237b726085f89d9db0bfe8b7277
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 06:46:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 06:46:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b182ad9d

dev-perl/XML-Parser: adjust einfo quoting

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

 dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild 
b/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
index 3399aa644cb6..6ea85475b3fd 100644
--- a/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
+++ b/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
@@ -37,7 +37,7 @@ src_configure() {
 src_install() {
perl-module_src_install
 
-   # "special" test for bug 827966
-   einfo Checking for Expat.so \#827966
+   # "special" test for bug #827966
+   einfo "Checking for Expat.so (bug #827966)"
find "${D}" -name Expat.so | grep Expat || die "Something went badly 
wrong, can't find Expat.so. Please file a bug."
 }



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

2021-12-13 Thread Sam James
commit: bc89e9852b2fc28dc40e0ed8c2e9ff42cc74b3ec
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 06:45:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 06:45:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc89e985

dev-perl/XML-Parser: use ESYSROOT for finding Expat

Not that it should make any difference to the bug, but still. This is
more correct for --root and such.

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

 dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild 
b/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
index 0e7e8c4930ae..3399aa644cb6 100644
--- a/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
+++ b/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
@@ -30,7 +30,7 @@ src_prepare() {
 }
 
 src_configure() {
-   myconf="EXPATLIBPATH=${EPREFIX}/usr/$(get_libdir) 
EXPATINCPATH=${EPREFIX}/usr/include"
+   myconf="EXPATLIBPATH=${ESYSROOT}/usr/$(get_libdir) 
EXPATINCPATH=${ESYSROOT}/usr/include"
perl-module_src_configure
 }
 



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

2021-12-13 Thread Sam James
commit: b70e6f910846d25635a6d0e88686ce2144842f02
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 06:42:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 06:44:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70e6f91

dev-perl/RPC-XML: Revert "Remove old", drop 0.820.0 back to ~arch

This reverts commit ed0ac19462a2943678f6e67082f45c75ef10af4d.

Restore older for now so we can keep older XML-Parser
while we investigate issues w/ it and Expat.

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

 dev-perl/RPC-XML/Manifest  |  1 +
 ...C-XML-0.820.0.ebuild => RPC-XML-0.800.0.ebuild} | 31 +-
 dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild|  2 +-
 3 files changed, 15 insertions(+), 19 deletions(-)

diff --git a/dev-perl/RPC-XML/Manifest b/dev-perl/RPC-XML/Manifest
index f897b567eb31..b2c4efa1e906 100644
--- a/dev-perl/RPC-XML/Manifest
+++ b/dev-perl/RPC-XML/Manifest
@@ -1 +1,2 @@
+DIST RPC-XML-0.80.tar.gz 211223 BLAKE2B 
e26ba4f667c227e84362ca8e09d17ee01ef45c25902e7bc433bc4a81facacfc6163fc06ddd20a08399131faf18daa97f0f1a173043147f2d5046424c6e3087d3
 SHA512 
a91586ea903b3e633f85ca8d9048181a7c3aedcff6788c7ae5fb4971e8552c421c86f30254517c25caa35f1991146dcceb34301bb49002e4ec75a2ee9c195992
 DIST RPC-XML-0.82.tar.gz 225690 BLAKE2B 
4e16730a5bda313d43b00eaa8617e009a157867f286f17afb58693beb881ac2329ebee93d98c44c8742be2608998c1d2e0cc4f323be83ae9c5e9041c5bf90b3c
 SHA512 
e5d1092a2807c2bd423502dd2ed53a72c57384b67bb4709e86a64a6fe37ce8af580998e62fcfa6a48d66d5308d9dc270c74e4293617b9f23a654e379cde4025f

diff --git a/dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild 
b/dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild
similarity index 73%
copy from dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild
copy to dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild
index c6b534d0c768..90f2ade1ff82 100644
--- a/dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild
+++ b/dev-perl/RPC-XML/RPC-XML-0.800.0.ebuild
@@ -1,10 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=6
 
 DIST_AUTHOR=RJRAY
-DIST_VERSION=0.82
+DIST_VERSION=0.80
 DIST_EXAMPLES=( "ex/*.xpl" )
 inherit perl-module
 
@@ -12,31 +12,26 @@ DESCRIPTION="An implementation of XML-RPC"
 
 SLOT="0"
 LICENSE="|| ( Artistic-2 LGPL-2.1 )"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="amd64 ppc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="
-   virtual/perl-Carp
-   >=dev-perl/HTTP-Daemon-6.120.0
-   >=dev-perl/HTTP-Message-6.260.0
-   >=dev-perl/libwww-perl-6.510.0
-   >=virtual/perl-Module-Load-0.360.0
-   >=virtual/perl-Scalar-List-Utils-1.550.0
-   >=dev-perl/XML-Parser-2.460.0
+   >=virtual/perl-File-Spec-0.800.0
+   >=dev-perl/libwww-perl-5.834.0
+   >=virtual/perl-Module-Load-0.240.0
+   >=virtual/perl-Scalar-List-Utils-1.200.0
+   >=dev-perl/XML-LibXML-1.850.0
+   >=dev-perl/XML-Parser-2.310.0
 "
-BDEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-7.560.0
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
test? (
-   virtual/perl-IO-Socket-IP
-   dev-perl/Net-Server
-   >=virtual/perl-Test-Simple-1.302.183
+   dev-perl/HTTP-Daemon
+   >=virtual/perl-Test-Simple-0.940.0
)
 "
 
-# tests seem to be a bit flaky
-DIST_TEST=do
-
 src_compile() {
perl-module_src_compile
if use examples; then

diff --git a/dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild 
b/dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild
index c6b534d0c768..d58d5f0bd422 100644
--- a/dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild
+++ b/dev-perl/RPC-XML/RPC-XML-0.820.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="An implementation of XML-RPC"
 
 SLOT="0"
 LICENSE="|| ( Artistic-2 LGPL-2.1 )"
-KEYWORDS="amd64 ppc x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-12-13 Thread Sam James
commit: 7806a56fa19fc06e8b9cdd33c9e47df9e1a0077a
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 06:40:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 06:42:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7806a56f

dev-perl/XML-Parser: use system copy of Devel::CheckLib (fix Expat search)

The bundled, rather old copy of Devel::CheckLib seems to sometimes cause
errors when trying to find Expat.

Bug: https://github.com/toddr/XML-Parser/issues/93
Bug: https://bugs.gentoo.org/827966
Bug: https://github.com/toddr/XML-Parser/issues/86
Signed-off-by: Sam James  gentoo.org>

 ...-Parser-2.460.0-r1.ebuild => XML-Parser-2.460.0-r2.ebuild} | 11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild 
b/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
similarity index 83%
rename from dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild
rename to dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
index 674a1ddb048e..0e7e8c4930ae 100644
--- a/dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild
+++ b/dev-perl/XML-Parser/XML-Parser-2.460.0-r2.ebuild
@@ -18,7 +18,16 @@ RDEPEND="
dev-perl/libwww-perl
 "
 DEPEND="${RDEPEND}"
-BDEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}
+   dev-perl/Devel-CheckLib"
+
+src_prepare() {
+   default
+
+   # Drop bundled CheckLib which breaks Expat detection
+   # bug #827966
+   rm inc/Devel/CheckLib.pm || die
+}
 
 src_configure() {
myconf="EXPATLIBPATH=${EPREFIX}/usr/$(get_libdir) 
EXPATINCPATH=${EPREFIX}/usr/include"



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

2021-12-13 Thread Sam James
commit: db40847290102119b36c3d2fe379f01267cda109
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 06:21:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 06:21:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db408472

dev-perl/XML-Parser: restore 2.440.0

This reverts commit d9e7940f92101dfc97efd94d6c60a45a17c4c234.

Let users downgrade / mask a newer version if they want
to for now while we investigate issues with the newer
version.

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

 dev-perl/XML-Parser/Manifest  |  1 +
 dev-perl/XML-Parser/XML-Parser-2.440.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/XML-Parser/Manifest b/dev-perl/XML-Parser/Manifest
index d8458205f03d..ddc482776f3f 100644
--- a/dev-perl/XML-Parser/Manifest
+++ b/dev-perl/XML-Parser/Manifest
@@ -1 +1,2 @@
+DIST XML-Parser-2.44.tar.gz 237377 BLAKE2B 
3d45053b98ef6944122fc4e61a8dd9bf25b3313d635c043ac065387befeb52c9963d1f9c5bceb45d7e288f13a6a83a39ccbed8ab2806867d379565199ecf
 SHA512 
4790d20d89478880b18255679727e5b2fb2860bb4de67d5032c805fd44c9f90697a240a612aba51255325192253aa578b346d658b29f631a4e92ad96e7d65b61
 DIST XML-Parser-2.46.tar.gz 254763 BLAKE2B 
a815c8f517adb609a1690e6127660eb339649eacffb21d77664b4f9ea071fbaeb432f50bc6469cb36a6b9b4b4e037f778dd2289bed6d87f497713d1d8cab9d0e
 SHA512 
c4609495cc5ca34952f61876a690ef76d42eee6689d1bedb8036c9eab918525ec5213f1639c7178c029ee0f8765a2ca5eb0197f6e39b8be6d5dbc3f3c1d0b389

diff --git a/dev-perl/XML-Parser/XML-Parser-2.440.0.ebuild 
b/dev-perl/XML-Parser/XML-Parser-2.440.0.ebuild
new file mode 100644
index ..744eee96e008
--- /dev/null
+++ b/dev-perl/XML-Parser/XML-Parser-2.440.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+MODULE_AUTHOR=TODDR
+MODULE_VERSION=2.44
+inherit perl-module multilib
+
+DESCRIPTION="A Perl extension interface to James Clark's XML parser, expat"
+
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND=">=dev-libs/expat-1.95.1-r1"
+DEPEND="${RDEPEND}"
+
+SRC_TEST=do
+
+src_configure() {
+   myconf="EXPATLIBPATH=${EPREFIX}/usr/$(get_libdir) 
EXPATINCPATH=${EPREFIX}/usr/include"
+   perl-module_src_configure
+}



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

2021-12-13 Thread Sam James
commit: 749d7f46fe4428df30f279855063528dfe1980e5
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 06:22:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 06:22:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749d7f46

dev-perl/XML-Parser: destabilize 2.460.0-r1

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

 dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild 
b/dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild
index 0ed0cdf19681..674a1ddb048e 100644
--- a/dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild
+++ b/dev-perl/XML-Parser/XML-Parser-2.460.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module multilib
 DESCRIPTION="A perl module for parsing XML documents"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



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

2021-12-13 Thread John Helmert III
commit: 33bb454c9678ab13d58662a07a143f1bee47cafe
Author: John Helmert III  gentoo  org>
AuthorDate: Sun Dec 12 19:40:26 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Tue Dec 14 05:41:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bb454c

mount-boot.eclass: support EAPI 8

Signed-off-by: John Helmert III  gentoo.org>

 eclass/mount-boot.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/mount-boot.eclass b/eclass/mount-boot.eclass
index 2b07160231a6..3111d9dcb9b5 100644
--- a/eclass/mount-boot.eclass
+++ b/eclass/mount-boot.eclass
@@ -4,7 +4,7 @@
 # @ECLASS: mount-boot.eclass
 # @MAINTAINER:
 # base-sys...@gentoo.org
-# @SUPPORTED_EAPIS: 6 7
+# @SUPPORTED_EAPIS: 6 7 8
 # @BLURB: functions for packages that install files into /boot
 # @DESCRIPTION:
 # This eclass is really only useful for bootloaders.
@@ -14,7 +14,7 @@
 # error if it can't.  It does nothing if /boot isn't a separate partition.
 
 case ${EAPI:-0} in
-   6|7) ;;
+   6|7|8) ;;
*) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;;
 esac
 



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

2021-12-13 Thread Sam James
commit: 36d5f8de514f2b0ff95ccaf75c60e87441f8c009
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:26:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:26:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36d5f8de

profiles: add pax-utils to info_pkgs

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

 profiles/info_pkgs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index ccfe088bfe32..ec81f85d27d5 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -20,6 +20,7 @@ dev-lang/python
 dev-lang/perl
 dev-lang/rust
 dev-lang/rust-bin
+app-misc/pax-utils
 sys-apps/sandbox
 dev-util/ccache
 sys-devel/clang



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

2021-12-13 Thread Sam James
commit: ae3423244db949bc90a67f7bb7fe53e2652a78d2
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:23:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:23:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae342324

profiles: add lld to info_pkgs

lld isn't slotted and we'd like to know which version is being used.

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

 profiles/info_pkgs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index 2a3eaa838dc8..ccfe088bfe32 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -24,6 +24,7 @@ sys-apps/sandbox
 dev-util/ccache
 sys-devel/clang
 sys-devel/llvm
+sys-devel/lld
 sys-devel/gcc
 sys-devel/gcc-config
 dev-java/java-config



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

2021-12-13 Thread Sam James
commit: ac0374d872d6f16cba50a46aaf749ec3d6a44910
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:13:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:13:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac0374d8

profiles: drop 'RM' from info_vars

I don't see why anyone would set this, and if they are, I assume
they are doing other crazy things too. Feel free to enlighten me
if I'm missing something.

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

 profiles/info_vars | 1 -
 1 file changed, 1 deletion(-)

diff --git a/profiles/info_vars b/profiles/info_vars
index 66dc4f91b9ec..7f539593399f 100644
--- a/profiles/info_vars
+++ b/profiles/info_vars
@@ -62,7 +62,6 @@ PORTDIR
 PORTDIR_OVERLAY
 RANLIB
 READELF
-RM
 RUSTFLAGS
 SHELL
 SIZE



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

2021-12-13 Thread Sam James
commit: 6dcc3c0a1834ceb92f8db8e09b5d38afd51adac4
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Thu May 13 18:53:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:09:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dcc3c0a

profiles: info_vars add more variables, sorting

Bug: https://bugs.gentoo.org/722456
Closes: https://bugs.gentoo.org/780477
Closes: https://github.com/gentoo/gentoo/pull/20797
Signed-off-by: Alessandro Barbieri  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 profiles/info_vars | 41 +
 1 file changed, 37 insertions(+), 4 deletions(-)

diff --git a/profiles/info_vars b/profiles/info_vars
index 051948c1e8ef..66dc4f91b9ec 100644
--- a/profiles/info_vars
+++ b/profiles/info_vars
@@ -1,4 +1,4 @@
-# Copyright 2004-2019 Gentoo Authors
+# Copyright 2004-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 ##
@@ -7,35 +7,68 @@
 ##
 ACCEPT_KEYWORDS
 ACCEPT_LICENSE
+ADDR2LINE
+AR
+ARFLAGS
+AS
+ASFLAGS
 CC
+CCLD
 CXX
+CXXFILT
 CFLAGS
 CBUILD
 CHOST
 CONFIG_PROTECT
 CONFIG_PROTECT_MASK
+CONFIG_SHELL
+CPP
 CPPFLAGS
 CTARGET
 CXXFLAGS
 DISTDIR
-FEATURES
+ELFEDIT
+FC
 FCFLAGS
+FEATURES
 FFLAGS
+F77FLAGS
+GCOV
 GENTOO_MIRRORS
+GPROF
 INSTALL_MASK
 LANG
 LC_ALL
+LD
 LDFLAGS
+LEX
+LFLAGS
+LIBTOOL
 LINGUAS
+L10N
+MAKE
+MAKEFLAGS
 MAKEOPTS
+NM
+OBJCOPY
+OBJDUMP
 PORTAGE_COMPRESS
 PORTAGE_COMPRESS_FLAGS
 PORTAGE_CONFIGROOT
+PORTAGE_RSYNC_OPTS
+PORTAGE_RSYNC_EXTRA_OPTS
 PORTAGE_TMPDIR
 PORTDIR
 PORTDIR_OVERLAY
+RANLIB
+READELF
+RM
 RUSTFLAGS
+SHELL
+SIZE
+STRINGS
+STRIP
 SYNC
 USE
-PORTAGE_RSYNC_OPTS
-PORTAGE_RSYNC_EXTRA_OPTS
+YACC
+YFLAGS



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

2021-12-13 Thread Sam James
commit: fed72e13407ce8a75aecb931543b7c6148460f9c
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:02:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:06:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fed72e13

profiles: add meson to info_pkgs

Regularly seem to have to ask people for this especially as
behaviour can change in newer versions. Plus, we already have
CMake and autotools here.

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

 profiles/info_pkgs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index a2f9022c74f5..741a1cef17b2 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -25,6 +25,7 @@ sys-devel/gcc
 sys-devel/gcc-config
 dev-java/java-config
 dev-util/cmake
+dev-util/meson
 # NOTE: portage no longer list /etc/gentoo-release,
 # so this is not redundant
 sys-apps/baselayout



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

2021-12-13 Thread Sam James
commit: 8bd471778421cbd6e6510f4561f57511055fd3cf
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:04:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:07:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd47177

profiles: add systemd to info_pkgs

We have OpenRC and it's sometimes useful to know this.

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

 profiles/info_pkgs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index abd8334abe2c..612cbb2c0ad9 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -31,6 +31,7 @@ dev-util/meson
 # so this is not redundant
 sys-apps/baselayout
 sys-apps/openrc
+sys-apps/systemd
 
 # SELinux
 sec-policy/selinux-base



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

2021-12-13 Thread Sam James
commit: 009ba7c96b78c0b2b98dffcc3dac717d8d733e50
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:04:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:07:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=009ba7c9

profiles: add clang, llvm to info_pkgs

LLVM is often relevant for debugging build failures and both Clang
and LLVM are useful to know if folks are trying it out as e.g.
a system compiler.

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

 profiles/info_pkgs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index 612cbb2c0ad9..2a3eaa838dc8 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -22,6 +22,8 @@ dev-lang/rust
 dev-lang/rust-bin
 sys-apps/sandbox
 dev-util/ccache
+sys-devel/clang
+sys-devel/llvm
 sys-devel/gcc
 sys-devel/gcc-config
 dev-java/java-config



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

2021-12-13 Thread Sam James
commit: 12cc28800b9b05379a3749ee7a4a8dd7ccebe267
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 05:03:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 05:07:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12cc2880

profiles: add binutils-config too to info_pkgs

We have binutils, so we should have binutils-config. Note that we already
have gcc-config and java-config

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

 profiles/info_pkgs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/info_pkgs b/profiles/info_pkgs
index 741a1cef17b2..abd8334abe2c 100644
--- a/profiles/info_pkgs
+++ b/profiles/info_pkgs
@@ -13,6 +13,7 @@ sys-libs/glibc
 sys-libs/musl
 sys-libs/uclibc-ng
 sys-devel/binutils
+sys-devel/binutils-config
 sys-devel/libtool
 sys-devel/make
 dev-lang/python



[gentoo-commits] repo/gentoo:master commit in: net-fs/ksmbd-tools/files/, net-fs/ksmbd-tools/

2021-12-13 Thread Georgy Yakovlev
commit: c19591b2b9b189cb2726573d6ca2349d9145a17a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Tue Dec 14 04:50:23 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Tue Dec 14 04:53:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c19591b2

net-fs/ksmbd-tools: revbump, install to / (not /usr)

also add compat symlinks smbduseradd, smbdshareadd

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

 net-fs/ksmbd-tools/files/initd  | 4 ++--
 ...re20212111-r1.ebuild => ksmbd-tools-3.4.3_pre20212111-r2.ebuild} | 6 +-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/net-fs/ksmbd-tools/files/initd b/net-fs/ksmbd-tools/files/initd
index 1492c15444e9..c60577a17499 100644
--- a/net-fs/ksmbd-tools/files/initd
+++ b/net-fs/ksmbd-tools/files/initd
@@ -11,8 +11,8 @@ depend() {
 
 description="ksmbd userspace daemon"
 
-command="/usr/sbin/ksmbd.mountd"
-command_control="/usr/sbin/ksmbd.control"
+command="/sbin/ksmbd.mountd"
+command_control="/sbin/ksmbd.control"
 command_args="-s"
 
 required_files="${KSMBD_CONF}"

diff --git a/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r1.ebuild 
b/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r2.ebuild
similarity index 87%
rename from net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r1.ebuild
rename to net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r2.ebuild
index f2b872530486..2f29eedec6ea 100644
--- a/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r1.ebuild
+++ b/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r2.ebuild
@@ -40,7 +40,8 @@ src_prepare() {
 
 src_configure() {
# TODO: add kerberos support, explicitly disable for now
-   econf --enable-krb5=no
+   # tools are expected to recide in /sbin, not /usr/sbin
+   econf --prefix="${EPREFIX}/" --enable-krb5=no
 }
 
 src_install() {
@@ -55,5 +56,8 @@ src_install() {
newinitd "${FILESDIR}/initd" ksmbd 
newconfd "${FILESDIR}/confd" ksmbd
 
+   dosym ksmbd.addshare /sbin/smbshareadd
+   dosym ksmbd.adduser /sbin/smbuseradd
+
systemd_dounit ksmbd.service
 }



[gentoo-commits] proj/portage:master commit in: lib/portage/dep/soname/, lib/portage/util/elf/

2021-12-13 Thread Sam James
commit: f6cdba7689ea423245a232cc13103dd988363845
Author: WANG Xuerui  xen0n  name>
AuthorDate: Mon Aug  9 07:31:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 03:37:13 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f6cdba76

multilib_category.py: recognize LoongArch ABIs

Add its ELF machine number constant as well. The Gentoo ARCH is "loong";
all six ABIs defined in the LoongArch ELF psABI spec [1] are supported.
The upstream binutils port currently implements an earlier version of the
spec [2]; the ILP32 ABIs are never fully implemented so far, and the
value for LP64D is coincidentally the same, so the code here stays
compatible.

This is preparatory work towards a port to the LoongArch architecture,
which is the new RISC architecture from Loongson Corporation after
switching away from MIPS.

[1]: 
https://github.com/loongson/LoongArch-Documentation/blob/23d53fe146a4/docs/LoongArch-ELF-ABI-EN.adoc
[2]: 
https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=include/elf/loongarch.h;h=b4d801ae9bd5a6c4562ca6b1cbae6e6d45d6c704;hb=HEAD

Signed-off-by: WANG Xuerui  xen0n.name>
Closes: https://github.com/gentoo/portage/pull/740
Signed-off-by: Sam James  gentoo.org>

 lib/portage/dep/soname/multilib_category.py | 26 ++
 lib/portage/util/elf/constants.py   |  9 +
 2 files changed, 35 insertions(+)

diff --git a/lib/portage/dep/soname/multilib_category.py 
b/lib/portage/dep/soname/multilib_category.py
index ab855d339..567b1d32e 100644
--- a/lib/portage/dep/soname/multilib_category.py
+++ b/lib/portage/dep/soname/multilib_category.py
@@ -11,6 +11,7 @@
 #  arm_{32,64}
 #  hppa_{32,64}
 #  ia_{32,64}
+#  loong_{ilp32s,ilp32f,ilp32d,lp64s,lp64f,lp64d}
 #  m68k_{32,64}
 #  mips_{eabi32,eabi64,n32,n64,o32,o64}
 #  ppc_{32,64}
@@ -37,6 +38,13 @@ from portage.util.elf.constants import (
 EF_MIPS_ABI2,
 EF_RISCV_FLOAT_ABI_DOUBLE,
 EF_RISCV_RVC,
+EF_LOONGARCH_ABI_LP64_SOFT_FLOAT,
+EF_LOONGARCH_ABI_LP64_SINGLE_FLOAT,
+EF_LOONGARCH_ABI_LP64_DOUBLE_FLOAT,
+EF_LOONGARCH_ABI_ILP32_SOFT_FLOAT,
+EF_LOONGARCH_ABI_ILP32_SINGLE_FLOAT,
+EF_LOONGARCH_ABI_ILP32_DOUBLE_FLOAT,
+EF_LOONGARCH_ABI_MASK,
 ELFCLASS32,
 ELFCLASS64,
 EM_386,
@@ -46,6 +54,7 @@ from portage.util.elf.constants import (
 EM_ARM,
 EM_ALTERA_NIOS2,
 EM_IA_64,
+EM_LOONGARCH,
 EM_MIPS,
 EM_PARISC,
 EM_PPC,
@@ -71,6 +80,7 @@ _machine_prefix_map = {
 EM_ALTERA_NIOS2: "nios2",
 EM_ARM: "arm",
 EM_IA_64: "ia64",
+EM_LOONGARCH: "loong",
 EM_MIPS: "mips",
 EM_PARISC: "hppa",
 EM_PPC: "ppc",
@@ -84,6 +94,15 @@ _machine_prefix_map = {
 EM_X86_64: "x86",
 }
 
+_loong_abi_map = {
+EF_LOONGARCH_ABI_LP64_SOFT_FLOAT: "lp64s",
+EF_LOONGARCH_ABI_LP64_SINGLE_FLOAT: "lp64f",
+EF_LOONGARCH_ABI_LP64_DOUBLE_FLOAT: "lp64d",
+EF_LOONGARCH_ABI_ILP32_SOFT_FLOAT: "ilp32s",
+EF_LOONGARCH_ABI_ILP32_SINGLE_FLOAT: "ilp32f",
+EF_LOONGARCH_ABI_ILP32_DOUBLE_FLOAT: "ilp32d",
+}
+
 _mips_abi_map = {
 E_MIPS_ABI_EABI32: "eabi32",
 E_MIPS_ABI_EABI64: "eabi64",
@@ -92,6 +111,12 @@ _mips_abi_map = {
 }
 
 
+def _compute_suffix_loong(elf_header):
+
+loong_abi = elf_header.e_flags & EF_LOONGARCH_ABI_MASK
+return _loong_abi_map.get(loong_abi)
+
+
 def _compute_suffix_mips(elf_header):
 
 name = None
@@ -136,6 +161,7 @@ def _compute_suffix_riscv(elf_header):
 
 
 _specialized_funcs = {
+"loong": _compute_suffix_loong,
 "mips": _compute_suffix_mips,
 "riscv": _compute_suffix_riscv,
 }

diff --git a/lib/portage/util/elf/constants.py 
b/lib/portage/util/elf/constants.py
index d86b39483..19b72cfa1 100644
--- a/lib/portage/util/elf/constants.py
+++ b/lib/portage/util/elf/constants.py
@@ -36,6 +36,7 @@ EM_X86_64 = 62
 EM_ALTERA_NIOS2 = 113
 EM_AARCH64 = 183
 EM_RISCV = 243
+EM_LOONGARCH = 258
 EM_ALPHA = 0x9026
 
 E_ENTRY = 24
@@ -52,3 +53,11 @@ EF_RISCV_FLOAT_ABI_SOFT = 0x
 EF_RISCV_FLOAT_ABI_SINGLE = 0x0002
 EF_RISCV_FLOAT_ABI_DOUBLE = 0x0004
 EF_RISCV_FLOAT_ABI_QUAD = 0x0006
+
+EF_LOONGARCH_ABI_LP64_SOFT_FLOAT = 0b001
+EF_LOONGARCH_ABI_LP64_SINGLE_FLOAT = 0b010
+EF_LOONGARCH_ABI_LP64_DOUBLE_FLOAT = 0b011
+EF_LOONGARCH_ABI_ILP32_SOFT_FLOAT = 0b101
+EF_LOONGARCH_ABI_ILP32_SINGLE_FLOAT = 0b110
+EF_LOONGARCH_ABI_ILP32_DOUBLE_FLOAT = 0b111
+EF_LOONGARCH_ABI_MASK = 0x07



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

2021-12-13 Thread Sam James
commit: 1010cde56c21432c19c2dd5fa2a901e6fe82329d
Author: WANG Xuerui  xen0n  name>
AuthorDate: Mon Aug 30 03:25:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 03:35:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1010cde5

toolchain-funcs.eclass: add detection for loongarch

The Linux port currently under review has arch/loongarch, and should
almost certainly remain that way till merge; meanwhile it's ARCH=loong
on the Gentoo side, per mailing list discussion[1] and eselect
adaptation[2]. This architecture is little-endian-only according to the
manual[3].

[1]: 
https://archives.gentoo.org/gentoo-dev/message/388a4b7428461660e89c8eae8c292f32
[2]: 
https://gitweb.gentoo.org/proj/eselect.git/commit/?id=a49477f39d3f000cc2ca57f18aafbd66656aba05
[3]: 
https://github.com/loongson/LoongArch-Documentation/blob/2021.08.17/docs/LoongArch-Vol1-EN/basic-integer-instructions/programming-model-of-basic-integer-instructions/endian.adoc

Signed-off-by: WANG Xuerui  xen0n.name>
Signed-off-by: Sam James  gentoo.org>

 eclass/toolchain-funcs.eclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 563d9deef40b..77fb304940b2 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -675,6 +675,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
fi
;;
ia64*)  echo ia64;;
+   loongarch*) ninj loongarch loong;;
m68*)   echo m68k;;
metag*) echo metag;;
microblaze*)echo microblaze;;
@@ -752,6 +753,7 @@ tc-endian() {
hppa*)  echo big;;
i?86*)  echo little;;
ia64*)  echo little;;
+   loongarch*) echo little;;
m68*)   echo big;;
mips*l*)echo little;;
mips*)  echo big;;



[gentoo-commits] repo/gentoo:master commit in: sci-libs/dealii/

2021-12-13 Thread Sam James
commit: 81d67b7124bd5fa45d8849e3480f542cef655e94
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 03:27:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 03:27:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81d67b71

sci-libs/dealii: use < (upper bound) dep on Boost

Avoid confusing blockers.

Bug: https://bugs.gentoo.org/820821
See: https://forums.gentoo.org/viewtopic-t-1146245.html
Signed-off-by: Sam James  gentoo.org>

 sci-libs/dealii/{dealii-9.3.1-r1.ebuild => dealii-9.3.1-r2.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sci-libs/dealii/dealii-9.3.1-r1.ebuild 
b/sci-libs/dealii/dealii-9.3.1-r2.ebuild
similarity index 99%
rename from sci-libs/dealii/dealii-9.3.1-r1.ebuild
rename to sci-libs/dealii/dealii-9.3.1-r2.ebuild
index 04391b957f7f..c78bf7d245ac 100644
--- a/sci-libs/dealii/dealii-9.3.1-r1.ebuild
+++ b/sci-libs/dealii/dealii-9.3.1-r2.ebuild
@@ -45,8 +45,7 @@ REQUIRED_USE="
 # accessible. Just fix the version for the time being.
 CAS_VERSION=7.5.3
 
-RDEPEND="dev-libs/boost:=
-   !~dev-libs/boost-1.77.0
+RDEPEND="

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

2021-12-13 Thread Sam James
commit: 343532754e89c6771de90bd912d302ddbcc57ddb
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 02:48:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 02:48:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34353275

sys-devel/mold: fix whitespace

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

 sys-devel/mold/mold-0.9.6-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/sys-devel/mold/mold-0.9.6-r1.ebuild 
b/sys-devel/mold/mold-0.9.6-r1.ebuild
index 0321cd2b708e..7a9c767ceeaa 100644
--- a/sys-devel/mold/mold-0.9.6-r1.ebuild
+++ b/sys-devel/mold/mold-0.9.6-r1.ebuild
@@ -43,7 +43,6 @@ src_prepare() {
sed -i \
-e 
"s:/usr/lib64/mold/mold-wrapper.so:${EPREFIX}/usr/$(get_libdir)/mold/mold-wrapper.so:"
 \
 
-
# Needs unpackaged dwarfutils
rm test/compressed-debug-info.sh \
test/compress-debug-sections.sh || die
@@ -69,7 +68,7 @@ src_compile() {
 }
 
 src_test() {
-emake \
+   emake \
SYSTEM_TBB=1 \
SYSTEM_MIMALLOC=1 \
EXTRA_CFLAGS="${CFLAGS}" \



[gentoo-commits] repo/gentoo:master commit in: sys-boot/raspberrypi-firmware/

2021-12-13 Thread Sam James
commit: 6e519648d29b5f830bb76dd77138dc5e88dd8279
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 02:05:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 02:05:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e519648

sys-boot/raspberrypi-firmware: Stabilize 1.20210527 arm, #828387

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

 sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20210527.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20210527.ebuild 
b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20210527.ebuild
index 263276be82c7..4d208a6539b2 100644
--- a/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20210527.ebuild
+++ b/sys-boot/raspberrypi-firmware/raspberrypi-firmware-1.20210527.ebuild
@@ -11,7 +11,7 @@ if [[ "${PV}" ==  ]]; then
EGIT_CLONE_TYPE="shallow"
 else
SRC_URI="https://github.com/raspberrypi/firmware/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="-* ~arm ~arm64"
+   KEYWORDS="-* arm ~arm64"
S="${WORKDIR}/firmware-${PV}"
 fi
 



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

2021-12-13 Thread Sam James
commit: 3ce8cc3acc55419581b3e94b9fda967ca0271c63
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 02:04:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 02:04:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce8cc3a

app-crypt/heimdal: Stabilize 7.7.0-r2 ppc, #762223

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

 app-crypt/heimdal/heimdal-7.7.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild 
b/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild
index ed69823743dd..f13c5036742f 100644
--- a/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild
+++ b/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-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"
 IUSE="afs +berkdb caps gdbm hdb-ldap +lmdb otp selinux ssl static-libs test X"
 RESTRICT="!test? ( test )"
 



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

2021-12-13 Thread Sam James
commit: 150450f1997dd0f91d5e7e8c4236376b24d028ae
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 02:04:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 02:04:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150450f1

app-crypt/heimdal: Stabilize 7.7.0-r2 ppc64, #762223

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

 app-crypt/heimdal/heimdal-7.7.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild 
b/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild
index f13c5036742f..aef15e2c2985 100644
--- a/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild
+++ b/app-crypt/heimdal/heimdal-7.7.0-r2.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-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"
 IUSE="afs +berkdb caps gdbm hdb-ldap +lmdb otp selinux ssl static-libs test X"
 RESTRICT="!test? ( test )"
 



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

2021-12-13 Thread Sam James
commit: eb57f9fa838562b3e70f3d1274336853b7e7a428
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 01:31:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 01:31:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb57f9fa

net-libs/libnids: revert SONAME change

Seems to be accidental. Avoid breaking consumers.

Bug: https://github.com/MITRECND/libnids/issues/9
Signed-off-by: Sam James  gentoo.org>

 .../files/libnids-1.26-revert-SONAME-bump.patch| 26 ++
 ...{libnids-1.26.ebuild => libnids-1.26-r1.ebuild} |  1 +
 2 files changed, 27 insertions(+)

diff --git a/net-libs/libnids/files/libnids-1.26-revert-SONAME-bump.patch 
b/net-libs/libnids/files/libnids-1.26-revert-SONAME-bump.patch
new file mode 100644
index ..dc6abccd8c83
--- /dev/null
+++ b/net-libs/libnids/files/libnids-1.26-revert-SONAME-bump.patch
@@ -0,0 +1,26 @@
+From 0f07fe39585971b4c59f3a9b235e68d9c68184e3 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Tue, 14 Dec 2021 01:30:00 +
+Subject: [PATCH] Revert SONAME bump
+
+Bug: https://github.com/MITRECND/libnids/issues/9
+---
+ src/Makefile.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/Makefile.in b/src/Makefile.in
+index e7b6dd8..e72a5da 100644
+--- a/src/Makefile.in
 b/src/Makefile.in
+@@ -13,7 +13,7 @@ includedir   = @includedir@
+ libdir= @libdir@
+ mandir= @mandir@
+ LIBSTATIC  = libnids.a
+-LIBSHARED  = libnids.so.1.26
++LIBSHARED  = libnids.so.1.24
+ 
+ CC= @CC@
+ CFLAGS= @CFLAGS@ -DLIBNET_VER=@LIBNET_VER@ 
-DHAVE_ICMPHDR=@ICMPHEADER@ -DHAVE_TCP_STATES=@TCPSTATES@ 
-DHAVE_BSD_UDPHDR=@HAVE_BSD_UDPHDR@
+-- 
+2.34.1
+

diff --git a/net-libs/libnids/libnids-1.26.ebuild 
b/net-libs/libnids/libnids-1.26-r1.ebuild
similarity index 96%
rename from net-libs/libnids/libnids-1.26.ebuild
rename to net-libs/libnids/libnids-1.26-r1.ebuild
index fa141da12665..364e3468fe7f 100644
--- a/net-libs/libnids/libnids-1.26.ebuild
+++ b/net-libs/libnids/libnids-1.26-r1.ebuild
@@ -27,6 +27,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.24-libdir.patch
"${FILESDIR}"/${PN}-1.24-static-libs.patch
"${FILESDIR}"/${PN}-1.24-no-inline.patch
+   "${FILESDIR}"/${PN}-1.26-revert-SONAME-bump.patch
 )
 
 src_prepare() {



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

2021-12-13 Thread Sam James
commit: 9dc5ab5b7239caadd7c2786384aaa3d2cf4f6925
Author: Petr Vaněk  atlas  cz>
AuthorDate: Sat Dec 11 12:10:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 01:22:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc5ab5b

dev-cpp/doctest: update HOMEPAGE, SRC_URI

doctest library has moved from onqtam account to doctest.

Signed-off-by: Petr Vaněk  atlas.cz>
Signed-off-by: Sam James  gentoo.org>

 dev-cpp/doctest/doctest-2.4.6.ebuild | 4 ++--
 dev-cpp/doctest/metadata.xml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-cpp/doctest/doctest-2.4.6.ebuild 
b/dev-cpp/doctest/doctest-2.4.6.ebuild
index 4c3df901696d..dfa43f1f2015 100644
--- a/dev-cpp/doctest/doctest-2.4.6.ebuild
+++ b/dev-cpp/doctest/doctest-2.4.6.ebuild
@@ -6,8 +6,8 @@ EAPI=7
 inherit cmake
 
 DESCRIPTION="The fastest feature-rich C++11/14/17/20 single-header testing 
framework"
-HOMEPAGE="https://github.com/onqtam/doctest;
-SRC_URI="https://github.com/onqtam/doctest/archive/${PV}.tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://github.com/doctest/doctest;
+SRC_URI="https://github.com/doctest/doctest/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"

diff --git a/dev-cpp/doctest/metadata.xml b/dev-cpp/doctest/metadata.xml
index d74c17749c0b..02076edda235 100644
--- a/dev-cpp/doctest/metadata.xml
+++ b/dev-cpp/doctest/metadata.xml
@@ -10,6 +10,6 @@
Proxy Maintainers


-   onqtam/doctest
+   doctest/doctest

 



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

2021-12-13 Thread Sam James
commit: 0e6fc6a81100e67b5bfce50d8e12a88c9c71d297
Author: Petr Vaněk  atlas  cz>
AuthorDate: Sat Dec 11 12:18:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 01:22:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6fc6a8

dev-cpp/doctest: add 2.4.7

Signed-off-by: Petr Vaněk  atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/23254
Signed-off-by: Sam James  gentoo.org>

 dev-cpp/doctest/Manifest |  1 +
 dev-cpp/doctest/doctest-2.4.7.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-cpp/doctest/Manifest b/dev-cpp/doctest/Manifest
index 21c9d2b12467..6c3f86f22b81 100644
--- a/dev-cpp/doctest/Manifest
+++ b/dev-cpp/doctest/Manifest
@@ -1 +1,2 @@
 DIST doctest-2.4.6.tar.gz 2277281 BLAKE2B 
e6835ad33522273a3151ccfa1e760a150e2f0ccc15fb739cb518d8c9b4258f4b1529537bb6f41b285660aa00f1791b30a7db14155d9f23ea54dd11bfdeb81ec3
 SHA512 
a5cccf085af946003140af688f071a6407d42fc685324a537e3b704ef9de0f2228bd06eabfd1df8da70dec001420dd0b2813e5e4320b5c1da450cb0aadd63788
+DIST doctest-2.4.7.tar.gz 2281756 BLAKE2B 
9e10a30ca20ab08c4b5e7bc65e6d89e7fde45da7e6ff8ecbf9e848c7c61a7864bc4fbb49b0b1d2d6eeab16da2b4a2d935d06a593dab9be1fdb400e8ab641af7e
 SHA512 
bb2d410397700aa7be1161fcf26949524d4f7c333bb9ffe7d223dfd14e770d6eeff75336f27fe0c8051dcb6c403c6b3af506872f6ba207d2d86cc9e9d1d2bfbf

diff --git a/dev-cpp/doctest/doctest-2.4.7.ebuild 
b/dev-cpp/doctest/doctest-2.4.7.ebuild
new file mode 100644
index ..ef28c59976ca
--- /dev/null
+++ b/dev-cpp/doctest/doctest-2.4.7.ebuild
@@ -0,0 +1,23 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="The fastest feature-rich C++11/14/17/20 single-header testing 
framework"
+HOMEPAGE="https://github.com/doctest/doctest;
+SRC_URI="https://github.com/doctest/doctest/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+src_configure() {
+   local mycmakeargs=(
+   -DDOCTEST_WITH_TESTS=$(usex test)
+   )
+   cmake_src_configure
+}



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

2021-12-13 Thread Sam James
commit: b54b9cff6247158048f9ab869db4b57052044b30
Author: Tomáš Mózes  gmail  com>
AuthorDate: Mon Dec 13 19:47:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 01:16:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b54b9cff

app-admin/logstash-bin: bump to 6.8.21/7.16.1, drop old

Bug: https://bugs.gentoo.org/828969
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-admin/logstash-bin/Manifest| 14 +---
 app-admin/logstash-bin/logstash-bin-6.8.19.ebuild  | 73 --
 ...in-6.8.17.ebuild => logstash-bin-6.8.21.ebuild} |  0
 app-admin/logstash-bin/logstash-bin-7.15.0.ebuild  | 88 --
 app-admin/logstash-bin/logstash-bin-7.15.1.ebuild  | 88 --
 ...in-7.13.4.ebuild => logstash-bin-7.16.1.ebuild} |  0
 6 files changed, 4 insertions(+), 259 deletions(-)

diff --git a/app-admin/logstash-bin/Manifest b/app-admin/logstash-bin/Manifest
index 49b6b9840fc7..eb36b0740efb 100644
--- a/app-admin/logstash-bin/Manifest
+++ b/app-admin/logstash-bin/Manifest
@@ -1,10 +1,4 @@
-DIST logstash-6.8.17.tar.gz 179116623 BLAKE2B 
fa25a3149fded215586d97b3bd2a2b2b168292d45e32f1b69987c9e6e9e6f35100643df09d03f51da042b27acfd57bfcfdb1f4f18fddf7b9d21e01ef84668cc7
 SHA512 
00cf51cbce906d2594b0a17548d362fe678f458a2e7f9c167d4387953a848a588dbba070d370002a5e4d7ca2df2e3910805a27e3c0263ab29d99042229af0c3a
-DIST logstash-6.8.19.tar.gz 179116787 BLAKE2B 
156c915e4932acd1668b811f0c39c51870faa1ad462b6059a89e4f085af7e8aeaebcb458d65dec5fbc925ba49293db662af1fcb62f3a3b02eabe7756f6f193ab
 SHA512 
19648c9f5f4ae2d222157d45a639f8e6740cd96610fa44a3374c036944b2dba8582f69909ece3e6b0cefe2f340cdc3094bb4b6daace2e564935cad4f8a4f4b19
-DIST logstash-7.13.4-linux-x86_64.tar.gz 361126551 BLAKE2B 
e972b2c6b992573f0320de0487141c17fa6cd1889d7d266f79958fbc261a4e8564b9f9fc88b654de7e476c6c2747f47e169d0fd3601888035193a2cb844fd710
 SHA512 
2dba64af5f6b0724a75a8f4f3dc9fb067e27785fd5d0b9ef0571c77df6ebaa89418a165b7489ad47676847c4a9f928cbfc8d3ddc885db21053d0bda9dd524f49
-DIST logstash-7.15.0-linux-x86_64.tar.gz 368280150 BLAKE2B 
6e98096782ba4b36428b72e6f48007ccb6db05ac5032475267ebd1564dac1c136a059b42330f85efc8a758372fe0851b6c0d676f4062e01fe2c0d8f6c010de70
 SHA512 
50503eeea1ebed2540fac23429962f945e66fd8e1c260b6f4d3a80b220d83f2799d703b5d7778c6c80aed90c9e36cd777a580d63c80ab78dd440e26ff2e8b7ac
-DIST logstash-7.15.1-linux-x86_64.tar.gz 368944379 BLAKE2B 
d86805a04eb49ced9fa0c408e14a61f5e772782cc99445cf9fa36bef7698747d3085dd0834edec2e759f14e1952edcc3b6c7a5cf9a6c065b17561850a5a17be3
 SHA512 
46ece477e4cf662f2583a25e79014b6f4550e4ad34cd8ef4ec5ad951eac15068bacfe2e21c6f205ea2c3f1b201b06b6541a5d11fdc8be907bf44f214924d4e96
-DIST logstash-oss-6.8.17.tar.gz 178986613 BLAKE2B 
5e318903fb134f6096fb983d3651d5d81c2bc9d62421aa7468ee7cb82a5e7895a517911a759d82f1f2c939c3ce67df4e26c1296c0871cb1cfb8078627e68e5f3
 SHA512 
0f43f9f0dc4a253c6d5a6f07234a22bc67b8866dd6f25837372c1d3c9cca2ddb1b94b632c4528324eeb23019d5d1ae7374661dec8011e55210555e01bec77c2c
-DIST logstash-oss-6.8.19.tar.gz 178986302 BLAKE2B 
54ff9be5f26f5e1aaf69403a05ec15358951f5ff4676ba1dc22d995c59071554ef542100400712238c01924a07de5777cda13b0cb84f8d19f1b953405eaab82e
 SHA512 
2f7a2b187c418ba85fff5c86ff12379bc0a8ae0fe098f713c6d5c5339b6aec19589382e0817f6bf495c253f13f489eecb9161daa9102b366ef32073def4e75cf
-DIST logstash-oss-7.13.4-linux-x86_64.tar.gz 360925283 BLAKE2B 
68482538d4b2589044215495ab7d41b4820650908d979438b197c5ee4ff82dfc53580fba7c834c62964e9b12ff23e6d9ecfc6e333a2cb6f077d6d4c953527173
 SHA512 
d57c30c763ba3323380c7276a49895ce3adbe90700061bdf1ce8c6abe98c4ac0c5789ac2a725f15d8d4f89c80dec691479027887b8976dcd618aa91f7af13d8e
-DIST logstash-oss-7.15.0-linux-x86_64.tar.gz 368079309 BLAKE2B 
8f21ad0572b93ea7711fc4e721afcb067a629798b72325bff5642b3406e432da5ad6c0b4515ea6e4fa1e2412fdaae464f97bebc1531c61b30abfa8f8ddbb27b8
 SHA512 
648d83444cdf4997175eb48833cb4ddad09876fd65f6a01bc6ad2d983eb109707885a08250191b066f9d3775247774e09ecdbb7bcac2f7c22c6f1901f0648ba8
-DIST logstash-oss-7.15.1-linux-x86_64.tar.gz 368751151 BLAKE2B 
6cf6c3f3ca77f3d04f88aeb6497db5d11043352d0ecf773269cc64095ce1af6c25ed8e9e260beef10a95cb4482466a911ebecdda842015bd036962947fd34087
 SHA512 
26ab0e5ee21b37b7e21b0ccff0a72f1f2a96ea97c16fb22a2566c4b9100b0eb6d093efc2b7f0ead81db63c180f6b530cf337566a53f298b4051321426dc8d649
+DIST logstash-6.8.21.tar.gz 179399165 BLAKE2B 
1d56d8b2f1c27591a1eecb8191c3d821e8939cf2550aafdb558133c052eb92dd00ae8cc2b6d7cb40e33a2927cb0a6ff4d1211674e7c4c4dd50bb621aa4cf3176
 SHA512 
752a4c4b7423df6e34c5b6abec0a2125ea4c70f9a9156009496cc1a1cc7e75321e09631b33c44167a3b88f22e19ce5a0cfe1e2a80bea7feadb4b267edbfa9719
+DIST logstash-7.16.1-linux-x86_64.tar.gz 367216229 BLAKE2B 
bfd64a27363714da90a17daa6490087fef235b70f1adf873c19c36d72c2039661fffebcfd31ac8662f3f2731660458d1e281adb3c6aa422cd05b6b549caf7d14
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: www-apps/kibana-bin/, www-apps/kibana-bin/files/

2021-12-13 Thread Sam James
commit: 1d49f5d37b9d90d7daa5f4e9bb87488197e76293
Author: Tomáš Mózes  gmail  com>
AuthorDate: Mon Dec 13 19:45:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 01:16:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d49f5d3

www-apps/kibana-bin: bump to 6.8.21/7.16.1, drop old

Bug: https://bugs.gentoo.org/828969
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 www-apps/kibana-bin/Manifest   | 10 +--
 www-apps/kibana-bin/files/kibana.initd-r1  | 11 +--
 www-apps/kibana-bin/kibana-bin-6.8.19.ebuild   | 89 -
 ...-bin-6.8.17.ebuild => kibana-bin-6.8.21.ebuild} |  0
 www-apps/kibana-bin/kibana-bin-7.13.4.ebuild   | 93 --
 www-apps/kibana-bin/kibana-bin-7.15.0.ebuild   | 93 --
 ...-bin-7.15.1.ebuild => kibana-bin-7.16.1.ebuild} |  6 +-
 7 files changed, 7 insertions(+), 295 deletions(-)

diff --git a/www-apps/kibana-bin/Manifest b/www-apps/kibana-bin/Manifest
index 1cd85b20f19e..51c0de55ebac 100644
--- a/www-apps/kibana-bin/Manifest
+++ b/www-apps/kibana-bin/Manifest
@@ -1,7 +1,3 @@
-DIST kibana-6.8.17-linux-x86_64.tar.gz 186139184 BLAKE2B 
4b6bead148e9d222f5631ad24a81d6d5b84972c3c2dc4d8010fd4081179251365289858e8f60d8930c20653df6ee502a8833146613cb0195a0cd2bf6ccd5114d
 SHA512 
50ae600ab3b6d69d11e86c84124eea6fd5c2f756c6c961c6f45f32ea3a65f0c29b249a4229dc9cfd6b7a64383efc21cd4bb53c44265ccd9109c6f8d990b3e14d
-DIST kibana-6.8.19-linux-x86_64.tar.gz 186482714 BLAKE2B 
c79ff1ee992e954f0d1a607a67110dd12ae3d68a2fc44fd67860253a4aedebcedb558c95a92b40168eb85d2c71abf83280f9338564ec3142c1841cba8aed50bf
 SHA512 
6af11abb1bb637dd33b3b60b7fb4eaba0c4706e6e59c1c61bb1f70b5e80d2296a318126535088b24cff692efc80267e53483bdc08a9eb4e132b41bfddaf30049
-DIST kibana-7.13.4-linux-x86_64.tar.gz 306413260 BLAKE2B 
3afe039b7be9809b395adb609e65785ccb8f3de07391b306804a79158cacb53c2d8b844b04468e932dc0113b9ecce34bc4bd8326231c9f2191fa5b12f2e00b4e
 SHA512 
1accd5d6933f3f2f54174e53da626bc275b99b2f102d5f8cfee934d3520ee55a97c9c545cca32ddffec06a96114ce284e2e128cf334538214566c6530d1d673e
-DIST kibana-7.15.0-linux-x86_64.tar.gz 284167139 BLAKE2B 
d46a860055623e4d90f44e42116b78032057659f89193d5ec2bc25728906fd24465fb1c2111fca157bda5745d612aa2b5913168d93f43fc97aa00f477596c48e
 SHA512 
34759eca59a9f6b8bca2513d5da74686d2292d2472ca0cf1f8624d6610745a199fe6aabc102a9e39031057f3ba8ef5e692eca641c8371282481dad36d44757d7
-DIST kibana-7.15.1-linux-x86_64.tar.gz 283752241 BLAKE2B 
531a27fd06e6f94f9d1ca77f94e8146f6b8adcd49579241e2b6c5fd234d9e45fd05931fa9886df29bcb70d9b5b8072b76a4ef59139b800a2c657185051fa4f52
 SHA512 
419450fb596ceb7015792947a2f84ca9e80b1aa180806e9d38e89d2e1f31dd84751511fb600a35026b10440ca5dc9bc5f1245c72a0afde062bdbfdd004fb4417
-DIST kibana-oss-6.8.17-linux-x86_64.tar.gz 68076062 BLAKE2B 
b87a8067b0598e9291eb78b7666b69ac8babe774ad3f2ae1fcb37d12517ceed067fe0e022cb34e576727525c570863625237b91c6c5ad0b3901e8b6333a13c16
 SHA512 
28953bc77fd606a11c1f2522bb53b9fe38e7f711f71ac073c4d669a0078ba6fb050688ab06de49d4b5f7fdd0c76b8d040e05194bef814c872a00b9383b9a6d60
-DIST kibana-oss-6.8.19-linux-x86_64.tar.gz 67437896 BLAKE2B 
759d2449e056508bae5eddbd3a772ec8112bac6ce0068089f4c43f797e2fe3892e508970df9438aa9591b01b08d7258325cbb493f36768fca9d174bda1f60104
 SHA512 
86c22f5d3ddffa8c650e6326b8632ee5ca9bfb3f2dac7df38f8dfce41c8f777eaa5eea43dfb03b1e10c3ecc597624f8c3b19a31dbc7abc514759973c8bf0a47c
+DIST kibana-6.8.21-linux-x86_64.tar.gz 186911975 BLAKE2B 
079675ed43903af1cc3c2b281997e5ac5238697f4ee8d6fed03e4080910bc61f45801a3b2deb717937bf6f1d952b3c574a09b0a2b436a320b4239101dbec993a
 SHA512 
ef4960a5af8ba1255d4979494638f85315fe0671363157a1d7487fd6bd0319bf64cf4a4f0c10810fba120eac8a93bd190e052b16d24323f7a83d24326327d820
+DIST kibana-7.16.1-linux-x86_64.tar.gz 280881993 BLAKE2B 
34ec0f4b5f9742c36334f9915c427583da855923ea767ceb87e59b80213c8b5c10583dc0420e166b502bfed48a33dc1fb0f892e46d65bd2ec1531172901a48fc
 SHA512 
7c5bd24edc2de01ce49ab92636049288a8b20f25defca49dde21aed39b18e1062e0bc8723ba0b3ccb89c84c62cfe25f6319457972da67cb01cb7e753af23526a
+DIST kibana-oss-6.8.21-linux-x86_64.tar.gz 67439710 BLAKE2B 
c57351d9ae6d49cc698c010ceb243be6b7c1c359b24cc5e31a463e8703dd9d0caecc3f6606efd1efaaf6f7ff245fe62eab1b405f6f5a2dc7c08251775e6b0cda
 SHA512 
a7dc03f60ffb26dde312e38cf047a19adc0121e9953d39e5dc47391b9f1ee0fd4ccbcf8ec0ccaca5c841ec9f8db62a3d22f2e6e24e43172c04644a1f0db7

diff --git a/www-apps/kibana-bin/files/kibana.initd-r1 
b/www-apps/kibana-bin/files/kibana.initd-r1
index 124cb683c939..51502367e039 100644
--- a/www-apps/kibana-bin/files/kibana.initd-r1
+++ b/www-apps/kibana-bin/files/kibana.initd-r1
@@ -11,12 +11,12 @@ KIBANA_LOG_DIR="${KIBANA_LOG_DIR:-/var/log/kibana}"
 
 command="/opt/kibana/bin/kibana"
 command_args="--elasticsearch ${ES_INSTANCE} --config ${KIBANA_CONFIG} 
--path.data=${KIBANA_DATA_DIR}"
+command_background="true"
 command_user="${KIBANA_USER}"
 

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

2021-12-13 Thread Sam James
commit: cc58f8fd31e519dcc5648566e5f84d959b714979
Author: Tomáš Mózes  gmail  com>
AuthorDate: Mon Dec 13 19:44:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 01:16:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc58f8fd

app-misc/elasticsearch: bump to 6.8.21/7.16.1, drop old

Bug: https://bugs.gentoo.org/828969
Signed-off-by: Tomáš Mózes  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 app-misc/elasticsearch/Manifest| 10 +--
 app-misc/elasticsearch/elasticsearch-6.8.17.ebuild | 88 --
 ...h-6.8.19.ebuild => elasticsearch-6.8.21.ebuild} |  0
 app-misc/elasticsearch/elasticsearch-7.13.4.ebuild | 82 
 app-misc/elasticsearch/elasticsearch-7.15.1.ebuild | 83 
 ...h-7.15.0.ebuild => elasticsearch-7.16.1.ebuild} |  0
 6 files changed, 3 insertions(+), 260 deletions(-)

diff --git a/app-misc/elasticsearch/Manifest b/app-misc/elasticsearch/Manifest
index c2a839ff0740..3497eed1f54c 100644
--- a/app-misc/elasticsearch/Manifest
+++ b/app-misc/elasticsearch/Manifest
@@ -1,7 +1,3 @@
-DIST elasticsearch-6.8.17.tar.gz 149132823 BLAKE2B 
a83d4e81059a717e48ac54e7565efe282f42103718ba9cef9994a6970769bb01248e99ffbfe061ca85a7b44890604c6174dc11046a94c455dc01da7f495524ea
 SHA512 
5eb365efccff4e371d9ac873b45684c36cfd7f25ec51a86c3cd74beff4491dbc0097dba22f91335c35478e3b25decc6ae4bc5d538add0e17a39eb063dfa2d88c
-DIST elasticsearch-6.8.19.tar.gz 149143102 BLAKE2B 
74b529d9b9944101c0371c2e1a43697aca0ca5907a4fc25cb7a54b30d9d27a6e876317c8946636314db48ffab59be732ee9a52f2d989c1cff12c11ca91e68cb5
 SHA512 
2d12a201496668da7547eef77000d2317df083a0d03390549ded9aa80e8ea69d836b62355bb1b8ff363be446887579a34cf417b0b1b8e4d0f6a178598a3cdac1
-DIST elasticsearch-7.13.4-no-jdk-linux-x86_64.tar.gz 174690446 BLAKE2B 
bab17a006f14d262ee85918c8b2e5f610a1e726d158cf423bf306971826f182963e0231456539253f5054069b82672e8803c0da06166215d128bdea02e6738db
 SHA512 
5d6d53d9d6c6faf5d6599019882aa4b5d91f04944ab26c496cab033880b71f1ce2addb98bcf12b21891c005e810ce4a0493627b9ec9f0f78b4f7786efa398eab
-DIST elasticsearch-7.15.0-no-jdk-linux-x86_64.tar.gz 196775804 BLAKE2B 
c08a77a03dd98acbbbdabdf408c33cc7786d8b00e64558b0658e6952d3c32842b2ede48a54e58ee85ece882f56675d77ff39bc2b6ede7d8c7e446bbfd0b23965
 SHA512 
dbd5c5ce9a08ea0bbc55e9f470a7455d99f1458287cb1d885f07f2670cc8885dbe764315c1267f31ef745a424ece52b4e60239993e0ed7d0bec70dd8c022f7fa
-DIST elasticsearch-7.15.1-no-jdk-linux-x86_64.tar.gz 196761964 BLAKE2B 
a279233f4c7f4f37fbcfe94b0a84d1158bd5d8ca0968e75ae37d752715ba4a6612b50664bc1c7371a6a3894ee1c9ac74ca88ed79a2d1e7c47b3b289565ce21cc
 SHA512 
84690630bc87fe2655f47500f74130e5a72bdc8b0284a7ba914258cb02b16143c221976f5227c4a520e2634cc3da5f1b1ebe311c578ca22b30561a18354746a0
-DIST elasticsearch-oss-6.8.17.tar.gz 68247749 BLAKE2B 
12e85804a7d58dc27d85fbed6501831d92428405cb4636355c523a370863e00301bd75d7d12404ee0c7eefc32c53bc4b23e8fc1fecf2f606faf85369b2262cc7
 SHA512 
0f165357b1f389fbd01f07397a2b3ea5d493fae720c15213f2ee47a0c2c75bc4a448384767646d7585a18d4577899b840121c1829a987a16d2de68f216b28f7c
-DIST elasticsearch-oss-6.8.19.tar.gz 68255213 BLAKE2B 
7fba24a70dafbaf94d2c9f2f25dfc976f831759e8be67ce0a5f15ffe11b9f8d4d62b7906ad5250bcbaacab43139b4471328978c8adc4be527e178597b6bf3294
 SHA512 
d0a371a4bf19db38b8b0379856a3535c6472e373abd1e9cae0171cffed97005b9fb7b6f7d3d67edc3d67feb5265a9f33d974d6abad8e398148be94566735c2c0
+DIST elasticsearch-6.8.21.tar.gz 149105279 BLAKE2B 
a8eb3fc5d2697a9d81b6f2f720d9689265febfd5945e8eda4a3e745bd9b535cad65aa1a7a270f9e19853006a6195bc0b2f9e0db582842309b3f7cd24162314ec
 SHA512 
6c86942883af9087738a05ea412ff3ccf9e1f89385f73bbb9921eff49c7488e433ccb940624562d00a2a066ffeb41f87169dd88a4f91b09932fb5a544fd50506
+DIST elasticsearch-7.16.1-no-jdk-linux-x86_64.tar.gz 198775024 BLAKE2B 
b6dafc02c05e45ee1133a730688d51a576fc901ca87c8a494ac5d7277eaf9d5403246d4cf86833be514ba541631dc890273770d860dc71bf5549cbf9077a4f63
 SHA512 
529280741a3fe87df267abfa0fa03e79c24d0403f293f3604ddfddf01980efdc654cbb4586513d8424186298707bfd6fcbd21027d345262d6418e6021a9c4f88
+DIST elasticsearch-oss-6.8.21.tar.gz 68235683 BLAKE2B 
9b8710a40689e38b565dffd65471164f69bcd263a3efb5c2dcfaac0543a859b00e6543d9e2e59773f78669646b6e6e06a055d38ea3ce30e6d3cfe7271b001867
 SHA512 
875b34db1458f51e1c738ef82a0c00aae7c558e0eb76c149d354d3be8695bb3d4397dddff9ab76cc111f1c4cb64b9767ac63cb15155007f4403e7ab930acd40a

diff --git a/app-misc/elasticsearch/elasticsearch-6.8.17.ebuild 
b/app-misc/elasticsearch/elasticsearch-6.8.17.ebuild
deleted file mode 100644
index 6b347e7957c4..
--- a/app-misc/elasticsearch/elasticsearch-6.8.17.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit systemd tmpfiles
-
-DESCRIPTION="Open Source, Distributed, RESTful, Search Engine"
-HOMEPAGE="https://www.elastic.co/products/elasticsearch;
-SRC_URI="x-pack? ( 

[gentoo-commits] repo/gentoo:master commit in: dev-util/rizin/, dev-util/rizin/files/

2021-12-13 Thread John Helmert III
commit: 166222145e93b3e5bf1e1978fff2d00553585e1a
Author: John Helmert III  gentoo  org>
AuthorDate: Tue Dec 14 01:07:07 2021 +
Commit: John Helmert III  gentoo  org>
CommitDate: Tue Dec 14 01:08:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16622214

dev-util/rizin: add patch for CVE-2021-43814

Bug: https://bugs.gentoo.org/829129
Signed-off-by: John Helmert III  gentoo.org>

 .../rizin/files/rizin-0.3.1-CVE-2021-43814.patch   |  90 ++
 dev-util/rizin/rizin-0.3.1-r2.ebuild   | 103 +
 2 files changed, 193 insertions(+)

diff --git a/dev-util/rizin/files/rizin-0.3.1-CVE-2021-43814.patch 
b/dev-util/rizin/files/rizin-0.3.1-CVE-2021-43814.patch
new file mode 100644
index ..f7c511b5a0cf
--- /dev/null
+++ b/dev-util/rizin/files/rizin-0.3.1-CVE-2021-43814.patch
@@ -0,0 +1,90 @@
+From aa6917772d2f32e5a7daab25a46c72df0b5ea406 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Florian=20M=C3=A4rkl?= 
+Date: Fri, 10 Dec 2021 15:43:12 +0100
+Subject: [PATCH] Fix oob write for dwarf with abbrev with count 0 (Fix #2083)
+ (#2086)
+
+---
+ librz/bin/dwarf.c | 40 ++-
+ test/db/formats/elf/crash |  8 
+ 2 files changed, 31 insertions(+), 17 deletions(-)
+
+diff --git a/librz/bin/dwarf.c b/librz/bin/dwarf.c
+index 1ed1d3517c2..23dd1f9f0b1 100644
+--- a/librz/bin/dwarf.c
 b/librz/bin/dwarf.c
+@@ -1220,9 +1220,13 @@ static int init_die(RzBinDwarfDie *die, ut64 abbr_code, 
ut64 attr_count) {
+   if (!die) {
+   return -1;
+   }
+-  die->attr_values = calloc(sizeof(RzBinDwarfAttrValue), attr_count);
+-  if (!die->attr_values) {
+-  return -1;
++  if (attr_count) {
++  die->attr_values = calloc(sizeof(RzBinDwarfAttrValue), 
attr_count);
++  if (!die->attr_values) {
++  return -1;
++  }
++  } else {
++  die->attr_values = NULL;
+   }
+   die->abbrev_code = abbr_code;
+   die->capacity = attr_count;
+@@ -1726,25 +1730,27 @@ static const ut8 *parse_die(const ut8 *buf, const ut8 
*buf_end, RzBinDwarfDebugI
+   size_t i;
+   const char *comp_dir = NULL;
+   ut64 line_info_offset = UT64_MAX;
+-  for (i = 0; i < abbrev->count - 1; i++) {
+-  memset(>attr_values[i], 0, sizeof(die->attr_values[i]));
++  if (abbrev->count) {
++  for (i = 0; i < abbrev->count - 1; i++) {
++  memset(>attr_values[i], 0, 
sizeof(die->attr_values[i]));
+ 
+-  buf = parse_attr_value(buf, buf_end - buf, >defs[i],
+-  >attr_values[i], hdr, debug_str, debug_str_len, 
big_endian);
++  buf = parse_attr_value(buf, buf_end - buf, 
>defs[i],
++  >attr_values[i], hdr, debug_str, 
debug_str_len, big_endian);
+ 
+-  RzBinDwarfAttrValue *attribute = >attr_values[i];
++  RzBinDwarfAttrValue *attribute = >attr_values[i];
+ 
+-  if (attribute->attr_name == DW_AT_comp_dir && 
(attribute->attr_form == DW_FORM_strp || attribute->attr_form == 
DW_FORM_string) && attribute->string.content) {
+-  comp_dir = attribute->string.content;
+-  }
+-  if (attribute->attr_name == DW_AT_stmt_list) {
+-  if (attribute->kind == DW_AT_KIND_CONSTANT) {
+-  line_info_offset = attribute->uconstant;
+-  } else if (attribute->kind == DW_AT_KIND_REFERENCE) {
+-  line_info_offset = attribute->reference;
++  if (attribute->attr_name == DW_AT_comp_dir && 
(attribute->attr_form == DW_FORM_strp || attribute->attr_form == 
DW_FORM_string) && attribute->string.content) {
++  comp_dir = attribute->string.content;
++  }
++  if (attribute->attr_name == DW_AT_stmt_list) {
++  if (attribute->kind == DW_AT_KIND_CONSTANT) {
++  line_info_offset = attribute->uconstant;
++  } else if (attribute->kind == 
DW_AT_KIND_REFERENCE) {
++  line_info_offset = attribute->reference;
++  }
+   }
++  die->count++;
+   }
+-  die->count++;
+   }
+ 
+   // If this is a compilation unit dir attribute, we want to cache it so 
the line info parsing
+diff --git a/test/db/formats/elf/crash b/test/db/formats/elf/crash
+index ea6c2c214bb..fb8a572bd56 100644
+--- a/test/db/formats/elf/crash
 b/test/db/formats/elf/crash
+@@ -25,3 +25,11 @@ nth vaddr bind type lib name
+ []
+ EOF
+ RUN
++
++NAME=ELF/Dwarf: abbrev empty
++FILE=bins/elf/dwarf_fuzzed_abbrev_empty
++CMDS=

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

2021-12-13 Thread Sam James
commit: 9f7fc1da5ba3cbd69cb725bf5092d9704ff5395a
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 00:45:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 00:45:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f7fc1da

app-admin/awscli: Stabilize 1.22.5 ALLARCHES, #829125

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

 app-admin/awscli/awscli-1.22.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/awscli/awscli-1.22.5.ebuild 
b/app-admin/awscli/awscli-1.22.5.ebuild
index d4b09dbaa2ec..4e4639900e37 100644
--- a/app-admin/awscli/awscli-1.22.5.ebuild
+++ b/app-admin/awscli/awscli-1.22.5.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/aws-cli-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 # botocore is x.(y+1).z
 BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 1)).$(ver_cut 3-)"



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcap/, sys-libs/libcap/files/

2021-12-13 Thread Sam James
commit: 2b505d02486bf1c863e50adf41d33b3a260a4751
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 14 00:44:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 14 00:44:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b505d02

sys-libs/libcap: add 2.62

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

 sys-libs/libcap/Manifest   |  1 +
 62-ignore-RAISE_SETFCAP-install-failures.patch | 26 ++
 sys-libs/libcap/libcap-2.62.ebuild | 96 ++
 3 files changed, 123 insertions(+)

diff --git a/sys-libs/libcap/Manifest b/sys-libs/libcap/Manifest
index b783ac2f611d..4ec6770eefde 100644
--- a/sys-libs/libcap/Manifest
+++ b/sys-libs/libcap/Manifest
@@ -1,2 +1,3 @@
 DIST libcap-2.49.tar.xz 139568 BLAKE2B 
5746dcdf2a737e747450bd50a701ee8543277b17b7fbf1304b79f707a088ea74dc6dc79c61ff89b55b718a460a7b0814f960f44d07944a97b832b78f4e14e07f
 SHA512 
2934a2ded1370edeb9603dbf43d8ca23a2eb5d67efc5cec5d4ba96c707a8db2702da8aa9be0cb86c5ff100d37ec96115ca7566ad0ab2e0b4a288bbe357d0
 DIST libcap-2.61.tar.xz 173892 BLAKE2B 
50874d3510ab2476aaceb775314d98744736aacd7364a23827756caa160c101e8bc890b7c33b5e19df8b30bb6b3b1c2be323e4b6a963f97e9ee557e86b4f13a0
 SHA512 
40096bf511d1c45e36f5d7f24e49c709528f3f01fcadd47b6ac40a7e8d5f1705b29b4cc56356b030639f67d0641b9f4e7c19449c3c7f4f77a4070c35745b465c
+DIST libcap-2.62.tar.xz 174772 BLAKE2B 
e3c86a5b88b9be932802ec8612f79e5f04912bf3e66f673eae2add85362292f4737c544d21b9e5adfd1a7a33c073568301b6532cdf0ea6c8b834d895b84323f1
 SHA512 
61ac004920c5cd3382a5443db2eacfc2041b7a8c0814b27084c1d25639fe3950dea4325d0f7fb6bfb0d5de114452c3a62230cc958edb05ffdb83b213f9b3

diff --git 
a/sys-libs/libcap/files/libcap-2.62-ignore-RAISE_SETFCAP-install-failures.patch 
b/sys-libs/libcap/files/libcap-2.62-ignore-RAISE_SETFCAP-install-failures.patch
new file mode 100644
index ..04c59357c45f
--- /dev/null
+++ 
b/sys-libs/libcap/files/libcap-2.62-ignore-RAISE_SETFCAP-install-failures.patch
@@ -0,0 +1,26 @@
+From 8dfcdcfdcb9c462a05566aa8d3c6eca871f0ddbf Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Wed, 10 Feb 2016 09:52:45 +0100
+Subject: [PATCH] ignore RAISE_SETFCAP install failures
+
+While the new RAISE_SETFCAP feature is nifty, its failure to run (often
+due to the fs not supporting it) shouldn't impair the default install.
+
+Signed-off-by: Mike Frysinger 
+
+Forward ported from libcap-2.20 to libcap-2.25
+
+Signed-off-by: Lars Wendler 
+diff --git a/progs/Makefile b/progs/Makefile
+index 2cb7520..6d417de 100644
+--- a/progs/Makefile
 b/progs/Makefile
+@@ -39,7 +39,7 @@ install: all
+   install -m 0755 $$p $(FAKEROOT)$(SBINDIR) ; \
+   done
+ ifeq ($(RAISE_SETFCAP),yes)
+-  $(FAKEROOT)$(SBINDIR)/setcap cap_setfcap=i $(FAKEROOT)$(SBINDIR)/setcap
++  -$(FAKEROOT)$(SBINDIR)/setcap cap_setfcap=i $(FAKEROOT)$(SBINDIR)/setcap
+ endif
+ 
+ test:

diff --git a/sys-libs/libcap/libcap-2.62.ebuild 
b/sys-libs/libcap/libcap-2.62.ebuild
new file mode 100644
index ..811890277ff9
--- /dev/null
+++ b/sys-libs/libcap/libcap-2.62.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal toolchain-funcs pam usr-ldscript
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/libcap/libcap.git;
+else
+   
SRC_URI="https://www.kernel.org/pub/linux/libs/security/linux-privs/libcap2/${P}.tar.xz;
+
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+fi
+
+DESCRIPTION="POSIX 1003.1e capabilities"
+HOMEPAGE="https://sites.google.com/site/fullycapable/;
+
+# it's available under either of the licenses
+LICENSE="|| ( GPL-2 BSD )"
+SLOT="0"
+IUSE="pam static-libs tools"
+
+# While the build system optionally uses gperf, we don't DEPEND on it because
+# the build automatically falls back when it's unavailable.  #604802
+PDEPEND="pam? ( sys-libs/pam[${MULTILIB_USEDEP}] )"
+DEPEND="${PDEPEND}
+   sys-kernel/linux-headers"
+BDEPEND="
+   sys-apps/diffutils
+   tools? ( dev-lang/go )"
+
+QA_FLAGS_IGNORED="sbin/captree" # go binaries don't use LDFLAGS
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.62-ignore-RAISE_SETFCAP-install-failures.patch
+)
+
+src_prepare() {
+   default
+   multilib_copy_sources
+}
+
+run_emake() {
+   local args=(
+   AR="$(tc-getAR)"
+   CC="$(tc-getCC)"
+   OBJCOPY="$(tc-getOBJCOPY)"
+   RANLIB="$(tc-getRANLIB)"
+   exec_prefix="${EPREFIX}"
+   lib_prefix="${EPREFIX}/usr"
+   lib="$(get_libdir)"
+   prefix="${EPREFIX}/usr"
+   PAM_CAP="$(usex pam yes no)"
+   DYNAMIC=yes
+   GOLANG="$(multilib_native_usex tools yes no)"
+   )
+   emake "${args[@]}" "$@"

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

2021-12-13 Thread Sam James
commit: 9c3599ecfad6d11d77c76c8c43f1b7580406d1fa
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:44:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:44:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3599ec

net-libs/libnids: add 1.26

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

 net-libs/libnids/Manifest|  1 +
 net-libs/libnids/libnids-1.26.ebuild | 59 
 2 files changed, 60 insertions(+)

diff --git a/net-libs/libnids/Manifest b/net-libs/libnids/Manifest
index a12c6bfcb8d3..9469393608ac 100644
--- a/net-libs/libnids/Manifest
+++ b/net-libs/libnids/Manifest
@@ -1 +1,2 @@
 DIST libnids-1.24.tar.gz 151021 BLAKE2B 
ce545a8e3f4b61284ef7f2e6d1ce37aa537adef2686281468b4aaa509479d58073b9f6a5fbb7f03e33fa28ec18c01c8af49e0ce8a2d314ba5da5cbbba0fd7dcc
 SHA512 
2046900023e853d7dbd7061c9f47d8a8ba26320991ca34198249019c1b9a6f75010574f9f022d02976272a384cf769394c4cc3ae536fc6164716cadc4770bb53
+DIST libnids-1.26.tar.gz 146172 BLAKE2B 
c84329a8da493f49d340d263835070c948a00d8400cd3e7a2a727b567f672b7af8017446281879ec19cb6d9e89eb07564c463fdf0521aa441ad5dc6ac2b97c73
 SHA512 
d582287f2c64241895ae437e501e92ef68adc8eac1a3df597d089634b994faee35d8b1cc018bbf20ced440bcd286af28f48c6f88da740a7c3de935ce3723561d

diff --git a/net-libs/libnids/libnids-1.26.ebuild 
b/net-libs/libnids/libnids-1.26.ebuild
new file mode 100644
index ..fa141da12665
--- /dev/null
+++ b/net-libs/libnids/libnids-1.26.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic toolchain-funcs
+
+DESCRIPTION="An implementation of an E-component of Network Intrusion 
Detection System"
+HOMEPAGE="https://github.com/MITRECND/libnids http://libnids.sourceforge.net/;
+SRC_URI="https://github.com/MITRECND/libnids/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz
+   mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="1.2"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+glib +libnet static-libs"
+
+RDEPEND="!net-libs/libnids:1.1
+   net-libs/libpcap
+   glib? ( dev-libs/glib:2 )
+   libnet? ( >=net-libs/libnet-1.1.0-r3 )"
+DEPEND="${RDEPEND}"
+BDEPEND="glib? ( virtual/pkgconfig )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.24-ldflags.patch
+   "${FILESDIR}"/${PN}-1.24-libdir.patch
+   "${FILESDIR}"/${PN}-1.24-static-libs.patch
+   "${FILESDIR}"/${PN}-1.24-no-inline.patch
+)
+
+src_prepare() {
+   default
+   eautoconf
+}
+
+src_configure() {
+   tc-export AR
+
+   append-flags -fno-strict-aliasing
+
+   econf \
+   --enable-shared \
+   $(usex glib '' --disable-libglib) \
+   $(use_enable libnet)
+}
+
+src_compile() {
+   emake shared $(usex static-libs static '')
+}
+
+src_install() {
+   local tgt
+   for tgt in _installshared $(usex static-libs _install ''); do
+   emake install_prefix="${D}" ${tgt}
+   done
+
+   dodoc CHANGES CREDITS MISC README doc/*
+}



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace-wallpapers/

2021-12-13 Thread Sam James
commit: b4e713163882e41a0790b3d7b8db90d6c1a859ad
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4e71316

kde-plasma/plasma-workspace-wallpapers: Stabilize 5.23.4 arm64, #826898

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

 .../plasma-workspace-wallpapers-5.23.4.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.23.4.ebuild
 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.23.4.ebuild
index 33cda94f8b18..d776660bca12 100644
--- 
a/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.23.4.ebuild
+++ 
b/kde-plasma/plasma-workspace-wallpapers/plasma-workspace-wallpapers-5.23.4.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Wallpapers for the Plasma workspace"
 
 LICENSE="GPL-2"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-meta/

2021-12-13 Thread Sam James
commit: fbcdaa859500f58538c5a02e11c60942772d363f
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbcdaa85

kde-plasma/plasma-meta: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-meta/plasma-meta-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-meta/plasma-meta-5.23.4.ebuild 
b/kde-plasma/plasma-meta/plasma-meta-5.23.4.ebuild
index a53620ba2864..48918ec47f20 100644
--- a/kde-plasma/plasma-meta/plasma-meta-5.23.4.ebuild
+++ b/kde-plasma/plasma-meta/plasma-meta-5.23.4.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://kde.org/plasma-desktop/;
 
 LICENSE="metapackage"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="accessibility bluetooth +browser-integration colord +crash-handler crypt
 +desktop-portal discover +display-manager +elogind +firewall grub gtk +handbook
 +kwallet +legacy-systray +networkmanager plymouth pulseaudio +sddm sdk +smart



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-desktop/

2021-12-13 Thread Sam James
commit: 87406987a3b98ea843b26c7b30eaba04d5ba3ad9
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87406987

kde-plasma/plasma-desktop: Stabilize 5.23.4-r1 arm64, #826898

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

 kde-plasma/plasma-desktop/plasma-desktop-5.23.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.23.4-r1.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-5.23.4-r1.ebuild
index 289f4d234045..dcd98ea5397d 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-5.23.4-r1.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-5.23.4-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI+=" 
https://dev.gentoo.org/~asturm/distfiles/${XORGHDRS}.tar.xz;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="emoji ibus +kaccounts +policykit scim +semantic-desktop telemetry"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-sdk/

2021-12-13 Thread Sam James
commit: c85c544aab843bea1d2519b300340bdf00817605
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c85c544a

kde-plasma/plasma-sdk: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-sdk/plasma-sdk-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-sdk/plasma-sdk-5.23.4.ebuild 
b/kde-plasma/plasma-sdk/plasma-sdk-5.23.4.ebuild
index 8992c8d15e95..8c39ca97e09f 100644
--- a/kde-plasma/plasma-sdk/plasma-sdk-5.23.4.ebuild
+++ b/kde-plasma/plasma-sdk/plasma-sdk-5.23.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Useful applications for Plasma development"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-pa/

2021-12-13 Thread Sam James
commit: 4b70e10ac44ee8b27a271b426e84ec775f0b2652
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b70e10a

kde-plasma/plasma-pa: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-pa/plasma-pa-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-pa/plasma-pa-5.23.4.ebuild 
b/kde-plasma/plasma-pa/plasma-pa-5.23.4.ebuild
index c1ec1f11a19b..15e9abfde55b 100644
--- a/kde-plasma/plasma-pa/plasma-pa-5.23.4.ebuild
+++ b/kde-plasma/plasma-pa/plasma-pa-5.23.4.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Plasma applet for audio volume management using 
PulseAudio"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/xdg-desktop-portal-kde/

2021-12-13 Thread Sam James
commit: dfbe8624ce843c6e68f6c1a6a473dca06288b7c0
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfbe8624

kde-plasma/xdg-desktop-portal-kde: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.23.4.ebuild 
b/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.23.4.ebuild
index dbb74b034415..c226021bc7cd 100644
--- a/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.23.4.ebuild
+++ b/kde-plasma/xdg-desktop-portal-kde/xdg-desktop-portal-kde-5.23.4.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Backend implementation for xdg-desktop-portal 
that is using Qt/KDE
 
 LICENSE="LGPL-2+"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-nm/

2021-12-13 Thread Sam James
commit: 8129d8852777e2c22d079a01d31cac02a11ff80a
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8129d885

kde-plasma/plasma-nm: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-nm/plasma-nm-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-nm/plasma-nm-5.23.4.ebuild 
b/kde-plasma/plasma-nm/plasma-nm-5.23.4.ebuild
index eb87dbb4efb5..554f70c56423 100644
--- a/kde-plasma/plasma-nm/plasma-nm-5.23.4.ebuild
+++ b/kde-plasma/plasma-nm/plasma-nm-5.23.4.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="KDE Plasma applet for NetworkManager"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="modemmanager openconnect teamd"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plymouth-kcm/

2021-12-13 Thread Sam James
commit: 57436ce9cff35c3be8eb9c869d62afc87ccd4c5e
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57436ce9

kde-plasma/plymouth-kcm: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plymouth-kcm/plymouth-kcm-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plymouth-kcm/plymouth-kcm-5.23.4.ebuild 
b/kde-plasma/plymouth-kcm/plymouth-kcm-5.23.4.ebuild
index ae9c515ae74c..9da6c6887b60 100644
--- a/kde-plasma/plymouth-kcm/plymouth-kcm-5.23.4.ebuild
+++ b/kde-plasma/plymouth-kcm/plymouth-kcm-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://invent.kde.org/plasma/plymouth-kcm;
 
 LICENSE="GPL-2+"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-firewall/

2021-12-13 Thread Sam James
commit: 4136dea14fd4a8bfdc958ee027e071e07dd3f752
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4136dea1

kde-plasma/plasma-firewall: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-firewall/plasma-firewall-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-firewall/plasma-firewall-5.23.4.ebuild 
b/kde-plasma/plasma-firewall/plasma-firewall-5.23.4.ebuild
index ee6aac150fad..e3822b5cded5 100644
--- a/kde-plasma/plasma-firewall/plasma-firewall-5.23.4.ebuild
+++ b/kde-plasma/plasma-firewall/plasma-firewall-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://invent.kde.org/network/plasma-firewall;
 
 LICENSE="GPL-2+"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="firewalld +ufw"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE} || ( firewalld ufw )"



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/sddm-kcm/

2021-12-13 Thread Sam James
commit: 753efafea93f6bbc6762681eaa3eef5cdd921b61
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=753efafe

kde-plasma/sddm-kcm: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/sddm-kcm/sddm-kcm-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/sddm-kcm/sddm-kcm-5.23.4.ebuild 
b/kde-plasma/sddm-kcm/sddm-kcm-5.23.4.ebuild
index 6c720a8ba03c..ae336a6d350e 100644
--- a/kde-plasma/sddm-kcm/sddm-kcm-5.23.4.ebuild
+++ b/kde-plasma/sddm-kcm/sddm-kcm-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://invent.kde.org/plasma/sddm-kcm;
 
 LICENSE="GPL-2+"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/polkit-kde-agent/

2021-12-13 Thread Sam James
commit: b63f219e5d94028c36bc4dce421cda34ee76b40f
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b63f219e

kde-plasma/polkit-kde-agent: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/polkit-kde-agent/polkit-kde-agent-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.23.4.ebuild 
b/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.23.4.ebuild
index 3eaf29c30ca2..02fe5d2fae86 100644
--- a/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.23.4.ebuild
+++ b/kde-plasma/polkit-kde-agent/polkit-kde-agent-5.23.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://kde.org/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-vault/

2021-12-13 Thread Sam James
commit: b9641bbec85de77671c63e71fc6c58e12896a05a
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9641bbe

kde-plasma/plasma-vault: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-vault/plasma-vault-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-vault/plasma-vault-5.23.4.ebuild 
b/kde-plasma/plasma-vault/plasma-vault-5.23.4.ebuild
index 6171e6d033f6..f723ef1f5db9 100644
--- a/kde-plasma/plasma-vault/plasma-vault-5.23.4.ebuild
+++ b/kde-plasma/plasma-vault/plasma-vault-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE+=" 
https://cukic.co/2017/02/03/vaults-encryption-in-plasma/;
 
 LICENSE="LGPL-3"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="networkmanager"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/xembed-sni-proxy/

2021-12-13 Thread Sam James
commit: 6558be65d807a8d2a11c47f452dfe855bb69f704
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6558be65

kde-plasma/xembed-sni-proxy: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.4.ebuild 
b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.4.ebuild
index 141660dfa3a1..f60d32c6774b 100644
--- a/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.4.ebuild
+++ b/kde-plasma/xembed-sni-proxy/xembed-sni-proxy-5.23.4.ebuild
@@ -14,7 +14,7 @@ 
HOMEPAGE="https://invent.kde.org/plasma/plasma-workspace/-/blob/master/xembed-sn
 
 LICENSE="GPL-2"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 
 DEPEND="
>=dev-qt/qtcore-${QTMIN}:5



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/ksshaskpass/

2021-12-13 Thread Sam James
commit: 85f21fa60b1dabf798ec4229c2773dc443a1684a
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85f21fa6

kde-plasma/ksshaskpass: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/ksshaskpass/ksshaskpass-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/ksshaskpass/ksshaskpass-5.23.4.ebuild 
b/kde-plasma/ksshaskpass/ksshaskpass-5.23.4.ebuild
index 3a54cf5b029c..e181be3cca85 100644
--- a/kde-plasma/ksshaskpass/ksshaskpass-5.23.4.ebuild
+++ b/kde-plasma/ksshaskpass/ksshaskpass-5.23.4.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE+=" https://invent.kde.org/plasma/ksshaskpass;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/ksystemstats/

2021-12-13 Thread Sam James
commit: 93e0340575d8b970ac703820531b58ac7e721229
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e03405

kde-plasma/ksystemstats: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/ksystemstats/ksystemstats-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/ksystemstats/ksystemstats-5.23.4.ebuild 
b/kde-plasma/ksystemstats/ksystemstats-5.23.4.ebuild
index 8df39ed0f5da..c9fe385b900b 100644
--- a/kde-plasma/ksystemstats/ksystemstats-5.23.4.ebuild
+++ b/kde-plasma/ksystemstats/ksystemstats-5.23.4.ebuild
@@ -15,7 +15,7 @@ DESCRIPTION="Plugin-based system monitoring daemon"
 
 LICENSE="GPL-2+"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="networkmanager"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-disks/

2021-12-13 Thread Sam James
commit: 31bde96c4fbd5aa493921128a111f3bbff093700
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31bde96c

kde-plasma/plasma-disks: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/plasma-disks/plasma-disks-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/plasma-disks/plasma-disks-5.23.4.ebuild 
b/kde-plasma/plasma-disks/plasma-disks-5.23.4.ebuild
index c92733318675..1d12faabf86e 100644
--- a/kde-plasma/plasma-disks/plasma-disks-5.23.4.ebuild
+++ b/kde-plasma/plasma-disks/plasma-disks-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://invent.kde.org/plasma/plasma-disks;
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kscreen/

2021-12-13 Thread Sam James
commit: d9883eb85454685e85436c95061fd440c6283be9
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9883eb8

kde-plasma/kscreen: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/kscreen/kscreen-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kscreen/kscreen-5.23.4.ebuild 
b/kde-plasma/kscreen/kscreen-5.23.4.ebuild
index a6492a30d53b..0f5a369f667b 100644
--- a/kde-plasma/kscreen/kscreen-5.23.4.ebuild
+++ b/kde-plasma/kscreen/kscreen-5.23.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://invent.kde.org/plasma/kscreen;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 # bug #580440, last checked 5.6.3



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwayland-integration/

2021-12-13 Thread Sam James
commit: 94221369c3a6fa213eb03e0e5de7ad2a288bbd75
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94221369

kde-plasma/kwayland-integration: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/kwayland-integration/kwayland-integration-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kwayland-integration/kwayland-integration-5.23.4.ebuild 
b/kde-plasma/kwayland-integration/kwayland-integration-5.23.4.ebuild
index f8bf991d5a4e..95ad37074878 100644
--- a/kde-plasma/kwayland-integration/kwayland-integration-5.23.4.ebuild
+++ b/kde-plasma/kwayland-integration/kwayland-integration-5.23.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://invent.kde.org/plasma/kwayland-integration;
 
 LICENSE="LGPL-2.1"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 RESTRICT="test" # bug 668872



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kmenuedit/

2021-12-13 Thread Sam James
commit: f2c23df55b8f9d4128210ba6c523ff1c393e6e9c
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2c23df5

kde-plasma/kmenuedit: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/kmenuedit/kmenuedit-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kmenuedit/kmenuedit-5.23.4.ebuild 
b/kde-plasma/kmenuedit/kmenuedit-5.23.4.ebuild
index a43a1a7b638a..d919dd508b3d 100644
--- a/kde-plasma/kmenuedit/kmenuedit-5.23.4.ebuild
+++ b/kde-plasma/kmenuedit/kmenuedit-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://invent.kde.org/plasma/kmenuedit;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwrited/

2021-12-13 Thread Sam James
commit: ed4129b70e5146a9f50d7a5e2cb4a729782f66aa
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed4129b7

kde-plasma/kwrited: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/kwrited/kwrited-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kwrited/kwrited-5.23.4.ebuild 
b/kde-plasma/kwrited/kwrited-5.23.4.ebuild
index 5f0bced87d0a..cbb84e809f75 100644
--- a/kde-plasma/kwrited/kwrited-5.23.4.ebuild
+++ b/kde-plasma/kwrited/kwrited-5.23.4.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="KDE Plasma daemon listening for wall and write 
messages"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/powerdevil/

2021-12-13 Thread Sam James
commit: 2cf8efcf6dd490f50c94683705e759cfe02fb2d1
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:04:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf8efcf

kde-plasma/powerdevil: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/powerdevil/powerdevil-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/powerdevil/powerdevil-5.23.4.ebuild 
b/kde-plasma/powerdevil/powerdevil-5.23.4.ebuild
index 3fa6f3df2fcc..fa6b1b4bd1b9 100644
--- a/kde-plasma/powerdevil/powerdevil-5.23.4.ebuild
+++ b/kde-plasma/powerdevil/powerdevil-5.23.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://invent.kde.org/plasma/powerdevil;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="brightness-control caps +wireless"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/oxygen/

2021-12-13 Thread Sam James
commit: 71a55cebcbb9e29bedc4d6014bd408261bc3f8ae
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a55ceb

kde-plasma/oxygen: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/oxygen/oxygen-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/oxygen/oxygen-5.23.4.ebuild 
b/kde-plasma/oxygen/oxygen-5.23.4.ebuild
index df6a0db279c1..475d9fed008c 100644
--- a/kde-plasma/oxygen/oxygen-5.23.4.ebuild
+++ b/kde-plasma/oxygen/oxygen-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://invent.kde.org/plasma/oxygen;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE="wayland"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-systemmonitor/

2021-12-13 Thread Sam James
commit: e7a3bd3790a08799438216ea26497a084abdf612
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7a3bd37

kde-plasma/plasma-systemmonitor: Stabilize 5.23.4-r1 arm64, #826898

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

 kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.23.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.23.4-r1.ebuild 
b/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.23.4-r1.ebuild
index 689b5573cca0..12fa84166ae2 100644
--- a/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.23.4-r1.ebuild
+++ b/kde-plasma/plasma-systemmonitor/plasma-systemmonitor-5.23.4-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://apps.kde.org/plasma-systemmonitor/;
 
 LICENSE="|| ( GPL-3 GPL-2 )"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-browser-integration/

2021-12-13 Thread Sam James
commit: 0ade64725ff55aad0d15d14c5651245df4dc7170
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ade6472

kde-plasma/plasma-browser-integration: Stabilize 5.23.4 arm64, #826898

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

 .../plasma-browser-integration/plasma-browser-integration-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-plasma/plasma-browser-integration/plasma-browser-integration-5.23.4.ebuild
 
b/kde-plasma/plasma-browser-integration/plasma-browser-integration-5.23.4.ebuild
index f243a298a57e..6c78bbdef127 100644
--- 
a/kde-plasma/plasma-browser-integration/plasma-browser-integration-5.23.4.ebuild
+++ 
b/kde-plasma/plasma-browser-integration/plasma-browser-integration-5.23.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE+=" 
https://community.kde.org/Plasma/Browser_Integration;
 
 LICENSE="GPL-3+"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/kwallet-pam/

2021-12-13 Thread Sam James
commit: c2b37cc7c9a2bfed111613874bdad63bde6bd8f6
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 23:01:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 23:03:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b37cc7

kde-plasma/kwallet-pam: Stabilize 5.23.4 arm64, #826898

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

 kde-plasma/kwallet-pam/kwallet-pam-5.23.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kwallet-pam/kwallet-pam-5.23.4.ebuild 
b/kde-plasma/kwallet-pam/kwallet-pam-5.23.4.ebuild
index 87018d784f8c..da2cc6159515 100644
--- a/kde-plasma/kwallet-pam/kwallet-pam-5.23.4.ebuild
+++ b/kde-plasma/kwallet-pam/kwallet-pam-5.23.4.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="PAM module to not enter KWallet password again 
after login"
 
 LICENSE="LGPL-2.1"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
 IUSE=""
 
 DEPEND="



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

2021-12-13 Thread Georgy Yakovlev
commit: 04b6c5688af706bc606b43f8d04cb8748e27c6cb
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:54:39 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:59:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04b6c568

app-text/kchmviewer: Keyword 8.0 ppc64, #827848

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

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

diff --git a/app-text/kchmviewer/kchmviewer-8.0.ebuild 
b/app-text/kchmviewer/kchmviewer-8.0.ebuild
index 73e5dd758427..188a1ca12bc0 100644
--- a/app-text/kchmviewer/kchmviewer-8.0.ebuild
+++ b/app-text/kchmviewer/kchmviewer-8.0.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/kchmviewer-RELEASE_8_0"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="



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

2021-12-13 Thread Sam James
commit: 1bad1caecea83d260f2cf9b4db8979c53bbfc3ed
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:57:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:57:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bad1cae

media-gfx/inkscape: Keyword 1.1-r1 ia64, #828455

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

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

diff --git a/media-gfx/inkscape/inkscape-1.1-r1.ebuild 
b/media-gfx/inkscape/inkscape-1.1-r1.ebuild
index 6d152296eb9a..c713d8b4e707 100644
--- a/media-gfx/inkscape/inkscape-1.1-r1.ebuild
+++ b/media-gfx/inkscape/inkscape-1.1-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="cdr dbus dia exif graphicsmagick imagemagick inkjar jemalloc jpeg
 openmp postscript readline spell static-libs svg2 visio wpg"
 



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

2021-12-13 Thread Sam James
commit: fbe53d2cf88d9a70f219502fb32095694cbb98a0
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:57:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:57:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbe53d2c

media-gfx/inkscape: Keyword 1.1-r1 hppa, #828455

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

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

diff --git a/media-gfx/inkscape/inkscape-1.1-r1.ebuild 
b/media-gfx/inkscape/inkscape-1.1-r1.ebuild
index 8827e75c514f..6d152296eb9a 100644
--- a/media-gfx/inkscape/inkscape-1.1-r1.ebuild
+++ b/media-gfx/inkscape/inkscape-1.1-r1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="cdr dbus dia exif graphicsmagick imagemagick inkjar jemalloc jpeg
 openmp postscript readline spell static-libs svg2 visio wpg"
 



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

2021-12-13 Thread Sam James
commit: b1f48480340d98aea91de5a187dfc1f7b5fe623c
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:57:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:57:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1f48480

app-text/gspell: Keyword 1.9.1 hppa, #828455

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

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

diff --git a/app-text/gspell/gspell-1.9.1.ebuild 
b/app-text/gspell/gspell-1.9.1.ebuild
index d95e8e062ca8..266648319f95 100644
--- a/app-text/gspell/gspell-1.9.1.ebuild
+++ b/app-text/gspell/gspell-1.9.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/gspell;
 
 LICENSE="LGPL-2.1+"
 SLOT="0/2" # subslot = libgspell-1 soname version
-KEYWORDS="~alpha amd64 ~arm arm64 ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 
 IUSE="+introspection +vala"
 REQUIRED_USE="vala? ( introspection )"



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

2021-12-13 Thread Sam James
commit: 01f2f9268152b669628a39c5b9e052414c0badb5
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:57:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:57:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01f2f926

app-text/gspell: Keyword 1.9.1 ia64, #828455

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

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

diff --git a/app-text/gspell/gspell-1.9.1.ebuild 
b/app-text/gspell/gspell-1.9.1.ebuild
index 266648319f95..df529ccddab3 100644
--- a/app-text/gspell/gspell-1.9.1.ebuild
+++ b/app-text/gspell/gspell-1.9.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/gspell;
 
 LICENSE="LGPL-2.1+"
 SLOT="0/2" # subslot = libgspell-1 soname version
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86"
 
 IUSE="+introspection +vala"
 REQUIRED_USE="vala? ( introspection )"



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

2021-12-13 Thread Sam James
commit: ba37bd91e4d73005908e720706ef39d79ed95535
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:55:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:55:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba37bd91

sys-apps/systemd-tmpfiles: Stabilize 249.5 arm64, #829030

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

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

diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild 
b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild
index df6bb26db4e8..012025165fb1 100644
--- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild
+++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild
@@ -24,7 +24,7 @@ 
SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}-$
 
 LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="selinux test"
 RESTRICT="!test? ( test )"
 



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

2021-12-13 Thread Sam James
commit: 6b98d01b3116b712d69a1a8aa344d38fc96c0ceb
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:54:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:54:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b98d01b

sys-apps/systemd-tmpfiles: Stabilize 249.5 arm, #829030

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

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

diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild 
b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild
index 30806107f92a..df6bb26db4e8 100644
--- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild
+++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.5.ebuild
@@ -24,7 +24,7 @@ 
SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}-$
 
 LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="selinux test"
 RESTRICT="!test? ( test )"
 



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

2021-12-13 Thread Sam James
commit: 21b1607479165c94822e2557eef4c170fb490472
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:53:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:53:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21b16074

dev-util/android-tools: Stabilize 31.0.3 x86, #829069

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

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

diff --git a/dev-util/android-tools/android-tools-31.0.3.ebuild 
b/dev-util/android-tools/android-tools-31.0.3.ebuild
index 1831087626f4..b7fa373ba19b 100644
--- a/dev-util/android-tools/android-tools-31.0.3.ebuild
+++ b/dev-util/android-tools/android-tools-31.0.3.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 # The entire source code is Apache-2.0, except for fastboot which is BSD-2.
 LICENSE="Apache-2.0 BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 x86 ~x86-linux"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2021-12-13 Thread Sam James
commit: 46f033c84feb6e065b0e541e31c5b4217fb53aad
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:53:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:53:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f033c8

dev-util/android-tools: Stabilize 31.0.3 amd64, #829069

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

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

diff --git a/dev-util/android-tools/android-tools-31.0.3.ebuild 
b/dev-util/android-tools/android-tools-31.0.3.ebuild
index b7fa373ba19b..bb938d91 100644
--- a/dev-util/android-tools/android-tools-31.0.3.ebuild
+++ b/dev-util/android-tools/android-tools-31.0.3.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 # The entire source code is Apache-2.0, except for fastboot which is BSD-2.
 LICENSE="Apache-2.0 BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86 ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~x86-linux"
 IUSE="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2021-12-13 Thread Sam James
commit: e8da8c5c84c92e4bd3ff25bb02c796bc034bb565
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:53:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:53:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8da8c5c

dev-python/boto3: Stabilize 1.20.5 ALLARCHES, #829109

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

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

diff --git a/dev-python/boto3/boto3-1.20.5.ebuild 
b/dev-python/boto3/boto3-1.20.5.ebuild
index a4f6b1d0f3c2..9e6f48fcce61 100644
--- a/dev-python/boto3/boto3-1.20.5.ebuild
+++ b/dev-python/boto3/boto3-1.20.5.ebuild
@@ -17,7 +17,7 @@ if [[ "${PV}" == "" ]]; then
BOTOCORE_PV=${PV}
 else
SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+   KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux"
 
# botocore is x.(y+3).z
BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"



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

2021-12-13 Thread Georgy Yakovlev
commit: e5616ee5399c0fe675fa804851973e2ac838be2b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:51:10 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:51:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5616ee5

virtual/dist-kernel: Stabilize 5.4.164 ppc64, #829122

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

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

diff --git a/virtual/dist-kernel/dist-kernel-5.4.164.ebuild 
b/virtual/dist-kernel/dist-kernel-5.4.164.ebuild
index 11d6573ded7c..cffc4720f148 100644
--- a/virtual/dist-kernel/dist-kernel-5.4.164.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.4.164.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 RDEPEND="
|| (



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

2021-12-13 Thread Georgy Yakovlev
commit: f49fd66d08376abafdd677ca85e967c81ff20e2e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:50:58 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:51:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f49fd66d

sys-kernel/gentoo-kernel: Stabilize 5.10.84 ppc64, #829123

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

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

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild
index d6068a2082d6..db5fa6be46e5 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.84.ebuild
@@ -39,7 +39,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~x86"
 IUSE="debug hardened"
 REQUIRED_USE="arm? ( savedconfig )"
 



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

2021-12-13 Thread Georgy Yakovlev
commit: 426bf2df0f52290e0d8c34a4954c1281a95539a6
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:51:11 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:51:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=426bf2df

sys-kernel/gentoo-kernel: Stabilize 5.4.164 ppc64, #829122

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

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

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.164.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.164.ebuild
index d08e589ffcc8..4622a99f7e95 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.164.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.164.ebuild
@@ -39,7 +39,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 IUSE="debug"
 
 RDEPEND="



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

2021-12-13 Thread Georgy Yakovlev
commit: ecf8bdea2806d89965ffe7b5d50f35ca9edaf1ac
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:50:46 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:51:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecf8bdea

virtual/dist-kernel: Stabilize 5.10.84 ppc64, #829123

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

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

diff --git a/virtual/dist-kernel/dist-kernel-5.10.84.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.84.ebuild
index 3df38272de32..00a3441127f5 100644
--- a/virtual/dist-kernel/dist-kernel-5.10.84.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.10.84.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc64 ~x86"
 
 RDEPEND="
|| (



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

2021-12-13 Thread Sam James
commit: b4878bbf92012b664886c275514cca0bf50f2897
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:41:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:41:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4878bbf

dev-util/clazy: allow LLVM 13

Omitted by mistake.

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

 dev-util/clazy/{clazy-1.10-r1.ebuild => clazy-1.10-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/clazy/clazy-1.10-r1.ebuild 
b/dev-util/clazy/clazy-1.10-r2.ebuild
similarity index 98%
rename from dev-util/clazy/clazy-1.10-r1.ebuild
rename to dev-util/clazy/clazy-1.10-r2.ebuild
index 4aa0c7104756..f482a18606ed 100644
--- a/dev-util/clazy/clazy-1.10-r1.ebuild
+++ b/dev-util/clazy/clazy-1.10-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-LLVM_MAX_SLOT=12
+LLVM_MAX_SLOT=13
 PYTHON_COMPAT=( python3_{8,9,10} )
 inherit cmake llvm python-any-r1
 



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

2021-12-13 Thread Sam James
commit: d52f48534c3b14d18427e54f63c46bcc393febac
Author: Niklāvs Koļesņikovs <89q1r14hd  relay  firefox  com>
AuthorDate: Mon Dec 13 14:37:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:40:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52f4853

media-video/wireplumber: bump to EAPI 8 and update PW minimum version

Signed-off-by: Niklāvs Koļesņikovs <89q1r14hd  relay.firefox.com>
Closes: https://github.com/gentoo/gentoo/pull/23289
Signed-off-by: Sam James  gentoo.org>

 media-video/wireplumber/wireplumber-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/wireplumber/wireplumber-.ebuild 
b/media-video/wireplumber/wireplumber-.ebuild
index 4773af0d6c42..a9fdc9cb8744 100644
--- a/media-video/wireplumber/wireplumber-.ebuild
+++ b/media-video/wireplumber/wireplumber-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 LUA_COMPAT=( lua5-{3,4} )
 
@@ -40,7 +40,7 @@ BDEPEND="
 DEPEND="
${LUA_DEPS}
>=dev-libs/glib-2.62
-   >=media-video/pipewire-0.3.39
+   >=media-video/pipewire-0.3.41
virtual/libc
elogind? ( sys-auth/elogind )
systemd? ( sys-apps/systemd )



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

2021-12-13 Thread Sam James
commit: eb645c2a5d7d01f0d6f551d0347739bdf993e9df
Author: Sam James  gentoo  org>
AuthorDate: Mon Dec 13 22:40:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Dec 13 22:40:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb645c2a

media-video/pipewire: add 0.3.41

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

 media-video/pipewire/Manifest   |   1 +
 media-video/pipewire/pipewire-0.3.41.ebuild | 297 
 2 files changed, 298 insertions(+)

diff --git a/media-video/pipewire/Manifest b/media-video/pipewire/Manifest
index e94a104be026..d3c4041bbd66 100644
--- a/media-video/pipewire/Manifest
+++ b/media-video/pipewire/Manifest
@@ -2,3 +2,4 @@ DIST pipewire-0.3.30.tar.gz 1540950 BLAKE2B 
69b35743e3ad9a8caf68d9bb16cf395203ef
 DIST pipewire-0.3.36.tar.gz 1708209 BLAKE2B 
20fce0d7f88347fe594491d4fae7b6a8edee67ff7749f1a40b807a5d5094d792e61e3efd05dca2221f781c263e34ff0a50ad3c162231911d4b1d87704df6c775
 SHA512 
f0fc68ea005018b420a4f65a24dc9c85eb6263c24e66852a7ce2b03f966990d62487b388c7d73ff5adfc10c80c439b1200ae876e41d78f91db190036a1799a14
 DIST pipewire-0.3.38.tar.gz 1727371 BLAKE2B 
dac7f3e1992b9690195df1dbc04575d386d21d06d1727b004b851e300709b3707806b7b20d36c1e74225d91a2df5428c913376903b286592f87083857347e53e
 SHA512 
c3c6c822bf4e5e77fed8d6ef09059d3e43195957692ab7baddc349af3d759d892a9af0e7802d389e2a9a15e5fece4c08ec963ac42df931233eec6057bad67eb6
 DIST pipewire-0.3.40.tar.gz 1675384 BLAKE2B 
b7df4f1ca363b764a5230099d32dd5ba5dceaadc8ca2d4ce55f42810a91628b4e32891757b22fd5eb7a7f497163936c63b86330ab2d5efa261a82d450660c371
 SHA512 
63109b87d50be160a6cde632470849564d4743f4cb469f5e3713bb1cbefc08f80416210ddedc09439555b702193c0266a1b9724e366a3b850bdf1a346c5e80cb
+DIST pipewire-0.3.41.tar.gz 1704856 BLAKE2B 
69370630055daf381e9700faf0c153fc2aaeef4fd1da9a4010e2b52ed1edb3d01fd33a3ddb74a697d0ab320b3a820f195f8c077c4deed5b6d31003604cf9c3f1
 SHA512 
ecd9ef5c0cf2edc583606d0b8633d5060e251aa04b8f562b8214a6685d6e29ec211bac4c19dec35c993bc51d98b252e8926217b48f879f06c625282637abea77

diff --git a/media-video/pipewire/pipewire-0.3.41.ebuild 
b/media-video/pipewire/pipewire-0.3.41.ebuild
new file mode 100644
index ..93882727fc56
--- /dev/null
+++ b/media-video/pipewire/pipewire-0.3.41.ebuild
@@ -0,0 +1,297 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit meson-multilib optfeature prefix python-any-r1 systemd udev
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/${PN}/${PN}.git;
+   inherit git-r3
+else
+   
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Multimedia processing graphs"
+HOMEPAGE="https://pipewire.org/;
+
+LICENSE="MIT LGPL-2.1+ GPL-2"
+SLOT="0/0.3"
+IUSE="bluetooth doc echo-cancel extra gstreamer jack-client jack-sdk 
pipewire-alsa systemd test v4l"
+
+# Once replacing system JACK libraries is possible, it's likely that
+# jack-client IUSE will need blocking to avoid users accidentally
+# configuring their systems to send PW sink output to the emulated
+# JACK's sink - doing so is likely to yield no audio, cause a CPU
+# cycles consuming loop (and may even cause GUI crashes)!
+
+REQUIRED_USE="jack-sdk? ( !jack-client )"
+
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   >=dev-util/meson-0.59
+   virtual/pkgconfig
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/docutils[${PYTHON_USEDEP}]')
+   doc? (
+   app-doc/doxygen
+   media-gfx/graphviz
+   )
+"
+RDEPEND="
+   acct-group/audio
+   media-libs/alsa-lib
+   sys-apps/dbus[${MULTILIB_USEDEP}]
+   sys-libs/readline:=
+   sys-libs/ncurses:=[unicode(+)]
+   virtual/libintl[${MULTILIB_USEDEP}]
+   virtual/libudev[${MULTILIB_USEDEP}]
+   bluetooth? (
+   media-libs/fdk-aac
+   media-libs/libldac
+   media-libs/libfreeaptx
+   media-libs/sbc
+   >=net-wireless/bluez-4.101:=
+   )
+   echo-cancel? ( media-libs/webrtc-audio-processing:0 )
+   extra? (
+   >=media-libs/libsndfile-1.0.20
+   )
+   gstreamer? (
+   >=dev-libs/glib-2.32.0:2
+   >=media-libs/gstreamer-1.10.0:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   jack-client? ( >=media-sound/jack2-1.9.10:2[dbus] )
+   jack-sdk? (
+   !media-sound/jack-audio-connection-kit
+   !media-sound/jack2
+   )
+   pipewire-alsa? (
+   >=media-libs/alsa-lib-1.1.7[${MULTILIB_USEDEP}]
+   !media-plugins/alsa-plugins[${MULTILIB_USEDEP},pulseaudio]
+   )
+   !pipewire-alsa? ( 
media-plugins/alsa-plugins[${MULTILIB_USEDEP},pulseaudio] )
+   systemd? ( sys-apps/systemd )
+   v4l? ( 

[gentoo-commits] repo/gentoo:master commit in: net-fs/ksmbd-tools/

2021-12-13 Thread Georgy Yakovlev
commit: 2be591af38151603e81fc03ea1d3188b1242bb79
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:38:00 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:38:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be591af

net-fs/ksmbd-tools: revbump, actually install openrc files

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

 ...4.3_pre20212111.ebuild => ksmbd-tools-3.4.3_pre20212111-r1.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild 
b/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r1.ebuild
similarity index 94%
rename from net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild
rename to net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r1.ebuild
index fc4deb510fbd..f2b872530486 100644
--- a/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild
+++ b/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111-r1.ebuild
@@ -52,6 +52,8 @@ src_install() {
insinto /etc/ksmbd
doins smb.conf.example
 
-   # TODO: openrc service
+   newinitd "${FILESDIR}/initd" ksmbd 
+   newconfd "${FILESDIR}/confd" ksmbd
+
systemd_dounit ksmbd.service
 }



[gentoo-commits] repo/gentoo:master commit in: net-fs/ksmbd-tools/, net-fs/ksmbd-tools/files/

2021-12-13 Thread Georgy Yakovlev
commit: 160c2caff897a88545e9f4e0d8ccd889ffa3fb85
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Dec 13 22:28:18 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Dec 13 22:30:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160c2caf

net-fs/ksmbd-tools: add initial version of openrc files

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

 net-fs/ksmbd-tools/files/confd |  5 
 net-fs/ksmbd-tools/files/initd | 32 ++
 .../ksmbd-tools-3.4.3_pre20212111.ebuild   |  2 +-
 3 files changed, 38 insertions(+), 1 deletion(-)

diff --git a/net-fs/ksmbd-tools/files/confd b/net-fs/ksmbd-tools/files/confd
new file mode 100644
index ..81248468d530
--- /dev/null
+++ b/net-fs/ksmbd-tools/files/confd
@@ -0,0 +1,5 @@
+# /etc/conf.d/ksmbd: config file for /etc/init.d/ksmbd
+#
+
+# Full path to config file. /etc/ksmbd/smb.conf is default if not set.
+#KSMBD_CONF="/etc/ksmbd/smb.conf"

diff --git a/net-fs/ksmbd-tools/files/initd b/net-fs/ksmbd-tools/files/initd
new file mode 100644
index ..1492c15444e9
--- /dev/null
+++ b/net-fs/ksmbd-tools/files/initd
@@ -0,0 +1,32 @@
+#!/sbin/openrc-run
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+KSMBD_CONF="${KSMBD_CONF:-/etc/ksmbd/smb.conf}"
+
+depend() {
+   need localmount 
+   use net 
+}
+
+description="ksmbd userspace daemon"
+
+command="/usr/sbin/ksmbd.mountd"
+command_control="/usr/sbin/ksmbd.control"
+command_args="-s"
+
+required_files="${KSMBD_CONF}"
+
+start_pre() {
+   /sbin/modprobe ksmbd || return 1
+}
+
+stop() {
+   ebegin "Stopping ${RC_SVCNAME}"
+   "${command_control} -s"
+   eend $?
+}
+
+stop_post() {
+   /sbin/modprobe -r -q ksmbd || return 0
+}

diff --git a/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild 
b/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild
index db27ead43cd4..fc4deb510fbd 100644
--- a/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild
+++ b/net-fs/ksmbd-tools/ksmbd-tools-3.4.3_pre20212111.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/cifsd-team/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${
 LICENSE="GPL-2+"
 SLOT="0"
 # no keywords for now, for testing.
-KEYWORDS=""
+#KEYWORDS="~amd64"
 
 DEPEND="
dev-libs/glib:2



[gentoo-commits] proj/mozilla:master commit in: mail-client/thunderbird/files/, mail-client/thunderbird/, ...

2021-12-13 Thread Thomas Deutschmann
commit: ce47ac8d6cffc3a117d8c23ae568eb629f7822db
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 13 22:22:30 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 13 22:22:30 2021 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=ce47ac8d

mail-client/thunderbird: move package into a safe space

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

 mail-client/thunderbird/Manifest   |  123 ++-
 .../files/1000_fix_gentoo_preferences.patch|   25 -
 mail-client/thunderbird/files/distribution.ini |9 +
 .../thunderbird/files/gentoo-default-prefs.js  |7 +
 .../thunderbird/files/gentoo-hwaccel-prefs.js  |3 +
 .../thunderbird/files/icon/thunderbird-r2.desktop  |   30 +
 .../files/icon/thunderbird-unbranded.desktop   |   10 -
 .../thunderbird/files/icon/thunderbird.desktop |9 -
 .../files/thunderbird-gentoo-default-prefs.js-2|   10 -
 mail-client/thunderbird/files/thunderbird-r1.sh|  116 ++
 .../thunderbird/files/thunderbird-wayland.sh   |7 +
 mail-client/thunderbird/files/thunderbird-x11.sh   |7 +
 mail-client/thunderbird/files/thunderbird.sh   |  128 +++
 mail-client/thunderbird/metadata.xml   |   18 +-
 mail-client/thunderbird/thunderbird-68.7.0.ebuild  |  779 --
 .../thunderbird/thunderbird-91.4.0-r2.ebuild   | 1130 
 16 files changed, 1507 insertions(+), 904 deletions(-)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 1f43f71d..1632b291 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,58 +1,65 @@
-DIST 2013_update_libvpx_esr.patch 14356080 BLAKE2B 
e54473e9d70c7beb85762ceb39e02d8542e7b33c5f81ba4faab9a3762673fbe65868d2130ade3503f17c02c7890731748682e86aeb31369f6deca8ce9ee814eb
 SHA512 
d8ca55023b22516461275f4be96e22d7c0a4acc299f23e2db5e15f1eec09e4f08a2e10d2b3d10c697219d70dba948751c5be5ec0ba6ef85122c419bfb805a472
-DIST firefox-68.0-patches-12.tar.xz 17476 BLAKE2B 
bd788e24820f902f4ca908b0cf7a49a4c57e058915af1eb87233d19d91271092676c1ee4c67e88df2411ecccea47c4e735efdf95945954f2d9aac5cc2f9051f2
 SHA512 
8033a3c445eaddd28188b338534da16a4130b679a5f6673b3094524e47435890e6d454d7b67f81bbe21f80ef1b65fa7e6c27d71191ba70dd8ea87fc68463f9a7
-DIST gdata-provider-4.4.1.tar.xz 78728 BLAKE2B 
bfe04d714334c38c932d2186ffd859583176ef455b283534c5f8f9e1ab7dc13bdfb8c15db6007de482ab015afc2b8524aad725380bec75ee5f59ea81d6307ba9
 SHA512 
6c9b5ac41a1064bd1799d2a2f633c3064b27f1294ac3c8908cdef6c1d2eea7b602f2f7bf240b71f507fe9ad286588f030e12f49a41b3bed7bbcc99f3021369f9
-DIST lightning-6.2.5.tar.xz 1745976 BLAKE2B 
31e237f8d34ab2a2ac522767460467257d1f49d15fbe24f5b80dde9fb709ffafd0c0442d99c6643ce434cf7bdf0d670447f86da9fcdadc7ada6814431ef41e8a
 SHA512 
1e997bb91d484908f225cc6e971874d308e8a8e2451a3e678f8a74bcb9e360babbd1f8aebcafb3e628ef5b10eb697ee47af2bfedbc956fee71d99084c8816235
-DIST thunderbird-68.7.0-ar.xpi 617169 BLAKE2B 
383913959eb715b75e048d3244c00676af99e043f575a168eab698b49fe165fb2ae1258f8d991b3710fb3c8fbd7737118e5fa0f960ab14139902a2b0dd6a1042
 SHA512 
303669b6a8e27d08ce40bd6c5d70b9516110caf4012559263166b890ac37c94873a4377deacb1a888f2e2407ef7cda75c16e06df70e95323557061a2035ade22
-DIST thunderbird-68.7.0-ast.xpi 551299 BLAKE2B 
d1512027a8ea3f390d4e9aec3c431a5a015c32e9df1140102c63d4405e8629d8196f6557a4f777385a8185dd68c0f7d15b42d2de026a13723cbe65f986ad883b
 SHA512 
0ce499f794fdd0543f8d45c3caca50202f87edde1accc6b82d2f560fc7559772eede3700242040597af7cfee8252a9b23d5c2aa534a53cfc2a634a9608081c0e
-DIST thunderbird-68.7.0-be.xpi 646280 BLAKE2B 
5f841fe907361dcf0e9379a81b65453a8d0cae84e13f45b45572d91dcc0e5b3281419ec99eb8a8442e6c06e9fc17f17f0202556151ecb8b91360bca23cb6da61
 SHA512 
4504169a324374be237b0ea42eb40582f29f076e852a052ad340b43df0c1bf63bf5eddc513e3b53bb56d064af814a6ce142210cb605ec57040b2878d5c2b1b52
-DIST thunderbird-68.7.0-bg.xpi 646228 BLAKE2B 
73957e2d15489daf1781eb97367f93bacce048d8f748db46600e9f5f586ed8ecff8b08a1f895e9f2bed7a6caf781a0ce327e767f292a7614254d80826433ca4e
 SHA512 
1dbd035eef08f2f0ab040d1211c74cd7206f41eca2ec390554624c2f0041eb4fc525b0596693fe46ffbbfd31b1527cfa94ec83c9d70ad44c22c241cec10fd890
-DIST thunderbird-68.7.0-br.xpi 574853 BLAKE2B 
7c0d1fe819bc233126eb0ac71aae83d0d2d6ff6d8bdc41f878c8a523fcea789fdb9a804fa7d8675fe15ac3fbb551c2f5e10c720095d56b6f237f7ab03461aed9
 SHA512 
28bebfd4afc5cdef8c8dfdabf54ac92a460438c9689f7f50296374f429cf2974a8d7eb2317d0961181774bdbe88f6683999d76879b673191f3d66772e66a3b3e
-DIST thunderbird-68.7.0-ca.xpi 578441 BLAKE2B 
09223b64c8ea237984ac59f4f92edeb8f77e3cf2fe40f13630f6b94e6e72e797ebf3a898040ae0837ecafaaceca8978608da8d03d3a9968ed00d5d7d8603a07f
 SHA512 
152452db3a828f9a28c44b23ada822d6f7728aebe5c18ff906fa00db9f32270409365709e8596eee6d7ac2a7ab4248678f8ed143aed4c4b1091ef8b81a82b7a3
-DIST thunderbird-68.7.0-cs.xpi 603042 BLAKE2B 

[gentoo-commits] proj/mozilla:master commit in: www-client/seamonkey/, www-client/seamonkey/files/

2021-12-13 Thread Thomas Deutschmann
commit: eb32da589d3df515ea4a73f9aa2c7b32df18e65e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 13 22:17:29 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 13 22:17:29 2021 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=eb32da58

www-client/seamonkey: move package into a safe space

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

 www-client/seamonkey/Manifest  |  33 +-
 www-client/seamonkey/files/all-gentoo-1.js |   1 +
 .../files/seamonkey-2.53.7-ownertab.patch  | 236 +
 www-client/seamonkey/files/seamonkey.desktop   |   1 +
 www-client/seamonkey/metadata.xml  |  12 +-
 www-client/seamonkey/seamonkey-2.49.9.1_p0.ebuild  | 405 ---
 www-client/seamonkey/seamonkey-2.53.8.1-r2.ebuild  | 557 
 www-client/seamonkey/seamonkey-2.53.9-r2.ebuild| 558 +
 www-client/seamonkey/seamonkey-2.53.9.1-r2.ebuild  | 558 +
 9 files changed, 1925 insertions(+), 436 deletions(-)

diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest
index 01537d17..558ad935 100644
--- a/www-client/seamonkey/Manifest
+++ b/www-client/seamonkey/Manifest
@@ -1,23 +1,10 @@
-DIST chatzilla-SEA2_48_RELBRANCH.tar.bz2 440336 BLAKE2B 
3fe09e3d2ba698d95054cbb65aad66984cb859b0b6fd8ffca45593cc63f418c898cf022c9cfd41187c71631a74e62c9b300ca48d6cc9c791a600f3ea71544879
 SHA512 
cb695aa40543ebc1621739207c5e6c5d49b3dc6e9715543cb35abfdfdeddf899a62c2cbb76123297072682a94319944388a6428b39e458c8e3b412144943120c
-DIST dom-inspector-DOMI_2_0_17.tar.bz2 155095 BLAKE2B 
e67e90a09db4c5acd4f58d004992094bec38145d48f8aa4abf1b39289222aa9be0498ebc45f01c7e94e90936ffe8b0cb415e3fb42d09b4bb8855317b1b9b4522
 SHA512 
0b9915566270d1d6670075263fffb0c59f834c4bfae933e6da23747914f069918f6f3dcf1ab3de6ea3b456623ef6e008f2d2aadcad0da84e483cae02e11f0b9b
-DIST firefox-52.4-patches-02.tar.xz 14412 BLAKE2B 
9c15aa293dfc36efe1236d9b5736012a3efd0480f0d8eb243687b50245ccdb6e0ed13e564271569211eb767bd01ba3c7688c350005ce862403335dcc2e87bca7
 SHA512 
6befeaefc118bc161ad05eed619142814e5cf31aaeede3fb5618b1f5ace887e9e1fa6914320b513404380a426cfb0f45107435f92b2d7e95d95cd7c44e03ad96
-DIST seamonkey-2.46-patches-01.tar.xz 768 BLAKE2B 
e886f8c43cd856bb7cc4ea2a03c2a364bde1faef5c77156456d161c87867c52e0fb9bd348cc92330a22cff8ae0ebbab997b3d3985bb40c6c0883da4a35789f9c
 SHA512 
2bbf09c8285f9f1ef5e194da7c43a8d1bbd4f2366ba182c78a7be4f0c36f549eb8cfee5e42d2eea87ea5d6920b36196e901b31ddca94e792aa2d3fb28de097ad
-DIST seamonkey-2.49.9.1-cs.xpi 941974 BLAKE2B 
4de71b190c63e4284b5915ab3f9f9672026fd2375996df26064598a6e1859f3e9b56c668c63a4741c37471c23dadb6eefc018a1715d7afa3e5ced8477a16eb50
 SHA512 
c3b061e0b735c6949a0ce7f8be22c7818e6bd039de5284015b0ff63b8456f18bd51db9f3a3d1f9a5df2a6d0610043ea9e33f16ccd3ba64e20ac53e901196afd3
-DIST seamonkey-2.49.9.1-de.xpi 949902 BLAKE2B 
a51a5ccf0a86708b26c9394cc88d3a05f6108760933b5ccca92d54390090f379ab34b4d90796e77764bcba1fbb20a8ffe56f7cf5ba7aeefc80e0e01d3f5cc86b
 SHA512 
fb85fa867b5b9417190aa25cc678d68e3afed04bfe052896167aaf46042397da6e1bbeb70acc321f46bd0bed4f0856152d80a348b478a336d28825c4120af1c6
-DIST seamonkey-2.49.9.1-en-GB.xpi 911789 BLAKE2B 
495cd6fcb8cde5dcbab636bad20e1da5f89dcfb3bbafea12fec1c2fc68bdf9145d533828163884dd25988f792839739a3374a233567820cdf97fb49c44d7228c
 SHA512 
973fc7f693abe9b87bd971f79e050bd4bd9a16e4e6f6a50d9298f2c71d45aa328c4279055382b7f9bf8c807dff9c1ab8855d97dbbe3eb4d71c40ee5e3a02f3b6
-DIST seamonkey-2.49.9.1-es-AR.xpi 952759 BLAKE2B 
fb882c78290507b7bd349ab01545c7263b983b156c26938fa77565658b55d567d3f057b177b2e98be0d83e5bfb21c3b9bf39f31ecbc4b406739afa6f3af5e5ec
 SHA512 
ec198ed919079e16bf638be032cc7de165d0e9d05d0742a12828b5ad510884d4dd0da57c0cbae85b3fe0089a1be26f42c9887957ab6ecac8b8ef6cf0fbbcb345
-DIST seamonkey-2.49.9.1-es-ES.xpi 897737 BLAKE2B 
6ddefeeff9b9d1c96b4dc8d068a179d92a353470329571e8b84962f3c667bdb06cd4f9851a64868958e99412d7eb7f3a3910edf48c4a73c86474283a8268c504
 SHA512 
e9fb5834f3086ee1cf99404930149f06ee7f3f0d5796550c3368b915ed9f729dbd92032682c6273b687b6f3077a4ca3a78192e101f1276d90ebf2eb71f39f22e
-DIST seamonkey-2.49.9.1-fr.xpi 969290 BLAKE2B 
ec7bbac2dda87d64486e36a18b18ab89c5940df2134704c5fa5af892c0b9669ff2cea81fb34355d383b6207c0993504afe052c5c435a4a402862a5c814debfe7
 SHA512 
188f4a8c79b10f95c807a08837290fbc3245c983e6797b8f8a0beea4f4ffad915abeb942920f9986910a0530218f4e35ba16de60b4f21d33116ae16756eb4e8c
-DIST seamonkey-2.49.9.1-hu.xpi 955174 BLAKE2B 
60784e962a43bf01630f76693b17954d4788daebb54d29f95ff5f3650ecd78b7067f1af20421d104feffaed10d08dfe1b25f8551969678bd4e1fe9b414a7edcf
 SHA512 
e28beb23242a6535230df4fd1adb82e8957487179402cb82dedc2faa6464b411d22ddb2732e0490a916597301eebf2fda727bcadb34e029bd468bd066dbc3080
-DIST seamonkey-2.49.9.1-it.xpi 793590 BLAKE2B 

[gentoo-commits] proj/mozilla:master commit in: media-libs/libpng/

2021-12-13 Thread Thomas Deutschmann
commit: f324fe114b3a9a905b23682a79986d098b29d61e
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Dec 13 22:04:18 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Dec 13 22:04:18 2021 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=f324fe11

media-libs/libpng: fork from ::gentoo

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

 media-libs/libpng/Manifest|  2 ++
 media-libs/libpng/libpng-1.6.37-r3.ebuild | 46 +++
 media-libs/libpng/metadata.xml| 23 
 3 files changed, 71 insertions(+)

diff --git a/media-libs/libpng/Manifest b/media-libs/libpng/Manifest
new file mode 100644
index ..cff7dcac
--- /dev/null
+++ b/media-libs/libpng/Manifest
@@ -0,0 +1,2 @@
+DIST libpng-1.6.37-apng.patch.gz 10334 BLAKE2B 
98660f2c13a78c93f937adf2859447cb0e6fa014b2ef6f0571c910593d94cc0a50137d271dbded0b571a3bc0ce4e9f765be48130ee4ae89884fb7292a1b0cf6e
 SHA512 
a9365257a33d67d7e7284494a37747bb1f3ab89f42a1730f2745c604538f59861828dc91d9bc1d08a5b79ab2f4eef1bb9e438dda1774b3548a1c56be77f8435f
+DIST libpng-1.6.37.tar.xz 1012272 BLAKE2B 
48e8f48a88e0db6fcbc0c0f1a4d5bda6e6c8b03255bacdc60e353256ae41ccc01b5b2a7e0e7b0dea236c53a3b9d1dd89d4bb19445afbebc37bf0f92691452424
 SHA512 
59e8c1059013497ae616a14c3abbe239322d3873c6ded0912403fc62fb260561768230b6ab997e23b868c09f539fd13635616b9fa0dd6279a3f63ec7e074

diff --git a/media-libs/libpng/libpng-1.6.37-r3.ebuild 
b/media-libs/libpng/libpng-1.6.37-r3.ebuild
new file mode 100644
index ..9459aa9c
--- /dev/null
+++ b/media-libs/libpng/libpng-1.6.37-r3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit libtool multilib-minimal
+
+DESCRIPTION="Portable Network Graphics library"
+HOMEPAGE="http://www.libpng.org/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz
+   apng? ( mirror://sourceforge/apng/${P}-apng.patch.gz )"
+
+LICENSE="libpng2"
+SLOT="0/16"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+IUSE="apng cpu_flags_arm_neon cpu_flags_x86_sse static-libs"
+
+RDEPEND=">=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+DOCS=( ANNOUNCE CHANGES libpng-manual.txt README TODO )
+
+src_prepare() {
+   default
+
+   eapply -p0 "${WORKDIR}"/${PN}-*-apng.patch
+   # Don't execute symbols check with apng patch wrt #378111
+   sed -i -e '/^check/s:scripts/symbols.chk::' Makefile.in || die
+
+   elibtoolize
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   $(use_enable cpu_flags_arm_neon arm-neon check)
+   $(use_enable cpu_flags_x86_sse intel-sse)
+   $(use_enable static-libs static)
+   )
+   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   default
+
+   find "${ED}" \( -type f -o -type l \) -name '*.la' -delete || die
+}

diff --git a/media-libs/libpng/metadata.xml b/media-libs/libpng/metadata.xml
new file mode 100644
index ..10e62abd
--- /dev/null
+++ b/media-libs/libpng/metadata.xml
@@ -0,0 +1,23 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   base-sys...@gentoo.org
+   Gentoo Base System
+   
+   
+   co...@gentoo.org
+   Codec project
+   
+   
+   support unofficial APNG (Animated PNG) 
spec
+   
+   
+   cpe:/a:libpng:libpng
+   glennrp/libpng
+   libpng
+   
+   
+   Reflect ABI compatibility for libpng.so.
+   
+



[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/superslicer/

2021-12-13 Thread Yahor Berdnikau
commit: e6e30a13e54a3cae07cb60ad9735ca8f37e22674
Author: Yahor Berdnikau  gmail  com>
AuthorDate: Mon Dec 13 21:53:12 2021 +
Commit: Yahor Berdnikau  gmail  com>
CommitDate: Mon Dec 13 21:54:17 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e6e30a13

media-gfx/superslicer: fix installation is missing the logo

Signed-off-by: Yahor Berdnikau  gmail.com>

 media-gfx/superslicer/Manifest  | 2 +-
 .../{superslicer-2.3.56.9.ebuild => superslicer-2.3.56.9-r1.ebuild} | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-gfx/superslicer/Manifest b/media-gfx/superslicer/Manifest
index b6a4f0ed2..62d0caae9 100644
--- a/media-gfx/superslicer/Manifest
+++ b/media-gfx/superslicer/Manifest
@@ -12,5 +12,5 @@ DIST superslicer-2.2.53.4.tar.gz 33791161 BLAKE2B 
c8454ac66a5d75f5bbcd1c29f60089
 DIST superslicer-2.3.56.9-profiles.zip 12193950 BLAKE2B 
c61be0190345bf886cbe60495f95266ec0b07824c803eaca7a29853a3465ab3d631d794899aebb9ef5f7660cb9341c70e9c38d6f8247a58655ed720deebbc584
 SHA512 
6beab170ae7e50e9880288673fd482f2903d5e9b87a0ddd6549098fa35f9b87e4891f015d0a26aedfac9736c3f55dcd1794d8abb3f9cc072bcdbb7e87f42a9fa
 DIST superslicer-2.3.56.9.tar.gz 32260311 BLAKE2B 
2da3201d789dd66a4a26c365b020f67dd5f43a71b9616681eb5dfed1ec759943398ce82fa2c8d5fd9a4f66a6887c25f0f86286ec4f52364a97a29cee548c3f0c
 SHA512 
05c57765770889dc365eb721a2e6491f16de5a03c03493a682c49b769435d6db6e0ad52c0cfced7aa402dc751e4fdcbfc0623fa82d8431e45a590e64b12b6769
 EBUILD superslicer-2.2.53.4.ebuild 2174 BLAKE2B 
1c3dfe391d225baf0d2b719906ae4533d47412eb6a87b18184f914cfe95bff927f0f528e9bef6794110a9bdc2057c90a49b7510eb6b855fed17ecdeedbaad659
 SHA512 
5db394567fd49f086012ba9bd7adc3c0b2793eae58433de98f42024dd0a15cc967d677163c9bdda7e97b20fc294ba5b00ca5229c6d383834dce976f9c13d8fc1
-EBUILD superslicer-2.3.56.9.ebuild 3374 BLAKE2B 
40f8173e21a5fd676a5f674d362669740d9a3b35c070218c0d674254c2bd9cf615b29c1a181129d937e1d877aefa54129839af26927ed4b50068c24a9a498a11
 SHA512 
fd785be9d565132f7709399ae6247d792036ec7cbb4cd961b6dfde6bcb99fcd8f168004a9a4ccb1d3ea3f936066311ebaebf74806252657d6b920677cc6fa742
+EBUILD superslicer-2.3.56.9-r1.ebuild 3498 BLAKE2B 
d1b51fe5666ca1f2b5e78f5c35b67a9bd1d3e48f8f867eba2adedd56c16c87c4f438cd920c3dd41d1f73ff1072914912622996524302235e249e79c2e3b77fbb
 SHA512 
00ed6c6ab90be2eea7b583440614315f1c69a3093c52043c615f9678b0219792161c1b67c8e83bb5033ac20c544699ab2103b90b84d24e7b6c9087e1442d8406
 MISC metadata.xml 469 BLAKE2B 
542259ec3961e5fbeae4a0fd894f2a289278a86039a9a7862e6ec2c745b32433ed9b6dbf6659a171f2decddea2018dc7e608404f4b7c99aa94d236a86fdc5b2d
 SHA512 
28a53bfcfc4ab83cf071f2d7e5ec939251b569d1a657bc725ee5530a7a1d18c67926fabb911dc48912a0bb43a2058fad84622f04e4fe3dd9838935d8cd3e4fb6

diff --git a/media-gfx/superslicer/superslicer-2.3.56.9.ebuild 
b/media-gfx/superslicer/superslicer-2.3.56.9-r1.ebuild
similarity index 96%
rename from media-gfx/superslicer/superslicer-2.3.56.9.ebuild
rename to media-gfx/superslicer/superslicer-2.3.56.9-r1.ebuild
index 5bef37976..7c8cfd99d 100644
--- a/media-gfx/superslicer/superslicer-2.3.56.9.ebuild
+++ b/media-gfx/superslicer/superslicer-2.3.56.9-r1.ebuild
@@ -74,6 +74,7 @@ src_unpack() {
mv "${S}/resources/icons/SuperSlicer_128px.png" 
"${S}/resources/icons/SuperSlicer2.3_128px.png" || die "Failed to rename icons"
mv "${S}/resources/icons/SuperSlicer-gcodeviewer_128px.png" 
"${S}/resources/icons/SuperSlicer2.3-gcodeviewer_128px.png" || die "Failed to 
rename icons"
mv "${S}/resources/icons/SuperSlicer-gcodeviewer_192px.png" 
"${S}/resources/icons/SuperSlicer2.3-gcodeviewer_192px.png" || die "Failed to 
rename icons"
+   cp "${S}/resources/icons/SuperSlicer.png" 
"${S}/resources/icons/SuperSlicer2.3_logo.png" || die "Failed to make logo icon"
 
use profiles && unpack ${P}-profiles.zip &&
if use profiles ; then



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

2021-12-13 Thread Conrad Kostecki
commit: e54bbe3e6366a6b14a6b99c4b4aef900d8705727
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 19:02:38 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:32:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e54bbe3e

games-server/minecraft-server: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/23290
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/minecraft-server.initd-r4| 62 --
 1 file changed, 62 deletions(-)

diff --git a/games-server/minecraft-server/files/minecraft-server.initd-r4 
b/games-server/minecraft-server/files/minecraft-server.initd-r4
deleted file mode 100644
index e81337a7d19f..
--- a/games-server/minecraft-server/files/minecraft-server.initd-r4
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-if [ "${SVCNAME}" = "minecraft-server" ]; then
-   instance="main"
-else
-   instance="${SVCNAME#minecraft-server.}"
-fi
-
-dtach_tmpfile="$(mktemp -u)"
-minecraft_command="/usr/bin/minecraft-server"
-minecraft_logs="/var/log/minecraft-server"
-minecraft_logs_instance="${minecraft_logs}/${instance}"
-minecraft_path="/var/lib/minecraft-server"
-minecraft_path_instance="${minecraft_path}/${instance}"
-name="Minecraft Server (World: ${instance})"
-pidfile="/run/minecraft-server.${instance}.pid"
-start_stop_daemon_args="--chdir ${minecraft_path_instance} --env 
JAVA_OPTS='${MINECRAFT_OPTS}'"
-
-description_attach="Attaches to the session (interactive console) of the 
Minecraft server"
-extra_started_commands="attach"
-
-command="/usr/bin/dtach"
-command_background="true"
-command_args="-N ${dtach_tmpfile} ${minecraft_command}"
-command_group="minecraft"
-command_user="minecraft"
-
-depend() {
-   use net
-}
-
-start_pre() {
-   checkpath -d -o "${command_user}:${command_group}" -q 
"${minecraft_path}" "${minecraft_path_instance}"
-
-   checkpath -f -o "${command_user}:${command_group}" -q 
"${minecraft_path_instance}"/eula.txt
-   echo "eula=true" > "${minecraft_path_instance}"/eula.txt
-
-   checkpath -d -o "${command_user}:${command_group}" -q 
"${minecraft_logs}" "${minecraft_logs_instance}"
-
-   if [ ! -L "${minecraft_path_instance}"/logs ]; then
-   cd "${minecraft_path_instance}" && ln -s 
../../../log/minecraft-server/"${instance}" logs
-   fi
-
-   if [ -z "${MINECRAFT_OPTS}" ]; then
-   eerror "You must define 'MINECRAFT_OPTS' in 
'/etc/conf.d/${SVCNAME}'!"
-   return 1
-   fi
-}
-
-attach() {
-   pidnumber="$(cat ${pidfile})"
-   dtach_tmpfile="$(cat /proc/${pidnumber}/cmdline | tr '\0' ' ' | awk 
'{print $3}')"
-
-   if [ -S "${dtach_tmpfile}" ]; then
-   eval "${command}" -a "${dtach_tmpfile}" "${DTACH_OPTS}"
-   else
-   eerror "The determined socket file for dtach could not be 
found!"
-   eerror "Did the process crash?"
-   fi
-}



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

2021-12-13 Thread Conrad Kostecki
commit: 3bb459720fab4c2369727e29c7e9118cd8912c05
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Dec 13 21:33:04 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:33:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb45972

sys-apps/cpuid: add 20211210

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

 sys-apps/cpuid/Manifest  |  1 +
 sys-apps/cpuid/cpuid-20211210.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
index 336d08f2e607..ce6f888c5edb 100644
--- a/sys-apps/cpuid/Manifest
+++ b/sys-apps/cpuid/Manifest
@@ -1,2 +1,3 @@
 DIST cpuid-20201006.src.tar.gz 118994 BLAKE2B 
05c547858358a92b0c9270066dc33e08693922e4ba765edcba7aca201811c54074a0cd683edb3e9dedf2bb0fd23682b3cc5725e4067b27ec27e0fe979eb22f56
 SHA512 
f037c1707b49e92f1bd605ec87a0995ae36215d075bcbadfed1d11f5fefda43391b48f10d2517334574aa7e243f0b73d22f1fcbfe1fb133aaf5bad1046e8ba5e
 DIST cpuid-20211129.src.tar.gz 128510 BLAKE2B 
8147296f7a7a60068ac491b9f53f8b5530bb33d8ab82558cc30a6385c747ae14cd583bc8e9f50d2bfbc3c952549e26ba042acc961222df25ce52468c1e7dadb3
 SHA512 
749b174660930f90b2ecc3b0b406717e37f77dafb9c722c0b01f84b3ebae05d8d6d7b1ad7c12aa3a11c9415cf67d42cdbede9bef8316b477e3b944a24a9d2daf
+DIST cpuid-20211210.src.tar.gz 129491 BLAKE2B 
8aba8449207c39f2082363664b61b55163c8f43804552304d0f9070522dbae867a757019a51f4526f9b85fa541811a8156d517b8ae53ad956a25a56b0d774251
 SHA512 
42d01890c40f90e6500f643bb4a7f5a8e76c8c76720062add79662a789e0d460d39383ea49a765f206038d72d1db7074d547500998e265ad12fee88af2dc175a

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



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

2021-12-13 Thread Conrad Kostecki
commit: 3643c615390a71be6221e2f8f855c87d990a3fcc
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Dec 13 21:33:19 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:33:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3643c615

sys-apps/cpuid: drop 20211129

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

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

diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
index ce6f888c5edb..fd0bcdb5924b 100644
--- a/sys-apps/cpuid/Manifest
+++ b/sys-apps/cpuid/Manifest
@@ -1,3 +1,2 @@
 DIST cpuid-20201006.src.tar.gz 118994 BLAKE2B 
05c547858358a92b0c9270066dc33e08693922e4ba765edcba7aca201811c54074a0cd683edb3e9dedf2bb0fd23682b3cc5725e4067b27ec27e0fe979eb22f56
 SHA512 
f037c1707b49e92f1bd605ec87a0995ae36215d075bcbadfed1d11f5fefda43391b48f10d2517334574aa7e243f0b73d22f1fcbfe1fb133aaf5bad1046e8ba5e
-DIST cpuid-20211129.src.tar.gz 128510 BLAKE2B 
8147296f7a7a60068ac491b9f53f8b5530bb33d8ab82558cc30a6385c747ae14cd583bc8e9f50d2bfbc3c952549e26ba042acc961222df25ce52468c1e7dadb3
 SHA512 
749b174660930f90b2ecc3b0b406717e37f77dafb9c722c0b01f84b3ebae05d8d6d7b1ad7c12aa3a11c9415cf67d42cdbede9bef8316b477e3b944a24a9d2daf
 DIST cpuid-20211210.src.tar.gz 129491 BLAKE2B 
8aba8449207c39f2082363664b61b55163c8f43804552304d0f9070522dbae867a757019a51f4526f9b85fa541811a8156d517b8ae53ad956a25a56b0d774251
 SHA512 
42d01890c40f90e6500f643bb4a7f5a8e76c8c76720062add79662a789e0d460d39383ea49a765f206038d72d1db7074d547500998e265ad12fee88af2dc175a

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



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-LibXML/files/

2021-12-13 Thread Conrad Kostecki
commit: 6ff25a46c0fe4cf26ca2b586b20406db39d91407
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 19:00:45 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:32:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ff25a46

dev-perl/XML-LibXML: remove unused patch(es)

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../XML-LibXML-2.12.800-disable-expanding.patch| 72 --
 1 file changed, 72 deletions(-)

diff --git 
a/dev-perl/XML-LibXML/files/XML-LibXML-2.12.800-disable-expanding.patch 
b/dev-perl/XML-LibXML/files/XML-LibXML-2.12.800-disable-expanding.patch
deleted file mode 100644
index 8be7783ef679..
--- a/dev-perl/XML-LibXML/files/XML-LibXML-2.12.800-disable-expanding.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-From 05749ae525317d05bd9d4232c080e530854f1d88 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= 
-Date: Fri, 30 Sep 2016 14:31:26 +0200
-Subject: [PATCH] Do not enable expanding entities by default
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Expanding external entity is insecure.
-.
-This patch makes expand_entities option disabled by default.
-
-CPAN RT#118032
-
-Signed-off-by: Petr Písař 

- LibXML.pm   | 2 +-
- docs/libxml.dbk | 2 +-
- t/43options.t   | 4 ++--
- 3 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/LibXML.pm b/LibXML.pm
-index eb3cbd6..9ab4748 100644
 a/LibXML.pm
-+++ b/LibXML.pm
-@@ -261,7 +261,7 @@ use constant {
-   HTML_PARSE_NOERROR  => (1<<5),   # suppress error reports
- };
- 
--$XML_LIBXML_PARSE_DEFAULTS = ( XML_PARSE_NODICT | XML_PARSE_DTDLOAD | 
XML_PARSE_NOENT );
-+$XML_LIBXML_PARSE_DEFAULTS = ( XML_PARSE_NODICT | XML_PARSE_DTDLOAD );
- 
- # this hash is made global so that applications can add names for new
- # libxml2 parser flags as temporary workaround
-diff --git a/docs/libxml.dbk b/docs/libxml.dbk
-index 30f279b..2c6674b 100644
 a/docs/libxml.dbk
-+++ b/docs/libxml.dbk
-@@ -1676,7 +1676,7 @@ local $XML::LibXML::setTagCompression = 
1;
- expand_entities
- 
- /parser, reader/
--  substitute entities; possible values are 0 and 1; default 
is 1
-+  substitute entities; possible values are 0 and 1; default 
is 0
- Note that although this flag disables entity substitution, 
it
- does not prevent the parser from loading external entities;
- when substitution of an external entity is disabled, the
-diff --git a/t/43options.t b/t/43options.t
-index 826f0ad..53dd35e 100644
 a/t/43options.t
-+++ b/t/43options.t
-@@ -50,7 +50,7 @@ no_network
- {
-   my $p = XML::LibXML->new();
-   for my $opt (@all) {
--my $ret = (($opt =~ /^(?:load_ext_dtd|expand_entities)$/) ? 1 : 0);
-+my $ret = (($opt =~ /^(?:load_ext_dtd)$/) ? 1 : 0);
- # TEST*$all
- ok(
- ($p->get_option($opt)||0) == $ret
-@@ -110,7 +110,7 @@ no_network
-   ok( $p->get_option('recover') == 2, ' TODO : Add test name' );
- 
-   # TEST
--  ok( $p->expand_entities() == 1, ' TODO : Add test name' );
-+  ok( $p->expand_entities() == 0, ' TODO : Add test name' );
-   # TEST
-   ok( $p->load_ext_dtd() == 1, ' TODO : Add test name' );
-   $p->load_ext_dtd(0);
--- 
-2.7.4
-



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Atom/files/

2021-12-13 Thread Conrad Kostecki
commit: 44d78a8dcf452e273057e71a57d87f31fb44a8cc
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 19:00:07 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:31:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d78a8d

dev-perl/XML-Atom: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch | 27 -
 .../XML-Atom/files/XML-Atom-0.42-testxxe.patch | 28 --
 2 files changed, 55 deletions(-)

diff --git a/dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch 
b/dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch
deleted file mode 100644
index c067fb6e0015..
--- a/dev-perl/XML-Atom/files/XML-Atom-0.42-dotinc.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From d2c045a8ca0d0ca147b04bc9e7c70b27db8cc4e1 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Mon, 26 Mar 2018 23:28:08 +1300
-Subject: Fix tests failing without '.' in @INC
-
-Bug: https://github.com/miyagawa/xml-atom/issues/12
-Bug: https://github.com/miyagawa/xml-atom/pull/14

- t/11-entry.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/11-entry.t b/t/11-entry.t
-index bbcb107..5955e97 100644
 a/t/11-entry.t
-+++ b/t/11-entry.t
-@@ -2,7 +2,7 @@
- 
- use strict;
- 
--use t::TestLib;
-+BEGIN { require './t/TestLib.pm'; t::TestLib->import() }
- use Test::More;
- use XML::Atom;
- use XML::Atom::Entry;
--- 
-2.16.2
-

diff --git a/dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch 
b/dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch
deleted file mode 100644
index a61fdb990049..
--- a/dev-perl/XML-Atom/files/XML-Atom-0.42-testxxe.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 919852dce98ce60abf494edfbe3c57d7a08545e4 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Mon, 26 Mar 2018 23:37:10 +1300
-Subject: Force setting exapnd-external-entities on libxml for this test
-
-Gentoo defaults expand-external-entities to off, which naturally breaks
-this test which explicitly uses external entities.
-
-Bug: https://bugs.gentoo.org/623678

- t/31-external-entities-libxml.t | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/t/31-external-entities-libxml.t b/t/31-external-entities-libxml.t
-index 71f6eb9..8c9df11 100644
 a/t/31-external-entities-libxml.t
-+++ b/t/31-external-entities-libxml.t
-@@ -51,6 +51,7 @@ EOX
- ## custom parser
- {
- my $libxml = XML::LibXML->new;
-+$libxml->expand_entities(1);
- my $entry = XML::Atom::Entry->new(Stream => \$xml, Parser => $libxml);
- is $entry->title, "Guest Author", "got title";
- my $content = $entry->content->body;
--- 
-2.16.2
-



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Unicode-EastAsianWidth/files/

2021-12-13 Thread Conrad Kostecki
commit: 8f7195b24e8c4a475954cc3afcf6b9d26a8250d7
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 18:59:28 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:30:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f7195b2

dev-perl/Unicode-EastAsianWidth: remove unused patch(es)

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../Unicode-EastAsianWidth/files/no-dot-inc.patch  | 25 --
 1 file changed, 25 deletions(-)

diff --git a/dev-perl/Unicode-EastAsianWidth/files/no-dot-inc.patch 
b/dev-perl/Unicode-EastAsianWidth/files/no-dot-inc.patch
deleted file mode 100644
index 16d42e582a42..
--- a/dev-perl/Unicode-EastAsianWidth/files/no-dot-inc.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 9cb5f1551566addf37a47e935164519842bab0d8 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Sun, 11 Jun 2017 16:10:47 +1200
-Subject: [PATCH] Fix for Perl 5.26 w/o '.' in @INC
-

- Makefile.PL | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index 6745b7c..2db030d 100644
 a/Makefile.PL
-+++ b/Makefile.PL
-@@ -1,6 +1,7 @@
- #!/usr/bin/perl
- use strict;
--use inc::Module::Package 'Au:dry 1';
-+use lib './inc';
-+use Module::Package 'Au:dry 1';
- 
- my $DefaultVersion  = 'v5.0.0';
- my $DefaultDate = '2006-02-15';
--- 
-2.13.1
-



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

2021-12-13 Thread Conrad Kostecki
commit: d42e308f4de574a36d1aed6090b906dc17507975
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 18:58:30 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:30:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d42e308f

dev-perl/Time-Format: remove unused patch(es)

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/Time-Format-1.12-datetimetest.patch  | 117 -
 .../Time-Format/files/Time-Format-1.12-nosig.patch |  91 
 2 files changed, 208 deletions(-)

diff --git a/dev-perl/Time-Format/files/Time-Format-1.12-datetimetest.patch 
b/dev-perl/Time-Format/files/Time-Format-1.12-datetimetest.patch
deleted file mode 100644
index b43f685c7b01..
--- a/dev-perl/Time-Format/files/Time-Format-1.12-datetimetest.patch
+++ /dev/null
@@ -1,117 +0,0 @@
-From 83aaff839cf3b6788d95a253bb02b366136d Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Fri, 16 Mar 2018 21:09:54 +1300
-Subject: Disable auto-probes for Date-Manip
-
-These are currently fragile and broken, and ultimately unnecessary
-on Gentoo (because we have the luxury of forcing a TZ, and if
-Date::Manip still doesn't work, that's a bigger bug we care about )
-
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=85001

- t/doc.t   | 15 ---
- t/funcs.t | 14 --
- t/manip.t | 17 -
- 3 files changed, 46 deletions(-)
-
-diff --git a/t/doc.t b/t/doc.t
-index c5bfe6f..b9ce2af 100755
 a/t/doc.t
-+++ b/t/doc.t
-@@ -9,19 +9,6 @@ BEGIN { $Time::Format::NOXS = 1 }
- BEGIN { use_ok 'Time::Format', qw(:all) }
- my $tl_notok;
- BEGIN { $tl_notok = eval('use Time::Local; 1')? 0 : 1 }
--my $dm_notok;
--my $dm_notz;
--BEGIN
--{
--$dm_notok = eval('use Date::Manip (); 1')? 0 : 1;
--unless ($dm_notok)
--{
--# If Date::Manip can't determine the time zone, it'll bomb out of the 
tests.
--$dm_notz = eval('Date::Manip::Date_TimeZone (); 1')? 0 : 1;
--}
--delete $INC{'Date/Manip.pm'};
--%Date::Manip:: = ();
--}
- 
- # Were all variables imported? (3)
- is ref tied %time, 'Time::Format'   =>  '%time imported';
-@@ -83,8 +70,6 @@ SKIP:
- # manip tests (3)
- SKIP:
- {
--skip 'Date::Manip not available', 3  if $dm_notok;
--skip 'Date::Manip cannot determine timezone', 3  if $dm_notz;
- is $manip{'%m/%d/%Y',"epoch $t"},   '06/05/2003'  
  => 'Example 13';
- is $manip{'%m/%d/%Y','first monday in November 2000'},  '11/06/2000'  
  => 'Example 14';
- is qq[$time{'mmdd',$manip{'%s',"epoch $t"}}],   '20030605'
  => 'Example 15';
-diff --git a/t/funcs.t b/t/funcs.t
-index 1e5bdb6..88f3fdc 100755
 a/t/funcs.t
-+++ b/t/funcs.t
-@@ -13,18 +13,6 @@ BEGIN {
- delete $INC{'POSIX.pm'};
- %POSIX:: = ();
- }
--my $manip_bad;
--my $manip_notz;
--BEGIN {
--$manip_bad = eval('use Date::Manip (); 1')? 0 : 1;
--unless ($manip_bad)
--{
--# If Date::Manip can't determine the time zone, it'll bomb out of the 
tests.
--$manip_notz = eval ('Date::Manip::Date_TimeZone (); 1')? 0 : 1;
--}
--delete $INC{'Date/Manip.pm'};
--%Date::Manip:: = ();
--}
- 
- # Get day/month names in current locale
- my ($Thursday, $Thu, $June, $Jun);
-@@ -71,8 +59,6 @@ SKIP:
- # time_manip tests (6)
- SKIP:
- {
--skip 'Date::Manip not available', 6 if $manip_bad;
--skip 'Date::Manip cannot determine timezone', 6 if $manip_notz;
- my $m = 'first thursday in june 2003';
- is time_manip('%Y',$m),  '2003'  => 'year';
- is time_manip('%d',$m),  '05'=> 'day of month';
-diff --git a/t/manip.t b/t/manip.t
-index 763ad59..6f94607 100755
 a/t/manip.t
-+++ b/t/manip.t
-@@ -5,28 +5,11 @@ use Test::More tests => 6;
- 
- BEGIN { $Time::Format::NOXS = 1 }
- BEGIN { use_ok 'Time::Format', qw(%manip) }
--my $manip_bad;
--BEGIN
--{
--unless (eval 'use Date::Manip (); 1')
--{
--$manip_bad = 'Date::Manip is not available';
--}
--else
--{
--# If Date::Manip can't determine the time zone, it'll bomb out of the 
tests.
--$manip_bad = 'Date::Manip cannot determine time zone'
--unless eval 'Date::Manip::Date_TimeZone(); 1';
--}
--delete $INC{'Date/Manip.pm'};
--%Date::Manip:: = ();
--}
- 
- my $t = 'first thursday in june 2003';
- 
- SKIP:
- {
--skip $manip_bad, 5 if $manip_bad;
- is $manip{'%Y',$t},  '2003'  => 'year';
- is $manip{'%d',$t},  '05'=> 'day of month';
- is $manip{'%D',$t},  '06/05/03'  => '%D';
--- 
-2.16.2
-

diff --git a/dev-perl/Time-Format/files/Time-Format-1.12-nosig.patch 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-LibXSLT/files/

2021-12-13 Thread Conrad Kostecki
commit: 2fe1e320e58573c02328ddb66721d00053904618
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 19:01:16 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:32:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe1e320

dev-perl/XML-LibXSLT: remove unused patch(es)

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/XML-LibXSLT-1.96-entityexpandtest.patch  | 29 --
 1 file changed, 29 deletions(-)

diff --git a/dev-perl/XML-LibXSLT/files/XML-LibXSLT-1.96-entityexpandtest.patch 
b/dev-perl/XML-LibXSLT/files/XML-LibXSLT-1.96-entityexpandtest.patch
deleted file mode 100644
index 3826ba5dc5d3..
--- a/dev-perl/XML-LibXSLT/files/XML-LibXSLT-1.96-entityexpandtest.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From a70778f1e263bce11b8749353a7a6a99e3f721fb Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Tue, 27 Mar 2018 16:00:45 +1300
-Subject: Force entity expansion
-
-Gentoo's XML::LibXML does not expand entities on its own by default
-and has to be configured to do so.
-
-Bug: https://bugs.gentoo.org/623192

- t/06entities.t | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/t/06entities.t b/t/06entities.t
-index 32bc395..3d5e791 100644
 a/t/06entities.t
-+++ b/t/06entities.t
-@@ -9,7 +9,7 @@ use XML::LibXSLT;
- my $parser = XML::LibXML->new();
- my $xslt = XML::LibXSLT->new();
- 
--# $parser->expand_entities(1);
-+$parser->expand_entities(1);
- 
- my $source = $parser->parse_string(qq{
- foo});
--- 
-2.16.2
-



[gentoo-commits] repo/gentoo:master commit in: dev-perl/URI-Fetch/files/

2021-12-13 Thread Conrad Kostecki
commit: 3e17e19cb9c1e4a882574e99f8ca7b7e0bccf7d7
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 18:59:48 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:30:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e17e19c

dev-perl/URI-Fetch: remove unused patch(es)

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/URI-Fetch-0.130.0-min-perl.patch | 61 --
 1 file changed, 61 deletions(-)

diff --git a/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch 
b/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch
deleted file mode 100644
index 1d7009309d51..
--- a/dev-perl/URI-Fetch/files/URI-Fetch-0.130.0-min-perl.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-https://bugs.gentoo.org/794676
-diff --git a/META.json b/META.json
-index 974e2a1..7ac7ad1 100644
 a/META.json
-+++ b/META.json
-@@ -28,7 +28,7 @@
- "URI" : "0",
- "base" : "0",
- "constant" : "0",
--"perl" : "5.008_001",
-+"perl" : "5.008001",
- "strict" : "0",
- "warnings" : "0"
-  }
-diff --git a/META.yml b/META.yml
-index d8902d3..388f6f1 100644
 a/META.yml
-+++ b/META.yml
-@@ -23,7 +23,7 @@ requires:
-   URI: '0'
-   base: '0'
-   constant: '0'
--  perl: 5.008_001
-+  perl: '5.008001'
-   strict: '0'
-   warnings: '0'
- resources:
-diff --git a/Makefile.PL b/Makefile.PL
-index d30a364..96baeaa 100644
 a/Makefile.PL
-+++ b/Makefile.PL
-@@ -2,7 +2,7 @@
- use strict;
- use warnings;
- 
--use 5.008_001;
-+use 5.008001;
- 
- use ExtUtils::MakeMaker;
- 
-@@ -15,7 +15,7 @@ my %WriteMakefileArgs = (
-   "DISTNAME" => "URI-Fetch",
-   "EXE_FILES" => [],
-   "LICENSE" => "perl",
--  "MIN_PERL_VERSION" => "5.008_001",
-+  "MIN_PERL_VERSION" => "5.008001",
-   "NAME" => "URI::Fetch",
-   "PREREQ_PM" => {
- "Carp" => 0,
-diff --git a/lib/URI/Fetch.pm b/lib/URI/Fetch.pm
-index 136669f..7615b54 100644
 a/lib/URI/Fetch.pm
-+++ b/lib/URI/Fetch.pm
-@@ -1,6 +1,6 @@
- package URI::Fetch;
- $URI::Fetch::VERSION = '0.13';
--use 5.008_001;
-+use 5.008001;
- use strict;
- use warnings;
- 



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

2021-12-13 Thread Conrad Kostecki
commit: 06d1a6936a4088b82876f2a6e42f59a883bec4b1
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 18:57:27 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:30:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06d1a693

dev-perl/Test-TCP: remove unused patch(es)

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../Test-TCP/files/Test-TCP-2.19-no-dot-inc.patch  | 160 -
 1 file changed, 160 deletions(-)

diff --git a/dev-perl/Test-TCP/files/Test-TCP-2.19-no-dot-inc.patch 
b/dev-perl/Test-TCP/files/Test-TCP-2.19-no-dot-inc.patch
deleted file mode 100644
index 151aad9d708d..
--- a/dev-perl/Test-TCP/files/Test-TCP-2.19-no-dot-inc.patch
+++ /dev/null
@@ -1,160 +0,0 @@
-From d197da690b5140f2276d6f577ad6e87a90ae8d47 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Thu, 11 Jan 2018 10:44:57 +1300
-Subject: Fix tests for '.' in @INC
-
-This is the smallest change that can be made that preserves original
-semantics
-
-Bug: https://bugs.gentoo.org/614342
-Bug: https://github.com/tokuhirom/Test-TCP/issues/58
-Bug: https://github.com/tokuhirom/Test-TCP/pull/62

- t/01_simple.t | 2 +-
- t/02_abrt.t   | 2 +-
- t/03_return_when_sigterm.t| 5 -
- t/04_die.t| 2 +-
- t/06_nest.t   | 2 +-
- t/08_exit.t   | 2 +-
- t/09_fork.t   | 2 +-
- t/10_oo.t | 2 +-
- t/12_pass_wait_port_options.t | 2 +-
- t/13_undef_port.t | 2 +-
- 10 files changed, 13 insertions(+), 10 deletions(-)
-
-diff --git a/t/01_simple.t b/t/01_simple.t
-index ff29244..dd8f801 100644
 a/t/01_simple.t
-+++ b/t/01_simple.t
-@@ -4,7 +4,7 @@ use Test::More;
- use Test::TCP;
- use Net::EmptyPort qw(can_bind);
- use IO::Socket::IP;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- sub doit {
- my $host = shift;
-diff --git a/t/02_abrt.t b/t/02_abrt.t
-index 10d0996..94e21c2 100644
 a/t/02_abrt.t
-+++ b/t/02_abrt.t
-@@ -4,7 +4,7 @@ use Test::TCP;
- use Test::More;
- use Socket;
- use IO::Socket::INET;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- plan skip_all => "win32 doesn't support embedded function named dump()" if 
$^O eq 'MSWin32';
- plan tests => 2;
-diff --git a/t/03_return_when_sigterm.t b/t/03_return_when_sigterm.t
-index 228fd2a..6751492 100644
 a/t/03_return_when_sigterm.t
-+++ b/t/03_return_when_sigterm.t
-@@ -2,7 +2,10 @@ use warnings;
- use strict;
- use Test::More tests => 2;
- use Test::TCP;
--use t::Server;
-+BEGIN {
-+  require './t/Server.pm';
-+  t::Server->import();
-+}
- 
- # ABOUT: some tcp server related software returns control when received 
SIGTERM instead of exit.
- # This test emulate it's situation.
-diff --git a/t/04_die.t b/t/04_die.t
-index f393d51..e745e2e 100644
 a/t/04_die.t
-+++ b/t/04_die.t
-@@ -3,7 +3,7 @@ use strict;
- use Test::More tests => 9;
- use Test::TCP;
- use IO::Socket::INET;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- my $child_pid;
- eval {
-diff --git a/t/06_nest.t b/t/06_nest.t
-index 18edfab..8240a98 100644
 a/t/06_nest.t
-+++ b/t/06_nest.t
-@@ -2,7 +2,7 @@ use strict;
- use warnings;
- use Test::TCP;
- use Test::More tests => 1;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- test_tcp(
- client => sub {
-diff --git a/t/08_exit.t b/t/08_exit.t
-index 5aaeac4..2f05126 100644
 a/t/08_exit.t
-+++ b/t/08_exit.t
-@@ -4,7 +4,7 @@ use Test::More tests => 5;
- use Test::TCP;
- use File::Temp ();
- use Fcntl qw/:seek/;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- use POSIX;
- 
- my $tmp = File::Temp->new();
-diff --git a/t/09_fork.t b/t/09_fork.t
-index 82f8a4c..eea84b2 100644
 a/t/09_fork.t
-+++ b/t/09_fork.t
-@@ -1,7 +1,7 @@
- use strict;
- use Test::More tests => 6;
- use Test::TCP;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- test_tcp 
- client => sub {
-diff --git a/t/10_oo.t b/t/10_oo.t
-index 237e430..29149a6 100644
 a/t/10_oo.t
-+++ b/t/10_oo.t
-@@ -3,7 +3,7 @@ use strict;
- use Test::More tests => 24;
- use Test::TCP;
- use IO::Socket::INET;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- my $server = Test::TCP->new(
- code => sub {
-diff --git a/t/12_pass_wait_port_options.t b/t/12_pass_wait_port_options.t
-index 24891f6..fe2927b 100644
 a/t/12_pass_wait_port_options.t
-+++ b/t/12_pass_wait_port_options.t
-@@ -4,7 +4,7 @@ use utf8;
- use Test::More;
- use Test::TCP;
- use IO::Socket::INET;
--use t::Server;
-+BEGIN { require './t/Server.pm' }
- 
- my %wait_port_args;
- my $old = \::EmptyPort::wait_port;
-diff --git a/t/13_undef_port.t b/t/13_undef_port.t
-index 5a7cce3..7e9f21b 100644
 a/t/13_undef_port.t
-+++ b/t/13_undef_port.t
-@@ -3,7 +3,7 @@ use strict;
- use Test::More 

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

2021-12-13 Thread Conrad Kostecki
commit: 7596e390029768e227ae7e15486c6f31d8c0d5a1
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 18:58:54 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:30:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7596e390

dev-perl/tkispell: remove unused patch

Bug: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-perl/tkispell/files/tkispell-0.18-aspell.patch | 46 --
 1 file changed, 46 deletions(-)

diff --git a/dev-perl/tkispell/files/tkispell-0.18-aspell.patch 
b/dev-perl/tkispell/files/tkispell-0.18-aspell.patch
deleted file mode 100644
index 14c080db3cf3..
--- a/dev-perl/tkispell/files/tkispell-0.18-aspell.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From ed7ede66c01fbae6c5de0e6dc28d991a1f27016c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= 
-Date: Sat, 11 Oct 2014 21:48:27 +1300
-Subject: Patch to use aspell instead of ispell
-

- Makefile.PL | 8 
- tkispell| 2 +-
- 2 files changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/Makefile.PL b/Makefile.PL
-index 4cebdea..8a49493 100644
 a/Makefile.PL
-+++ b/Makefile.PL
-@@ -1,11 +1,11 @@
- use ExtUtils::MakeMaker;
- 
--my $ispell_bin = `which ispell`;
-+my $ispell_bin = `which ispell-aspell`;
- # The first match is for Solaris which.  The second is for 
- # Linux which.
--if (($ispell_bin =~ /no ispell/) || (length($ispell_bin) == 0)) {
--print "Could not find locate ispell.  Make sure that\n";
--print "the ispell program is installed in a directory\n";
-+if (($ispell_bin =~ /no ispell-aspell/) || (length($ispell_bin) == 0)) {
-+print "Could not find locate ispell-aspell.  Make sure that\n";
-+print "the ispell-aspell program is installed in a directory\n";
- print "named in the PATH environment variable.\n";  
- exit 1;
- }
-diff --git a/tkispell b/tkispell
-index fbc6cc7..6bde051 100644
 a/tkispell
-+++ b/tkispell
-@@ -14,7 +14,7 @@ my $lang = $ENV{LANG};
- if ($lang =~ /^C$/ || ! defined ($lang)) {$lang = 'default'; }
- my $hdict = $ENV{HOME}."/.ispell_$lang"; # Personal dictionary. 
- 
--my $ispell_prog = `which ispell`;  
-+my $ispell_prog = `which ispell-aspell`;
- chomp $ispell_prog;
- my ($cw, $b1, @misspelledlist, @replacementlist, @addlist, $midx);
- my $ifname = '';
--- 
-2.16.2
-



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Template-Toolkit/files/

2021-12-13 Thread Conrad Kostecki
commit: fd4c039396ef06813e5db7760cbb867094a02f25
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Mon Dec 13 18:56:41 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Dec 13 21:29:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd4c0393

dev-perl/Template-Toolkit: remove unused patch(es)

Closes: https://github.com/gentoo/gentoo/pull/23291
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/Template-Toolkit-2.27-cgipm.patch| 66 --
 .../files/Template-Toolkit-2.27-no-dot-inc.patch   | 54 --
 2 files changed, 120 deletions(-)

diff --git a/dev-perl/Template-Toolkit/files/Template-Toolkit-2.27-cgipm.patch 
b/dev-perl/Template-Toolkit/files/Template-Toolkit-2.27-cgipm.patch
deleted file mode 100644
index 422cc851838f..
--- a/dev-perl/Template-Toolkit/files/Template-Toolkit-2.27-cgipm.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From e723aeecf60ece32f6a1381f5c026ae08cae9913 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Sat, 13 Jan 2018 13:48:31 +1300
-Subject: Fix tests warning w/ CGI.pm
-
-This currently seems like an intractable problem with the syntax of
-Template::Toolkit forcing list context by default on called functions.
-
-The only real way around this is to either:
-
-A) always use Template::Plugin::Scalar to enforce scalar context
-B) abuse cgi.multi_param to simply silence the warning and being an
-   adult about the fact "yes, this returns a list, make sure you do the
-   right thing with that"
-
-Bug: https://rt.cpan.org/Ticket/Display.html?id=100503

- t/cgi.t | 16 ++--
- 1 file changed, 10 insertions(+), 6 deletions(-)
-
-diff --git a/t/cgi.t b/t/cgi.t
-index 023ab5ab..6086e145 100644
 a/t/cgi.t
-+++ b/t/cgi.t
-@@ -49,28 +49,32 @@ sub barf {
- 
- __END__
- -- test --
-+[% USE scalar -%]
- [% USE cgi = CGI('id=abw=Andy+Wardley'); global.cgi = cgi -%]
--name: [% global.cgi.param('name') %]
-+name: [% global.cgi.scalar.param('name') %]
- -- expect --
- name: Andy Wardley
- 
- -- test --
--name: [% global.cgi.param('name') %]
-+[% USE scalar -%]
-+name: [% global.cgi.scalar.param('name') %]
- 
- -- expect --
- name: Andy Wardley
- 
- -- test --
--[% FOREACH key = global.cgi.param.sort -%]
--   * [% key %] : [% global.cgi.param(key) %]
-+[% USE scalar -%]
-+[% FOREACH key = global.cgi.multi_param.sort -%]
-+   * [% key %] : [% global.cgi.scalar.param(key) %]
- [% END %]
- -- expect --
-* id : abw
-* name : Andy Wardley
- 
- -- test --
--[% FOREACH key = global.cgi.param().sort -%]
--   * [% key %] : [% global.cgi.param(key) %]
-+[% USE scalar -%]
-+[% FOREACH key = global.cgi.multi_param().sort -%]
-+   * [% key %] : [% global.cgi.scalar.param(key) %]
- [% END %]
- -- expect --
-* id : abw
--- 
-2.15.1
-

diff --git 
a/dev-perl/Template-Toolkit/files/Template-Toolkit-2.27-no-dot-inc.patch 
b/dev-perl/Template-Toolkit/files/Template-Toolkit-2.27-no-dot-inc.patch
deleted file mode 100644
index 97decd75cb14..
--- a/dev-perl/Template-Toolkit/files/Template-Toolkit-2.27-no-dot-inc.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 65e7f0e980e64dd0525eda058330cea06379c332 Mon Sep 17 00:00:00 2001
-From: Kent Fredric 
-Date: Sat, 13 Jan 2018 13:05:52 +1300
-Subject: Fix relative path handling in templates on Perl 5.26+
-
-NB: It doesn't seem like the value of "$compiled" is very useful in the
-failure case, as the expectation is that'd have been a falsey value at
-best, or a literal "undef" at worst, yeilding additional warnings.
-
-Bug: https://rt.cpan.org/Ticket/Display.html?id=121171
-Bug: https://bugs.gentoo.org/615704

- lib/Template/Provider.pm | 20 ++--
- 1 file changed, 18 insertions(+), 2 deletions(-)
-
-diff --git a/lib/Template/Provider.pm b/lib/Template/Provider.pm
-index 6ecb2453..61c3469c 100644
 a/lib/Template/Provider.pm
-+++ b/lib/Template/Provider.pm
-@@ -562,13 +562,29 @@ sub _compiled_filename {
- 
- sub _load_compiled {
- my ($self, $file) = @_;
-+
-+# Implicitly Relative paths are not supported
-+# by "require" and invoke @INC traversal, where relative
-+# paths only traditionally worked prior to Perl 5.26
-+# due to the presence of '.' in @INC
-+#
-+# Given load_compiled never wants to traverse @INC, forcing
-+# an absolute path for the loaded file and the INC key is
-+# sensible.
-+#
-+# NB: %INC Keys are always identical to their respective
-+# "require" invocations regardless of OS, and the only time
-+# one needs to care about slash direction is when dealing
-+# with Module::Name -> Module/Name.pm translation.
-+my $fpath = File::Spec->rel2abs( $file );
-+
- my $compiled;
- 
- # load compiled template via require();  we zap any
- # %INC entry to ensure it is reloaded (we don't
- # want 1 returned by require() to say it's 

  1   2   3   >