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

2022-10-10 Thread Miroslav Šulc
commit: 3e2c47134d37ef74c866c28b23a0d8da50f66906
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Tue Oct 11 05:44:16 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Oct 11 05:44:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e2c4713

media-libs/raptor: dropped obsolete 2.0.15-r[45]

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

 media-libs/raptor/raptor-2.0.15-r4.ebuild | 76 
 media-libs/raptor/raptor-2.0.15-r5.ebuild | 82 ---
 2 files changed, 158 deletions(-)

diff --git a/media-libs/raptor/raptor-2.0.15-r4.ebuild 
b/media-libs/raptor/raptor-2.0.15-r4.ebuild
deleted file mode 100644
index 2dfa758d4345..
--- a/media-libs/raptor/raptor-2.0.15-r4.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools libtool multilib-minimal
-
-MY_PN=${PN}2
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="The RDF Parser Toolkit"
-HOMEPAGE="https://librdf.org/raptor/;
-SRC_URI="https://download.librdf.org/source/${MY_P}.tar.gz;
-
-LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
-SLOT="2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE="+curl debug json static-libs unicode"
-
-DEPEND="
-   dev-libs/libxml2[${MULTILIB_USEDEP}]
-   dev-libs/libxslt[${MULTILIB_USEDEP}]
-   curl? ( net-misc/curl[${MULTILIB_USEDEP}] )
-   json? ( dev-libs/yajl[${MULTILIB_USEDEP}] )
-   unicode? ( dev-libs/icu:=[${MULTILIB_USEDEP}] )
-"
-RDEPEND="${DEPEND}
-   !media-libs/raptor:0
-"
-BDEPEND="
-   >=sys-devel/bison-3
-   >=sys-devel/flex-2.5.36
-   virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS=( AUTHORS ChangeLog NEWS NOTICE README )
-HTML_DOCS=( {NEWS,README,RELEASE,UPGRADING}.html )
-
-PATCHES=(
-   "${FILESDIR}/${P}-heap-overflow.patch"
-   "${FILESDIR}/${P}-dont_use_curl-config.patch" #552474
-   
"${FILESDIR}/0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch"
-)
-
-src_prepare() {
-   default
-   eautoreconf #552474
-   elibtoolize # Keep this for ~*-fbsd
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   # FIXME: It should be possible to use net-nntp/inn for libinn.h and 
-linn!
-
-   local myeconfargs=(
-   --with-html-dir="${EPREFIX}"/usr/share/gtk-doc/html
-   $(usex curl --with-www=curl --with-www=xml)
-   $(use_enable debug)
-   $(use_with json yajl)
-   $(use_enable static-libs static)
-   $(usex unicode 
--with-icu-config="${EPREFIX}"/usr/bin/icu-config '')
-   )
-
-   econf "${myeconfargs[@]}"
-}
-
-multilib_src_test() {
-   emake -j1 test
-}
-
-multilib_src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}

diff --git a/media-libs/raptor/raptor-2.0.15-r5.ebuild 
b/media-libs/raptor/raptor-2.0.15-r5.ebuild
deleted file mode 100644
index a84cd6a42455..
--- a/media-libs/raptor/raptor-2.0.15-r5.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools multilib-minimal
-
-MY_PN=${PN}2
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="The RDF Parser Toolkit"
-HOMEPAGE="https://librdf.org/raptor/;
-SRC_URI="https://download.librdf.org/source/${MY_P}.tar.gz;
-
-LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
-SLOT="2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
-IUSE="+curl debug json static-libs"
-
-DEPEND="
-   dev-libs/libxml2[${MULTILIB_USEDEP}]
-   dev-libs/libxslt[${MULTILIB_USEDEP}]
-   dev-libs/icu:=[${MULTILIB_USEDEP}]
-   sys-libs/zlib[${MULTILIB_USEDEP}]
-   curl? ( net-misc/curl[${MULTILIB_USEDEP}] )
-   json? ( dev-libs/yajl[${MULTILIB_USEDEP}] )
-"
-RDEPEND="${DEPEND}
-   !media-libs/raptor:0
-"
-BDEPEND="
-   >=sys-devel/bison-3
-   >=sys-devel/flex-2.5.36
-   virtual/pkgconfig
-"
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS=( AUTHORS ChangeLog NEWS NOTICE README )
-HTML_DOCS=( {NEWS,README,RELEASE,UPGRADING}.html )
-
-PATCHES=(
-   "${FILESDIR}/${P}-heap-overflow.patch"
-   "${FILESDIR}/${P}-dont_use_curl-config.patch" #552474
-   
"${FILESDIR}/0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch"
-   "${FILESDIR}/${P}-use-pkg-config-libxml2.patch"
-   "${FILESDIR}/${P}-use-pkg-config-icu.patch"
-   "${FILESDIR}/${P}-use-pkg-config-libxslt.patch"
-)
-
-src_prepare() {
-   default
-
-   # bug #552474
-   eautoreconf
-
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   # FIXME: It 

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

2022-10-10 Thread Miroslav Šulc
commit: b434611d8bbb2ce234e3fb151892f7fd54d3168b
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Mon Oct 10 12:35:21 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Oct 11 05:38:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b434611d

profiles/package.mask: last-rite dev-java/objenesis-test

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 6040ca9ee0ea..b4746616bf34 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Volkmar W. Pogatzki  (2022-10-10)
+# Unused Java library. Removal on 2022-11-10.
+dev-java/objenesis-test
+
 # Andreas Sturmlechner  (2022-10-08)
 # Obsolete after Plasma 5.25 release, merged into KWin.
 # Removal on 2022-10-22.



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

2022-10-10 Thread Miroslav Šulc
commit: bd1eae7276fab1d20fca8d5174d51953d1ea6e9a
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Mon Oct 10 12:25:11 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Tue Oct 11 05:38:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1eae72

dev-java/objenesis: drop 3.2

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

 dev-java/objenesis/Manifest |  1 -
 dev-java/objenesis/objenesis-3.2.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/dev-java/objenesis/Manifest b/dev-java/objenesis/Manifest
index f67c00dcae30..955ff2825c1c 100644
--- a/dev-java/objenesis/Manifest
+++ b/dev-java/objenesis/Manifest
@@ -1,2 +1 @@
-DIST objenesis-3.2.tar.gz 123629 BLAKE2B 
d875224d7a9fcf6173787edaca35f58f72d6c85ee443831be8050170ba826e8a155c7983c62ef5d01a1bb8331943dd6da5cb50eefb87cc0c7d3db540b01fcac3
 SHA512 
8f0bf9449191bce1823be0cbae85438edf595bde0483bb2fb4415a880b6715ae60826473bd5ee15789a7d0638932878dbdaaf7b42a6d582aa7bbf09124e97e3b
 DIST objenesis-3.3.tar.gz 125400 BLAKE2B 
36cff7cb5a2dca9a81f3ca07d56995f68d9c61c9d2b7caeac5f87bb13da02b0494053927e2221c776edef0bafb862f5c97dfc0e79cf991c6c970b5b9206a5aa3
 SHA512 
786fe0d2d1dba0f006d5218101578d8fd23616765f5cdb4df190d138fd10dd675b9189887c27a40b63f09ed5e1dac1324b2936c7ac24a655e6f63d53b9cd7c01

diff --git a/dev-java/objenesis/objenesis-3.2.ebuild 
b/dev-java/objenesis/objenesis-3.2.ebuild
deleted file mode 100644
index b752785e109c..
--- a/dev-java/objenesis/objenesis-3.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-# Skeleton command:
-# java-ebuilder --generate-ebuild --workdir . --pom objenesis-3.2/main/pom.xml 
--download-uri 
https://github.com/easymock/objenesis/archive/refs/tags/3.2.tar.gz --slot 0 
--keywords "~amd64 ~arm64 ~ppc64 ~x86" --ebuild objenesis-3.2.ebuild
-
-EAPI=7
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.objenesis:objenesis:3.2"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="A library for instantiating Java objects"
-HOMEPAGE="http://objenesis.org/;
-SRC_URI="https://github.com/easymock/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
-
-# Compile dependencies
-# POM: ${P}/main/pom.xml
-# test? junit:junit:4.13.2 -> >=dev-java/junit-4.13.2:4
-# test? org.objenesis:objenesis-test:3.2 -> >=dev-java/objenesis-test-3.2:0
-
-DEPEND="
-   >=virtual/jdk-1.8:*
-   test? (
-   >=dev-java/objenesis-test-3.2:0
-   )
-"
-
-RDEPEND="
-   >=virtual/jre-1.8:*
-"
-
-S="${WORKDIR}"
-
-JAVA_SRC_DIR="${P}/main/src/main/java"
-
-JAVA_TEST_GENTOO_CLASSPATH="junit-4,objenesis-test"
-JAVA_TEST_SRC_DIR="${P}/main/src/test/java"



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

2022-10-10 Thread Thomas Beierlein
commit: 9c5cb3e5ae603af9a954b70a122bbe0c974f75d2
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Tue Oct 11 05:31:54 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Tue Oct 11 05:33:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c5cb3e5

dev-libs/libzia: Fix build with MUSL

Closes: https://bugs.gentoo.org/832235
Signed-off-by: Thomas Beierlein  gentoo.org>

 dev-libs/libzia/libzia-4.34.ebuild | 10 --
 dev-libs/libzia/libzia-4.36.ebuild | 10 --
 2 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libzia/libzia-4.34.ebuild 
b/dev-libs/libzia/libzia-4.34.ebuild
index 7d83b69f0dae..e877cfb8b8ca 100644
--- a/dev-libs/libzia/libzia-4.34.ebuild
+++ b/dev-libs/libzia/libzia-4.34.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="Platform abstraction code for tucnak package"
 HOMEPAGE="http://tucnak.nagano.cz;
@@ -18,7 +18,8 @@ RDEPEND="dev-libs/glib:2
x11-libs/gtk+:2
media-libs/libsdl
media-libs/libpng:0
-   ftdi? ( dev-embedded/libftdi:1 )"
+   ftdi? ( dev-embedded/libftdi:1 )
+   elibc_musl? ( sys-libs/libunwind )"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
@@ -32,10 +33,15 @@ src_prepare() {
# Fix QA-Warning "QA Notice: pkg-config files with wrong LDFLAGS 
detected"
sed -i -e 's/@LDFLAGS@//' libzia.pc.in || die
 
+   # fix build for MUSL (bug #832235)
+   if use elibc_musl ; then
+   sed -i -e "s/ backtrace(/ unw_backtrace(/" src/zbfd.c || die
+   fi
eautoreconf
 }
 
 src_configure() {
+   use elibc_musl && append-libs -lunwind
econf \
$(use_with ftdi) --with-sdl \
--with-png --without-bfd \

diff --git a/dev-libs/libzia/libzia-4.36.ebuild 
b/dev-libs/libzia/libzia-4.36.ebuild
index 7d83b69f0dae..e877cfb8b8ca 100644
--- a/dev-libs/libzia/libzia-4.36.ebuild
+++ b/dev-libs/libzia/libzia-4.36.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit autotools
+inherit autotools flag-o-matic
 
 DESCRIPTION="Platform abstraction code for tucnak package"
 HOMEPAGE="http://tucnak.nagano.cz;
@@ -18,7 +18,8 @@ RDEPEND="dev-libs/glib:2
x11-libs/gtk+:2
media-libs/libsdl
media-libs/libpng:0
-   ftdi? ( dev-embedded/libftdi:1 )"
+   ftdi? ( dev-embedded/libftdi:1 )
+   elibc_musl? ( sys-libs/libunwind )"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 
@@ -32,10 +33,15 @@ src_prepare() {
# Fix QA-Warning "QA Notice: pkg-config files with wrong LDFLAGS 
detected"
sed -i -e 's/@LDFLAGS@//' libzia.pc.in || die
 
+   # fix build for MUSL (bug #832235)
+   if use elibc_musl ; then
+   sed -i -e "s/ backtrace(/ unw_backtrace(/" src/zbfd.c || die
+   fi
eautoreconf
 }
 
 src_configure() {
+   use elibc_musl && append-libs -lunwind
econf \
$(use_with ftdi) --with-sdl \
--with-png --without-bfd \



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activemodel-serializers-xml/

2022-10-10 Thread Hans de Graaff
commit: e61d8a28c96bbc7a2a995ee4b01b65c342061cef
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Oct  9 08:41:56 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 11 05:26:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e61d8a28

dev-ruby/activemodel-serializers-xml: drop 1.0.2-r1

Signed-off-by: Hans de Graaff  gentoo.org>

 .../activemodel-serializers-xml-1.0.2-r1.ebuild| 41 --
 1 file changed, 41 deletions(-)

diff --git 
a/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r1.ebuild
 
b/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r1.ebuild
deleted file mode 100644
index dd52b160933d..
--- 
a/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_TASK_TEST="MT_NO_PLUGINS=true"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="XML serialization for your Active Model objects and Active Record 
models"
-HOMEPAGE="https://github.com/rails/activemodel-serializers-xml;
-SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
-
-LICENSE="MIT"
-SLOT="$(ver_cut 1-2)"
-KEYWORDS="~amd64"
-IUSE=""
-
-ruby_add_rdepend "
-   >=dev-ruby/activesupport-5:*
-   >=dev-ruby/activemodel-5:*
-   =dev-ruby/builder-3*:* >=dev-ruby/builder-3.1:*
-"
-
-ruby_add_bdepend "test? (
-   >=dev-ruby/activerecord-5:*
-   dev-ruby/sqlite3
-)"
-
-all_ruby_prepare() {
-   sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
-
-   sed -i -e '/datetime.*created_at/ s:^:#:' test/helper.rb || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/activemodel-serializers-xml/

2022-10-10 Thread Hans de Graaff
commit: f7351ad5a2a790feb04938362452b2980c82e786
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Oct  9 08:43:31 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 11 05:26:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7351ad5

dev-ruby/activemodel-serializers-xml: avoid bundler depenency

Closes: https://bugs.gentoo.org/723588
Signed-off-by: Hans de Graaff  gentoo.org>

 .../activemodel-serializers-xml-1.0.2-r2.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r2.ebuild
 
b/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r2.ebuild
index 53a0293daf5d..80af092539bb 100644
--- 
a/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r2.ebuild
+++ 
b/dev-ruby/activemodel-serializers-xml/activemodel-serializers-xml-1.0.2-r2.ebuild
@@ -37,4 +37,6 @@ all_ruby_prepare() {
sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
 
sed -i -e '/datetime.*created_at/ s:^:#:' test/helper.rb || die
+
+   sed -i -e '/bundler/ s:^:#:' Rakefile || die
 }



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

2022-10-10 Thread Hans de Graaff
commit: 65fd92aa0633629493036aec3fb3459b45ac6db0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Oct 11 05:30:54 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Oct 11 05:30:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65fd92aa

dev-ruby/rspec-rails: add 6.0.0

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/rspec-rails/Manifest |  1 +
 dev-ruby/rspec-rails/rspec-rails-6.0.0.ebuild | 58 +++
 2 files changed, 59 insertions(+)

diff --git a/dev-ruby/rspec-rails/Manifest b/dev-ruby/rspec-rails/Manifest
index 83761a75363b..1fbb04e6ff03 100644
--- a/dev-ruby/rspec-rails/Manifest
+++ b/dev-ruby/rspec-rails/Manifest
@@ -1,3 +1,4 @@
 DIST rspec-rails-4.1.2.tar.gz 156296 BLAKE2B 
ca454065c8fb318148e745162514b9f21aaf6050ae72981d12a23b838bc7d985350c8abd60a36c07cb5c8c8bd80dd7b97b0dcb9ab6f5fb30ec4a6d99aaf189d4
 SHA512 
c0555d3b0d1ea91c9460981216cb0e4d1999e712daf18e5270aa20daee9667e3e669c918204e863bea0b6a97a63a79cdb1cd261d396743fdfbcc41109211ce89
 DIST rspec-rails-5.1.1.tar.gz 157454 BLAKE2B 
580a3443cfe088d4056815e3fc344f9b91e5df9ff52099942f8e74c062e6ffb8ff528e5bcb17b33684be0e6b4ce7791a1df38a7fbead0ca348567cbbf3f6a863
 SHA512 
68ba2af02619bcf304237e744f728772e9de889d7aba5ab5fef236d40e1c047b03bf0c199bb28074f2d4cf47e1811f241e67b56d8c362dbc8ad69e066bd3d7f0
 DIST rspec-rails-5.1.2.tar.gz 157523 BLAKE2B 
b500aa53f8bd965f7b95e90403d46096073780fa4e318295bffba44211cfb9d5eab36549e6fc3afc144700a8224ebe808489959a172f1d9e76c43320b7022979
 SHA512 
f9ef3a3812590a7cd50bd34e9e6cd9669fab24736ac7693b3fffe3f8be9b8313e31b0c7b7571a735f20bc5d9194a94c2f447e69f6491190536b6534211e1b070
+DIST rspec-rails-6.0.0.tar.gz 161222 BLAKE2B 
feaff94148d8b33e17ae3de5b9636ba238381d46836bbeba8c6ddf03c1d7b84c0c9e78e13c6b5198342959433ca165c438007e45923a70cb23190d974b340506
 SHA512 
7b15a5f9313bb76e71a69f9158d64c662a4cef2f8aae7a20748281224a720d9f2555ec9eed3ebd3aa30ba21608d6492caf14fefdd14a84ea765a4e60439830f2

diff --git a/dev-ruby/rspec-rails/rspec-rails-6.0.0.ebuild 
b/dev-ruby/rspec-rails/rspec-rails-6.0.0.ebuild
new file mode 100644
index ..3b74b2332a99
--- /dev/null
+++ b/dev-ruby/rspec-rails/rspec-rails-6.0.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby27 ruby30"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+#RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="Changelog.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="rspec-rails.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="RSpec's official Ruby on Rails plugin"
+HOMEPAGE="https://rspec.info/;
+SRC_URI="https://github.com/rspec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   || ( dev-ruby/activesupport:7.0 dev-ruby/activesupport:6.1 )
+   || ( dev-ruby/actionpack:7.0 dev-ruby/actionpack:6.1 )
+   || ( dev-ruby/railties:7.0 dev-ruby/railties:6.1 )
+   >=dev-ruby/rspec-3.11:3"
+
+# Depend on the package being already installed for tests, because
+# requiring ammeter will load it, and we need a consistent set of rspec
+# and rspec-rails for that to work.
+ruby_add_bdepend "test? (
+   >=dev-ruby/capybara-2.2.0
+   >=dev-ruby/ammeter-1.1.5
+   ~dev-ruby/rspec-rails-${PV}
+)"
+
+all_ruby_prepare() {
+   # Remove .rspec options to avoid dependency on newer rspec when
+   # bootstrapping.
+   echo "--require spec_helper" > .rspec || die
+
+   # Avoid bundler-specific specs.
+   rm -f spec/sanity_check_spec.rb || die
+
+   # Avoid broken controller generator specs for now.
+   rm -fr spec/generators/rspec || die
+
+   # Test with a compatible rails version
+   #sed -i -e '1igem "rails", "<7.0"' spec/spec_helper.rb || die
+
+   # Fix gemspec.
+   sed -e 's/git ls-files --/find */' \
+   -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xkeycaps/, x11-misc/xkeycaps/files/

2022-10-10 Thread Ionen Wolkens
commit: 916f6b97fc1ea3d7c8539a3c740460f602591237
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Oct 11 05:03:20 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Oct 11 05:09:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=916f6b97

x11-misc/xkeycaps: further fix w/ upcoming clang16

When last tested this package, did not know clang16 was newly enabling
-Werror=incompatible-pointer-types yet and hadn't looked at this.

Trivial const mismatch, so no revbump.

Bug: https://bugs.gentoo.org/871129
Signed-off-by: Ionen Wolkens  gentoo.org>

 x11-misc/xkeycaps/files/xkeycaps-2.47_p7-clang16.patch | 18 ++
 x11-misc/xkeycaps/xkeycaps-2.47_p7.ebuild  |  1 +
 2 files changed, 19 insertions(+)

diff --git a/x11-misc/xkeycaps/files/xkeycaps-2.47_p7-clang16.patch 
b/x11-misc/xkeycaps/files/xkeycaps-2.47_p7-clang16.patch
new file mode 100644
index ..99dc6f4ea827
--- /dev/null
+++ b/x11-misc/xkeycaps/files/xkeycaps-2.47_p7-clang16.patch
@@ -0,0 +1,18 @@
+https://bugs.gentoo.org/871129
+--- a/commands.c
 b/commands.c
+@@ -1754,3 +1754,3 @@
+ }
+-  XawListChange (box->keysym_list, keysym_name_buffer, 0, 0, True);
++  XawListChange (box->keysym_list, (const char **) keysym_name_buffer, 0, 0, 
True);
+ }
+@@ -2528,3 +2528,3 @@
+   box->set = _sets [i];
+-  XawListChange (box->keymap_list, (char **) box->set->maps, 0, 0, True);
++  XawListChange (box->keymap_list, (const char **) box->set->maps, 0, 0, 
True);
+   for (i = 0; i < box->set->map_count; i++)
+@@ -2599,3 +2599,3 @@
+ 
+-  XawListChange (box->keyboard_list, list, 0, 0, True);
++  XawListChange (box->keyboard_list, (const char **) list, 0, 0, True);
+   XawListHighlight (box->keyboard_list, kbd);

diff --git a/x11-misc/xkeycaps/xkeycaps-2.47_p7.ebuild 
b/x11-misc/xkeycaps/xkeycaps-2.47_p7.ebuild
index be540734790a..136ec95c516f 100644
--- a/x11-misc/xkeycaps/xkeycaps-2.47_p7.ebuild
+++ b/x11-misc/xkeycaps/xkeycaps-2.47_p7.ebuild
@@ -35,6 +35,7 @@ BDEPEND="
 DOCS=( README defining.txt hierarchy.txt sgi-microsoft.txt )
 PATCHES=(
"${FILESDIR}"/${P/_p*}-Imakefile.patch
+   "${FILESDIR}"/${P}-clang16.patch
 )
 S=${WORKDIR}/${P/_p*}
 



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

2022-10-10 Thread Ionen Wolkens
commit: 0491a4264baf9951dd726b96094459a7b3363b95
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Oct 11 04:17:09 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Oct 11 04:38:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0491a426

net-misc/vncrec: further fix w/ upcoming clang16

When last tested this package, did not know clang16 was newly enabling
-Werror=incompatible-pointer-types yet and hadn't looked at this.

Bit dodgy here given we don't know what the X11 headers want, i.e.
_X_NORETURN could be set or not set, and an update could remove it
from XtErrorhandler entirely (so passing it may break later) -- so
pass -Wno-error instead (should be harmless in this case).

Bug: https://bugs.gentoo.org/871000
Signed-off-by: Ionen Wolkens  gentoo.org>

 net-misc/vncrec/vncrec-0.2-r3.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/net-misc/vncrec/vncrec-0.2-r3.ebuild 
b/net-misc/vncrec/vncrec-0.2-r3.ebuild
index e3295a4579be..66d88e91b811 100644
--- a/net-misc/vncrec/vncrec-0.2-r3.ebuild
+++ b/net-misc/vncrec/vncrec-0.2-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="VNC session recorder and player"
 HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
@@ -42,6 +42,11 @@ src_prepare() {
 }
 
 src_configure() {
+   # XtErrorHandler usage matches docs (seems right), but headers "may" add
+   # __attribute__((noreturn)) giving an incompatible type error with 
clang-16
+   # (could alternatively use private _X_NORETURN but this may be fragile).
+   append-cflags -Wno-error=incompatible-function-pointer-types #871000
+
CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
IMAKECPP="${IMAKECPP:-${CHOST}-gcc -E}" xmkmf -a || die
 }



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

2022-10-10 Thread Matt Turner
commit: 05186e433bb475e06383773f39efddd017e7a704
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Oct 11 04:21:31 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 11 04:21:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05186e43

dev-libs/wayland-protocols: Version bump to 1.27

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

 dev-libs/wayland-protocols/Manifest   | 1 +
 .../{wayland-protocols-.ebuild => wayland-protocols-1.27.ebuild}  | 4 ++--
 dev-libs/wayland-protocols/wayland-protocols-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-libs/wayland-protocols/Manifest 
b/dev-libs/wayland-protocols/Manifest
index 94adfe37bcce..c7dbbb71cd29 100644
--- a/dev-libs/wayland-protocols/Manifest
+++ b/dev-libs/wayland-protocols/Manifest
@@ -1 +1,2 @@
 DIST wayland-protocols-1.26.tar.xz 81028 BLAKE2B 
0813b8117c48b965560c3f112f67fa209f29b0c40fab2b46f46ccae227d68902277cce06281a6bd938fb3c2186e0cf4ea3670ed6d3b48b51ed655012bb1452ce
 SHA512 
fa9c3963b548197461c8c0b9e16ebbf9cfa5b60053fc17f51b41e63a55b8c5420dd7e42313f93946b438ab47f04e1cd17bc92aae9e1074b47177dc7ce7042167
+DIST wayland-protocols-1.27.tar.xz 82604 BLAKE2B 
ae1c19dffcf255c88e6d646f321ec194639500994f9e5a2759bd7081dc16872777c993d35d81000796e3e5044dc62f169c9b2fe89de081fd395eaaf09e6206e2
 SHA512 
c0a49bc46c663c9f602998dfe2e184c09756790fbcc7acbc2bf9d9cf8f7d6dcdd00259b768222a30e5d134e6f97f7f4faf252947b544e8b32f53278b70da0390

diff --git a/dev-libs/wayland-protocols/wayland-protocols-.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-1.27.ebuild
similarity index 87%
copy from dev-libs/wayland-protocols/wayland-protocols-.ebuild
copy to dev-libs/wayland-protocols/wayland-protocols-1.27.ebuild
index fd84b9649f01..4eff41270cb0 100644
--- a/dev-libs/wayland-protocols/wayland-protocols-.ebuild
+++ b/dev-libs/wayland-protocols/wayland-protocols-1.27.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson
 
@@ -12,7 +12,7 @@ if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/${PN}.git/;
inherit git-r3
 else
-   SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz;
+   
SRC_URI="https://gitlab.freedesktop.org/wayland/${PN}/-/releases/${PV}/downloads/${P}.tar.xz;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 

diff --git a/dev-libs/wayland-protocols/wayland-protocols-.ebuild 
b/dev-libs/wayland-protocols/wayland-protocols-.ebuild
index fd84b9649f01..4eff41270cb0 100644
--- a/dev-libs/wayland-protocols/wayland-protocols-.ebuild
+++ b/dev-libs/wayland-protocols/wayland-protocols-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson
 
@@ -12,7 +12,7 @@ if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://gitlab.freedesktop.org/wayland/${PN}.git/;
inherit git-r3
 else
-   SRC_URI="https://wayland.freedesktop.org/releases/${P}.tar.xz;
+   
SRC_URI="https://gitlab.freedesktop.org/wayland/${PN}/-/releases/${PV}/downloads/${P}.tar.xz;
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/volpack/files/, media-libs/volpack/

2022-10-10 Thread Ionen Wolkens
commit: bcfdddb51006ad429082201cb2436ab684a544dd
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Oct 11 02:57:01 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Oct 11 03:17:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcfdddb5

media-libs/volpack: further fix w/ upcoming clang16 + -std=gnu89

Forgot the patch for the missing int last time and
only fixed examples.

Bug: https://bugs.gentoo.org/870706
Signed-off-by: Ionen Wolkens  gentoo.org>

 media-libs/volpack/files/volpack-1.0_p7-clang16.patch   | 8 
 media-libs/volpack/files/volpack-1.0_p7-skip-examples.patch | 4 ++--
 media-libs/volpack/volpack-1.0_p7-r2.ebuild | 9 +
 3 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/media-libs/volpack/files/volpack-1.0_p7-clang16.patch 
b/media-libs/volpack/files/volpack-1.0_p7-clang16.patch
new file mode 100644
index ..95bb9efbbb8c
--- /dev/null
+++ b/media-libs/volpack/files/volpack-1.0_p7-clang16.patch
@@ -0,0 +1,8 @@
+https://bugs.gentoo.org/870706
+--- a/src/makeopts.c
 b/src/makeopts.c
+@@ -45,3 +45,3 @@
+ 
+-main(argc, argv)
++int main(argc, argv)
+ int argc;

diff --git a/media-libs/volpack/files/volpack-1.0_p7-skip-examples.patch 
b/media-libs/volpack/files/volpack-1.0_p7-skip-examples.patch
index 1476f23084f5..9cb0d0b9b508 100644
--- a/media-libs/volpack/files/volpack-1.0_p7-skip-examples.patch
+++ b/media-libs/volpack/files/volpack-1.0_p7-skip-examples.patch
@@ -1,5 +1,5 @@
-Building these is broken with clang16 and they are primarily
-intended to be looked rather rather than built.
+These are intended to be looked at rather than built, this avoids
+installing object files and prevents a build failure with clang16.
 
 https://bugs.gentoo.org/870706
 --- a/Makefile.am

diff --git a/media-libs/volpack/volpack-1.0_p7-r2.ebuild 
b/media-libs/volpack/volpack-1.0_p7-r2.ebuild
index f7076c8c6c31..e3a3ed9dca75 100644
--- a/media-libs/volpack/volpack-1.0_p7-r2.ebuild
+++ b/media-libs/volpack/volpack-1.0_p7-r2.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=8
 
+inherit flag-o-matic
+
 MY_P="${PN}-${PV/_p/c}"
 
 DESCRIPTION="Volume rendering library"
@@ -19,8 +21,15 @@ BDEPEND="sys-devel/m4"
 
 PATCHES=(
"${FILESDIR}"/${P}-skip-examples.patch
+   "${FILESDIR}"/${P}-clang16.patch
 )
 
+src_configure() {
+   append-cflags -std=gnu89 # old codebase, will break with c2x
+
+   default
+}
+
 src_compile() {
emake -j1
 }



[gentoo-commits] repo/gentoo:master commit in: games-board/xskat/

2022-10-10 Thread Ionen Wolkens
commit: 4046aacb83395ab4e0f227c85d72736cb9fedd77
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Oct 11 02:31:05 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Oct 11 03:08:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4046aacb

games-board/xskat: adjust CPPFLAGS, move xorg-proto to DEPEND

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

 games-board/xskat/xskat-4.0-r2.ebuild | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/games-board/xskat/xskat-4.0-r2.ebuild 
b/games-board/xskat/xskat-4.0-r2.ebuild
index da925919f0cc..e32197c981c3 100644
--- a/games-board/xskat/xskat-4.0-r2.ebuild
+++ b/games-board/xskat/xskat-4.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,13 +15,14 @@ LICENSE="freedist"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 
-DEPEND="x11-libs/libX11"
+COMMON_DEPEND="x11-libs/libX11"
 RDEPEND="
-   ${DEPEND}
+   ${COMMON_DEPEND}
media-fonts/font-misc-misc"
-BDEPEND="
-   virtual/pkgconfig
+DEPEND="
+   ${COMMON_DEPEND}
x11-base/xorg-proto"
+BDEPEND="virtual/pkgconfig"
 
 src_configure() { :; }
 
@@ -29,7 +30,8 @@ src_compile() {
tc-export CC
 
local emakeargs=(
-   CFLAGS="${CFLAGS} ${CPPFLAGS}"
+   CFLAGS="${CFLAGS} ${CPPFLAGS} $($(tc-getPKG_CONFIG) --cflags 
x11 || die)"
+   CPPFLAGS= # force everywhere above, but avoid implicit 
duplication
LDFLAGS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs x11 || die)"
)
 



[gentoo-commits] repo/gentoo:master commit in: games-board/xskat/files/, games-board/xskat/

2022-10-10 Thread Ionen Wolkens
commit: 515498f4c6b9ff4b042f44ae79a56f80815fa279
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue Oct 11 02:41:39 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue Oct 11 03:17:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515498f4

games-board/xskat: fix w/ upcoming clang16 + -std=gnu89

Closes: https://bugs.gentoo.org/875473
Signed-off-by: Ionen Wolkens  gentoo.org>

 games-board/xskat/files/xskat-4.0-clang16.patch | 8 
 games-board/xskat/xskat-4.0-r2.ebuild   | 7 ++-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/games-board/xskat/files/xskat-4.0-clang16.patch 
b/games-board/xskat/files/xskat-4.0-clang16.patch
new file mode 100644
index ..c9bfe67e7850
--- /dev/null
+++ b/games-board/xskat/files/xskat-4.0-clang16.patch
@@ -0,0 +1,8 @@
+https://bugs.gentoo.org/875473
+--- a/null.c
 b/null.c
+@@ -181,2 +181,4 @@
+ int minmaxfb(f,fb)
++int f;
++int fb;
+ {

diff --git a/games-board/xskat/xskat-4.0-r2.ebuild 
b/games-board/xskat/xskat-4.0-r2.ebuild
index e32197c981c3..34b32c4049b9 100644
--- a/games-board/xskat/xskat-4.0-r2.ebuild
+++ b/games-board/xskat/xskat-4.0-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit desktop toolchain-funcs
+inherit desktop flag-o-matic toolchain-funcs
 
 DESCRIPTION="Famous german card game"
 HOMEPAGE="http://www.xskat.de/xskat.html;
@@ -24,10 +24,15 @@ DEPEND="
x11-base/xorg-proto"
 BDEPEND="virtual/pkgconfig"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-clang16.patch
+)
+
 src_configure() { :; }
 
 src_compile() {
tc-export CC
+   append-cflags -std=gnu89 # old codebase, will break with c2x
 
local emakeargs=(
CFLAGS="${CFLAGS} ${CPPFLAGS} $($(tc-getPKG_CONFIG) --cflags 
x11 || die)"



[gentoo-commits] proj/qa-scripts:master commit in: /

2022-10-10 Thread John Helmert III
commit: 1731d58dd5b7cffbb6bd8dc3bd49e9e8642b814f
Author: John Helmert III  gentoo  org>
AuthorDate: Mon Oct 10 23:53:44 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Mon Oct 10 23:56:01 2022 +
URL:https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=1731d58d

keyrings: disable using local keyserver

Somehow this is vastly, vastly slower than simply using
keys.gentoo.org even though they should be resolving to the same host.

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

 keyrings.inc.bash | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/keyrings.inc.bash b/keyrings.inc.bash
index 58881ae..cc89de0 100644
--- a/keyrings.inc.bash
+++ b/keyrings.inc.bash
@@ -11,8 +11,8 @@ 
INFRA_SYSTEM_RULE='(&(gentooAccess=infra-system.group)(gentooStatus=active))'
 
 export KS_GENTOO=hkps://keys.gentoo.org/
 # Use local keyserver for speedup
-KS_GENTOO_LOCAL=${HOSTNAME%.gentoo.org}.keys.gentoo.org
-dig $KS_GENTOO_LOCAL +short |grep -sq . && export 
KS_GENTOO=hkps://${KS_GENTOO_LOCAL}
+# KS_GENTOO_LOCAL=${HOSTNAME%.gentoo.org}.keys.gentoo.org
+# dig $KS_GENTOO_LOCAL +short |grep -sq . && export 
KS_GENTOO=hkps://${KS_GENTOO_LOCAL}
 
 #export KS_SKS=hkps://hkps.pool.sks-keyservers.net/ # Disabled pending 
security announcement
 export KS_OPENPGP=hkps://keys.openpgp.org/ # runs Hagrid



[gentoo-commits] repo/gentoo:master commit in: app-emacs/emms/

2022-10-10 Thread Maciej Barć
commit: ce47c9138c8110850e449b05a024848944b3c00d
Author: Maciej Barć  gentoo  org>
AuthorDate: Mon Oct 10 23:07:28 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Mon Oct 10 23:43:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce47c913

app-emacs/emms: bump to 12

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

 app-emacs/emms/Manifest   |  1 +
 app-emacs/emms/emms-12.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/app-emacs/emms/Manifest b/app-emacs/emms/Manifest
index c5944b37d7d3..0a1983863f31 100644
--- a/app-emacs/emms/Manifest
+++ b/app-emacs/emms/Manifest
@@ -1,3 +1,4 @@
 DIST emms-10.tar.xz 171792 BLAKE2B 
33368d62c170d3a3cb024887cc421ed69c0e2fc4c9af8676bb8d056b13981b75e3d4acaca9e0276062ed19060c97e5a62b07d51279dc6bf1e9565c1c2a7f17f6
 SHA512 
383a8ad2769021969a522125a0d588b3caea82345067d59cf21116e3dfd54a2ec60d9be60b479dfd5f14804b7e5f8f513e64bcae0ff936ea3bb9603074116b7a
 DIST emms-11.tar.gz 205268 BLAKE2B 
7461b1873710747dbc5f7b24c33adb1e7303a5e88cbe056d45b5fd5bea9a5c8c3ab9128468bae761b088cbfcf523274677d5865b137853ea6970883a5897ee83
 SHA512 
9119998fbf72b1b957ffe96acc35a152efd0215a28356fb05efc358075b8baa9487a35782422e3b53605ea899ff390b55636d8d36877c3f12c5e5400bbb5bb95
+DIST emms-12.tar.gz 206897 BLAKE2B 
f65a3142c3de5bba9244e08de0f6769d880fb3df2dddce8bcb8ddfe61f68426c5821b49483631629eb3d0c3b9e23d1754ea824bc0888230b35cf1fab1d6dc1f2
 SHA512 
1f3781fd268208f5a15675f8dff88a47e82ea9dc746d7053aaa04141e38e95365596c21fc8b66e17253099b76e0c5e3a1fc04418c0cb7151836375aabfe863e7
 DIST emms-5.4.tar.gz 311583 BLAKE2B 
fc5a67a0e1e35f9e9d83112e0f98a7489e0aff7ca6a2b4a633b296eb20218ffa798f33754069da9be93fe8725a0438db77e0f8aa25bdf617f45cba954abdf556
 SHA512 
a274938ace810404a8891c60e8f54fadc60054e2b7f1139941b69b40e8693f2177ec9ecd795517e17a0b7ca3477f2e75a0a844408ad35975a4b69266c466fbff

diff --git a/app-emacs/emms/emms-12.ebuild b/app-emacs/emms/emms-12.ebuild
new file mode 100644
index ..c5fb534b34fc
--- /dev/null
+++ b/app-emacs/emms/emms-12.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit elisp toolchain-funcs
+
+DESCRIPTION="The Emacs Multimedia System"
+HOMEPAGE="https://www.gnu.org/software/emms/
+   https://www.emacswiki.org/emacs/EMMS;
+SRC_URI="https://git.savannah.gnu.org/cgit/emms.git/snapshot/${P}.tar.gz;
+
+LICENSE="GPL-3+ FDL-1.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND="media-libs/taglib"
+BDEPEND="${RDEPEND}"
+
+# EMMS can use almost anything for playing media files therefore the dependency
+# possibilities are so broad that we refrain from setting anything explicitly
+# in DEPEND/RDEPEND.
+
+SITEFILE="50${PN}-gentoo.el"
+
+src_compile() {
+   emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" all emms-print-metadata
+}
+
+src_install() {
+   elisp-install ${PN} *.el *.elc
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+
+   exeinto /usr/bin
+   doexe src/emms-print-metadata
+
+   doinfo doc/emms.info*
+   doman emms-print-metadata.1
+   dodoc AUTHORS NEWS README THANKGNU
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/eglot/

2022-10-10 Thread Maciej Barć
commit: f013727c72694c37c4b47b5dbe34e1b8a58d8ada
Author: Maciej Barć  gentoo  org>
AuthorDate: Mon Oct 10 23:03:31 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Mon Oct 10 23:43:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f013727c

app-emacs/eglot: bump to 1.9

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

 app-emacs/eglot/Manifest |  1 +
 app-emacs/eglot/eglot-1.9.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/app-emacs/eglot/Manifest b/app-emacs/eglot/Manifest
index 8148e48e5796..5a085a9ce376 100644
--- a/app-emacs/eglot/Manifest
+++ b/app-emacs/eglot/Manifest
@@ -1,2 +1,3 @@
 DIST eglot-1.6.tar.gz 288078 BLAKE2B 
a2214d216d0eeaca32d974c6686696dfcf141b3384741bc8cce0d02abb508eb5713933bc227d12a07f4b87fc34601431845b1b8e519538ae04ecc74b24db4004
 SHA512 
51227c8e2b0a1dd9a63ededbea592f01616ff728c34c330400c078212fef3f3e747e6dd30ba312523cbe60c7ea663a7af9d83300210cf331ea6162d2db5c7e41
 DIST eglot-1.8.tar.gz 302450 BLAKE2B 
7247b11adaf9a65a2e071ca17b55038fe85f5842fb4155b44dbfa82bae5774e4cd2f7a5557d40cb1a7ab7f554233f15abe297e10568a1630b464ab6a600d978f
 SHA512 
0295eff6dfbbf9d7a82349b8e5ed9e7dad700f2f0bfcab879d906e30bfbb4d28b8779fd9076108ac9b1594a60ca5e30c5035e2f8ceae44add99c28a843027609
+DIST eglot-1.9.tar.gz 316541 BLAKE2B 
5b9f188ae3f2b26fd7bb95aeb3095fbf5a78f6a15eeccaceaf947f5f91e78253622d2c81d5e57f11762c0370baf9d6c856a4f770c2652840d750f98ee780b418
 SHA512 
961399e0877a09bd292424715c3fac86e7750e144ba302e61262925b6ded1d30c6ebf3e63067b27b56fa2062461a947425951ac5538e25312d179fa20bd68b79

diff --git a/app-emacs/eglot/eglot-1.9.ebuild b/app-emacs/eglot/eglot-1.9.ebuild
new file mode 100644
index ..b5463a817ab2
--- /dev/null
+++ b/app-emacs/eglot/eglot-1.9.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="26.1"
+
+inherit elisp
+
+DESCRIPTION="A minimal Emacs LSP client"
+HOMEPAGE="https://github.com/joaotavora/eglot;
+SRC_URI="https://github.com/joaotavora/eglot/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+# test requires internet connection to install several language servers, one 
of which
+# is not packaged
+RESTRICT="test"
+
+SITEFILE="50${PN}-gentoo.el"
+ELISP_REMOVE="eglot-tests.el"
+DOCS=( README.md NEWS.md )
+
+src_install() {
+   elisp-make-autoload-file "${S}"/${PN}-autoload.el "${S}"/
+   elisp_src_install
+}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/emms/

2022-10-10 Thread Maciej Barć
commit: 756becd404ef920fb44f3c36f00ee3d8e97e7bf9
Author: Maciej Barć  gentoo  org>
AuthorDate: Mon Oct 10 23:07:41 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Mon Oct 10 23:43:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=756becd4

app-emacs/emms: drop old 5.4

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

 app-emacs/emms/Manifest|  1 -
 app-emacs/emms/emms-5.4.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/app-emacs/emms/Manifest b/app-emacs/emms/Manifest
index 0a1983863f31..8d76ababb15b 100644
--- a/app-emacs/emms/Manifest
+++ b/app-emacs/emms/Manifest
@@ -1,4 +1,3 @@
 DIST emms-10.tar.xz 171792 BLAKE2B 
33368d62c170d3a3cb024887cc421ed69c0e2fc4c9af8676bb8d056b13981b75e3d4acaca9e0276062ed19060c97e5a62b07d51279dc6bf1e9565c1c2a7f17f6
 SHA512 
383a8ad2769021969a522125a0d588b3caea82345067d59cf21116e3dfd54a2ec60d9be60b479dfd5f14804b7e5f8f513e64bcae0ff936ea3bb9603074116b7a
 DIST emms-11.tar.gz 205268 BLAKE2B 
7461b1873710747dbc5f7b24c33adb1e7303a5e88cbe056d45b5fd5bea9a5c8c3ab9128468bae761b088cbfcf523274677d5865b137853ea6970883a5897ee83
 SHA512 
9119998fbf72b1b957ffe96acc35a152efd0215a28356fb05efc358075b8baa9487a35782422e3b53605ea899ff390b55636d8d36877c3f12c5e5400bbb5bb95
 DIST emms-12.tar.gz 206897 BLAKE2B 
f65a3142c3de5bba9244e08de0f6769d880fb3df2dddce8bcb8ddfe61f68426c5821b49483631629eb3d0c3b9e23d1754ea824bc0888230b35cf1fab1d6dc1f2
 SHA512 
1f3781fd268208f5a15675f8dff88a47e82ea9dc746d7053aaa04141e38e95365596c21fc8b66e17253099b76e0c5e3a1fc04418c0cb7151836375aabfe863e7
-DIST emms-5.4.tar.gz 311583 BLAKE2B 
fc5a67a0e1e35f9e9d83112e0f98a7489e0aff7ca6a2b4a633b296eb20218ffa798f33754069da9be93fe8725a0438db77e0f8aa25bdf617f45cba954abdf556
 SHA512 
a274938ace810404a8891c60e8f54fadc60054e2b7f1139941b69b40e8693f2177ec9ecd795517e17a0b7ca3477f2e75a0a844408ad35975a4b69266c466fbff

diff --git a/app-emacs/emms/emms-5.4.ebuild b/app-emacs/emms/emms-5.4.ebuild
deleted file mode 100644
index 332e0d00a88d..
--- a/app-emacs/emms/emms-5.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit elisp toolchain-funcs
-
-DESCRIPTION="The Emacs Multimedia System"
-HOMEPAGE="https://www.gnu.org/software/emms/
-   https://www.emacswiki.org/emacs/EMMS;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+ FDL-1.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-
-RDEPEND="media-libs/taglib"
-DEPEND="${RDEPEND}"
-
-# EMMS can use almost anything for playing media files therefore the dependency
-# possibilities are so broad that we refrain from setting anything explicitly
-# in DEPEND/RDEPEND.
-
-SITEFILE="50${PN}-gentoo.el"
-
-src_compile() {
-   emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" \
-   all emms-print-metadata
-}
-
-src_install() {
-   elisp-install ${PN} lisp/*.{el,elc}
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   doinfo doc/emms.info*
-   dobin src/emms-print-metadata
-   doman emms-print-metadata.1
-   dodoc AUTHORS ChangeLog NEWS README THANKGNU
-}



[gentoo-commits] repo/gentoo:master commit in: app-emacs/posframe/

2022-10-10 Thread Maciej Barć
commit: 388620f792fc4b7a04ee41b13eb3576085301535
Author: Maciej Barć  gentoo  org>
AuthorDate: Mon Oct 10 23:08:16 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Mon Oct 10 23:43:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388620f7

app-emacs/posframe: bump to 1.1.8

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

 app-emacs/posframe/Manifest  |  1 +
 app-emacs/posframe/posframe-1.1.8.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/app-emacs/posframe/Manifest b/app-emacs/posframe/Manifest
index a264566a12d9..927b22bb1d03 100644
--- a/app-emacs/posframe/Manifest
+++ b/app-emacs/posframe/Manifest
@@ -1,2 +1,3 @@
 DIST posframe-0.8.5.tar.gz 77569 BLAKE2B 
bf379f4641ed78f7cd92fcb443f3e01f78360113dc9eec4b1dcbba581ec0df5b11eeeda27eaea6dd28f7aa324c33aa499079afe9665da9d1d2328904117364d9
 SHA512 
ce9c76f8a943d206f3438b82ba637b96a9f3cf0d1078f8b940ab8a0aaa9940aa308a76be5b678d7394b25716f631ca3305e25b850fd25ffa18d79551baff0586
 DIST posframe-1.1.7.tar.gz 79507 BLAKE2B 
ad6c12b8733a6db18b53a20c78ca16412206ce782e269500ffa36ff7e29873a4d46e6addbf30c7e5a7a818de3b752cc481a4031c96ff8760e714373ece06db0f
 SHA512 
c3762ec115df4c6967a8a7bff4c8d9447b97da36903e166a2f4d7da382b8e22b2e7f97c5cfa3f40f5461c78821552574a905b4e595ef34f5fb45c8cd17fee95b
+DIST posframe-1.1.8.tar.gz 79505 BLAKE2B 
008ac743127f667aa992823e0ad167198f0a8bff171b96730c2071b5b7034bd8f0e196b1b85df6b43692b32005b51136f11068bb553a2ebd07266edac6c757c8
 SHA512 
714304a15b0b12769ab165ba2978290bf04bfe7b5051f2829872396f4f623e7a3a5193fcc246a3c8eb59073bdc1b17ddf275ab484ac08dc68192b803fa90a47e

diff --git a/app-emacs/posframe/posframe-1.1.8.ebuild 
b/app-emacs/posframe/posframe-1.1.8.ebuild
new file mode 100644
index ..67370466f98c
--- /dev/null
+++ b/app-emacs/posframe/posframe-1.1.8.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=26.1
+
+inherit elisp
+
+DESCRIPTION="Pop up a frame at point"
+HOMEPAGE="https://github.com/tumashu/posframe/;
+SRC_URI="https://github.com/tumashu/${PN}/archive/refs/tags/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+
+DOCS=( README.org snapshots )
+SITEFILE="50${PN}-gentoo.el"



[gentoo-commits] repo/gentoo:master commit in: app-office/gtg/

2022-10-10 Thread Sam James
commit: caa8103d11f7244f55b4c3e23475a9c595f84799
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caa8103d

app-office/gtg: Keyword 0.6-r1 x86, #857720

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

 app-office/gtg/gtg-0.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/gtg/gtg-0.6-r1.ebuild b/app-office/gtg/gtg-0.6-r1.ebuild
index 4d5ae4e692d4..bfe33c23c67e 100644
--- a/app-office/gtg/gtg-0.6-r1.ebuild
+++ b/app-office/gtg/gtg-0.6-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/getting-things-gnome/gtg/archive/refs/tags/v${PV}.ta
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="test"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="!test? ( test )"



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

2022-10-10 Thread Sam James
commit: 396818618f19993c1c89f2830f7b1d33a35408e2
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39681861

dev-java/cdi-api: Keyword 4.0.1 x86, #869542

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

 dev-java/cdi-api/cdi-api-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/cdi-api/cdi-api-4.0.1.ebuild 
b/dev-java/cdi-api/cdi-api-4.0.1.ebuild
index 975723f6b1fb..b06d8b168585 100644
--- a/dev-java/cdi-api/cdi-api-4.0.1.ebuild
+++ b/dev-java/cdi-api/cdi-api-4.0.1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/jakartaee/cdi/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 DEPEND="
>=dev-java/injection-api-2.0.1:0



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

2022-10-10 Thread Sam James
commit: 3abe8db9b96d6735ceb217a12643d9fd25b00f9f
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3abe8db9

dev-java/jakarta-el-api: Keyword 5.0.1 x86, #869542

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

 dev-java/jakarta-el-api/jakarta-el-api-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jakarta-el-api/jakarta-el-api-5.0.1.ebuild 
b/dev-java/jakarta-el-api/jakarta-el-api-5.0.1.ebuild
index 268a1e16a5f1..57e07997639f 100644
--- a/dev-java/jakarta-el-api/jakarta-el-api-5.0.1.ebuild
+++ b/dev-java/jakarta-el-api/jakarta-el-api-5.0.1.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/jakartaee/expression-language/archive/${PV}-RELEASE-
 
 LICENSE="EPL-2.0 GPL-2-with-classpath-exception"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 DEPEND=">=virtual/jdk-11:*"
 # 11



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

2022-10-10 Thread Sam James
commit: e5a901915866f0525122c7bcb262f4daaea3d7e2
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:40:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:40:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5a90191

dev-python/whatthepatch: Keyword 1.0.2 x86, #857801

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

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

diff --git a/dev-python/whatthepatch/whatthepatch-1.0.2.ebuild 
b/dev-python/whatthepatch/whatthepatch-1.0.2.ebuild
index 9b34f1e0ac32..a5e1d0c1cddb 100644
--- a/dev-python/whatthepatch/whatthepatch-1.0.2.ebuild
+++ b/dev-python/whatthepatch/whatthepatch-1.0.2.ebuild
@@ -14,6 +14,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 distutils_enable_tests pytest



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

2022-10-10 Thread Sam James
commit: 80ab3c9c981ca593cc9f7d0713c6a9fb6de76022
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80ab3c9c

dev-java/jaxrs-api: Keyword 2.1.6 x86, #869542

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

 dev-java/jaxrs-api/jaxrs-api-2.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jaxrs-api/jaxrs-api-2.1.6.ebuild 
b/dev-java/jaxrs-api/jaxrs-api-2.1.6.ebuild
index 40cf6b93bf97..d179f3737425 100644
--- a/dev-java/jaxrs-api/jaxrs-api-2.1.6.ebuild
+++ b/dev-java/jaxrs-api/jaxrs-api-2.1.6.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/jakartaee/rest/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="EPL-2.0 GPL-2-with-classpath-exception"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 # Compile dependencies
 # POM: ${PN}/pom.xml



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

2022-10-10 Thread Sam James
commit: 0482d2ceaf1f2bed4ec3a71143cfd5c2f4945315
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:40:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:40:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0482d2ce

dev-python/python-lsp-server: Keyword 1.5.0 x86, #857801

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

 dev-python/python-lsp-server/python-lsp-server-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-lsp-server/python-lsp-server-1.5.0.ebuild 
b/dev-python/python-lsp-server/python-lsp-server-1.5.0.ebuild
index cf70fac7ff3e..6ccf9291ac69 100644
--- a/dev-python/python-lsp-server/python-lsp-server-1.5.0.ebuild
+++ b/dev-python/python-lsp-server/python-lsp-server-1.5.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 IUSE="all-plugins"
 



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

2022-10-10 Thread Sam James
commit: a4b86e545e8574583053305b55cd90ee5310f55e
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b86e54

dev-java/woodstox-core: Keyword 6.3.1 x86, #869542

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

 dev-java/woodstox-core/woodstox-core-6.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/woodstox-core/woodstox-core-6.3.1.ebuild 
b/dev-java/woodstox-core/woodstox-core-6.3.1.ebuild
index 11077025e9bc..3a35fa4b4ab0 100644
--- a/dev-java/woodstox-core/woodstox-core-6.3.1.ebuild
+++ b/dev-java/woodstox-core/woodstox-core-6.3.1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/FasterXML/woodstox/archive/${P}.tar.gz;
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 # Common dependencies
 # POM: pom.xml



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

2022-10-10 Thread Sam James
commit: 71348ac2c18a006a10ead714cccd34b50cf8c9ce
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71348ac2

dev-java/osgi-cmpn: Keyword 8.0.0 x86, #869542

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

 dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild 
b/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild
index c107c25d2f61..4efd309c7fc6 100644
--- a/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild
+++ b/dev-java/osgi-cmpn/osgi-cmpn-8.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://docs.osgi.org/download/r$(ver_cut 
1)/${PN/-/.}-${PV}.jar -> ${P
 
 LICENSE="Apache-2.0 OSGi-Specification-2.0"
 SLOT="8"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 CP_DEPEND="
dev-java/cdi-api:0



[gentoo-commits] repo/gentoo:master commit in: dev-java/aqute-bnd-annotation/

2022-10-10 Thread Sam James
commit: 956110e2e84d4b92bf1604af4af811bb90a555b7
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=956110e2

dev-java/aqute-bnd-annotation: Keyword 6.3.1 x86, #869542

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

 dev-java/aqute-bnd-annotation/aqute-bnd-annotation-6.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/aqute-bnd-annotation/aqute-bnd-annotation-6.3.1.ebuild 
b/dev-java/aqute-bnd-annotation/aqute-bnd-annotation-6.3.1.ebuild
index 4566cb9726d7..a17da7281257 100644
--- a/dev-java/aqute-bnd-annotation/aqute-bnd-annotation-6.3.1.ebuild
+++ b/dev-java/aqute-bnd-annotation/aqute-bnd-annotation-6.3.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://repo1.maven.org/maven2/biz/aQute/bnd/biz.aQute.bnd.annotation/$
 
 LICENSE="Apache-2.0 EPL-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 # Common dependencies
 # POM: biz.aQute.bnd.annotation-${PV}.pom



[gentoo-commits] repo/gentoo:master commit in: app-vim/vim-go/

2022-10-10 Thread Sam James
commit: 008625d8c27bdb4ca5d91ffed8a6099bbf34f860
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=008625d8

app-vim/vim-go: Keyword 1.26 x86, #867916

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

 app-vim/vim-go/vim-go-1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/vim-go/vim-go-1.26.ebuild 
b/app-vim/vim-go/vim-go-1.26.ebuild
index 6f34df59ddbc..5d58adf679cd 100644
--- a/app-vim/vim-go/vim-go-1.26.ebuild
+++ b/app-vim/vim-go/vim-go-1.26.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/fatih/vim-go;
 SRC_URI="https://github.com/fatih/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 RESTRICT="test"
 
 RDEPEND="dev-go/gopls"



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

2022-10-10 Thread Sam James
commit: 26d789e57ce31114cb4796d864c776e969d95dd6
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d789e5

dev-java/jakarta-interceptors: Keyword 2.1.0 x86, #869542

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

 dev-java/jakarta-interceptors/jakarta-interceptors-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jakarta-interceptors/jakarta-interceptors-2.1.0.ebuild 
b/dev-java/jakarta-interceptors/jakarta-interceptors-2.1.0.ebuild
index 295545b45f92..8e8b2a1a712a 100644
--- a/dev-java/jakarta-interceptors/jakarta-interceptors-2.1.0.ebuild
+++ b/dev-java/jakarta-interceptors/jakarta-interceptors-2.1.0.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/jakartaee/interceptors/archive/${PV}-RELEASE.tar.gz
 
 LICENSE="EPL-2.0 GPL-2-with-classpath-exception"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 DEPEND="
dev-java/jakarta-annotations-api:0



[gentoo-commits] repo/gentoo:master commit in: dev-go/gopls/

2022-10-10 Thread Sam James
commit: be73f696bf3624d453314be6a1825918f589df94
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be73f696

dev-go/gopls: Keyword 0.9.4 x86, #867916

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

 dev-go/gopls/gopls-0.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-go/gopls/gopls-0.9.4.ebuild b/dev-go/gopls/gopls-0.9.4.ebuild
index 5952c14f68b0..965c22e94bb7 100644
--- a/dev-go/gopls/gopls-0.9.4.ebuild
+++ b/dev-go/gopls/gopls-0.9.4.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 inherit go-module
 
 
ARCHIVE_URI="https://github.com/golang/tools/archive/refs/tags/gopls/v${PV}.tar.gz
 -> ${P}.tar.gz"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 DESCRIPTION="\"Go please\" is the official Go language server"
 HOMEPAGE="https://github.com/golang/tools/blob/master/gopls/README.md;
 SLOT="0"



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

2022-10-10 Thread Sam James
commit: 8fe7f938b91c21970071b2aec00c96c6fc7aa9c0
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fe7f938

dev-java/injection-api: Keyword 2.0.1 x86, #869542

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

 dev-java/injection-api/injection-api-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/injection-api/injection-api-2.0.1.ebuild 
b/dev-java/injection-api/injection-api-2.0.1.ebuild
index 4cdb3654a865..6d4e505e61e4 100644
--- a/dev-java/injection-api/injection-api-2.0.1.ebuild
+++ b/dev-java/injection-api/injection-api-2.0.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/eclipse-ee4j/${PN}/archive/${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 
 DEPEND=">=virtual/jdk-11:*"
 RDEPEND=">=virtual/jre-1.8:*"



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

2022-10-10 Thread Sam James
commit: 5623d192811f46f512f4c2261b098d5c4afdfaa9
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5623d192

dev-python/caldav: Keyword 0.9.2 x86, #857720

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

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

diff --git a/dev-python/caldav/caldav-0.9.2.ebuild 
b/dev-python/caldav/caldav-0.9.2.ebuild
index a8da6ea96540..121066d6ce01 100644
--- a/dev-python/caldav/caldav-0.9.2.ebuild
+++ b/dev-python/caldav/caldav-0.9.2.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="|| ( GPL-3 Apache-2.0 )"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
dev-python/lxml[${PYTHON_USEDEP}]



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

2022-10-10 Thread Sam James
commit: b0396b69e4a8bb75a14bb6d29b428299edd24585
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:28 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0396b69

dev-python/contourpy: Keyword 1.0.5 x86, #872620

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

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

diff --git a/dev-python/contourpy/contourpy-1.0.5.ebuild 
b/dev-python/contourpy/contourpy-1.0.5.ebuild
index aacbaf8b47d1..972f9f2d56d9 100644
--- a/dev-python/contourpy/contourpy-1.0.5.ebuild
+++ b/dev-python/contourpy/contourpy-1.0.5.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="
>=dev-python/numpy-1.16[${PYTHON_USEDEP}]



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

2022-10-10 Thread Sam James
commit: ad9b6dcc885e6240b4de1444c4eb582960a4d84e
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad9b6dcc

dev-python/matplotlib: Keyword 3.6.1 x86, #872620

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

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

diff --git a/dev-python/matplotlib/matplotlib-3.6.1.ebuild 
b/dev-python/matplotlib/matplotlib-3.6.1.ebuild
index b448a4981beb..7bceb2eac24d 100644
--- a/dev-python/matplotlib/matplotlib-3.6.1.ebuild
+++ b/dev-python/matplotlib/matplotlib-3.6.1.ebuild
@@ -30,7 +30,7 @@ SRC_URI="
 # Fonts: BitstreamVera, OFL-1.1
 LICENSE="BitstreamVera BSD matplotlib MIT OFL-1.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 IUSE="cairo doc excel examples gtk3 latex qt5 tk webagg wxwidgets"
 
 # internal copy of pycxx highly patched



[gentoo-commits] repo/gentoo:master commit in: app-officeext/languagetool/

2022-10-10 Thread Sam James
commit: ef492cdabbee9cafa169d61e1bf332c3f828217c
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef492cda

app-officeext/languagetool: Keyword 5.6 x86, #857945

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

 app-officeext/languagetool/languagetool-5.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-officeext/languagetool/languagetool-5.6.ebuild 
b/app-officeext/languagetool/languagetool-5.6.ebuild
index 3fc176cddc53..860f4fa952e1 100644
--- a/app-officeext/languagetool/languagetool-5.6.ebuild
+++ b/app-officeext/languagetool/languagetool-5.6.ebuild
@@ -18,6 +18,6 @@ SRC_URI="https://www.languagetool.org/download/${MY_P}.oxt;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 
 RDEPEND=">=virtual/jre-1.8"



[gentoo-commits] repo/gentoo:master commit in: app-officeext/ooo2gd/

2022-10-10 Thread Sam James
commit: 3a2f7a071716ce585963a99b90333f9aa923bb1b
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a2f7a07

app-officeext/ooo2gd: Keyword 3.0.0-r2 x86, #857945

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

 app-officeext/ooo2gd/ooo2gd-3.0.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-officeext/ooo2gd/ooo2gd-3.0.0-r2.ebuild 
b/app-officeext/ooo2gd/ooo2gd-3.0.0-r2.ebuild
index 20b1a6c4d995..7c1ba8f21571 100644
--- a/app-officeext/ooo2gd/ooo2gd-3.0.0-r2.ebuild
+++ b/app-officeext/ooo2gd/ooo2gd-3.0.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,5 +16,5 @@ SRC_URI="https://ooo2gd.googlecode.com/files/${PN}_${PV}.oxt;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~x86"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: app-vim/vspec/

2022-10-10 Thread Sam James
commit: 9d92b9da5a7119cc0b9e0f7eb483dfe32ffd379d
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d92b9da

app-vim/vspec: Keyword 1.9.2 x86, #853736

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

 app-vim/vspec/vspec-1.9.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-vim/vspec/vspec-1.9.2.ebuild b/app-vim/vspec/vspec-1.9.2.ebuild
index 5dcd6e400cb4..00a73fc1ba63 100644
--- a/app-vim/vspec/vspec-1.9.2.ebuild
+++ b/app-vim/vspec/vspec-1.9.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/kana/vim-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${
 S="${WORKDIR}/vim-${P}"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/

2022-10-10 Thread Sam James
commit: 24397f75cfbb411d42d1bbce58ce6bfa93e3578f
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24397f75

net-p2p/deluge: Keyword 2.1.1 x86, #866614

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

 net-p2p/deluge/deluge-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/deluge/deluge-2.1.1.ebuild 
b/net-p2p/deluge/deluge-2.1.1.ebuild
index e1308fa47596..82e9d085a02a 100644
--- a/net-p2p/deluge/deluge-2.1.1.ebuild
+++ b/net-p2p/deluge/deluge-2.1.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.deluge-torrent.org/${PN};
 else
SRC_URI="http://download.deluge-torrent.org/source/$(ver_cut 
1-2)/${P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
 fi
 
 LICENSE="GPL-2"



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

2022-10-10 Thread Sam James
commit: a5a644f78a6df732f7362c1ac57f5b36ceca6da7
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a644f7

dev-python/pytest-twisted: Keyword 1.13.4-r1 x86, #866614

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

 dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild 
b/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild
index 2313453b6593..0e3f54c6b683 100644
--- a/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild
+++ b/dev-python/pytest-twisted/pytest-twisted-1.13.4-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/pytest-dev/pytest-twisted/archive/v${PV}.tar.gz -> $
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
 
 RDEPEND="
dev-python/decorator[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-go/gox/

2022-10-10 Thread Sam James
commit: 395dfb964da64dd8e46b1d0ac16af5810cf34a17
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=395dfb96

dev-go/gox: Keyword 1.0.1 x86, #867238

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

 dev-go/gox/gox-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-go/gox/gox-1.0.1.ebuild b/dev-go/gox/gox-1.0.1.ebuild
index 87cd85756566..79db3d9ae6ac 100644
--- a/dev-go/gox/gox-1.0.1.ebuild
+++ b/dev-go/gox/gox-1.0.1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/mitchellh/gox/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MPL-2.0"
 SLOT="0/${PVR}"
-KEYWORDS="amd64 ~arm64 ~ppc64"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 
 RESTRICT+=" test"
 



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

2022-10-10 Thread Sam James
commit: b28d5171747c55aed8a3fa5cc0f0472af70d0f16
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28d5171

app-admin/consul: Keyword 1.12.5 x86, #867238

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

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

diff --git a/app-admin/consul/consul-1.12.5.ebuild 
b/app-admin/consul/consul-1.12.5.ebuild
index 62a5094a5777..ae84b874b6af 100644
--- a/app-admin/consul/consul-1.12.5.ebuild
+++ b/app-admin/consul/consul-1.12.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> ${P}.tar.g
 LICENSE="MPL-2.0 Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT"
 RESTRICT+=" test"
 SLOT="0"
-KEYWORDS="amd64 ~arm64"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 BDEPEND="dev-go/gox"
 COMMON_DEPEND="



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

2022-10-10 Thread Sam James
commit: 534e4682379987f23c97e557bed86ed758190cbd
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:39:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:39:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=534e4682

app-text/aha: Keyword 0.5.1 x86, #870103

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

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

diff --git a/app-text/aha/aha-0.5.1.ebuild b/app-text/aha/aha-0.5.1.ebuild
index 78b71d00245a..eb4dbc60933e 100644
--- a/app-text/aha/aha-0.5.1.ebuild
+++ b/app-text/aha/aha-0.5.1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/theZiz/aha/archive/refs/tags/${PV}.tar.gz -> ${P}.ta
 
 LICENSE="LGPL-2+ MPL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 
 PATCHES=(
"${FILESDIR}/${P}-null-ptr-dereference-fix.patch"



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

2022-10-10 Thread Sam James
commit: 035460a5223d488b32bc7ccef1b7b8ab4e266c33
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=035460a5

dev-vcs/git: Stabilize 2.37.3 arm64, #867598

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

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

diff --git a/dev-vcs/git/git-2.37.3.ebuild b/dev-vcs/git/git-2.37.3.ebuild
index 1ef4f439d2e6..12c9468e70f3 100644
--- a/dev-vcs/git/git-2.37.3.ebuild
+++ b/dev-vcs/git/git-2.37.3.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2022-10-10 Thread Sam James
commit: cb3f45c1df558e6964c39f5793be64af716f7973
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb3f45c1

net-libs/libnftnl: Stabilize 1.2.3 x86, #872743

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.2.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.2.3.ebuild
index 366485810558..ca108d9e5067 100644
--- a/net-libs/libnftnl/libnftnl-1.2.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.2.3.ebuild
@@ -17,7 +17,7 @@ else
https://netfilter.org/projects/${PN}/files/${P}.tar.bz2
verify-sig? ( 
https://netfilter.org/projects/${PN}/files/${P}.tar.bz2.sig )
"
-   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"
 
BDEPEND+="verify-sig? ( sec-keys/openpgp-keys-netfilter )"
 fi



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/sngrep/

2022-10-10 Thread Sam James
commit: 54c72f524c25d26063eef4f6cb98213c6264b460
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:22:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:35:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c72f52

net-analyzer/sngrep: add 1.6.0

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

 net-analyzer/sngrep/Manifest|  1 +
 net-analyzer/sngrep/sngrep-1.6.0.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/net-analyzer/sngrep/Manifest b/net-analyzer/sngrep/Manifest
index 664514feffc7..889a077f0371 100644
--- a/net-analyzer/sngrep/Manifest
+++ b/net-analyzer/sngrep/Manifest
@@ -1,2 +1,3 @@
 DIST sngrep-1.4.7.tar.gz 237978 BLAKE2B 
30172748aeab2910e7fa13f35b447d7bd1688bb206576af6233c8c47405eb3fe93316cc72255169f19f3752e7fe3ada63c5c0bba0d9ab75706c1b0d3ac296474
 SHA512 
f414f9cc49b0c34cbbf5a77d285f12eb4091af3395953ed93dbe2f57d4ba3731d16c4b56c37e90744cf3784572975f485aed48cdd100898ffaee18e9a18943b1
 DIST sngrep-1.5.0.tar.gz 244965 BLAKE2B 
85c8ddbbb5c81dfa886086543df9ccb6f4a297c95a23afddfcf1a359e4af19a1f37cd75136881aba07fd70c177737fa93440f04f97ed9ffd01afef3055971472
 SHA512 
20be55f80d029739b1db4c0ccbc028604019acd8ca45181eb9952759ced4f20549d991c2916c9d1c84c989ccb123cad44f545a9146471a79273c0a6053615fbe
+DIST sngrep-1.6.0.tar.gz 248091 BLAKE2B 
a08c50d87d43f49f24494a85b8f4d72f24a649050ab696cabd087a39bd64532a9e7ed137ccaacecddce8ef22c960fc43f5372c9b13817eae26dd06b711363e3b
 SHA512 
bca3192e1aacf4152f566925fd075dfd957cbe87017c8258303c8689f1221ea082f337866db45cb5ada0629f7cc4b66ce73b74a911d230c63d10fefa19aaebe3

diff --git a/net-analyzer/sngrep/sngrep-1.6.0.ebuild 
b/net-analyzer/sngrep/sngrep-1.6.0.ebuild
new file mode 100644
index ..aedd0cf3f8d1
--- /dev/null
+++ b/net-analyzer/sngrep/sngrep-1.6.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Ncurses SIP Messages flow viewer"
+HOMEPAGE="https://github.com/irontec/sngrep;
+SRC_URI="https://github.com/irontec/sngrep/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="eep gnutls pcre ssl zlib"
+
+DEPEND="
+   net-libs/libpcap
+   sys-libs/ncurses:=[unicode(+)]
+   ssl? (
+   !gnutls? ( dev-libs/openssl:= )
+   gnutls? ( net-libs/gnutls:= )
+   )
+   pcre? ( dev-libs/libpcre2 )
+   zlib? ( sys-libs/zlib )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --enable-ipv6
+   --enable-unicode
+
+   $(use_enable eep)
+   $(use_with pcre pcre2)
+   $(use_with ssl $(usex gnutls gnutls openssl))
+   $(use_with zlib)
+   )
+
+   econf "${myeconfargs[@]}"
+}



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

2022-10-10 Thread Sam James
commit: a33f90f33cfff0049764c2aecfd660f393597a8b
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33f90f3

net-libs/libnftnl: Stabilize 1.2.3 arm64, #872743

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.2.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.2.3.ebuild
index ca108d9e5067..4894561678b7 100644
--- a/net-libs/libnftnl/libnftnl-1.2.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.2.3.ebuild
@@ -17,7 +17,7 @@ else
https://netfilter.org/projects/${PN}/files/${P}.tar.bz2
verify-sig? ( 
https://netfilter.org/projects/${PN}/files/${P}.tar.bz2.sig )
"
-   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"
 
BDEPEND+="verify-sig? ( sec-keys/openpgp-keys-netfilter )"
 fi



[gentoo-commits] repo/gentoo:master commit in: x11-terms/st/

2022-10-10 Thread Sam James
commit: dee73fabfbc943cb2b1db7698358465b10261c92
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dee73fab

x11-terms/st: Stabilize 0.8.5 arm64, #867721

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

 x11-terms/st/st-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/st/st-0.8.5.ebuild b/x11-terms/st/st-0.8.5.ebuild
index 91a99b9b1280..849753f48be5 100644
--- a/x11-terms/st/st-0.8.5.ebuild
+++ b/x11-terms/st/st-0.8.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.suckless.org/${PN};
 else
SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT-with-advertising"



[gentoo-commits] repo/gentoo:master commit in: x11-terms/st-terminfo/

2022-10-10 Thread Sam James
commit: aae9bc7201bd9ea43f8fafee0e0bad7e35b3c7d7
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae9bc72

x11-terms/st-terminfo: Stabilize 0.8.5 arm64, #867721

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

 x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild 
b/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
index 5647c995b0da..3767ae01552a 100644
--- a/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
+++ b/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="https://dl.suckless.org/st/st-${PV}.tar.gz;
S="${WORKDIR}/st-${PV}"
-   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT-with-advertising"



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2022-10-10 Thread Sam James
commit: cbb47b4567660062a24d404f3ef17224835a04fc
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb47b45

net-firewall/nftables: Stabilize 1.0.5 x86, #872743

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

 net-firewall/nftables/nftables-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-1.0.5.ebuild 
b/net-firewall/nftables/nftables-1.0.5.ebuild
index 6f59bde1ac65..abae2b04 100644
--- a/net-firewall/nftables/nftables-1.0.5.ebuild
+++ b/net-firewall/nftables/nftables-1.0.5.ebuild
@@ -22,7 +22,7 @@ if [[ ${PV} =~ ^[9]{4,}$ ]]; then
 else
SRC_URI="https://netfilter.org/projects/nftables/files/${P}.tar.bz2
verify-sig? ( 
https://netfilter.org/projects/nftables/files/${P}.tar.bz2.sig )"
-   KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
BDEPEND+="verify-sig? ( sec-keys/openpgp-keys-netfilter )"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2022-10-10 Thread Sam James
commit: 69f2fc681234df26d4e323c9a7df8e1e5094e1a4
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69f2fc68

net-firewall/nftables: Stabilize 1.0.5 arm64, #872743

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

 net-firewall/nftables/nftables-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-1.0.5.ebuild 
b/net-firewall/nftables/nftables-1.0.5.ebuild
index abae2b04..54607cdbfa78 100644
--- a/net-firewall/nftables/nftables-1.0.5.ebuild
+++ b/net-firewall/nftables/nftables-1.0.5.ebuild
@@ -22,7 +22,7 @@ if [[ ${PV} =~ ^[9]{4,}$ ]]; then
 else
SRC_URI="https://netfilter.org/projects/nftables/files/${P}.tar.bz2
verify-sig? ( 
https://netfilter.org/projects/nftables/files/${P}.tar.bz2.sig )"
-   KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
+   KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
x86"
BDEPEND+="verify-sig? ( sec-keys/openpgp-keys-netfilter )"
 fi
 



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

2022-10-10 Thread Sam James
commit: b23c893151377d46ffb494deae561c8046a15554
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:36:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:36:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23c8931

www-servers/lighttpd: Stabilize 1.4.67 x86, #873064

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

 www-servers/lighttpd/lighttpd-1.4.67.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/lighttpd/lighttpd-1.4.67.ebuild 
b/www-servers/lighttpd/lighttpd-1.4.67.ebuild
index 1bba7c1c492b..4fa8e4c104cd 100644
--- a/www-servers/lighttpd/lighttpd-1.4.67.ebuild
+++ b/www-servers/lighttpd/lighttpd-1.4.67.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://download.lighttpd.net/lighttpd/releases-$(ver_cut 1-2).x/${P}.t
 
 LICENSE="BSD GPL-2"
 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="+brotli dbi gnutls kerberos ldap +lua maxminddb mbedtls mmap mysql 
+nettle nss +pcre php postgres rrdtool sasl selinux ssl sqlite +system-xxhash 
test unwind webdav xattr +zlib zstd"
 RESTRICT="!test? ( test )"
 



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

2022-10-10 Thread Sam James
commit: 40381ed781f116dc154cb8153c141adfea72a6d8
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 23:35:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 23:35:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40381ed7

dev-vcs/git: Stabilize 2.37.3 x86, #867598

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

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

diff --git a/dev-vcs/git/git-2.37.3.ebuild b/dev-vcs/git/git-2.37.3.ebuild
index 94dedf872da9..1ef4f439d2e6 100644
--- a/dev-vcs/git/git-2.37.3.ebuild
+++ b/dev-vcs/git/git-2.37.3.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: net-libs/libnma/, dev-libs/glib/

2022-10-10 Thread Matt Turner
commit: 9b3b2a73afbb5548510b0ee1e8930c3d954a2500
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 10 22:21:40 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 22:36:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b3b2a73

net-libs/libnma: Depend on gcr[gtk]

Closes: https://bugs.gentoo.org/737716
Signed-off-by: Matt Turner  gentoo.org>

 dev-libs/glib/glib-2.74.0-r1.ebuild | 2 +-
 net-libs/libnma/libnma-1.10.2.ebuild| 2 +-
 net-libs/libnma/libnma-1.8.40-r1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/glib/glib-2.74.0-r1.ebuild 
b/dev-libs/glib/glib-2.74.0-r1.ebuild
index 9c91688a8c0a..505345d23969 100644
--- a/dev-libs/glib/glib-2.74.0-r1.ebuild
+++ b/dev-libs/glib/glib-2.74.0-r1.ebuild
@@ -14,7 +14,7 @@ LICENSE="LGPL-2.1+"
 SLOT="2"
 IUSE="dbus debug +elf gtk-doc +mime selinux static-libs sysprof systemtap test 
utils xattr"
 RESTRICT="!test? ( test )"
-REQUIRED_USE="gtk-doc? ( test )" # Bug #777636
+#REQUIRED_USE="gtk-doc? ( test )" # Bug #777636
 
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 

diff --git a/net-libs/libnma/libnma-1.10.2.ebuild 
b/net-libs/libnma/libnma-1.10.2.ebuild
index ff4c545e7534..e5a2e8e45381 100644
--- a/net-libs/libnma/libnma-1.10.2.ebuild
+++ b/net-libs/libnma/libnma-1.10.2.ebuild
@@ -22,7 +22,7 @@ DEPEND="
>=dev-libs/glib-2.38:2
>=x11-libs/gtk+-3.12:3[introspection?]
>=net-misc/networkmanager-1.7[introspection?]
-   pkcs11? ( >=app-crypt/gcr-3.14:0= )
+   pkcs11? ( >=app-crypt/gcr-3.14:0=[gtk] )
introspection? ( >=dev-libs/gobject-introspection-1.56:= )
 "
 RDEPEND="${DEPEND}

diff --git a/net-libs/libnma/libnma-1.8.40-r1.ebuild 
b/net-libs/libnma/libnma-1.8.40-r1.ebuild
index f82e3c05a10b..af22040e877f 100644
--- a/net-libs/libnma/libnma-1.8.40-r1.ebuild
+++ b/net-libs/libnma/libnma-1.8.40-r1.ebuild
@@ -22,7 +22,7 @@ DEPEND="
>=dev-libs/glib-2.38:2
>=x11-libs/gtk+-3.12:3[introspection?]
>=net-misc/networkmanager-1.7[introspection?]
-   pkcs11? ( >=app-crypt/gcr-3.14:0= )
+   pkcs11? ( >=app-crypt/gcr-3.14:0=[gtk] )
introspection? ( >=dev-libs/gobject-introspection-1.56:= )
 "
 RDEPEND="${DEPEND}



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

2022-10-10 Thread Matt Turner
commit: 303e3432e645f36709ba2feeeb39f7d61edd1843
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 10 22:36:20 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 22:36:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=303e3432

xfce-base/tumbler: BDEPEND on glib-utils

Closes: https://bugs.gentoo.org/667474
Signed-off-by: Matt Turner  gentoo.org>

 xfce-base/tumbler/tumbler-4.16.0.ebuild | 1 +
 xfce-base/tumbler/tumbler-4.16.1.ebuild | 1 +
 xfce-base/tumbler/tumbler-4.17.2.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/xfce-base/tumbler/tumbler-4.16.0.ebuild 
b/xfce-base/tumbler/tumbler-4.16.0.ebuild
index 36a0baaa7b78..ad4822297baa 100644
--- a/xfce-base/tumbler/tumbler-4.16.0.ebuild
+++ b/xfce-base/tumbler/tumbler-4.16.0.ebuild
@@ -34,6 +34,7 @@ RDEPEND="${DEPEND}
gstreamer? ( media-plugins/gst-plugins-meta:1.0 )"
 BDEPEND="
dev-util/gdbus-codegen
+   dev-util/glib-utils
dev-util/gtk-doc-am
dev-util/intltool
sys-devel/gettext

diff --git a/xfce-base/tumbler/tumbler-4.16.1.ebuild 
b/xfce-base/tumbler/tumbler-4.16.1.ebuild
index 1b6e15d6cbf5..ead2bb759784 100644
--- a/xfce-base/tumbler/tumbler-4.16.1.ebuild
+++ b/xfce-base/tumbler/tumbler-4.16.1.ebuild
@@ -38,6 +38,7 @@ RDEPEND="
 "
 BDEPEND="
dev-util/gdbus-codegen
+   dev-util/glib-utils
dev-util/gtk-doc-am
dev-util/intltool
sys-devel/gettext

diff --git a/xfce-base/tumbler/tumbler-4.17.2.ebuild 
b/xfce-base/tumbler/tumbler-4.17.2.ebuild
index ca2022354863..abaaa59629fb 100644
--- a/xfce-base/tumbler/tumbler-4.17.2.ebuild
+++ b/xfce-base/tumbler/tumbler-4.17.2.ebuild
@@ -39,6 +39,7 @@ RDEPEND="
 "
 BDEPEND="
dev-util/gdbus-codegen
+   dev-util/glib-utils
dev-util/gtk-doc-am
dev-util/intltool
sys-devel/gettext



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

2022-10-10 Thread Sam James
commit: 8edcbd6eb43b740ff2647b0a00d02d17c95566f0
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:35:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:35:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8edcbd6e

net-libs/libnftnl: Stabilize 1.2.3 arm, #872743

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.2.3.ebuild 
b/net-libs/libnftnl/libnftnl-1.2.3.ebuild
index e2640d03be0d..366485810558 100644
--- a/net-libs/libnftnl/libnftnl-1.2.3.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.2.3.ebuild
@@ -17,7 +17,7 @@ else
https://netfilter.org/projects/${PN}/files/${P}.tar.bz2
verify-sig? ( 
https://netfilter.org/projects/${PN}/files/${P}.tar.bz2.sig )
"
-   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"
 
BDEPEND+="verify-sig? ( sec-keys/openpgp-keys-netfilter )"
 fi



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2022-10-10 Thread Sam James
commit: d64cc474355fd77a42a7e64dddfc76574912f589
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:35:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:35:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d64cc474

net-firewall/nftables: Stabilize 1.0.5 arm, #872743

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

 net-firewall/nftables/nftables-1.0.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-1.0.5.ebuild 
b/net-firewall/nftables/nftables-1.0.5.ebuild
index b6fdb61bd493..6f59bde1ac65 100644
--- a/net-firewall/nftables/nftables-1.0.5.ebuild
+++ b/net-firewall/nftables/nftables-1.0.5.ebuild
@@ -22,7 +22,7 @@ if [[ ${PV} =~ ^[9]{4,}$ ]]; then
 else
SRC_URI="https://netfilter.org/projects/nftables/files/${P}.tar.bz2
verify-sig? ( 
https://netfilter.org/projects/nftables/files/${P}.tar.bz2.sig )"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86"
+   KEYWORDS="~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86"
BDEPEND+="verify-sig? ( sec-keys/openpgp-keys-netfilter )"
 fi
 



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

2022-10-10 Thread Sam James
commit: d205d1122c5d28ce7134f8ca896727ff35ed31a1
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:35:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:35:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d205d112

dev-vcs/git: Stabilize 2.37.3 arm, #867598

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

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

diff --git a/dev-vcs/git/git-2.37.3.ebuild b/dev-vcs/git/git-2.37.3.ebuild
index e2238103595d..94dedf872da9 100644
--- a/dev-vcs/git/git-2.37.3.ebuild
+++ b/dev-vcs/git/git-2.37.3.ebuild
@@ -46,7 +46,7 @@ if [[ ${PV} != * ]]; then

${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX}
)"
[[ "${PV}" == *_rc* ]] || \
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2022-10-10 Thread Sam James
commit: 292411f47677ffbfeba8be1864f51ac990d1c0a6
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:11:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:11:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=292411f4

media-sound/terminatorx: add github upstream metadata

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

 media-sound/terminatorx/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/media-sound/terminatorx/metadata.xml 
b/media-sound/terminatorx/metadata.xml
index 3fed8a8997c3..a9e5a2191e05 100644
--- a/media-sound/terminatorx/metadata.xml
+++ b/media-sound/terminatorx/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   proau...@gentoo.org
-   Gentoo ProAudio Project
-
+   
+   proau...@gentoo.org
+   Gentoo ProAudio Project
+   
+   
+   axkg/terminatorX
+   
 



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

2022-10-10 Thread Sam James
commit: 4727702eca8d52d6ed956a58a62ef95a79eaf62a
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:11:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:11:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4727702e

profiles/base: fix mask comment typo

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

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 4236d64c0e81..5e4cc90b 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -12,7 +12,7 @@
 # fails: bug #873211.
 ~net-libs/gnutls-3.7.8 verify-sig
 
-# Sam Jame  (2022-10-08)
+# Sam James  (2022-10-08)
 # Older versions of libvirt need a vulnerable version of wireshark
 

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

2022-10-10 Thread Sam James
commit: e3d2b156c2b476dec2139e9134949af4d3f0cad0
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:11:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:11:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d2b156

dev-python/twisted: Stabilize 22.8.0 arm64, #876550

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

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

diff --git a/dev-python/twisted/twisted-22.8.0.ebuild 
b/dev-python/twisted/twisted-22.8.0.ebuild
index 8d34968696b9..52b64420fb4f 100644
--- a/dev-python/twisted/twisted-22.8.0.ebuild
+++ b/dev-python/twisted/twisted-22.8.0.ebuild
@@ -19,7 +19,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="conch http2 serial ssl test"
 RESTRICT="!test? ( test )"
 



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

2022-10-10 Thread Sam James
commit: e7989fb23aba692955ef334410007ad87f42d42e
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:10:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:10:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7989fb2

media-sound/terminatorx: drop www from HOMEPAGE/SRC_URI

Has cert issues.

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

 media-sound/terminatorx/terminatorx-4.1.0.ebuild | 6 +++---
 media-sound/terminatorx/terminatorx-4.2.0.ebuild | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-sound/terminatorx/terminatorx-4.1.0.ebuild 
b/media-sound/terminatorx/terminatorx-4.1.0.ebuild
index c34a201fbaec..a5e5fd161367 100644
--- a/media-sound/terminatorx/terminatorx-4.1.0.ebuild
+++ b/media-sound/terminatorx/terminatorx-4.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -7,9 +7,9 @@ inherit gnome2
 MY_P=${P/terminatorx/terminatorX}
 
 DESCRIPTION="Realtime audio synthesizer allowing you to 'scratch' on sampled 
audio data"
-HOMEPAGE="https://www.terminatorx.org/;
+HOMEPAGE="https://terminatorx.org/;
 # this is the original location but there is an issue with their certificate 
so mirroring the file
-#SRC_URI="https://www.terminatorx.org/dist/${MY_P}.tar.bz2;
+#SRC_URI="https://terminatorx.org/dist/${MY_P}.tar.bz2;
 SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"

diff --git a/media-sound/terminatorx/terminatorx-4.2.0.ebuild 
b/media-sound/terminatorx/terminatorx-4.2.0.ebuild
index ca8785ba193d..cee126dbd19e 100644
--- a/media-sound/terminatorx/terminatorx-4.2.0.ebuild
+++ b/media-sound/terminatorx/terminatorx-4.2.0.ebuild
@@ -7,9 +7,9 @@ inherit gnome2
 MY_P=${P/terminatorx/terminatorX}
 
 DESCRIPTION="Realtime audio synthesizer allowing you to 'scratch' on sampled 
audio data"
-HOMEPAGE="https://www.terminatorx.org/;
+HOMEPAGE="https://terminatorx.org/;
 # this is the original location but there is an issue with their certificate 
so mirroring the file
-#SRC_URI="https://www.terminatorx.org/dist/${MY_P}.tar.bz2;
+#SRC_URI="https://terminatorx.org/dist/${MY_P}.tar.bz2;
 SRC_URI="https://dev.gentoo.org/~fordfrog/distfiles/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: x11-terms/st-terminfo/

2022-10-10 Thread Sam James
commit: 0453dfe6c646818d00b840b013614a2bc7413057
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:06:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0453dfe6

x11-terms/st-terminfo: Stabilize 0.8.5 x86, #867721

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

 x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild 
b/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
index e7705495c78e..1c4c96c5c4d0 100644
--- a/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
+++ b/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="https://dl.suckless.org/st/st-${PV}.tar.gz;
S="${WORKDIR}/st-${PV}"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT-with-advertising"



[gentoo-commits] repo/gentoo:master commit in: x11-terms/st-terminfo/

2022-10-10 Thread Sam James
commit: a167fd5852ff8fedf8b344d32fbff5c52e1eb27d
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:06:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a167fd58

x11-terms/st-terminfo: Stabilize 0.8.5 amd64, #867721

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

 x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild 
b/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
index 1c4c96c5c4d0..5647c995b0da 100644
--- a/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
+++ b/x11-terms/st-terminfo/st-terminfo-0.8.5.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="https://dl.suckless.org/st/st-${PV}.tar.gz;
S="${WORKDIR}/st-${PV}"
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT-with-advertising"



[gentoo-commits] repo/gentoo:master commit in: profiles/base/, net-libs/gnutls/

2022-10-10 Thread Sam James
commit: b05770f31c02eeba93143907ed1592e49636af4f
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:02:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b05770f3

net-libs/gnutls: add 3.7.8

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

 net-libs/gnutls/Manifest|   2 +
 net-libs/gnutls/gnutls-3.7.8.ebuild | 144 
 profiles/base/package.use.mask  |   6 ++
 3 files changed, 152 insertions(+)

diff --git a/net-libs/gnutls/Manifest b/net-libs/gnutls/Manifest
index f468c56dbed9..20aefd7eca78 100644
--- a/net-libs/gnutls/Manifest
+++ b/net-libs/gnutls/Manifest
@@ -2,3 +2,5 @@ DIST gnutls-3.7.6.tar.xz 6338276 BLAKE2B 
9f3cce8dfc0b88f2c42d1d2633417dac649a265
 DIST gnutls-3.7.6.tar.xz.sig 685 BLAKE2B 
eae022d6cb0d772e465257411381afd97f3dfd19d6f794a1c3e0f8c3c1232a8a1b91269ca7252a5662782183b11ca393c31efe3f88171a526884400fd0534528
 SHA512 
c969da9a938b9d29a70cea3b00cce337f9a4c4304aae7f501ef6263894f81a420395ddbe1b005f35dff2e900d3fac75e288f10bbfde0ebea034f7e257bb16d0e
 DIST gnutls-3.7.7.tar.xz 6351664 BLAKE2B 
a66037ecc6da660ff12949f50012840263c2e0b174079e41b62a2d884f060cee56f0c64a2815d07321a54b08cce016d2b4c8f0e059636c1ab5f7db9c8d64c7c6
 SHA512 
ba00b20126379ec7e96c6bfa606cfb7bb0d9a5853318b29b5278a42a85ae40d39d8442778938e1f165debcdb1adaf9c63bcec59a4eb3387dd1ac99b08bcc5c08
 DIST gnutls-3.7.7.tar.xz.sig 685 BLAKE2B 
53d76a06ed5a74664d6c193459eb310f06e87dd3db97aca9e9fa78837677df58d8de66f187c182b9375786ee0308c5da55f08414183c959c7acb4527c38cd7c7
 SHA512 
6463bc4661e20051ff9f31c1a557cece34d06b748f4e24f98e807ddc72a3daa9348aa9f0afa83a0f9cd226421c575210eec1936fbeb9a55849e2c397ace9d03d
+DIST gnutls-3.7.8.tar.xz 6029220 BLAKE2B 
0a21e63c7cb0ba4eeff23593c7282e0b4d704fa2d2a1cd5289998fd04b58ea36fc343f872225ad05478e278b1cdebbcd0fd376459abcb58547f8fa1488485530
 SHA512 
4199bcf7c9e3aab2f52266aadceefc563dfe2d938d0ea1f3ec3be95d66f4a8c8e5494d3a800c03dd02ad386dec1738bd63e1fe0d8b394a2ccfc7d6c6a0cc9359
+DIST gnutls-3.7.8.tar.xz.sig 1250 BLAKE2B 
66c6a335c3b2290a4e44ffa6ae715ad71d2bcd7df485c1d2d9490985d9dcd445768d6eb021ad3a61614431183c6652254c63ebd8abd0f0a03d3164a6193b6192
 SHA512 
cecf9843e8683a278d065b663dc98ac2b5fcad1905ee25333038c93c2289b518c974629367e77e66552ac1c9d122d551616edba35cb0c4204202ec676f1a2db7

diff --git a/net-libs/gnutls/gnutls-3.7.8.ebuild 
b/net-libs/gnutls/gnutls-3.7.8.ebuild
new file mode 100644
index ..2257a4122b73
--- /dev/null
+++ b/net-libs/gnutls/gnutls-3.7.8.ebuild
@@ -0,0 +1,144 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/gnutls.asc
+inherit libtool multilib-minimal verify-sig
+
+DESCRIPTION="A secure communications library implementing the SSL, TLS and 
DTLS protocols"
+HOMEPAGE="https://www.gnutls.org/;
+SRC_URI="mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz"
+SRC_URI+=" verify-sig? ( mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz.sig 
)"
+
+LICENSE="GPL-3 LGPL-2.1+"
+SLOT="0/30.30" # .
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="brotli +cxx dane doc examples guile +idn nls +openssl pkcs11 seccomp 
sslv2 sslv3 static-libs test test-full +tls-heartbeat tools valgrind zlib zstd"
+
+REQUIRED_USE="test-full? ( cxx dane doc examples guile idn nls openssl pkcs11 
seccomp tls-heartbeat tools )"
+RESTRICT="!test? ( test )"
+
+RDEPEND=">=dev-libs/libtasn1-4.9:=[${MULTILIB_USEDEP}]
+   dev-libs/libunistring:=[${MULTILIB_USEDEP}]
+   >=dev-libs/nettle-3.6:=[gmp,${MULTILIB_USEDEP}]
+   >=dev-libs/gmp-5.1.3-r1:=[${MULTILIB_USEDEP}]
+   brotli? ( >=app-arch/brotli-1.0.0:=[${MULTILIB_USEDEP}] )
+   dane? ( >=net-dns/unbound-1.4.20:=[${MULTILIB_USEDEP}] )
+   guile? ( >=dev-scheme/guile-2:=[networking] )
+   nls? ( >=virtual/libintl-0-r1:=[${MULTILIB_USEDEP}] )
+   pkcs11? ( >=app-crypt/p11-kit-0.23.1[${MULTILIB_USEDEP}] )
+   idn? ( >=net-dns/libidn2-0.16-r1:=[${MULTILIB_USEDEP}] )
+   zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
+   zstd? ( >=app-arch/zstd-1.3.0:=[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   test? (
+   seccomp? ( sys-libs/libseccomp )
+   )"
+BDEPEND="
+   dev-util/gtk-doc-am
+   >=virtual/pkgconfig-0-r1
+   doc? ( dev-util/gtk-doc )
+   nls? ( sys-devel/gettext )
+   valgrind? ( dev-util/valgrind )
+   test-full? (
+   app-crypt/dieharder
+   >=app-misc/datefudge-1.22
+   dev-libs/softhsm:2[-bindist(-)]
+   net-dialup/ppp
+   net-misc/socat
+   )
+   verify-sig? ( >=sec-keys/openpgp-keys-gnutls-20220320 )"
+
+DOCS=( 

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

2022-10-10 Thread Sam James
commit: 1e3020768c73f2deb0f191182ce21b8f8f80ebf3
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:01:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e302076

media-libs/libcaca: drop 0.99_beta19-r8

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

 media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild | 182 ---
 1 file changed, 182 deletions(-)

diff --git a/media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild 
b/media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild
deleted file mode 100644
index 07175fc779eb..
--- a/media-libs/libcaca/libcaca-0.99_beta19-r8.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-RUBY_OPTIONAL=yes
-#USE_RUBY=ruby20
-
-inherit autotools ruby-ng flag-o-matic java-pkg-opt-2 mono-env toolchain-funcs 
multilib-minimal
-
-MY_P=${P/_/.}
-DESCRIPTION="A library that creates colored ASCII-art graphics"
-HOMEPAGE="http://libcaca.zoy.org/;
-SRC_URI="http://libcaca.zoy.org/files/${PN}/${MY_P}.tar.gz;
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2 ISC LGPL-2.1 WTFPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-IUSE="doc imlib java mono ncurses opengl ruby slang static-libs test truetype 
X"
-RESTRICT="!test? ( test )"
-
-# ruby? ( ruby_targets_${USE_RUBY} )
-REQUIRED_USE=""
-
-# ruby? (  $(ruby_implementations_depend) )
-DEPEND="
-   imlib? ( >=media-libs/imlib2-1.4.6-r2[${MULTILIB_USEDEP}] )
-   mono? ( dev-lang/mono )
-   ncurses? ( >=sys-libs/ncurses-5.9-r3:0=[${MULTILIB_USEDEP}] )
-   opengl? (
-   >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
-   >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
-   >=media-libs/freeglut-2.8.1[${MULTILIB_USEDEP}]
-   truetype? ( >=media-libs/ftgl-2.1.3_rc5 )
-   )
-   slang? ( >=sys-libs/slang-2.2.4-r1[${MULTILIB_USEDEP}] )
-   X? (
-   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
-   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
-   )
-"
-RDEPEND="java? ( >=virtual/jre-1.8:* )"
-BDEPEND="
-   virtual/pkgconfig
-   doc? (
-   app-doc/doxygen
-   virtual/latex-base
-   >=dev-texlive/texlive-fontsrecommended-2012
-   >=dev-texlive/texlive-latexextra-2012
-   dev-texlive/texlive-latexrecommended
-   )
-   java? ( >=virtual/jdk-1.8:* )
-   test? ( dev-util/cppunit )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS NOTES README THANKS )
-
-PATCHES=(
-   # Fix out of source tests
-   "${FILESDIR}"/${PN}-0.99_beta18-fix-tests.patch
-   # Debian patches
-   "${FILESDIR}/CVE-2018-20544.patch"
-   "${FILESDIR}/CVE-2018-20545+20547+20549.patch"
-   "${FILESDIR}/CVE-2018-20546+20547.patch"
-   "${FILESDIR}/canvas-fix-an-integer-overflow-in-caca_resize.patch"
-   "${FILESDIR}/Fix-a-problem-in-the-caca_resize-overflow-detection-.patch"
-   "${FILESDIR}/100_doxygen.diff"
-   # Fix doxygen docs install, bug 543870
-   "${FILESDIR}/fix-css-path.patch"
-)
-
-pkg_setup() {
-   java-pkg-opt-2_pkg_setup
-   use mono && mono-env_pkg_setup
-}
-
-src_unpack() {
-   default
-}
-
-src_prepare() {
-   # bug #339962
-   sed -i -e '/doxygen_tests = check-doxygen/d' test/Makefile.am || die
-
-   sed -i \
-   -e 's:-g -O2 -fno-strength-reduce -fomit-frame-pointer::' \
-   -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
-   configure.ac || die
-
-   sed -i \
-   -e 's:$(JAVAC):$(JAVAC) $(JAVACFLAGS):' \
-   -e 's:libcaca_java_la_CPPFLAGS =:libcaca_java_la_CPPFLAGS = 
-I$(top_srcdir)/caca:' \
-   java/Makefile.am || die
-
-   if ! use truetype; then
-   sed -i -e '/PKG_CHECK_MODULES/s:ftgl:dIsAbLe&:' configure.ac || 
die
-   fi
-
-   if use imlib && ! use X; then
-   append-cflags -DX_DISPLAY_MISSING
-   fi
-
-   # bug #653400
-   append-cxxflags -std=c++11
-
-   # bug #601902
-   append-libs "$($(tc-getPKG_CONFIG) --libs ncurses)"
-
-   # fix docs install path, bug 543870#c14
-   sed -i "s/libcaca-dev/${PF}/g" doc/Makefile.am || die
-
-   default
-   eautoreconf
-
-   java-pkg-opt-2_src_prepare
-}
-
-multilib_src_configure() {
-   if multilib_is_native_abi; then
-   if use java; then
-   export JAVACFLAGS="$(java-pkg_javac-args)"
-   export JAVA_CFLAGS="$(java-pkg_get-jni-cflags)"
-   fi
-
-   # bug #44128
-   export VARTEXFONTS="${T}/fonts"
-
-   # bug #329651
-   use mono && export CSC="$(type -P gmcs)"
-   use ruby && use ruby_targets_${USE_RUBY} && export 
RUBY=$(ruby_implementation_command 

[gentoo-commits] repo/gentoo:master commit in: x11-terms/st/

2022-10-10 Thread Sam James
commit: 9356f4cff2c143b75db1ea2130c72250a4943bad
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:06:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9356f4cf

x11-terms/st: Stabilize 0.8.5 x86, #867721

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

 x11-terms/st/st-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/st/st-0.8.5.ebuild b/x11-terms/st/st-0.8.5.ebuild
index 61641700f566..0edb213db9c7 100644
--- a/x11-terms/st/st-0.8.5.ebuild
+++ b/x11-terms/st/st-0.8.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.suckless.org/${PN};
 else
SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT-with-advertising"



[gentoo-commits] repo/gentoo:master commit in: x11-terms/st/

2022-10-10 Thread Sam James
commit: 5af39bf5676e392f7167ecbceba67904b1930f1d
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 22:06:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5af39bf5

x11-terms/st: Stabilize 0.8.5 amd64, #867721

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

 x11-terms/st/st-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/st/st-0.8.5.ebuild b/x11-terms/st/st-0.8.5.ebuild
index 0edb213db9c7..91a99b9b1280 100644
--- a/x11-terms/st/st-0.8.5.ebuild
+++ b/x11-terms/st/st-0.8.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.suckless.org/${PN};
 else
SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~m68k ~ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT-with-advertising"



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

2022-10-10 Thread Sam James
commit: ffce9b894fca9840e433b255e63fc2ad6a8203b6
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 21:59:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffce9b89

media-libs/libcaca: fix RDEPEND

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

 .../{libcaca-0.99_beta19-r9.ebuild => libcaca-0.99_beta19-r10.ebuild}| 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-libs/libcaca/libcaca-0.99_beta19-r9.ebuild 
b/media-libs/libcaca/libcaca-0.99_beta19-r10.ebuild
similarity index 99%
rename from media-libs/libcaca/libcaca-0.99_beta19-r9.ebuild
rename to media-libs/libcaca/libcaca-0.99_beta19-r10.ebuild
index 29de0d6f6dee..86ee32249914 100644
--- a/media-libs/libcaca/libcaca-0.99_beta19-r9.ebuild
+++ b/media-libs/libcaca/libcaca-0.99_beta19-r10.ebuild
@@ -36,6 +36,7 @@ DEPEND="
>=x11-libs/libXt-1.1.4
)
 "
+RDEPEND="${DEPEND}"
 BDEPEND="
virtual/pkgconfig
doc? (



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

2022-10-10 Thread Sam James
commit: 30fde182fbcef87f10ae2294101698af16c68ba9
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 21:49:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 22:06:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30fde182

sys-devel/gettext: note about 0.21.1 bump blocker

Bug: https://savannah.gnu.org/bugs/?63193
Signed-off-by: Sam James  gentoo.org>

 sys-devel/gettext/gettext-0.21-r4.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/sys-devel/gettext/gettext-0.21-r4.ebuild 
b/sys-devel/gettext/gettext-0.21-r4.ebuild
index b8bcb0f6414f..e53871814631 100644
--- a/sys-devel/gettext/gettext-0.21-r4.ebuild
+++ b/sys-devel/gettext/gettext-0.21-r4.ebuild
@@ -5,6 +5,10 @@
 
 EAPI=7
 
+if [[ ${PV} != 0.21 ]] ; then
+   die "Please check if https://savannah.gnu.org/bugs/?63193 is fixed 
before bumping!"
+fi
+
 VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/gettext.asc
 inherit mono-env libtool java-pkg-opt-2 multilib-minimal verify-sig
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/ddclient/

2022-10-10 Thread Conrad Kostecki
commit: 50ff065438d63596d5651ac0b5c36adbdc9b5d1b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 21:58:02 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 22:00:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ff0654

net-dns/ddclient: add exist check for config

Check, if old config exists before migrating it.

Closes: https://bugs.gentoo.org/876628
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-dns/ddclient/ddclient-3.10.0_rc2.ebuild | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-dns/ddclient/ddclient-3.10.0_rc2.ebuild 
b/net-dns/ddclient/ddclient-3.10.0_rc2.ebuild
index 62aa3c885802..f4d5478a2573 100644
--- a/net-dns/ddclient/ddclient-3.10.0_rc2.ebuild
+++ b/net-dns/ddclient/ddclient-3.10.0_rc2.ebuild
@@ -66,12 +66,12 @@ pkg_postinst() {
if [[ ${REPLACING_VERSIONS} ]]; then
for v in ${REPLACING_VERSIONS}; do
if ver_test "${v}" -lt 3.10.0; then
-   cp /etc/ddclient/ddclient.conf 
/etc/ddclient.conf || die
-
-   ewarn "Your DDClient configuration has been 
copied from"
-   ewarn "'/etc/ddclient/ddclient.conf' to 
'/etc/ddclient.conf'."
-   ewarn "Please check your configuration."
-
+   if [ -f "${EROOT}/etc/ddclient/ddclient.conf" 
]; then
+   cp /etc/ddclient/ddclient.conf 
/etc/ddclient.conf || die
+   ewarn "Your DDClient configuration has 
been copied from"
+   ewarn "'/etc/ddclient/ddclient.conf' to 
'/etc/ddclient.conf'."
+   ewarn "Please check your configuration."
+   fi
break
fi
done



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

2022-10-10 Thread Matt Turner
commit: 88900a1d6105d240dbcb07229bc6b347904c20e1
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 10 21:50:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 21:52:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88900a1d

dev-libs/liborcus: Update subslot

And update PYTHON_COMPAT while we're here.

Closes: https://bugs.gentoo.org/861782
Signed-off-by: Matt Turner  gentoo.org>

 dev-libs/liborcus/liborcus-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/liborcus/liborcus-.ebuild 
b/dev-libs/liborcus/liborcus-.ebuild
index 24525403dd48..ccd372165c87 100644
--- a/dev-libs/liborcus/liborcus-.ebuild
+++ b/dev-libs/liborcus/liborcus-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{8,9,10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit autotools python-single-r1
 
@@ -22,7 +22,7 @@ else
 fi
 
 LICENSE="MIT"
-SLOT="0/0.17" # based on SONAME of liborcus.so
+SLOT="0/0.18" # based on SONAME of liborcus.so
 IUSE="python +spreadsheet-model test tools"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-icon-theme/

2022-10-10 Thread Matt Turner
commit: 9df2065a44e1b3c3cf94004d0e2ef0bd48543221
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 10 21:49:59 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Oct 10 21:51:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9df2065a

x11-themes/adwaita-icon-theme: Add Python 3.11 compatibility

Closes: https://bugs.gentoo.org/862184
Signed-off-by: Matt Turner  gentoo.org>

 x11-themes/adwaita-icon-theme/adwaita-icon-theme-43_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-43_p1.ebuild 
b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-43_p1.ebuild
index ae0367b097d5..877d8929628b 100644
--- a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-43_p1.ebuild
+++ b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-43_p1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 
 inherit gnome2 python-any-r1
 



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

2022-10-10 Thread Sam James
commit: 9f829fb9b30d3bd85375fe57279d835abd21869d
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 21:36:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 21:36:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f829fb9

dev-libs/libical: backport parsing regression fix; backport F_S=3 fix

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

 .../files/libical-3.0.15-fortify-source-3.patch|  43 
 .../files/libical-3.0.15-revert-bad-fuzz-fix.patch |  36 +++
 dev-libs/libical/libical-3.0.15-r1.ebuild  | 119 +
 3 files changed, 198 insertions(+)

diff --git a/dev-libs/libical/files/libical-3.0.15-fortify-source-3.patch 
b/dev-libs/libical/files/libical-3.0.15-fortify-source-3.patch
new file mode 100644
index ..830d646b74d0
--- /dev/null
+++ b/dev-libs/libical/files/libical-3.0.15-fortify-source-3.patch
@@ -0,0 +1,43 @@
+https://github.com/libical/libical/commit/d67034b31cebe0db3ca65342813336b123921a15
+https://github.com/libical/libical/issues/603
+https://bugs.gentoo.org/876625
+
+From: Allen Winter 
+Date: Fri, 7 Oct 2022 09:43:32 -0400
+Subject: [PATCH] fix problem found with gcc fortify builds
+
+fixes: #603
+--- a/src/libical/icaltz-util.c
 b/src/libical/icaltz-util.c
+@@ -732,7 +732,7 @@ icalcomponent *icaltzutil_fetch_timezone(const char 
*location)
+ for (i = 0; i < num_trans; i++) {
+ int by_day = 0;
+ time_t start;
+-enum icalrecurrencetype_weekday dow;
++enum icalrecurrencetype_weekday dow = ICAL_NO_WEEKDAY;
+ 
+ prev_idx = idx;
+ idx = trans_idx[i];
+--- a/src/libicalss/icalbdbset.c
 b/src/libicalss/icalbdbset.c
+@@ -529,7 +529,7 @@ int icalbdbset_get_key(DBC *dbcp, DBT *key, DBT *data)
+ int icalbdbset_delete(DB *dbp, DBT *key)
+ {
+ DB_TXN *tid;
+-int ret;
++int ret = 0;
+ int done = 0;
+ int retry = 0;
+ 
+--- a/src/test/regression.c
 b/src/test/regression.c
+@@ -2322,7 +2322,7 @@ void test_fblist()
+ char *strp = out_str;
+ 
+ for (i = 0; foo[i] != -1; i++) {
+-snprintf(strp, 79, "%1d", foo[i]);
++snprintf(strp, 79-i, "%1d", foo[i]);
+ strp++;
+ }
+ str_is("Checking freebusy validity", out_str, "1121110");
+

diff --git a/dev-libs/libical/files/libical-3.0.15-revert-bad-fuzz-fix.patch 
b/dev-libs/libical/files/libical-3.0.15-revert-bad-fuzz-fix.patch
new file mode 100644
index ..e6f4d33ad286
--- /dev/null
+++ b/dev-libs/libical/files/libical-3.0.15-revert-bad-fuzz-fix.patch
@@ -0,0 +1,36 @@
+https://github.com/libical/libical/commit/eeccee80d0485bdd3951924b294a82e8bc39a5f8
+https://bugs.gentoo.org/876622
+
+From: Allen Winter 
+Date: Mon, 10 Oct 2022 14:58:29 -0400
+Subject: [PATCH] Revert "src/libical/icalparser.c - fix a fuzz issue for
+ integer overflow"
+
+This reverts commit ca3e2ad983771b90da259994b7a6d7de1fd1abdc.
+--- a/src/libical/icalparser.c
 b/src/libical/icalparser.c
+@@ -630,7 +630,6 @@ icalcomponent *icalparser_parse(icalparser *parser,
+ icalparser_line_gen_func line_gen_func)
+ {
+ char *line;
+-unsigned int cnt = 0;
+ icalcomponent *c = 0;
+ icalcomponent *root = 0;
+ icalerrorstate es = icalerror_get_error_state(ICAL_MALFORMEDDATA_ERROR);
+@@ -641,7 +640,6 @@ icalcomponent *icalparser_parse(icalparser *parser,
+ icalerror_set_error_state(ICAL_MALFORMEDDATA_ERROR, ICAL_ERROR_NONFATAL);
+ 
+ do {
+-cnt++;
+ line = icalparser_get_line(parser, line_gen_func);
+ 
+ if ((c = icalparser_add_line(parser, line)) != 0) {
+@@ -681,7 +679,7 @@ icalcomponent *icalparser_parse(icalparser *parser,
+ icalmemory_free_buffer(line);
+ cont = 1;
+ }
+-} while (cont && cnt < TMP_BUF_SIZE);
++} while (cont);
+ 
+ icalerror_set_error_state(ICAL_MALFORMEDDATA_ERROR, es);
+ 

diff --git a/dev-libs/libical/libical-3.0.15-r1.ebuild 
b/dev-libs/libical/libical-3.0.15-r1.ebuild
new file mode 100644
index ..f3c4f2d2e9b4
--- /dev/null
+++ b/dev-libs/libical/libical-3.0.15-r1.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+VALA_USE_DEPEND="vapigen"
+inherit cmake python-any-r1 vala
+
+DESCRIPTION="Implementation of basic iCAL protocols"
+HOMEPAGE="https://github.com/libical/libical;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="|| ( MPL-2.0 LGPL-2.1 )"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+IUSE="doc examples +glib +introspection static-libs test vala"
+
+REQUIRED_USE="introspection? ( glib ) vala? ( introspection )"
+
+RESTRICT="!test? ( 

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

2022-10-10 Thread Conrad Kostecki
commit: 6c7c3925291bd7989623e66bc6deab24c82652ba
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:46:24 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c7c3925

net-wireless/unifi: amd64 stable

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

 net-wireless/unifi/unifi-7.2.94.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-wireless/unifi/unifi-7.2.94.ebuild 
b/net-wireless/unifi/unifi-7.2.94.ebuild
index 7880d4f89bb8..384e93424fe8 100644
--- a/net-wireless/unifi/unifi-7.2.94.ebuild
+++ b/net-wireless/unifi/unifi-7.2.94.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://www.ubnt.com;
 SRC_URI="https://dl.ui.com/unifi/${PV}${RC_SUFFIX}/UniFi.unix.zip -> ${P}.zip"
 S="${WORKDIR}/UniFi"
 
-KEYWORDS="-* ~amd64 ~arm64"
+KEYWORDS="-* amd64 ~arm64"
 LICENSE="Apache-1.0 Apache-2.0 BSD-1 BSD-2 BSD CDDL EPL-1.0 GPL-2 LGPL-2.1 
LGPL-3 MIT ubiquiti"
 SLOT="0/$(ver_cut 1-2)"
 IUSE="systemd system-mongodb"



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

2022-10-10 Thread Conrad Kostecki
commit: 5465cdce5fffc56e8d7763531a3a6f7f866d29ac
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:42:18 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5465cdce

dev-libs/level-zero: add 1.8.8

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

 dev-libs/level-zero/Manifest|  1 +
 dev-libs/level-zero/level-zero-1.8.8.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-libs/level-zero/Manifest b/dev-libs/level-zero/Manifest
index dd5c297457e2..1a68856ba431 100644
--- a/dev-libs/level-zero/Manifest
+++ b/dev-libs/level-zero/Manifest
@@ -1 +1,2 @@
 DIST level-zero-1.8.5.tar.gz 694514 BLAKE2B 
ba0a247f07662bca58938600980196a03cc1f5588cbd80b6797a595e6781d7e23ca80d9256530625c1c07317e26cc799b06e4b66433496e5c61da4c45f814958
 SHA512 
42fde1f57ac86857563573e5367e68640b8e864704d779c3b337fab80d9f9ed85a6f6ca71700e87da92afbc4560eae73a6552a38b8a90f1e8cf039cf5937ae4b
+DIST level-zero-1.8.8.tar.gz 695251 BLAKE2B 
cca0c35bcd9bd168187804eb3600d4ea17276be58a3a7db6da62908d9469e480dde966191e450fc80411f7caf60302bdb6c0cbaf741e7c7b59ad962a85d0d1c5
 SHA512 
b9b416beebbe96cd75d18d4cf888f539d908007629085f8692cd0898545e564b56671d060bc4961847df57a6c3b3beccbaa6f31539b6f4c201487961236ab83d

diff --git a/dev-libs/level-zero/level-zero-1.8.8.ebuild 
b/dev-libs/level-zero/level-zero-1.8.8.ebuild
new file mode 100644
index ..fc6029d86bbc
--- /dev/null
+++ b/dev-libs/level-zero/level-zero-1.8.8.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="oneAPI Level Zero headers, loader and validation layer"
+HOMEPAGE="https://github.com/oneapi-src/level-zero;
+SRC_URI="https://github.com/oneapi-src/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+
+src_prepare() {
+   cmake_src_prepare
+
+   # According to upstream, release tarballs should contain this file but 
at least
+   # some of them do not. Fortunately it is trivial to make one ourselves.
+   echo "$(ver_cut 3)" > "${S}"/VERSION_PATCH || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-dicts/aspell-pt/

2022-10-10 Thread Conrad Kostecki
commit: 496028d9737e21d15de7223d6decddf31b85abe3
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:50:00 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=496028d9

app-dicts/aspell-pt: add 20220621

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

 app-dicts/aspell-pt/Manifest  |  1 +
 app-dicts/aspell-pt/aspell-pt-20220621.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/app-dicts/aspell-pt/Manifest b/app-dicts/aspell-pt/Manifest
index a09b9d198695..236fb43bfc27 100644
--- a/app-dicts/aspell-pt/Manifest
+++ b/app-dicts/aspell-pt/Manifest
@@ -1 +1,2 @@
 DIST aspell6.pt-20220304.tar.bz2 170068 BLAKE2B 
058e9e96d57da795251f99c83e1c39805208fe5b4d404e8e59944863e8ddeaa583d5934cc2916272d1598075865199029e7fb55fc3e6c22f47825e6326e18465
 SHA512 
39646317a85f82b1e5fe160b42e469ec7317fecafba168cb26ef1c138d90d03e1cc01b0a50cbb75c97e4cf70aa7197beb89d0041ed7fc32b2653ef5f9b755305
+DIST aspell6.pt-20220621.tar.bz2 170248 BLAKE2B 
24263cc1fc19b0758c08637edbd8e2b7d75132ee2cde46cfb4fb60d820452d57117e73666dae542f43c15fcc85868c686a98909ec1b3469396871b6e1ad03bb6
 SHA512 
9e5d7bd10b858f7fac288212c5658786fe1ce27c895673177aca99a17996ba7629817e0882432bfcf4dc9bdee501393f9f25744d59b0ae5995e2c2c78e2c147f

diff --git a/app-dicts/aspell-pt/aspell-pt-20220621.ebuild 
b/app-dicts/aspell-pt/aspell-pt-20220621.ebuild
new file mode 100644
index ..ec2b021e8fd7
--- /dev/null
+++ b/app-dicts/aspell-pt/aspell-pt-20220621.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ASPELL_LANG="Portuguese"
+ASPELL_VERSION=6
+MY_PN="${PN/-/.}"
+MY_P="${MY_PN/aspell/aspell${ASPELL_VERSION}}-${PV}"
+MY_S="${PN/aspell/aspell${ASPELL_VERSION}}-${PV}"
+
+inherit aspell-dict-r1
+
+HOMEPAGE="https://natura.di.uminho.pt/wiki/doku.php?id=dicionarios:main;
+SRC_URI="https://natura.di.uminho.pt/download/sources/Dictionaries/aspell${ASPELL_VERSION}/${MY_P}.tar.bz2;
+S="${WORKDIR}/${MY_S/pt/pt_PT}-0"
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"



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

2022-10-10 Thread Conrad Kostecki
commit: c691fcd963d007a3e1c04333ef542d67f9822997
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:47:59 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c691fcd9

sys-auth/AusweisApp2: drop 1.22.7

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

 sys-auth/AusweisApp2/AusweisApp2-1.22.7.ebuild | 48 --
 sys-auth/AusweisApp2/Manifest  |  1 -
 2 files changed, 49 deletions(-)

diff --git a/sys-auth/AusweisApp2/AusweisApp2-1.22.7.ebuild 
b/sys-auth/AusweisApp2/AusweisApp2-1.22.7.ebuild
deleted file mode 100644
index c73e5792cc88..
--- a/sys-auth/AusweisApp2/AusweisApp2-1.22.7.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg-utils
-
-DESCRIPTION="Official authentication app for German ID cards and residence 
permits"
-HOMEPAGE="https://www.ausweisapp.bund.de/;
-SRC_URI="https://github.com/Governikus/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="EUPL-1.2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   virtual/pkgconfig"
-
-RDEPEND="
-   dev-libs/openssl:0=
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtquickcontrols2:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwebsockets:5[qml]
-   dev-qt/qtwidgets:5
-   net-libs/http-parser:0=
-   sys-apps/pcsc-lite
-   virtual/udev"
-
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   local mycmakeargs=( -DBUILD_SHARED_LIBS=OFF )
-   cmake_src_configure
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/sys-auth/AusweisApp2/Manifest b/sys-auth/AusweisApp2/Manifest
index f83f3e45381d..e7d67117e5b3 100644
--- a/sys-auth/AusweisApp2/Manifest
+++ b/sys-auth/AusweisApp2/Manifest
@@ -1,2 +1 @@
-DIST AusweisApp2-1.22.7.tar.gz 11406133 BLAKE2B 
17bc9824035007bf62037562ebd38c2b3558660060c0eba302ac04e8e9d0eabc7c8cb69d064a1a02be213f91f823030e5afdab74d5614db2c1bc8318ca1f9f22
 SHA512 
4ea1d2c02e076121b340da6d16973de6dafe513d2e9c96b535063466c06137d8e2a325661478d0cfbd96f506a875dca8d4df6a53af657a8d2eb59e7ad7d1a472
 DIST AusweisApp2-1.24.2.tar.gz 11478273 BLAKE2B 
3afb45bfa82c83f2fda6286c879d20fe3dd3769eb6be74c12297dfd991d976f40c6e9342237f953ae51534c41306daea3de7f8cf7e6b638489037772193e72e4
 SHA512 
15735cc52947b2cc16794cc508af7c2347d9789222c8506ff0ffbfce1263230892fd81f57d583df7f929ef197c2bbc0728ef31c3c700f2c08ec9dba516bd225b



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

2022-10-10 Thread Conrad Kostecki
commit: 1b79ad117915403f2de5f146ec9fb5f8b3fe986b
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:47:07 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b79ad11

sys-auth/AusweisApp2: amd64 stable

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

 sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild 
b/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild
index f1b6cc8c799f..6da7b2d0edca 100644
--- a/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild
+++ b/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Governikus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="EUPL-1.2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



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

2022-10-10 Thread Conrad Kostecki
commit: be8f257f6804e00eafbb9338dbbc7177a2779c59
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:47:36 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be8f257f

sys-auth/AusweisApp2: x86 stable

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

 sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild 
b/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild
index 6da7b2d0edca..851f0ef3cebe 100644
--- a/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild
+++ b/sys-auth/AusweisApp2/AusweisApp2-1.24.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/Governikus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="EUPL-1.2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 BDEPEND="
dev-qt/linguist-tools:5



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

2022-10-10 Thread Conrad Kostecki
commit: 98e158a02eb784a9f1f1c33763ac4b7569472356
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 20:51:24 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e158a0

sys-fs/cryptmount: add 6.1.0

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

 sys-fs/cryptmount/Manifest|  1 +
 sys-fs/cryptmount/cryptmount-6.1.0.ebuild | 75 +++
 2 files changed, 76 insertions(+)

diff --git a/sys-fs/cryptmount/Manifest b/sys-fs/cryptmount/Manifest
index 2ec6c70bf5ba..029963f25862 100644
--- a/sys-fs/cryptmount/Manifest
+++ b/sys-fs/cryptmount/Manifest
@@ -1 +1,2 @@
 DIST cryptmount-6.0.tar.gz 556919 BLAKE2B 
54226756a6772810ff68c78ff38502df3890a428830eaa34612640d7e5cefd92085e288c5e45ff5b7e5c8bb8b524f458e55f5080e7e62435ae33a46f76c06845
 SHA512 
aac4ea4969542ade267b3c697988b15ded23fca3c7a330c7b78d990b2b3ad1a393af2d0bea93908187b50e404847cd580a325182397e2667064165764a55b017
+DIST cryptmount-6.1.0.tar.gz 548225 BLAKE2B 
71039c7e2d3fb82fdd4797ce829ce7731c3b6b61c30730b1c5da449d2a559ed6cf8026527f6ed2f6d0b134327e0b3ca54f626cc42e528317f00d29001ead01b5
 SHA512 
a8f43dc9d4cbc87be4fde96a5b79d44bb154ef5b79f353daee1128728c537c8a10a5324a4c4a39d7926fd393bf944da5aaf4e279ff325f7fe47a01559ae5b1d5

diff --git a/sys-fs/cryptmount/cryptmount-6.1.0.ebuild 
b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
new file mode 100644
index ..0e747c46700e
--- /dev/null
+++ b/sys-fs/cryptmount/cryptmount-6.1.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit linux-info
+
+DESCRIPTION="A utility for management and user-mode mounting of encrypted 
filesystems"
+HOMEPAGE="http://cryptmount.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="argv0switch cswap fsck +gcrypt +largefile mount +nls +luks +openssl 
selinux systemd udev"
+REQUIRED_USE="
+   luks? ( gcrypt )
+   openssl? ( gcrypt )
+"
+
+RDEPEND="
+   sys-fs/lvm2
+   virtual/libiconv
+   virtual/libintl
+   gcrypt? ( dev-libs/libgcrypt:0= )
+   luks? ( sys-fs/cryptsetup )
+   openssl? ( dev-libs/openssl:0= )
+   systemd? ( sys-apps/systemd )
+   udev? ( virtual/udev )
+"
+
+DEPEND="
+   ${RDEPEND}
+   sys-kernel/linux-headers
+"
+
+BDEPEND="nls? ( sys-devel/gettext )"
+
+CONFIG_CHECK="BLK_DEV_DM"
+ERROR_BLK_DEV_DM="
+   Please enable Device Mapper support in your kernel config
+   -> Device Drivers
+   -> Multiple devices driver support (RAID and LVM)
+   -> Multiple devices driver support (RAID and LVM)
+   <*>/ Device mapper support
+"
+
+src_prepare() {
+   default
+
+   # Since SELinux is hardcoded, remove it on disabled SELinux profile
+   if ! use selinux; then
+   sed -e '/selinux/d' -i dmutils.c || die
+   fi
+}
+
+src_configure() {
+   local myeconf=(
+   --disable-rpath
+   $(use_enable argv0switch)
+   $(use_enable cswap)
+   $(use_enable fsck)
+   $(use_with gcrypt libgcrypt)
+   $(use_enable largefile)
+   $(use_enable mount delegation)
+   $(use_enable nls)
+   $(use_enable luks)
+   $(use_enable openssl openssl-compat)
+   $(use_with systemd)
+   $(use_enable udev libudev)
+
+   )
+
+   econf "${myeconf[@]}"
+}



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

2022-10-10 Thread Conrad Kostecki
commit: 45aa11db4883ca12641f58fbe1e99b0e22746754
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 09:18:06 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45aa11db

www-apps/sfpg: drop 4.9.0

Closes: https://bugs.gentoo.org/876463
Signed-off-by: Conrad Kostecki  gentoo.org>

 www-apps/sfpg/Manifest  |  1 -
 www-apps/sfpg/sfpg-4.9.0.ebuild | 44 -
 2 files changed, 45 deletions(-)

diff --git a/www-apps/sfpg/Manifest b/www-apps/sfpg/Manifest
index 29b697d78a7d..6731ba569af4 100644
--- a/www-apps/sfpg/Manifest
+++ b/www-apps/sfpg/Manifest
@@ -1,2 +1 @@
 DIST Single_File_PHP_Gallery_4.11.0.zip 46577 BLAKE2B 
f02a82d522a142c688363cf1a5491e35c9a10dcebfca6e426f16e0db95564563a52c5a267436c8e421aa151b183d2f8f64e6a1c3bbe7618f37536ddc64f10a96
 SHA512 
34fed2519d8f33dd8c72df4921ccb10ddbf8c98fc0640bd4aa1da7fc66bce2c3538de8f040a86a52f6be927897a350ca54a09b940eabf248d1a34a8f4203499d
-DIST Single_File_PHP_Gallery_4.9.0.zip 43058 BLAKE2B 
27eb6362f28b1d24d77d8e9ccfdf83814ca4de0c0e1a2d1a94345e6c4b0c5b95b223c2bf5186f64a83fae392d2f8bdf7eb4e77c5295a86b279ce0abc7cb625cf
 SHA512 
511889ff9c8680dd49d5c982609508b73c9baa5a2d8f7e8f6642003ce9e9f1feec248d9da3c69a4363ddc7ef6c77652697c0fa30f51ba490c2c926428ac8482c

diff --git a/www-apps/sfpg/sfpg-4.9.0.ebuild b/www-apps/sfpg/sfpg-4.9.0.ebuild
deleted file mode 100644
index b57ac1408b7d..
--- a/www-apps/sfpg/sfpg-4.9.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit webapp
-
-MY_PN="${PN^^}"
-MY_PV="fd8fa70739d18d786e88f7ffa57e250e0e41af8f"
-
-DESCRIPTION="A web gallery in one single PHP file"
-HOMEPAGE="https://sye.dk/sfpg/;
-SRC_URI="https://sye.dk/sfpg/Single_File_PHP_Gallery_${PV}.zip;
-S="${WORKDIR}"
-
-LICENSE="sfpg"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="bindist mirror"
-
-RDEPEND="
-   dev-lang/php[gd]
-   virtual/httpd-php
-"
-
-BDEPEND="app-arch/unzip"
-
-need_httpd_cgi
-
-DOCS=( "readme.txt" )
-
-src_install() {
-   webapp_src_preinst
-
-   einstalldocs
-
-   insinto "${MY_HTDOCSDIR}"
-   doins index.php
-
-   webapp_src_install
-}
-
-pkg_postinst() {
-   webapp_pkg_postinst
-}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-vc-intrinsics/

2022-10-10 Thread Conrad Kostecki
commit: a2190cd23c2ff99f3f08beb7843874c82d37174c
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Oct  8 18:11:12 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2190cd2

dev-libs/intel-vc-intrinsics: switch to LLVM14

Bug: https://bugs.gentoo.org/876178
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...l-vc-intrinsics-0.7.1.ebuild => intel-vc-intrinsics-0.7.1-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.7.1.ebuild 
b/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.7.1-r1.ebuild
similarity index 97%
rename from dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.7.1.ebuild
rename to dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.7.1-r1.ebuild
index 120d3968bcd9..4309f35c38df 100644
--- a/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.7.1.ebuild
+++ b/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.7.1-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 CMAKE_BUILD_TYPE="Release"
-LLVM_MAX_SLOT="13"
+LLVM_MAX_SLOT="14"
 MY_PN="${PN/intel-/}"
 MY_P="${MY_PN}-${PV}"
 PYTHON_COMPAT=( python3_{8..11} )



[gentoo-commits] repo/gentoo:master commit in: dev-libs/intel-vc-intrinsics/

2022-10-10 Thread Conrad Kostecki
commit: df4011332c9450e3707a8c092f042e60d0a00581
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Oct  8 18:17:59 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df401133

dev-libs/intel-vc-intrinsics: drop 0.4.2-r3, 0.5.0-r2

Closes: https://bugs.gentoo.org/876178
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/intel-vc-intrinsics/Manifest  |  2 --
 .../intel-vc-intrinsics-0.4.2-r3.ebuild| 37 --
 .../intel-vc-intrinsics-0.5.0-r2.ebuild| 37 --
 3 files changed, 76 deletions(-)

diff --git a/dev-libs/intel-vc-intrinsics/Manifest 
b/dev-libs/intel-vc-intrinsics/Manifest
index 8fb857eabf20..93776e8d033c 100644
--- a/dev-libs/intel-vc-intrinsics/Manifest
+++ b/dev-libs/intel-vc-intrinsics/Manifest
@@ -1,3 +1 @@
-DIST intel-vc-intrinsics-0.4.2.tar.gz 136366 BLAKE2B 
2f8b1a6ad8edb720f322668226224b23cc80c4a64b8ac300ff95a470e97f9af8e3317ddc45be668895e86b13074aab2d1846c2dd634f0466f39c9a77ec436851
 SHA512 
5312dbd06d4af5a4e18f99da867af4b7292daba92186c9de5208280dfe735b7563b73ac8f77f48f9d2f10f2a0d9654abf39c82cf07d829f568f41b3210af22d4
-DIST intel-vc-intrinsics-0.5.0.tar.gz 136657 BLAKE2B 
d1e946aa82713eaedb13e692045b9e765c50f226a87f7b909d1be1ffe93217af1fa0cdc80b0db752760b66eae5f7bc6ce29ba643af4a50b1013b9b1a3c00a614
 SHA512 
9204b4e2e0f860d1daf98872c897d98a00a0baeb069503d052464f47892b0fcb90c51f47c07f8fb3545f42ca688168924e829d84063da1894d72be3dff7a9e35
 DIST intel-vc-intrinsics-0.7.1.tar.gz 138162 BLAKE2B 
6a3aa8dcec358dd2f19688a57e5efd267eb6fd208f21c0bbda12baae4b73b4a85462e930f06fb34d22fe15103af368e8763031b2ef668a677104c57231740ff4
 SHA512 
278c67e277c09a2a8f5d6aed77e4c7d7dfd7fc54f9e34b8fae2154641785b66eec298e02bffa84f8cf4d0824e0272f7fb659d0ea19d2a993b5c44bb2e6f5a076

diff --git a/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.4.2-r3.ebuild 
b/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.4.2-r3.ebuild
deleted file mode 100644
index 120d3968bcd9..
--- a/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.4.2-r3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CMAKE_BUILD_TYPE="Release"
-LLVM_MAX_SLOT="13"
-MY_PN="${PN/intel-/}"
-MY_P="${MY_PN}-${PV}"
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit cmake llvm python-any-r1
-
-DESCRIPTION="A set of new intrinsics on top of core LLVM IR instructions"
-HOMEPAGE="https://github.com/intel/vc-intrinsics;
-SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   dev-libs/libxml2:2=
-   sys-devel/llvm:${LLVM_MAX_SLOT}
-   sys-libs/zlib
-"
-RDEPEND="${DEPEND}"
-BDEPEND="${PYTHON_DEPS}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DLLVM_DIR="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
-   )
-
-   cmake_src_configure
-}

diff --git a/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.5.0-r2.ebuild 
b/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.5.0-r2.ebuild
deleted file mode 100644
index 120d3968bcd9..
--- a/dev-libs/intel-vc-intrinsics/intel-vc-intrinsics-0.5.0-r2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CMAKE_BUILD_TYPE="Release"
-LLVM_MAX_SLOT="13"
-MY_PN="${PN/intel-/}"
-MY_P="${MY_PN}-${PV}"
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit cmake llvm python-any-r1
-
-DESCRIPTION="A set of new intrinsics on top of core LLVM IR instructions"
-HOMEPAGE="https://github.com/intel/vc-intrinsics;
-SRC_URI="https://github.com/intel/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="
-   dev-libs/libxml2:2=
-   sys-devel/llvm:${LLVM_MAX_SLOT}
-   sys-libs/zlib
-"
-RDEPEND="${DEPEND}"
-BDEPEND="${PYTHON_DEPS}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DLLVM_DIR="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
-   )
-
-   cmake_src_configure
-}



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

2022-10-10 Thread Conrad Kostecki
commit: e1baf09e284cd7af58889ee43990eddb4a0978bb
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Mon Oct 10 09:17:15 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1baf09e

www-apps/sfpg: add 4.11.0

Bug: https://bugs.gentoo.org/876463
Signed-off-by: Conrad Kostecki  gentoo.org>

 www-apps/sfpg/Manifest   |  1 +
 www-apps/sfpg/sfpg-4.11.0.ebuild | 44 
 2 files changed, 45 insertions(+)

diff --git a/www-apps/sfpg/Manifest b/www-apps/sfpg/Manifest
index c07796c625f7..29b697d78a7d 100644
--- a/www-apps/sfpg/Manifest
+++ b/www-apps/sfpg/Manifest
@@ -1 +1,2 @@
+DIST Single_File_PHP_Gallery_4.11.0.zip 46577 BLAKE2B 
f02a82d522a142c688363cf1a5491e35c9a10dcebfca6e426f16e0db95564563a52c5a267436c8e421aa151b183d2f8f64e6a1c3bbe7618f37536ddc64f10a96
 SHA512 
34fed2519d8f33dd8c72df4921ccb10ddbf8c98fc0640bd4aa1da7fc66bce2c3538de8f040a86a52f6be927897a350ca54a09b940eabf248d1a34a8f4203499d
 DIST Single_File_PHP_Gallery_4.9.0.zip 43058 BLAKE2B 
27eb6362f28b1d24d77d8e9ccfdf83814ca4de0c0e1a2d1a94345e6c4b0c5b95b223c2bf5186f64a83fae392d2f8bdf7eb4e77c5295a86b279ce0abc7cb625cf
 SHA512 
511889ff9c8680dd49d5c982609508b73c9baa5a2d8f7e8f6642003ce9e9f1feec248d9da3c69a4363ddc7ef6c77652697c0fa30f51ba490c2c926428ac8482c

diff --git a/www-apps/sfpg/sfpg-4.11.0.ebuild b/www-apps/sfpg/sfpg-4.11.0.ebuild
new file mode 100644
index ..b57ac1408b7d
--- /dev/null
+++ b/www-apps/sfpg/sfpg-4.11.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit webapp
+
+MY_PN="${PN^^}"
+MY_PV="fd8fa70739d18d786e88f7ffa57e250e0e41af8f"
+
+DESCRIPTION="A web gallery in one single PHP file"
+HOMEPAGE="https://sye.dk/sfpg/;
+SRC_URI="https://sye.dk/sfpg/Single_File_PHP_Gallery_${PV}.zip;
+S="${WORKDIR}"
+
+LICENSE="sfpg"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="bindist mirror"
+
+RDEPEND="
+   dev-lang/php[gd]
+   virtual/httpd-php
+"
+
+BDEPEND="app-arch/unzip"
+
+need_httpd_cgi
+
+DOCS=( "readme.txt" )
+
+src_install() {
+   webapp_src_preinst
+
+   einstalldocs
+
+   insinto "${MY_HTDOCSDIR}"
+   doins index.php
+
+   webapp_src_install
+}
+
+pkg_postinst() {
+   webapp_pkg_postinst
+}



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

2022-10-10 Thread Conrad Kostecki
commit: 7e84653312dc04f900863758a3b9be48cb96df8e
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Oct  8 20:12:36 2022 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Mon Oct 10 20:59:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e846533

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

Bug: https://bugs.gentoo.org/873028
Closes: https://bugs.gentoo.org/865385
Signed-off-by: Conrad Kostecki  gentoo.org>

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

diff --git a/dev-util/intel-graphics-compiler/Manifest 
b/dev-util/intel-graphics-compiler/Manifest
index 526224e9e7f5..27912180ea70 100644
--- a/dev-util/intel-graphics-compiler/Manifest
+++ b/dev-util/intel-graphics-compiler/Manifest
@@ -1,2 +1,3 @@
 DIST intel-graphics-compiler-1.0.11702.1.tar.gz 8734601 BLAKE2B 
7cc8a4f9fc820d822c3b435d172ca27145d916fd25fedf20d13b2d7041cba36fc4416e17307ab0cbf6b9785f5958a53c58486fb6fb4776025b696f5dfb195161
 SHA512 
cd7d27a3a13462517c3e75c43d7d951afa53ef77875f479304da43b93fd40ae19680c11dc5bcf2ec3fecf6dbe56daa954ccb88b9f99f3af4c53d3141ef0b93f5
 DIST intel-graphics-compiler-1.0.12149.1.tar.gz 8874232 BLAKE2B 
b6195741282290561ee669574b19a9d96dd9695ea6358932f4c54946ff7b2a0315f905e9445419349131c2a424b630b8197a944bbd46a3232bd841be50f4f2e8
 SHA512 
1c9f2a6e119713173db527d8dc891269606db2a57a9c0043c82556e79a77d83bab31b732557e8130f36b99a54b551e8ff6d6104b3d75ef081d9f16811abbe8db
+DIST intel-graphics-compiler-1.0.12260.1.tar.gz 8887984 BLAKE2B 
626b5f2bd189ba9b2933b9d65227ca1552484f73f7398b2a763744d21a4ea189987e4eb08e9e7f09898fb49568b59a2c45298363495c1759fec9927a95cf4478
 SHA512 
4223e9c8213c7e6cf3539d955394a0a4a39cb8d2114ce18ccaeeb0b36a91ca6fc6a314fa9d9db24929fa7cd6b86ff8b82f369f35dd80e5df49b23ac9cd3a519b

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

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

2022-10-10 Thread Michał Górny
commit: e968fbf5f2132f5ca82b5889f08bec6c2fb65082
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:46:03 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e968fbf5

sys-libs/libcxx: Use tc-get-c-rtlib

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

 sys-libs/libcxx/libcxx-13.0.1.ebuild | 12 
 sys-libs/libcxx/libcxx-14.0.6.ebuild | 12 
 sys-libs/libcxx/libcxx-15.0.2.ebuild | 14 --
 sys-libs/libcxx/libcxx-15.0.3..ebuild| 14 --
 sys-libs/libcxx/libcxx-16.0.0..ebuild| 14 --
 sys-libs/libcxx/libcxx-16.0.0_pre20221006.ebuild | 14 --
 sys-libs/libcxx/libcxx-16.0.0_pre20221010.ebuild | 14 --
 7 files changed, 28 insertions(+), 66 deletions(-)

diff --git a/sys-libs/libcxx/libcxx-13.0.1.ebuild 
b/sys-libs/libcxx/libcxx-13.0.1.ebuild
index f7db45b21571..3021d859b872 100644
--- a/sys-libs/libcxx/libcxx-13.0.1.ebuild
+++ b/sys-libs/libcxx/libcxx-13.0.1.ebuild
@@ -89,14 +89,10 @@ multilib_src_configure() {
extra_libs+=( -lunwind )
# if we're using libunwind and clang with compiler-rt, we want
# to link to compiler-rt instead of -lgcc_s
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-  ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_gcc_s=OFF
-   want_compiler_rt=ON
-   extra_libs+=( "${compiler_rt}" )
-   fi
+   if [[ $(tc-get-c-rtlib) == compiler-rt ]]; then
+   want_gcc_s=OFF
+   want_compiler_rt=ON
+   extra_libs+=( "${compiler_rt}" )
fi
elif [[ ${CHOST} == *-darwin* ]] && tc-is-clang; then
# clang-based darwin prefix disables libunwind useflag during

diff --git a/sys-libs/libcxx/libcxx-14.0.6.ebuild 
b/sys-libs/libcxx/libcxx-14.0.6.ebuild
index 47501e5ea293..063546f816be 100644
--- a/sys-libs/libcxx/libcxx-14.0.6.ebuild
+++ b/sys-libs/libcxx/libcxx-14.0.6.ebuild
@@ -97,14 +97,10 @@ multilib_src_configure() {
extra_libs+=( -lunwind )
# if we're using libunwind and clang with compiler-rt, we want
# to link to compiler-rt instead of -lgcc_s
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-  ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_gcc_s=OFF
-   want_compiler_rt=ON
-   extra_libs+=( "${compiler_rt}" )
-   fi
+   if [[ $(tc-get-c-rtlib) == compiler-rt ]]; then
+   want_gcc_s=OFF
+   want_compiler_rt=ON
+   extra_libs+=( "${compiler_rt}" )
fi
elif [[ ${CHOST} == *-darwin* ]] && tc-is-clang; then
# clang-based darwin prefix disables libunwind useflag during

diff --git a/sys-libs/libcxx/libcxx-15.0.2.ebuild 
b/sys-libs/libcxx/libcxx-15.0.2.ebuild
index 79e6aec88593..275d229a612a 100644
--- a/sys-libs/libcxx/libcxx-15.0.2.ebuild
+++ b/sys-libs/libcxx/libcxx-15.0.2.ebuild
@@ -95,15 +95,9 @@ multilib_src_configure() {
strip-unsupported-flags
fi
 
-   # link against compiler-rt instead of libgcc if this is what clang does
-   local want_compiler_rt=OFF
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-   ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_compiler_rt=ON
-   fi
-   fi
+   # link to compiler-rt
+   local use_compiler_rt=OFF
+   [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON
 
# bootstrap: cmake is unhappy if compiler can't link to stdlib
local nolib_flags=( -nodefaultlibs -lc )
@@ -131,7 +125,7 @@ multilib_src_configure() {
-DLIBCXX_HAS_MUSL_LIBC=$(usex elibc_musl)
-DLIBCXX_INCLUDE_BENCHMARKS=OFF
-DLIBCXX_INCLUDE_TESTS=$(usex test)
-   -DLIBCXX_USE_COMPILER_RT=${want_compiler_rt}
+   -DLIBCXX_USE_COMPILER_RT=${use_compiler_rt}
)
 
if use test; then

diff --git a/sys-libs/libcxx/libcxx-15.0.3..ebuild 
b/sys-libs/libcxx/libcxx-15.0.3..ebuild
index c28920c09043..6bcf1a20c831 100644
--- a/sys-libs/libcxx/libcxx-15.0.3..ebuild
+++ b/sys-libs/libcxx/libcxx-15.0.3..ebuild
@@ 

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

2022-10-10 Thread Michał Górny
commit: 1ffb18d2e9ec223f72d044ed79ca18fad233ab44
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:46:55 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ffb18d2

sys-libs/llvm-libunwind: Reenable cross-unwind in 16.0.0_pre20221010

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

 sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20221010.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20221010.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20221010.ebuild
index 7128dcaa091f..cb718502b12b 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20221010.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.0_pre20221010.ebuild
@@ -74,13 +74,11 @@ multilib_src_configure() {
-DLLVM_LIBDIR_SUFFIX=${libdir#lib}
-DLLVM_INCLUDE_TESTS=OFF
-DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug)
+   -DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON
-DLIBUNWIND_ENABLE_STATIC=$(usex static-libs)
-DLIBUNWIND_INCLUDE_TESTS=$(usex test)
-DLIBUNWIND_INSTALL_HEADERS=ON
 
-   # temporarily disabled due to upstream regression
-   -DLIBUNWIND_ENABLE_CROSS_UNWINDING=OFF
-
# avoid dependency on libgcc_s if compiler-rt is used
-DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt}
)



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

2022-10-10 Thread Michał Górny
commit: 96ddadb40ddba1bfdba68ff8f2fd889cfd004f03
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct  7 15:22:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96ddadb4

toolchain-funcs.eclass: Add tc-get-c-rtlib() to get CC runtime

Add a new tc-get-c-rtlib() that attempts to get the runtime used
by the current C compiler.  Currently it supports compiler-rt
and libgcc.

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

 eclass/tests/toolchain-funcs.sh | 10 ++
 eclass/toolchain-funcs.eclass   | 28 
 2 files changed, 38 insertions(+)

diff --git a/eclass/tests/toolchain-funcs.sh b/eclass/tests/toolchain-funcs.sh
index 5a35a44ce018..d8a357fb24fe 100755
--- a/eclass/tests/toolchain-funcs.sh
+++ b/eclass/tests/toolchain-funcs.sh
@@ -202,6 +202,10 @@ if type -P gcc &>/dev/null; then
tbegin "tc-get-cxx-stdlib (gcc)"
[[ $(CXX=g++ tc-get-cxx-stdlib) == libstdc++ ]]
tend $?
+
+   tbegin "tc-get-c-rtlib (gcc)"
+   [[ $(CC=gcc tc-get-c-rtlib) == libgcc ]]
+   tend $?
 fi
 
 if type -P clang &>/dev/null; then
@@ -218,6 +222,12 @@ if type -P clang &>/dev/null; then
tbegin "tc-get-cxx-stdlib (clang, invalid)"
! CXX=clang++ CXXFLAGS="-stdlib=invalid" tc-get-cxx-stdlib
tend $?
+
+   for rtlib in compiler-rt libgcc; do
+   tbegin "tc-get-c-rtlib (clang, ${rtlib})"
+   [[ $(CC=clang CFLAGS="--rtlib=${rtlib}" tc-get-c-rtlib) == 
${rtlib} ]]
+   tend $?
+   done
 fi
 
 texit

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 92494158201e..32e446cb2368 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -1209,4 +1209,32 @@ tc-get-cxx-stdlib() {
return 0
 }
 
+# @FUNCTION: tc-get-c-rtlib
+# @DESCRIPTION:
+# Attempt to identify the runtime used by the C/C++ compiler.
+# If the runtime is identifed, the function returns 0 and prints one
+# of the following:
+#
+# - ``compiler-rt`` for ``sys-libs/compiler-rt``
+# - ``libgcc`` for ``sys-devel/gcc``'s libgcc
+#
+# If the runtime is not recognized, the function returns 1.
+tc-get-c-rtlib() {
+   local res=$(
+   $(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} \
+   -print-libgcc-file-name 2>/dev/null
+   )
+
+   case ${res} in
+   *libclang_rt*)
+   echo compiler-rt;;
+   *libgcc*)
+   echo libgcc;;
+   *)
+   return 1;;
+   esac
+
+   return 0
+}
+
 fi



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

2022-10-10 Thread Michał Górny
commit: dbc5f4c188646927815d288e746e5b3fe7615719
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:32:09 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc5f4c1

sys-devel/llvm: Use tc-get-cxx-stdlib

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

 sys-devel/llvm/llvm-13.0.1.ebuild | 14 +-
 sys-devel/llvm/llvm-14.0.6-r2.ebuild  | 14 +-
 sys-devel/llvm/llvm-15.0.2.ebuild | 14 +-
 sys-devel/llvm/llvm-15.0.3..ebuild| 14 +-
 sys-devel/llvm/llvm-16.0.0..ebuild| 14 +-
 sys-devel/llvm/llvm-16.0.0_pre20221006.ebuild | 14 +-
 sys-devel/llvm/llvm-16.0.0_pre20221010.ebuild | 14 +-
 7 files changed, 7 insertions(+), 91 deletions(-)

diff --git a/sys-devel/llvm/llvm-13.0.1.ebuild 
b/sys-devel/llvm/llvm-13.0.1.ebuild
index 2d52bf8cfe60..598476d25566 100644
--- a/sys-devel/llvm/llvm-13.0.1.ebuild
+++ b/sys-devel/llvm/llvm-13.0.1.ebuild
@@ -174,18 +174,6 @@ src_prepare() {
llvm.org_src_prepare
 }
 
-# Is LLVM being linked against libc++?
-is_libcxx_linked() {
-   local code='#include 
-#if defined(_LIBCPP_VERSION)
-   HAVE_LIBCXX
-#endif
-'
-   local out=$($(tc-getCXX) ${CXXFLAGS} ${CPPFLAGS} -x c++ -E -P - 
<<<"${code}") || return 1
-
-   [[ ${out} == *HAVE_LIBCXX* ]]
-}
-
 get_distribution_components() {
local sep=${1-;}
 
@@ -367,7 +355,7 @@ multilib_src_configure() {
-DOCAMLFIND=NO
)
 
-   if is_libcxx_linked; then
+   if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then
# Smart hack: alter version suffix -> SOVERSION when linking
# against libc++. This way we won't end up mixing LLVM libc++
# libraries with libstdc++ clang, and the other way around.

diff --git a/sys-devel/llvm/llvm-14.0.6-r2.ebuild 
b/sys-devel/llvm/llvm-14.0.6-r2.ebuild
index 01b9bbfd4b9d..0f53397cf7ae 100644
--- a/sys-devel/llvm/llvm-14.0.6-r2.ebuild
+++ b/sys-devel/llvm/llvm-14.0.6-r2.ebuild
@@ -186,18 +186,6 @@ src_prepare() {
rm test/Other/ChangePrinters/DotCfg/print-changed-dot-cfg.ll || die
 }
 
-# Is LLVM being linked against libc++?
-is_libcxx_linked() {
-   local code='#include 
-#if defined(_LIBCPP_VERSION)
-   HAVE_LIBCXX
-#endif
-'
-   local out=$($(tc-getCXX) ${CXXFLAGS} ${CPPFLAGS} -x c++ -E -P - 
<<<"${code}") || return 1
-
-   [[ ${out} == *HAVE_LIBCXX* ]]
-}
-
 get_distribution_components() {
local sep=${1-;}
 
@@ -381,7 +369,7 @@ multilib_src_configure() {
-DOCAMLFIND=NO
)
 
-   if is_libcxx_linked; then
+   if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then
# Smart hack: alter version suffix -> SOVERSION when linking
# against libc++. This way we won't end up mixing LLVM libc++
# libraries with libstdc++ clang, and the other way around.

diff --git a/sys-devel/llvm/llvm-15.0.2.ebuild 
b/sys-devel/llvm/llvm-15.0.2.ebuild
index 5f8f61bdd695..79d2ff39fb45 100644
--- a/sys-devel/llvm/llvm-15.0.2.ebuild
+++ b/sys-devel/llvm/llvm-15.0.2.ebuild
@@ -180,18 +180,6 @@ src_prepare() {
llvm.org_src_prepare
 }
 
-# Is LLVM being linked against libc++?
-is_libcxx_linked() {
-   local code='#include 
-#if defined(_LIBCPP_VERSION)
-   HAVE_LIBCXX
-#endif
-'
-   local out=$($(tc-getCXX) ${CXXFLAGS} ${CPPFLAGS} -x c++ -E -P - 
<<<"${code}") || return 1
-
-   [[ ${out} == *HAVE_LIBCXX* ]]
-}
-
 get_distribution_components() {
local sep=${1-;}
 
@@ -379,7 +367,7 @@ multilib_src_configure() {
-DOCAMLFIND=NO
)
 
-   if is_libcxx_linked; then
+   if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then
# Smart hack: alter version suffix -> SOVERSION when linking
# against libc++. This way we won't end up mixing LLVM libc++
# libraries with libstdc++ clang, and the other way around.

diff --git a/sys-devel/llvm/llvm-15.0.3..ebuild 
b/sys-devel/llvm/llvm-15.0.3..ebuild
index 010e27a1349e..1f47134cba77 100644
--- a/sys-devel/llvm/llvm-15.0.3..ebuild
+++ b/sys-devel/llvm/llvm-15.0.3..ebuild
@@ -180,18 +180,6 @@ src_prepare() {
llvm.org_src_prepare
 }
 
-# Is LLVM being linked against libc++?
-is_libcxx_linked() {
-   local code='#include 
-#if defined(_LIBCPP_VERSION)
-   HAVE_LIBCXX
-#endif
-'
-   local out=$($(tc-getCXX) ${CXXFLAGS} ${CPPFLAGS} -x c++ -E -P - 
<<<"${code}") || return 1
-
-   [[ ${out} == *HAVE_LIBCXX* ]]
-}
-
 get_distribution_components() {
local sep=${1-;}
 
@@ -379,7 +367,7 @@ multilib_src_configure() {
-DOCAMLFIND=NO
)
 
-   if is_libcxx_linked; then
+   if [[ $(tc-get-cxx-stdlib) == libc++ ]]; then
# Smart hack: alter version suffix -> SOVERSION when linking
 

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

2022-10-10 Thread Michał Górny
commit: bcce21e5e6b31aca6b2f8edb15328edc8f078d52
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Oct  8 09:41:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcce21e5

eclass/tests/toolchain-funcs.sh: Handle missing ld.gold gracefully

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

 eclass/tests/toolchain-funcs.sh | 64 ++---
 1 file changed, 34 insertions(+), 30 deletions(-)

diff --git a/eclass/tests/toolchain-funcs.sh b/eclass/tests/toolchain-funcs.sh
index d8a357fb24fe..08cfd74611aa 100755
--- a/eclass/tests/toolchain-funcs.sh
+++ b/eclass/tests/toolchain-funcs.sh
@@ -60,20 +60,22 @@ tbegin "tc-ld-is-gold (ld=bfd cc=bfd)"
 LD=ld.bfd LDFLAGS=-fuse-ld=bfd tc-ld-is-gold && ret=1 || ret=0
 tend ${ret}
 
-tbegin "tc-ld-is-gold (ld=gold cc=default)"
-LD=ld.gold tc-ld-is-gold
-ret=$?
-tend ${ret}
-
-tbegin "tc-ld-is-gold (ld=gold cc=bfd)"
-LD=ld.gold LDFLAGS=-fuse-ld=bfd tc-ld-is-gold
-ret=$?
-tend ${ret}
-
-tbegin "tc-ld-is-gold (ld=bfd cc=gold)"
-LD=ld.bfd LDFLAGS=-fuse-ld=gold tc-ld-is-gold
-ret=$?
-tend ${ret}
+if type -P ld.gold &>/dev/null; then
+   tbegin "tc-ld-is-gold (ld=gold cc=default)"
+   LD=ld.gold tc-ld-is-gold
+   ret=$?
+   tend ${ret}
+
+   tbegin "tc-ld-is-gold (ld=gold cc=bfd)"
+   LD=ld.gold LDFLAGS=-fuse-ld=bfd tc-ld-is-gold
+   ret=$?
+   tend ${ret}
+
+   tbegin "tc-ld-is-gold (ld=bfd cc=gold)"
+   LD=ld.bfd LDFLAGS=-fuse-ld=gold tc-ld-is-gold
+   ret=$?
+   tend ${ret}
+fi
 
 #
 # TEST: tc-ld-disable-gold
@@ -87,23 +89,25 @@ tc-ld-disable-gold
 )
 tend $?
 
-tbegin "tc-ld-disable-gold (ld=gold)"
-(
-export LD=ld.gold LDFLAGS=
-ewarn() { :; }
-tc-ld-disable-gold
-[[ ${LD} == "ld.bfd" || ${LDFLAGS} == *"-fuse-ld=bfd"* ]]
-)
-tend $?
+if type -P ld.gold &>/dev/null; then
+   tbegin "tc-ld-disable-gold (ld=gold)"
+   (
+   export LD=ld.gold LDFLAGS=
+   ewarn() { :; }
+   tc-ld-disable-gold
+   [[ ${LD} == "ld.bfd" || ${LDFLAGS} == *"-fuse-ld=bfd"* ]]
+   )
+   tend $?
 
-tbegin "tc-ld-disable-gold (cc=gold)"
-(
-export LD= LDFLAGS="-fuse-ld=gold"
-ewarn() { :; }
-tc-ld-disable-gold
-[[ ${LD} == *"/ld.bfd" || ${LDFLAGS} == "-fuse-ld=gold -fuse-ld=bfd" ]]
-)
-tend $?
+   tbegin "tc-ld-disable-gold (cc=gold)"
+   (
+   export LD= LDFLAGS="-fuse-ld=gold"
+   ewarn() { :; }
+   tc-ld-disable-gold
+   [[ ${LD} == *"/ld.bfd" || ${LDFLAGS} == "-fuse-ld=gold -fuse-ld=bfd" ]]
+   )
+   tend $?
+fi
 
 unset CPP
 



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

2022-10-10 Thread Michał Górny
commit: ee101122758dccf703da7776465116d6cef6fc8f
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:40:03 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee101122

sys-libs/llvm-libunwind: Use tc-get-c-rtlib

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

 sys-libs/llvm-libunwind/llvm-libunwind-13.0.1-r1.ebuild| 10 ++
 sys-libs/llvm-libunwind/llvm-libunwind-14.0.6-r1.ebuild| 10 ++
 sys-libs/llvm-libunwind/llvm-libunwind-15.0.2.ebuild   | 10 ++
 sys-libs/llvm-libunwind/llvm-libunwind-15.0.3..ebuild  | 10 ++
 sys-libs/llvm-libunwind/llvm-libunwind-16.0.0..ebuild  | 10 ++
 .../llvm-libunwind/llvm-libunwind-16.0.0_pre20221006.ebuild| 10 ++
 .../llvm-libunwind/llvm-libunwind-16.0.0_pre20221010.ebuild| 10 ++
 7 files changed, 14 insertions(+), 56 deletions(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1-r1.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1-r1.ebuild
index 1de0765ec1bf..76693df7bef7 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1-r1.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-13.0.1-r1.ebuild
@@ -38,7 +38,6 @@ pkg_setup() {
 }
 
 multilib_src_configure() {
-   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
# https://github.com/llvm/llvm-project/issues/56825
@@ -47,13 +46,8 @@ multilib_src_configure() {
 
# link to compiler-rt
# https://github.com/gentoo/gentoo/pull/21516
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-  ${LD_FLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   use_compiler_rt=ON
-   fi
-   fi
+   local use_compiler_rt=OFF
+   [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON
 
local mycmakeargs=(
-DLLVM_LIBDIR_SUFFIX=${libdir#lib}

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.6-r1.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.6-r1.ebuild
index 3596ed724fe0..336f5fc86bf1 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-14.0.6-r1.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-14.0.6-r1.ebuild
@@ -42,7 +42,6 @@ python_check_deps() {
 }
 
 multilib_src_configure() {
-   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
# https://github.com/llvm/llvm-project/issues/56825
@@ -51,13 +50,8 @@ multilib_src_configure() {
 
# link to compiler-rt
# https://github.com/gentoo/gentoo/pull/21516
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-  ${LD_FLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   use_compiler_rt=ON
-   fi
-   fi
+   local use_compiler_rt=OFF
+   [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON
 
local mycmakeargs=(
-DPython3_EXECUTABLE="${PYTHON}"

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-15.0.2.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-15.0.2.ebuild
index cf301e306fd9..d32002debae2 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-15.0.2.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-15.0.2.ebuild
@@ -51,7 +51,6 @@ pkg_setup() {
 }
 
 multilib_src_configure() {
-   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
# https://github.com/llvm/llvm-project/issues/56825
@@ -66,13 +65,8 @@ multilib_src_configure() {
 
# link to compiler-rt
# https://github.com/gentoo/gentoo/pull/21516
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-  ${LD_FLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   use_compiler_rt=ON
-   fi
-   fi
+   local use_compiler_rt=OFF
+   [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON
 
local mycmakeargs=(
-DCMAKE_CXX_COMPILER_TARGET="${CHOST}"

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-15.0.3..ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-15.0.3..ebuild
index b53a48502232..2f98df4d5ed6 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-15.0.3..ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-15.0.3..ebuild
@@ -50,7 +50,6 @@ pkg_setup() {
 }
 
 multilib_src_configure() {
-   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
# https://github.com/llvm/llvm-project/issues/56825
@@ -65,13 +64,8 @@ multilib_src_configure() {
 
# link to compiler-rt
# https://github.com/gentoo/gentoo/pull/21516
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} 

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

2022-10-10 Thread Michał Górny
commit: 2faa09dc23a1bbb9b385afe8bea639da4a18bc73
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:43:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2faa09dc

sys-libs/libcxxabi: Use tc-get-c-rtlib

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

 sys-libs/libcxxabi/libcxxabi-13.0.1.ebuild |  8 ++--
 sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild |  8 ++--
 sys-libs/libcxxabi/libcxxabi-15.0.2.ebuild | 14 --
 sys-libs/libcxxabi/libcxxabi-15.0.3..ebuild| 14 --
 sys-libs/libcxxabi/libcxxabi-16.0.0..ebuild| 14 --
 sys-libs/libcxxabi/libcxxabi-16.0.0_pre20221006.ebuild | 14 --
 sys-libs/libcxxabi/libcxxabi-16.0.0_pre20221010.ebuild | 14 --
 7 files changed, 24 insertions(+), 62 deletions(-)

diff --git a/sys-libs/libcxxabi/libcxxabi-13.0.1.ebuild 
b/sys-libs/libcxxabi/libcxxabi-13.0.1.ebuild
index b49532e94b6d..b2fcf26fc7f0 100644
--- a/sys-libs/libcxxabi/libcxxabi-13.0.1.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-13.0.1.ebuild
@@ -53,12 +53,8 @@ multilib_src_configure() {
 
# link against compiler-rt instead of libgcc if we are using clang with 
libunwind
local want_compiler_rt=OFF
-   if use libunwind && tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-   ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_compiler_rt=ON
-   fi
+   if use libunwind && [[ $(tc-get-c-rtlib) == compiler-rt ]]; then
+   want_compiler_rt=ON
fi
 
local libdir=$(get_libdir)

diff --git a/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild 
b/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild
index 1aa08e4c22f1..f88c43716406 100644
--- a/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-14.0.6.ebuild
@@ -59,12 +59,8 @@ pkg_setup() {
 multilib_src_configure() {
# link against compiler-rt instead of libgcc if we are using clang with 
libunwind
local want_compiler_rt=OFF
-   if use libunwind && tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-   ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_compiler_rt=ON
-   fi
+   if use libunwind && [[ $(tc-get-c-rtlib) == compiler-rt ]]; then
+   want_compiler_rt=ON
fi
 
local libdir=$(get_libdir)

diff --git a/sys-libs/libcxxabi/libcxxabi-15.0.2.ebuild 
b/sys-libs/libcxxabi/libcxxabi-15.0.2.ebuild
index 5665bc0cb12f..d9a53ffa7084 100644
--- a/sys-libs/libcxxabi/libcxxabi-15.0.2.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-15.0.2.ebuild
@@ -63,15 +63,9 @@ multilib_src_configure() {
strip-unsupported-flags
fi
 
-   # link against compiler-rt instead of libgcc if this is what clang does
-   local want_compiler_rt=OFF
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-   ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_compiler_rt=ON
-   fi
-   fi
+   # link to compiler-rt
+   local use_compiler_rt=OFF
+   [[ $(tc-get-c-rtlib) == compiler-rt ]] && use_compiler_rt=ON
 
local libdir=$(get_libdir)
local mycmakeargs=(
@@ -83,7 +77,7 @@ multilib_src_configure() {
-DLIBCXXABI_ENABLE_SHARED=ON
-DLIBCXXABI_ENABLE_STATIC=$(usex static-libs)
-DLIBCXXABI_INCLUDE_TESTS=$(usex test)
-   -DLIBCXXABI_USE_COMPILER_RT=${want_compiler_rt}
+   -DLIBCXXABI_USE_COMPILER_RT=${use_compiler_rt}
 
# upstream is omitting standard search path for this
# probably because gcc & clang are bundling their own unwind.h

diff --git a/sys-libs/libcxxabi/libcxxabi-15.0.3..ebuild 
b/sys-libs/libcxxabi/libcxxabi-15.0.3..ebuild
index 130101c20cb9..8d8f8212d31e 100644
--- a/sys-libs/libcxxabi/libcxxabi-15.0.3..ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-15.0.3..ebuild
@@ -62,15 +62,9 @@ multilib_src_configure() {
strip-unsupported-flags
fi
 
-   # link against compiler-rt instead of libgcc if this is what clang does
-   local want_compiler_rt=OFF
-   if tc-is-clang; then
-   local compiler_rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
-   ${LDFLAGS} -print-libgcc-file-name)
-   if [[ ${compiler_rt} == *libclang_rt* ]]; then
-   want_compiler_rt=ON
-   fi
-   fi
+   # link to compiler-rt
+   local use_compiler_rt=OFF
+   [[ 

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

2022-10-10 Thread Michał Górny
commit: 2170307e8e09491f88b0c5f41d42aa096d1b3632
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Oct  7 15:02:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:52:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2170307e

toolchain-funcs.eclass: Add tc-get-cxx-stdlib() to get C++ stdlib

Add a new tc-get-cxx-stdlib() that attempts to get the C++ stdlib
variant used by the current C++ compiler.  Currently it supports libc++
and libstdc++ (GCC's stdlib).

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

 eclass/tests/toolchain-funcs.sh | 22 ++
 eclass/toolchain-funcs.eclass   | 36 
 2 files changed, 58 insertions(+)

diff --git a/eclass/tests/toolchain-funcs.sh b/eclass/tests/toolchain-funcs.sh
index 56379b10cded..5a35a44ce018 100755
--- a/eclass/tests/toolchain-funcs.sh
+++ b/eclass/tests/toolchain-funcs.sh
@@ -198,4 +198,26 @@ for compiler in gcc clang not-really-a-compiler; do
fi
 done
 
+if type -P gcc &>/dev/null; then
+   tbegin "tc-get-cxx-stdlib (gcc)"
+   [[ $(CXX=g++ tc-get-cxx-stdlib) == libstdc++ ]]
+   tend $?
+fi
+
+if type -P clang &>/dev/null; then
+   for stdlib in libc++ libstdc++; do
+   if clang++ -stdlib=${stdlib} -x c++ -E -P - &>/dev/null \
+   <<<'#include '
+   then
+   tbegin "tc-get-cxx-stdlib (clang, ${stdlib})"
+   [[ $(CXX=clang++ CXXFLAGS="-stdlib=${stdlib}" 
tc-get-cxx-stdlib) == ${stdlib} ]]
+   tend $?
+   fi
+   done
+
+   tbegin "tc-get-cxx-stdlib (clang, invalid)"
+   ! CXX=clang++ CXXFLAGS="-stdlib=invalid" tc-get-cxx-stdlib
+   tend $?
+fi
+
 texit

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 48bf11606c4a..92494158201e 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -1173,4 +1173,40 @@ gen_usr_ldscript() {
done
 }
 
+# @FUNCTION: tc-get-cxx-stdlib
+# @DESCRIPTION:
+# Attempt to identify the C++ standard library used by the compiler.
+# If the library is identified, the function returns 0 and prints one
+# of the following:
+#
+# - ``libc++`` for ``sys-libs/libcxx``
+# - ``libstdc++`` for ``sys-devel/gcc``'s libstdc++
+#
+# If the library is not recognized, the function returns 1.
+tc-get-cxx-stdlib() {
+   local code='#include 
+
+#if defined(_LIBCPP_VERSION)
+   HAVE_LIBCXX
+#elif defined(__GLIBCXX__)
+   HAVE_LIBSTDCPP
+#endif
+'
+   local res=$(
+   $(tc-getCXX) ${CXXFLAGS} ${CPPFLAGS} -x c++ -E -P - \
+   <<<"${code}" 2>/dev/null
+   )
+
+   case ${res} in
+   *HAVE_LIBCXX*)
+   echo libc++;;
+   *HAVE_LIBSTDCPP*)
+   echo libstdc++;;
+   *)
+   return 1;;
+   esac
+
+   return 0
+}
+
 fi



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

2022-10-10 Thread Sam James
commit: c4f6f14d8cc6570f90428d18c2c2b9b3f52c45c5
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 10 20:39:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 10 20:39:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4f6f14d

dev-cpp/tbb: drop 2021.4.0, 2021.6.0

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

 dev-cpp/tbb/Manifest|  2 --
 dev-cpp/tbb/tbb-2021.4.0.ebuild | 39 ---
 dev-cpp/tbb/tbb-2021.6.0.ebuild | 45 -
 3 files changed, 86 deletions(-)

diff --git a/dev-cpp/tbb/Manifest b/dev-cpp/tbb/Manifest
index ea66fe2fd3fd..2235f67725f0 100644
--- a/dev-cpp/tbb/Manifest
+++ b/dev-cpp/tbb/Manifest
@@ -1,5 +1,3 @@
 DIST tbb-2020.3.tar.gz 2639788 BLAKE2B 
3e92bccdc8179fc049379ccbb8ad7f615623177abc61d813b1a601020c345137bfd7d4c4600cf5b0d587e5ebef677635c3c8124d06b05fdd3325128ed8c9f84a
 SHA512 
04c4b5501418792827190691d03d20d4dc1fd3cbbcf459a4d40c5c2281d964e658f31f133ad3907b78e17ed04f4ff16728ed89487ed0ce2cb239f23feb34bd87
-DIST tbb-2021.4.0.tar.gz 2452533 BLAKE2B 
a635c6efa1894c33e2f75c1aa03b6c0f4a86ebef3b58fa42bd25b53d661ed7a9d21f49f121dd3679735f219fbfc35604600bcc72ba60d3602e6de77b0d62e37b
 SHA512 
96da2bc351fd64dfa854f8e6cabc1c4e53af3d55760e99d6f83ad53779c727af333d13d6be0828ed70371cf796498d2063e9dd0e4b2f6451623bb5d28ccbf20b
 DIST tbb-2021.5.0.tar.gz 2463218 BLAKE2B 
2d50d312b86318ba4923afe68753b3781f9646cbdb33861f3458301a3a19b7ca3aab6959dca085294dfc743d7f552635f80fb524ec5d780a46f58ffe02e3280d
 SHA512 
0e7b71022e397a6d7abb0cea106847935ae79a1e12a6976f8d038668c6eca8775ed971202c5bd518f7e517092b67af805cc5feb04b5c3a40e9fbf972cc703a46
-DIST tbb-2021.6.0.tar.gz 2566074 BLAKE2B 
ec5d98d2890828323cefabc75011658d508eab531c9b30030162f6ce367c54a8d70d6c6611c00d93ab3ef041ea1af35f8180768e114611847547447545f70c71
 SHA512 
c28bd4045e3269d0d9c24dbf360f849d26eaa15e34fa9dd3f5feae0f3440ff74ab1d05154b95549a135e7d9e97fd9a7ff4b4e468b13265e0477bb58f47e856b6
 DIST tbb-2021.7.0.tar.gz 2571727 BLAKE2B 
2977ef1a33d9bc7baa40e0e57c02e62798a09c6c66cdbe369f2702d87fd9877c3d97f8d83f71384028995ea0956f5c5630d4aaf4edbe68538e7c514d3b87085c
 SHA512 
d314e3d88b85c96607a9eda15e3d808bf361eb562a534c59101929236e90c187883e7718e5435b5e7f01f4ee652c9765af95f5f173368b83997e4666b7403a49

diff --git a/dev-cpp/tbb/tbb-2021.4.0.ebuild b/dev-cpp/tbb/tbb-2021.4.0.ebuild
deleted file mode 100644
index ff94b74527c2..
--- a/dev-cpp/tbb/tbb-2021.4.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="High level abstract threading library"
-HOMEPAGE="https://www.threadingbuildingblocks.org;
-SRC_URI="https://github.com/oneapi-src/oneTBB/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-S="${WORKDIR}/oneTBB-${PV}"
-
-LICENSE="Apache-2.0"
-# https://github.com/oneapi-src/oneTBB/blob/master/CMakeLists.txt#L53
-# libtbb-libtbbmalloc-libtbbbind
-SLOT="0/12-2-3"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="sys-apps/hwloc:="
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-lto.patch
-   # bug 827883
-   "${FILESDIR}"/${P}-missing-TBB_machine_fetchadd4.patch
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DTBB_TEST=$(usex test)
-   -DTBB_ENABLE_IPO=OFF
-   -DTBB_STRICT=OFF
-   )
-
-   cmake-multilib_src_configure
-}

diff --git a/dev-cpp/tbb/tbb-2021.6.0.ebuild b/dev-cpp/tbb/tbb-2021.6.0.ebuild
deleted file mode 100644
index 8314a6dcb3c6..
--- a/dev-cpp/tbb/tbb-2021.6.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib flag-o-matic
-
-DESCRIPTION="High level abstract threading library"
-HOMEPAGE="https://www.threadingbuildingblocks.org;
-SRC_URI="https://github.com/oneapi-src/oneTBB/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-S="${WORKDIR}/oneTBB-${PV}"
-
-LICENSE="Apache-2.0"
-# https://github.com/oneapi-src/oneTBB/blob/master/CMakeLists.txt#L53
-# libtbb-libtbbmalloc-libtbbbind
-SLOT="0/12.5-2.5-3.5"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="!kernel_Darwin? ( sys-apps/hwloc:= )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   # need to verify this is in master
-   "${FILESDIR}"/${PN}-2021.5.0-musl-mallinfo.patch
-   # musl again, should be in.. 2022?
-   "${FILESDIR}"/${PN}-2021.5.0-musl-setcontext.patch
-   "${FILESDIR}"/${PN}-2021.5.0-flags-stripping.patch
-)
-
-src_configure() {
-   # bug #872287
-   filter-flags -D_GLIBCXX_ASSERTIONS
-   

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

2022-10-10 Thread Michał Górny
commit: 725cc2c6362af0c9b2f43fe75e8e4a590c610992
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:22:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:22:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725cc2c6

dev-python/croniter: Remove old

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

 dev-python/croniter/Manifest  |  1 -
 dev-python/croniter/croniter-1.3.5.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/dev-python/croniter/Manifest b/dev-python/croniter/Manifest
index ccd0b8119f65..19051712e68d 100644
--- a/dev-python/croniter/Manifest
+++ b/dev-python/croniter/Manifest
@@ -1,2 +1 @@
-DIST croniter-1.3.5.tar.gz 38606 BLAKE2B 
45586ef4ef6622caca3611fd596818a875a451ade6353cf4a99219f38ab76e72656c885bd61238670a809203d487d78d884d700c5e2e4c6eb1bdf44dfc14a1c4
 SHA512 
9b59334f8537cd5b48e17be2c83fcb78f2c0a8c62b7c28091600c84cf202e6847d7d1d40ff5ebb57cac3a713013ca247620e348aa9f3a408483cf4110a88545f
 DIST croniter-1.3.7.tar.gz 38853 BLAKE2B 
2a05a023300a1e90824fdfe444eb1b2e43889c99d5b070329fc9f11c9e1807c4bb81a0c27c17d3aa92130d91c949e8515b76c7d927a5c583a3a86172f24be446
 SHA512 
c0157fc3d5b88ae66ee9871bc9e18b835a71f2fe85d66b9e92b05329652e150bdd823976a495b30e62050fa21d3353cffb090c8c99b74f79eba6dfa87ffcb11a

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



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

2022-10-10 Thread Michał Górny
commit: ea37eea6902e02b2f1b1f559760258dc453be83a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:18:53 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:18:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea37eea6

dev-python/zstd: Remove old

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

 dev-python/zstd/Manifest|  1 -
 dev-python/zstd/zstd-1.5.2.5.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/dev-python/zstd/Manifest b/dev-python/zstd/Manifest
index 318d8d43e5ed..f0433def3591 100644
--- a/dev-python/zstd/Manifest
+++ b/dev-python/zstd/Manifest
@@ -1,2 +1 @@
-DIST zstd-1.5.2.5.tar.gz 606492 BLAKE2B 
072f3e3c89f7e2c372bf020bcb3766ed264c26c0bdba424feb70753ffcf4232eecfcce96a389296c01c961408c05008373d65d9ac790f3b82e3567aa3c6c806f
 SHA512 
8b1e79ff00c8dbf71994c4a9af4e88e749d11c101137c31013d7678aeb9c9a9b7cfa04989e0a68be32a4c4ae56907711541025233078b82fb313bfdb056cb150
 DIST zstd-1.5.2.6.tar.gz 606528 BLAKE2B 
0d9b0937346e69a25eb834d2894ab74efdd3f35390afebc98a6cb255f18cdbe540433139d51f43bf0a9fb5d85bee588c7df8543842248e700652af3e3e721df2
 SHA512 
a692d87ffad4d148d56487fa740876653ccbd151ac8a897a35946a3899d4d3b3aaf6e9954a2050b4cee8137d5161481f3460a0e64ce339c624349bf030c9f975

diff --git a/dev-python/zstd/zstd-1.5.2.5.ebuild 
b/dev-python/zstd/zstd-1.5.2.5.ebuild
deleted file mode 100644
index 78b4bf5b67f7..
--- a/dev-python/zstd/zstd-1.5.2.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Simple python bindings to Yann Collet ZSTD compression library"
-HOMEPAGE="
-   https://github.com/sergey-dryabzhinsky/python-zstd/
-   https://pypi.org/project/zstd/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-
-DEPEND="
-   app-arch/zstd:=
-"
-RDEPEND="
-   ${DEPEND}
-   !

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

2022-10-10 Thread Michał Górny
commit: 7c3621e18743f2d05b9ec659d8e0eb1574a7d0c2
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:19:27 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:19:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c3621e1

dev-python/jq: Remove old

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

 dev-python/jq/Manifest|  5 -
 dev-python/jq/jq-1.2.1.ebuild | 38 --
 dev-python/jq/jq-1.2.2.ebuild | 39 ---
 dev-python/jq/jq-1.2.3.ebuild | 39 ---
 4 files changed, 121 deletions(-)

diff --git a/dev-python/jq/Manifest b/dev-python/jq/Manifest
index 7ba7a5b87da2..ae0c90c1673f 100644
--- a/dev-python/jq/Manifest
+++ b/dev-python/jq/Manifest
@@ -1,6 +1 @@
-DIST jq-1.2.1.gh.tar.gz 10321 BLAKE2B 
8bc2c88ae553dd53137c11d4f599e01398d21811a02b4f33f81aeeafa9009f58a56074c0bcadcc6382d86d2c7ada792d442f9c660787e131d0e85c95fb7cab32
 SHA512 
0b6dda04c0b3c63a5bf41f8a73dedc3cd889683f3e89c99cbf258c839f35f66d19a6da5cf4096148cd17a3fb1a58ba0e10d052ce46a1a18af845910e00ff5d86
-DIST jq-1.2.2.gh.tar.gz 10436 BLAKE2B 
09514ce3a9afa8df4e61b29fc17f0d875db046ddc98332f13d702defd443e4e2ac1c612042eab82e620298d236a548625f5578d04dbeb681858bc10243c878a1
 SHA512 
632c5ebaf2607cc609ee4cfbdc0d68dff96e6daff916d77381f1596f3b1ca494c962cc56127376ef21fb931ab1333b666b01a599b97eab8a94416d1caec65248
-DIST jq-1.2.3.gh.tar.gz 10457 BLAKE2B 
72ebe4137d21bfd06dce337da1c7bcbfaa10ea55d06d128c901daa605557d7f6bd3bc219242127dfd36908089f312a6120306028bccb66e03274194e179175ee
 SHA512 
c942c6cd6a49d677bc9095c8192819c40bf7751e6dff4e9bde5af97398dd1ddc62e3492ab936cbe458d7cffbfab3b421d5db7654c5d02af48bffbac99e7c159b
 DIST jq-1.3.0.gh.tar.gz 2648187 BLAKE2B 
61b6d4dbb2163477d09e69c25e0bec98780f39088d4e689a7e13ed8d64749c2e238f2bf7d1f6c47f3cebe1c94a1e5fa5322a988ce251e8417aac77c789975064
 SHA512 
cf3c1ac7954d36d808b9f9841ff7f71835e3324f6f8eb09ef3a66b446b47a354d8ff090dc3529b9936ec5d7a33ba5163354d3534f0dfc0cb467222a990e58fb5
-DIST jq-1.6.tar.gz 1750584 BLAKE2B 
c9be1314e9d027247de63492ee362e996ef85faf45a47ee421cad95ebde9188bff8d3fc7db64e717ab922e1052f3b1c1500f5589fc5b2199ab66effb000e442d
 SHA512 
5da71f53c325257f1f546a2520fe47828b495c953270df25ea0e37741463fdda72f0ba4d5b05b25114ec30f27a559344c2b024bacabf610759f4e3e9efadb480
-DIST onig-6.9.4.tar.gz 908702 BLAKE2B 
e6e9939f284569408ba01b8551960bc939bbfdca425f8470499f5bb83ead7b6b09898f6f6a09d5d8c26d74d5416f6e5e9e2f00fbe7aa9eb820edb8aa4a3050cc
 SHA512 
ed8f42f6893966c0ee3c168b4fdbcb04b2286ad69ecab43a754c1dbc8fc4656e01319991d776d7144b6a3f90d050781b321432278d83c74c9565c2743851c85b

diff --git a/dev-python/jq/jq-1.2.1.ebuild b/dev-python/jq/jq-1.2.1.ebuild
deleted file mode 100644
index 7064a84f3699..
--- a/dev-python/jq/jq-1.2.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for jq"
-HOMEPAGE="https://github.com/mwilliamson/jq.py;
-SRC_URI="
-   https://github.com/mwilliamson/jq.py/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz
-   https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz
-   
https://github.com/kkos/oniguruma/releases/download/v6.9.4/onig-6.9.4.tar.gz;
-S="${WORKDIR}/jq.py-${PV}"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
-   sed -e 's|import requests|#\0|' \
-   -e 's|urlretrieve(source_url, 
tarball_path)|shutil.copyfile(source_url, tarball_path)|' \
-   -e 
"s|source_url=.*kkos/oniguruma.*|source_url=\"${DISTDIR}/onig-6.9.4.tar.gz\",|" 
\
-   -e 
"s|source_url=.*stedolan/jq.*|source_url=\"${DISTDIR}/jq-1.6.tar.gz\",|" \
-   -i setup.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_compile() {
-   # Cython compilation isn't part of setup.py, so do it manually
-   "${EPYTHON}" -m cython -3 jq.pyx -o jq.c || die
-   distutils-r1_python_compile
-}

diff --git a/dev-python/jq/jq-1.2.2.ebuild b/dev-python/jq/jq-1.2.2.ebuild
deleted file mode 100644
index 6aa58286cc01..
--- a/dev-python/jq/jq-1.2.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Python bindings for jq"
-HOMEPAGE="https://github.com/mwilliamson/jq.py;
-SRC_URI="
-   https://github.com/mwilliamson/jq.py/archive/${PV}.tar.gz -> 
${P}.gh.tar.gz
-   https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz
-   
https://github.com/kkos/oniguruma/releases/download/v6.9.4/onig-6.9.4.tar.gz;
-S="${WORKDIR}/jq.py-${PV}"
-

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

2022-10-10 Thread Michał Górny
commit: 0989050889e4d44c8438edd8ba071890016ca835
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:19:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:19:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09890508

dev-python/leechcorepyc: Remove old

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

 dev-python/leechcorepyc/Manifest   |  1 -
 dev-python/leechcorepyc/leechcorepyc-2.12.0.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/dev-python/leechcorepyc/Manifest b/dev-python/leechcorepyc/Manifest
index 161857fa2b43..c953fdbad353 100644
--- a/dev-python/leechcorepyc/Manifest
+++ b/dev-python/leechcorepyc/Manifest
@@ -1,3 +1,2 @@
-DIST leechcorepyc-2.12.0.tar.gz 120774 BLAKE2B 
7e7de1388acb73bb391ae5451c5b4f3f4b6c4891a1c420f2d662c930a37d4db702731c70861d8467b82b4e29dc1c22560215b1f8fe9ec8f7675fe69b63844ae3
 SHA512 
bb8c4c76ab8ec610f8c879c75dbed36006b16a165c20ac17ccd8a8978e1e0b4f5543c8aa8b054ea4cf58d38e908e8b92ba13898697c2465776add1bc964762b1
 DIST leechcorepyc-2.12.1.tar.gz 120816 BLAKE2B 
b9af01e7544c0c77105435bd49d633c182e91788035a56747fef7ed860cc3570e766b038d5445df8e9d2df6e81a47a133af290b7c45db729eec7a0e46d8a0f38
 SHA512 
b2c3eb32bd5727839fe3ead1d5d123be4abc7b96deb71897461c3a559994ff7d6d26e3b1b857f119b8003023efa619c01073082046eb9fb105f8a8627b49d6db
 DIST leechcorepyc-2.13.0.tar.gz 123152 BLAKE2B 
8a3ae5b0f0d52296ef71bbbea5140f9dec6abd379ae2a1b0e3a418090a11e5196731b1c4cba5320d4058c562911366cc9dd84f3a30f58ddc7c66362a9b39af8f
 SHA512 
1420f635bebafe1e07cb5f0ade3e6b141433d4a72ec165713f959dc19e05f42a86440c5c99dd5d759aee221ee478e91e7161541cebe11be6dfa286fad79843ae

diff --git a/dev-python/leechcorepyc/leechcorepyc-2.12.0.ebuild 
b/dev-python/leechcorepyc/leechcorepyc-2.12.0.ebuild
deleted file mode 100644
index 09a5ccc7af35..
--- a/dev-python/leechcorepyc/leechcorepyc-2.12.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-
-inherit distutils-r1 toolchain-funcs
-
-DESCRIPTION="Python binding for LeechCore Physical Memory Acquisition Library"
-HOMEPAGE="https://github.com/ufrisk/LeechCore;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-# leechcorepyc ships with a bundled version of the LeechCore library. So we
-# don't depend on the library here. But we must be aware this module doesn't
-# use the system library.
-DEPEND="virtual/libusb:="
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-2.12.0-respect-CC.patch
-)
-
-src_configure() {
-   tc-export CC
-
-   distutils-r1_src_configure
-}



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

2022-10-10 Thread Michał Górny
commit: f62ac2de086b2c95569bc5d31468432c463ff363
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:19:50 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:19:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f62ac2de

dev-python/google-api-python-client: Remove old

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

 dev-python/google-api-python-client/Manifest   |  3 --
 .../google-api-python-client-2.58.0.ebuild | 53 --
 .../google-api-python-client-2.60.0.ebuild | 53 --
 .../google-api-python-client-2.62.0.ebuild | 53 --
 4 files changed, 162 deletions(-)

diff --git a/dev-python/google-api-python-client/Manifest 
b/dev-python/google-api-python-client/Manifest
index 43d3352f49b4..0f963a790d79 100644
--- a/dev-python/google-api-python-client/Manifest
+++ b/dev-python/google-api-python-client/Manifest
@@ -1,5 +1,2 @@
-DIST google-api-python-client-2.58.0.gh.tar.gz 33498127 BLAKE2B 
c00ecad1e863e5abb92cfbbbf57778b63ceaf73ae4cfb00ddf4fd0ed31656a28e475b91a02c03a6231790c2f3ab3e3243d131a97ed0f51151946568f5b56e18c
 SHA512 
00c1606fadb46a6f4f60939135e9fd2840b267cd962630e4cd2d123588e9bdc8c0ed397d9e038ae91a2f31b732eb7698476fc1cf2322771b5720c11a97321b00
-DIST google-api-python-client-2.60.0.gh.tar.gz 33586321 BLAKE2B 
01bb4dcf8a9b90a65c4e58ded91a7c03c525c15d29dc5b63011e1d1b8281ea68c04526af29d7853f4b7e16681c2482970f3b95faa190522ddf2f0ad3dd4e5e50
 SHA512 
7cae2e66ae7a41d25e551a5e9b14757d62c0212fe18640b4c1b8f51ff9e0150cfb9a2492de67530c7d24d6d09231d365520c3c06ffb342ba4a68a1a07b69b27d
-DIST google-api-python-client-2.62.0.gh.tar.gz 34525876 BLAKE2B 
0f2bcd7588a6635511d3851f0a0881761d9cf905a83b406aaa824ef1ac86a3f9af9df2f90193b30852028b804fd30d8aa6214a5be83e26401a626ce3156e884f
 SHA512 
4348bce74db02f74bd386d0276de2e2ec0126e7c1b79bea962056612f868d2b2306c51663ca293672db750460bd3722a66fb22139d14f30adcd3e0d455a2118a
 DIST google-api-python-client-2.63.0.gh.tar.gz 34736367 BLAKE2B 
4657dd86a62def7d2858cefd63d8c8b23b36a38f65aa3e76f4436eb4d3334321fbda9530684b2d001883ba0345ef7de6d8447a86208023a3e77dae59269ef255
 SHA512 
a8253904fc9db8687be7a04356e9e11202073ce05c77f770d51ed973e0c87db32c4b39750e1a48d813186530dfeae0f76452df7241686d6a64afbdff35626387
 DIST google-api-python-client-2.64.0.gh.tar.gz 36028133 BLAKE2B 
8e9abaa17d078210c9cdf5e18db02199bae1ee6f7e5364002266ca9795100fefd8dbbfbaecd5c9e2b74e5125e42535e23f9735fb83b8fe5bc1adae1fe815
 SHA512 
a525d26224e7b4b647bf5fde82434fbe0e221ff55591b1564b0a3af5e1d49492b3ea157d75bec0328bda754318b9d5e57d78b4d8d532afad2e3b8cbfc650f876

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

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

2022-10-10 Thread Michał Górny
commit: 1775f4466416399263d6e9cadfbe37e53cd39bda
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 10 20:16:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 10 20:16:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1775f446

app-admin/awscli: Remove old

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

 app-admin/awscli/Manifest  |  6 ---
 app-admin/awscli/awscli-1.25.75.ebuild | 72 --
 app-admin/awscli/awscli-1.25.82.ebuild | 72 --
 app-admin/awscli/awscli-1.25.83.ebuild | 72 --
 app-admin/awscli/awscli-1.25.85.ebuild | 72 --
 app-admin/awscli/awscli-1.25.87.ebuild | 72 --
 app-admin/awscli/awscli-1.25.88.ebuild | 72 --
 7 files changed, 438 deletions(-)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index e2dead84da56..4adf9f676641 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -1,9 +1,3 @@
-DIST aws-cli-1.25.75.gh.tar.gz 2270365 BLAKE2B 
68cd58d03e0712133104dbb145c6d4bcedf8925e59088d0f2c7ecb7c91beb572a3c8c33f55d95e1a2e0e462648c06cde2460e595942e8adb33c3dcab8ec6a2fc
 SHA512 
c21de74e0ae7380a810d11bad53f0233bc50c8959f047d58c4f4c2cd23231fab34dbba1dac6096790adb28b1ca99e22e70019bcda32738df6e984b2bb46abaa8
 DIST aws-cli-1.25.81.gh.tar.gz 2273195 BLAKE2B 
3bf3ca742b08c0bf4367ae1bfabcf8c2626010d60cc11ff66250753f62609eba80053c1d8696cc3184ba9f947f995a8bb95489b01f60a3fa7e1a8cbb4961652c
 SHA512 
4f10de492a56b158d88671c149d4ed4171fbbde8fe84de15a446e31a7d8003a4562439eabd369cb80dcf91987caab6aef05e5b3f5684aeea47ba0d323883c53c
-DIST aws-cli-1.25.82.gh.tar.gz 2273453 BLAKE2B 
11c307a78df654634a7ae75cc8a7ce7d37697aa9ce792a3ad2b1a250291f2ff3574bea13219c072f223e4f27b7e5df757b49971374a5962f19b57ae00f77cd44
 SHA512 
90737a8cc9aac60970e705c5637672b74e89278926196c1363252038401e12bcb31672c878d2a3b6f213f5a5aac308e5b170e90342f6d270793aead3c8485eaf
-DIST aws-cli-1.25.83.gh.tar.gz 2273842 BLAKE2B 
3b3986f539302830d981478cf485c9a724a0c1bd216b6a3952781eeeb96e58d0f7cf575a899e79e55dc2252d90c15c1cf2cbde755fa4f89ac4fcabbab788896a
 SHA512 
7194d281477bc8f94b91901fdea57a1da44e703a04d28df9bb63a7f17370ec31eb640128f07b902a46892ca77377e706a0d99f6d53699a572c9cb2ef7d0f6c04
-DIST aws-cli-1.25.85.gh.tar.gz 2274915 BLAKE2B 
074651fd32ec378c8f574266ff2a2e43ddb3d16fc7cb73dda75895819d948216acefe6e5c0da1ef059e36c4b684a6b360f996e3ff905abfc71a4c68dc78ad64d
 SHA512 
ca6b6012fbe69467adfeade7f4b7c4cf40c50f2c62aee71c1e459bfa6597d3510e8ba087752c23ca77306e49cffbb68dde95167eed0d9313ab1488855b2aa4dd
-DIST aws-cli-1.25.87.gh.tar.gz 2285796 BLAKE2B 
47df516ee23e9955ce8798546a2fecdc4b43199aa3daa5195c4dda010c3e4c86d2a4b6aac1dfd1c057cfb2f5ed9ea9a718b34aad09d8ddbb176ab3bfb4a86d25
 SHA512 
8beb4d70773c890dec4b4914c77d6fd73e4b66a6ee11316d0a851f17d6abc20cc67bf33d7209e8a285f84195d68c9f497eb8471ecb59438bf3b03353d960a8f6
-DIST aws-cli-1.25.88.gh.tar.gz 2285714 BLAKE2B 
037bb747f6a3a4b09b5289ff44d7dc65be469197271094f5c231474f1d70ee62952a51da6aaae03ab706f3f408544966ba2c0ea9fd93f1d1d0580c236fe3385c
 SHA512 
0377af9d6774fc9bfc4dd351bbe21cf601c5a287a83eea5da3a983349d20ab2279137f3ba5afdd99118877518d330f6e6da0ef017874bbe42331c2638ad2d85e
 DIST aws-cli-1.25.89.gh.tar.gz 2285887 BLAKE2B 
1da21b1e314b187ee105d2bf256ce2fea42fec8d1e5cf0de39c8371a93a588e24e5415b2e50ae314d39613a4ae55963bd544cc7ab3e08d0e38089c5c609454f4
 SHA512 
39087e269a0318777af73d010d7c6264fd595fc5d27f24bb66da07763165729526bd8a60f4225241eb5172d879d6f562c5bf64ad5979d7ac3be40b7d8cf33486
 DIST aws-cli-1.25.90.gh.tar.gz 2285948 BLAKE2B 
a664e70e7367e6cf6fbaf62ab4dbbf649e92f3184793cb0f444c520b947cfc0845e075a44025b48a02b431e237d835de23aba6f83fdea5810d759690368ce069
 SHA512 
f42b0125cddc35314a675f84672fb5716300d9625eac7338b36b6f501d412a5e932f1d75566a9cdaca84b9f7cd65cc354199e5138675d48a0f52ace9a1ab126b

diff --git a/app-admin/awscli/awscli-1.25.75.ebuild 
b/app-admin/awscli/awscli-1.25.75.ebuild
deleted file mode 100644
index 1cdb05064197..
--- a/app-admin/awscli/awscli-1.25.75.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit bash-completion-r1 distutils-r1 multiprocessing
-
-MY_P=aws-cli-${PV}
-DESCRIPTION="Universal Command Line Environment for AWS"
-HOMEPAGE="
-   https://github.com/aws/aws-cli/
-   https://pypi.org/project/awscli/
-"
-SRC_URI="
-   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
-   -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-
-# botocore is x.(y+2).(z-1)
-BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(( $(ver_cut 3-) - 1 ))"
-RDEPEND="
-   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
-

  1   2   3   4   5   >